From c9521067f0d7afbe9ace2ff3456857e5f503bc9d Mon Sep 17 00:00:00 2001 From: Mateon1 Date: Tue, 15 Oct 2024 00:25:51 +0200 Subject: [PATCH 01/10] Update .gitignore --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index ea3c42d79..6af167552 100644 --- a/.gitignore +++ b/.gitignore @@ -41,3 +41,5 @@ build/ *.a .vscode/ *.ss[0-9] +*.pyc +__pycache__/ From 1cdba39aa0d8b5797584c9150bc327a48d5d2b7e Mon Sep 17 00:00:00 2001 From: Mateon1 Date: Mon, 14 Oct 2024 23:21:23 +0200 Subject: [PATCH 02/10] Preproc: output string literals, and fix escape bug --- tools/preproc/c_file.cpp | 19 +++++++++++++++---- tools/preproc/string_parser.cpp | 2 ++ 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/tools/preproc/c_file.cpp b/tools/preproc/c_file.cpp index 94c0366f9..98e65ef6e 100644 --- a/tools/preproc/c_file.cpp +++ b/tools/preproc/c_file.cpp @@ -220,7 +220,10 @@ void CFile::TryConvertString() SkipWhitespace(); - std::printf("{ "); + if (noTerminator) + std::printf("{ "); + else + std::printf("("); while (1) { @@ -241,8 +244,16 @@ void CFile::TryConvertString() RaiseError(e.what()); } - for (int i = 0; i < length; i++) - printf("0x%02X, ", s[i]); + if (!noTerminator) + printf("\""); + for (int i = 0; i < length; i++) { + if (noTerminator) + printf("0x%02X, ", s[i]); + else + printf(' ' <= s[i] && s[i] <= '~' && s[i] != '\\' && s[i] != '\"' ? "%c" : "\\%03o", s[i]); + } + if (!noTerminator) + printf("\""); } else if (m_buffer[m_pos] == ')') { @@ -263,7 +274,7 @@ void CFile::TryConvertString() if (noTerminator) std::printf(" }"); else - std::printf("0x00 }"); + std::printf(")"); } bool CFile::CheckIdentifier(const std::string& ident) diff --git a/tools/preproc/string_parser.cpp b/tools/preproc/string_parser.cpp index dd5196a44..005334340 100644 --- a/tools/preproc/string_parser.cpp +++ b/tools/preproc/string_parser.cpp @@ -44,6 +44,7 @@ std::string StringParser::ReadCharOrEscape() if (sequence.length() == 0) RaiseError("no mapping exists for double quote"); + m_pos++; return sequence; } else if (m_buffer[m_pos] == '\\') @@ -53,6 +54,7 @@ std::string StringParser::ReadCharOrEscape() if (sequence.length() == 0) RaiseError("no mapping exists for backslash"); + m_pos++; return sequence; } } From 1bdb63d68dcaed1fd460b222bbe8f43c600ba825 Mon Sep 17 00:00:00 2001 From: Mateon1 Date: Mon, 30 Sep 2024 21:11:13 +0200 Subject: [PATCH 03/10] Hack out escaped characters --- charmap.txt | 10 +++++----- data/credits1.s | 4 ++-- data/data.s | 6 +++--- data/item/item_names.s | 2 +- data/monster/monster_names.s | 2 +- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/charmap.txt b/charmap.txt index 265c53f94..e4385f720 100644 --- a/charmap.txt +++ b/charmap.txt @@ -2,17 +2,17 @@ '\n' = 0A ' ' = 20 '!' = 21 -'"' = 22 +'"' = 7E 32 32 '#' = 23 '$' = 24 '%' = 25 '&' = 26 -'\'' = 27 +'\'' = 7E 32 37 '(' = 28 ')' = 29 '*' = 2A '+' = 2B -',' = 2C +',' = 7E 32 63 '-' = 2D '.' = 2E '/' = 2F @@ -111,8 +111,8 @@ 'Ž' = 8E '‘' = 91 '’' = 92 -'“' = 93 -'”' = 94 +'“' = 7E 39 33 +'”' = 7E 39 34 '•' = 95 @ 96, 97 are not hyphens, 'er', and 're' superscripts in kanji_a '˜' = 98 diff --git a/data/credits1.s b/data/credits1.s index 9133b7063..b959b073e 100644 --- a/data/credits1.s +++ b/data/credits1.s @@ -881,7 +881,7 @@ gUnknown_80E4A40: @ 80E4A40 .global AmbrellaCoLtd AmbrellaCoLtd: - .string "Ambrella Co., Ltd.\0" + .asciz "Ambrella Co., Ltd." .align 2,0 .global GameFreakInc @@ -1007,4 +1007,4 @@ gCreditsTable: @ 80E591C .4byte Credits_OriginalDirector .4byte Credits_Producers .4byte Credits_ExecutiveProducer - .4byte Credits_ExecutiveProducer2 \ No newline at end of file + .4byte Credits_ExecutiveProducer2 diff --git a/data/data.s b/data/data.s index 460a14717..7514dcad3 100644 --- a/data/data.s +++ b/data/data.s @@ -1055,8 +1055,8 @@ gUnknown_80B7F14: @ 80B7F14 .global gLocateSetErrorMessage gLocateSetErrorMessage: @ 80B7F20 - .string "Memroy LocateSet [%p] buffer %8x size can't locate\n" - .string " atb %02x grp %3d \0" + .ascii "Memroy LocateSet [%p] buffer %8x size can't locate\n" + .asciz " atb %02x grp %3d \0" .align 2,0 MemoryLocate_LocalCreateText: @@ -1069,7 +1069,7 @@ gUnknown_80B7F88: @ 80B7F88 .global gLocalCreateErrorMessage gLocalCreateErrorMessage: @ 80B7F94 - .string "Memroy LocalCreate buffer %08x size can't locate\0" @ Spelling error is intentional + .asciz "Memroy LocalCreate buffer %08x size can't locate\0" @ Spelling error is intentional .align 2,0 @ code_80035F0 diff --git a/data/item/item_names.s b/data/item/item_names.s index 5518a39de..1a43a0b81 100644 --- a/data/item/item_names.s +++ b/data/item/item_names.s @@ -660,7 +660,7 @@ ItemNameThunderstone: .global ItemNameKingsRock ItemNameKingsRock: -.string "King's Rock\0" +.asciz "King's Rock" .align 2,0 .global ItemNameUpgrade diff --git a/data/monster/monster_names.s b/data/monster/monster_names.s index 7d455e2b2..b6042e622 100644 --- a/data/monster/monster_names.s +++ b/data/monster/monster_names.s @@ -2655,7 +2655,7 @@ MonsterCategoryWildDuck: .global MonsterNameFarfetch MonsterNameFarfetch: -.string "Farfetch'd\0" +.asciz "Farfetch'd" .align 2,0 .global MonsterNameMagneton From 13b8d6ed6980da1dd3e077202a25baf2fb8aaf88 Mon Sep 17 00:00:00 2001 From: Mateon1 Date: Tue, 1 Oct 2024 11:35:30 +0200 Subject: [PATCH 04/10] Remove duplicates in charmap --- charmap.txt | 5 - data/data_80DAF70.s | 6 +- data/data_80F59C8.s | 1048 +++++++++--------- data/data_810AE24.s | 314 +++--- data/data_8115F5C.s | 8 +- data/data_code_2.s | 10 +- data/friend_area_dialogue.s | 16 +- data/friend_rescue.s | 92 +- data/item/item_descriptions.s | 292 ++--- data/move/move_names.s | 348 +++--- data/scripts/personality_test.inc | 2 +- src/data/code_801B60C.h | 6 +- src/data/code_80227B8.h | 28 +- src/data/common_strings_felicity_bank.h | 52 +- src/data/common_strings_gulpin_shop.h | 98 +- src/data/common_strings_hints.h | 18 +- src/data/common_strings_kangaskhan_storage.h | 74 +- src/data/common_strings_kecleon_bros.h | 162 +-- src/data/common_strings_makuhita_dojo.h | 36 +- src/data/common_strings_wigglytuff_shop.h | 82 +- src/data/friend_area_action_menu.h | 2 +- src/data/friend_rescue_menus.h | 4 +- src/data/gulpin_shop.h | 2 +- src/data/luminous_cave.h | 8 +- src/data/main_menu2.h | 12 +- src/data/other_menus1.h | 14 +- src/data/party_list_menu.h | 4 +- src/data/personality_test1.h | 166 +-- src/data/pokemon_mail.h | 532 ++++----- src/data/pokemon_mail_pre.h | 16 +- src/data/post_office_guide1.h | 110 +- src/data/quick_save_read.h | 6 +- src/data/quick_save_write.h | 10 +- src/data/save_write.h | 2 +- src/data/story_missions.h | 4 +- src/data/thank_you_wonder_mail.h | 48 +- src/data/trade_items_menu.h | 8 +- src/data/wonder_mail_1.h | 158 +-- src/data/wonder_mail_main_menu.h | 6 +- src/friend_rescue.c | 14 +- src/mission_reward.c | 18 +- src/save_menu.c | 2 +- src/thank_you_wonder_mail.c | 2 +- src/wonder_mail_2.c | 14 +- src/wonder_mail_4.c | 2 +- src/wonder_mail_6.c | 12 +- 46 files changed, 1934 insertions(+), 1939 deletions(-) diff --git a/charmap.txt b/charmap.txt index e4385f720..7993a6f34 100644 --- a/charmap.txt +++ b/charmap.txt @@ -276,11 +276,6 @@ SELECT_BUTTON = 87 72 87 73 L_BUTTON = 87 74 @ Character codes escaped with a '~'. -DOUBLE_QUOTE = 7E 32 32 @ ~22 - double quote (") is a best guess until we find it in strings that are actually rendered -APOSTROPHE = 7E 32 37 @ ~27 -COMMA = 7E 32 63 @ ~2c -QUOTE_START = 7E 39 33 @ ~93 -QUOTE_END = 7E 39 34 @ ~94 UNK_95 = 7E 39 35 @ ~95 - Seems to be a special (?) symbol @ Placeholders for message arguments to swap out for names within strings. diff --git a/data/data_80DAF70.s b/data/data_80DAF70.s index 901f0dcf0..4e506b85c 100644 --- a/data/data_80DAF70.s +++ b/data/data_80DAF70.s @@ -302,17 +302,17 @@ gUnknown_80DB5C0: @ 80DB5C0 .global gUnknown_80DB5D4 gUnknown_80DB5D4: @ 80DB5D4 - .string "What is this Pokémon{APOSTROPHE}s nickname?\0" + .string "What is this Pokémon's nickname?\0" .align 2,0 .global gUnknown_80DB5F8 gUnknown_80DB5F8: @ 80DB5F8 - .string "What is your partner{APOSTROPHE}s nickname?\0" + .string "What is your partner's nickname?\0" .align 2,0 .global gUnknown_80DB61C gUnknown_80DB61C: @ 80DB61C - .string "What is your team{APOSTROPHE}s name?\0" + .string "What is your team's name?\0" .align 2,0 .global gUnknown_80DB638 diff --git a/data/data_80F59C8.s b/data/data_80F59C8.s index 2bff80aba..a51af4c4f 100644 --- a/data/data_80F59C8.s +++ b/data/data_80F59C8.s @@ -1682,23 +1682,23 @@ gUnknown_80F7F70: @ 80F7F70 .global gRescueSpotDescription gRescueSpotDescription: @ 80F7F7C .string "You reached the rescue spot where your\n" -.string "friend{APOSTROPHE}s team went down!\n" +.string "friend's team went down!\n" .string "Send an {COLOR_2 RED}A-OK Mail{END_COLOR_TEXT_2} from the Pelipper Post\n" -.string "Office to let your friend know you{APOSTROPHE}ve\n" +.string "Office to let your friend know you've\n" .string "rescued the defeated team.\0" .align 2,0 .global gWarpZoneDescription gWarpZoneDescription: @ 80F8030 .string "The warp zone leading to the next floor.\n" -.string "If you are on the final floor{COMMA} you will\n" +.string "If you are on the final floor, you will\n" .string "escape from the dungeon.\0" .align 2,0 .global gDungeonStairsDescription gDungeonStairsDescription: @ 80F809C .string "Stairs leading to the next floor.\n" -.string "If you are on the final floor{COMMA} you will\n" +.string "If you are on the final floor, you will\n" .string "escape from the dungeon.\0" .align 2,0 @@ -1768,15 +1768,15 @@ PokemonTrapDescription: @ 80F81D4 .global WonderTileDescription WonderTileDescription: @ 80F8224 .string "An odd floor tile seen in many dungeons.\n" -.string "Stepping on it resets the Pokémon{APOSTROPHE}s\n" -.string "{COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}{COMMA} and so on{COMMA} if\n" +.string "Stepping on it resets the Pokémon's\n" +.string "{COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}, and so on, if\n" .string "they are boosted or reduced.\0" .align 2, 0 .global ChestnutTrapDescription ChestnutTrapDescription: @ 80F82C0 -.string "Stepping on this trap makes a spiky{COMMA}\n" -.string "unshelled Chestnut drop{COMMA} inflicting\n" +.string "Stepping on this trap makes a spiky,\n" +.string "unshelled Chestnut drop, inflicting\n" .string "damage.\0" .align 2, 0 @@ -1790,16 +1790,16 @@ PPZeroTrapDescription: @ 80F8318 ExplosionTrapDescription: @ 80F8360 .string "Stepping on this trap triggers a\n" .string "{COLOR_2 CYAN}huge explosion{END_COLOR_TEXT_2}.\n" -.string "Its damage extends to other Pokémon{COMMA}\n" -.string "items{COMMA} and walls. It has a bigger\n" +.string "Its damage extends to other Pokémon,\n" +.string "items, and walls. It has a bigger\n" .string "range than a Selfdestruct Trap.\0" .align 2, 0 .global SelfdestructTrapDescription SelfdestructTrapDescription: @ 80F8404 .string "Stepping on this trap makes it {COLOR_2 CYAN}explode{END_COLOR_TEXT_2}.\n" -.string "Its damage extends to other Pokémon{COMMA}\n" -.string "items{COMMA} and walls around the trap.\0" +.string "Its damage extends to other Pokémon,\n" +.string "items, and walls around the trap.\0" .align 2, 0 .global PoisonTrapDescription @@ -1811,14 +1811,14 @@ PoisonTrapDescription: @ 80F847C .global SealTrapDescription SealTrapDescription: @ 80F84D0 .string "Stepping on this trap disables one\n" -.string "of the Pokémon{APOSTROPHE}s moves as long\n" +.string "of the Pokémon's moves as long\n" .string "as it remains on the same floor.\0" .align 2, 0 .global SlowTrapDescription SlowTrapDescription: @ 80F8538 .string "Stepping on this trap lowers the\n" -.string "Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} by one level.\0" +.string "Pokémon's {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} by one level.\0" .align 2, 0 .global SleepTrapDescription @@ -1831,7 +1831,7 @@ SleepTrapDescription: @ 80F8588 .global ConfuseTrapDescription ConfuseTrapDescription: @ 80F85DC .string "Stepping on this trap spins the Pokémon\n" -.string "around dizzyingly{COMMA} making it \n" +.string "around dizzyingly, making it \n" .string "{COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.\0" .align 2, 0 @@ -1851,10 +1851,10 @@ WarpTrapDescription: @ 80F8688 .global PitfallTrapDescription PitfallTrapDescription: @ 80F86D8 .string "Stepping on this trap drops the Pokémon\n" -.string "to the next floor{COMMA} inflicting damage.\n" -.string "If it{APOSTROPHE}s not the team leader{COMMA} the Pokémon\n" -.string "faints. If that happens{COMMA} even a Reviver\n" -.string "Seed can{APOSTROPHE}t help the fainted Pokémon.\0" +.string "to the next floor, inflicting damage.\n" +.string "If it's not the team leader, the Pokémon\n" +.string "faints. If that happens, even a Reviver\n" +.string "Seed can't help the fainted Pokémon.\0" .align 2, 0 .global SweetScentTrapDescription @@ -1878,8 +1878,8 @@ StickyTrapDescription: @ 80F8834 .global MudTrapDescription MudTrapDescription: @ 80F887C .string "Stepping on this trap makes it blow\n" -.string "mud that lowers the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}{COMMA}\n" -.string "{COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}{COMMA} or\n" +.string "mud that lowers the Pokémon's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2},\n" +.string "{COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}, or\n" .string "{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by one level.\0" .align 2, 0 @ This trap is unused in the game. @@ -1982,7 +1982,7 @@ gUnknown_80F8A28: @ 80F8A28 .global ToggleSetMoveCantUse_80F8A2C ToggleSetMoveCantUse_80F8A2C: @ 80F8A2C -.string "The set move can{APOSTROPHE}t be used.\0" +.string "The set move can't be used.\0" .align 2,0 .global gUnknown_80F8A4C @@ -1991,7 +1991,7 @@ gUnknown_80F8A4C: @ 80F8A4C .global BeingConstricted_80F8A50 BeingConstricted_80F8A50: @ 80F8A50 -.string "You{APOSTROPHE}re being constricted!\0" +.string "You're being constricted!\0" .align 2,0 .global gUnknown_80F8A6C @@ -2000,7 +2000,7 @@ gUnknown_80F8A6C: @ 80F8A6C .global CantMove_80F8A70 CantMove_80F8A70: @ 80F8A70 -.string "You can{APOSTROPHE}t move!\0" +.string "You can't move!\0" .align 2,0 .global gUnknown_80F8A84 @@ -2009,7 +2009,7 @@ gUnknown_80F8A84: @ 80F8A84 .global gUnknown_80F8A88 gUnknown_80F8A88: @ 80F8A88 -.string "You can{APOSTROPHE}t move while you{APOSTROPHE}re rooted!\0" +.string "You can't move while you're rooted!\0" .align 2,0 .global gUnknown_80F8AB0 @@ -2018,7 +2018,7 @@ gUnknown_80F8AB0: @ 80F8AB0 .global gUnknown_80F8AB4 gUnknown_80F8AB4: @ 80F8AB4 -.string "You can{APOSTROPHE}t move while wrapping a foe!\0" +.string "You can't move while wrapping a foe!\0" .align 2,0 .global gUnknown_80F8ADC @@ -2027,7 +2027,7 @@ gUnknown_80F8ADC: @ 80F8ADC .global gUnknown_80F8AE0 gUnknown_80F8AE0: @ 80F8AE0 -.string "The foe has you wrapped! You can{APOSTROPHE}t move!\0" +.string "The foe has you wrapped! You can't move!\0" .align 2,0 .global gUnknown_80F8B0C @@ -2081,7 +2081,7 @@ gUnknown_80F8BB4: @ 80F8BB4 .global gUnknown_80F8BB8 gUnknown_80F8BB8: @ 80F8BB8 -.string "It{APOSTROPHE}s all sticky and doesn{APOSTROPHE}t work!\0" +.string "It's all sticky and doesn't work!\0" .align 2,0 .global gUnknown_80F8BE0 @@ -2092,14 +2092,14 @@ gUnknown_80F8BE0: @ 80F8BE0 .global gUnknown_80F8BE4 gUnknown_80F8BE4: @ 80F8BE4 .string "The {ARG_MOVE_ITEM_1} is all sticky!\n" -.string "It doesn{APOSTROPHE}t work!\0" +.string "It doesn't work!\0" .align 2, 0 .4byte gUnknown_80F8BE4 .global gUnknown_80F8C14 gUnknown_80F8C14: @ 80F8C14 .string "The {ARG_MOVE_ITEM_1} is all sticky!\n" -.string "It can{APOSTROPHE}t be moved.\0" +.string "It can't be moved.\0" .align 2, 0 .global gItemStickyCannotMove1 @@ -2117,7 +2117,7 @@ gItemStickyCannotMove3: @ 80F8C48 .global gUnknown_80F8C4C gUnknown_80F8C4C: @ 80F8C4C .string "The {ARG_MOVE_ITEM_0} is all sticky!\n" -.string "It can{APOSTROPHE}t be equipped.\0" +.string "It can't be equipped.\0" .align 2,0 .global gItemStickyCannotEquip @@ -2222,7 +2222,7 @@ gUnknown_80F8DE0: @ 80F8DE0 .global gUnknown_80F8DE4 gUnknown_80F8DE4: @ 80F8DE4 -.string "It can{APOSTROPHE}t be put down here.\0" +.string "It can't be put down here.\0" .align 2, 0 .global gUnknown_80F8E04 @@ -2248,7 +2248,7 @@ gUnknown_80F8E2C: @ 80F8E2C .global gUnknown_80F8E30 gUnknown_80F8E30: @ 80F8E30 -.string "Items can{APOSTROPHE}t be exchanged here.\0" +.string "Items can't be exchanged here.\0" .align 2, 0 .global gNoExchangesHere @@ -2294,7 +2294,7 @@ gMonThrewItem2: @ 80F8EC8 .global gUnknown_80F8ECC gUnknown_80F8ECC: @ 80F8ECC -.string "You can{APOSTROPHE}t talk now.\0" +.string "You can't talk now.\0" .align 2, 0 .global gCannotTalk @@ -2304,7 +2304,7 @@ gCannotTalk: @ 80F8EE4 .global gUnknown_80F8EE8 gUnknown_80F8EE8: @ 80F8EE8 -.string "You can{APOSTROPHE}t say farewell now.\0" +.string "You can't say farewell now.\0" .align 2, 0 .global gCannotFarewell @@ -2346,7 +2346,7 @@ gMonSteppedOnItem: @ 80F8F54 .global gUnknown_80F8F58 gUnknown_80F8F58: @ 80F8F58 .string "{ARG_POKEMON_0} is terrified.\n" -.string "It didn{APOSTROPHE}t pick up the {ARG_MOVE_ITEM_0}.\0" +.string "It didn't pick up the {ARG_MOVE_ITEM_0}.\0" .align 2, 0 .global gMonTerrifiedCouldntPickUpItem @@ -2356,7 +2356,7 @@ gMonTerrifiedCouldntPickUpItem: @ 80F8F88 .global gUnknown_80F8F8C gUnknown_80F8F8C: @ 80F8F8C -.string "{ARG_POKEMON_0} couldn{APOSTROPHE}t pick up\n" +.string "{ARG_POKEMON_0} couldn't pick up\n" .string "the {ARG_MOVE_ITEM_0}.\0" .align 2, 0 @@ -2432,7 +2432,7 @@ gSayFarewellQ: @ 80F9094 .global gUnknown_80F9098 gUnknown_80F9098: @ 80F9098 .string "Send {ARG_POKEMON_0} back?\n" -.string "{ARG_POKEMON_0}{APOSTROPHE}s hold item will be lost.\0" +.string "{ARG_POKEMON_0}'s hold item will be lost.\0" .align 2, 0 .global gSendMonBackWithItemQ @@ -2712,7 +2712,7 @@ gUnknown_80F93A4: @ 80F93A4 .global gUnknown_80F93A8 gUnknown_80F93A8: @ 80F93A8 -.string "The move {ARG_MOVE_ITEM_0} can{APOSTROPHE}t be used!\0" +.string "The move {ARG_MOVE_ITEM_0} can't be used!\0" .align 2, 0 .global gUnknown_80F93C8 @@ -2871,7 +2871,7 @@ gPtrWrappedByMessage: @ 80F958C .global gPausedMessage gPausedMessage: @ 80F9590 -.string "{ARG_POKEMON_0} can{APOSTROPHE}t move!\0" +.string "{ARG_POKEMON_0} can't move!\0" .align 2, 0 .global gPtrPausedMessage @@ -2945,7 +2945,7 @@ gUnknown_80F9630: @ 80F9630 .global gUnknown_80F9634 gUnknown_80F9634: @ 80F9634 -.string "It{APOSTROPHE}s not very effective...\0" +.string "It's not very effective...\0" .align 2, 0 .global gUnknown_80F9654 @@ -2955,7 +2955,7 @@ gUnknown_80F9654: @ 80F9654 .global gUnknown_80F9658 gUnknown_80F9658: @ 80F9658 -.string "It{APOSTROPHE}s super effective!\0" +.string "It's super effective!\0" .align 2, 0 .global gUnknown_80F9670 @@ -3162,7 +3162,7 @@ gUnknown_80F99F4: @ 80F99F4 .global gUnknown_80F9A18 gUnknown_80F9A18: @ 80F9A18 -.string "{ARG_POKEMON_1}{APOSTROPHE}s burn inflicted\n" +.string "{ARG_POKEMON_1}'s burn inflicted\n" .string "{ARG_VALUE_0} damage!\0" .align 2, 0 @@ -3225,7 +3225,7 @@ gUnknown_80F9AAC: @ 80F9AAC .global gUnknown_80F9AB4 gUnknown_80F9AB4: @ 80F9AB4 -.string "{ARG_POKEMON_0}{APOSTROPHE}s HP went up {ARG_VALUE_0}!\0" +.string "{ARG_POKEMON_0}'s HP went up {ARG_VALUE_0}!\0" .align 2, 0 .global gUnknown_80F9ACC @@ -3235,7 +3235,7 @@ gUnknown_80F9ACC: @ 80F9ACC .global gUnknown_80F9AD0 gUnknown_80F9AD0: @ 80F9AD0 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Attack went up {ARG_VALUE_1}!\0" +.string "{ARG_POKEMON_0}'s Attack went up {ARG_VALUE_1}!\0" .align 2, 0 .global gUnknown_80F9AEC @@ -3245,7 +3245,7 @@ gUnknown_80F9AEC: @ 80F9AEC .global gUnknown_80F9AF0 gUnknown_80F9AF0: @ 80F9AF0 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Defense went up {ARG_VALUE_2}!\0" +.string "{ARG_POKEMON_0}'s Defense went up {ARG_VALUE_2}!\0" .align 2, 0 .global gUnknown_80F9B10 @@ -3255,7 +3255,7 @@ gUnknown_80F9B10: @ 80F9B10 .global gUnknown_80F9B14 gUnknown_80F9B14: @ 80F9B14 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Sp. Atk. went up {ARG_VALUE_3}!\0" +.string "{ARG_POKEMON_0}'s Sp. Atk. went up {ARG_VALUE_3}!\0" .align 2, 0 .global gUnknown_80F9B34 @@ -3265,7 +3265,7 @@ gUnknown_80F9B34: @ 80F9B34 .global gUnknown_80F9B38 gUnknown_80F9B38: @ 80F9B38 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Sp. Def. went up $d4!\0" +.string "{ARG_POKEMON_0}'s Sp. Def. went up $d4!\0" .align 2, 0 .global gUnknown_80F9B58 @@ -3275,7 +3275,7 @@ gUnknown_80F9B58: @ 80F9B58 .global gUnknown_80F9B5C gUnknown_80F9B5C: @ 80F9B5C -.string "{ARG_POKEMON_0} didn{APOSTROPHE}t level up.\0" +.string "{ARG_POKEMON_0} didn't level up.\0" .align 2, 0 .global gUnknown_80F9B74 @@ -3285,7 +3285,7 @@ gUnknown_80F9B74: @ 80F9B74 .global gUnknown_80F9B78 gUnknown_80F9B78: @ 80F9B78 -.string "{ARG_POKEMON_0} didn{APOSTROPHE}t level down.\0" +.string "{ARG_POKEMON_0} didn't level down.\0" .align 2, 0 .global gUnknown_80F9B94 @@ -3305,7 +3305,7 @@ gUnknown_80F9BB0: @ 80F9BB0 .global gUnknown_80F9BB4 gUnknown_80F9BB4: @ 80F9BB4 -.string "The leader couldn{APOSTROPHE}t be switched!\0" +.string "The leader couldn't be switched!\0" .align 2, 0 .global gUnknown_80F9BD8 @@ -3315,7 +3315,7 @@ gUnknown_80F9BD8: @ 80F9BD8 .global gUnknown_80F9BDC gUnknown_80F9BDC: @ 80F9BDC -.string "You haven{APOSTROPHE}t paid for the merchandise yet!\0" +.string "You haven't paid for the merchandise yet!\0" .align 2, 0 .global gUnknown_80F9C08 @@ -3325,7 +3325,7 @@ gUnknown_80F9C08: @ 80F9C08 .global gUnknown_80F9C0C gUnknown_80F9C0C: @ 80F9C0C -.string "A thief can{APOSTROPHE}t switch leaders!\0" +.string "A thief can't switch leaders!\0" .align 2, 0 .global gUnknown_80F9C2C @@ -3335,7 +3335,7 @@ gUnknown_80F9C2C: @ 80F9C2C .global gUnknown_80F9C30 gUnknown_80F9C30: @ 80F9C30 -.string "...Something{APOSTROPHE}s stirring.\0" +.string "...Something's stirring.\0" .align 2, 0 .global gUnknown_80F9C4C @@ -3345,7 +3345,7 @@ gUnknown_80F9C4C: @ 80F9C4C .global gUnknown_80F9C50 gUnknown_80F9C50: @ 80F9C50 -.string "...Something{APOSTROPHE}s approaching.\0" +.string "...Something's approaching.\0" .align 2, 0 .global gUnknown_80F9C70 @@ -3355,7 +3355,7 @@ gUnknown_80F9C70: @ 80F9C70 .global gUnknown_80F9C74 gUnknown_80F9C74: @ 80F9C74 -.string "It{APOSTROPHE}s getting closer!\0" +.string "It's getting closer!\0" .align 2, 0 .global gUnknown_80F9C8C @@ -3365,7 +3365,7 @@ gUnknown_80F9C8C: @ 80F9C8C .global gUnknown_80F9C90 gUnknown_80F9C90: @ 80F9C90 -.string "It{APOSTROPHE}s right nearby! It{APOSTROPHE}s gusting hard!\0" +.string "It's right nearby! It's gusting hard!\0" .align 2, 0 .global gUnknown_80F9CBC @@ -3397,12 +3397,12 @@ gUnknown_80F9CEC: @ 80F9CEC .global gUnknown_80F9CF4 gUnknown_80F9CF4: @ 80F9CF4 -.string "Oh{COMMA} no! {ARG_POKEMON_1} fainted!\0" +.string "Oh, no! {ARG_POKEMON_1} fainted!\0" .align 2, 0 .global gUnknown_80F9D0C gUnknown_80F9D0C: @ 80F9D0C -.string "Oh{COMMA} no! {ARG_POKEMON_1} was defeated!\0" +.string "Oh, no! {ARG_POKEMON_1} was defeated!\0" .align 2, 0 .global gUnknown_80F9D28 @@ -3501,7 +3501,7 @@ gUnknown_80F9E80: @ 80F9E80 .global gUnknown_80F9E84 gUnknown_80F9E84: @ 80F9E84 -.string "{ARG_POKEMON_0}{APOSTROPHE}s level remained unchanged.\0" +.string "{ARG_POKEMON_0}'s level remained unchanged.\0" .align 2, 0 .4byte gUnknown_80F9E84 @@ -3517,7 +3517,7 @@ gUnknown_80F9EC8: @ 80F9EC8 .global gUnknown_80F9ECC gUnknown_80F9ECC: @ 80F9ECC -.string "{ARG_POKEMON_0}{APOSTROPHE}s level didn{APOSTROPHE}t go down.\0" +.string "{ARG_POKEMON_0}'s level didn't go down.\0" .align 2, 0 .global gUnknown_80F9EEC @@ -3537,7 +3537,7 @@ gUnknown_80F9F04: @ 80F9F04 .global gUnknown_80F9F08 gUnknown_80F9F08: @ 80F9F08 -.string "{ARG_POKEMON_0} didn{APOSTROPHE}t learn the new move.\0" +.string "{ARG_POKEMON_0} didn't learn the new move.\0" .align 2, 0 .global gUnknown_80F9F2C @@ -3547,7 +3547,7 @@ gUnknown_80F9F2C: @ 80F9F2C .global gUnknown_80F9F30 gUnknown_80F9F30: @ 80F9F30 -.string "This Pokémon learned a new move{COMMA}\n" +.string "This Pokémon learned a new move,\n" .string "so it must forget an old one. Moves can\n" .string "be relearned at the Gulpin Link Shop.\0" .align 2, 0 @@ -3581,7 +3581,7 @@ gUnknown_80FA004: @ 80FA004 .global gUnknown_80FA008 gUnknown_80FA008: @ 80FA008 -.string "The Pokémon couldn{APOSTROPHE}t join the team...\0" +.string "The Pokémon couldn't join the team...\0" .align 2, 0 .global gUnknown_80FA030 @@ -3591,7 +3591,7 @@ gUnknown_80FA030: @ 80FA030 .global gUnknown_80FA034 gUnknown_80FA034: @ 80FA034 -.string "But it couldn{APOSTROPHE}t join the team.\0" +.string "But it couldn't join the team.\0" .align 2, 0 .global gUnknown_80FA058 @@ -3654,17 +3654,17 @@ gUnknown_80FA124: @ 80FA124 .global gUnknown_80FA138 gUnknown_80FA138: @ 80FA138 -.string "{ARG_POKEMON_0}{APOSTROPHE}s at quadruple speed!\0" +.string "{ARG_POKEMON_0}'s at quadruple speed!\0" .align 2, 0 .global gUnknown_80FA154 gUnknown_80FA154: @ 80FA154 -.string "{ARG_POKEMON_0}{APOSTROPHE}s at triple speed!\0" +.string "{ARG_POKEMON_0}'s at triple speed!\0" .align 2, 0 .global gUnknown_80FA170 gUnknown_80FA170: @ 80FA170 -.string "{ARG_POKEMON_0}{APOSTROPHE}s at double speed!\0" +.string "{ARG_POKEMON_0}'s at double speed!\0" .align 2, 0 .global gUnknown_80FA18C @@ -3770,7 +3770,7 @@ gUnknown_80FA3B8: @ 80FA3B8 .global gUnknown_80FA3BC gUnknown_80FA3BC: @ 80FA3BC -.string "You{APOSTROPHE}re holding a delivery item.\n" +.string "You're holding a delivery item.\n" .string "Return to the base without continuing?\0" .align 2, 0 @@ -3781,8 +3781,8 @@ gUnknown_80FA408: @ 80FA408 .global gUnknown_80FA40C gUnknown_80FA40C: @ 80FA40C -.string "The {ARG_MOVE_ITEM_0} isn{APOSTROPHE}t in the Toolbox.\n" -.string "It couldn{APOSTROPHE}t be delivered.\0" +.string "The {ARG_MOVE_ITEM_0} isn't in the Toolbox.\n" +.string "It couldn't be delivered.\0" .align 2, 0 .global gUnknown_80FA448 @@ -3792,7 +3792,7 @@ gUnknown_80FA448: @ 80FA448 .global gUnknown_80FA44C gUnknown_80FA44C: @ 80FA44C -.string "{ARG_POKEMON_1} can{APOSTROPHE}t talk now.\0" +.string "{ARG_POKEMON_1} can't talk now.\0" .align 2, 0 .global gUnknown_80FA464 @@ -3807,7 +3807,7 @@ gUnknown_80FA468: @ 80FA468 .string "{ARG_POKEMON_2} is delighted!\n" .string "{ARG_POKEMON_2}: Thank you!\n" .string "\n\n" -.string "{ARG_POKEMON_2}{APOSTROPHE}s twosome left the dungeon!\n" +.string "{ARG_POKEMON_2}'s twosome left the dungeon!\n" .string "\n\0" .align 2, 0 @@ -3823,7 +3823,7 @@ gUnknown_80FA4D8: @ 80FA4D8 .global gUnknown_80FA4DC gUnknown_80FA4DC: @ 80FA4DC -.string "{ARG_POKEMON_2} doesn{APOSTROPHE}t seem to be around.\0" +.string "{ARG_POKEMON_2} doesn't seem to be around.\0" .align 2, 0 .global gUnknown_80FA500 @@ -3848,7 +3848,7 @@ gUnknown_80FA530: @ 80FA530 .global gUnknown_80FA534 gUnknown_80FA534: @ 80FA534 -.string "{ARG_POKEMON_2} can{APOSTROPHE}t talk now.\0" +.string "{ARG_POKEMON_2} can't talk now.\0" .align 2, 0 .global gUnknown_80FA54C @@ -3869,7 +3869,7 @@ gUnknown_80FA580: @ 80FA580 .global gUnknown_80FA584 gUnknown_80FA584: @ 80FA584 -.string "It{APOSTROPHE}s impossible to go down the stairs\n" +.string "It's impossible to go down the stairs\n" .string "now!\0" .align 2, 0 @@ -3901,7 +3901,7 @@ gUnknown_80FA61C: @ 80FA61C .global gUnknown_80FA620 gUnknown_80FA620: @ 80FA620 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Reflect faded.\0" +.string "{ARG_POKEMON_0}'s Reflect faded.\0" .align 2, 0 .global gUnknown_80FA638 @@ -3911,7 +3911,7 @@ gUnknown_80FA638: @ 80FA638 .global gUnknown_80FA63C gUnknown_80FA63C: @ 80FA63C -.string "{ARG_POKEMON_0}{APOSTROPHE}s Light Screen faded.\0" +.string "{ARG_POKEMON_0}'s Light Screen faded.\0" .align 2, 0 .global gUnknown_80FA658 @@ -3921,7 +3921,7 @@ gUnknown_80FA658: @ 80FA658 .global gUnknown_80FA65C gUnknown_80FA65C: @ 80FA65C -.string "{ARG_POKEMON_0}{APOSTROPHE}s Counter effect faded.\0" +.string "{ARG_POKEMON_0}'s Counter effect faded.\0" .align 2, 0 .global gUnknown_80FA67C @@ -3931,7 +3931,7 @@ gUnknown_80FA67C: @ 80FA67C .global gUnknown_80FA680 gUnknown_80FA680: @ 80FA680 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Safeguard faded.\0" +.string "{ARG_POKEMON_0}'s Safeguard faded.\0" .align 2, 0 .global gUnknown_80FA69C @@ -3941,7 +3941,7 @@ gUnknown_80FA69C: @ 80FA69C .global gUnknown_80FA6A0 gUnknown_80FA6A0: @ 80FA6A0 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Magic Coat faded.\0" +.string "{ARG_POKEMON_0}'s Magic Coat faded.\0" .align 2, 0 .global gUnknown_80FA6BC @@ -3951,7 +3951,7 @@ gUnknown_80FA6BC: @ 80FA6BC .global gUnknown_80FA6C0 gUnknown_80FA6C0: @ 80FA6C0 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Wish faded.\0" +.string "{ARG_POKEMON_0}'s Wish faded.\0" .align 2, 0 .global gUnknown_80FA6D4 @@ -4001,7 +4001,7 @@ gUnknown_80FA734: @ 80FA734 .global gUnknown_80FA738 gUnknown_80FA738: @ 80FA738 -.string "Water Sport{APOSTROPHE}s effect faded.\0" +.string "Water Sport's effect faded.\0" .align 2, 0 .global gUnknown_80FA758 @@ -4011,7 +4011,7 @@ gUnknown_80FA758: @ 80FA758 .global gUnknown_80FA75C gUnknown_80FA75C: @ 80FA75C -.string "Mud Sport{APOSTROPHE}s effect faded.\0" +.string "Mud Sport's effect faded.\0" .align 2, 0 .global gUnknown_80FA778 @@ -4021,7 +4021,7 @@ gUnknown_80FA778: @ 80FA778 .global gUnknown_80FA77C gUnknown_80FA77C: @ 80FA77C -.string "{ARG_POKEMON_0}{APOSTROPHE}s Leech Seed wore off.\0" +.string "{ARG_POKEMON_0}'s Leech Seed wore off.\0" .align 2, 0 .global gUnknown_80FA79C @@ -4041,7 +4041,7 @@ gUnknown_80FA7BC: @ 80FA7BC .global gUnknown_80FA7C0 gUnknown_80FA7C0: @ 80FA7C0 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Snatch wore off!\0" +.string "{ARG_POKEMON_0}'s Snatch wore off!\0" .align 2, 0 .global gUnknown_80FA7DC @@ -4081,7 +4081,7 @@ gUnknown_80FA824: @ 80FA824 .global gUnknown_80FA828 gUnknown_80FA828: @ 80FA828 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Ingrain wore off!\0" +.string "{ARG_POKEMON_0}'s Ingrain wore off!\0" .align 2, 0 .global gUnknown_80FA844 @@ -4152,7 +4152,7 @@ gUnknown_80FA90C: @ 80FA90C .global gUnknown_80FA910 gUnknown_80FA910: @ 80FA910 -.string "{ARG_POKEMON_0}{APOSTROPHE}s damage returned to normal!\0" +.string "{ARG_POKEMON_0}'s damage returned to normal!\0" .align 2, 0 .global gUnknown_80FA934 @@ -4192,7 +4192,7 @@ gUnknown_80FA9A0: @ 80FA9A0 .global gUnknown_80FA9A4 gUnknown_80FA9A4: @ 80FA9A4 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Protect wore off!\0" +.string "{ARG_POKEMON_0}'s Protect wore off!\0" .align 2, 0 .global gUnknown_80FA9C0 @@ -4202,7 +4202,7 @@ gUnknown_80FA9C0: @ 80FA9C0 .global gUnknown_80FA9C4 gUnknown_80FA9C4: @ 80FA9C4 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Taunt wore off!\0" +.string "{ARG_POKEMON_0}'s Taunt wore off!\0" .align 2, 0 .global gUnknown_80FA9DC @@ -4252,7 +4252,7 @@ gUnknown_80FAA48: @ 80FAA48 .global gUnknown_80FAA4C gUnknown_80FAA4C: @ 80FAA4C -.string "{ARG_POKEMON_0}{APOSTROPHE}s Mirror Coat faded!\0" +.string "{ARG_POKEMON_0}'s Mirror Coat faded!\0" .align 2, 0 .global gUnknown_80FAA68 @@ -4291,7 +4291,7 @@ gPtrMonStoppedEnduringMessage: @ 80FAAC8 .global gMonMirrorMoveFadedMessage gMonMirrorMoveFadedMessage: @ 80FAACC -.string "{ARG_POKEMON_0}{APOSTROPHE}s Mirror Move faded!\0" +.string "{ARG_POKEMON_0}'s Mirror Move faded!\0" .align 2, 0 .global gPtrMonMirrorMoveFadedMessage @@ -4300,7 +4300,7 @@ gPtrMonMirrorMoveFadedMessage: @ 80FAAE8 .global gMonConversion2FailedMessage gMonConversion2FailedMessage: @ 80FAAEC -.string "{ARG_POKEMON_0}{APOSTROPHE}s Conversion 2 faded!\0" +.string "{ARG_POKEMON_0}'s Conversion 2 faded!\0" .align 2, 0 .global gPtrMonConversion2FailedMessage @@ -4318,7 +4318,7 @@ gPtrMonGaveUpVitalThrowMessage: @ 80FAB28 .global gUnknown_80FAB2C gUnknown_80FAB2C: @ 80FAB2C -.string "{ARG_POKEMON_0}{APOSTROPHE}s Mist faded!\0" +.string "{ARG_POKEMON_0}'s Mist faded!\0" .align 2, 0 .global gUnknown_80FAB40 @@ -4328,7 +4328,7 @@ gUnknown_80FAB40: @ 80FAB40 .global gUnknown_80FAB44 gUnknown_80FAB44: @ 80FAB44 -.string "{ARG_POKEMON_0}{APOSTROPHE}s appearance returned to\n" +.string "{ARG_POKEMON_0}'s appearance returned to\n" .string "normal!\0" .align 2, 0 @@ -4349,7 +4349,7 @@ gUnknown_80FAB90: @ 80FAB90 .global gUnknown_80FAB94 gUnknown_80FAB94: @ 80FAB94 -.string "{ARG_POKEMON_0} can{APOSTROPHE}t go through walls\n" +.string "{ARG_POKEMON_0} can't go through walls\n" .string "anymore!\0" .align 2, 0 @@ -4365,7 +4365,7 @@ gUnknown_80FABC0: @ 80FABC0 .global gUnknown_80FABC4 gUnknown_80FABC4: @ 80FABC4 -.string "{ARG_POKEMON_0}{APOSTROPHE}s rage faded!\0" +.string "{ARG_POKEMON_0}'s rage faded!\0" .align 2, 0 .global gUnknown_80FABD8 @@ -4544,7 +4544,7 @@ gUnknown_80FADD8: @ 80FADD8 .global gUnknown_80FADDC gUnknown_80FADDC: @ 80FADDC -.string "Fire moves won{APOSTROPHE}t become stronger!\0" +.string "Fire moves won't become stronger!\0" .align 2, 0 .global gUnknown_80FAE00 @@ -4842,7 +4842,7 @@ gUnknown_80FB1E0: @ 80FB1E0 .global gUnknown_80FB1E4 gUnknown_80FB1E4: @ 80FB1E4 -.string "{ARG_POKEMON_0}{APOSTROPHE}s HP remained unchanged.\0" +.string "{ARG_POKEMON_0}'s HP remained unchanged.\0" .align 2, 0 .global gUnknown_80FB204 @@ -4862,7 +4862,7 @@ gUnknown_80FB21C: @ 80FB21C .global gUnknown_80FB220 gUnknown_80FB220: @ 80FB220 -.string "{ARG_POKEMON_0}{APOSTROPHE}s max. HP rose by {ARG_VALUE_1}.\0" +.string "{ARG_POKEMON_0}'s max. HP rose by {ARG_VALUE_1}.\0" .align 2, 0 .global gUnknown_80FB240 @@ -4893,7 +4893,7 @@ gUnknown_80FB27C: @ 80FB27C .global gUnknown_80FB280 gUnknown_80FB280: @ 80FB280 .string "{ARG_POKEMON_0} became paralyzed!\n" -.string "It can{APOSTROPHE}t attack!\0" +.string "It can't attack!\0" .align 2, 0 .global gUnknown_80FB2AC @@ -4973,7 +4973,7 @@ gUnknown_80FB360: @ 80FB360 .global gUnknown_80FB364 gUnknown_80FB364: @ 80FB364 -.string "{ARG_POKEMON_0} didn{APOSTROPHE}t become drowsy!\0" +.string "{ARG_POKEMON_0} didn't become drowsy!\0" .align 2, 0 .global gUnknown_80FB380 @@ -5029,7 +5029,7 @@ gUnknown_80FB3E0: @ 80FB3E0 .global gUnknown_80FB3E4 gUnknown_80FB3E4: @ 80FB3E4 -.string "{ARG_POKEMON_0} didn{APOSTROPHE}t yawn!\0" +.string "{ARG_POKEMON_0} didn't yawn!\0" .align 2, 0 .global gUnknown_80FB3F8 @@ -5079,7 +5079,7 @@ gUnknown_80FB458: @ 80FB458 .global gUnknown_80FB45C gUnknown_80FB45C: @ 80FB45C -.string "{ARG_POKEMON_0} can{APOSTROPHE}t move on the next turn!\0" +.string "{ARG_POKEMON_0} can't move on the next turn!\0" .align 2, 0 .global gUnknown_80FB480 @@ -5089,7 +5089,7 @@ gUnknown_80FB480: @ 80FB480 .global gUnknown_80FB484 gUnknown_80FB484: @ 80FB484 -.string "{ARG_POKEMON_0} already can{APOSTROPHE}t move on\n" +.string "{ARG_POKEMON_0} already can't move on\n" .string "the next turn!\0" .align 2, 0 @@ -5100,7 +5100,7 @@ gUnknown_80FB4B0: @ 80FB4B0 .global gUnknown_80FB4B4 gUnknown_80FB4B4: @ 80FB4B4 -.string "{ARG_POKEMON_0} can{APOSTROPHE}t move for a while!\0" +.string "{ARG_POKEMON_0} can't move for a while!\0" .align 2, 0 .global gUnknown_80FB4D4 @@ -5391,7 +5391,7 @@ gUnknown_80FB810: @ 80FB810 .global gUnknown_80FB814 gUnknown_80FB814: @ 80FB814 -.string "{ARG_POKEMON_0}{APOSTROPHE}s vision turned weird!\0" +.string "{ARG_POKEMON_0}'s vision turned weird!\0" .align 2, 0 .global gUnknown_80FB834 @@ -5401,7 +5401,7 @@ gUnknown_80FB834: @ 80FB834 .global gUnknown_80FB838 gUnknown_80FB838: @ 80FB838 -.string "{ARG_POKEMON_0}{APOSTROPHE}s vision is already weird!\0" +.string "{ARG_POKEMON_0}'s vision is already weird!\0" .align 2, 0 .global gUnknown_80FB85C @@ -5411,7 +5411,7 @@ gUnknown_80FB85C: @ 80FB85C .global gUnknown_80FB860 gUnknown_80FB860: @ 80FB860 -.string "{ARG_POKEMON_0}{APOSTROPHE}s vision was restored!\0" +.string "{ARG_POKEMON_0}'s vision was restored!\0" .align 2, 0 .global gUnknown_80FB880 @@ -5421,7 +5421,7 @@ gUnknown_80FB880: @ 80FB880 .global gUnknown_80FB884 gUnknown_80FB884: @ 80FB884 -.string "{ARG_POKEMON_0}{APOSTROPHE}s vision is fine!\0" +.string "{ARG_POKEMON_0}'s vision is fine!\0" .align 2, 0 .global gUnknown_80FB89C @@ -5431,7 +5431,7 @@ gUnknown_80FB89C: @ 80FB89C .global gUnknown_80FB8A0 gUnknown_80FB8A0: @ 80FB8A0 -.string "{ARG_POKEMON_0}{APOSTROPHE}s damage was fixed!\0" +.string "{ARG_POKEMON_0}'s damage was fixed!\0" .align 2, 0 .global gUnknown_80FB8BC @@ -5441,7 +5441,7 @@ gUnknown_80FB8BC: @ 80FB8BC .global gUnknown_80FB8C0 gUnknown_80FB8C0: @ 80FB8C0 -.string "{ARG_POKEMON_0}{APOSTROPHE}s damage is already fixed!\0" +.string "{ARG_POKEMON_0}'s damage is already fixed!\0" .align 2, 0 .global gUnknown_80FB8E4 @@ -5561,7 +5561,7 @@ gUnknown_80FBA38: @ 80FBA38 .global gUnknown_80FBA3C gUnknown_80FBA3C: @ 80FBA3C -.string "{ARG_POKEMON_0} can{APOSTROPHE}t store any more power!\0" +.string "{ARG_POKEMON_0} can't store any more power!\0" .align 2, 0 .global gUnknown_80FBA60 @@ -5672,7 +5672,7 @@ gUnknown_80FBBB8: @ 80FBBB8 .global gUnknown_80FBBBC gUnknown_80FBBBC: @ 80FBBBC -.string "{ARG_POKEMON_0} won{APOSTROPHE}t do encores!\0" +.string "{ARG_POKEMON_0} won't do encores!\0" .align 2, 0 .global gUnknown_80FBBD4 @@ -5763,7 +5763,7 @@ gUnknown_80FBCF0: @ 80FBCF0 .global gUnknown_80FBCF4 gUnknown_80FBCF4: @ 80FBCF4 -.string "{ARG_POKEMON_0}{APOSTROPHE}s stats returned to normal.\0" +.string "{ARG_POKEMON_0}'s stats returned to normal.\0" .align 2, 0 .global gUnknown_80FBD18 @@ -5773,7 +5773,7 @@ gUnknown_80FBD18: @ 80FBD18 .global gUnknown_80FBD1C gUnknown_80FBD1C: @ 80FBD1C -.string "{ARG_POKEMON_0}{APOSTROPHE}s stats appear unchanged.\0" +.string "{ARG_POKEMON_0}'s stats appear unchanged.\0" .align 2, 0 .global gUnknown_80FBD3C @@ -5793,7 +5793,7 @@ gUnknown_80FBD58: @ 80FBD58 .global gUnknown_80FBD5C gUnknown_80FBD5C: @ 80FBD5C -.string "{ARG_POKEMON_0}{APOSTROPHE}s Belly went down.\0" +.string "{ARG_POKEMON_0}'s Belly went down.\0" .align 2, 0 .global gUnknown_80FBD78 @@ -5803,7 +5803,7 @@ gUnknown_80FBD78: @ 80FBD78 .global gUnknown_80FBD7C gUnknown_80FBD7C: @ 80FBD7C -.string "{ARG_POKEMON_0}{APOSTROPHE}s max. Belly size shrank!\0" +.string "{ARG_POKEMON_0}'s max. Belly size shrank!\0" .align 2, 0 .global gUnknown_80FBD9C @@ -5813,7 +5813,7 @@ gUnknown_80FBD9C: @ 80FBD9C .global gUnknown_80FBDA0 gUnknown_80FBDA0: @ 80FBDA0 -.string "{ARG_POKEMON_0}{APOSTROPHE}s max. Belly size increased!\0" +.string "{ARG_POKEMON_0}'s max. Belly size increased!\0" .align 2, 0 .global gUnknown_80FBDC4 @@ -5823,7 +5823,7 @@ gUnknown_80FBDC4: @ 80FBDC4 .global gUnknown_80FBDC8 gUnknown_80FBDC8: @ 80FBDC8 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Belly won{APOSTROPHE}t get any bigger!\0" +.string "{ARG_POKEMON_0}'s Belly won't get any bigger!\0" .align 2, 0 .global gUnknown_80FBDF0 @@ -5833,7 +5833,7 @@ gUnknown_80FBDF0: @ 80FBDF0 .global gUnknown_80FBDF4 gUnknown_80FBDF4: @ 80FBDF4 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Belly didn{APOSTROPHE}t change!\0" +.string "{ARG_POKEMON_0}'s Belly didn't change!\0" .align 2, 0 .global gUnknown_80FBE14 @@ -5843,7 +5843,7 @@ gUnknown_80FBE14: @ 80FBE14 .global gUnknown_80FBE18 gUnknown_80FBE18: @ 80FBE18 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Belly size didn{APOSTROPHE}t change!\0" +.string "{ARG_POKEMON_0}'s Belly size didn't change!\0" .align 2, 0 .global gUnknown_80FBE3C @@ -5858,7 +5858,7 @@ gUnknown_80FBE40: @ 80FBE40 .global gUnknown_80FBE44 gUnknown_80FBE44: @ 80FBE44 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Belly filled up full!\0" +.string "{ARG_POKEMON_0}'s Belly filled up full!\0" .align 2, 0 .global gUnknown_80FBE64 @@ -5868,7 +5868,7 @@ gUnknown_80FBE64: @ 80FBE64 .global gUnknown_80FBE68 gUnknown_80FBE68: @ 80FBE68 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Belly was filled!\0" +.string "{ARG_POKEMON_0}'s Belly was filled!\0" .align 2, 0 .global gUnknown_80FBE84 @@ -5878,7 +5878,7 @@ gUnknown_80FBE84: @ 80FBE84 .global gUnknown_80FBE88 gUnknown_80FBE88: @ 80FBE88 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Belly dropped!\0" +.string "{ARG_POKEMON_0}'s Belly dropped!\0" .align 2, 0 .global gUnknown_80FBEA0 @@ -5899,7 +5899,7 @@ gUnknown_80FBEC0: @ 80FBEC0 .global gUnknown_80FBEC4 gUnknown_80FBEC4: @ 80FBEC4 -.string "{ARG_POKEMON_0}{APOSTROPHE}s transformation failed!\0" +.string "{ARG_POKEMON_0}'s transformation failed!\0" .align 2, 0 .global gUnknown_80FBEE4 @@ -5979,7 +5979,7 @@ gUnknown_80FBFB8: @ 80FBFB8 .global gUnknown_80FBFBC gUnknown_80FBFBC: @ 80FBFBC -.string "{ARG_POKEMON_0} isn{APOSTROPHE}t a Ghost type!\0" +.string "{ARG_POKEMON_0} isn't a Ghost type!\0" .align 2, 0 .global gUnknown_80FBFD8 @@ -5989,7 +5989,7 @@ gUnknown_80FBFD8: @ 80FBFD8 .global gUnknown_80FBFDC gUnknown_80FBFDC: @ 80FBFDC -.string "{ARG_POKEMON_0}{APOSTROPHE}s Evasion returned to normal!\0" +.string "{ARG_POKEMON_0}'s Evasion returned to normal!\0" .align 2, 0 .global gUnknown_80FC000 @@ -6109,7 +6109,7 @@ gUnknown_80FC0E4: @ 80FC0E4 .global gUnknown_80FC0E8 gUnknown_80FC0E8: @ 80FC0E8 -.string "{ARG_POKEMON_0}{APOSTROPHE}s {ARG_MOVE_ITEM_0} rose!\0" +.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} rose!\0" .align 2, 0 .global gUnknown_80FC0FC @@ -6119,7 +6119,7 @@ gUnknown_80FC0FC: @ 80FC0FC .global gUnknown_80FC100 gUnknown_80FC100: @ 80FC100 -.string "{ARG_POKEMON_0}{APOSTROPHE}s {ARG_MOVE_ITEM_0} fell!\0" +.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} fell!\0" .align 2, 0 .global gUnknown_80FC114 @@ -6139,7 +6139,7 @@ gUnknown_80FC11C: @ 80FC11C .global gUnknown_80FC120 gUnknown_80FC120: @ 80FC120 -.string "{ARG_POKEMON_0}{APOSTROPHE}s {ARG_MOVE_ITEM_0} rose\n" +.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} rose\n" .string "{ARG_MOVE_ITEM_1}!\0" .align 2, 0 @@ -6155,7 +6155,7 @@ gUnknown_80FC13C: @ 80FC13C .global gUnknown_80FC140 gUnknown_80FC140: @ 80FC140 -.string "{ARG_POKEMON_0}{APOSTROPHE}s {ARG_MOVE_ITEM_0} fell\n" +.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} fell\n" .string "{ARG_MOVE_ITEM_1}!\0" .align 2, 0 @@ -6171,7 +6171,7 @@ gUnknown_80FC15C: @ 80FC15C .global gUnknown_80FC160 gUnknown_80FC160: @ 80FC160 -.string "{ARG_POKEMON_0}{APOSTROPHE}s {ARG_MOVE_ITEM_0} remained\n" +.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} remained\n" .string "unchanged!\0" .align 2, 0 @@ -6187,7 +6187,7 @@ gUnknown_80FC184: @ 80FC184 .global gUnknown_80FC188 gUnknown_80FC188: @ 80FC188 -.string "{ARG_POKEMON_0}{APOSTROPHE}s {ARG_MOVE_ITEM_0} fell\n" +.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} fell\n" .string "slightly!\0" .align 2, 0 @@ -6198,7 +6198,7 @@ gUnknown_80FC1A4: @ 80FC1A4 .global gUnknown_80FC1A8 gUnknown_80FC1A8: @ 80FC1A8 -.string "{ARG_POKEMON_0}{APOSTROPHE}s {ARG_MOVE_ITEM_0} rose\n" +.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} rose\n" .string "slightly!\0" .align 2, 0 @@ -6209,7 +6209,7 @@ gUnknown_80FC1C4: @ 80FC1C4 .global gUnknown_80FC1C8 gUnknown_80FC1C8: @ 80FC1C8 -.string "{ARG_POKEMON_0}{APOSTROPHE}s {ARG_MOVE_ITEM_0} won{APOSTROPHE}t\n" +.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} won't\n" .string "go down any more!\0" .align 2, 0 @@ -6220,7 +6220,7 @@ gUnknown_80FC1F0: @ 80FC1F0 .global gUnknown_80FC1F4 gUnknown_80FC1F4: @ 80FC1F4 -.string "{ARG_POKEMON_0}{APOSTROPHE}s {ARG_MOVE_ITEM_0} won{APOSTROPHE}t\n" +.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} won't\n" .string "go up any more!\0" .align 2, 0 @@ -6236,7 +6236,7 @@ gUnknown_80FC21C: @ 80FC21C .global gUnknown_80FC220 gUnknown_80FC220: @ 80FC220 -.string "{ARG_POKEMON_0}{APOSTROPHE}s {ARG_MOVE_ITEM_0} won{APOSTROPHE}t\n" +.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} won't\n" .string "go down any more.\0" .align 2, 0 @@ -6247,7 +6247,7 @@ gUnknown_80FC248: @ 80FC248 .global gUnknown_80FC24C gUnknown_80FC24C: @ 80FC24C -.string "{ARG_POKEMON_0}{APOSTROPHE}s {ARG_MOVE_ITEM_0} won{APOSTROPHE}t\n" +.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} won't\n" .string "go up any more.\0" .align 2, 0 @@ -6263,7 +6263,7 @@ gUnknown_80FC274: @ 80FC274 .global gUnknown_80FC278 gUnknown_80FC278: @ 80FC278 -.string "{ARG_POKEMON_0}{APOSTROPHE}s speed didn{APOSTROPHE}t change!\0" +.string "{ARG_POKEMON_0}'s speed didn't change!\0" .align 2, 0 .global gUnknown_80FC298 @@ -6273,7 +6273,7 @@ gUnknown_80FC298: @ 80FC298 .global gUnknown_80FC29C gUnknown_80FC29C: @ 80FC29C -.string "{ARG_POKEMON_0} can{APOSTROPHE}t go any faster!\0" +.string "{ARG_POKEMON_0} can't go any faster!\0" .align 2, 0 .global gUnknown_80FC2B8 @@ -6283,7 +6283,7 @@ gUnknown_80FC2B8: @ 80FC2B8 .global gUnknown_80FC2BC gUnknown_80FC2BC: @ 80FC2BC -.string "{ARG_POKEMON_0} can{APOSTROPHE}t go any slower!\0" +.string "{ARG_POKEMON_0} can't go any slower!\0" .align 2, 0 .global gUnknown_80FC2D8 @@ -6313,7 +6313,7 @@ gUnknown_80FC31C: @ 80FC31C .global gUnknown_80FC320 gUnknown_80FC320: @ 80FC320 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Attack was boosted.\0" +.string "{ARG_POKEMON_0}'s Attack was boosted.\0" .align 2, 0 .global gUnknown_80FC33C @@ -6323,7 +6323,7 @@ gUnknown_80FC33C: @ 80FC33C .global gUnknown_80FC340 gUnknown_80FC340: @ 80FC340 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Attack didn{APOSTROPHE}t go up.\0" +.string "{ARG_POKEMON_0}'s Attack didn't go up.\0" .align 2, 0 .global gUnknown_80FC360 @@ -6333,7 +6333,7 @@ gUnknown_80FC360: @ 80FC360 .global gUnknown_80FC364 gUnknown_80FC364: @ 80FC364 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Special Attack was boosted.\0" +.string "{ARG_POKEMON_0}'s Special Attack was boosted.\0" .align 2, 0 .global gUnknown_80FC388 @@ -6343,7 +6343,7 @@ gUnknown_80FC388: @ 80FC388 .global gUnknown_80FC38C gUnknown_80FC38C: @ 80FC38C -.string "{ARG_POKEMON_0}{APOSTROPHE}s Special Attack didn{APOSTROPHE}t go up.\0" +.string "{ARG_POKEMON_0}'s Special Attack didn't go up.\0" .align 2, 0 .global gUnknown_80FC3B4 @@ -6353,7 +6353,7 @@ gUnknown_80FC3B4: @ 80FC3B4 .global gUnknown_80FC3B8 gUnknown_80FC3B8: @ 80FC3B8 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Defense was boosted.\0" +.string "{ARG_POKEMON_0}'s Defense was boosted.\0" .align 2, 0 .global gUnknown_80FC3D8 @@ -6363,7 +6363,7 @@ gUnknown_80FC3D8: @ 80FC3D8 .global gUnknown_80FC3DC gUnknown_80FC3DC: @ 80FC3DC -.string "{ARG_POKEMON_0}{APOSTROPHE}s Defense didn{APOSTROPHE}t go up.\0" +.string "{ARG_POKEMON_0}'s Defense didn't go up.\0" .align 2, 0 .global gUnknown_80FC3FC @@ -6373,7 +6373,7 @@ gUnknown_80FC3FC: @ 80FC3FC .global gUnknown_80FC400 gUnknown_80FC400: @ 80FC400 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Special Defense was\n" +.string "{ARG_POKEMON_0}'s Special Defense was\n" .string "boosted.\0" .align 2, 0 @@ -6384,7 +6384,7 @@ gUnknown_80FC428: @ 80FC428 .global gUnknown_80FC42C gUnknown_80FC42C: @ 80FC42C -.string "{ARG_POKEMON_0}{APOSTROPHE}s Special Defense didn{APOSTROPHE}t\n" +.string "{ARG_POKEMON_0}'s Special Defense didn't\n" .string "go up.\0" .align 2, 0 @@ -6395,33 +6395,33 @@ gUnknown_80FC454: @ 80FC454 .global gUnknown_80FC458 gUnknown_80FC458: @ 80FC458 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Attack was weakened.\0" +.string "{ARG_POKEMON_0}'s Attack was weakened.\0" .align 2, 0 .4byte gUnknown_80FC458 .global gUnknown_80FC47C gUnknown_80FC47C: @ 80FC47C -.string "{ARG_POKEMON_0}{APOSTROPHE}s Attack didn{APOSTROPHE}t go down.\0" +.string "{ARG_POKEMON_0}'s Attack didn't go down.\0" .align 2, 0 .4byte gUnknown_80FC47C .global gUnknown_80FC4A4 gUnknown_80FC4A4: @ 80FC4A4 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Special Attack was\n" +.string "{ARG_POKEMON_0}'s Special Attack was\n" .string "weakened.\0" .align 2, 0 .4byte gUnknown_80FC4A4 .global gUnknown_80FC4D0 gUnknown_80FC4D0: @ 80FC4D0 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Special Attack didn{APOSTROPHE}t go\n" +.string "{ARG_POKEMON_0}'s Special Attack didn't go\n" .string "down.\0" .align 2, 0 .4byte gUnknown_80FC4D0 .global gUnknown_80FC500 gUnknown_80FC500: @ 80FC500 -.string "The target{APOSTROPHE}s Magic Coat bounced it back!\0" +.string "The target's Magic Coat bounced it back!\0" .align 2, 0 .global gUnknown_80FC52C @@ -6431,7 +6431,7 @@ gUnknown_80FC52C: @ 80FC52C .global gUnknown_80FC530 gUnknown_80FC530: @ 80FC530 -.string "The target{APOSTROPHE}s Mirror Move returned it!\0" +.string "The target's Mirror Move returned it!\0" .align 2, 0 .global gUnknown_80FC558 @@ -6461,7 +6461,7 @@ gUnknown_80FC584: @ 80FC584 .global gUnknown_80FC588 gUnknown_80FC588: @ 80FC588 -.string "A trap can{APOSTROPHE}t be laid here.\0" +.string "A trap can't be laid here.\0" .align 2, 0 .global gUnknown_80FC5A8 @@ -6506,7 +6506,7 @@ gUnknown_80FC5FC: @ 80FC5FC .global gUnknown_80FC600 gUnknown_80FC600: @ 80FC600 -.string "Got {ARG_POKEMON_1}{APOSTROPHE}s item!\0" +.string "Got {ARG_POKEMON_1}'s item!\0" .align 2, 0 .global gUnknown_80FC614 @@ -6517,7 +6517,7 @@ gUnknown_80FC614: @ 80FC614 .global gUnknown_80FC618 gUnknown_80FC618: @ 80FC618 .string "{ARG_POKEMON_0} has an item already.\n" -.string "It couldn{APOSTROPHE}t get another item.\0" +.string "It couldn't get another item.\0" .align 2, 0 .global gUnknown_80FC654 @@ -6527,7 +6527,7 @@ gUnknown_80FC654: @ 80FC654 .global gUnknown_80FC658 gUnknown_80FC658: @ 80FC658 -.string "{ARG_POKEMON_1} doesn{APOSTROPHE}t have anything!\0" +.string "{ARG_POKEMON_1} doesn't have anything!\0" .align 2, 0 .global gUnknown_80FC678 @@ -6562,7 +6562,7 @@ gUnknown_80FC6A8: @ 80FC6A8 .global gUnknown_80FC6AC gUnknown_80FC6AC: @ 80FC6AC -.string "But the move couldn{APOSTROPHE}t be used!\0" +.string "But the move couldn't be used!\0" .align 2, 0 .global gUnknown_80FC6D0 @@ -6663,7 +6663,7 @@ gUnknown_80FC7AC: @ 80FC7AC .global gUnknown_80FC7B0 gUnknown_80FC7B0: @ 80FC7B0 -.string "{ARG_POKEMON_0}{APOSTROPHE}s move missed!\0" +.string "{ARG_POKEMON_0}'s move missed!\0" .align 2, 0 .global gUnknown_80FC7C8 @@ -6684,7 +6684,7 @@ gUnknown_80FC7EC: @ 80FC7EC .global gUnknown_80FC7F0 gUnknown_80FC7F0: @ 80FC7F0 -.string "{ARG_POKEMON_0} copied the target{APOSTROPHE}s\n" +.string "{ARG_POKEMON_0} copied the target's\n" .string "special ability!\0" .align 2, 0 @@ -6695,7 +6695,7 @@ gUnknown_80FC81C: @ 80FC81C .global gUnknown_80FC820 gUnknown_80FC820: @ 80FC820 -.string "{ARG_POKEMON_0} couldn{APOSTROPHE}t copy the target{APOSTROPHE}s\n" +.string "{ARG_POKEMON_0} couldn't copy the target's\n" .string "Wonder Guard!\0" .align 2, 0 @@ -6717,7 +6717,7 @@ gUnknown_80FC888: @ 80FC888 .global gUnknown_80FC88C gUnknown_80FC88C: @ 80FC88C -.string "{ARG_POKEMON_0} couldn{APOSTROPHE}t swap the target{APOSTROPHE}s\n" +.string "{ARG_POKEMON_0} couldn't swap the target's\n" .string "Wonder Guard!\0" .align 2, 0 @@ -6728,7 +6728,7 @@ gUnknown_80FC8C0: @ 80FC8C0 .global gUnknown_80FC8C4 gUnknown_80FC8C4: @ 80FC8C4 -.string "All sticky{COMMA} gummed-up items were cleaned!\0" +.string "All sticky, gummed-up items were cleaned!\0" .align 2, 0 .global gUnknown_80FC8F0 @@ -6738,7 +6738,7 @@ gUnknown_80FC8F0: @ 80FC8F0 .global gUnknown_80FC8F4 gUnknown_80FC8F4: @ 80FC8F4 -.string "There were no sticky{COMMA} gummed-up items.\0" +.string "There were no sticky, gummed-up items.\0" .align 2, 0 .global gUnknown_80FC920 @@ -6749,13 +6749,13 @@ gUnknown_80FC920: @ 80FC920 .global gUnknown_80FC924 gUnknown_80FC924: @ 80FC924 .string "The target is a Ground type!\n" -.string "Mud-Slap didn{APOSTROPHE}t work!\0" +.string "Mud-Slap didn't work!\0" .align 2, 0 .4byte gUnknown_80FC924 .global gUnknown_80FC960 gUnknown_80FC960: @ 80FC960 -.string "There{APOSTROPHE}s nowhere to warp!\0" +.string "There's nowhere to warp!\0" .align 2, 0 .global gUnknown_80FC97C @@ -6765,7 +6765,7 @@ gUnknown_80FC97C: @ 80FC97C .global gUnknown_80FC980 gUnknown_80FC980: @ 80FC980 -.string "It{APOSTROPHE}s already on the stairs.\0" +.string "It's already on the stairs.\0" .align 2, 0 .global gUnknown_80FC9A0 @@ -6775,7 +6775,7 @@ gUnknown_80FC9A0: @ 80FC9A0 .global gUnknown_80FC9A4 gUnknown_80FC9A4: @ 80FC9A4 -.string "It couldn{APOSTROPHE}t make a leap!\0" +.string "It couldn't make a leap!\0" .align 2, 0 .global gUnknown_80FC9C0 @@ -6785,7 +6785,7 @@ gUnknown_80FC9C0: @ 80FC9C0 .global gUnknown_80FC9C4 gUnknown_80FC9C4: @ 80FC9C4 -.string "It couldn{APOSTROPHE}t be knocked flying!\0" +.string "It couldn't be knocked flying!\0" .align 2, 0 .global gUnknown_80FC9E8 @@ -6795,7 +6795,7 @@ gUnknown_80FC9E8: @ 80FC9E8 .global gUnknown_80FC9EC gUnknown_80FC9EC: @ 80FC9EC -.string "{ARG_POKEMON_0} couldn{APOSTROPHE}t be knocked flying!\0" +.string "{ARG_POKEMON_0} couldn't be knocked flying!\0" .align 2, 0 .global gUnknown_80FCA10 @@ -6815,7 +6815,7 @@ gUnknown_80FCA3C: @ 80FCA3C .global gUnknown_80FCA40 gUnknown_80FCA40: @ 80FCA40 -.string "{ARG_POKEMON_0}{APOSTROPHE}s {ARG_MOVE_ITEM_0} didn{APOSTROPHE}t\n" +.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} didn't\n" .string "go down!\0" .align 2, 0 @@ -6843,7 +6843,7 @@ gUnknown_80FCA90: @ 80FCA90 .global gUnknown_80FCA94 gUnknown_80FCA94: @ 80FCA94 .string "{ARG_POKEMON_0} is anchored!\n" -.string "It won{APOSTROPHE}t switch places!\0" +.string "It won't switch places!\0" .align 2, 0 .global gUnknown_80FCAC0 @@ -6854,7 +6854,7 @@ gUnknown_80FCAC0: @ 80FCAC0 .global gUnknown_80FCAC4 gUnknown_80FCAC4: @ 80FCAC4 .string "{ARG_POKEMON_0} is anchored!\n" -.string "It won{APOSTROPHE}t warp!\0" +.string "It won't warp!\0" .align 2, 0 .global gUnknown_80FCAE8 @@ -6875,7 +6875,7 @@ gUnknown_80FCB14: @ 80FCB14 .global gUnknown_80FCB18 gUnknown_80FCB18: @ 80FCB18 .string "{ARG_POKEMON_0} is anchored!\n" -.string "It can{APOSTROPHE}t be thrown!\0" +.string "It can't be thrown!\0" .align 2, 0 .global gUnknown_80FCB40 @@ -6885,7 +6885,7 @@ gUnknown_80FCB40: @ 80FCB40 .global gUnknown_80FCB44 gUnknown_80FCB44: @ 80FCB44 -.string "{ARG_POKEMON_0} couldn{APOSTROPHE}t be thrown for\n" +.string "{ARG_POKEMON_0} couldn't be thrown for\n" .string "some reason!\0" .align 2, 0 @@ -6897,7 +6897,7 @@ gUnknown_80FCB70: @ 80FCB70 .global gUnknown_80FCB74 gUnknown_80FCB74: @ 80FCB74 .string "{ARG_POKEMON_0} is anchored!\n" -.string "It can{APOSTROPHE}t leap!\0" +.string "It can't leap!\0" .align 2, 0 .global gUnknown_80FCB98 @@ -6908,7 +6908,7 @@ gUnknown_80FCB98: @ 80FCB98 .global gUnknown_80FCB9C gUnknown_80FCB9C: @ 80FCB9C .string "{ARG_POKEMON_0} is anchored!\n" -.string "It can{APOSTROPHE}t be knocked flying!\0" +.string "It can't be knocked flying!\0" .align 2, 0 .global gUnknown_80FCBCC @@ -6919,7 +6919,7 @@ gUnknown_80FCBCC: @ 80FCBCC .global gUnknown_80FCBD0 gUnknown_80FCBD0: @ 80FCBD0 .string "{ARG_POKEMON_0} is limber!\n" -.string "It can{APOSTROPHE}t be paralyzed!\0" +.string "It can't be paralyzed!\0" .align 2, 0 .global gUnknown_80FCBF8 @@ -6929,7 +6929,7 @@ gUnknown_80FCBF8: @ 80FCBF8 .global gUnknown_80FCBFC gUnknown_80FCBFC: @ 80FCBFC -.string "But {ARG_POKEMON_0} didn{APOSTROPHE}t cringe!\0" +.string "But {ARG_POKEMON_0} didn't cringe!\0" .align 2, 0 .global gUnknown_80FCC18 @@ -6940,7 +6940,7 @@ gUnknown_80FCC18: @ 80FCC18 .global gUnknown_80FCC1C gUnknown_80FCC1C: @ 80FCC1C .string "{ARG_POKEMON_0} is oblivious!\n" -.string "It doesn{APOSTROPHE}t get infatuated!\0" +.string "It doesn't get infatuated!\0" .align 2, 0 .global gUnknown_80FCC4C @@ -6950,7 +6950,7 @@ gUnknown_80FCC4C: @ 80FCC4C .global gUnknown_80FCC50 gUnknown_80FCC50: @ 80FCC50 -.string "{ARG_POKEMON_0} traced the target{APOSTROPHE}s\n" +.string "{ARG_POKEMON_0} traced the target's\n" .string "special ability!\0" .align 2, 0 @@ -6961,7 +6961,7 @@ gUnknown_80FCC7C: @ 80FCC7C .global gUnknown_80FCC80 gUnknown_80FCC80: @ 80FCC80 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Color Change made it\n" +.string "{ARG_POKEMON_0}'s Color Change made it\n" .string "the {ARG_MOVE_ITEM_0} type!\0" .align 2, 0 @@ -6973,7 +6973,7 @@ gUnknown_80FCCAC: @ 80FCCAC .global gUnknown_80FCCB4 gUnknown_80FCCB4: @ 80FCCB4 -.string "But the target{APOSTROPHE}s item couldn{APOSTROPHE}t be taken!\0" +.string "But the target's item couldn't be taken!\0" .align 2, 0 .global gUnknown_80FCCE4 @@ -7008,7 +7008,7 @@ gUnknown_80FCD28: @ 80FCD28 .global gUnknown_80FCD2C gUnknown_80FCD2C: @ 80FCD2C -.string "{ARG_POKEMON_0}{APOSTROPHE}s Insomnia prevents\n" +.string "{ARG_POKEMON_0}'s Insomnia prevents\n" .string "drowsiness!\0" .align 2, 0 @@ -7024,7 +7024,7 @@ gUnknown_80FCD58: @ 80FCD58 .global gUnknown_80FCD5C gUnknown_80FCD5C: @ 80FCD5C -.string "{ARG_POKEMON_0}{APOSTROPHE}s Vital Spirit prevents\n" +.string "{ARG_POKEMON_0}'s Vital Spirit prevents\n" .string "drowsiness!\0" .align 2, 0 @@ -7035,7 +7035,7 @@ gUnknown_80FCD88: @ 80FCD88 .global gUnknown_80FCD8C gUnknown_80FCD8C: @ 80FCD8C -.string "{ARG_POKEMON_0}{APOSTROPHE}s Own Tempo prevents\n" +.string "{ARG_POKEMON_0}'s Own Tempo prevents\n" .string "confusion!\0" .align 2, 0 @@ -7046,7 +7046,7 @@ gUnknown_80FCDB4: @ 80FCDB4 .global gUnknown_80FCDB8 gUnknown_80FCDB8: @ 80FCDB8 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Magma Armor prevents\n" +.string "{ARG_POKEMON_0}'s Magma Armor prevents\n" .string "freezing!\0" .align 2, 0 @@ -7067,7 +7067,7 @@ gUnknown_80FCE00: @ 80FCE00 .global gUnknown_80FCE04 gUnknown_80FCE04: @ 80FCE04 -.string "The magma{APOSTROPHE}s heat prevents {ARG_POKEMON_0}\n" +.string "The magma's heat prevents {ARG_POKEMON_0}\n" .string "from freezing!\0" .align 2, 0 @@ -7078,7 +7078,7 @@ gUnknown_80FCE34: @ 80FCE34 .global gUnknown_80FCE38 gUnknown_80FCE38: @ 80FCE38 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Water Veil prevents burns!\0" +.string "{ARG_POKEMON_0}'s Water Veil prevents burns!\0" .align 2, 0 .global gUnknown_80FCE5C @@ -7088,7 +7088,7 @@ gUnknown_80FCE5C: @ 80FCE5C .global gUnknown_80FCE60 gUnknown_80FCE60: @ 80FCE60 -.string "{ARG_POKEMON_0}{APOSTROPHE}s type doesn{APOSTROPHE}t get burns!\0" +.string "{ARG_POKEMON_0}'s type doesn't get burns!\0" .align 2, 0 .global gUnknown_80FCE84 @@ -7098,7 +7098,7 @@ gUnknown_80FCE84: @ 80FCE84 .global gUnknown_80FCE88 gUnknown_80FCE88: @ 80FCE88 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Immunity prevents\n" +.string "{ARG_POKEMON_0}'s Immunity prevents\n" .string "poisoning!\0" .align 2, 0 @@ -7109,7 +7109,7 @@ gUnknown_80FCEB0: @ 80FCEB0 .global gUnknown_80FCEB4 gUnknown_80FCEB4: @ 80FCEB4 -.string "{ARG_POKEMON_0}{APOSTROPHE}s type doesn{APOSTROPHE}t get poisoned!\0" +.string "{ARG_POKEMON_0}'s type doesn't get poisoned!\0" .align 2, 0 .global gUnknown_80FCEDC @@ -7204,7 +7204,7 @@ gUnknown_80FCFBC: @ 80FCFBC .global gUnknown_80FCFC0 gUnknown_80FCFC0: @ 80FCFC0 -.string "The target couldn{APOSTROPHE}t be tormented!\0" +.string "The target couldn't be tormented!\0" .align 2, 0 .global gUnknown_80FCFE4 @@ -7214,7 +7214,7 @@ gUnknown_80FCFE4: @ 80FCFE4 .global gUnknown_80FCFE8 gUnknown_80FCFE8: @ 80FCFE8 -.string "The target{APOSTROPHE}s HP can{APOSTROPHE}t be halved anymore!\0" +.string "The target's HP can't be halved anymore!\0" .align 2, 0 .global gUnknown_80FD018 @@ -7313,7 +7313,7 @@ gUnknown_80FD14C: @ 80FD14C .global gUnknown_80FD150 gUnknown_80FD150: @ 80FD150 -.string "{ARG_POKEMON_1}{APOSTROPHE}s item was swatted down!\0" +.string "{ARG_POKEMON_1}'s item was swatted down!\0" .align 2, 0 .global gUnknown_80FD170 @@ -7353,7 +7353,7 @@ gUnknown_80FD1CC: @ 80FD1CC .global gUnknown_80FD1D0 gUnknown_80FD1D0: @ 80FD1D0 -.string "It can{APOSTROPHE}t be used here.\0" +.string "It can't be used here.\0" .align 2, 0 .global gUnknown_80FD1EC @@ -7383,7 +7383,7 @@ gUnknown_80FD22C: @ 80FD22C .global gUnknown_80FD230 gUnknown_80FD230: @ 80FD230 -.string "{ARG_POKEMON_1}{APOSTROPHE}s throws can pierce things!\0" +.string "{ARG_POKEMON_1}'s throws can pierce things!\0" .align 2, 0 .global gUnknown_80FD254 @@ -7393,7 +7393,7 @@ gUnknown_80FD254: @ 80FD254 .global gUnknown_80FD258 gUnknown_80FD258: @ 80FD258 -.string "{ARG_POKEMON_1}{APOSTROPHE}s throws can pierce already!\0" +.string "{ARG_POKEMON_1}'s throws can pierce already!\0" .align 2, 0 .global gUnknown_80FD27C @@ -7423,7 +7423,7 @@ gUnknown_80FD2B4: @ 80FD2B4 .global gUnknown_80FD2B8 gUnknown_80FD2B8: @ 80FD2B8 -.string "It{APOSTROPHE}s a grudge!\0" +.string "It's a grudge!\0" .align 2, 0 .global gUnknown_80FD2CC @@ -7484,7 +7484,7 @@ gUnknown_80FD370: @ 80FD370 .global gUnknown_80FD374 gUnknown_80FD374: @ 80FD374 -.string "The walls crumbled{COMMA} making one big room!\0" +.string "The walls crumbled, making one big room!\0" .align 2, 0 .global gUnknown_80FD3A0 @@ -7524,7 +7524,7 @@ gUnknown_80FD3F0: @ 80FD3F0 .global gUnknown_80FD3F4 gUnknown_80FD3F4: @ 80FD3F4 -.string "Can{APOSTROPHE}t use that here!\0" +.string "Can't use that here!\0" .align 2, 0 .global gUnknown_80FD40C @@ -7534,7 +7534,7 @@ gUnknown_80FD40C: @ 80FD40C .global gUnknown_80FD410 gUnknown_80FD410: @ 80FD410 -.string "Can{APOSTROPHE}t use that diagonally!\0" +.string "Can't use that diagonally!\0" .align 2, 0 .global gUnknown_80FD430 @@ -7549,7 +7549,7 @@ gUnknown_80FD434: @ 80FD434 .global gUnknown_80FD438 gUnknown_80FD438: @ 80FD438 -.string "{ARG_POKEMON_0} can{APOSTROPHE}t transform!\0" +.string "{ARG_POKEMON_0} can't transform!\0" .align 2, 0 .global gUnknown_80FD450 @@ -7584,7 +7584,7 @@ gUnknown_80FD484: @ 80FD484 .global gUnknown_80FD488 gUnknown_80FD488: @ 80FD488 -.string "The target{APOSTROPHE}s stench is overwhelming!\0" +.string "The target's stench is overwhelming!\0" .align 2, 0 .global gUnknown_80FD4B0 @@ -7604,7 +7604,7 @@ gUnknown_80FD4C4: @ 80FD4C4 .global gUnknown_80FD4C8 gUnknown_80FD4C8: @ 80FD4C8 -.string "{ARG_POKEMON_0} can{APOSTROPHE}t escape!\0" +.string "{ARG_POKEMON_0} can't escape!\0" .align 2, 0 .global gUnknown_80FD4DC @@ -7690,7 +7690,7 @@ gUnknown_80FD5B8: @ 80FD5B8 .global gUnknown_80FD5BC gUnknown_80FD5BC: @ 80FD5BC -.string "Oh{COMMA} no! Your Belly{APOSTROPHE}s empty!\0" +.string "Oh, no! Your Belly's empty!\0" .align 2, 0 .global gUnknown_80FD5DC @@ -7700,7 +7700,7 @@ gUnknown_80FD5DC: @ 80FD5DC .global gUnknown_80FD5E0 gUnknown_80FD5E0: @ 80FD5E0 -.string "Hurry! You{APOSTROPHE}ve got to eat something!\0" +.string "Hurry! You've got to eat something!\0" .align 2, 0 .global gUnknown_80FD608 @@ -7710,7 +7710,7 @@ gUnknown_80FD608: @ 80FD608 .global gUnknown_80FD60C gUnknown_80FD60C: @ 80FD60C -.string "You{APOSTROPHE}ll faint from hunger!\0" +.string "You'll faint from hunger!\0" .align 2, 0 .global gUnknown_80FD628 @@ -7720,7 +7720,7 @@ gUnknown_80FD628: @ 80FD628 .global gUnknown_80FD62C gUnknown_80FD62C: @ 80FD62C -.string "Its IQ didn{APOSTROPHE}t change.\0" +.string "Its IQ didn't change.\0" .align 2, 0 .global gUnknown_80FD644 @@ -7743,7 +7743,7 @@ gUnknown_80FD658: @ 80FD658 .global gUnknown_80FD67C gUnknown_80FD67C: @ 80FD67C -.string "It doesn{APOSTROPHE}t seem to dislike this Gummi.\0" +.string "It doesn't seem to dislike this Gummi.\0" .align 2, 0 .global gUnknown_80FD6A8 @@ -7767,7 +7767,7 @@ gUnknown_80FD6E8: @ 80FD6E8 .global gUnknown_80FD6FC gUnknown_80FD6FC: @ 80FD6FC -.string "IQ didn{APOSTROPHE}t change.\0" +.string "IQ didn't change.\0" .align 2, 0 .global gUnknown_80FD710 @@ -7931,7 +7931,7 @@ gUnknown_80FD9B4: @ 80FD9B4 .global gUnknown_80FD9BC gUnknown_80FD9BC: @ 80FD9BC -.string "A sweet{COMMA} Pokémon-attracting aroma\n" +.string "A sweet, Pokémon-attracting aroma\n" .string "spread!\0" .align 2, 0 @@ -8151,7 +8151,7 @@ gUnknown_80FDCE4: @ 80FDCE4 .global gUnknown_80FDCE8 gUnknown_80FDCE8: @ 80FDCE8 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Mimic failed!\0" +.string "{ARG_POKEMON_0}'s Mimic failed!\0" .align 2, 0 .global gUnknown_80FDD00 @@ -8171,7 +8171,7 @@ gUnknown_80FDD20: @ 80FDD20 .global gUnknown_80FDD24 gUnknown_80FDD24: @ 80FDD24 -.string "There{APOSTROPHE}s no one to pass off to!\0" +.string "There's no one to pass off to!\0" .align 2, 0 .global gUnknown_80FDD48 @@ -8217,7 +8217,7 @@ gUnknown_80FDDD0: @ 80FDDD0 .global gUnknown_80FDDD4 gUnknown_80FDDD4: @ 80FDDD4 -.string "It can{APOSTROPHE}t be used here!\0" +.string "It can't be used here!\0" .align 2, 0 .global gUnknown_80FDDF0 @@ -8227,7 +8227,7 @@ gUnknown_80FDDF0: @ 80FDDF0 .global gUnknown_80FDDF4 gUnknown_80FDDF4: @ 80FDDF4 -.string "There is nothing at {ARG_POKEMON_0}{APOSTROPHE}s feet.\0" +.string "There is nothing at {ARG_POKEMON_0}'s feet.\0" .align 2, 0 .global gUnknown_80FDE18 @@ -8249,7 +8249,7 @@ gUnknown_80FDE6C: @ 80FDE6C .global gUnknown_80FDE70 gUnknown_80FDE70: @ 80FDE70 .string "Give up on this adventure?\n" -.string "If you do{COMMA} it will be treated as a defeat.\0" +.string "If you do, it will be treated as a defeat.\0" .align 2, 0 .global gUnknown_80FDEB8 @@ -8259,7 +8259,7 @@ gUnknown_80FDEB8: @ 80FDEB8 .global gUnknown_80FDEBC gUnknown_80FDEBC: @ 80FDEBC -.string "Will the linked moves be forgotten{COMMA}\n" +.string "Will the linked moves be forgotten,\n" .string "including the selected {ARG_MOVE_ITEM_0}?\0" .align 2, 0 @@ -8316,7 +8316,7 @@ gUnknown_80FDFE8: @ 80FDFE8 .global gUnknown_80FDFEC gUnknown_80FDFEC: @ 80FDFEC -.string "{ARG_POKEMON_0} can{APOSTROPHE}t talk just now.\0" +.string "{ARG_POKEMON_0} can't talk just now.\0" .align 2, 0 .global gUnknown_80FE008 @@ -8347,7 +8347,7 @@ gUnknown_80FE060: @ 80FE060 .global gUnknown_80FE064 gUnknown_80FE064: @ 80FE064 .string "There is no room on your team to accept\n" -.string "the guest rescue team{APOSTROPHE}s {ARG_POKEMON_0}.\0" +.string "the guest rescue team's {ARG_POKEMON_0}.\0" .align 2, 0 .global gUnknown_80FE0AC @@ -8373,7 +8373,7 @@ gUnknown_80FE0F8: @ 80FE0F8 .global gUnknown_80FE0FC gUnknown_80FE0FC: @ 80FE0FC -.string "The guest rescue team{APOSTROPHE}s {ARG_POKEMON_0}\n" +.string "The guest rescue team's {ARG_POKEMON_0}\n" .string "joined your rescue team!\0" .align 2, 0 @@ -8384,7 +8384,7 @@ gUnknown_80FE134: @ 80FE134 .global gUnknown_80FE138 gUnknown_80FE138: @ 80FE138 -.string "Your client{COMMA} {ARG_POKEMON_0}{COMMA} joined\n" +.string "Your client, {ARG_POKEMON_0}, joined\n" .string "your rescue team!\0" .align 2, 0 @@ -8407,7 +8407,7 @@ gUnknown_80FE1A4: @ 80FE1A4 .global gUnknown_80FE1A8 gUnknown_80FE1A8: @ 80FE1A8 -.string "If you dismiss this Pokémon{COMMA}\n" +.string "If you dismiss this Pokémon,\n" .string "it may never again join your rescue team.\n" .string "Bid farewell to it anyway?\0" .align 2, 0 @@ -8462,7 +8462,7 @@ gUnknown_80FE2EC: @ 80FE2EC .global gUnknown_80FE2F0 gUnknown_80FE2F0: @ 80FE2F0 -.string "It{APOSTROPHE}s a monster house!\0" +.string "It's a monster house!\0" .align 2, 0 .global gPtrItsaMonsterHouseMessage @@ -8472,7 +8472,7 @@ gPtrItsaMonsterHouseMessage: @ 80FE308 .global gUnknown_80FE30C gUnknown_80FE30C: @ 80FE30C -.string "It became the move {ARG_MOVE_ITEM_0}{APOSTROPHE}s type!\0" +.string "It became the move {ARG_MOVE_ITEM_0}'s type!\0" .align 2, 0 .global gUnknown_80FE330 @@ -8515,7 +8515,7 @@ gUnknown_80FE3BC: @ 80FE3BC .global gUnknown_80FE3C0 gUnknown_80FE3C0: @ 80FE3C0 .string "{ARG_MOVE_ITEM_0} is all sticky!\n" -.string "It doesn{APOSTROPHE}t work!\0" +.string "It doesn't work!\0" .align 2, 0 .global gItemStickyDoesntWorkText @@ -8572,7 +8572,7 @@ gUnknown_80FE478: @ 80FE478 .global gUnknown_80FE47C gUnknown_80FE47C: @ 80FE47C -.string "Help! Thief! I{APOSTROPHE}ve been robbed!\n" +.string "Help! Thief! I've been robbed!\n" .string "Help me catch the thief!\0" .align 2, 0 @@ -8603,7 +8603,7 @@ gUnknown_80FE4F4: @ 80FE4F4 .global gUnknown_80FE4F8 gUnknown_80FE4F8: @ 80FE4F8 -.string "You don{APOSTROPHE}t seem to have enough money.\0" +.string "You don't seem to have enough money.\0" .align 2, 0 .global gUnknown_80FE520 @@ -8625,7 +8625,7 @@ gUnknown_80FE568: @ 80FE568 .global gUnknown_80FE56C gUnknown_80FE56C: @ 80FE56C -.string "For the merchandise you have left me{COMMA}\n" +.string "For the merchandise you have left me,\n" .string "I shall pay {ARG_VALUE_0} {POKE}.\n" .string "Is that acceptable?\0" .align 2, 0 @@ -8637,7 +8637,7 @@ gUnknown_80FE5C0: @ 80FE5C0 .global gUnknown_80FE5C4 gUnknown_80FE5C4: @ 80FE5C4 -.string "I{APOSTROPHE}m looking forward to serving you again!\0" +.string "I'm looking forward to serving you again!\0" .align 2, 0 .global gUnknown_80FE5F0 @@ -8669,7 +8669,7 @@ gUnknown_80FE65C: @ 80FE65C .global gUnknown_80FE660 gUnknown_80FE660: @ 80FE660 -.string "Ah{COMMA} welcome〜♪\0" +.string "Ah, welcome〜♪\0" .align 2, 0 .global gUnknown_80FE674 @@ -8689,7 +8689,7 @@ gUnknown_80FE690: @ 80FE690 .global gUnknown_80FE694 gUnknown_80FE694: @ 80FE694 -.string "But it didn{APOSTROPHE}t go anywhere.\0" +.string "But it didn't go anywhere.\0" .align 2, 0 .global gUnknown_80FE6B4 @@ -8699,7 +8699,7 @@ gUnknown_80FE6B4: @ 80FE6B4 .global gUnknown_80FE6B8 gUnknown_80FE6B8: @ 80FE6B8 -.string "{ARG_POKEMON_0} can{APOSTROPHE}t throw items!\0" +.string "{ARG_POKEMON_0} can't throw items!\0" .align 2, 0 .global gUnknown_80FE6D4 @@ -8933,7 +8933,7 @@ gFieldItemMenuGroundTextPtr: @ 80FE92C .global ItemText_80FE930 ItemText_80FE930: @ 80FE930 -.string "{ARG_POKEMON_0}{APOSTROPHE}s item\0" +.string "{ARG_POKEMON_0}'s item\0" .align 2,0 .global gUnknown_80FE940 @@ -8976,7 +8976,7 @@ gUnknown_80FE964: @ 80FE964 .global PokeMove_80FE968 PokeMove_80FE968: @ 80FE968 -.string "{ARG_POKEMON_0}{APOSTROPHE}s moves\0" +.string "{ARG_POKEMON_0}'s moves\0" .align 2,0 .global gUnknown_80FE978 @@ -9128,9 +9128,9 @@ gUnknown_80FEA8C: @ 80FEA8C .global gUnknown_80FEA90 gUnknown_80FEA90: @ 80FEA90 -.string "{ARG_POKEMON_0}{APOSTROPHE}s IQ rose!\n" +.string "{ARG_POKEMON_0}'s IQ rose!\n" .string "It learned the IQ skill\n" -.string "{QUOTE_START}{ARG_MOVE_ITEM_0}{QUOTE_END}!\0" +.string "“{ARG_MOVE_ITEM_0}”!\0" .align 2, 0 .global gUnknown_80FEAC4 @@ -9160,7 +9160,7 @@ gUnknown_80FEB08: @ 80FEB08 .global gUnknown_80FEB0C gUnknown_80FEB0C: @ 80FEB0C -.string "{ARG_POKEMON_1} took Perish Song{APOSTROPHE}s effect!\0" +.string "{ARG_POKEMON_1} took Perish Song's effect!\0" .align 2, 0 .global gUnknown_80FEB30 @@ -9170,7 +9170,7 @@ gUnknown_80FEB30: @ 80FEB30 .global gUnknown_80FEB34 gUnknown_80FEB34: @ 80FEB34 -.string "It can{APOSTROPHE}t lend a helping hand to itself!\0" +.string "It can't lend a helping hand to itself!\0" .align 2, 0 .global gUnknown_80FEB60 @@ -9210,7 +9210,7 @@ gUnknown_80FEBBC: @ 80FEBBC .global gUnknown_80FEBC0 gUnknown_80FEBC0: @ 80FEBC0 -.string "It couldn{APOSTROPHE}t flop around!\0" +.string "It couldn't flop around!\0" .align 2, 0 .global gUnknown_80FEBDC @@ -9250,7 +9250,7 @@ gUnknown_80FEC48: @ 80FEC48 .global gUnknown_80FEC4C gUnknown_80FEC4C: @ 80FEC4C -.string "This team can{APOSTROPHE}t send out for help anymore!\0" +.string "This team can't send out for help anymore!\0" .align 2, 0 .global gUnknown_80FEC7C @@ -9280,7 +9280,7 @@ gUnknown_80FECBC: @ 80FECBC .global gUnknown_80FECC0 gUnknown_80FECC0: @ 80FECC0 -.string "{ARG_POKEMON_0} drew out nature{APOSTROPHE}s power!\0" +.string "{ARG_POKEMON_0} drew out nature's power!\0" .align 2, 0 .global gUnknown_80FECE0 @@ -9522,7 +9522,7 @@ gUnknown_80FEFD0: @ 80FEFD0 .global gUnknown_80FEFD4 gUnknown_80FEFD4: @ 80FEFD4 -.string "Transform can{APOSTROPHE}t be used here!\0" +.string "Transform can't be used here!\0" .align 2, 0 .global gUnknown_80FEFF4 @@ -9532,7 +9532,7 @@ gUnknown_80FEFF4: @ 80FEFF4 .global gUnknown_80FEFF8 gUnknown_80FEFF8: @ 80FEFF8 -.string "{ARG_POKEMON_0}{APOSTROPHE}s Synchronize took effect!\0" +.string "{ARG_POKEMON_0}'s Synchronize took effect!\0" .align 2, 0 .global gUnknown_80FF01C @@ -9561,7 +9561,7 @@ gUnknown_80FF080: @ 80FF080 .global gUnknown_80FF088 gUnknown_80FF088: @ 80FF088 -.string "Foes won{APOSTROPHE}t move until you do.\n" +.string "Foes won't move until you do.\n" .string "Open the menu with {B_BUTTON} and\n" .string "think before you act!\0" .align 2, 0 @@ -9628,7 +9628,7 @@ gUnknown_80FF290: @ 80FF290 gUnknown_80FF298: @ 80FF298 .string "Eat an Apple or Gummi when your Belly\n" .string "goes down. Being famished can cause\n" -.string "fainting{COMMA} so check your Belly in the menu.\0" +.string "fainting, so check your Belly in the menu.\0" .align 2, 0 .global gUnknown_80FF310 @@ -9680,7 +9680,7 @@ gUnknown_80FF440: @ 80FF440 gUnknown_80FF448: @ 80FF448 .string "A Blast Seed flames the foe you\n" .string "are facing.\n" -.string "Turn to face the foe{COMMA} then use the item.\0" +.string "Turn to face the foe, then use the item.\0" .align 2, 0 .global gUnknown_80FF4A0 @@ -9737,8 +9737,8 @@ gUnknown_80FF5F0: @ 80FF5F0 .global gUnknown_80FF63C gUnknown_80FF63C: @ 80FF63C -.string "You{APOSTROPHE}re a thief!\n" -.string "You{APOSTROPHE}re not recognized as a rescuer!\0" +.string "You're a thief!\n" +.string "You're not recognized as a rescuer!\0" .align 2, 0 .global gUnknown_80FF674 @@ -9753,7 +9753,7 @@ gUnknown_80FF678: @ 80FF678 .global gUnknown_80FF67C gUnknown_80FF67C: @ 80FF67C -.string "You{APOSTROPHE}ve reached a destination floor!\0" +.string "You've reached a destination floor!\0" .align 2, 0 .global gUnknown_80FF6A4 @@ -9763,8 +9763,8 @@ gUnknown_80FF6A4: @ 80FF6A4 .global gUnknown_80FF6A8 gUnknown_80FF6A8: @ 80FF6A8 -.string "You{APOSTROPHE}ve reached a destination floor!\n" -.string "But the Pokémon you seek isn{APOSTROPHE}t here...\0" +.string "You've reached a destination floor!\n" +.string "But the Pokémon you seek isn't here...\0" .align 2, 0 .global gUnknown_80FF6F8 @@ -9775,7 +9775,7 @@ gUnknown_80FF6F8: @ 80FF6F8 .global gUnknown_80FF6FC gUnknown_80FF6FC: @ 80FF6FC .string "{ARG_MOVE_ITEM_0} was added to\n" -.string "{ARG_POKEMON_0}{APOSTROPHE}s list of usable tactics.\0" +.string "{ARG_POKEMON_0}'s list of usable tactics.\0" .align 2, 0 .global gUnknown_80FF730 @@ -9785,7 +9785,7 @@ gUnknown_80FF730: @ 80FF730 .global gUnknown_80FF734 gUnknown_80FF734: @ 80FF734 -.string "Items can{APOSTROPHE}t be thrown when a Pokémon{APOSTROPHE}s\n" +.string "Items can't be thrown when a Pokémon's\n" .string "terrified!\0" .align 2, 0 @@ -9867,8 +9867,8 @@ gUnknown_80FF7EC: @ 80FF7EC .global gUnknown_80FF82C gUnknown_80FF82C: @ 80FF82C -.string "Touch once to attack a foe{COMMA} walk{COMMA}\n" -.string "advance text{COMMA} cancel{COMMA} or pick up \n" +.string "Touch once to attack a foe, walk,\n" +.string "advance text, cancel, or pick up \n" .string "an item off the ground.\n" .string "Touch twice to use the set move.\n" .string "Touch the leader twice to move fast.\n" @@ -9879,10 +9879,10 @@ gUnknown_80FF82C: @ 80FF82C .global gUnknown_80FF914 gUnknown_80FF914: @ 80FF914 .string "Avoid attacks by moving diagonally.\n" -.string "Keeping {R_BUTTON} pressed{COMMA} press\n" +.string "Keeping {R_BUTTON} pressed, press\n" .string "{DPAD} to move only diagonally.\n" -.string "It{APOSTROPHE}s crucial to change the direction\n" -.string "you{APOSTROPHE}re facing without taking a step.\n" +.string "It's crucial to change the direction\n" +.string "you're facing without taking a step.\n" .string "Hold {NDS_Y_BUTTON} to do so.\n\0" .align 2, 0 @@ -9911,10 +9911,10 @@ gUnknown_80FFA78: @ 80FFA78 .global gUnknown_80FFB3C gUnknown_80FFB3C: @ 80FFB3C .string "There are seventeen types of Pokémon\n" -.string "and moves: Normal{COMMA} Fire{COMMA} Water{COMMA} Grass{COMMA}\n" -.string "Electric{COMMA} Ice{COMMA} Fighting{COMMA} Poison{COMMA} Ground{COMMA}\n" -.string "Flying{COMMA} Psychic{COMMA} Bug{COMMA} Rock{COMMA} Ghost{COMMA}\n" -.string "Dragon{COMMA} Dark{COMMA} and Steel. All Pokémon\n" +.string "and moves: Normal, Fire, Water, Grass,\n" +.string "Electric, Ice, Fighting, Poison, Ground,\n" +.string "Flying, Psychic, Bug, Rock, Ghost,\n" +.string "Dragon, Dark, and Steel. All Pokémon\n" .string "have one or two types that determine\n" .string "the damage they take and give.\0" .align 2, 0 @@ -9925,51 +9925,51 @@ gUnknown_80FFC60: @ 80FFC60 .string "Shop or by using a Link Box.\n" .string "Two moves can be linked and used\n" .string "simultaneously.\n" -.string "If they{APOSTROPHE}re used even once in defeating\n" -.string "a foe{COMMA} you will earn more Exp. Points{COMMA}\n" -.string "but your Belly will go down faster{COMMA} too.\0" +.string "If they're used even once in defeating\n" +.string "a foe, you will earn more Exp. Points,\n" +.string "but your Belly will go down faster, too.\0" .align 2, 0 .global gUnknown_80FFD54 gUnknown_80FFD54: @ 80FFD54 .string "All moves have a range of effect.\n" -.string "A move that affects a room{COMMA} such as\n" -.string "Growl{COMMA} reaches 2 tiles when in a\n" -.string "corridor. However{COMMA} if the visibility is\n" -.string "limited to only 1 tile{COMMA} the move{APOSTROPHE}s\n" +.string "A move that affects a room, such as\n" +.string "Growl, reaches 2 tiles when in a\n" +.string "corridor. However, if the visibility is\n" +.string "limited to only 1 tile, the move's\n" .string "range will be likewise restricted.\n" .string "Check the descriptions of moves!\0" .align 2, 0 .global gUnknown_80FFE54 gUnknown_80FFE54: @ 80FFE54 -.string "Normal-{COMMA} Steel-{COMMA} Poison-{COMMA} Ground-{COMMA}\n" -.string "Flying-{COMMA} Bug-{COMMA} Rock-{COMMA} Ghost-{COMMA} and\n" +.string "Normal-, Steel-, Poison-, Ground-,\n" +.string "Flying-, Bug-, Rock-, Ghost-, and\n" .string "Fighting-type moves are based on\n" -.string "Attack and Defense. Fire-{COMMA} Dark-{COMMA}\n" -.string "Water-{COMMA} Grass-{COMMA} Electric-{COMMA} Ice-{COMMA}\n" -.string "Psychic-{COMMA} and Dragon-type moves\n" +.string "Attack and Defense. Fire-, Dark-,\n" +.string "Water-, Grass-, Electric-, Ice-,\n" +.string "Psychic-, and Dragon-type moves\n" .string "are based on Sp. Atk. and Sp. Def.\0" .align 2, 0 .global gUnknown_80FFF60 gUnknown_80FFF60: @ 80FFF60 .string "Seeds can be thrown.\n" -.string "They are usually for eating{COMMA} but throw\n" +.string "They are usually for eating, but throw\n" .string "them at foes to get the same effect.\n" -.string "If you have any Seeds you don{APOSTROPHE}t want\n" -.string "to eat{COMMA} try throwing them at foes.\n" +.string "If you have any Seeds you don't want\n" +.string "to eat, try throwing them at foes.\n" .string "You can also throw them at partners.\n" -.string "If they hit{COMMA} their effects will be felt.\0" +.string "If they hit, their effects will be felt.\0" .align 2, 0 .global gUnknown_8100060 gUnknown_8100060: @ 8100060 .string "Avoid attacks by moving diagonally.\n" -.string "Keeping {R_BUTTON} pressed{COMMA} press\n" +.string "Keeping {R_BUTTON} pressed, press\n" .string "{DPAD} to move only diagonally.\n" -.string "It{APOSTROPHE}s also crucial to change the direction\n" -.string "you{APOSTROPHE}re facing without taking a step.\n" +.string "It's also crucial to change the direction\n" +.string "you're facing without taking a step.\n" .string "Just tap {R_BUTTON}!\0" .align 2, 0 @@ -9996,7 +9996,7 @@ gUnknown_8100208: @ 8100208 .global gMagnitudeMessage gMagnitudeMessage: @ 810020C -.string "It{APOSTROPHE}s Magnitude {ARG_VALUE_0}!\0" +.string "It's Magnitude {ARG_VALUE_0}!\0" .align 2, 0 .global gPtrMagnitudeMessage @@ -10115,7 +10115,7 @@ gPtrWishStoneCrumbledMessage: @ 810044C .global gMusicBoxPlayedCrumbledMessage gMusicBoxPlayedCrumbledMessage: @ 8100450 -.string "The Music Box played a beautiful melody{COMMA}\n" +.string "The Music Box played a beautiful melody,\n" .string "then crumbled away...\0" .align 2, 0 @@ -10134,7 +10134,7 @@ gPtrMysteriousPowerPreventedUseMessage: @ 81004C4 .global gCouldntBeUsedMessage gCouldntBeUsedMessage: @ 81004C8 -.string "But it couldn{APOSTROPHE}t be used!\0" +.string "But it couldn't be used!\0" .align 2, 0 .global gPtrCouldntBeUsedMessage @@ -10155,7 +10155,7 @@ gUnknown_81004F0: @ 81004F0 .global gUnknown_81004F4 gUnknown_81004F4: @ 81004F4 -.string "{ARG_POKEMON_1}{APOSTROPHE}s Soundproof suppressed\n" +.string "{ARG_POKEMON_1}'s Soundproof suppressed\n" .string "the sound move!\0" .align 2, 0 @@ -10183,7 +10183,7 @@ gUnknown_810056C: @ 810056C .global gUnknown_8100570 gUnknown_8100570: @ 8100570 -.string "Perish Song{APOSTROPHE}s effect wore off!\0" +.string "Perish Song's effect wore off!\0" .align 2, 0 .global gUnknown_8100594 @@ -10210,7 +10210,7 @@ gPtrSealedMoveReleasedMessage: @ 81005DC .global gCantLeechSeedSelfMessage gCantLeechSeedSelfMessage: @ 81005E0 -.string "A leech seed can{APOSTROPHE}t be planted on the user!\0" +.string "A leech seed can't be planted on the user!\0" .align 2, 0 .global gPtrCantLeechSeedSelfMessage @@ -10219,7 +10219,7 @@ gPtrCantLeechSeedSelfMessage: @ 8100610 .global gCantLeechSeedMonMessage gCantLeechSeedMonMessage: @ 8100614 -.string "A leech seed couldn{APOSTROPHE}t be planted on\n" +.string "A leech seed couldn't be planted on\n" .string "{ARG_POKEMON_0}!\0" .align 2, 0 @@ -10239,7 +10239,7 @@ gPtrMoveInterruptedMessage: @ 8100660 .global gClientFaintedMessage gClientFaintedMessage: @ 8100664 .string "Your client Pokémon has fainted!\n" -.string "A rescue call can{APOSTROPHE}t be made!\0" +.string "A rescue call can't be made!\0" .align 2, 0 .global gPtrClientFaintedMessage @@ -10248,7 +10248,7 @@ gPtrClientFaintedMessage: @ 81006A4 .global gCantUseInDungeonMessage gCantUseInDungeonMessage: @ 81006A8 -.string "It can{APOSTROPHE}t be used in a dungeon!\0" +.string "It can't be used in a dungeon!\0" .align 2, 0 .global gPtrCantUseInDungeonMessage @@ -10301,8 +10301,8 @@ gSkarmoryPreFightDialogue_1: @ 8100768 .global gUnknown_8100774 gUnknown_8100774: @ 8100774 -.string " Look{COMMA} {ARG_POKEMON_0}!\n" -.string "{ARG_POKEMON_2}{APOSTROPHE}s over there!\0" +.string " Look, {ARG_POKEMON_0}!\n" +.string "{ARG_POKEMON_2}'s over there!\0" .align 2, 0 .global gSkarmoryPreFightDialogue_2 @@ -10315,13 +10315,13 @@ gSkarmoryPreFightDialogue_2: @ 8100798 .global gUnknown_81007B0 gUnknown_81007B0: @ 81007B0 .string " Hey! Are you all right?\n" -.string "We{APOSTROPHE}ve come to rescue you!\0" +.string "We've come to rescue you!\0" .align 2, 0 .global gUnknown_81007E8 gUnknown_81007E8: @ 81007E8 .string " Hey! Are you all right?\n" -.string "We{APOSTROPHE}re here to rescue you!\0" +.string "We're here to rescue you!\0" .align 2, 0 .global gSkarmoryPreFightDialogue_3 @@ -10332,7 +10332,7 @@ gSkarmoryPreFightDialogue_3: @ 8100820 .global gUnknown_810082C gUnknown_810082C: @ 810082C .string " ...I...\n" -.string "I{APOSTROPHE}m scared.\0" +.string "I'm scared.\0" .align 2, 0 .global gSkarmoryPreFightDialogue_4 @@ -10344,7 +10344,7 @@ gSkarmoryPreFightDialogue_4: @ 8100844 .global gUnknown_8100850 gUnknown_8100850: @ 8100850 .string " You!\n" -.string "What do you think you{APOSTROPHE}re doing here?!\0" +.string "What do you think you're doing here?!\0" .align 2, 0 .global gSkarmoryPreFightDialogue_5 @@ -10358,18 +10358,18 @@ gSkarmoryPreFightDialogue_5: @ 8100880 .global gUnknown_8100898 gUnknown_8100898: @ 8100898 -.string " We{APOSTROPHE}re here to rescue\n" +.string " We're here to rescue\n" .string "{ARG_POKEMON_2}!{EXTRA_MSG}" .string " {ARG_POKEMON_3}!\n" -.string "Don{APOSTROPHE}t do this! Release {ARG_POKEMON_2}!\0" +.string "Don't do this! Release {ARG_POKEMON_2}!\0" .align 2, 0 .global gUnknown_81008DC gUnknown_81008DC: @ 81008DC .string " We came to rescue\n" .string "{ARG_POKEMON_2}!{EXTRA_MSG}" -.string " Hey{COMMA} {ARG_POKEMON_3}!\n" -.string "Quit doing this{COMMA} and release {ARG_POKEMON_2}!\0" +.string " Hey, {ARG_POKEMON_3}!\n" +.string "Quit doing this, and release {ARG_POKEMON_2}!\0" .align 2, 0 .global gSkarmoryPreFightDialogue_6 @@ -10380,12 +10380,12 @@ gSkarmoryPreFightDialogue_6: @ 8100928 .global gUnknown_8100934 gUnknown_8100934: @ 8100934 .string " How dare you!{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s their fault!{EXTRA_MSG}" -.string " I haven{APOSTROPHE}t slept in days\n" +.string "It's their fault!{EXTRA_MSG}" +.string " I haven't slept in days\n" .string "because the earthquakes frighten me so!\n" .string "Every night we had them!{EXTRA_MSG}" .string " Those earthquakes are\n" -.string "caused by this brat{APOSTROPHE}s ilk running wild\n" +.string "caused by this brat's ilk running wild\n" .string "underground!\0" .align 2, 0 @@ -10400,21 +10400,21 @@ gSkarmoryPreFightDialogue_7: @ 8100A04 .global gUnknown_8100A1C gUnknown_8100A1C: @ 8100A1C -.string " That{APOSTROPHE}s not true.{EXTRA_MSG}" -.string "Well{COMMA} it{APOSTROPHE}s true there have\n" -.string "been many earthquakes lately{COMMA} but...{EXTRA_MSG}" +.string " That's not true.{EXTRA_MSG}" +.string "Well, it's true there have\n" +.string "been many earthquakes lately, but...{EXTRA_MSG}" .string " It would take more than\n" -.string "{ARG_POKEMON_2}{APOSTROPHE}s family going wild under\n" +.string "{ARG_POKEMON_2}'s family going wild under\n" .string "the ground to cause earthquakes.\0" .align 2, 0 .global gUnknown_8100AD4 gUnknown_8100AD4: @ 8100AD4 -.string " Whoa{COMMA} that{APOSTROPHE}s not true.{EXTRA_MSG}" -.string " Sure there{APOSTROPHE}ve been quakes\n" +.string " Whoa, that's not true.{EXTRA_MSG}" +.string " Sure there've been quakes\n" .string "galore lately...{EXTRA_MSG}" .string " But it would take more than\n" -.string "{ARG_POKEMON_2}{APOSTROPHE}s family running wild under\n" +.string "{ARG_POKEMON_2}'s family running wild under\n" .string "the ground to set off a quake.\0" .align 2, 0 @@ -10427,7 +10427,7 @@ gSkarmoryPreFightDialogue_8: @ 8100B80 .global gUnknown_8100B8C gUnknown_8100B8C: @ 8100B8C .string " You be quiet!{EXTRA_MSG}" -.string "We{APOSTROPHE}ll fight if you keep that up!\0" +.string "We'll fight if you keep that up!\0" .align 2, 0 .global gSkarmoryPreFightDialogue_9 @@ -10441,18 +10441,18 @@ gSkarmoryPreFightDialogue_9: @ 8100BC0 .global gUnknown_8100BD8 gUnknown_8100BD8: @ 8100BD8 -.string " It{APOSTROPHE}s no good.\n" +.string " It's no good.\n" .string "{ARG_POKEMON_3} is too agitated to listen to\n" .string "reason.{EXTRA_MSG}" -.string " We{APOSTROPHE}ll have to fight it out!\0" +.string " We'll have to fight it out!\0" .align 2, 0 .global gUnknown_8100C34 gUnknown_8100C34: @ 8100C34 -.string " It{APOSTROPHE}s useless.\n" +.string " It's useless.\n" .string "{ARG_POKEMON_3} is too steamed to talk\n" .string "reasonably.{EXTRA_MSG}" -.string " We{APOSTROPHE}re going to have to\n" +.string " We're going to have to\n" .string "fight!\0" .align 2, 0 @ Skarmory Re-Fight? @@ -10491,7 +10491,7 @@ gSkarmoryReFightDialogue_3: @ 8100CDC gUnknown_8100CE8: @ 8100CE8 .string " I absolutely refuse!{EXTRA_MSG}" .string " If you want to complain so\n" -.string "much{COMMA} I{APOSTROPHE}ll give you a fight!\0" +.string "much, I'll give you a fight!\0" .align 2, 0 .global gUnknown_8100D3C @@ -10503,8 +10503,8 @@ gUnknown_8100D3C: @ 8100D3C .global gUnknown_8100D48 gUnknown_8100D48: @ 8100D48 .string "{CENTER_ALIGN}There appears to be no one here.{EXTRA_MSG}" -.string "{CENTER_ALIGN}It{APOSTROPHE}s impossible to go any farther.{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}It{APOSTROPHE}s time to go back.\0" +.string "{CENTER_ALIGN}It's impossible to go any farther.{WAIT_PRESS}\n" +.string "{CENTER_ALIGN}It's time to go back.\0" .align 2, 0 .global gTeamMeaniesPreFightDialogue_1 @@ -10518,7 +10518,7 @@ gTeamMeaniesPreFightDialogue_1: @ 8100DB0 .global gUnknown_8100DC8 gUnknown_8100DC8: @ 8100DC8 -.string " Wow{COMMA} we came quite a ways\n" +.string " Wow, we came quite a ways\n" .string "into this forest.{EXTRA_MSG}" .string " I wonder if {ARG_POKEMON_2} is\n" .string "ahead...\0" @@ -10526,7 +10526,7 @@ gUnknown_8100DC8: @ 8100DC8 .global gUnknown_8100E18 gUnknown_8100E18: @ 8100E18 -.string " We{APOSTROPHE}ve come pretty far\n" +.string " We've come pretty far\n" .string "into this forest.{EXTRA_MSG}" .string " I wonder if {ARG_POKEMON_2} is\n" .string "ahead...\0" @@ -10552,10 +10552,10 @@ gTeamMeaniesPreFightDialogue_3: @ 8100E88 .global gUnknown_8100E94 gUnknown_8100E94: @ 8100E94 .string " Keke!\n" -.string "You know who{APOSTROPHE}s going to get to\n" +.string "You know who's going to get to\n" .string "{ARG_POKEMON_2} first? We are!{EXTRA_MSG}" -.string " So{COMMA} for you to go ahead...{WAIT_PRESS}\n" -.string "Well{COMMA} we can{APOSTROPHE}t let that happen.\0" +.string " So, for you to go ahead...{WAIT_PRESS}\n" +.string "Well, we can't let that happen.\0" .align 2, 0 .global gTeamMeaniesPreFightDialogue_4 @@ -10572,21 +10572,21 @@ gTeamMeaniesPreFightDialogue_4: @ 8100F14 .global gUnknown_8100F38 gUnknown_8100F38: @ 8100F38 .string " Wh-what?!{EXTRA_MSG}" -.string " Now{COMMA} hold on{COMMA} {ARG_POKEMON_3}!{WAIT_PRESS}\n" +.string " Now, hold on, {ARG_POKEMON_3}!{WAIT_PRESS}\n" .string "Why do you always interfere with us?\0" .align 2, 0 .global gUnknown_8100F84 gUnknown_8100F84: @ 8100F84 .string " Wh-what!{EXTRA_MSG}" -.string " Hey{COMMA} {ARG_POKEMON_3}!{WAIT_PRESS}\n" +.string " Hey, {ARG_POKEMON_3}!{WAIT_PRESS}\n" .string "Why do you always mess with us?\0" .align 2, 0 .global gUnknown_8100FC0 gUnknown_8100FC0: @ 8100FC0 .string " Wh-what...?{EXTRA_MSG}" -.string " Hey{COMMA} {ARG_POKEMON_3}!{WAIT_PRESS}\n" +.string " Hey, {ARG_POKEMON_3}!{WAIT_PRESS}\n" .string "Why do you always try to mess with us?\0" .align 2, 0 @@ -10598,7 +10598,7 @@ gTeamMeaniesPreFightDialogue_5: @ 8101004 .global gUnknown_8101010 gUnknown_8101010: @ 8101010 -.string " Oh? Didn{APOSTROPHE}t we tell you?{WAIT_PRESS}\n" +.string " Oh? Didn't we tell you?{WAIT_PRESS}\n" .string "Our aim is world domination〜♪ \0" .align 2, 0 @@ -10610,7 +10610,7 @@ gTeamMeaniesPreFightDialogue_6: @ 8101050 .global gUnknown_810105C gUnknown_810105C: @ 810105C -.string " {ARG_POKEMON_4}{APOSTROPHE}s mama will\n" +.string " {ARG_POKEMON_4}'s mama will\n" .string "give us a generous reward...{EXTRA_MSG}" .string " And {ARG_POKEMON_4} will join\n" .string "us too...{WAIT_PRESS}\n" @@ -10626,10 +10626,10 @@ gTeamMeaniesPreFightDialogue_7: @ 81010D0 .global gUnknown_81010DC gUnknown_81010DC: @ 81010DC .string " Keke!\n" -.string "And for that{COMMA} your lot is in the way!{EXTRA_MSG}" -.string " So sorry to say{COMMA} but your\n" -.string "party{APOSTROPHE}s over right here and now!{EXTRA_MSG}" -.string " Say good-bye{COMMA} {ARG_POKEMON_1}!\0" +.string "And for that, your lot is in the way!{EXTRA_MSG}" +.string " So sorry to say, but your\n" +.string "party's over right here and now!{EXTRA_MSG}" +.string " Say good-bye, {ARG_POKEMON_1}!\0" .align 2, 0 .global gTeamMeaniesReFightDialogue_1 @@ -10645,16 +10645,16 @@ gTeamMeaniesReFightDialogue_1: @ 8101164 gUnknown_810117C: @ 810117C .string " This is where the {COLOR_1 CYAN}Meanies{END_COLOR_TEXT_1}\n" .string "showed up last time.{EXTRA_MSG}" -.string " I wonder if {ARG_POKEMON_3}{APOSTROPHE}s\n" +.string " I wonder if {ARG_POKEMON_3}'s\n" .string "bunch already found {ARG_POKEMON_2}...\0" .align 2, 0 .global gUnknown_81011E4 gUnknown_81011E4: @ 81011E4 -.string " Last time{COMMA} this is where\n" -.string "{ARG_POKEMON_3}{APOSTROPHE}s gang appeared.{EXTRA_MSG}" +.string " Last time, this is where\n" +.string "{ARG_POKEMON_3}'s gang appeared.{EXTRA_MSG}" .string " Did they find {ARG_POKEMON_2}\n" -.string "already{COMMA} I wonder?\0" +.string "already, I wonder?\0" .align 2, 0 .global gTeamMeaniesReFightDialogue_2 @@ -10670,22 +10670,22 @@ gTeamMeaniesReFightDialogue_2: @ 8101240 .global gUnknown_8101264 gUnknown_8101264: @ 8101264 -.string " Huh? It{APOSTROPHE}s {ARG_POKEMON_3}!{EXTRA_MSG}" -.string " Why is {ARG_POKEMON_3}{APOSTROPHE}s gang\n" +.string " Huh? It's {ARG_POKEMON_3}!{EXTRA_MSG}" +.string " Why is {ARG_POKEMON_3}'s gang\n" .string "following us?\0" .align 2, 0 .global gUnknown_810129C gUnknown_810129C: @ 810129C -.string " Huh? It{APOSTROPHE}s {ARG_POKEMON_3}!{EXTRA_MSG}" +.string " Huh? It's {ARG_POKEMON_3}!{EXTRA_MSG}" .string " Why is the {ARG_POKEMON_3}\n" .string "gang following us?\0" .align 2, 0 .global gUnknown_81012D4 gUnknown_81012D4: @ 81012D4 -.string " Hah? It{APOSTROPHE}s {ARG_POKEMON_3}!{EXTRA_MSG}" -.string " Why is {ARG_POKEMON_3}{APOSTROPHE}s\n" +.string " Hah? It's {ARG_POKEMON_3}!{EXTRA_MSG}" +.string " Why is {ARG_POKEMON_3}'s\n" .string "crew coming after us?\0" .align 2, 0 @@ -10712,9 +10712,9 @@ gTeamMeaniesReFightDialogue_4: @ 810137C .global gUnknown_8101388 gUnknown_8101388: @ 8101388 -.string " Don{APOSTROPHE}t you laugh at me!{WAIT_PRESS}\n" +.string " Don't you laugh at me!{WAIT_PRESS}\n" .string "What makes you so high-and-mighty?{EXTRA_MSG}" -.string " Whatever happens{COMMA} we{APOSTROPHE}re\n" +.string " Whatever happens, we're\n" .string "not going to lose to you amateurs!\0" .align 2, 0 @@ -10726,8 +10726,8 @@ gTeamMeaniesReFightDialogue_5: @ 8101408 .global gUnknown_8101414 gUnknown_8101414: @ 8101414 -.string " This is it{COMMA} {ARG_POKEMON_1}!\n" -.string "You{APOSTROPHE}re going down!\0" +.string " This is it, {ARG_POKEMON_1}!\n" +.string "You're going down!\0" .align 2, 0 .global gUnknown_8101440 @@ -10738,9 +10738,9 @@ gUnknown_8101440: @ 8101440 .global gUnknown_810144C gUnknown_810144C: @ 810144C -.string "{CENTER_ALIGN}It{APOSTROPHE}s impossible to go any farther...{WAIT_PRESS}\n" +.string "{CENTER_ALIGN}It's impossible to go any farther...{WAIT_PRESS}\n" .string "{CENTER_ALIGN}But there is nothing here.{EXTRA_MSG}" -.string "{CENTER_ALIGN}It{APOSTROPHE}s time to go back.\0" +.string "{CENTER_ALIGN}It's time to go back.\0" .align 2, 0 .global gUnknown_81014B0 @@ -10759,7 +10759,7 @@ gUnknown_81014C8: @ 81014C8 .global gUnknown_81014E0 gUnknown_81014E0: @ 81014E0 -.string " This is the mountain{APOSTROPHE}s peak...\0" +.string " This is the mountain's peak...\0" .align 2, 0 .global gUnknown_8101504 @@ -10833,7 +10833,7 @@ gUnknown_8101624: @ 8101624 .global gUnknown_8101630 gUnknown_8101630: @ 8101630 .string " Not scared...{WAIT_PRESS}\n" -.string "You don{APOSTROPHE}t frighten me!\0" +.string "You don't frighten me!\0" .align 2, 0 .global gUnknown_810165C @@ -10849,26 +10849,26 @@ gUnknown_810165C: @ 810165C .global gUnknown_8101680 gUnknown_8101680: @ 8101680 -.string " Hey{COMMA} {ARG_POKEMON_3}!\n" +.string " Hey, {ARG_POKEMON_3}!\n" .string "We demand you release {ARG_POKEMON_2}!{EXTRA_MSG}" -.string " We{APOSTROPHE}re a Pokémon rescue\n" +.string " We're a Pokémon rescue\n" .string "team!\0" .align 2, 0 .global gUnknown_81016CC gUnknown_81016CC: @ 81016CC -.string " Hey{COMMA} {ARG_POKEMON_3}!\n" +.string " Hey, {ARG_POKEMON_3}!\n" .string "Release {ARG_POKEMON_2}!{EXTRA_MSG}" -.string " We{APOSTROPHE}re a Pokémon rescue\n" +.string " We're a Pokémon rescue\n" .string "team!\0" .align 2, 0 .global gUnknown_8101708 gUnknown_8101708: @ 8101708 -.string " Hey{COMMA} {ARG_POKEMON_3}!\n" +.string " Hey, {ARG_POKEMON_3}!\n" .string "Let {ARG_POKEMON_2} go!{EXTRA_MSG}" .string " A Pokémon rescue team!\n" -.string "That{APOSTROPHE}s what we are!\0" +.string "That's what we are!\0" .align 2, 0 .global gUnknown_8101750 @@ -10879,7 +10879,7 @@ gUnknown_8101750: @ 8101750 .global gUnknown_810175C gUnknown_810175C: @ 810175C -.string " You must be determined{COMMA}\n" +.string " You must be determined,\n" .string "to utter such words.\0" .align 2, 0 @@ -10919,22 +10919,22 @@ gZapdosReFightDialogue_1: @ 81017E4 .global gUnknown_8101808 gUnknown_8101808: @ 8101808 -.string " Hey{COMMA} {ARG_POKEMON_3}!\n" -.string "We{APOSTROPHE}re here again!{EXTRA_MSG}" +.string " Hey, {ARG_POKEMON_3}!\n" +.string "We're here again!{EXTRA_MSG}" .string " Show yourself!\0" .align 2, 0 .global gUnknown_810183C gUnknown_810183C: @ 810183C -.string " Hey{COMMA} {ARG_POKEMON_3}!\n" -.string "We{APOSTROPHE}re back!{EXTRA_MSG}" +.string " Hey, {ARG_POKEMON_3}!\n" +.string "We're back!{EXTRA_MSG}" .string " Come out!\0" .align 2, 0 .global gUnknown_8101864 gUnknown_8101864: @ 8101864 -.string " Hey{COMMA} {ARG_POKEMON_3}!\n" -.string "Guess who{APOSTROPHE}s back?!{EXTRA_MSG}" +.string " Hey, {ARG_POKEMON_3}!\n" +.string "Guess who's back?!{EXTRA_MSG}" .string " Show yourself!\0" .align 2, 0 @@ -10994,7 +10994,7 @@ gZapdosPostStoryPreFightDialogue_2: @ 8101970 .global gUnknown_810197C gUnknown_810197C: @ 810197C -.string " So{COMMA} you{APOSTROPHE}re back!\0" +.string " So, you're back!\0" .align 2, 0 .global gZapdosPostStoryPreFightDialogue_3 @@ -11005,7 +11005,7 @@ gZapdosPostStoryPreFightDialogue_3: @ 8101994 .global gUnknown_81019A0 gUnknown_81019A0: @ 81019A0 -.string " Since we last met{COMMA} how\n" +.string " Since we last met, how\n" .string "much more have you furthered your team?\0" .align 2, 0 @@ -11040,9 +11040,9 @@ gZapdosPostStoryPreFightDialogue_6: @ 8101A38 .global gUnknown_8101A44 gUnknown_8101A44: @ 8101A44 -.string "{CENTER_ALIGN}The mountain{APOSTROPHE}s summit...{WAIT_PRESS}\n" +.string "{CENTER_ALIGN}The mountain's summit...{WAIT_PRESS}\n" .string "{CENTER_ALIGN}But there is no one here.{EXTRA_MSG}" -.string "{CENTER_ALIGN}It{APOSTROPHE}s time to go back.\0" +.string "{CENTER_ALIGN}It's time to go back.\0" .align 2, 0 .global gMoltresPreFightDialogue_1 @@ -11054,7 +11054,7 @@ gMoltresPreFightDialogue_1: @ 8101A9C .global gUnknown_8101AA8 gUnknown_8101AA8: @ 8101AA8 .string " Is this it?\n" -.string "Is this Mt. Blaze{APOSTROPHE}s summit?\0" +.string "Is this Mt. Blaze's summit?\0" .align 2, 0 .global gMoltresPreFightDialogue_2 @@ -11069,7 +11069,7 @@ gMoltresPreFightDialogue_2: @ 8101AD4 .global gUnknown_8101AEC gUnknown_8101AEC: @ 8101AEC .string " Wow. This is incredible.{WAIT_PRESS}\n" -.string "I know it{APOSTROPHE}s a volcano{COMMA} but the lava flow\n" +.string "I know it's a volcano, but the lava flow\n" .string "is much higher than normal.{EXTRA_MSG}" .string " This might also have a link\n" .string "to the natural calamities...\0" @@ -11078,7 +11078,7 @@ gUnknown_8101AEC: @ 8101AEC .global gUnknown_8101B8C gUnknown_8101B8C: @ 8101B8C .string " This is one incredible place.{WAIT_PRESS}\n" -.string "I know this is a volcano{COMMA} but the amount\n" +.string "I know this is a volcano, but the amount\n" .string "of lava is way more than usual.{EXTRA_MSG}" .string " This might also be a part of\n" .string "the natural disasters...\0" @@ -11095,14 +11095,14 @@ gMoltresPreFightDialogue_3: @ 8101C30 .global gUnknown_8101C48 gUnknown_8101C48: @ 8101C48 -.string " Oogh! It{APOSTROPHE}s like a furnace!{WAIT_PRESS}\n" -.string "I{APOSTROPHE}m getting roasted!\0" +.string " Oogh! It's like a furnace!{WAIT_PRESS}\n" +.string "I'm getting roasted!\0" .align 2, 0 .global gUnknown_8101C80 gUnknown_8101C80: @ 8101C80 -.string " Yowch! It{APOSTROPHE}s wicked hot!{WAIT_PRESS}\n" -.string "I feel like I{APOSTROPHE}m burning up.\0" +.string " Yowch! It's wicked hot!{WAIT_PRESS}\n" +.string "I feel like I'm burning up.\0" .align 2, 0 .global gMoltresPreFightDialogue_4 @@ -11116,16 +11116,16 @@ gMoltresPreFightDialogue_4: @ 8101CBC .global gUnknown_8101CD4 gUnknown_8101CD4: @ 8101CD4 -.string " I don{APOSTROPHE}t want to spend any\n" +.string " I don't want to spend any\n" .string "time in a place this dangerous.{EXTRA_MSG}" -.string " Let{APOSTROPHE}s get through this quick.\0" +.string " Let's get through this quick.\0" .align 2, 0 .global gUnknown_8101D34 gUnknown_8101D34: @ 8101D34 -.string " I don{APOSTROPHE}t want to be in a place\n" +.string " I don't want to be in a place\n" .string "this wickedly bad.{EXTRA_MSG}" -.string " Let{APOSTROPHE}s get through here quick.\0" +.string " Let's get through here quick.\0" .align 2, 0 .global gMoltresPreFightDialogue_5 @@ -11150,7 +11150,7 @@ gMoltresPreFightDialogue_6: @ 8101DA0 .global gUnknown_8101DB8 gUnknown_8101DB8: @ 8101DB8 -.string " Huh{COMMA} what?!{EXTRA_MSG}" +.string " Huh, what?!{EXTRA_MSG}" .string " It suddenly turned dark!\0" .align 2, 0 @@ -11169,7 +11169,7 @@ gMoltresPreFightDialogue_7: @ 8101E1C .global gUnknown_8101E28 gUnknown_8101E28: @ 8101E28 -.string " I can hear the mountain{APOSTROPHE}s screams...{EXTRA_MSG}" +.string " I can hear the mountain's screams...{EXTRA_MSG}" .string " It is shrieking in pain...{EXTRA_MSG}" .string " Someone is causing Mt. Blaze to\n" .string "writhe in agony!\n" @@ -11190,22 +11190,22 @@ gMoltresPreFightDialogue_8: @ 8101EAC .global gUnknown_8101ED0 gUnknown_8101ED0: @ 8101ED0 .string " Huh?!{WAIT_PRESS}\n" -.string "That{APOSTROPHE}s wrong!\n" -.string "We{APOSTROPHE}re innocent!{EXTRA_MSG}" +.string "That's wrong!\n" +.string "We're innocent!{EXTRA_MSG}" .string " We were just passing\n" .string "through!{EXTRA_MSG}" -.string " Who are you{COMMA} anyway?{WAIT_PRESS}\n" +.string " Who are you, anyway?{WAIT_PRESS}\n" .string "Show yourself!\0" .align 2, 0 .global gUnknown_8101F48 gUnknown_8101F48: @ 8101F48 .string " Huh?!{WAIT_PRESS}\n" -.string "You{APOSTROPHE}ve got it wrong!\n" -.string "It{APOSTROPHE}s not us!{EXTRA_MSG}" +.string "You've got it wrong!\n" +.string "It's not us!{EXTRA_MSG}" .string " We just happened to be\n" .string "passing through here!{EXTRA_MSG}" -.string " Who are you{COMMA} anyway?{WAIT_PRESS}\n" +.string " Who are you, anyway?{WAIT_PRESS}\n" .string "Show yourself!\n" .string " \0" .align 2, 0 @@ -11213,11 +11213,11 @@ gUnknown_8101F48: @ 8101F48 .global gUnknown_8101FD4 gUnknown_8101FD4: @ 8101FD4 .string " Hah?!{WAIT_PRESS}\n" -.string "We don{APOSTROPHE}t know what you mean!\n" -.string "We{APOSTROPHE}re not doing anything!{EXTRA_MSG}" +.string "We don't know what you mean!\n" +.string "We're not doing anything!{EXTRA_MSG}" .string " We just happened to be\n" .string "traveling through here!{EXTRA_MSG}" -.string " Who are you{COMMA} anyway?{WAIT_PRESS}\n" +.string " Who are you, anyway?{WAIT_PRESS}\n" .string "Come out!\0" .align 2, 0 @@ -11241,7 +11241,7 @@ gMoltresPreFightDialogue_10: @ 81020A4 .global gUnknown_81020B0 gUnknown_81020B0: @ 81020B0 -.string " The mountain{APOSTROPHE}s rage is my rage!\0" +.string " The mountain's rage is my rage!\0" .align 2, 0 .global gMoltresPreFightDialogue_11 @@ -11278,7 +11278,7 @@ gMoltresReFightDialogue_1: @ 8102158 .global gUnknown_8102164 gUnknown_8102164: @ 8102164 .string " ............{WAIT_PRESS}\n" -.string "Maybe {ARG_POKEMON_2} isn{APOSTROPHE}t around...\0" +.string "Maybe {ARG_POKEMON_2} isn't around...\0" .align 2, 0 .global gMoltresReFightDialogue_2 @@ -11292,13 +11292,13 @@ gMoltresReFightDialogue_2: @ 8102190 .global gUnknown_81021A8 gUnknown_81021A8: @ 81021A8 -.string " Let{APOSTROPHE}s slip by here while\n" +.string " Let's slip by here while\n" .string "we have the chance.\0" .align 2, 0 .global gUnknown_81021D8 gUnknown_81021D8: @ 81021D8 -.string " Let{APOSTROPHE}s sneak through while\n" +.string " Let's sneak through while\n" .string "we can.\0" .align 2, 0 @@ -11328,20 +11328,20 @@ gMoltresReFightDialogue_4: @ 8102254 .global gUnknown_8102278 gUnknown_8102278: @ 8102278 -.string " Won{APOSTROPHE}t you listen?!{WAIT_PRESS}\n" -.string "We{APOSTROPHE}re only...\0" +.string " Won't you listen?!{WAIT_PRESS}\n" +.string "We're only...\0" .align 2, 0 .global gUnknown_81022A0 gUnknown_81022A0: @ 81022A0 -.string " You don{APOSTROPHE}t understand!{WAIT_PRESS}\n" -.string "We{APOSTROPHE}re only...\0" +.string " You don't understand!{WAIT_PRESS}\n" +.string "We're only...\0" .align 2, 0 .global gUnknown_81022CC gUnknown_81022CC: @ 81022CC -.string " You{APOSTROPHE}ve got us wrong!{WAIT_PRESS}\n" -.string "We{APOSTROPHE}re just...\0" +.string " You've got us wrong!{WAIT_PRESS}\n" +.string "We're just...\0" .align 2, 0 .global gMoltresReFightDialogue_5 @@ -11368,7 +11368,7 @@ gUnknown_8102338: @ 8102338 .string " Halt!{EXTRA_MSG}" .string " This is Mt. Blaze!{EXTRA_MSG}" .string " For you to venture to its\n" -.string "peak{COMMA} there can be but one reason!\0" +.string "peak, there can be but one reason!\0" .align 2, 0 .global gMoltresPostStoryPreFightDialogue_2 @@ -11379,7 +11379,7 @@ gMoltresPostStoryPreFightDialogue_2: @ 8102398 .global gUnknown_81023A4 gUnknown_81023A4: @ 81023A4 -.string " You{APOSTROPHE}ve come to challenge\n" +.string " You've come to challenge\n" .string "me!\0" .align 2, 0 @@ -11392,7 +11392,7 @@ gMoltresPostStoryPreFightDialogue_3: @ 81023C4 .global gUnknown_81023D0 gUnknown_81023D0: @ 81023D0 .string " So be it!{WAIT_PRESS}\n" -.string "I am the warrior of fire{COMMA} {ARG_POKEMON_2}!\0" +.string "I am the warrior of fire, {ARG_POKEMON_2}!\0" .align 2, 0 .global gMoltresPostStoryPreFightDialogue_4 @@ -11436,18 +11436,18 @@ gArticunoPreFightDialogue_1: @ 8102478 gUnknown_8102490: @ 8102490 .string " We sure have traveled far\n" .string "into this forest.{EXTRA_MSG}" -.string " I think we{APOSTROPHE}ll be out if we\n" +.string " I think we'll be out if we\n" .string "can get through this part.{WAIT_PRESS}\n" -.string "It shouldn{APOSTROPHE}t be far. Let{APOSTROPHE}s keep going.\0" +.string "It shouldn't be far. Let's keep going.\0" .align 2, 0 .global gUnknown_8102524 gUnknown_8102524: @ 8102524 -.string " We{APOSTROPHE}ve come pretty far into\n" +.string " We've come pretty far into\n" .string "the forest.{EXTRA_MSG}" -.string " I think we{APOSTROPHE}ll be out if we\n" +.string " I think we'll be out if we\n" .string "can get through this part.{WAIT_PRESS}\n" -.string "It shouldn{APOSTROPHE}t be long. Hang in there.\0" +.string "It shouldn't be long. Hang in there.\0" .align 2, 0 .global gArticunoPreFightDialogue_2 @@ -11470,7 +11470,7 @@ gArticunoPreFightDialogue_3: @ 81025D4 .global gUnknown_81025E0 gUnknown_81025E0: @ 81025E0 .string " ...Huh?{WAIT_PRESS}\n" -.string "{ARG_POKEMON_0}{COMMA} did you just say something?\0" +.string "{ARG_POKEMON_0}, did you just say something?\0" .align 2, 0 .global gArticunoPreFightDialogue_4 @@ -11484,16 +11484,16 @@ gArticunoPreFightDialogue_4: @ 8102610 .global gUnknown_8102628 gUnknown_8102628: @ 8102628 -.string " ...I didn{APOSTROPHE}t think so...{EXTRA_MSG}" +.string " ...I didn't think so...{EXTRA_MSG}" .string " I thought I heard a voice...{WAIT_PRESS}\n" .string "I must have imagined it.\0" .align 2, 0 .global gUnknown_8102680 gUnknown_8102680: @ 8102680 -.string " ...I didn{APOSTROPHE}t think so.{EXTRA_MSG}" +.string " ...I didn't think so.{EXTRA_MSG}" .string " A voice...?{WAIT_PRESS}\n" -.string "I must{APOSTROPHE}ve imagined it.\0" +.string "I must've imagined it.\0" .align 2, 0 .global gArticunoPreFightDialogue_5 @@ -11517,7 +11517,7 @@ gArticunoPreFightDialogue_6: @ 810270C .global gUnknown_8102718 gUnknown_8102718: @ 8102718 -.string " Who{APOSTROPHE}s there?!\0" +.string " Who's there?!\0" .align 2, 0 .global gArticunoPreFightDialogue_7 @@ -11530,7 +11530,7 @@ gArticunoPreFightDialogue_7: @ 810272C gUnknown_8102738: @ 8102738 .string " You are forbidden to pass...{EXTRA_MSG}" .string " ...If you persist in trying to pass...{EXTRA_MSG}" -.string " Then{COMMA} so be it...{EXTRA_MSG}" +.string " Then, so be it...{EXTRA_MSG}" .string " But only after you have defeated me!\0" .align 2, 0 @@ -11542,7 +11542,7 @@ gArticunoPreFightDialogue_8: @ 81027BC .global gUnknown_81027C8 gUnknown_81027C8: @ 81027C8 -.string " Ow! It{APOSTROPHE}s too bright!{EXTRA_MSG}" +.string " Ow! It's too bright!{EXTRA_MSG}" .string " The ice around us is\n" .string "reflecting this light!\0" .align 2, 0 @@ -11697,7 +11697,7 @@ gUnknown_8102A9C: @ 8102A9C gUnknown_8102AA8: @ 8102AA8 .string "{CENTER_ALIGN}This is the deepest part of the forest...{WAIT_PRESS}\n" .string "{CENTER_ALIGN}But there is no one here.{EXTRA_MSG}" -.string "{CENTER_ALIGN}It{APOSTROPHE}s time to go back.\0" +.string "{CENTER_ALIGN}It's time to go back.\0" .align 2, 0 .global gUnknown_8102B10 @@ -11715,7 +11715,7 @@ MagmaCavernMidDialogue_1: @ 8102B1C .global gUnknown_8102B28 gUnknown_8102B28: @ 8102B28 -.string " Let{APOSTROPHE}s see...{WAIT_PRESS}\n" +.string " Let's see...{WAIT_PRESS}\n" .string "...I wonder where we are?\0" .global MagmaCavernMidDialogue_2 @@ -11729,13 +11729,13 @@ MagmaCavernMidDialogue_2: @ 8102B54 .global gUnknown_8102B6C gUnknown_8102B6C: @ 8102B6C -.string " I{APOSTROPHE}m certain we{APOSTROPHE}ve come quite\n" +.string " I'm certain we've come quite\n" .string "far already...\0" .align 2, 0 .global gUnknown_8102BA0 gUnknown_8102BA0: @ 8102BA0 -.string " I know we{APOSTROPHE}ve come pretty\n" +.string " I know we've come pretty\n" .string "far...\0" .align 2, 0 @@ -11763,7 +11763,7 @@ MagmaCavernMidDialogue_4: @ 8102BE4 .global gUnknown_8102BFC gUnknown_8102BFC: @ 8102BFC .string " ...Whew!\n" -.string "It{APOSTROPHE}s over.\0" +.string "It's over.\0" .align 2, 0 .global gUnknown_8102C14 @@ -11882,7 +11882,7 @@ MagmaCavernMidDialogue_12: @ 8102D7C .global gUnknown_8102D94 gUnknown_8102D94: @ 8102D94 -.string " That{APOSTROPHE}s right.{WAIT_PRESS}\n" +.string " That's right.{WAIT_PRESS}\n" .string "What happened to {ARG_POKEMON_3}?\n" .string "Where is {ARG_POKEMON_3}?\0" .align 2, 0 @@ -11916,7 +11916,7 @@ MagmaCavernMidDialogue_14: @ 8102E2C .global gUnknown_8102E38 gUnknown_8102E38: @ 8102E38 .string " {ARG_POKEMON_0}!\n" -.string "We{APOSTROPHE}ve got to hurry!\0" +.string "We've got to hurry!\0" .global MagmaCavernMidDialogue_15 MagmaCavernMidDialogue_15: @ 8102E54 @@ -11940,7 +11940,7 @@ GroudonPreFightDialogue_1: @ 8102E70 .global gUnknown_8102E88 gUnknown_8102E88: @ 8102E88 -.string " It{APOSTROPHE}s {ARG_POKEMON_3}!\n" +.string " It's {ARG_POKEMON_3}!\n" .string "Are you OK?!\0" .align 2, 0 @@ -11959,7 +11959,7 @@ GroudonPreFightDialogue_2: @ 8102EBC .global gUnknown_8102EC8 gUnknown_8102EC8: @ 8102EC8 .string " Hm!{WAIT_PRESS}\n" -.string "So it{APOSTROPHE}s you!\0" +.string "So it's you!\0" .align 2, 0 .global GroudonPreFightDialogue_3 @@ -12061,7 +12061,7 @@ gUnknown_8102FF0: @ 8102FF0 .global gUnknown_8103020 gUnknown_8103020: @ 8103020 -.string " {ARG_POKEMON_3}{APOSTROPHE}s gone!{EXTRA_MSG}" +.string " {ARG_POKEMON_3}'s gone!{EXTRA_MSG}" .string " Was he maybe...{WAIT_PRESS}\n" .string "knocked out?!\0" .align 2, 0 @@ -12080,19 +12080,19 @@ GroudonPreFightDialogue_11: @ 8103054 .global gUnknown_8103078 gUnknown_8103078: @ 8103078 .string " Ohh...\n" -.string "It{APOSTROPHE}s our turn next.\0" +.string "It's our turn next.\0" .align 2, 0 .global gUnknown_8103098 gUnknown_8103098: @ 8103098 .string " Urgh...\n" -.string "It{APOSTROPHE}s our turn next.\0" +.string "It's our turn next.\0" .align 2, 0 .global gUnknown_81030B8 gUnknown_81030B8: @ 81030B8 .string " Darn it!\n" -.string "It{APOSTROPHE}s our turn next.\0" +.string "It's our turn next.\0" .align 2, 0 .global GroudonPreFightDialogue_12 @@ -12103,7 +12103,7 @@ GroudonPreFightDialogue_12: @ 81030D8 .global gUnknown_81030E4 gUnknown_81030E4: @ 81030E4 -.string " But I{APOSTROPHE}m not going down\n" +.string " But I'm not going down\n" .string "without a fight!\0" .align 2, 0 @@ -12131,7 +12131,7 @@ GroudonPreFightDialogue_14: @ 8103140 .global gUnknown_8103158 gUnknown_8103158: @ 8103158 .string " {ARG_POKEMON_0}!\n" -.string "Let{APOSTROPHE}s do our best!\0" +.string "Let's do our best!\0" .align 2, 0 .global gUnknown_8103174 @@ -12153,7 +12153,7 @@ gGroudonReFightDialogue_1: @ 8103188 gUnknown_81031A0: @ 81031A0 .string " Here it comes!\n" .string "{ARG_POKEMON_0}!{EXTRA_MSG}" -.string " Let{APOSTROPHE}s make sure we subdue\n" +.string " Let's make sure we subdue\n" .string "{ARG_POKEMON_2} this time!\0" .align 2, 0 @@ -12161,7 +12161,7 @@ gUnknown_81031A0: @ 81031A0 gUnknown_81031E4: @ 81031E4 .string " Here it comes!\n" .string "{ARG_POKEMON_0}!{EXTRA_MSG}" -.string " We{APOSTROPHE}ve got to settle\n" +.string " We've got to settle\n" .string "{ARG_POKEMON_2} down this time!\0" .align 2, 0 @@ -12178,21 +12178,21 @@ gGroudonReFightDialogue_2: @ 8103228 .global gUnknown_810324C gUnknown_810324C: @ 810324C -.string " Don{APOSTROPHE}t be intimidated!{EXTRA_MSG}" +.string " Don't be intimidated!{EXTRA_MSG}" .string " We have to fight it with\n" .string "all our courage!\0" .align 2, 0 .global gUnknown_8103294 gUnknown_8103294: @ 8103294 -.string " Don{APOSTROPHE}t be intimidated!{EXTRA_MSG}" +.string " Don't be intimidated!{EXTRA_MSG}" .string " We need to be brave to\n" .string "face this thing!\0" .align 2, 0 .global gUnknown_81032D8 gUnknown_81032D8: @ 81032D8 -.string " Don{APOSTROPHE}t get psyched out!{EXTRA_MSG}" +.string " Don't get psyched out!{EXTRA_MSG}" .string " Be brave and keep slugging!\0" .align 2, 0 @@ -12220,13 +12220,13 @@ gGroudonReFightDialogue_4: @ 8103340 .global gUnknown_8103358 gUnknown_8103358: @ 8103358 .string " {ARG_POKEMON_0}!\n" -.string "Let{APOSTROPHE}s give it our all!\0" +.string "Let's give it our all!\0" .align 2, 0 .global gUnknown_8103378 gUnknown_8103378: @ 8103378 .string " {ARG_POKEMON_0}!\n" -.string "Let{APOSTROPHE}s give it what we{APOSTROPHE}ve got!\0" +.string "Let's give it what we've got!\0" .align 2, 0 .global gGroudonPostStoryPreFightDialogue_1 @@ -12246,7 +12246,7 @@ gUnknown_81033B8: @ 81033B8 .string " Why have you returned?!{WAIT_PRESS}\n" .string "How dare you disturb me in my sleep?!{EXTRA_MSG}" .string " I let rage run wild before...{WAIT_PRESS}\n" -.string "But I won{APOSTROPHE}t allow that again!\0" +.string "But I won't allow that again!\0" .align 2, 0 .global gGroudonPostStoryPreFightDialogue_3 @@ -12278,8 +12278,8 @@ gUnknown_8103488: @ 8103488 .global gUnknown_8103494 gUnknown_8103494: @ 8103494 .string "{CENTER_ALIGN}This appears to be the deepest level.{EXTRA_MSG}" -.string "{CENTER_ALIGN}It{APOSTROPHE}s impossible to go any farther.{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}It{APOSTROPHE}s time to go back.\0" +.string "{CENTER_ALIGN}It's impossible to go any farther.{WAIT_PRESS}\n" +.string "{CENTER_ALIGN}It's time to go back.\0" .global gRayquazaPreFightDialogue_1 gRayquazaPreFightDialogue_1: @ 8103500 @@ -12350,7 +12350,7 @@ gRayquazaPreFightDialogue_5: @ 8103618 .global gUnknown_8103624 gUnknown_8103624: @ 8103624 .string " But...\n" -.string "We don{APOSTROPHE}t have the time to argue.{EXTRA_MSG}" +.string "We don't have the time to argue.{EXTRA_MSG}" .string " We came here because we\n" .string "need your help...\0" .align 2, 0 @@ -12387,12 +12387,12 @@ gRayquazaPreFightDialogue_8: @ 81036C8 .global gUnknown_81036D4 gUnknown_81036D4: @ 81036D4 -.string " I am a being of the sky{COMMA}\n" +.string " I am a being of the sky,\n" .string "and you are but denizens of the ground.{EXTRA_MSG}" -.string " To each{COMMA} there is a world\n" +.string " To each, there is a world\n" .string "destined as their own!{EXTRA_MSG}" .string " For hundreds of millions of\n" -.string "years{COMMA} never once have I descended to\n" +.string "years, never once have I descended to\n" .string "the ground!\0" .align 2, 0 @@ -12440,7 +12440,7 @@ gRayquazaReFightDialogue_1: @ 8103844 .global gUnknown_8103850 gUnknown_8103850: @ 8103850 -.string " You return{COMMA} but for no\n" +.string " You return, but for no\n" .string "purpose!\0" .align 2, 0 @@ -12498,13 +12498,13 @@ gUnknown_8103944: @ 8103944 .string " So it is you who dares to\n" .string "trespass upon my airspace!{EXTRA_MSG}" .string " You scaled the Sky Tower...{EXTRA_MSG}" -.string " Now{COMMA} you wish to challenge\n" +.string " Now, you wish to challenge\n" .string "me to a battle?!{EXTRA_MSG}" .string " ............{WAIT_PRESS}\n" -.string "In destroying the falling star{COMMA} I sustained\n" +.string "In destroying the falling star, I sustained\n" .string "injuries upon my body and my pride...{EXTRA_MSG}" .string " To better protect my\n" -.string "domain{COMMA} I have made myself stronger.{EXTRA_MSG}" +.string "domain, I have made myself stronger.{EXTRA_MSG}" .string " And so that I may draw\n" .string "out my newly gained power...\0" .align 2, 0 @@ -12554,8 +12554,8 @@ gRayquazaPostStoryPreFightDialogue_6: @ 8103B58 gUnknown_8103B64: @ 8103B64 .string "{CENTER_ALIGN}This appears to be\n" .string "{CENTER_ALIGN}the top of the Sky Tower...{EXTRA_MSG}" -.string "{CENTER_ALIGN}It{APOSTROPHE}s impossible to go farther.{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}It{APOSTROPHE}s time to go back.\0" +.string "{CENTER_ALIGN}It's impossible to go farther.{WAIT_PRESS}\n" +.string "{CENTER_ALIGN}It's time to go back.\0" .align 2, 0 .global gUnknown_8103BD8 @@ -12566,7 +12566,7 @@ gUnknown_8103BD8: @ 8103BD8 .global gUnknown_8103BE4 gUnknown_8103BE4: @ 8103BE4 -.string " Hunh? What is it{COMMA} you?\0" +.string " Hunh? What is it, you?\0" .align 2, 0 .global gUnknown_8103C00 @@ -12577,8 +12577,8 @@ gUnknown_8103C00: @ 8103C00 .global gUnknown_8103C0C gUnknown_8103C0C: @ 8103C0C -.string " We don{APOSTROPHE}t like to brag or\n" -.string "nothing{COMMA} but...\0" +.string " We don't like to brag or\n" +.string "nothing, but...\0" .align 2, 0 .global gUnknown_8103C3C @@ -12627,8 +12627,8 @@ gUnknown_8103D0C: @ 8103D0C .global gUnknown_8103D18 gUnknown_8103D18: @ 8103D18 .string " Gwooooh!\n" -.string "It{APOSTROPHE}s ticking me off!{WAIT_PRESS}\n" -.string "I{APOSTROPHE}m seeing red!\0" +.string "It's ticking me off!{WAIT_PRESS}\n" +.string "I'm seeing red!\0" .align 2, 0 .global gUnknown_8103D50 @@ -12640,7 +12640,7 @@ gUnknown_8103D50: @ 8103D50 .global gUnknown_8103D5C gUnknown_8103D5C: @ 8103D5C .string " Mukkkeeeeeh!\n" -.string "Get {APOSTROPHE}em! It{APOSTROPHE}s frenzy time!\0" +.string "Get 'em! It's frenzy time!\0" .align 2, 0 .global gUnknown_8103D8C @@ -12670,8 +12670,8 @@ gUnknown_8103DD8: @ 8103DD8 .global gUnknown_8103DE4 gUnknown_8103DE4: @ 8103DE4 .string " Gwoooooh!\n" -.string "It{APOSTROPHE}s ticking me off!{WAIT_PRESS}\n" -.string "I{APOSTROPHE}m about to blow my fuse!\0" +.string "It's ticking me off!{WAIT_PRESS}\n" +.string "I'm about to blow my fuse!\0" .align 2, 0 .global gUnknown_8103E28 @@ -12692,8 +12692,8 @@ gUnknown_8103E40: @ 8103E40 .global gUnknown_8103E40 gUnknown_8103E40: @ 8103E40 .string "{CENTER_ALIGN}There appears to be no one here.{EXTRA_MSG}" -.string "{CENTER_ALIGN}It{APOSTROPHE}s impossible to go farther.{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}It{APOSTROPHE}s time to go back.\0" +.string "{CENTER_ALIGN}It's impossible to go farther.{WAIT_PRESS}\n" +.string "{CENTER_ALIGN}It's time to go back.\0" .align 2, 0 .global gMewtwoPreFightDialogue_1 @@ -12736,7 +12736,7 @@ gUnknown_8103F58: @ 8103F58 .string "animation.{EXTRA_MSG}" .string " Would you like to know\n" .string "why?{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s quite simple...\0" +.string "It's quite simple...\0" .align 2, 0 .global gMewtwoPreFightDialogue_4 @@ -12884,7 +12884,7 @@ gEnteiReFightDialogue_3: @ 81042B8 gUnknown_81042C4: @ 81042C4 .string " Since you fail to heed my\n" .string "words...{WAIT_PRESS}\n" -.string "I{APOSTROPHE}ve no choice but to defeat you!\0" +.string "I've no choice but to defeat you!\0" .align 2, 0 .global gEnteiPostStoryPreFightDialogue_1 @@ -12932,9 +12932,9 @@ gEnteiPostStoryPreFightDialogue_4: @ 81043DC .global gUnknown_81043E8 gUnknown_81043E8: @ 81043E8 -.string "{CENTER_ALIGN}The lord of this area isn{APOSTROPHE}t here.{EXTRA_MSG}" -.string "{CENTER_ALIGN}It{APOSTROPHE}s impossible to go farther.{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}It{APOSTROPHE}s time to go back.\0" +.string "{CENTER_ALIGN}The lord of this area isn't here.{EXTRA_MSG}" +.string "{CENTER_ALIGN}It's impossible to go farther.{WAIT_PRESS}\n" +.string "{CENTER_ALIGN}It's time to go back.\0" .align 2, 0 .global gRaikouPreFightDialogue_1 @@ -13009,7 +13009,7 @@ gRaikouPreFightDialogue_6: @ 81045B0 .global gUnknown_81045BC gUnknown_81045BC: @ 81045BC -.string " And you{COMMA} too{COMMA} shall\n" +.string " And you, too, shall\n" .string "experience the pain they suffered!\0" .align 2, 0 @@ -13022,9 +13022,9 @@ gRaikouReFightDialogue_1: @ 81045F8 .global gUnknown_8104604 gUnknown_8104604: @ 8104604 .string " Snicker... You again.{WAIT_PRESS}\n" -.string "You don{APOSTROPHE}t give up easily.{EXTRA_MSG}" +.string "You don't give up easily.{EXTRA_MSG}" .string " If you so wish to taste\n" -.string "defeat again{COMMA} I shall oblige!\0" +.string "defeat again, I shall oblige!\0" .align 2, 0 .global gRaikouReFightDialogue_2 @@ -13060,7 +13060,7 @@ gUnknown_81046D8: @ 81046D8 .string " This is {COLOR_1 YELLOW_4}Lightning Field{END_COLOR_TEXT_1}!{WAIT_PRESS}\n" .string "My domain!{EXTRA_MSG}" .string " All those who enter...{WAIT_PRESS}\n" -.string "I show no mercy{COMMA} no matter what!\0" +.string "I show no mercy, no matter what!\0" .align 2, 0 .global gRaikouPostStoryPreFightDialogue_2 @@ -13112,7 +13112,7 @@ gSuicunePreFightDialogue_3: @ 81047B0 .global gUnknown_81047BC gUnknown_81047BC: @ 81047BC .string " Clear and bracing air...{WAIT_PRESS}\n" -.string "Crystalline{COMMA} pure water...{EXTRA_MSG}" +.string "Crystalline, pure water...{EXTRA_MSG}" .string " To stand guard over this beautiful and\n" .string "untainted land...{WAIT_PRESS}\n" .string "That is why I am here.\0" @@ -13263,7 +13263,7 @@ gUnknown_8104AE0: @ 8104AE0 .string "situations...{EXTRA_MSG}" .string " and finally ascended to the very peak\n" .string "of {COLOR_1 YELLOW_4}Mt. Faraway{END_COLOR_TEXT_1}!{EXTRA_MSG}" -.string " Truly{COMMA} only the chosen have reached\n" +.string " Truly, only the chosen have reached\n" .string "the summit.{EXTRA_MSG}" .string " However!\0" .align 2, 0 @@ -13331,7 +13331,7 @@ HoOhReFightDialogue_1: @ 8104CEC gUnknown_8104CF8: @ 8104CF8 .string " Very good!{EXTRA_MSG}" .string " You have done well to come this far.{EXTRA_MSG}" -.string " Truly{COMMA} only the chosen have reached\n" +.string " Truly, only the chosen have reached\n" .string "the summit.\0" .align 2, 0 @@ -13392,10 +13392,10 @@ gUnknown_8104E6C: @ 8104E6C .string " Oh!{WAIT_PRESS}\n" .string "Who are you?!{EXTRA_MSG}" .string " ............{WAIT_PRESS}\n" -.string "I see. You{APOSTROPHE}re trying to get your TMs back.{EXTRA_MSG}" +.string "I see. You're trying to get your TMs back.{EXTRA_MSG}" .string " But!{EXTRA_MSG}" .string " Nobody can stop me!{EXTRA_MSG}" -.string " I{APOSTROPHE}m the Eon Pokémon {ARG_POKEMON_2}!\0" +.string " I'm the Eon Pokémon {ARG_POKEMON_2}!\0" .align 2, 0 .global gLatiosPreFightDialogue_2 @@ -13418,7 +13418,7 @@ gLatiosPreFightDialogue_3: @ 8104F30 .global gUnknown_8104F3C gUnknown_8104F3C: @ 8104F3C -.string " You{APOSTROPHE}ll have to take them\n" +.string " You'll have to take them\n" .string "from me!\0" .align 2, 0 @@ -13430,9 +13430,9 @@ gLatiosReFightDialogue_1: @ 8104F64 .global gUnknown_8104F70 gUnknown_8104F70: @ 8104F70 -.string " You{APOSTROPHE}re back?{EXTRA_MSG}" +.string " You're back?{EXTRA_MSG}" .string " But!{EXTRA_MSG}" -.string " It doesn{APOSTROPHE}t matter how often\n" +.string " It doesn't matter how often\n" .string "you come!{WAIT_PRESS}\n" .string "Nobody can stop me!\0" .align 2, 0 @@ -13478,7 +13478,7 @@ gRegirockPostFightDialogue_1: @ 8105040 .global gUnknown_810504C gUnknown_810504C: @ 810504C .string "{CENTER_ALIGN}Something fell from\n" -.string "{CENTER_ALIGN}{COLOR_1 CYAN_3}Regirock{END_COLOR_TEXT_1}{APOSTROPHE}s body.{EXTRA_MSG}" +.string "{CENTER_ALIGN}{COLOR_1 CYAN_3}Regirock{END_COLOR_TEXT_1}'s body.{EXTRA_MSG}" .string "{CENTER_ALIGN}{COLOR_1 CYAN_3}Regirock{END_COLOR_TEXT_1} was apparently\n" .string "{CENTER_ALIGN}guarding this item.\0" .align 2, 0 @@ -13505,7 +13505,7 @@ gRegicePostFightDialogue_1: @ 810510C .global gUnknown_8105118 gUnknown_8105118: @ 8105118 .string "{CENTER_ALIGN}Something fell from\n" -.string "{CENTER_ALIGN}{COLOR_1 CYAN_3}Regice{END_COLOR_TEXT_1}{APOSTROPHE}s body.{EXTRA_MSG}" +.string "{CENTER_ALIGN}{COLOR_1 CYAN_3}Regice{END_COLOR_TEXT_1}'s body.{EXTRA_MSG}" .string "{CENTER_ALIGN}{COLOR_1 CYAN_3}Regice{END_COLOR_TEXT_1} was apparently\n" .string "{CENTER_ALIGN}guarding this item.\0" .align 2, 0 @@ -13532,7 +13532,7 @@ gRegisteelPostFightDialogue_1: @ 81051D0 .global gUnknown_81051DC gUnknown_81051DC: @ 81051DC .string "{CENTER_ALIGN}Something fell from\n" -.string "{CENTER_ALIGN}{COLOR_1 CYAN_3}Registeel{END_COLOR_TEXT_1}{APOSTROPHE}s body.{EXTRA_MSG}" +.string "{CENTER_ALIGN}{COLOR_1 CYAN_3}Registeel{END_COLOR_TEXT_1}'s body.{EXTRA_MSG}" .string "{CENTER_ALIGN}{COLOR_1 CYAN_3}Registeel{END_COLOR_TEXT_1} was apparently\n" .string "{CENTER_ALIGN}guarding this item.\0" .align 2, 0 @@ -13553,8 +13553,8 @@ gUnknown_8105250: @ 8105250 .global gUnknown_81052A0 gUnknown_81052A0: @ 81052A0 .string "{CENTER_ALIGN}That means...{EXTRA_MSG}" -.string "{CENTER_ALIGN}By finding the {COLOR_1 GREEN_2}Rock Part{END_COLOR_TEXT_1}{COMMA}\n" -.string "{CENTER_ALIGN}{COLOR_1 GREEN_2}Ice Part{END_COLOR_TEXT_1}{COMMA} and {COLOR_1 GREEN_2}Steel Part{END_COLOR_TEXT_1}...{EXTRA_MSG}" +.string "{CENTER_ALIGN}By finding the {COLOR_1 GREEN_2}Rock Part{END_COLOR_TEXT_1},\n" +.string "{CENTER_ALIGN}{COLOR_1 GREEN_2}Ice Part{END_COLOR_TEXT_1}, and {COLOR_1 GREEN_2}Steel Part{END_COLOR_TEXT_1}...{EXTRA_MSG}" .string "{CENTER_ALIGN}All three parts are yours!\0" .align 2, 0 @@ -13566,7 +13566,7 @@ gUnknown_810531C: @ 810531C .global gUnknown_8105320 gUnknown_8105320: @ 8105320 .string "{CENTER_ALIGN}Oh? The three parts...{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}They{APOSTROPHE}re reacting to each other?\0" +.string "{CENTER_ALIGN}They're reacting to each other?\0" .align 2, 0 .global gUnknown_8105360 @@ -13610,7 +13610,7 @@ gJirachiPreFightDialogue_1: @ 8105438 gUnknown_8105444: @ 8105444 .string " ........................{EXTRA_MSG}" .string " ......Fwaaaaaaaahhh......{EXTRA_MSG}" -.string " I{APOSTROPHE}m still sleepy...\n" +.string " I'm still sleepy...\n" .string "Fnyumnyum...\0" .align 2, 0 @@ -13635,7 +13635,7 @@ gJirachiPreFightDialogue_3: @ 81054E4 .global gUnknown_81054F0 gUnknown_81054F0: @ 81054F0 -.string " I{APOSTROPHE}m {ARG_POKEMON_2}.\n" +.string " I'm {ARG_POKEMON_2}.\n" .string "Who are you?\0" .align 2, 0 @@ -13648,7 +13648,7 @@ gJirachiPreFightDialogue_4: @ 810550C .global gUnknown_8105518 gUnknown_8105518: @ 8105518 .string " ......Fwaaaaahhhh......\n" -.string "I{APOSTROPHE}m still...sleepy...\0" +.string "I'm still...sleepy...\0" .align 2, 0 .global gUnknown_810554C @@ -13665,10 +13665,10 @@ gUnknown_8105558: @ 8105558 .global gUnknown_8105564 gUnknown_8105564: @ 8105564 -.string " ...I think I had a dream{COMMA}\n" +.string " ...I think I had a dream,\n" .string "and I was fighting in it...{WAIT_PRESS}\n" .string "Did I imagine it?{EXTRA_MSG}" -.string " ...I{APOSTROPHE}m sleepy{COMMA} so I{APOSTROPHE}m going\n" +.string " ...I'm sleepy, so I'm going\n" .string "back to sleep...\n" .string "Good night...\0" .align 2, 0 @@ -13683,7 +13683,7 @@ gUnknown_81055F4: @ 81055F4 gUnknown_8105600: @ 8105600 .string "{CENTER_ALIGN}{COLOR_1 CYAN_3}{ARG_POKEMON_2}{END_COLOR_TEXT_1} fell\n" .string "{CENTER_ALIGN}back into a deep sleep...{EXTRA_MSG}" -.string "{CENTER_ALIGN}Apparently{COMMA} {COLOR_1 CYAN_3}{ARG_POKEMON_2}{END_COLOR_TEXT_1}\n" +.string "{CENTER_ALIGN}Apparently, {COLOR_1 CYAN_3}{ARG_POKEMON_2}{END_COLOR_TEXT_1}\n" .string "{CENTER_ALIGN}was fighting in its sleep...\0" .align 2, 0 @@ -13701,7 +13701,7 @@ gUnknown_8105674: @ 8105674 .global gUnknown_8105680 gUnknown_8105680: @ 8105680 -.string " ...Oh{COMMA} oh?!\n" +.string " ...Oh, oh?!\n" .string "I hear singing...{EXTRA_MSG}" .string " A song of purity...\0" .align 2, 0 @@ -13726,10 +13726,10 @@ gUnknown_81056DC: @ 81056DC .global gUnknown_81056E8 gUnknown_81056E8: @ 81056E8 -.string " I don{APOSTROPHE}t know why{COMMA} but I{APOSTROPHE}m\n" +.string " I don't know why, but I'm\n" .string "wide awake!{EXTRA_MSG}" -.string " I{APOSTROPHE}m {ARG_POKEMON_2}.{EXTRA_MSG}" -.string " When I awaken{COMMA} I grant\n" +.string " I'm {ARG_POKEMON_2}.{EXTRA_MSG}" +.string " When I awaken, I grant\n" .string "a wish.\n" .string "I have to.{EXTRA_MSG}" .string " Er-hem...{WAIT_PRESS}\n" @@ -13797,7 +13797,7 @@ gUnknown_810581C: @ 810581C gUnknown_8105828: @ 8105828 .string " You want lots of money?{EXTRA_MSG}" .string " As you wish.{WAIT_PRESS}\n" -.string "I{APOSTROPHE}ll gather all the money in the dungeon and\n" +.string "I'll gather all the money in the dungeon and\n" .string "bring it here.{EXTRA_MSG}" .string " Now...{WAIT_PRESS}\n" .string "Here goes!\0" @@ -13861,7 +13861,7 @@ gUnknown_8105974: @ 8105974 gUnknown_8105980: @ 8105980 .string " You want lots of items?{EXTRA_MSG}" .string " As you wish.{WAIT_PRESS}\n" -.string "I{APOSTROPHE}ll gather all the good items in the dungeon\n" +.string "I'll gather all the good items in the dungeon\n" .string "and bring them here.{EXTRA_MSG}" .string " Now...{WAIT_PRESS}\n" .string "Here goes!\0" @@ -13877,9 +13877,9 @@ gUnknown_8105A08: @ 8105A08 gUnknown_8105A14: @ 8105A14 .string " You want a Friend Area?{EXTRA_MSG}" .string " ...But...{WAIT_PRESS}\n" -.string "Don{APOSTROPHE}t you already have many Friend\n" +.string "Don't you already have many Friend\n" .string "Areas?{EXTRA_MSG}" -.string " I can{APOSTROPHE}t grant you that wish{COMMA}\n" +.string " I can't grant you that wish,\n" .string "so can you choose another one?{EXTRA_MSG}" .string " Er-hem...{WAIT_PRESS}\n" .string "Then...{WAIT_PRESS}" @@ -13909,7 +13909,7 @@ gUnknown_8105B20: @ 8105B20 .global gUnknown_8105B2C gUnknown_8105B2C: @ 8105B2C .string " I opened a new Friend Area\n" -.string "for you. It{APOSTROPHE}s yours to use!\0" +.string "for you. It's yours to use!\0" .align 2, 0 .global gUnknown_8105B68 @@ -13950,10 +13950,10 @@ gUnknown_8105C00: @ 8105C00 .string " I gathered up items from\n" .string "all over the dungeon that may make you \n" .string "stronger.{EXTRA_MSG}" -.string " But don{APOSTROPHE}t use them now.{WAIT_PRESS}\n" -.string "When you leave the {COLOR_1 YELLOW_4}Wish Cave{END_COLOR_TEXT_1}{COMMA} your\n" +.string " But don't use them now.{WAIT_PRESS}\n" +.string "When you leave the {COLOR_1 YELLOW_4}Wish Cave{END_COLOR_TEXT_1}, your\n" .string "powers go back to their original state.{EXTRA_MSG}" -.string " So{COMMA} you should only use\n" +.string " So, you should only use\n" .string "those items after you take them back.{EXTRA_MSG}" .string " I hope you keep working to\n" .string "become stronger!\0" @@ -13968,8 +13968,8 @@ gUnknown_8105D2C: @ 8105D2C .global gUnknown_8105D38 gUnknown_8105D38: @ 8105D38 .string " Something good?{WAIT_PRESS}\n" -.string "That{APOSTROPHE}s not very easy...{EXTRA_MSG}" -.string " But I{APOSTROPHE}ll do my best!\0" +.string "That's not very easy...{EXTRA_MSG}" +.string " But I'll do my best!\0" .align 2, 0 .global gUnknown_8105D80 @@ -13980,7 +13980,7 @@ gUnknown_8105D80: @ 8105D80 .global gUnknown_8105D8C gUnknown_8105D8C: @ 8105D8C -.string " It{APOSTROPHE}s done...\0" +.string " It's done...\0" .align 2, 0 .global gUnknown_8105D9C @@ -13991,7 +13991,7 @@ gUnknown_8105D9C: @ 8105D9C .global gUnknown_8105DA8 gUnknown_8105DA8: @ 8105DA8 -.string " If you can get home safely{COMMA}\n" +.string " If you can get home safely,\n" .string "I think there will be something good\n" .string "waiting for you.{WAIT_PRESS}" .string " Maybe.{WAIT_PRESS}" @@ -14006,9 +14006,9 @@ gJirachiReFightDialogue_1: @ 8105E14 .global gUnknown_8105E20 gUnknown_8105E20: @ 8105E20 -.string "{CENTER_ALIGN}The master of this area isn{APOSTROPHE}t here.{EXTRA_MSG}" -.string "{CENTER_ALIGN}It{APOSTROPHE}s impossible to go farther.{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}It{APOSTROPHE}s time to go back.\0" +.string "{CENTER_ALIGN}The master of this area isn't here.{EXTRA_MSG}" +.string "{CENTER_ALIGN}It's impossible to go farther.{WAIT_PRESS}\n" +.string "{CENTER_ALIGN}It's time to go back.\0" .align 2, 0 @ Lugia Fight Dialogue @@ -14047,7 +14047,7 @@ gLugiaPreFightDialogue_3: @ 8105F38 .global gUnknown_8105F44 gUnknown_8105F44: @ 8105F44 -.string " To protect this sea{COMMA}\n" +.string " To protect this sea,\n" .string "I have settled here...\0" .align 2, 0 @@ -14157,7 +14157,7 @@ gUnknown_810614C: @ 810614C .string " My duels against {ARG_POKEMON_3} left\n" .string "us both exhausted...{WAIT_PRESS}\n" .string "I took to a long and deep sleep...{EXTRA_MSG}" -.string " All the time{COMMA} I waited.\n" +.string " All the time, I waited.\n" .string "Waited for my power to recover.{EXTRA_MSG}" .string " And now!{WAIT_PRESS}\n" .string "I am on the verge of regaining my power!\0" @@ -14241,7 +14241,7 @@ gDeoxysPreFightDialogue_3: @ 8106368 .global gUnknown_8106374 gUnknown_8106374: @ 8106374 -.string " If you know{COMMA} tell me.\0" +.string " If you know, tell me.\0" .align 2, 0 .global gDeoxysPreFightDialogue_4 @@ -14272,7 +14272,7 @@ gCelebiJoinDialogue_1: @ 81063D0 .global gPurityForestSomeoneThereText gPurityForestSomeoneThereText: @ 81063DC .string "{CENTER_ALIGN}Oh?{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}There{APOSTROPHE}s someone there.\0" +.string "{CENTER_ALIGN}There's someone there.\0" .align 2, 0 .global gCelebiJoinDialogue_2 @@ -14283,7 +14283,7 @@ gCelebiJoinDialogue_2: @ 8106400 .global gPurityForestCelebiIntroText gPurityForestCelebiIntroText: @ 810640C -.string "{CENTER_ALIGN}It{APOSTROPHE}s...{WAIT_PRESS}\n" +.string "{CENTER_ALIGN}It's...{WAIT_PRESS}\n" .string "{CENTER_ALIGN}The Time Travel Pokémon {ARG_POKEMON_2}!\0" .align 2, 0 @@ -14329,7 +14329,7 @@ gCelebiJoinDialogue_6: @ 81064BC .global gPurityForestCelebiDelightedToJoinText gPurityForestCelebiDelightedToJoinText: @ 81064C8 -.string "{CENTER_ALIGN}It{APOSTROPHE}s delighted to have\n" +.string "{CENTER_ALIGN}It's delighted to have\n" .string "{CENTER_ALIGN}joined the rescue team!\0" .align 2, 0 @@ -14400,7 +14400,7 @@ gPurityForestAllowCelebiToJoinYesText: @ 81065C8 .global gPurityForestRefuseCelebiConfirmText gPurityForestRefuseCelebiConfirmText: @ 81065D0 .string "{CENTER_ALIGN}Are you sure?{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}You{APOSTROPHE}re sure you won{APOSTROPHE}t accept it?\0" +.string "{CENTER_ALIGN}You're sure you won't accept it?\0" .align 2, 0 .global gPtrPurityForestRefuseCelebiConfirmText @@ -14504,8 +14504,8 @@ gMedichamRescueDialogue_1: @ 8106778 .global gUnknown_8106784 gUnknown_8106784: @ 8106784 -.string " Oh{COMMA} my{COMMA} my...\n" -.string "I can{APOSTROPHE}t seem to find a way out...\0" +.string " Oh, my, my...\n" +.string "I can't seem to find a way out...\0" .align 2, 0 .global gMedichamRescueDialogue_2 @@ -14543,7 +14543,7 @@ gMedichamRescueDialogue_4: @ 8106834 .global gUnknown_8106840 gUnknown_8106840: @ 8106840 -.string " Yes{COMMA} yes!\n" +.string " Yes, yes!\n" .string "I am so lucky!\0" .align 2, 0 @@ -14566,7 +14566,7 @@ gSmeargleRescueDialogue_1: @ 810688C .global gUnknown_8106898 gUnknown_8106898: @ 8106898 .string " Ohhh...\n" -.string "I{APOSTROPHE}ve lost my bearings...{WAIT_PRESS}\n" +.string "I've lost my bearings...{WAIT_PRESS}\n" .string "Where is this?\0" .align 2, 0 @@ -14578,9 +14578,9 @@ gSmeargleRescueDialogue_2: @ 81068D0 .global gUnknown_81068DC gUnknown_81068DC: @ 81068DC -.string " I can{APOSTROPHE}t get out...\n" -.string "I{APOSTROPHE}m hungry...{WAIT_PRESS}\n" -.string "I{APOSTROPHE}m in trouble...\0" +.string " I can't get out...\n" +.string "I'm hungry...{WAIT_PRESS}\n" +.string "I'm in trouble...\0" .align 2, 0 .global gSmeargleRescueDialogue_3 diff --git a/data/data_810AE24.s b/data/data_810AE24.s index 7895a35f4..29bf286a1 100644 --- a/data/data_810AE24.s +++ b/data/data_810AE24.s @@ -300,7 +300,7 @@ BrokeCurse_810B3C4: @ 810B3C4 .global PreventMeteor_810B3E4 PreventMeteor_810B3E4: @ 810B3E4 -.string "Prevented the meteor{APOSTROPHE}s collision.\0" +.string "Prevented the meteor's collision.\0" .align 2,0 .global Fugitive_810B408 @@ -925,7 +925,7 @@ AbilityDescriptionVitalSpirit: .global AbilityDescriptionFlashFire AbilityDescriptionFlashFire: -.string "{COLOR_2 RED}Flash Fire{END_COLOR_TEXT_2}: Zeroes damage\nfrom Fire-type move hits{COMMA}\nand boosts own Fire moves.\0" +.string "{COLOR_2 RED}Flash Fire{END_COLOR_TEXT_2}: Zeroes damage\nfrom Fire-type move hits,\nand boosts own Fire moves.\0" .align 2,0 .global AbilityDescriptionPickup @@ -980,7 +980,7 @@ AbilityDescriptionFlameBody: .global AbilityDescriptionEffectSpore AbilityDescriptionEffectSpore: -.string "{COLOR_2 RED}Effect Spore{END_COLOR_TEXT_2}: Attackers are\npoisoned{COMMA} paralyzed{COMMA} or put\nto sleep.\0" +.string "{COLOR_2 RED}Effect Spore{END_COLOR_TEXT_2}: Attackers are\npoisoned, paralyzed, or put\nto sleep.\0" .align 2,0 .global AbilityDescriptionSoundproof @@ -990,7 +990,7 @@ AbilityDescriptionSoundproof: .global AbilityDescriptionColorChange AbilityDescriptionColorChange: -.string "{COLOR_2 RED}Color Change{END_COLOR_TEXT_2}: Changes the\nPokémon{APOSTROPHE}s type to that of\nthe move that hit it last.\0" +.string "{COLOR_2 RED}Color Change{END_COLOR_TEXT_2}: Changes the\nPokémon's type to that of\nthe move that hit it last.\0" .align 2,0 .global AbilityDescriptionLiquidOoze @@ -1000,7 +1000,7 @@ AbilityDescriptionLiquidOoze: .global AbilityDescriptionPressure AbilityDescriptionPressure: -.string "{COLOR_2 RED}Pressure{END_COLOR_TEXT_2}: If hit by a foe{APOSTROPHE}s\nmove{COMMA} the foe uses more PP\nthan usual.\0" +.string "{COLOR_2 RED}Pressure{END_COLOR_TEXT_2}: If hit by a foe's\nmove, the foe uses more PP\nthan usual.\0" .align 2,0 .global AbilityDescriptionPlus @@ -1055,7 +1055,7 @@ AbilityDescriptionEarlyBird: .global AbilityDescriptionIlluminate AbilityDescriptionIlluminate: -.string "{COLOR_2 RED}Illuminate{END_COLOR_TEXT_2}: If damaged{COMMA}\na wild Pokémon appears \non the dungeon floor.\0" +.string "{COLOR_2 RED}Illuminate{END_COLOR_TEXT_2}: If damaged,\na wild Pokémon appears \non the dungeon floor.\0" .align 2,0 .global AbilityDescriptionCloudNine @@ -1065,7 +1065,7 @@ AbilityDescriptionCloudNine: .global AbilityDescriptionStickyHold AbilityDescriptionStickyHold: -.string "{COLOR_2 RED}Sticky Hold{END_COLOR_TEXT_2}: Prevents the\nPokémon{APOSTROPHE}s hold item from\nbeing taken.\0" +.string "{COLOR_2 RED}Sticky Hold{END_COLOR_TEXT_2}: Prevents the\nPokémon's hold item from\nbeing taken.\0" .align 2,0 .global AbilityDescriptionRunAway @@ -1100,7 +1100,7 @@ AbilityDescriptionSereneGrace: .global AbilityDescriptionForecast AbilityDescriptionForecast: -.string "{COLOR_2 RED}Forecast{END_COLOR_TEXT_2}: The Pokémon{APOSTROPHE}s\ntype changes with the\nweather.\0" +.string "{COLOR_2 RED}Forecast{END_COLOR_TEXT_2}: The Pokémon's\ntype changes with the\nweather.\0" .align 2,0 .global AbilityDescriptionWaterAbsorb @@ -1230,7 +1230,7 @@ AbilityDescriptionBattleArmor: .global AbilityDescriptionSpeedBoost AbilityDescriptionSpeedBoost: -.string "{COLOR_2 RED}Speed Boost{END_COLOR_TEXT_2}: The Pokémon{APOSTROPHE}s\nMovement Speed accelerates.\0" +.string "{COLOR_2 RED}Speed Boost{END_COLOR_TEXT_2}: The Pokémon's\nMovement Speed accelerates.\0" .align 2,0 .global AbilityDescriptionShadowTag @@ -1437,7 +1437,7 @@ MoveRangeFront: .global MoveRangeCutsCorners MoveRangeCutsCorners: -.string "User{COMMA} cuts corners\0" +.string "User, cuts corners\0" .align 2,0 .global MoveRangeTwoTiles @@ -1542,7 +1542,7 @@ MoveRangeFloorMembers: .global MoveRangeCutsCornersFoe MoveRangeCutsCornersFoe: -.string "Foe in front{COMMA} cuts corners\0" +.string "Foe in front, cuts corners\0" .align 2,0 .global MoveRangeOneTileFoe @@ -1923,7 +1923,7 @@ sUnknown_810D5F0: @ 810D5F0 .string "Caught in a nightmare\0" .align 2, 0 sUnknown_810D608: @ 810D608 -.string "Won{APOSTROPHE}t get sleepy\0" +.string "Won't get sleepy\0" .align 2, 0 sUnknown_810D61C: @ 810D61C .string "Asleep\0" @@ -2803,8 +2803,8 @@ sUnknown_810E38C: @ 810E38C .string "Physical Attack moves are those based on\n" .string "the stats {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}.\n" .string "Physical Attack moves are of the types\n" -.string "Normal{COMMA} Fighting{COMMA} Poison{COMMA} Ground{COMMA} Flying{COMMA}\n" -.string "Bug{COMMA} Rock{COMMA} Ghost{COMMA} and Steel.\0" +.string "Normal, Fighting, Poison, Ground, Flying,\n" +.string "Bug, Rock, Ghost, and Steel.\0" .align 2, 0 sUnknown_810E45C: @ 810E45C .string "{COLOR_2 CYAN}Physical Attack Moves{END_COLOR_TEXT_2} \0" @@ -2814,8 +2814,8 @@ sUnknown_810E47C: @ 810E47C .string "the stats {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2} and\n" .string "{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}.\n" .string "Special Attack moves are of the types\n" -.string "Fire{COMMA} Water{COMMA} Grass{COMMA} Electric{COMMA} Ice{COMMA} Psychic{COMMA}\n" -.string "Dragon{COMMA} and Dark.\0" +.string "Fire, Water, Grass, Electric, Ice, Psychic,\n" +.string "Dragon, and Dark.\0" .align 2, 0 sUnknown_810E550: @ 810E550 .string "{COLOR_2 CYAN}Special Attack Moves{END_COLOR_TEXT_2} \0" @@ -2827,17 +2827,17 @@ sUnknown_810E56C: @ 810E56C .string "next floor.\0" .align 2, 0 sUnknown_810E5F4: @ 810E5F4 -.string "Because of moves{COMMA} special abilities{COMMA} etc.{COMMA}\n" +.string "Because of moves, special abilities, etc.,\n" .string "the Pokémon is weakened in terms of such\n" -.string "stats as {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}{COMMA}\n" +.string "stats as {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2},\n" .string "and {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}. It is possible to heal\n" -.string "this condition with a Wonder Tile{COMMA} etc.\n" +.string "this condition with a Wonder Tile, etc.\n" .string "Moving to the next floor will also heal it.\0" .align 2, 0 sUnknown_810E714: @ 810E714 .string "Two or more moves can be linked together\n" .string "to use them in succession in one turn.\n" -.string "Although linked moves can be powerful{COMMA}\n" +.string "Although linked moves can be powerful,\n" .string "they also make the Pokémon hungry faster.\n" .string "The link is broken if the {COLOR_2 YELLOW}PP{END_COLOR_TEXT_2} of a linked\n" .string "move is used up.\0" @@ -2846,14 +2846,14 @@ sUnknown_810E7F8: @ 810E7F8 .string "{COLOR_2 CYAN}Link{END_COLOR_TEXT_2} \0" .align 2, 0 sUnknown_810E804: @ 810E804 -.string "The floor{APOSTROPHE}s status changes to Water Sport.\n" +.string "The floor's status changes to Water Sport.\n" .string "The power of Fire-type moves is halved.\0" .align 2, 0 sUnknown_810E85C: @ 810E85C .string "{COLOR_2 CYAN}Water Sport{END_COLOR_TEXT_2} \0" .align 2, 0 sUnknown_810E870: @ 810E870 -.string "The floor{APOSTROPHE}s status changes to Mud Sport.\n" +.string "The floor's status changes to Mud Sport.\n" .string "The power of Electric-type moves is\n" .string "halved.\0" .align 2, 0 @@ -2873,13 +2873,13 @@ sUnknown_810E95C: @ 810E95C .string "It will try to flee from other Pokémon.\0" .align 2, 0 sUnknown_810E9A8: @ 810E9A8 -.string "The Ghost-type Pokémon{APOSTROPHE}s identity is\n" +.string "The Ghost-type Pokémon's identity is\n" .string "revealed.\n" -.string "Its type matchup changes{COMMA} making it weak\n" +.string "Its type matchup changes, making it weak\n" .string "against Normal- and Fighting-type moves.\0" .align 2, 0 sUnknown_810EA30: @ 810EA30 -.string "If the Pokémon is defeated{COMMA} its Grudge\n" +.string "If the Pokémon is defeated, its Grudge\n" .string "causes the victorious foe to completely\n" .string "lose the PP of its last move.\n" .string "Its effect wears off upon moving to the\n" @@ -2895,24 +2895,24 @@ sUnknown_810EAD4: @ 810EAD4 sUnknown_810EB60: @ 810EB60 .string "The Pokémon gains the ability to pinpoint\n" .string "the locations of other Pokémon on the\n" -.string "floor{APOSTROPHE}s map.\n" +.string "floor's map.\n" .string "This effect wears off upon moving to the\n" .string "next floor.\0" .align 2, 0 sUnknown_810EBF4: @ 810EBF4 .string "The Pokémon is storing power with the\n" .string "move {COLOR_2 GREEN}Stockpile{END_COLOR_TEXT_2}.\n" -.string "The more power Stockpiled{COMMA} the more\n" +.string "The more power Stockpiled, the more\n" .string "powerful the move {COLOR_2 GREEN}Spit Up{END_COLOR_TEXT_2}{END_COLOR_TEXT_2} becomes.\n" .string "The stored power is lost if the Pokémon\n" .string "goes on to the next floor.\0" .align 2, 0 sUnknown_810ECC4: @ 810ECC4 -.string "The Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} is\n" +.string "The Pokémon's {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} is\n" .string "reduced from its usual level.\0" .align 2, 0 sUnknown_810ED0C: @ 810ED0C -.string "The Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} is boosted\n" +.string "The Pokémon's {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} is boosted\n" .string "over its usual level.\0" .align 2, 0 sUnknown_810ED54: @ 810ED54 @@ -2966,8 +2966,8 @@ sUnknown_810F090: @ 810F090 sUnknown_810F0A0: @ 810F0A0 .string "There is a raging sandstorm.\n" .string "This weather condition inflicts damage\n" -.string "on all Pokémon except for the Ground{COMMA}\n" -.string "Rock{COMMA} and Steel types.\0" +.string "on all Pokémon except for the Ground,\n" +.string "Rock, and Steel types.\0" .align 2, 0 sUnknown_810F128: @ 810F128 .string "{COLOR_2 CYAN}Sandstorm{END_COLOR_TEXT_2} \0" @@ -3006,7 +3006,7 @@ sUnknown_810F2BC: @ 810F2BC .string "This effect lasts a set amount of turns.\0" .align 2, 0 sUnknown_810F334: @ 810F334 -.string "If the Pokémon is defeated{COMMA} its grudge\n" +.string "If the Pokémon is defeated, its grudge\n" .string "causes the foe to completely lose the PP\n" .string "of the move it used last.\0" .align 2, 0 @@ -3019,26 +3019,26 @@ sUnknown_810F3B8: @ 810F3B8 .string "This effect lasts a set amount of turns.\0" .align 2, 0 sUnknown_810F42C: @ 810F42C -.string "The Pokémon{APOSTROPHE}s sense of direction becomes\n" +.string "The Pokémon's sense of direction becomes\n" .string "completely scrambled.\n" .string "Its moves and attacks will hit even\n" .string "team members.\n" .string "This effect lasts a set amount of turns.\0" .align 2, 0 sUnknown_810F4C8: @ 810F4C8 -.string "The Pokémon{APOSTROPHE}s accuracy of moves and\n" +.string "The Pokémon's accuracy of moves and\n" .string "attacks is minimized so they hardly\n" .string "ever hit.\n" .string "Even sure-hit moves may miss.\n" .string "This effect lasts a set amount of turns.\0" .align 2, 0 sUnknown_810F564: @ 810F564 -.string "The critical-hit rate of the Pokémon{APOSTROPHE}s\n" +.string "The critical-hit rate of the Pokémon's\n" .string "moves is boosted to the maximum.\n" .string "This effect lasts a set amount of turns.\0" .align 2, 0 sUnknown_810F5D8: @ 810F5D8 -.string "The Pokémon{APOSTROPHE}s accuracy of moves and\n" +.string "The Pokémon's accuracy of moves and\n" .string "attacks is boosted so they always hit.\n" .string "This effect lasts a set amount of turns.\0" .align 2, 0 @@ -3049,7 +3049,7 @@ sUnknown_810F650: @ 810F650 .string "is hit by an attack or a move.\0" .align 2, 0 sUnknown_810F6C4: @ 810F6C4 -.string "The Pokémon{APOSTROPHE}s attacks and moves will\n" +.string "The Pokémon's attacks and moves will\n" .string "all fail.\n" .string "This effect lasts a set amount of turns.\0" .align 2, 0 @@ -3071,14 +3071,14 @@ sUnknown_810F818: @ 810F818 .string "This effect lasts a set amount of turns.\0" .align 2, 0 sUnknown_810F8A8: @ 810F8A8 -.string "The Pokémon{APOSTROPHE}s eyesight fails.\n" -.string "It can{APOSTROPHE}t see the terrain{COMMA} other Pokémon{COMMA} or\n" +.string "The Pokémon's eyesight fails.\n" +.string "It can't see the terrain, other Pokémon, or\n" .string "items on the ground.\n" .string "This condition lasts a set amount of turns.\0" .align 2, 0 sUnknown_810F93C: @ 810F93C -.string "The Pokémon can move{COMMA} attack{COMMA} and use\n" -.string "moves inside walls and on water{COMMA} lava{COMMA}\n" +.string "The Pokémon can move, attack, and use\n" +.string "moves inside walls and on water, lava,\n" .string "or clouds. Beware--it will grow hungry\n" .string "faster while traveling through walls.\n" .string "Its effect wears off upon moving to the\n" @@ -3086,7 +3086,7 @@ sUnknown_810F93C: @ 810F93C .align 2, 0 sUnknown_810FA14: @ 810FA14 .string "The Pokémon transforms into\n" -.string "a different Pokémon{COMMA} appearance-wise.\n" +.string "a different Pokémon, appearance-wise.\n" .string "This effect wears off upon moving to the\n" .string "next floor.\0" .align 2, 0 @@ -3097,21 +3097,21 @@ sUnknown_810FA90: @ 810FA90 .align 2, 0 sUnknown_810FAFC: @ 810FAFC .string "Any item thrown by the Pokémon will fly\n" -.string "through all obstacles{COMMA} including walls{COMMA}\n" +.string "through all obstacles, including walls,\n" .string "until disappearing. This will affect all\n" .string "Pokémon in its path.\n" .string "Its effect wears off upon moving to the\n" .string "next floor.\0" .align 2, 0 sUnknown_810FBC4: @ 810FBC4 -.string "If the Pokémon throws an item{COMMA} it will fly\n" +.string "If the Pokémon throws an item, it will fly\n" .string "until it hits an obstacle.\n" .string "This effect wears off upon moving to the\n" .string "next floor.\0" .align 2, 0 sUnknown_810FC44: @ 810FC44 .string "The amount of damage inflicted by the\n" -.string "Pokémon{APOSTROPHE}s moves and regular attack\n" +.string "Pokémon's moves and regular attack\n" .string "becomes set at a certain figure.\n" .string "This effect lasts a set amount of turns.\0" .align 2, 0 @@ -3124,7 +3124,7 @@ sUnknown_810FCDC: @ 810FCDC sUnknown_810FD84: @ 810FD84 .string "A Leech Seed is planted on the\n" .string "Pokémon. The Leech Seed drains the\n" -.string "Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} every several turns.\n" +.string "Pokémon's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} every several turns.\n" .string "This effect lasts a set amount of turns.\0" .align 2, 0 sUnknown_810FE18: @ 810FE18 @@ -3149,35 +3149,35 @@ sUnknown_810FF58: @ 810FF58 .align 2, 0 sUnknown_8110004: @ 8110004 .string "The Pokémon is protected from any\n" -.string "reduction of the stats {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}{COMMA}\n" -.string "{COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}{COMMA}\n" -.string "{COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2}{COMMA} and {COLOR_2 YELLOW}Evasion{END_COLOR_TEXT_2}.\n" +.string "reduction of the stats {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2},\n" +.string "{COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2},\n" +.string "{COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2}, and {COLOR_2 YELLOW}Evasion{END_COLOR_TEXT_2}.\n" .string "This condition lasts a set amount of turns.\0" .align 2, 0 sUnknown_81100DC: @ 81100DC .string "The Pokémon counters any Physical Attack\n" .string "move or regular attack by picking up and\n" .string "hurling the foe.\n" -.string "If the Pokémon faints{COMMA} it cannot retaliate\n" +.string "If the Pokémon faints, it cannot retaliate\n" .string "with a throw.\n" .string "This condition lasts a set amount of turns.\0" .align 2, 0 sUnknown_81101A8: @ 81101A8 -.string "If hit by a move{COMMA} the Pokémon changes its\n" -.string "type to one that is resistant to the move{APOSTROPHE}s\n" +.string "If hit by a move, the Pokémon changes its\n" +.string "type to one that is resistant to the move's\n" .string "type.\n" .string "This condition lasts a set amount of turns.\0" .align 2, 0 sUnknown_8110234: @ 8110234 .string "The Pokémon counters any Physical Attack\n" -.string "move or regular attack{COMMA} and inflicts one\n" +.string "move or regular attack, and inflicts one\n" .string "quarter the damage it took from the foe.\n" -.string "If the Pokémon faints{COMMA} it cannot hit back.\n" +.string "If the Pokémon faints, it cannot hit back.\n" .string "This condition lasts a set amount of turns.\0" .align 2, 0 sUnknown_811030C: @ 811030C .string "If the Pokémon takes damage that would\n" -.string "usually cause it to faint{COMMA} it will hold on\n" +.string "usually cause it to faint, it will hold on\n" .string "with just {COLOR_2 YELLOW}1HP{END_COLOR_TEXT_2}.\n" .string "This effect lasts a set amount of turns.\0" .align 2, 0 @@ -3185,14 +3185,14 @@ sUnknown_81103A0: @ 81103A0 .string "The Pokémon bounces back the power of\n" .string "any Special Attack used by a foe directly\n" .string "around it. If the Pokémon faints from\n" -.string "the Special Attack{COMMA} it can{APOSTROPHE}t strike back.\n" +.string "the Special Attack, it can't strike back.\n" .string "This condition lasts a set amount of turns.\0" .align 2, 0 sUnknown_8110470: @ 8110470 .string "The Pokémon will take no damage from\n" .string "attacks and moves. It will also resist\n" .string "effects of moves. It may take damage\n" -.string "from rocks{COMMA} explosions{COMMA} etc.\n" +.string "from rocks, explosions, etc.\n" .string "This condition lasts a set amount of turns.\0" .align 2, 0 sUnknown_8110530: @ 8110530 @@ -3206,9 +3206,9 @@ sUnknown_8110588: @ 8110588 .align 2, 0 sUnknown_81105F8: @ 81105F8 .string "The Pokémon counters any Physical Attack\n" -.string "move or regular attack{COMMA} and inflicts the\n" +.string "move or regular attack, and inflicts the\n" .string "same damage it took from the foe.\n" -.string "If the Pokémon faints{COMMA} it cannot hit back.\n" +.string "If the Pokémon faints, it cannot hit back.\n" .string "This condition lasts a set amount of turns.\0" .align 2, 0 sUnknown_81106C8: @ 81106C8 @@ -3228,7 +3228,7 @@ sUnknown_8110794: @ 8110794 .string "This effect lasts a set amount of turns.\0" .align 2, 0 sUnknown_8110814: @ 8110814 -.string "The Pokémon{APOSTROPHE}s Attack rises by one level\n" +.string "The Pokémon's Attack rises by one level\n" .string "each time it takes damage.\n" .string "This effect wears off in a set amount\n" .string "of turns.\0" @@ -3239,14 +3239,14 @@ sUnknown_811088C: @ 811088C .string "move used right after charging.\0" .align 2, 0 sUnknown_81108FC: @ 81108FC -.string "Using the move {COLOR_2 GREEN}Dig{END_COLOR_TEXT_2}{COMMA} \n" +.string "Using the move {COLOR_2 GREEN}Dig{END_COLOR_TEXT_2}, \n" .string "the Pokémon has gone underground to\n" .string "prepare for its attack.\n" .string "It will strike on the next turn to inflict\n" .string "damage.\0" .align 2, 0 sUnknown_8110988: @ 8110988 -.string "Using the move {COLOR_2 GREEN}Dive{END_COLOR_TEXT_2}{COMMA} \n" +.string "Using the move {COLOR_2 GREEN}Dive{END_COLOR_TEXT_2}, \n" .string "the Pokémon has gone underwater to\n" .string "prepare for its attack.\n" .string "It will strike on the next turn to inflict\n" @@ -3255,49 +3255,49 @@ sUnknown_8110988: @ 8110988 sUnknown_8110A14: @ 8110A14 .string "The Pokémon has bounced high to ready\n" .string "its attack.\n" -.string "On the next turn{COMMA} it will strike down\n" +.string "On the next turn, it will strike down\n" .string "to inflict damage.\0" .align 2, 0 sUnknown_8110A84: @ 8110A84 .string "The Pokémon is preparing to attack from\n" .string "high in the sky.\n" -.string "On the next turn{COMMA} it will strike from\n" +.string "On the next turn, it will strike from\n" .string "the sky to inflict damage.\0" .align 2, 0 sUnknown_8110B00: @ 8110B00 .string "The Pokémon is preparing to use\n" .string "the move {COLOR_2 GREEN}Skull Bash{END_COLOR_TEXT_2}.\n" -.string "On the next turn{COMMA} {COLOR_2 GREEN}Skull Bash{END_COLOR_TEXT_2} will be\n" +.string "On the next turn, {COLOR_2 GREEN}Skull Bash{END_COLOR_TEXT_2} will be\n" .string "unleashed.\0" .align 2, 0 sUnknown_8110B74: @ 8110B74 .string "The Pokémon is preparing to use\n" .string "the move {COLOR_2 GREEN}Focus Punch{END_COLOR_TEXT_2}.\n" -.string "On the next turn{COMMA} {COLOR_2 GREEN}Focus Punch{END_COLOR_TEXT_2} will be\n" +.string "On the next turn, {COLOR_2 GREEN}Focus Punch{END_COLOR_TEXT_2} will be\n" .string "unleashed.\0" .align 2, 0 sUnknown_8110BE8: @ 8110BE8 .string "The Pokémon is preparing to use\n" .string "the move {COLOR_2 GREEN}Razor Wind{END_COLOR_TEXT_2}.\n" -.string "On the next turn{COMMA} {COLOR_2 GREEN}Razor Wind{END_COLOR_TEXT_2} will be\n" +.string "On the next turn, {COLOR_2 GREEN}Razor Wind{END_COLOR_TEXT_2} will be\n" .string "unleashed.\0" .align 2, 0 sUnknown_8110C5C: @ 8110C5C .string "The Pokémon is preparing to use\n" .string "the move {COLOR_2 GREEN}Sky Attack{END_COLOR_TEXT_2}.\n" -.string "On the next turn{COMMA} {COLOR_2 GREEN}Sky Attack{END_COLOR_TEXT_2} will be\n" +.string "On the next turn, {COLOR_2 GREEN}Sky Attack{END_COLOR_TEXT_2} will be\n" .string "unleashed.\0" .align 2, 0 sUnknown_8110CD0: @ 8110CD0 .string "The Pokémon is preparing to launch\n" .string "the move {COLOR_2 GREEN}Solarbeam{END_COLOR_TEXT_2}.\n" -.string "On the next turn{COMMA} {COLOR_2 GREEN}Solarbeam{END_COLOR_TEXT_2} will be\n" +.string "On the next turn, {COLOR_2 GREEN}Solarbeam{END_COLOR_TEXT_2} will be\n" .string "unleashed.\0" .align 2, 0 sUnknown_8110D44: @ 8110D44 .string "The Pokémon stops moving for several\n" .string "turns and takes hits from foes.\n" -.string "In the end{COMMA} it will strike back to cause\n" +.string "In the end, it will strike back to cause\n" .string "double the damage it took over that time.\0" .align 2, 0 sUnknown_8110DE0: @ 8110DE0 @@ -3306,15 +3306,15 @@ sUnknown_8110DE0: @ 8110DE0 .string "It recovers after a set amount of turns.\0" .align 2, 0 sUnknown_8110E50: @ 8110E50 -.string "When using moves or Wonder Orbs{COMMA} the\n" +.string "When using moves or Wonder Orbs, the\n" .string "Pokémon will only use offensive ones\n" .string "that inflict damage.\n" .string "This effect lasts a set amount of turns.\0" .align 2, 0 sUnknown_8110EDC: @ 8110EDC -.string "The Pokémon is frightened{COMMA} making it\n" +.string "The Pokémon is frightened, making it\n" .string "launch attacks and moves completely\n" -.string "backwards. If an ally is behind it{COMMA} the\n" +.string "backwards. If an ally is behind it, the\n" .string "backward attacks and moves will hit.\n" .string "This condition lasts a set amount of turns.\0" .align 2, 0 @@ -3325,7 +3325,7 @@ sUnknown_8110FA4: @ 8110FA4 .align 2, 0 sUnknown_811100C: @ 811100C .string "The Pokémon lays down roots in the\n" -.string "ground. It becomes immobilized{COMMA} but\n" +.string "ground. It becomes immobilized, but\n" .string "it regenerates {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} every several turns.\n" .string "These effects last a set amount of turns.\0" .align 2, 0 @@ -3338,7 +3338,7 @@ sUnknown_81110AC: @ 81110AC sUnknown_811113C: @ 811113C .string "The Pokémon wraps around the foe and\n" .string "inflicts damage every several turns.\n" -.string "During that time{COMMA} the Pokémon is also\n" +.string "During that time, the Pokémon is also\n" .string "incapable of doing anything else.\n" .string "These effects last a set amount of turns.\0" .align 2, 0 @@ -3353,7 +3353,7 @@ sUnknown_8111270: @ 8111270 .align 2, 0 sUnknown_81112BC: @ 81112BC .string "The Pokémon becomes frozen solid.\n" -.string "While frozen{COMMA} it will not take damage\n" +.string "While frozen, it will not take damage\n" .string "from attacks and almost all moves.\n" .string "Fire-type moves can thaw out the Pokémon\n" .string "and may inflict damage.\n" @@ -3364,17 +3364,17 @@ sUnknown_8111398: @ 8111398 .string "from hunger. Every action results in a\n" .string "loss of {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\n" .string "This condition will persist until the\n" -.string "Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} is filled.\0" +.string "Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} is filled.\0" .align 2, 0 sUnknown_8111440: @ 8111440 .string "The Pokémon gains the ability to identify\n" .string "if other Pokémon are holding items or not.\0" .align 2, 0 sUnknown_8111498: @ 8111498 -.string "The Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} and\n" +.string "The Pokémon's {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} and\n" .string "{COLOR_2 YELLOW}attack frequency{END_COLOR_TEXT_2} are reduced.\n" .string "Attacks and moves become unusable.\n" -.string "Wonder Orbs also won{APOSTROPHE}t work{COMMA} but other\n" +.string "Wonder Orbs also won't work, but other\n" .string "items will.\n" .string "Its effects last a set amount of turns.\0" .align 2, 0 @@ -3384,7 +3384,7 @@ sUnknown_8111568: @ 8111568 .string "regenerating {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}. This condition does not\n" .string "disappear over turns.\n" .string "Heal it quickly by using certain moves or\n" -.string "items{COMMA} or by going to the next floor.\n\0" +.string "items, or by going to the next floor.\n\0" .align 2, 0 sUnknown_8111644: @ 8111644 .string "The Pokémon takes damage every ten\n" @@ -3392,24 +3392,24 @@ sUnknown_8111644: @ 8111644 .string "regenerating {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\n" .string "Poison does not disappear over turns.\n" .string "Heal it quickly by using certain moves or\n" -.string "items{COMMA} or by going to the next floor.\0" +.string "items, or by going to the next floor.\0" .align 2, 0 sUnknown_8111718: @ 8111718 .string "The Pokémon takes damage every few\n" .string "turns from its burn.\n" -.string "A burn can be healed by going into water{COMMA}\n" -.string "using certain moves or items{COMMA} or by\n" +.string "A burn can be healed by going into water,\n" +.string "using certain moves or items, or by\n" .string "going to the next floor.\0" .align 2, 0 sUnknown_81117BC: @ 81117BC -.string "The Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} is low from taking\n" +.string "The Pokémon's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} is low from taking\n" .string "damage. It is in danger.\n" .string "Do something to restore {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}!\0" .align 2, 0 sUnknown_8111824: @ 8111824 .string "The Pokémon falls asleep and becomes\n" .string "incapable of any action.\n" -.string "Upon awakening{COMMA} the Pokémon fully\n" +.string "Upon awakening, the Pokémon fully\n" .string "regains {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} and heals from any\n" .string "status problems.\0" .align 2, 0 @@ -4297,7 +4297,7 @@ gUnknown_8112534: @ 8112534 .global gUnknown_8112558 gUnknown_8112558: @ 8112558 .string "If the Pokémon is on an undiscovered\n" -.string "trap{COMMA} upon taking a step it will make\n" +.string "trap, upon taking a step it will make\n" .string "the trap visible without setting it off.\0" .align 2, 0 @@ -4315,7 +4315,7 @@ gUnknown_8112604: @ 8112604 .global gUnknown_8112640 gUnknown_8112640: @ 8112640 -.string "The Pokémon{APOSTROPHE}s Belly empties slower.\0" +.string "The Pokémon's Belly empties slower.\0" .align 2, 0 .global gUnknown_8112668 @@ -4332,48 +4332,48 @@ gUnknown_811268C: @ 811268C .global gUnknown_81126C0 gUnknown_81126C0: @ 81126C0 .string "The Pokémon gains the ability to walk on\n" -.string "water{COMMA} lava{COMMA} and clouds.\n" +.string "water, lava, and clouds.\n" .string "It can also dig its way through walls.\0" .align 2, 0 .global gUnknown_8112730 gUnknown_8112730: @ 8112730 .string "The Pokémon gains the ability to walk on\n" -.string "water{COMMA} lava{COMMA} and clouds.\0" +.string "water, lava, and clouds.\0" .align 2, 0 .global gUnknown_8112778 gUnknown_8112778: @ 8112778 -.string "When battling several foes{COMMA} the Pokémon\n" +.string "When battling several foes, the Pokémon\n" .string "will first target Pokémon that have a type\n" .string "disadvantage.\0" .align 2, 0 .global gUnknown_81127DC gUnknown_81127DC: @ 81127DC -.string "When battling several foes{COMMA} the Pokémon\n" +.string "When battling several foes, the Pokémon\n" .string "will first target Pokémon with the lowest\n" .string "{COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\0" .align 2, 0 .global gUnknown_811283C gUnknown_811283C: @ 811283C -.string "When battling several foes{COMMA} the Pokémon\n" +.string "When battling several foes, the Pokémon\n" .string "will first target Pokémon that are worth\n" .string "the most Exp. Points.\0" .align 2, 0 .global gUnknown_81128A8 gUnknown_81128A8: @ 81128A8 -.string "If its target has a status problem{COMMA} the\n" +.string "If its target has a status problem, the\n" .string "Pokémon will not use moves that cause\n" .string "the same status problem.\0" .align 2, 0 .global gUnknown_8112914 gUnknown_8112914: @ 8112914 -.string "If it becomes {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} or is {COLOR_2 CYAN}Cowering{END_COLOR_TEXT_2}{COMMA}\n" -.string "the Pokémon{APOSTROPHE}s wildly thrown\n" +.string "If it becomes {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} or is {COLOR_2 CYAN}Cowering{END_COLOR_TEXT_2},\n" +.string "the Pokémon's wildly thrown\n" .string "attacks will not hit friends.\0" .align 2, 0 @@ -4392,13 +4392,13 @@ gUnknown_8112A04: @ 8112A04 .global gUnknown_8112A40 gUnknown_8112A40: @ 8112A40 -.string "The Pokémon{APOSTROPHE}s regular attacks never miss.\0" +.string "The Pokémon's regular attacks never miss.\0" .align 2, 0 .global gUnknown_8112A6C gUnknown_8112A6C: @ 8112A6C .string "If this Pokémon has a foe targeted for\n" -.string "a move or a thrown item{COMMA} it will check\n" +.string "a move or a thrown item, it will check\n" .string "first for walls and other Pokémon that\n" .string "may get in the way. It will stop if there\n" .string "is an obstacle.\0" @@ -4408,14 +4408,14 @@ gUnknown_8112A6C: @ 8112A6C gUnknown_8112B20: @ 8112B20 .string "The Pokémon can catch and hold a thrown\n" .string "item.\n" -.string "It can{APOSTROPHE}t make a catch if it is already\n" -.string "holding an item. It also can{APOSTROPHE}t catch\n" +.string "It can't make a catch if it is already\n" +.string "holding an item. It also can't catch\n" .string "Seeds and drink items.\0" .align 2, 0 .global gUnknown_8112BB8 gUnknown_8112BB8: @ 8112BB8 -.string "The Pokémon{APOSTROPHE}s critical-hit rate is boosted\n" +.string "The Pokémon's critical-hit rate is boosted\n" .string "when attacking foes with a type\n" .string "disadvantage.\0" .align 2, 0 @@ -4495,7 +4495,7 @@ GoOtherWayTactic: .global LetsGoTogetherTactic LetsGoTogetherTactic: -.string "Let{APOSTROPHE}s go together\0" +.string "Let's go together\0" .align 2,0 .global gTacticsDescriptions @@ -4521,7 +4521,7 @@ gTacticsDescriptions: @ 8112CFC gUnknown_8112D5C: @ 8112D5C .string "The Pokémon will flee from others\n" .string "whether they are friendly or not.\n" -.string "In its rush to flee{COMMA} the Pokémon will not\n" +.string "In its rush to flee, the Pokémon will not\n" .string "be able to use any items.\0" .align 2, 0 @@ -4565,7 +4565,7 @@ gUnknown_8112F20: @ 8112F20 gUnknown_8112F70: @ 8112F70 .string "The Pokémon will try to avoid being\n" .string "attacked first.\n" -.string "If a foe comes close{COMMA} the Pokémon will\n" +.string "If a foe comes close, the Pokémon will\n" .string "attack.\0" .align 2, 0 @@ -4577,7 +4577,7 @@ gUnknown_8112FD8: @ 8112FD8 .global gUnknown_8113010 gUnknown_8113010: @ 8113010 -.string "The Pokémon will go off on its own{COMMA}\n" +.string "The Pokémon will go off on its own,\n" .string "heedless of the leader.\0" .align 2, 0 @@ -4798,7 +4798,7 @@ gUnknown_811345C: @ 811345C .global gUnknown_811347C gUnknown_811347C: @ 811347C -.string "a Blast Seed{APOSTROPHE}s damage.\0" +.string "a Blast Seed's damage.\0" .align 2, 0 .global gUnknown_8113498 @@ -4808,7 +4808,7 @@ gUnknown_8113498: @ 8113498 .global gUnknown_81134C0 gUnknown_81134C0: @ 81134C0 -.string "fainted due to a trap{APOSTROPHE}s damage.\0" +.string "fainted due to a trap's damage.\0" .align 2, 0 .global gUnknown_81134E4 @@ -4863,7 +4863,7 @@ gUnknown_811360C: @ 811360C .global gUnknown_8113630 gUnknown_8113630: @ 8113630 -.string "fainted{COMMA} unable to bear constriction.\0" +.string "fainted, unable to bear constriction.\0" .align 2, 0 .global gUnknown_8113658 @@ -4883,7 +4883,7 @@ gUnknown_8113684: @ 8113684 .global gUnknown_81136A8 gUnknown_81136A8: @ 81136A8 -.string "a foe{APOSTROPHE}s pent-up energy.\0" +.string "a foe's pent-up energy.\0" .align 2, 0 .global gUnknown_81136C4 @@ -4893,7 +4893,7 @@ gUnknown_81136C4: @ 81136C4 .global gUnknown_81136EC gUnknown_81136EC: @ 81136EC -.string "fainted from a move{APOSTROPHE}s recoil damage.\0" +.string "fainted from a move's recoil damage.\0" .align 2, 0 .global gUnknown_8113714 @@ -4903,12 +4903,12 @@ gUnknown_8113714: @ 8113714 .global gUnknown_8113738 gUnknown_8113738: @ 8113738 -.string "fainted{COMMA} covered in sludge.\0" +.string "fainted, covered in sludge.\0" .align 2, 0 .global gUnknown_8113758 gUnknown_8113758: @ 8113758 -.string "fainted from the foe{APOSTROPHE}s Destiny Bond.\0" +.string "fainted from the foe's Destiny Bond.\0" .align 2, 0 .global gUnknown_8113780 @@ -4938,7 +4938,7 @@ gUnknown_811380C: @ 811380C .global gUnknown_811382C gUnknown_811382C: @ 811382C -.string "{ARG_POKEMON_0}{APOSTROPHE}s {ARG_MOVE_ITEM_0}.\0" +.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0}.\0" .align 2, 0 .global gUnknown_811383C @@ -5500,7 +5500,7 @@ gUnknown_8113F18: @ 8113F18 .global gUnknown_8113F8C gUnknown_8113F8C: @ 8113F8C -.string "An eerie light encloses this rocky island{COMMA}\n" +.string "An eerie light encloses this rocky island,\n" .string "keeping out the sea. It is as if the\n" .string "island is in another dimension.\0" .align 2, 0 @@ -5515,21 +5515,21 @@ gUnknown_8114000: @ 8114000 .global gUnknown_8114058 gUnknown_8114058: @ 8114058 .string "An intriguing island with a complex\n" -.string "weather pattern. With the power of fire{COMMA}\n" -.string "lightning{COMMA} and ice{COMMA} it awaits its masters.\0" +.string "weather pattern. With the power of fire,\n" +.string "lightning, and ice, it awaits its masters.\0" .align 2, 0 .global gUnknown_81140D8 gUnknown_81140D8: @ 81140D8 .string "The powerful magnetic forces imbued in\n" .string "this quarry bind the nerves of certain\n" -.string "Pokémon{COMMA} creating psychic power.\0" +.string "Pokémon, creating psychic power.\0" .align 2, 0 .global gUnknown_811414C gUnknown_811414C: @ 811414C .string "A harsh and forbidding place of utter\n" -.string "desolation. Even here{COMMA} there exist\n" +.string "desolation. Even here, there exist\n" .string "hardy Pokémon.\0" .align 2, 0 @@ -5542,15 +5542,15 @@ gUnknown_81141A8: @ 81141A8 .global gUnknown_8114210 gUnknown_8114210: @ 8114210 -.string "It is said that in the bowels of the earth{COMMA}\n" -.string "where magma cascades in fiery streams{COMMA}\n" +.string "It is said that in the bowels of the earth,\n" +.string "where magma cascades in fiery streams,\n" .string "lives a Pokémon from mythical times.\0" .align 2, 0 .global gUnknown_811428C gUnknown_811428C: @ 811428C .string "A frigid sea where ice sheets drift about\n" -.string "impressively. Even in the subzero waters{COMMA}\n" +.string "impressively. Even in the subzero waters,\n" .string "some Pokémon swim about.\0" .align 2, 0 @@ -5578,8 +5578,8 @@ gUnknown_81143E4: @ 81143E4 .global gUnknown_8114454 gUnknown_8114454: @ 8114454 .string "One of two chambers in an ancient ruin.\n" -.string "One is named {QUOTE_START}AN{QUOTE_END} and\n" -.string "the other {QUOTE_START}O?{QUOTE_END}. Odd...\0" +.string "One is named “AN” and\n" +.string "the other “O?”. Odd...\0" .align 2, 0 .global gUnknown_81144B4 @@ -5613,7 +5613,7 @@ gUnknown_81145F8: @ 81145F8 .global gUnknown_811465C gUnknown_811465C: @ 811465C .string "A meadow covered in thunderclouds.\n" -.string "Besides Electric-type Pokémon{COMMA} a startling\n" +.string "Besides Electric-type Pokémon, a startling\n" .string "variety of other Pokémon live here.\0" .align 2, 0 @@ -5627,7 +5627,7 @@ gUnknown_81146D0: @ 81146D0 .global gUnknown_8114728 gUnknown_8114728: @ 8114728 .string "An abandoned lab built by humans long\n" -.string "ago. Left to fall into disrepair{COMMA} it is\n" +.string "ago. Left to fall into disrepair, it is\n" .string "now home to Pokémon.\0" .align 2, 0 @@ -5654,8 +5654,8 @@ gUnknown_8114870: @ 8114870 .global gUnknown_81148E0 gUnknown_81148E0: @ 81148E0 -.string "This very mysterious spot{COMMA} said to be deep\n" -.string "inside a dungeon{COMMA} is the perfect place to\n" +.string "This very mysterious spot, said to be deep\n" +.string "inside a dungeon, is the perfect place to\n" .string "store energy without expending any effort.\0" .align 2, 0 @@ -5675,15 +5675,15 @@ gUnknown_81149D8: @ 81149D8 .global gUnknown_8114A34 gUnknown_8114A34: @ 8114A34 -.string "A peanut-shaped swamp with green{COMMA} soupy\n" +.string "A peanut-shaped swamp with green, soupy\n" .string "water. It is home to Pokémon categories\n" -.string "like Mud Fish{COMMA} Whiskers{COMMA} and Water Fish.\0" +.string "like Mud Fish, Whiskers, and Water Fish.\0" .align 2, 0 .global gUnknown_8114AB4 gUnknown_8114AB4: @ 8114AB4 .string "A lake with a towering waterfall.\n" -.string "The fall{APOSTROPHE}s spray refreshes and invigorates!\0" +.string "The fall's spray refreshes and invigorates!\0" .align 2, 0 .global gUnknown_8114B04 @@ -5704,7 +5704,7 @@ gUnknown_8114B70: @ 8114B70 gUnknown_8114BE8: @ 8114BE8 .string "Broad leaves float on the surface of this\n" .string "pond. It is the perfect home for tadpole\n" -.string "Pokémon. Water-type Pokémon like it{COMMA} too.\0" +.string "Pokémon. Water-type Pokémon like it, too.\0" .align 2, 0 .global gUnknown_8114C68 @@ -5716,15 +5716,15 @@ gUnknown_8114C68: @ 8114C68 .global gUnknown_8114CC4 gUnknown_8114CC4: @ 8114CC4 -.string "Covered in dense undergrowth{COMMA} no light\n" +.string "Covered in dense undergrowth, no light\n" .string "penetrates this forest. In its permanent\n" .string "darkness lurk Bug-type Pokémon.\0" .align 2, 0 .global gUnknown_8114D38 gUnknown_8114D38: @ 8114D38 -.string "A boulder{COMMA} shining with different colors{COMMA}\n" -.string "lies in the center of this extraordinary{COMMA}\n" +.string "A boulder, shining with different colors,\n" +.string "lies in the center of this extraordinary,\n" .string "slowly transforming forest.\0" .align 2, 0 @@ -5753,20 +5753,20 @@ gUnknown_8114E50: @ 8114E50 gUnknown_8114ECC: @ 8114ECC .string "This densely overgrown grotto of trees\n" .string "attracts Pokémon that love such\n" -.string "a lush{COMMA} congested setting.\0" +.string "a lush, congested setting.\0" .align 2, 0 .global gUnknown_8114F30 gUnknown_8114F30: @ 8114F30 -.string "This thick forest{COMMA} dominated by a gigantic\n" -.string "tree{COMMA} is favored mostly by Flying-type\n" +.string "This thick forest, dominated by a gigantic\n" +.string "tree, is favored mostly by Flying-type\n" .string "Pokémon.\0" .align 2, 0 .global gUnknown_8114F90 gUnknown_8114F90: @ 8114F90 -.string "Mist-Rise Forest{COMMA} deep inside the Eastern\n" -.string "Forest{COMMA} looks ideal for many Bug-type\n" +.string "Mist-Rise Forest, deep inside the Eastern\n" +.string "Forest, looks ideal for many Bug-type\n" .string "Pokémon.\0" .align 2, 0 @@ -5795,7 +5795,7 @@ gUnknown_81150D0: @ 81150D0 gUnknown_8115130: @ 8115130 .string "A grassy plain under a vivid blue sky.\n" .string "Many Pokémon gather here. The large tree\n" -.string "in the center is the area{APOSTROPHE}s symbol.\0" +.string "in the center is the area's symbol.\0" .align 2, 0 .global gUnknown_81151A8 @@ -5822,14 +5822,14 @@ gUnknown_8115280: @ 8115280 .global gUnknown_81152F0 gUnknown_81152F0: @ 81152F0 .string "An area where the moon looks its most\n" -.string "beautiful{COMMA} especially when it is full.\n" +.string "beautiful, especially when it is full.\n" .string "The very sight brings serenity.\0" .align 2, 0 .global gUnknown_8115360 gUnknown_8115360: @ 8115360 -.string "This area{COMMA} deep among the craggy\n" -.string "mountains{COMMA} is a gathering spot for\n" +.string "This area, deep among the craggy\n" +.string "mountains, is a gathering spot for\n" .string "physically tough Pokémon.\0" .align 2, 0 @@ -5842,22 +5842,22 @@ gUnknown_81153C4: @ 81153C4 .global gUnknown_811543C gUnknown_811543C: @ 811543C -.string "A white{COMMA} sandy beach with a beautiful sea.\n" +.string "A white, sandy beach with a beautiful sea.\n" .string "The weather is temperate and perfect for\n" -.string "beachgoers{COMMA} especially near water{APOSTROPHE}s edge.\0" +.string "beachgoers, especially near water's edge.\0" .align 2, 0 .global gUnknown_81154C0 gUnknown_81154C0: @ 81154C0 -.string "It is said that a mythological Pokémon{COMMA}\n" -.string "spoken of through the ages{COMMA} lives inside\n" +.string "It is said that a mythological Pokémon,\n" +.string "spoken of through the ages, lives inside\n" .string "this unexplored cavern.\0" .align 2, 0 .global gUnknown_8115530 gUnknown_8115530: @ 8115530 -.string "Legend says this deep{COMMA} dark place{COMMA} where\n" -.string "a current flows{COMMA} is home to the\n" +.string "Legend says this deep, dark place, where\n" +.string "a current flows, is home to the\n" .string "guardian of the sea.\0" .align 2, 0 @@ -6092,7 +6092,7 @@ gUnknown_8115A80: @ 8115A80 .global ItemLimitAlsoText_8105A84 ItemLimitAlsoText_8105A84: @ 8105A84 -.string "Also{COMMA} only {ARG_VALUE_0} items may be brought\n" +.string "Also, only {ARG_VALUE_0} items may be brought\n" .string "into this dungeon.\n" .string "Please put away {ARG_VALUE_1} item(s).\0" .align 2,0 @@ -6103,7 +6103,7 @@ gUnknown_8115ADC: @ 8115ADC .global PartyMemberLimitText_8115AE0 PartyMemberLimitText_8115AE0: @ 8115AE0 -.string "Your client{COMMA} {ARG_POKEMON_0}{COMMA} could not join\n" +.string "Your client, {ARG_POKEMON_0}, could not join\n" .string "the team because there are too many\n" .string "members already.\0" .align 2,0 @@ -6114,7 +6114,7 @@ gUnknown_8115B3C: @ 8115B3C .global PartyMemberLimitText_8115B40 PartyMemberLimitText_8115B40: @ 8115B40 -.string "Also{COMMA} your client{COMMA} {ARG_POKEMON_0}{COMMA} could not\n" +.string "Also, your client, {ARG_POKEMON_0}, could not\n" .string "join the team because there are too many\n" .string "members already.\0" .align 2,0 @@ -6125,7 +6125,7 @@ gUnknown_8115BA4: @ 8115BA4 .global SizeLimitText_8115BA8 SizeLimitText_8115BA8: @ 8115BA8 -.string "Your client{COMMA} {ARG_POKEMON_0}{COMMA} could not join\n" +.string "Your client, {ARG_POKEMON_0}, could not join\n" .string "the team because there is no space.\0" .align 2,0 @@ -6135,7 +6135,7 @@ gUnknown_8115BF4: @ 8115BF4 .global SizeLimitText_8115BF8 SizeLimitText_8115BF8: @ 8115BF8 -.string "Also{COMMA} your client{COMMA} {ARG_POKEMON_0}{COMMA} could not\n" +.string "Also, your client, {ARG_POKEMON_0}, could not\n" .string "join the team because there is no space.\0" .align 2,0 @@ -6145,7 +6145,7 @@ gUnknown_8115C4C: @ 8115C4C .global MoveReqText_8115C50 MoveReqText_8115C50: @ 8115C50 -.string "To enter this dungeon{COMMA} the team must have\n" +.string "To enter this dungeon, the team must have\n" .string "a Pokémon with the move {ARG_MOVE_ITEM_0}\n" .string "or have the Hidden Machine {ARG_MOVE_ITEM_0}.\0" .align 2,0 @@ -6156,7 +6156,7 @@ gUnknown_8115CB8: @ 8115CB8 .global MoveReqText_8115CBC MoveReqText_8115CBC: @ 8115CBC -.string "Also{COMMA} the team must have a Pokémon with\n" +.string "Also, the team must have a Pokémon with\n" .string "the move {ARG_MOVE_ITEM_0} or have the\n" .string "Hidden Machine {ARG_MOVE_ITEM_0}.\0" .align 2,0 @@ -6167,7 +6167,7 @@ gUnknown_8115D14: @ 8115D14 .global WaterTypeNeeded_8115D18 WaterTypeNeeded_8115D18: @ 8115D18 -.string "To enter this dungeon{COMMA} the team must have\n" +.string "To enter this dungeon, the team must have\n" .string "a Water-type Pokémon.\0" .align 2,0 @@ -6177,7 +6177,7 @@ gUnknown_8115D5C: @ 8115D5C .global AlsoWaterTypeNeeded_8115D60 AlsoWaterTypeNeeded_8115D60: @ 8115D60 -.string "Also{COMMA} the team must have a Water-type\n" +.string "Also, the team must have a Water-type\n" .string "Pokémon.\0" .align 2,0 diff --git a/data/data_8115F5C.s b/data/data_8115F5C.s index a78b372ca..d7c85f283 100644 --- a/data/data_8115F5C.s +++ b/data/data_8115F5C.s @@ -285,7 +285,7 @@ gUnknown_8116318: @ 8116318 .global gUnknown_811633C gUnknown_811633C: @ 811633C -.string "{CENTER_ALIGN}{ARG_NICKNAME_0}{APOSTROPHE}s team received\n" +.string "{CENTER_ALIGN}{ARG_NICKNAME_0}'s team received\n" .string "{CENTER_ALIGN}the {ARG_MOVE_ITEM_0} cash reward.\0" .align 2, 0 @@ -297,7 +297,7 @@ gUnknown_811636C: @ 811636C .global gUnknown_8116390 gUnknown_8116390: @ 8116390 -.string "{CENTER_ALIGN}{ARG_NICKNAME_0}{APOSTROPHE}s team received\n" +.string "{CENTER_ALIGN}{ARG_NICKNAME_0}'s team received\n" .string "{CENTER_ALIGN}the reward {ARG_MOVE_ITEM_0}.\0" .align 2, 0 @@ -322,13 +322,13 @@ gUnknown_81163E4: @ 81163E4 .global gUnknown_81163F0 gUnknown_81163F0: @ 81163F0 -.string "{CENTER_ALIGN}However{COMMA} {ARG_NICKNAME_0}{APOSTROPHE}s team\n" +.string "{CENTER_ALIGN}However, {ARG_NICKNAME_0}'s team\n" .string "{CENTER_ALIGN}had too much money already...\0" .align 2,0 .global gUnknown_811642C gUnknown_811642C: @ 811642C -.string "{CENTER_ALIGN}However{COMMA} {ARG_NICKNAME_0}{APOSTROPHE}s team\n" +.string "{CENTER_ALIGN}However, {ARG_NICKNAME_0}'s team\n" .string "{CENTER_ALIGN}had too many items already...\0" .align 2,0 .string "pksdir0\0" diff --git a/data/data_code_2.s b/data/data_code_2.s index 049f72f74..80d7f7327 100644 --- a/data/data_code_2.s +++ b/data/data_code_2.s @@ -101,7 +101,7 @@ gLoadScreenBackgroundPaletteFileNames: @ 80B6A28 gSaveTextQuicksaving:: @ 80B6A34 .string "{CENTER_ALIGN}Quicksaving your adventure...\n" - .string "{CENTER_ALIGN}Please don{APOSTROPHE}t turn off the power.\0" + .string "{CENTER_ALIGN}Please don't turn off the power.\0" .align 2, 0 gSaveTextYourAdventureHasBeenSaved:: @ 80B6A7C @@ -110,7 +110,7 @@ gSaveTextYourAdventureHasBeenSaved:: @ 80B6A7C gSaveTextYourAdventureHasBeenSavedLong:: @ 80B6AA0 .string "{CENTER_ALIGN}Your adventure has been saved.\n" - .string "{CENTER_ALIGN}When you are in a dungeon{COMMA} quicksave\n" + .string "{CENTER_ALIGN}When you are in a dungeon, quicksave\n" .string "{CENTER_ALIGN}your progress before ending the game.\0" .align 2, 0 @@ -131,11 +131,11 @@ gSaveTextError:: @ 80B6B88 .align 2, 0 gSaveTextCantResume:: @ 80B6BDC - .string "{CENTER_ALIGN}Your data was not properly saved{COMMA}\n" + .string "{CENTER_ALIGN}Your data was not properly saved,\n" .string "{CENTER_ALIGN}so your game cannot be resumed\n" .string "{CENTER_ALIGN}from your last spot.{EXTRA_MSG}{CENTER_ALIGN}Your last outing is considered a defeat.\n" - .string "{CENTER_ALIGN}Before shutting down{COMMA} save in your\n" - .string "{CENTER_ALIGN}team base{COMMA} or quicksave in a dungeon.\0" + .string "{CENTER_ALIGN}Before shutting down, save in your\n" + .string "{CENTER_ALIGN}team base, or quicksave in a dungeon.\0" .align 2, 0 gSaveTextMayNotResume:: @ 80B6CB8 diff --git a/data/friend_area_dialogue.s b/data/friend_area_dialogue.s index 74f523b35..57cb38d23 100644 --- a/data/friend_area_dialogue.s +++ b/data/friend_area_dialogue.s @@ -24,8 +24,8 @@ gFriendAreaDialogue: @ 813237C .global FriendAreaSleepyEnergy FriendAreaSleepyEnergy: - .string "{CENTER_ALIGN}It appears to be a little sleepy{COMMA}\n" - .string "{CENTER_ALIGN}but it{APOSTROPHE}s still full of energy.\0" + .string "{CENTER_ALIGN}It appears to be a little sleepy,\n" + .string "{CENTER_ALIGN}but it's still full of energy.\0" .align 2,0 .global FriendAreaGummi @@ -41,13 +41,13 @@ gFriendAreaDialogue: @ 813237C .global FriendAreaPensive FriendAreaPensive: - .string "{CENTER_ALIGN}It looked pensive for a moment{COMMA}\n" - .string "{CENTER_ALIGN}but it{APOSTROPHE}s grinning widely again.\0" + .string "{CENTER_ALIGN}It looked pensive for a moment,\n" + .string "{CENTER_ALIGN}but it's grinning widely again.\0" .align 2,0 .global FriendAreaGrin FriendAreaGrin: - .string "{CENTER_ALIGN}It{APOSTROPHE}s looking this way with a grin.\0" + .string "{CENTER_ALIGN}It's looking this way with a grin.\0" .align 2,0 .global FriendAreaEager @@ -58,7 +58,7 @@ gFriendAreaDialogue: @ 813237C .global FriendAreaWorried FriendAreaWorried: - .string "{CENTER_ALIGN}It appeared to have been worried{COMMA}\n" + .string "{CENTER_ALIGN}It appeared to have been worried,\n" .string "{CENTER_ALIGN}but seems to have solved it.\0" .align 2,0 @@ -94,8 +94,8 @@ gFriendAreaDialogue: @ 813237C .global FriendAreaStraight FriendAreaStraight: - .string "{CENTER_ALIGN}It{APOSTROPHE}s trying to keep a straight face{COMMA}\n" - .string "{CENTER_ALIGN}but it can{APOSTROPHE}t stop laughing!\0" + .string "{CENTER_ALIGN}It's trying to keep a straight face,\n" + .string "{CENTER_ALIGN}but it can't stop laughing!\0" .align 2,0 .global FriendAreaGrinning diff --git a/data/friend_rescue.s b/data/friend_rescue.s index 4a30084d2..d5eba689b 100644 --- a/data/friend_rescue.s +++ b/data/friend_rescue.s @@ -44,7 +44,7 @@ gUnknown_80E2D60: @ 80E2D60 .global gUnknown_80E2D7C gUnknown_80E2D7C: @ 80E2D7C .string "Connect the {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}.\n" -.string "When your friend is ready{COMMA} begin\n" +.string "When your friend is ready, begin\n" .string "communication.\0" .align 2,0 @@ -52,7 +52,7 @@ gUnknown_80E2D7C: @ 80E2D7C gUnknown_80E2DD0: @ 80E2DD0 .string "{CENTER_ALIGN}Communicating...\n" .string "{CENTER_ALIGN}Please wait with the power on.\n" -.string "{CENTER_ALIGN}To cancel{COMMA} press {B_BUTTON}.\0" +.string "{CENTER_ALIGN}To cancel, press {B_BUTTON}.\0" .align 2,0 .global gUnknown_80E2E20 @@ -178,14 +178,14 @@ gUnknown_80E3288: @ 80E3288 .global gUnknown_80E32C4 gUnknown_80E32C4: @ 80E32C4 - .string "OK. You{APOSTROPHE}re good to go.\n" - .string "{COLOR_1 YELLOW_5}%s{END_COLOR_TEXT_1}{COMMA} I hope your sense of\n" + .string "OK. You're good to go.\n" + .string "{COLOR_1 YELLOW_5}%s{END_COLOR_TEXT_1}, I hope your sense of\n" .string "gratitude reaches your friend.\0" .align 2,0 .global gUnknown_80E331C gUnknown_80E331C: @ 80E331C - .string "The item chosen here can{APOSTROPHE}t be exchanged\n" + .string "The item chosen here can't be exchanged\n" .string "with anything else.\n" .string "Are you sure this item is OK?\0" .align 2,0 @@ -211,7 +211,7 @@ gUnknown_80E33D8: @ 80E33D8 .global gUnknown_80E3430 gUnknown_80E3430: @ 80E3430 .string "This mail already has an attached\n" -.string "{COLOR_1 LIGHT_BLUE}reward item{END_COLOR_TEXT_1}.{EXTRA_MSG}Once an item has been chosen{COMMA} it may not\n" +.string "{COLOR_1 LIGHT_BLUE}reward item{END_COLOR_TEXT_1}.{EXTRA_MSG}Once an item has been chosen, it may not\n" .string "be exchanged with another item.\0" .align 2,0 @@ -234,7 +234,7 @@ gUnknown_80E352C: @ 80E352C .global gUnknown_80E355C gUnknown_80E355C: @ 80E355C - .string "Mail can{APOSTROPHE}t be sent to a GBA Game Pak\n" + .string "Mail can't be sent to a GBA Game Pak\n" .string "with the game quicksaved in a dungeon.\0" .align 2,0 @@ -269,12 +269,12 @@ gUnknown_80E367C: @ 80E367C .global gUnknown_80E3690 gUnknown_80E3690: @ 80E3690 .string "If your team is defeated and in need\n" -.string "of rescuing{COMMA} send an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}\n" -.string "to a friend.{EXTRA_MSG}Once you send your mail{COMMA} you must wait\n" +.string "of rescuing, send an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}\n" +.string "to a friend.{EXTRA_MSG}Once you send your mail, you must wait\n" .string "for your friend to send you\n" -.string "an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}If the {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} arrives{COMMA} your\n" +.string "an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}If the {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} arrives, your\n" .string "team can be revived to resume exploring\n" -.string "the dungeon it was in.{EXTRA_MSG}When your team is revived{COMMA} don{APOSTROPHE}t forget\n" +.string "the dungeon it was in.{EXTRA_MSG}When your team is revived, don't forget\n" .string "to send a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} to the friend\n" .string "who came to your rescue.\0" .align 2,0 @@ -282,12 +282,12 @@ gUnknown_80E3690: @ 80E3690 .global gUnknown_80E3818 gUnknown_80E3818: @ 80E3818 .string "If your team is defeated in\n" -.string "a dungeon{COMMA} you may send a friend\n" -.string "an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1} for help.{EXTRA_MSG}However{COMMA} there are some places\n" +.string "a dungeon, you may send a friend\n" +.string "an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1} for help.{EXTRA_MSG}However, there are some places\n" .string "where it is impossible for you to\n" -.string "call for a rescue.{EXTRA_MSG}Also{COMMA} if you send an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}{COMMA}\n" +.string "call for a rescue.{EXTRA_MSG}Also, if you send an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1},\n" .string "you may not continue with your\n" -.string "adventure while awaiting rescue.{EXTRA_MSG}If you cannot wait to be rescued{COMMA}\n" +.string "adventure while awaiting rescue.{EXTRA_MSG}If you cannot wait to be rescued,\n" .string "you will have to give up and return\n" .string "to your rescue team base.\0" .align 2,0 @@ -295,19 +295,19 @@ gUnknown_80E3818: @ 80E3818 .global gUnknown_80E3998 gUnknown_80E3998: @ 80E3998 .string "If your friend successfully rescues\n" -.string "your team{COMMA} accept your friend{APOSTROPHE}s\n" -.string "{COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}Once the {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} is received{COMMA}\n" +.string "your team, accept your friend's\n" +.string "{COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}Once the {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} is received,\n" .string "you may revive your team and resume\n" -.string "exploring the dungeon you were in.{EXTRA_MSG}Using a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}{COMMA}\n" +.string "exploring the dungeon you were in.{EXTRA_MSG}Using a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1},\n" .string "your friend can also send you\n" -.string "a {COLOR_1 LIGHT_BLUE}helper Pokémon{END_COLOR_TEXT_1}.{EXTRA_MSG}However{COMMA} the {COLOR_1 LIGHT_BLUE}helper Pokémon{END_COLOR_TEXT_1} will not\n" +.string "a {COLOR_1 LIGHT_BLUE}helper Pokémon{END_COLOR_TEXT_1}.{EXTRA_MSG}However, the {COLOR_1 LIGHT_BLUE}helper Pokémon{END_COLOR_TEXT_1} will not\n" .string "be able to bring an item with it when\n" .string "joining your team.\0" .align 2,0 .global gUnknown_80E3B1C gUnknown_80E3B1C: @ 80E3B1C -.string "If your team has been rescued{COMMA} be sure\n" +.string "If your team has been rescued, be sure\n" .string "to send a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} to the friend\n" .string "that came to your help.{EXTRA_MSG}You may also attach a {COLOR_1 LIGHT_BLUE}reward item{END_COLOR_TEXT_1}\n" .string "from storage to your {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}\n" @@ -316,14 +316,14 @@ gUnknown_80E3B1C: @ 80E3B1C .global gUnknown_80E3BF8 gUnknown_80E3BF8: @ 80E3BF8 -.string "If your friend{APOSTROPHE}s team needs rescuing{COMMA}\n" +.string "If your friend's team needs rescuing,\n" .string "you must first receive an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}\n" -.string "from your friend.{EXTRA_MSG}When you get the mail{COMMA} you may embark\n" +.string "from your friend.{EXTRA_MSG}When you get the mail, you may embark\n" .string "on your rescue mission from the\n" -.string "{COLOR_1 LIGHT_BLUE}Pelipper Post Office{END_COLOR_TEXT_1}.{EXTRA_MSG}If you rescue your friend{APOSTROPHE}s defeated\n" -.string "team{COMMA} send an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} to your\n" -.string "friend.{EXTRA_MSG}If you rescue a friend{COMMA} you will be eligible\n" -.string "to receive a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}If you have quicksaved inside a dungeon{COMMA}\n" +.string "{COLOR_1 LIGHT_BLUE}Pelipper Post Office{END_COLOR_TEXT_1}.{EXTRA_MSG}If you rescue your friend's defeated\n" +.string "team, send an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} to your\n" +.string "friend.{EXTRA_MSG}If you rescue a friend, you will be eligible\n" +.string "to receive a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}If you have quicksaved inside a dungeon,\n" .string "you may not choose {COLOR_1 LIGHT_BLUE}Go Rescue{END_COLOR_TEXT_1}.\n" .string "Your last save must be out of a dungeon.\0" .align 2,0 @@ -331,35 +331,35 @@ gUnknown_80E3BF8: @ 80E3BF8 .global gUnknown_80E3DE4 gUnknown_80E3DE4: @ 80E3DE4 .string "You may receive an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1} from\n" -.string "a friend{APOSTROPHE}s team that lies defeated in\n" -.string "a dungeon.{EXTRA_MSG}If there is no space for new mail{COMMA} delete\n" +.string "a friend's team that lies defeated in\n" +.string "a dungeon.{EXTRA_MSG}If there is no space for new mail, delete\n" .string "old mail at the {COLOR_1 LIGHT_BLUE}Pelipper Post Office{END_COLOR_TEXT_1}.\0" .align 2,0 .global gUnknown_80E3E98 gUnknown_80E3E98: @ 80E3E98 -.string "If you successfully rescue your friend{APOSTROPHE}s\n" -.string "team{COMMA} send your friend an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}Using a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}{COMMA} you may\n" +.string "If you successfully rescue your friend's\n" +.string "team, send your friend an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}Using a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}, you may\n" .string "also send your friend a Pokémon from\n" -.string "your Friend Area as a helper.{EXTRA_MSG}Don{APOSTROPHE}t worry--sending a Pokémon as\n" +.string "your Friend Area as a helper.{EXTRA_MSG}Don't worry--sending a Pokémon as\n" .string "a helper will not make it disappear from\n" -.string "its Friend Area.{EXTRA_MSG}If there is no space for new mail{COMMA} delete\n" +.string "its Friend Area.{EXTRA_MSG}If there is no space for new mail, delete\n" .string "old mail at the {COLOR_1 LIGHT_BLUE}Pelipper Post Office{END_COLOR_TEXT_1}.\0" .align 2,0 .global gUnknown_80E4014 gUnknown_80E4014: @ 80E4014 -.string "When you receive an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}{COMMA}\n" +.string "When you receive an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1},\n" .string "you may embark on your rescue mission\n" .string "from the {COLOR_1 LIGHT_BLUE}Pelipper Post Office{END_COLOR_TEXT_1}.{EXTRA_MSG}Beware--if you do not have access to\n" -.string "the dungeon they are in{COMMA} you may not go\n" +.string "the dungeon they are in, you may not go\n" .string "on a rescue mission there.{EXTRA_MSG}Accept challenging rescues only\n" .string "if you are ready and qualified!\0" .align 2,0 .global gUnknown_80E4130 gUnknown_80E4130: @ 80E4130 -.string "If you send an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}{COMMA} you may\n" +.string "If you send an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}, you may\n" .string "receive a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} in return\n" .string "from your friend.{EXTRA_MSG}The {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} may also come\n" .string "with a {COLOR_1 LIGHT_BLUE}reward item{END_COLOR_TEXT_1} attached.\0" @@ -367,10 +367,10 @@ gUnknown_80E4130: @ 80E4130 .global gUnknown_80E41DC gUnknown_80E41DC: @ 80E41DC -.string "Using the {COLOR_1 LIGHT_BLUE}Dual Slot{END_COLOR_TEXT_1} function{COMMA}\n" +.string "Using the {COLOR_1 LIGHT_BLUE}Dual Slot{END_COLOR_TEXT_1} function,\n" .string "you may perform rescue operations with\n" .string "friends using the GBA Game Pak version.{EXTRA_MSG}Insert the DS Game Card and the GBA\n" -.string "Game Pak in your Nintendo DS system{COMMA}\n" +.string "Game Pak in your Nintendo DS system,\n" .string "then turn on the power.{EXTRA_MSG}Friend Rescue missions using\n" .string "the {COLOR_1 LIGHT_BLUE}Dual Slot{END_COLOR_TEXT_1} function will be\n" .string "available on the main menu. \0" @@ -378,12 +378,12 @@ gUnknown_80E41DC: @ 80E41DC .global gUnknown_80E4314 gUnknown_80E4314: @ 80E4314 -.string "Friends can rescue each other{APOSTROPHE}s defeated\n" -.string "teams using a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}{COMMA}\n" -.string "{COLOR_1 LIGHT_BLUE}passwords{END_COLOR_TEXT_1}{COMMA} and so on.{EXTRA_MSG}You may go on a rescue mission to save\n" -.string "your friend{APOSTROPHE}s team that has been defeated\n" -.string "in a dungeon.{EXTRA_MSG}Or{COMMA} you may call for help from a friend\n" -.string "to save your fallen team in a dungeon.{EXTRA_MSG}Using {COLOR_1 LIGHT_BLUE}passwords{END_COLOR_TEXT_1}{COMMA} you can even\n" +.string "Friends can rescue each other's defeated\n" +.string "teams using a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1},\n" +.string "{COLOR_1 LIGHT_BLUE}passwords{END_COLOR_TEXT_1}, and so on.{EXTRA_MSG}You may go on a rescue mission to save\n" +.string "your friend's team that has been defeated\n" +.string "in a dungeon.{EXTRA_MSG}Or, you may call for help from a friend\n" +.string "to save your fallen team in a dungeon.{EXTRA_MSG}Using {COLOR_1 LIGHT_BLUE}passwords{END_COLOR_TEXT_1}, you can even\n" .string "exchange help with faraway friends.\0" .align 2,0 @@ -416,7 +416,7 @@ gUnknown_80E4550: @ 80E4550 .global gUnknown_80E45B4 gUnknown_80E45B4: @ 80E45B4 .string "Your storage space is full.\n" -.string "Please make room{COMMA} then redo the\n" +.string "Please make room, then redo the\n" .string "process from the start.\0" .align 2,0 @@ -467,14 +467,14 @@ gUnknown_80E4788: @ 80E4788 gUnknown_80E47D8: @ 80E47D8 .string "There is no space for receiving new\n" .string "mail.\n" -.string "Please delete old mail{COMMA} then try again.\0" +.string "Please delete old mail, then try again.\0" .align 2,0 .global gUnknown_80E482C gUnknown_80E482C: @ 80E482C .string "There is no response from your friend.\n" .string "Please make sure the sender and receiver\n" -.string "are ready{COMMA} then redo this from the start.\0" +.string "are ready, then redo this from the start.\0" .align 2,0 .global gUnknown_80E48A8 diff --git a/data/item/item_descriptions.s b/data/item/item_descriptions.s index e7480bdec..8fbcb2497 100644 --- a/data/item/item_descriptions.s +++ b/data/item/item_descriptions.s @@ -12,31 +12,31 @@ ItemDescriptionRock: .global ItemDescriptionMobileScarf ItemDescriptionMobileScarf: -.string "A hold item that enables the Pokémon to{NEW_LINE}move and attack through walls and on{NEW_LINE}magma{COMMA} etc.{NEW_LINE}The Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} will go down faster{NEW_LINE}while traveling through walls{COMMA} however.\n\0" +.string "A hold item that enables the Pokémon to{NEW_LINE}move and attack through walls and on{NEW_LINE}magma, etc.{NEW_LINE}The Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} will go down faster{NEW_LINE}while traveling through walls, however.\n\0" .global ItemDescriptionHealRibbon ItemDescriptionHealRibbon: -.string "A hold item that speeds up the Pokémon{APOSTROPHE}s{NEW_LINE}natural {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} regeneration.{NEW_LINE}The Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} will go down faster{COMMA}{NEW_LINE}however.\n\0" +.string "A hold item that speeds up the Pokémon's{NEW_LINE}natural {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} regeneration.{NEW_LINE}The Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} will go down faster,{NEW_LINE}however.\n\0" .global ItemDescriptionTwistBand ItemDescriptionTwistBand: -.string "A hold item that prevents the Pokémon{APOSTROPHE}s{NEW_LINE}{COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2} from going{NEW_LINE}down.\n\0" +.string "A hold item that prevents the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2} from going{NEW_LINE}down.\n\0" .global ItemDescriptionScopeLens ItemDescriptionScopeLens: -.string "A hold item that boosts the Pokémon{APOSTROPHE}s{NEW_LINE}critical-hit rate for moves and attacks.\n\0" +.string "A hold item that boosts the Pokémon's{NEW_LINE}critical-hit rate for moves and attacks.\n\0" .global ItemDescriptionPatsyBand ItemDescriptionPatsyBand: -.string "A hold item that boosts the Pokémon{APOSTROPHE}s{NEW_LINE}chances of taking critical hits from{NEW_LINE}enemy moves and attacks.\n\0" +.string "A hold item that boosts the Pokémon's{NEW_LINE}chances of taking critical hits from{NEW_LINE}enemy moves and attacks.\n\0" .global ItemDescriptionNoStickCap ItemDescriptionNoStickCap: -.string "A hold item that prevents the Pokémon{APOSTROPHE}s{NEW_LINE}items from becoming sticky and gummed{NEW_LINE}up.\n\0" +.string "A hold item that prevents the Pokémon's{NEW_LINE}items from becoming sticky and gummed{NEW_LINE}up.\n\0" .global ItemDescriptionPierceBand ItemDescriptionPierceBand: -.string "A hold item that makes the Pokémon{APOSTROPHE}s{NEW_LINE}thrown items pierce other Pokémon{COMMA} walls{COMMA}{NEW_LINE}and obstacles without ever stopping.\n\0" +.string "A hold item that makes the Pokémon's{NEW_LINE}thrown items pierce other Pokémon, walls,{NEW_LINE}and obstacles without ever stopping.\n\0" .global ItemDescriptionJoyRibbon ItemDescriptionJoyRibbon: @@ -52,7 +52,7 @@ ItemDescriptionPersimBand: .global ItemDescriptionPowerBand ItemDescriptionPowerBand: -.string "A hold item that boosts the Pokémon{APOSTROPHE}s{NEW_LINE}{COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}.\n\0" +.string "A hold item that boosts the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionPechaScarf ItemDescriptionPechaScarf: @@ -60,7 +60,7 @@ ItemDescriptionPechaScarf: .global ItemDescriptionInsomniscope ItemDescriptionInsomniscope: -.string "A hold item that prevents the Pokémon{NEW_LINE}from going to {COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}{COMMA} {COLOR_2 CYAN}napping{END_COLOR_TEXT_2}{COMMA} having{NEW_LINE}a {COLOR_2 CYAN}nightmare{END_COLOR_TEXT_2}{COMMA} or {COLOR_2 CYAN}yawning{END_COLOR_TEXT_2}.\n\0" +.string "A hold item that prevents the Pokémon{NEW_LINE}from going to {COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}, {COLOR_2 CYAN}napping{END_COLOR_TEXT_2}, having{NEW_LINE}a {COLOR_2 CYAN}nightmare{END_COLOR_TEXT_2}, or {COLOR_2 CYAN}yawning{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionWarpScarf ItemDescriptionWarpScarf: @@ -68,7 +68,7 @@ ItemDescriptionWarpScarf: .global ItemDescriptionTightBelt ItemDescriptionTightBelt: -.string "A hold item that prevents the Pokémon{APOSTROPHE}s{NEW_LINE}{COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} from going down each turn.\n\0" +.string "A hold item that prevents the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} from going down each turn.\n\0" .global ItemDescriptionSneakScarf ItemDescriptionSneakScarf: @@ -80,11 +80,11 @@ ItemDescriptionGoldRibbon: .global ItemDescriptionGoggleSpecs ItemDescriptionGoggleSpecs: -.string "A hold item that improves the Pokémon{APOSTROPHE}s{NEW_LINE}vision.{NEW_LINE}It reveals hidden traps and {COLOR_2 CYAN}invisible{END_COLOR_TEXT_2}{NEW_LINE}Pokémon.\n\0" +.string "A hold item that improves the Pokémon's{NEW_LINE}vision.{NEW_LINE}It reveals hidden traps and {COLOR_2 CYAN}invisible{END_COLOR_TEXT_2}{NEW_LINE}Pokémon.\n\0" .global ItemDescriptionDietRibbon ItemDescriptionDietRibbon: -.string "A hold item that changes the Pokémon{APOSTROPHE}s{NEW_LINE}status to {COLOR_2 CYAN}Hungry Pal{END_COLOR_TEXT_2} and prevents{NEW_LINE}its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} from filling.{NEW_LINE}If the team leader is holding it{COMMA} its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}{NEW_LINE}will go down faster.\n\0" +.string "A hold item that changes the Pokémon's{NEW_LINE}status to {COLOR_2 CYAN}Hungry Pal{END_COLOR_TEXT_2} and prevents{NEW_LINE}its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} from filling.{NEW_LINE}If the team leader is holding it, its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}{NEW_LINE}will go down faster.\n\0" .global ItemDescriptionTrapScarf ItemDescriptionTrapScarf: @@ -96,27 +96,27 @@ ItemDescriptionRacketBand: .global ItemDescriptionDefScarf ItemDescriptionDefScarf: -.string "A hold item that boosts the Pokémon{APOSTROPHE}s{NEW_LINE}{COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}.\n\0" +.string "A hold item that boosts the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionStaminaBand ItemDescriptionStaminaBand: -.string "A hold item that slows how quickly the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} goes down.\n\0" +.string "A hold item that slows how quickly the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} goes down.\n\0" .global ItemDescriptionPlainRibbon ItemDescriptionPlainRibbon: -.string "An item that has no effect{COMMA} even if it is{NEW_LINE}held by a Pokémon.\n\0" +.string "An item that has no effect, even if it is{NEW_LINE}held by a Pokémon.\n\0" .global ItemDescriptionSpecialBand ItemDescriptionSpecialBand: -.string "A hold item that boosts the Pokémon{APOSTROPHE}s{NEW_LINE}{COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}.\n\0" +.string "A hold item that boosts the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionZincBand ItemDescriptionZincBand: -.string "A hold item that boosts the Pokémon{APOSTROPHE}s{NEW_LINE}{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}.\n\0" +.string "A hold item that boosts the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionDetectBand ItemDescriptionDetectBand: -.string "A hold item that boosts the Pokémon{APOSTROPHE}s{NEW_LINE}{COLOR_2 YELLOW}Evasion{END_COLOR_TEXT_2}.\n\0" +.string "A hold item that boosts the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Evasion{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionAlertSpecs ItemDescriptionAlertSpecs: @@ -132,7 +132,7 @@ ItemDescriptionBounceBand: .global ItemDescriptionCurveBand ItemDescriptionCurveBand: -.string "A hold item that makes thrown items{NEW_LINE}bounce off walls and fly sideways.{NEW_LINE}It has no effect if the Pokémon{APOSTROPHE}s status{NEW_LINE}is {COLOR_2 CYAN}Pierce{END_COLOR_TEXT_2} or if a rock is thrown.\n\0" +.string "A hold item that makes thrown items{NEW_LINE}bounce off walls and fly sideways.{NEW_LINE}It has no effect if the Pokémon's status{NEW_LINE}is {COLOR_2 CYAN}Pierce{END_COLOR_TEXT_2} or if a rock is thrown.\n\0" .global ItemDescriptionWhiffSpecs ItemDescriptionWhiffSpecs: @@ -148,11 +148,11 @@ ItemDescriptionLockonSpecs: .global ItemDescriptionMunchBelt ItemDescriptionMunchBelt: -.string "A hold item that slightly boosts the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}.{NEW_LINE}However{COMMA} it also makes the Pokémon{APOSTROPHE}s{NEW_LINE}{COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} go down faster.\n\0" +.string "A hold item that slightly boosts the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}.{NEW_LINE}However, it also makes the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} go down faster.\n\0" .global ItemDescriptionPassScarf ItemDescriptionPassScarf: -.string "A hold item that can enable the{NEW_LINE}Pokémon to pass off the effects of{NEW_LINE}attacks and certain kinds of hostile moves{NEW_LINE}to a Pokémon next to it. However{COMMA} it also{NEW_LINE}makes the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} go down.\n\0" +.string "A hold item that can enable the{NEW_LINE}Pokémon to pass off the effects of{NEW_LINE}attacks and certain kinds of hostile moves{NEW_LINE}to a Pokémon next to it. However, it also{NEW_LINE}makes the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} go down.\n\0" .global ItemDescriptionWeatherBand ItemDescriptionWeatherBand: @@ -160,19 +160,19 @@ ItemDescriptionWeatherBand: .global ItemDescriptionFriendBow ItemDescriptionFriendBow: -.string "When held by the team leader{COMMA} this hold{NEW_LINE}item makes it easier to recruit defeated{NEW_LINE}Pokémon into the rescue team.\n\0" +.string "When held by the team leader, this hold{NEW_LINE}item makes it easier to recruit defeated{NEW_LINE}Pokémon into the rescue team.\n\0" .global ItemDescriptionBeautyScarf ItemDescriptionBeautyScarf: -.string "A fashionable accessory for dressing up.{NEW_LINE}It enables a certain kind of Pokémon to{NEW_LINE}evolve.{NEW_LINE}Give it to the Pokémon when it{APOSTROPHE}s ready to{NEW_LINE}evolve.\n\0" +.string "A fashionable accessory for dressing up.{NEW_LINE}It enables a certain kind of Pokémon to{NEW_LINE}evolve.{NEW_LINE}Give it to the Pokémon when it's ready to{NEW_LINE}evolve.\n\0" .global ItemDescriptionSunRibbon ItemDescriptionSunRibbon: -.string "A ribbon infused with sunshine.{NEW_LINE}It enables a certain kind of Pokémon to{NEW_LINE}evolve.{NEW_LINE}Give it to the Pokémon when it{APOSTROPHE}s ready to{NEW_LINE}evolve.\n\0" +.string "A ribbon infused with sunshine.{NEW_LINE}It enables a certain kind of Pokémon to{NEW_LINE}evolve.{NEW_LINE}Give it to the Pokémon when it's ready to{NEW_LINE}evolve.\n\0" .global ItemDescriptionLunarRibbon ItemDescriptionLunarRibbon: -.string "A ribbon filled with moonlight.{NEW_LINE}It enables a certain kind of Pokémon to{NEW_LINE}evolve.{NEW_LINE}Give it to the Pokémon when it{APOSTROPHE}s ready to{NEW_LINE}evolve.\n\0" +.string "A ribbon filled with moonlight.{NEW_LINE}It enables a certain kind of Pokémon to{NEW_LINE}evolve.{NEW_LINE}Give it to the Pokémon when it's ready to{NEW_LINE}evolve.\n\0" .global ItemDescriptionRingD ItemDescriptionRingD: @@ -188,7 +188,7 @@ ItemDescriptionRingF: .global ItemDescriptionHealSeed ItemDescriptionHealSeed: -.string "A food item that heals all status problems.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that heals all status problems.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionWishStone ItemDescriptionWishStone: @@ -196,219 +196,219 @@ ItemDescriptionWishStone: .global ItemDescriptionOranBerry ItemDescriptionOranBerry: -.string "A food item that restores {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that restores {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionSitrusBerry ItemDescriptionSitrusBerry: -.string "A food item that restores {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.{NEW_LINE}If the Pokémon has full {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}{COMMA} eating this{NEW_LINE}item will slightly boost its {COLOR_2 YELLOW}Maximum HP{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that restores {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.{NEW_LINE}If the Pokémon has full {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}, eating this{NEW_LINE}item will slightly boost its {COLOR_2 YELLOW}Maximum HP{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionEyedropSeed ItemDescriptionEyedropSeed: -.string "A food item that changes the Pokémon{APOSTROPHE}s{NEW_LINE}status to {COLOR_2 CYAN}Eyedrops{END_COLOR_TEXT_2}.{NEW_LINE}It reveals hidden traps and {COLOR_2 CYAN}invisible{END_COLOR_TEXT_2}{NEW_LINE}Pokémon.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that changes the Pokémon's{NEW_LINE}status to {COLOR_2 CYAN}Eyedrops{END_COLOR_TEXT_2}.{NEW_LINE}It reveals hidden traps and {COLOR_2 CYAN}invisible{END_COLOR_TEXT_2}{NEW_LINE}Pokémon.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionReviverSeed ItemDescriptionReviverSeed: -.string "An item that could revive a fainted{NEW_LINE}Pokémon.{NEW_LINE}It becomes a Plain Seed after use.{NEW_LINE}If held{COMMA} it revives only the holder.{NEW_LINE}It can only be used by an {COLOR_2 YELLOW}Item Master{END_COLOR_TEXT_2}.\n\0" +.string "An item that could revive a fainted{NEW_LINE}Pokémon.{NEW_LINE}It becomes a Plain Seed after use.{NEW_LINE}If held, it revives only the holder.{NEW_LINE}It can only be used by an {COLOR_2 YELLOW}Item Master{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionBlinkerSeed ItemDescriptionBlinkerSeed: -.string "A food item that gives the Pokémon{NEW_LINE}{COLOR_2 CYAN}Blinker{END_COLOR_TEXT_2} status.{NEW_LINE}It makes other Pokémon{COMMA} unclaimed{NEW_LINE}items{COMMA} and the ground impossible to see.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that gives the Pokémon{NEW_LINE}{COLOR_2 CYAN}Blinker{END_COLOR_TEXT_2} status.{NEW_LINE}It makes other Pokémon, unclaimed{NEW_LINE}items, and the ground impossible to see.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionDoomSeed ItemDescriptionDoomSeed: -.string "A food item that lowers the Pokémon{APOSTROPHE}s{NEW_LINE}{COLOR_2 YELLOW}level{END_COLOR_TEXT_2} by one.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that lowers the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}level{END_COLOR_TEXT_2} by one.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionAllureSeed ItemDescriptionAllureSeed: -.string "A food item that gives the Pokémon{NEW_LINE}{COLOR_2 CYAN}Cross-Eyed{END_COLOR_TEXT_2} status.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that gives the Pokémon{NEW_LINE}{COLOR_2 CYAN}Cross-Eyed{END_COLOR_TEXT_2} status.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionLifeSeed ItemDescriptionLifeSeed: -.string "A food item that slightly boosts the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Maximum HP{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that slightly boosts the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Maximum HP{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionRawstBerry ItemDescriptionRawstBerry: -.string "A food item that heals the Pokémon{APOSTROPHE}s {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that heals the Pokémon's {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionHungerSeed ItemDescriptionHungerSeed: -.string "A food item that slightly lowers the{NEW_LINE}Pokémon{APOSTROPHE}s maximum {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} size.{NEW_LINE}If used by a Pokémon other than the{NEW_LINE}leader{COMMA} its status changes to {COLOR_2 CYAN}Hungry Pal{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that slightly lowers the{NEW_LINE}Pokémon's maximum {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} size.{NEW_LINE}If used by a Pokémon other than the{NEW_LINE}leader, its status changes to {COLOR_2 CYAN}Hungry Pal{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionQuickSeed ItemDescriptionQuickSeed: -.string "A food item that boosts the Pokémon{APOSTROPHE}s{NEW_LINE}{COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} by one level.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that boosts the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} by one level.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionPechaBerry ItemDescriptionPechaBerry: -.string "A food item that heals the Pokémon when{NEW_LINE}{COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2} or {COLOR_2 CYAN}badly poisoned{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that heals the Pokémon when{NEW_LINE}{COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2} or {COLOR_2 CYAN}badly poisoned{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionCheriBerry ItemDescriptionCheriBerry: -.string "A food item that heals the Pokémon from{NEW_LINE}{COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that heals the Pokémon from{NEW_LINE}{COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionTotterSeed ItemDescriptionTotterSeed: -.string "A food item that makes the Pokémon{NEW_LINE}{COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.{NEW_LINE}The Pokémon{APOSTROPHE}s movements turn erratic{COMMA}{NEW_LINE}and its attacks and moves may hit friends.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that makes the Pokémon{NEW_LINE}{COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.{NEW_LINE}The Pokémon's movements turn erratic,{NEW_LINE}and its attacks and moves may hit friends.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionSleepSeed ItemDescriptionSleepSeed: -.string "A food item that makes the user{NEW_LINE}{COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}.{NEW_LINE}The Pokémon will be unable to do anything.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that makes the user{NEW_LINE}{COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}.{NEW_LINE}The Pokémon will be unable to do anything.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionPlainSeed ItemDescriptionPlainSeed: -.string "A food item that has no special effect.{NEW_LINE}It does slightly fill the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that has no special effect.{NEW_LINE}It does slightly fill the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionWarpSeed ItemDescriptionWarpSeed: -.string "A food item that warps the Pokémon to{NEW_LINE}a different place on the same floor.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that warps the Pokémon to{NEW_LINE}a different place on the same floor.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionBlastSeed ItemDescriptionBlastSeed: -.string "A food item that makes the Pokémon{NEW_LINE}breathe highly damaging fire.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that makes the Pokémon{NEW_LINE}breathe highly damaging fire.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionGinseng ItemDescriptionGinseng: -.string "A drink that boosts the power of the{NEW_LINE}Pokémon{APOSTROPHE}s set move.{NEW_LINE}It may not have any effect on certain{NEW_LINE}kinds of moves.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A drink that boosts the power of the{NEW_LINE}Pokémon's set move.{NEW_LINE}It may not have any effect on certain{NEW_LINE}kinds of moves.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionJoySeed ItemDescriptionJoySeed: -.string "A food item that raises the Pokémon{APOSTROPHE}s{NEW_LINE}{COLOR_2 YELLOW}level{END_COLOR_TEXT_2} by one.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that raises the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}level{END_COLOR_TEXT_2} by one.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionChestoBerry ItemDescriptionChestoBerry: -.string "A food item that causes the Pokémon to{NEW_LINE}become {COLOR_2 CYAN}sleepless{END_COLOR_TEXT_2}.{NEW_LINE}The Pokémon will not be able to go to{NEW_LINE}{COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that causes the Pokémon to{NEW_LINE}become {COLOR_2 CYAN}sleepless{END_COLOR_TEXT_2}.{NEW_LINE}The Pokémon will not be able to go to{NEW_LINE}{COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionStunSeed ItemDescriptionStunSeed: -.string "A food item that causes the Pokémon to{NEW_LINE}become {COLOR_2 CYAN}petrified{END_COLOR_TEXT_2}.{NEW_LINE}The Pokémon will be unable to do anything{NEW_LINE}until it takes damage.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that causes the Pokémon to{NEW_LINE}become {COLOR_2 CYAN}petrified{END_COLOR_TEXT_2}.{NEW_LINE}The Pokémon will be unable to do anything{NEW_LINE}until it takes damage.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionMaxElixir ItemDescriptionMaxElixir: -.string "A drink that completely restores the{NEW_LINE}{COLOR_2 YELLOW}PP{END_COLOR_TEXT_2} of all the Pokémon{APOSTROPHE}s moves.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A drink that completely restores the{NEW_LINE}{COLOR_2 YELLOW}PP{END_COLOR_TEXT_2} of all the Pokémon's moves.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionProtein ItemDescriptionProtein: -.string "A drink that boosts the Pokémon{APOSTROPHE}s{NEW_LINE}{COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A drink that boosts the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionCalcium ItemDescriptionCalcium: -.string "A drink that boosts the Pokémon{APOSTROPHE}s{NEW_LINE}{COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A drink that boosts the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionIron ItemDescriptionIron: -.string "A drink that boosts the Pokémon{APOSTROPHE}s{NEW_LINE}{COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A drink that boosts the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionZinc ItemDescriptionZinc: -.string "A drink that boosts the Pokémon{APOSTROPHE}s{NEW_LINE}{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A drink that boosts the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionApple ItemDescriptionApple: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}Eating this when its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} is full will{NEW_LINE}slightly enlarge its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} size.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}Eating this when its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} is full will{NEW_LINE}slightly enlarge its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} size.\n\0" .global ItemDescriptionBigApple ItemDescriptionBigApple: -.string "A food item that amply fills the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}Eating this when its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} is full will{NEW_LINE}slightly enlarge its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} size.\n\0" +.string "A food item that amply fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}Eating this when its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} is full will{NEW_LINE}slightly enlarge its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} size.\n\0" .global ItemDescriptionGrimyFood ItemDescriptionGrimyFood: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}However{COMMA} it will cause a variety of{NEW_LINE}status problems.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}However, it will cause a variety of{NEW_LINE}status problems.\n\0" .global ItemDescriptionHugeApple ItemDescriptionHugeApple: -.string "A food item that completely fills the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly enlarges the {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} size.\n\0" +.string "A food item that completely fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly enlarges the {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} size.\n\0" .global ItemDescriptionWhiteGummi ItemDescriptionWhiteGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member{COMMA}{NEW_LINE}it raises the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Normal-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Normal-type Pokémon like it the best.\n\0" .global ItemDescriptionRedGummi ItemDescriptionRedGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member{COMMA}{NEW_LINE}it raises the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Fire-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Fire-type Pokémon like it the best.\n\0" .global ItemDescriptionBlueGummi ItemDescriptionBlueGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member{COMMA}{NEW_LINE}it raises the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Water-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Water-type Pokémon like it the best.\n\0" .global ItemDescriptionGrassGummi ItemDescriptionGrassGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member{COMMA}{NEW_LINE}it raises the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Grass-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Grass-type Pokémon like it the best.\n\0" .global ItemDescriptionYellowGummi ItemDescriptionYellowGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member{COMMA}{NEW_LINE}it raises the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Electric-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Electric-type Pokémon like it the best.\n\0" .global ItemDescriptionClearGummi ItemDescriptionClearGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member{COMMA}{NEW_LINE}it raises the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Ice-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Ice-type Pokémon like it the best.\n\0" .global ItemDescriptionOrangeGummi ItemDescriptionOrangeGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member{COMMA}{NEW_LINE}it raises the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Fighting-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Fighting-type Pokémon like it the best.\n\0" .global ItemDescriptionPinkGummi ItemDescriptionPinkGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member{COMMA}{NEW_LINE}it raises the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Poison-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Poison-type Pokémon like it the best.\n\0" .global ItemDescriptionBrownGummi ItemDescriptionBrownGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member{COMMA}{NEW_LINE}it raises the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Ground-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Ground-type Pokémon like it the best.\n\0" .global ItemDescriptionSkyGummi ItemDescriptionSkyGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member{COMMA}{NEW_LINE}it raises the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Flying-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Flying-type Pokémon like it the best.\n\0" .global ItemDescriptionGoldGummi ItemDescriptionGoldGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member{COMMA}{NEW_LINE}it raises the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Psychic-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Psychic-type Pokémon like it the best.\n\0" .global ItemDescriptionGreenGummi ItemDescriptionGreenGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member{COMMA}{NEW_LINE}it raises the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Bug-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Bug-type Pokémon like it the best.\n\0" .global ItemDescriptionGrayGummi ItemDescriptionGrayGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member{COMMA}{NEW_LINE}it raises the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Rock-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Rock-type Pokémon like it the best.\n\0" .global ItemDescriptionPurpleGummi ItemDescriptionPurpleGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member{COMMA}{NEW_LINE}it raises the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Ghost-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Ghost-type Pokémon like it the best.\n\0" .global ItemDescriptionRoyalGummi ItemDescriptionRoyalGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member{COMMA}{NEW_LINE}it raises the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Dragon-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Dragon-type Pokémon like it the best.\n\0" .global ItemDescriptionBlackGummi ItemDescriptionBlackGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member{COMMA}{NEW_LINE}it raises the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Dark-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Dark-type Pokémon like it the best.\n\0" .global ItemDescriptionSilverGummi ItemDescriptionSilverGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member{COMMA}{NEW_LINE}it raises the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Steel-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Steel-type Pokémon like it the best.\n\0" .global ItemDescriptionBanana ItemDescriptionBanana: -.string "A rare food item that somewhat fills the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}Eating this when its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} is full will{NEW_LINE}slightly enlarge its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} size.{NEW_LINE}It is occasionally found inside walls.\n\0" +.string "A rare food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}Eating this when its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} is full will{NEW_LINE}slightly enlarge its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} size.{NEW_LINE}It is occasionally found inside walls.\n\0" .global ItemDescriptionChestnut ItemDescriptionChestnut: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}Mankey love to eat this.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}Mankey love to eat this.\n\0" .global ItemDescriptionPoke ItemDescriptionPoke: -.string "Money used at shops{COMMA} etc.\n\0" +.string "Money used at shops, etc.\n\0" .global ItemDescriptionEvolutionItemSingle ItemDescriptionEvolutionItemSingle: -.string "It enables a certain kind of Pokémon to{NEW_LINE}evolve.{NEW_LINE}Give it to the Pokémon when it{APOSTROPHE}s ready to{NEW_LINE}evolve.\n\0" +.string "It enables a certain kind of Pokémon to{NEW_LINE}evolve.{NEW_LINE}Give it to the Pokémon when it's ready to{NEW_LINE}evolve.\n\0" .global ItemDescriptionEvolutionItemMulti ItemDescriptionEvolutionItemMulti: -.string "It enables certain kinds of Pokémon to{NEW_LINE}evolve.{NEW_LINE}Give it to the Pokémon when it{APOSTROPHE}s ready to{NEW_LINE}evolve.\n\0" +.string "It enables certain kinds of Pokémon to{NEW_LINE}evolve.{NEW_LINE}Give it to the Pokémon when it's ready to{NEW_LINE}evolve.\n\0" .global ItemDescriptionIcePart ItemDescriptionIcePart: -.string "An item that was guarded by {COLOR_1 YELLOW_5}Regice{END_COLOR_TEXT_1}.{NEW_LINE}It may be related to this saying about the{NEW_LINE}{COLOR_1 YELLOW_4}Buried Relic{END_COLOR_TEXT_1}: {QUOTE_START}Three parts guarded by{NEW_LINE}three servants. When they are one again{COMMA}{NEW_LINE}a mirage shall appear to the bearer.{QUOTE_END}\n\0" +.string "An item that was guarded by {COLOR_1 YELLOW_5}Regice{END_COLOR_TEXT_1}.{NEW_LINE}It may be related to this saying about the{NEW_LINE}{COLOR_1 YELLOW_4}Buried Relic{END_COLOR_TEXT_1}: “Three parts guarded by{NEW_LINE}three servants. When they are one again,{NEW_LINE}a mirage shall appear to the bearer.”\n\0" .global ItemDescriptionSteelPart ItemDescriptionSteelPart: @@ -416,7 +416,7 @@ ItemDescriptionSteelPart: .global ItemDescriptionRockPart ItemDescriptionRockPart: -.string "A mysterious item that was jealously{NEW_LINE}guarded by {COLOR_1 YELLOW_5}Regirock{END_COLOR_TEXT_1}.{NEW_LINE}How it is to be used remains unknown{COMMA}{NEW_LINE}however.\n\0" +.string "A mysterious item that was jealously{NEW_LINE}guarded by {COLOR_1 YELLOW_5}Regirock{END_COLOR_TEXT_1}.{NEW_LINE}How it is to be used remains unknown,{NEW_LINE}however.\n\0" .global ItemDescriptionMusicBox ItemDescriptionMusicBox: @@ -432,7 +432,7 @@ ItemDescriptionUsedTM: .global ItemDescriptionFocusPunch ItemDescriptionFocusPunch: -.string "Teaches the move {COLOR_2 GREEN}Focus Punch{END_COLOR_TEXT_2}.{NEW_LINE}The user{APOSTROPHE}s status changes to {COLOR_2 CYAN}Focus Punch{END_COLOR_TEXT_2}{COMMA}{NEW_LINE}and it attacks on the next turn.{NEW_LINE}It is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Focus Punch{END_COLOR_TEXT_2}.{NEW_LINE}The user's status changes to {COLOR_2 CYAN}Focus Punch{END_COLOR_TEXT_2},{NEW_LINE}and it attacks on the next turn.{NEW_LINE}It is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\n\0" .global ItemDescriptionDragonClaw ItemDescriptionDragonClaw: @@ -444,23 +444,23 @@ ItemDescriptionWaterPulse: .global ItemDescriptionCalmMind ItemDescriptionCalmMind: -.string "Teaches the move {COLOR_2 GREEN}Calm Mind{END_COLOR_TEXT_2}.{NEW_LINE}It raises the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}{NEW_LINE}and {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by one level.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Calm Mind{END_COLOR_TEXT_2}.{NEW_LINE}It raises the Pokémon's {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}{NEW_LINE}and {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by one level.\n\0" .global ItemDescriptionRoar ItemDescriptionRoar: -.string "Teaches the move {COLOR_2 GREEN}Roar{END_COLOR_TEXT_2}.{NEW_LINE}It sends the target flying.{NEW_LINE}If the foe hits a wall or another{NEW_LINE}Pokémon{COMMA} it sustains damage.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Roar{END_COLOR_TEXT_2}.{NEW_LINE}It sends the target flying.{NEW_LINE}If the foe hits a wall or another{NEW_LINE}Pokémon, it sustains damage.\n\0" .global ItemDescriptionToxic ItemDescriptionToxic: -.string "Teaches the move {COLOR_2 GREEN}Toxic{END_COLOR_TEXT_2}.{NEW_LINE}It {COLOR_2 CYAN}badly poisons{END_COLOR_TEXT_2} the foe Pokémon.{NEW_LINE}If a Pokémon is {COLOR_2 CYAN}badly poisoned{END_COLOR_TEXT_2}{COMMA} it{NEW_LINE}sustains damage over several turns.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Toxic{END_COLOR_TEXT_2}.{NEW_LINE}It {COLOR_2 CYAN}badly poisons{END_COLOR_TEXT_2} the foe Pokémon.{NEW_LINE}If a Pokémon is {COLOR_2 CYAN}badly poisoned{END_COLOR_TEXT_2}, it{NEW_LINE}sustains damage over several turns.\n\0" .global ItemDescriptionHail ItemDescriptionHail: -.string "An item that changes the dungeon floor{APOSTROPHE}s{NEW_LINE}weather to {COLOR_2 CYAN}Hail{END_COLOR_TEXT_2} for several turns.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: All Pokémon on floor\n\0" +.string "An item that changes the dungeon floor's{NEW_LINE}weather to {COLOR_2 CYAN}Hail{END_COLOR_TEXT_2} for several turns.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: All Pokémon on floor\n\0" .global ItemDescriptionBulkUp ItemDescriptionBulkUp: -.string "Teaches the move {COLOR_2 GREEN}Bulk Up{END_COLOR_TEXT_2}.{NEW_LINE}It boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}{NEW_LINE}by one level.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Bulk Up{END_COLOR_TEXT_2}.{NEW_LINE}It boosts the user's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}{NEW_LINE}by one level.\n\0" .global ItemDescriptionBulletSeed ItemDescriptionBulletSeed: @@ -472,11 +472,11 @@ ItemDescriptionHiddenPower: .global ItemDescriptionSunnyDay ItemDescriptionSunnyDay: -.string "An item that changes the dungeon floor{APOSTROPHE}s{NEW_LINE}weather to {COLOR_2 CYAN}Sunny{END_COLOR_TEXT_2} for several turns.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: All Pokémon on floor\n\0" +.string "An item that changes the dungeon floor's{NEW_LINE}weather to {COLOR_2 CYAN}Sunny{END_COLOR_TEXT_2} for several turns.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: All Pokémon on floor\n\0" .global ItemDescriptionTaunt ItemDescriptionTaunt: -.string "Teaches the move {COLOR_2 GREEN}Taunt{END_COLOR_TEXT_2}.{NEW_LINE}The targeted Pokémon{APOSTROPHE}s status changes{NEW_LINE}to {COLOR_2 CYAN}Taunted{END_COLOR_TEXT_2}.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Taunt{END_COLOR_TEXT_2}.{NEW_LINE}The targeted Pokémon's status changes{NEW_LINE}to {COLOR_2 CYAN}Taunted{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionIceBeam ItemDescriptionIceBeam: @@ -488,23 +488,23 @@ ItemDescriptionBlizzard: .global ItemDescriptionHyperBeam ItemDescriptionHyperBeam: -.string "Teaches the move {COLOR_2 GREEN}Hyper Beam{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target even at a{NEW_LINE}distance. However{COMMA} it also makes the user{NEW_LINE}{COLOR_2 CYAN}paused{END_COLOR_TEXT_2} and incapable of action.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Hyper Beam{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target even at a{NEW_LINE}distance. However, it also makes the user{NEW_LINE}{COLOR_2 CYAN}paused{END_COLOR_TEXT_2} and incapable of action.\n\0" .global ItemDescriptionLightScreen ItemDescriptionLightScreen: -.string "Teaches the move {COLOR_2 GREEN}Light Screen{END_COLOR_TEXT_2}.{NEW_LINE}It makes the user{APOSTROPHE}s status {COLOR_2 CYAN}Light Screen{END_COLOR_TEXT_2}.{NEW_LINE}It halves the damage from{NEW_LINE}{COLOR_2 CYAN}Special Attack moves{END_COLOR_TEXT_2}.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Light Screen{END_COLOR_TEXT_2}.{NEW_LINE}It makes the user's status {COLOR_2 CYAN}Light Screen{END_COLOR_TEXT_2}.{NEW_LINE}It halves the damage from{NEW_LINE}{COLOR_2 CYAN}Special Attack moves{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionProtect ItemDescriptionProtect: -.string "Teaches the move {COLOR_2 GREEN}Protect{END_COLOR_TEXT_2}.{NEW_LINE}It changes the Pokémon{APOSTROPHE}s status to{NEW_LINE}{COLOR_2 CYAN}Protect{END_COLOR_TEXT_2} and prevents damage from{NEW_LINE}enemy attacks and moves.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Protect{END_COLOR_TEXT_2}.{NEW_LINE}It changes the Pokémon's status to{NEW_LINE}{COLOR_2 CYAN}Protect{END_COLOR_TEXT_2} and prevents damage from{NEW_LINE}enemy attacks and moves.\n\0" .global ItemDescriptionRainDance ItemDescriptionRainDance: -.string "An item that changes the dungeon floor{APOSTROPHE}s{NEW_LINE}weather to {COLOR_2 CYAN}Rain{END_COLOR_TEXT_2} for several turns.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: All Pokémon on floor\n\0" +.string "An item that changes the dungeon floor's{NEW_LINE}weather to {COLOR_2 CYAN}Rain{END_COLOR_TEXT_2} for several turns.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: All Pokémon on floor\n\0" .global ItemDescriptionGigaDrain ItemDescriptionGigaDrain: -.string "Teaches the move {COLOR_2 GREEN}Giga Drain{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It also restores the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} based{NEW_LINE}on the damage it inflicted.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Giga Drain{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It also restores the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} based{NEW_LINE}on the damage it inflicted.\n\0" .global ItemDescriptionSafeguard ItemDescriptionSafeguard: @@ -512,19 +512,19 @@ ItemDescriptionSafeguard: .global ItemDescriptionFrustration ItemDescriptionFrustration: -.string "Teaches the move {COLOR_2 GREEN}Frustration{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target and{NEW_LINE}inflicts greater damage if the user{APOSTROPHE}s{NEW_LINE}{COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2} is low.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Frustration{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target and{NEW_LINE}inflicts greater damage if the user's{NEW_LINE}{COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2} is low.\n\0" .global ItemDescriptionSolarBeam ItemDescriptionSolarBeam: -.string "Teaches the move {COLOR_2 GREEN}Solarbeam{END_COLOR_TEXT_2}.{NEW_LINE}The user{APOSTROPHE}s status becomes {COLOR_2 CYAN}Solarbeam{END_COLOR_TEXT_2}{COMMA}{NEW_LINE}and it attacks on the next turn.{NEW_LINE}It is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Solarbeam{END_COLOR_TEXT_2}.{NEW_LINE}The user's status becomes {COLOR_2 CYAN}Solarbeam{END_COLOR_TEXT_2},{NEW_LINE}and it attacks on the next turn.{NEW_LINE}It is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\n\0" .global ItemDescriptionIronTail ItemDescriptionIronTail: -.string "Teaches the move {COLOR_2 GREEN}Iron Tail{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It may also lower the target{APOSTROPHE}s {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}{NEW_LINE}by one level.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Iron Tail{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It may also lower the target's {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}{NEW_LINE}by one level.\n\0" .global ItemDescriptionThunderbolt ItemDescriptionThunderbolt: -.string "Teaches the move {COLOR_2 GREEN}Thunderbolt{END_COLOR_TEXT_2}.{NEW_LINE}It damages all foes around the user.{NEW_LINE}It may also cause {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}{COMMA} which{NEW_LINE}prevents attacks and moves.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Thunderbolt{END_COLOR_TEXT_2}.{NEW_LINE}It damages all foes around the user.{NEW_LINE}It may also cause {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}, which{NEW_LINE}prevents attacks and moves.\n\0" .global ItemDescriptionThunder ItemDescriptionThunder: @@ -536,31 +536,31 @@ ItemDescriptionEarthquake: .global ItemDescriptionReturn ItemDescriptionReturn: -.string "Teaches the move {COLOR_2 GREEN}Return{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}Its power rises with the user{APOSTROPHE}s {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Return{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}Its power rises with the user's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionDig ItemDescriptionDig: -.string "Teaches the move {COLOR_2 GREEN}Dig{END_COLOR_TEXT_2}.{NEW_LINE}The user{APOSTROPHE}s status becomes {COLOR_2 CYAN}Digging{END_COLOR_TEXT_2}{COMMA}{NEW_LINE}and it attacks on the next turn.{NEW_LINE}It is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Dig{END_COLOR_TEXT_2}.{NEW_LINE}The user's status becomes {COLOR_2 CYAN}Digging{END_COLOR_TEXT_2},{NEW_LINE}and it attacks on the next turn.{NEW_LINE}It is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\n\0" .global ItemDescriptionPsychic ItemDescriptionPsychic: -.string "Teaches the move {COLOR_2 GREEN}Psychic{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It may also lower the target{APOSTROPHE}s {COLOR_2 YELLOW}Special{NEW_LINE}Defense{END_COLOR_TEXT_2} by one level.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Psychic{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It may also lower the target's {COLOR_2 YELLOW}Special{NEW_LINE}Defense{END_COLOR_TEXT_2} by one level.\n\0" .global ItemDescriptionShadowBall ItemDescriptionShadowBall: -.string "Teaches the move {COLOR_2 GREEN}Shadow Ball{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target even at a{NEW_LINE}distance. It may also lower the target{APOSTROPHE}s{NEW_LINE}{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by one level.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Shadow Ball{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target even at a{NEW_LINE}distance. It may also lower the target's{NEW_LINE}{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by one level.\n\0" .global ItemDescriptionBrickBreak ItemDescriptionBrickBreak: -.string "Teaches the move {COLOR_2 GREEN}Brick Break{END_COLOR_TEXT_2}.{NEW_LINE}It shatters the target{APOSTROPHE}s {COLOR_2 CYAN}Reflect{END_COLOR_TEXT_2}{NEW_LINE}or {COLOR_2 CYAN}Light Screen{END_COLOR_TEXT_2} to inflict damage.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Brick Break{END_COLOR_TEXT_2}.{NEW_LINE}It shatters the target's {COLOR_2 CYAN}Reflect{END_COLOR_TEXT_2}{NEW_LINE}or {COLOR_2 CYAN}Light Screen{END_COLOR_TEXT_2} to inflict damage.\n\0" .global ItemDescriptionDoubleTeam ItemDescriptionDoubleTeam: -.string "An item that raises the user{APOSTROPHE}s {COLOR_2 YELLOW}Evasion{END_COLOR_TEXT_2}{NEW_LINE}by one level.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: User\n\0" +.string "An item that raises the user's {COLOR_2 YELLOW}Evasion{END_COLOR_TEXT_2}{NEW_LINE}by one level.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: User\n\0" .global ItemDescriptionReflect ItemDescriptionReflect: -.string "Teaches the move {COLOR_2 GREEN}Reflect{END_COLOR_TEXT_2}.{NEW_LINE}It makes the user{APOSTROPHE}s status {COLOR_2 CYAN}Reflect{END_COLOR_TEXT_2}{NEW_LINE}and halves the damage from all{NEW_LINE}{COLOR_2 CYAN}Physical Attack moves{END_COLOR_TEXT_2} and{NEW_LINE}regular attacks.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Reflect{END_COLOR_TEXT_2}.{NEW_LINE}It makes the user's status {COLOR_2 CYAN}Reflect{END_COLOR_TEXT_2}{NEW_LINE}and halves the damage from all{NEW_LINE}{COLOR_2 CYAN}Physical Attack moves{END_COLOR_TEXT_2} and{NEW_LINE}regular attacks.\n\0" .global ItemDescriptionShockWave ItemDescriptionShockWave: @@ -572,11 +572,11 @@ ItemDescriptionFlamethrower: .global ItemDescriptionSludgeBomb ItemDescriptionSludgeBomb: -.string "Teaches the move {COLOR_2 GREEN}Sludge Bomb{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target even at a{NEW_LINE}distance. It may also leave the target{NEW_LINE}{COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}{COMMA} damaging it over several turns.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Sludge Bomb{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target even at a{NEW_LINE}distance. It may also leave the target{NEW_LINE}{COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}, damaging it over several turns.\n\0" .global ItemDescriptionSandstorm ItemDescriptionSandstorm: -.string "An item that changes the dungeon floor{APOSTROPHE}s{NEW_LINE}weather to {COLOR_2 CYAN}Sandstorm{END_COLOR_TEXT_2} for several turns.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: All Pokémon on floor\n\0" +.string "An item that changes the dungeon floor's{NEW_LINE}weather to {COLOR_2 CYAN}Sandstorm{END_COLOR_TEXT_2} for several turns.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: All Pokémon on floor\n\0" .global ItemDescriptionFireBlast ItemDescriptionFireBlast: @@ -584,7 +584,7 @@ ItemDescriptionFireBlast: .global ItemDescriptionRockTomb ItemDescriptionRockTomb: -.string "It inflicts damage on the target.{NEW_LINE}It also lowers the target{APOSTROPHE}s {COLOR_2 YELLOW}Movement{NEW_LINE}Speed{END_COLOR_TEXT_2} by one level.{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" +.string "It inflicts damage on the target.{NEW_LINE}It also lowers the target's {COLOR_2 YELLOW}Movement{NEW_LINE}Speed{END_COLOR_TEXT_2} by one level.{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" .global ItemDescriptionAerialAce ItemDescriptionAerialAce: @@ -596,7 +596,7 @@ ItemDescriptionTorment: .global ItemDescriptionFacade ItemDescriptionFacade: -.string "Teaches the move {COLOR_2 GREEN}Facade{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}If the user is {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}{COMMA} {COLOR_2 CYAN}badly poisoned{END_COLOR_TEXT_2}{COMMA}{NEW_LINE}or has a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}{COMMA} its power is doubled.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Facade{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}If the user is {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}, {COLOR_2 CYAN}badly poisoned{END_COLOR_TEXT_2},{NEW_LINE}or has a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}, its power is doubled.\n\0" .global ItemDescriptionSecretPower ItemDescriptionSecretPower: @@ -604,31 +604,31 @@ ItemDescriptionSecretPower: .global ItemDescriptionRest ItemDescriptionRest: -.string "Teaches the move {COLOR_2 GREEN}Rest{END_COLOR_TEXT_2}.{NEW_LINE}It makes the user go to {COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}.{NEW_LINE}Upon awakening{COMMA} the Pokémon regains {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}{NEW_LINE}and recovers from any status problems.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Rest{END_COLOR_TEXT_2}.{NEW_LINE}It makes the user go to {COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}.{NEW_LINE}Upon awakening, the Pokémon regains {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}{NEW_LINE}and recovers from any status problems.\n\0" .global ItemDescriptionAttract ItemDescriptionAttract: -.string "Teaches the move {COLOR_2 GREEN}Attract{END_COLOR_TEXT_2}.{NEW_LINE}It changes the target{APOSTROPHE}s status to{NEW_LINE}{COLOR_2 CYAN}Infatuated{END_COLOR_TEXT_2}.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Attract{END_COLOR_TEXT_2}.{NEW_LINE}It changes the target's status to{NEW_LINE}{COLOR_2 CYAN}Infatuated{END_COLOR_TEXT_2}.\n\0" .global ItemDescriptionThief ItemDescriptionThief: -.string "Teaches the move {COLOR_2 GREEN}Thief{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It also snatches the target{APOSTROPHE}s hold item{NEW_LINE}and makes it the user{APOSTROPHE}s hold item.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Thief{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It also snatches the target's hold item{NEW_LINE}and makes it the user's hold item.\n\0" .global ItemDescriptionSteelWIng ItemDescriptionSteelWIng: -.string "Teaches the move {COLOR_2 GREEN}Steel Wing{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It may also raise the user{APOSTROPHE}s {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by{NEW_LINE}one level.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Steel Wing{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It may also raise the user's {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by{NEW_LINE}one level.\n\0" .global ItemDescriptionSkillSwap ItemDescriptionSkillSwap: -.string "Teaches the move {COLOR_2 GREEN}Skill Swap{END_COLOR_TEXT_2}.{NEW_LINE}It switches the user{APOSTROPHE}s {COLOR_2 YELLOW}Special Ability{END_COLOR_TEXT_2} with{NEW_LINE}that of the target.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Skill Swap{END_COLOR_TEXT_2}.{NEW_LINE}It switches the user's {COLOR_2 YELLOW}Special Ability{END_COLOR_TEXT_2} with{NEW_LINE}that of the target.\n\0" .global ItemDescriptionSnatch ItemDescriptionSnatch: -.string "It switches the user{APOSTROPHE}s status to {COLOR_2 CYAN}Snatch{END_COLOR_TEXT_2}.{NEW_LINE}It steals the moves of Pokémon on{NEW_LINE}the same floor.{NEW_LINE}{NEW_LINE}Range: User\n\0" +.string "It switches the user's status to {COLOR_2 CYAN}Snatch{END_COLOR_TEXT_2}.{NEW_LINE}It steals the moves of Pokémon on{NEW_LINE}the same floor.{NEW_LINE}{NEW_LINE}Range: User\n\0" .global ItemDescriptionOverheat ItemDescriptionOverheat: -.string "Teaches the move {COLOR_2 GREEN}Overheat{END_COLOR_TEXT_2}.{NEW_LINE}It damages all foes around the user{COMMA} but it{NEW_LINE}also lowers the user{APOSTROPHE}s {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}{NEW_LINE}by two levels and thaws frozen Pokémon.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Overheat{END_COLOR_TEXT_2}.{NEW_LINE}It damages all foes around the user, but it{NEW_LINE}also lowers the user's {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}{NEW_LINE}by two levels and thaws frozen Pokémon.\n\0" .global ItemDescriptionWideSlash ItemDescriptionWideSlash: @@ -648,11 +648,11 @@ ItemDescriptionSeeTrapOrb: .global ItemDescriptionMugOrb ItemDescriptionMugOrb: -.string "It inflicts damage on the target.{NEW_LINE}It also snatches the target{APOSTROPHE}s hold item{NEW_LINE}to make it the user{APOSTROPHE}s.{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" +.string "It inflicts damage on the target.{NEW_LINE}It also snatches the target's hold item{NEW_LINE}to make it the user's.{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" .global ItemDescriptionReboundOrb ItemDescriptionReboundOrb: -.string "Changes the user{APOSTROPHE}s status to {COLOR_2 CYAN}Mini Counter{END_COLOR_TEXT_2}.{NEW_LINE}Any damage from {COLOR_2 CYAN}Physical Attack moves{END_COLOR_TEXT_2}{NEW_LINE}or a regular attack is partially returned.{NEW_LINE}{NEW_LINE}Range: User\n\0" +.string "Changes the user's status to {COLOR_2 CYAN}Mini Counter{END_COLOR_TEXT_2}.{NEW_LINE}Any damage from {COLOR_2 CYAN}Physical Attack moves{END_COLOR_TEXT_2}{NEW_LINE}or a regular attack is partially returned.{NEW_LINE}{NEW_LINE}Range: User\n\0" .global ItemDescriptionLobOrb ItemDescriptionLobOrb: @@ -660,11 +660,11 @@ ItemDescriptionLobOrb: .global ItemDescriptionSwitcherOrb ItemDescriptionSwitcherOrb: -.string "Switches the user{APOSTROPHE}s position with another{NEW_LINE}Pokémon{COMMA} however distant.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: Straight line\n\0" +.string "Switches the user's position with another{NEW_LINE}Pokémon, however distant.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: Straight line\n\0" .global ItemDescriptionBlowbackOrb ItemDescriptionBlowbackOrb: -.string "Knocks a distant target flying.{NEW_LINE}If the target hits a wall or another{NEW_LINE}Pokémon{COMMA} it sustains damage.{NEW_LINE}{NEW_LINE}Range: Straight line\n\0" +.string "Knocks a distant target flying.{NEW_LINE}If the target hits a wall or another{NEW_LINE}Pokémon, it sustains damage.{NEW_LINE}{NEW_LINE}Range: Straight line\n\0" .global ItemDescriptionWarpOrb ItemDescriptionWarpOrb: @@ -688,7 +688,7 @@ ItemDescriptionLuminousOrb: .global ItemDescriptionPetrifyOrb ItemDescriptionPetrifyOrb: -.string "Changes the status of foes in the room to{NEW_LINE}{COLOR_2 CYAN}Petrified{END_COLOR_TEXT_2}{COMMA} making them incapable of action.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: Foes in room\n\0" +.string "Changes the status of foes in the room to{NEW_LINE}{COLOR_2 CYAN}Petrified{END_COLOR_TEXT_2}, making them incapable of action.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: Foes in room\n\0" .global ItemDescriptionStayawayOrb ItemDescriptionStayawayOrb: @@ -696,39 +696,39 @@ ItemDescriptionStayawayOrb: .global ItemDescriptionPounceOrb ItemDescriptionPounceOrb: -.string "Makes the user pounce on the Pokémon{NEW_LINE}in front{COMMA} however distant. If no Pokémon{NEW_LINE}is in the way{COMMA} the user leaps to the wall.{NEW_LINE}{NEW_LINE}Range: Special\n\0" +.string "Makes the user pounce on the Pokémon{NEW_LINE}in front, however distant. If no Pokémon{NEW_LINE}is in the way, the user leaps to the wall.{NEW_LINE}{NEW_LINE}Range: Special\n\0" .global ItemDescriptionTrawlOrb ItemDescriptionTrawlOrb: -.string "Pulls all items on the floor to the user.{NEW_LINE}Beware: if there is a shop{COMMA} the user will{NEW_LINE}be considered a shoplifter.{NEW_LINE}{NEW_LINE}Range: User\n\0" +.string "Pulls all items on the floor to the user.{NEW_LINE}Beware: if there is a shop, the user will{NEW_LINE}be considered a shoplifter.{NEW_LINE}{NEW_LINE}Range: User\n\0" .global ItemDescriptionCleanseOrb ItemDescriptionCleanseOrb: -.string "Sticky{COMMA} gummed-up items are cleansed of{NEW_LINE}grime{COMMA} making them usable again.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: All team members on floor\n\0" +.string "Sticky, gummed-up items are cleansed of{NEW_LINE}grime, making them usable again.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: All team members on floor\n\0" .global ItemDescriptionObserverOrb ItemDescriptionObserverOrb: -.string "Changes the status of the target to{NEW_LINE}{COLOR_2 CYAN}Paused{END_COLOR_TEXT_2}{COMMA} making it incapable of action.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" +.string "Changes the status of the target to{NEW_LINE}{COLOR_2 CYAN}Paused{END_COLOR_TEXT_2}, making it incapable of action.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" .global ItemDescriptionDecoyOrb ItemDescriptionDecoyOrb: -.string "Changes the status of the target to{NEW_LINE}{COLOR_2 CYAN}Decoy{END_COLOR_TEXT_2}{COMMA} making it the target of its fellow{NEW_LINE}Pokémon.{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" +.string "Changes the status of the target to{NEW_LINE}{COLOR_2 CYAN}Decoy{END_COLOR_TEXT_2}, making it the target of its fellow{NEW_LINE}Pokémon.{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" .global ItemDescriptionSlumberOrb ItemDescriptionSlumberOrb: -.string "Changes the status of foes in the same{NEW_LINE}room to {COLOR_2 CYAN}Sleep{END_COLOR_TEXT_2}{COMMA} making them incapable{NEW_LINE}of action.{NEW_LINE}{NEW_LINE}Range: Foes in room\n\0" +.string "Changes the status of foes in the same{NEW_LINE}room to {COLOR_2 CYAN}Sleep{END_COLOR_TEXT_2}, making them incapable{NEW_LINE}of action.{NEW_LINE}{NEW_LINE}Range: Foes in room\n\0" .global ItemDescriptionTotterOrb ItemDescriptionTotterOrb: -.string "Changes the status of foes in the same{NEW_LINE}room to {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2}{COMMA} making their{NEW_LINE}attacks and movements erratic.{NEW_LINE}{NEW_LINE}Range: Foes in room\n\0" +.string "Changes the status of foes in the same{NEW_LINE}room to {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2}, making their{NEW_LINE}attacks and movements erratic.{NEW_LINE}{NEW_LINE}Range: Foes in room\n\0" .global ItemDescriptionTwoEdgeOrb ItemDescriptionTwoEdgeOrb: -.string "Drops the {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} of foes in the same{NEW_LINE}room to one. If it hits{COMMA} it also halves{NEW_LINE}the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.{NEW_LINE}{NEW_LINE}Range: Foes in room\n\0" +.string "Drops the {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} of foes in the same{NEW_LINE}room to one. If it hits, it also halves{NEW_LINE}the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.{NEW_LINE}{NEW_LINE}Range: Foes in room\n\0" .global ItemDescriptionSilenceOrb ItemDescriptionSilenceOrb: -.string "Changes the status of the target to{NEW_LINE}{COLOR_2 CYAN}Muzzled{END_COLOR_TEXT_2}{COMMA} making it incapable of attacks or{NEW_LINE}moves using its mouth.{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" +.string "Changes the status of the target to{NEW_LINE}{COLOR_2 CYAN}Muzzled{END_COLOR_TEXT_2}, making it incapable of attacks or{NEW_LINE}moves using its mouth.{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" .global ItemDescriptionEscapeOrb ItemDescriptionEscapeOrb: @@ -776,15 +776,15 @@ ItemDescriptionReviverOrb: .global ItemDescriptionShockerOrb ItemDescriptionShockerOrb: -.string "Changes the target{APOSTROPHE}s status to {COLOR_2 CYAN}Cowering{END_COLOR_TEXT_2}{COMMA}{NEW_LINE}making its attacks go in the opposite{NEW_LINE}direction.{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" +.string "Changes the target's status to {COLOR_2 CYAN}Cowering{END_COLOR_TEXT_2},{NEW_LINE}making its attacks go in the opposite{NEW_LINE}direction.{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" .global ItemDescriptionSizebustOrb ItemDescriptionSizebustOrb: -.string "Inflicts damage on the target.{NEW_LINE}The bigger the target{APOSTROPHE}s size{COMMA} the greater{NEW_LINE}the damage.{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" +.string "Inflicts damage on the target.{NEW_LINE}The bigger the target's size, the greater{NEW_LINE}the damage.{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" .global ItemDescriptionOneRoomOrb ItemDescriptionOneRoomOrb: -.string "Destroys all walls on the floor{COMMA} turning{NEW_LINE}the floor into one vast room.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: Special\n\0" +.string "Destroys all walls on the floor, turning{NEW_LINE}the floor into one vast room.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: Special\n\0" .global ItemDescriptionFillInOrb ItemDescriptionFillInOrb: @@ -796,7 +796,7 @@ ItemDescriptionTrapperOrb: .global ItemDescriptionPossessOrb ItemDescriptionPossessOrb: -.string "A leader{APOSTROPHE}s hold item that enables the{NEW_LINE}leader to possess a friend and survive.{NEW_LINE}It only works for the team leader.\n\0" +.string "A leader's hold item that enables the{NEW_LINE}leader to possess a friend and survive.{NEW_LINE}It only works for the team leader.\n\0" .global ItemDescriptionItemizerOrb ItemDescriptionItemizerOrb: @@ -808,7 +808,7 @@ ItemDescriptionHurlOrb: .global ItemDescriptionMobileOrb ItemDescriptionMobileOrb: -.string "Changes the user{APOSTROPHE}s status to {COLOR_2 CYAN}Mobile{END_COLOR_TEXT_2}{COMMA}{NEW_LINE}enabling it to move and attack through{NEW_LINE}walls and on lava{COMMA} water{COMMA} and clouds.{NEW_LINE}{NEW_LINE}Range: User\n\0" +.string "Changes the user's status to {COLOR_2 CYAN}Mobile{END_COLOR_TEXT_2},{NEW_LINE}enabling it to move and attack through{NEW_LINE}walls and on lava, water, and clouds.{NEW_LINE}{NEW_LINE}Range: User\n\0" .global ItemDescriptionTossOrb ItemDescriptionTossOrb: @@ -820,43 +820,43 @@ ItemDescriptionStairsOrb: .global ItemDescriptionLongtossOrb ItemDescriptionLongtossOrb: -.string "Changes the user{APOSTROPHE}s status to {COLOR_2 CYAN}Long Toss{END_COLOR_TEXT_2}.{NEW_LINE}Items thrown by the user will fly until{NEW_LINE}they hit a wall or a Pokémon.{NEW_LINE}{NEW_LINE}Range: User\n\0" +.string "Changes the user's status to {COLOR_2 CYAN}Long Toss{END_COLOR_TEXT_2}.{NEW_LINE}Items thrown by the user will fly until{NEW_LINE}they hit a wall or a Pokémon.{NEW_LINE}{NEW_LINE}Range: User\n\0" .global ItemDescriptionPierceOrb ItemDescriptionPierceOrb: -.string "Changes the user{APOSTROPHE}s status to {COLOR_2 CYAN}Pierce{END_COLOR_TEXT_2}.{NEW_LINE}Items thrown by the user will fly through{NEW_LINE}walls and Pokémon without stopping.{NEW_LINE}{NEW_LINE}Range: User\n\0" +.string "Changes the user's status to {COLOR_2 CYAN}Pierce{END_COLOR_TEXT_2}.{NEW_LINE}Items thrown by the user will fly through{NEW_LINE}walls and Pokémon without stopping.{NEW_LINE}{NEW_LINE}Range: User\n\0" .global ItemDescriptionCut ItemDescriptionCut: -.string "Teaches the move {COLOR_2 GREEN}Cut{END_COLOR_TEXT_2}. It does not break{COMMA}{NEW_LINE}but cannot be used in a dungeon.{NEW_LINE}The move damages all foes around the{NEW_LINE}user.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Cut{END_COLOR_TEXT_2}. It does not break,{NEW_LINE}but cannot be used in a dungeon.{NEW_LINE}The move damages all foes around the{NEW_LINE}user.\n\0" .global ItemDescriptionFly ItemDescriptionFly: -.string "Teaches the move {COLOR_2 GREEN}Fly{END_COLOR_TEXT_2}. It does not break{COMMA}{NEW_LINE}but cannot be used in a dungeon.{NEW_LINE}The move makes the user{APOSTROPHE}s status {COLOR_2 CYAN}Flying{END_COLOR_TEXT_2}{COMMA}{NEW_LINE}making it attack on the next turn.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Fly{END_COLOR_TEXT_2}. It does not break,{NEW_LINE}but cannot be used in a dungeon.{NEW_LINE}The move makes the user's status {COLOR_2 CYAN}Flying{END_COLOR_TEXT_2},{NEW_LINE}making it attack on the next turn.\n\0" .global ItemDescriptionSurf ItemDescriptionSurf: -.string "Teaches the move {COLOR_2 GREEN}Surf{END_COLOR_TEXT_2}. It does not break{COMMA}{NEW_LINE}but cannot be used in a dungeon.{NEW_LINE}The move damages the target.{NEW_LINE}Inflicts double damage on a {COLOR_2 CYAN}diving{END_COLOR_TEXT_2} foe.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Surf{END_COLOR_TEXT_2}. It does not break,{NEW_LINE}but cannot be used in a dungeon.{NEW_LINE}The move damages the target.{NEW_LINE}Inflicts double damage on a {COLOR_2 CYAN}diving{END_COLOR_TEXT_2} foe.\n\0" .global ItemDescriptionStrength ItemDescriptionStrength: -.string "Teaches the move {COLOR_2 GREEN}Strength{END_COLOR_TEXT_2}. It does not{NEW_LINE}break{COMMA} but cannot be used in a dungeon.{NEW_LINE}The move hurls the target at another{NEW_LINE}Pokémon to inflict damage.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Strength{END_COLOR_TEXT_2}. It does not{NEW_LINE}break, but cannot be used in a dungeon.{NEW_LINE}The move hurls the target at another{NEW_LINE}Pokémon to inflict damage.\n\0" .global ItemDescriptionFlash ItemDescriptionFlash: -.string "Teaches the move {COLOR_2 GREEN}Flash{END_COLOR_TEXT_2}. It does not break{COMMA}{NEW_LINE}but cannot be used in a dungeon.{NEW_LINE}The move lowers the target{APOSTROPHE}s {COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2}{NEW_LINE}by one level.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Flash{END_COLOR_TEXT_2}. It does not break,{NEW_LINE}but cannot be used in a dungeon.{NEW_LINE}The move lowers the target's {COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2}{NEW_LINE}by one level.\n\0" .global ItemDescriptionRockSmash ItemDescriptionRockSmash: -.string "Teaches the move {COLOR_2 GREEN}Rock Smash{END_COLOR_TEXT_2}. It does not{NEW_LINE}break{COMMA} but cannot be used in a dungeon.{NEW_LINE}The move digs through the wall the user{NEW_LINE}is facing.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Rock Smash{END_COLOR_TEXT_2}. It does not{NEW_LINE}break, but cannot be used in a dungeon.{NEW_LINE}The move digs through the wall the user{NEW_LINE}is facing.\n\0" .global ItemDescriptionWaterfall ItemDescriptionWaterfall: -.string "Teaches the move {COLOR_2 GREEN}Waterfall{END_COLOR_TEXT_2}. It does not{NEW_LINE}break{COMMA} but cannot be used in a dungeon.{NEW_LINE}The move damages the target.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Waterfall{END_COLOR_TEXT_2}. It does not{NEW_LINE}break, but cannot be used in a dungeon.{NEW_LINE}The move damages the target.\n\0" .global ItemDescriptionDive ItemDescriptionDive: -.string "Teaches the move {COLOR_2 GREEN}Dive{END_COLOR_TEXT_2}. It does not break{COMMA}{NEW_LINE}but cannot be used in a dungeon.{NEW_LINE}The move makes the user{APOSTROPHE}s status {COLOR_2 CYAN}Diving{END_COLOR_TEXT_2}{COMMA}{NEW_LINE}making it attack strongly on the next turn.\n\0" +.string "Teaches the move {COLOR_2 GREEN}Dive{END_COLOR_TEXT_2}. It does not break,{NEW_LINE}but cannot be used in a dungeon.{NEW_LINE}The move makes the user's status {COLOR_2 CYAN}Diving{END_COLOR_TEXT_2},{NEW_LINE}making it attack strongly on the next turn.\n\0" .global ItemDescriptionLinkBox ItemDescriptionLinkBox: @@ -864,7 +864,7 @@ ItemDescriptionLinkBox: .global ItemDescriptionSwitchBox ItemDescriptionSwitchBox: -.string "A curious box that enables the user to{NEW_LINE}switch the rescue team{APOSTROPHE}s leader.{NEW_LINE}Only official team members may become{NEW_LINE}the team leader.\n\0" +.string "A curious box that enables the user to{NEW_LINE}switch the rescue team's leader.{NEW_LINE}Only official team members may become{NEW_LINE}the team leader.\n\0" .global ItemDescriptionWeavileFig ItemDescriptionWeavileFig: diff --git a/data/move/move_names.s b/data/move/move_names.s index d81353c86..26be26ac0 100644 --- a/data/move/move_names.s +++ b/data/move/move_names.s @@ -270,7 +270,7 @@ MoveNamePlaceholder: .global MoveUseTextBide MoveUseTextBide: -.string "{ARG_POKEMON_0} can{APOSTROPHE}t take it anymore!\0" +.string "{ARG_POKEMON_0} can't take it anymore!\0" .align 2,0 .global MoveNameBide2 @@ -305,7 +305,7 @@ MoveNameRegularAttack: .global MoveDescriptionVoltTackle MoveDescriptionVoltTackle: -.string "Inflicts damage on the target{COMMA} even at a\ndistance.\nHowever{COMMA} it also hurts the user.\0" +.string "Inflicts damage on the target, even at a\ndistance.\nHowever, it also hurts the user.\0" .align 2,0 .global MoveNameVoltTackle @@ -320,7 +320,7 @@ MoveNameAeroblast: .global MoveDescriptionStruggle MoveDescriptionStruggle: -.string "Inflicts damage on the target.\nHowever{COMMA} the user also takes damage one\nquarter of its {COLOR_2 YELLOW}maximum HP{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target.\nHowever, the user also takes damage one\nquarter of its {COLOR_2 YELLOW}maximum HP{END_COLOR_TEXT_2}.\0" .align 2,0 .global MoveNameStruggle @@ -340,7 +340,7 @@ MoveNameRockBlast: .global MoveDescriptionLockOn MoveDescriptionLockOn: -.string "Gives the user the {COLOR_2 CYAN}Sure Shot{END_COLOR_TEXT_2} status{COMMA}\nmaking all its moves and attacks\ncompletely accurate.\0" +.string "Gives the user the {COLOR_2 CYAN}Sure Shot{END_COLOR_TEXT_2} status,\nmaking all its moves and attacks\ncompletely accurate.\0" .align 2,0 .global MoveNameLockOn @@ -350,7 +350,7 @@ MoveNameLockOn: .global MoveDescriptionSkullBash MoveDescriptionSkullBash: -.string "The user gains the {COLOR_2 CYAN}Skull Bash{END_COLOR_TEXT_2} status{COMMA}\ncausing it to attack strongly on the\nnext turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" +.string "The user gains the {COLOR_2 CYAN}Skull Bash{END_COLOR_TEXT_2} status,\ncausing it to attack strongly on the\nnext turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" .align 2,0 .global MoveNameSkullBash @@ -370,7 +370,7 @@ MoveNameFuryCutter: .global MoveDescriptionIceBeam MoveDescriptionIceBeam: -.string "Inflicts damage on the target{COMMA} even at a\ndistance. It may also leave the target\n{COLOR_2 CYAN}frozen{END_COLOR_TEXT_2} and incapable of action.\0" +.string "Inflicts damage on the target, even at a\ndistance. It may also leave the target\n{COLOR_2 CYAN}frozen{END_COLOR_TEXT_2} and incapable of action.\0" .align 2,0 .global MoveNameIceBeam @@ -385,7 +385,7 @@ MoveNameIcePunch: .global MoveDescriptionDragonDance MoveDescriptionDragonDance: -.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Movement\nSpeed{END_COLOR_TEXT_2} by one level.\0" +.string "Boosts the user's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Movement\nSpeed{END_COLOR_TEXT_2} by one level.\0" .align 2,0 .global MoveNameDragonDance @@ -395,7 +395,7 @@ MoveNameDragonDance: .global MoveDescriptionDragonbreath MoveDescriptionDragonbreath: -.string "Inflicts damage on the target{COMMA} even at a\ndistance. It may also cause {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}{COMMA}\npreventing any attacks or moves.\0" +.string "Inflicts damage on the target, even at a\ndistance. It may also cause {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2},\npreventing any attacks or moves.\0" .align 2,0 .global MoveNameDragonbreath @@ -430,7 +430,7 @@ MoveNameRefresh: .global MoveDescriptionReflect MoveDescriptionReflect: -.string "The user gains the {COLOR_2 CYAN}Reflect{END_COLOR_TEXT_2} status{COMMA}\nhalving the damage from all\n{COLOR_2 CYAN}Physical Attack moves{END_COLOR_TEXT_2} and\nregular attacks.\0" +.string "The user gains the {COLOR_2 CYAN}Reflect{END_COLOR_TEXT_2} status,\nhalving the damage from all\n{COLOR_2 CYAN}Physical Attack moves{END_COLOR_TEXT_2} and\nregular attacks.\0" .align 2,0 .global MoveNameReflect @@ -440,7 +440,7 @@ MoveNameReflect: .global MoveDescriptionRecycle MoveDescriptionRecycle: -.string "Repairs the item {COLOR_2 GREEN}{TM}Used TM{END_COLOR_TEXT_2} and restores\nit to its original{COMMA} unused state.\0" +.string "Repairs the item {COLOR_2 GREEN}{TM}Used TM{END_COLOR_TEXT_2} and restores\nit to its original, unused state.\0" .align 2,0 .global MoveNameRecycle @@ -470,7 +470,7 @@ MoveNameSnatch: .global MoveDescriptionAcid MoveDescriptionAcid: -.string "Inflicts damage on the target.\nIt may also lower the user{APOSTROPHE}s {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by\none level.\0" +.string "Inflicts damage on the target.\nIt may also lower the user's {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by\none level.\0" .align 2,0 .global MoveNameAcid @@ -480,7 +480,7 @@ MoveNameAcid: .global MoveDescriptionDreamEater MoveDescriptionDreamEater: -.string "Inflicts damage on the target and restores\nthe user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\nEffective only against sleeping foes.\0" +.string "Inflicts damage on the target and restores\nthe user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\nEffective only against sleeping foes.\0" .align 2,0 .global MoveNameDreamEater @@ -500,7 +500,7 @@ MoveNameMetronome: .global MoveDescriptionLeechSeed MoveDescriptionLeechSeed: -.string "Inflicts the {COLOR_2 CYAN}Leech Seed{END_COLOR_TEXT_2} status\non the target.\nThe target{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} is leeched every several\nturns to restore the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\0" +.string "Inflicts the {COLOR_2 CYAN}Leech Seed{END_COLOR_TEXT_2} status\non the target.\nThe target's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} is leeched every several\nturns to restore the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\0" .align 2,0 .global MoveNameLeechSeed @@ -510,7 +510,7 @@ MoveNameLeechSeed: .global MoveDescriptionFrustration MoveDescriptionFrustration: -.string "Inflicts damage on the target.\nIt inflicts greater damage if the user{APOSTROPHE}s\n{COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2} is low.\0" +.string "Inflicts damage on the target.\nIt inflicts greater damage if the user's\n{COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2} is low.\0" .align 2,0 .global MoveNameFrustration @@ -540,7 +540,7 @@ MoveNameAttract: .global MoveDescriptionMetalClaw MoveDescriptionMetalClaw: -.string "Inflicts damage on the target.\nIt may also boost the user{APOSTROPHE}s {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by\none level.\0" +.string "Inflicts damage on the target.\nIt may also boost the user's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by\none level.\0" .align 2,0 .global MoveNameMetalClaw @@ -580,7 +580,7 @@ MoveNameMegaDrain: .global MoveDescriptionCalmMind MoveDescriptionCalmMind: -.string "Boosts the Pokémon{APOSTROPHE}s {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2} and\n{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by one level.\0" +.string "Boosts the Pokémon's {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2} and\n{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by one level.\0" .align 2,0 .global MoveNameCalmMind @@ -655,7 +655,7 @@ MoveNameFuryAttack: .global MoveDescriptionWaterPulse MoveDescriptionWaterPulse: -.string "Inflicts damage on the target{COMMA} even at a\ndistance.\nIt may also leave the target {COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target, even at a\ndistance.\nIt may also leave the target {COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.\0" .align 2,0 .global MoveNameWaterPulse @@ -665,7 +665,7 @@ MoveNameWaterPulse: .global MoveDescriptionMistBall MoveDescriptionMistBall: -.string "Inflicts damage on the target.\nIt may lower the target{APOSTROPHE}s {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}\nby one level.\0" +.string "Inflicts damage on the target.\nIt may lower the target's {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}\nby one level.\0" .align 2,0 .global MoveNameMistBall @@ -680,7 +680,7 @@ MoveNameWaterGun: .global MoveDescriptionWaterSport MoveDescriptionWaterSport: -.string "Changes the floor{APOSTROPHE}s status to {COLOR_2 CYAN}Water Sport{END_COLOR_TEXT_2}{COMMA}\nwhich halves the power of Fire-type\nmoves.\0" +.string "Changes the floor's status to {COLOR_2 CYAN}Water Sport{END_COLOR_TEXT_2},\nwhich halves the power of Fire-type\nmoves.\0" .align 2,0 .global MoveNameWaterSport @@ -700,7 +700,7 @@ MoveNameDetect: .global MoveDescriptionSubstitute MoveDescriptionSubstitute: -.string "The target gains the {COLOR_2 CYAN}Decoy{END_COLOR_TEXT_2} status{COMMA}\nmaking it the target of its fellow\nPokémon.\0" +.string "The target gains the {COLOR_2 CYAN}Decoy{END_COLOR_TEXT_2} status,\nmaking it the target of its fellow\nPokémon.\0" .align 2,0 .global MoveNameSubstitute @@ -720,7 +720,7 @@ MoveNameDefenseCurl: .global MoveDescriptionProtect MoveDescriptionProtect: -.string "The user gains the {COLOR_2 CYAN}Protect{END_COLOR_TEXT_2} status{COMMA}\npreventing damage from enemy attacks\nand moves.\0" +.string "The user gains the {COLOR_2 CYAN}Protect{END_COLOR_TEXT_2} status,\npreventing damage from enemy attacks\nand moves.\0" .align 2,0 .global MoveNameProtect @@ -770,7 +770,7 @@ MoveDescriptionSpikes: .global MoveDescriptionWrap MoveDescriptionWrap: -.string "The user gains the {COLOR_2 CYAN}Wrap{END_COLOR_TEXT_2} status{COMMA} and\nthe {COLOR_2 CYAN}Wrapped{END_COLOR_TEXT_2} status is inflicted on\nthe target.\nBoth Pokémon become incapable of action.\0" +.string "The user gains the {COLOR_2 CYAN}Wrap{END_COLOR_TEXT_2} status, and\nthe {COLOR_2 CYAN}Wrapped{END_COLOR_TEXT_2} status is inflicted on\nthe target.\nBoth Pokémon become incapable of action.\0" .align 2,0 .global MoveNameWrap @@ -805,7 +805,7 @@ MoveNameFireSpin: .global MoveDescriptionBonemerang MoveDescriptionBonemerang: -.string "Strikes the target twice{COMMA} even at a\ndistance.\0" +.string "Strikes the target twice, even at a\ndistance.\0" .align 2,0 .global MoveNameBonemerang @@ -820,7 +820,7 @@ MoveNameBoneClub: .global MoveDescriptionTailGlow MoveDescriptionTailGlow: -.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2} by\ntwo levels.\0" +.string "Boosts the user's {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2} by\ntwo levels.\0" .align 2,0 .global MoveNameTailGlow @@ -835,7 +835,7 @@ MoveNameCovet: .global MoveDescriptionCamouflage MoveDescriptionCamouflage: -.string "The user{APOSTROPHE}s type changes to match the\nterrain.\0" +.string "The user's type changes to match the\nterrain.\0" .align 2,0 .global MoveNameCamouflage @@ -875,7 +875,7 @@ MoveNameGlare: .global MoveDescriptionSludgeBomb MoveDescriptionSludgeBomb: -.string "Inflicts damage on the target{COMMA} even at a\ndistance. It may also leave the target\n{COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}{COMMA} damaging it for several turns.\0" +.string "Inflicts damage on the target, even at a\ndistance. It may also leave the target\n{COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}, damaging it for several turns.\0" .align 2,0 .global MoveNameSludgeBomb @@ -885,12 +885,12 @@ MoveNameSludgeBomb: .global MoveDescriptionSludge MoveDescriptionSludge: -.string "Inflicts damage on the target.\nIt may also leave the target {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}{COMMA}\ndamaging it for several turns.\0" +.string "Inflicts damage on the target.\nIt may also leave the target {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2},\ndamaging it for several turns.\0" .align 2,0 .global MoveDescriptionEruption MoveDescriptionEruption: -.string "Inflicts damage on the target.\nThe higher the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}{COMMA} the greater\nthe damage.\nIt thaws and frees frozen Pokémon.\0" +.string "Inflicts damage on the target.\nThe higher the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}, the greater\nthe damage.\nIt thaws and frees frozen Pokémon.\0" .align 2,0 .global MoveDescriptionPresent @@ -920,7 +920,7 @@ MoveNameCrushClaw: .global MoveDescriptionTeeterDance MoveDescriptionTeeterDance: -.string "Inflicts the {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} status on all\nPokémon on the floor{COMMA} making their attacks\nand movements erratic.\0" +.string "Inflicts the {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} status on all\nPokémon on the floor, making their attacks\nand movements erratic.\0" .align 2,0 .global MoveNameTeeterDance @@ -935,7 +935,7 @@ MoveNameFlash: .global MoveDescriptionBlastBurn MoveDescriptionBlastBurn: -.string "Inflicts damage on the target. However{COMMA} it\nalso inflicts the {COLOR_2 CYAN}Paused{END_COLOR_TEXT_2} status on the user.\nIt also thaws and frees frozen Pokémon.\0" +.string "Inflicts damage on the target. However, it\nalso inflicts the {COLOR_2 CYAN}Paused{END_COLOR_TEXT_2} status on the user.\nIt also thaws and frees frozen Pokémon.\0" .align 2,0 .global MoveNameBlastBurn @@ -965,7 +965,7 @@ MoveNameBeatUp: .global MoveDescriptionWhirlwind MoveDescriptionWhirlwind: -.string "Knocks the target flying.\nIf the target hits a wall or another\nPokémon{COMMA} it sustains damage.\0" +.string "Knocks the target flying.\nIf the target hits a wall or another\nPokémon, it sustains damage.\0" .align 2,0 .global MoveNameWhirlwind @@ -975,7 +975,7 @@ MoveNameWhirlwind: .global MoveDescriptionFeatherdance MoveDescriptionFeatherdance: -.string "Lowers the target{APOSTROPHE}s {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by two levels.\0" +.string "Lowers the target's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by two levels.\0" .align 2,0 .global MoveNameFeatherdance @@ -985,7 +985,7 @@ MoveNameFeatherdance: .global MoveDescriptionImprison MoveDescriptionImprison: -.string "Inflicts the {COLOR_2 CYAN}Paused{END_COLOR_TEXT_2} status on the target{COMMA}\nmaking it incapable of action.\0" +.string "Inflicts the {COLOR_2 CYAN}Paused{END_COLOR_TEXT_2} status on the target,\nmaking it incapable of action.\0" .align 2,0 .global MoveNameImprison @@ -995,7 +995,7 @@ MoveNameImprison: .global MoveDescriptionBulkUp MoveDescriptionBulkUp: -.string "Raises the user{APOSTROPHE}s {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}\nby one level.\0" +.string "Raises the user's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}\nby one level.\0" .align 2,0 .global MoveNameBulkUp @@ -1045,7 +1045,7 @@ MoveNameLightScreen: .global MoveDescriptionBellyDrum MoveDescriptionBellyDrum: -.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} to maximum{COMMA}\nbut empties its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} to just one.\nIt has no effect if the {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} is one or less.\0" +.string "Boosts the user's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} to maximum,\nbut empties its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} to just one.\nIt has no effect if the {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} is one or less.\0" .align 2,0 .global MoveNameBellyDrum @@ -1055,7 +1055,7 @@ MoveNameBellyDrum: .global MoveDescriptionFixedDamage MoveDescriptionFixedDamage: -.string "The user gains the {COLOR_2 CYAN}Set Damage{END_COLOR_TEXT_2} status.\nIn this state{COMMA} all damage inflicted by the\nuser will remain constant.\0" +.string "The user gains the {COLOR_2 CYAN}Set Damage{END_COLOR_TEXT_2} status.\nIn this state, all damage inflicted by the\nuser will remain constant.\0" .align 2,0 .global MoveNameDoomDesire @@ -1070,7 +1070,7 @@ MoveNameBubblebeam: .global MoveDescriptionSplash MoveDescriptionSplash: -.string "Makes the user flop around as it moves.\nIf there is another Pokémon where it\nlands{COMMA} both Pokémon are hurt.\0" +.string "Makes the user flop around as it moves.\nIf there is another Pokémon where it\nlands, both Pokémon are hurt.\0" .align 2,0 .global MoveNameSplash @@ -1090,7 +1090,7 @@ MoveNamePetalDance: .global MoveDescriptionBatonPass MoveDescriptionBatonPass: -.string "Successively switches the user{APOSTROPHE}s position\nwith the positions of other Pokémon in\nthe room.\0" +.string "Successively switches the user's position\nwith the positions of other Pokémon in\nthe room.\0" .align 2,0 .global MoveNameBatonPass @@ -1100,7 +1100,7 @@ MoveNameBatonPass: .global MoveDescriptionHighCriticalDistance MoveDescriptionHighCriticalDistance: -.string "Inflicts damage on the target{COMMA} even at a\ndistance.\nIt has a high critical-hit rate.\0" +.string "Inflicts damage on the target, even at a\ndistance.\nIt has a high critical-hit rate.\0" .align 2,0 .global MoveNameRazorLeaf @@ -1115,7 +1115,7 @@ MoveNamePound: .global MoveDescriptionKnockOff MoveDescriptionKnockOff: -.string "Knocks the target{APOSTROPHE}s hold item to\nthe ground.\0" +.string "Knocks the target's hold item to\nthe ground.\0" .align 2,0 .global MoveNameKnockOff @@ -1155,7 +1155,7 @@ MoveNameSpitUp: .global MoveDescriptionSteelWing MoveDescriptionSteelWing: -.string "Inflicts damage on the target.\nIt may also raise the user{APOSTROPHE}s {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by\none level.\0" +.string "Inflicts damage on the target.\nIt may also raise the user's {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by\none level.\0" .align 2,0 .global MoveNameSteelWing @@ -1165,12 +1165,12 @@ MoveNameSteelWing: .global MoveDescriptionSuperpower MoveDescriptionSuperpower: -.string "Inflicts damage on the target.\nHowever{COMMA} it also lowers the user{APOSTROPHE}s\n{COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by one level.\0" +.string "Inflicts damage on the target.\nHowever, it also lowers the user's\n{COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by one level.\0" .align 2,0 .global MoveDescriptionHyperBeam MoveDescriptionHyperBeam: -.string "Inflicts damage on the target{COMMA} even at a\ndistance. It also inflicts the {COLOR_2 CYAN}Paused{END_COLOR_TEXT_2} status\non the user{COMMA} making it incapable of action.\0" +.string "Inflicts damage on the target, even at a\ndistance. It also inflicts the {COLOR_2 CYAN}Paused{END_COLOR_TEXT_2} status\non the user, making it incapable of action.\0" .align 2,0 .global MoveNameHyperBeam @@ -1185,7 +1185,7 @@ MoveNameHyperVoice: .global MoveDescriptionHydroPump MoveDescriptionHydroPump: -.string "Inflicts damage on the target{COMMA} even at a\ndistance.\0" +.string "Inflicts damage on the target, even at a\ndistance.\0" .align 2,0 .global MoveNameHydroPump @@ -1195,7 +1195,7 @@ MoveNameHydroPump: .global MoveDescriptionHydroCannon MoveDescriptionHydroCannon: -.string "Inflicts damage on the target{COMMA} even at a\ndistance. It also inflicts the {COLOR_2 CYAN}Paused{END_COLOR_TEXT_2}\nstatus on the user{COMMA} making it incapable\nof action.\0" +.string "Inflicts damage on the target, even at a\ndistance. It also inflicts the {COLOR_2 CYAN}Paused{END_COLOR_TEXT_2}\nstatus on the user, making it incapable\nof action.\0" .align 2,0 .global MoveNameHydroCannon @@ -1205,7 +1205,7 @@ MoveNameHydroCannon: .global MoveDescriptionFrenzyPlant MoveDescriptionFrenzyPlant: -.string "Inflicts damage on the target.\nHowever{COMMA} it also inflicts the {COLOR_2 CYAN}Paused{END_COLOR_TEXT_2} status\non the user{COMMA} making it incapable of action.\0" +.string "Inflicts damage on the target.\nHowever, it also inflicts the {COLOR_2 CYAN}Paused{END_COLOR_TEXT_2} status\non the user, making it incapable of action.\0" .align 2,0 .global MoveNameFrenzyPlant @@ -1215,7 +1215,7 @@ MoveNameFrenzyPlant: .global MoveDescriptionCurse MoveDescriptionCurse: -.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by\none level{COMMA} but also lowers {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2}\nby one level. If used by a Ghost type{COMMA} the\ntarget is {COLOR_2 CYAN}cursed{END_COLOR_TEXT_2}{COMMA} and the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} halved.\0" +.string "Boosts the user's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by\none level, but also lowers {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2}\nby one level. If used by a Ghost type, the\ntarget is {COLOR_2 CYAN}cursed{END_COLOR_TEXT_2}, and the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} halved.\0" .align 2,0 .global MoveNameCurse @@ -1225,7 +1225,7 @@ MoveNameCurse: .global MoveDescriptionSwallow MoveDescriptionSwallow: -.string "Restores the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\nThe {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} recovered depends on how often\nthe move {COLOR_2 GREEN}Stockpile{END_COLOR_TEXT_2} was used before.\0" +.string "Restores the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\nThe {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} recovered depends on how often\nthe move {COLOR_2 GREEN}Stockpile{END_COLOR_TEXT_2} was used before.\0" .align 2,0 .global MoveNameBodySlam @@ -1245,7 +1245,7 @@ MoveNameConfusion: .global MoveDescriptionIngrain MoveDescriptionIngrain: -.string "The user gains the {COLOR_2 CYAN}Ingrain{END_COLOR_TEXT_2} status.\nThe user becomes incapable of moving{COMMA}\nbut regains {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} over several turns.\0" +.string "The user gains the {COLOR_2 CYAN}Ingrain{END_COLOR_TEXT_2} status.\nThe user becomes incapable of moving,\nbut regains {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} over several turns.\0" .align 2,0 .global MoveNameIngrain @@ -1255,7 +1255,7 @@ MoveNameIngrain: .global MoveDescriptionRest MoveDescriptionRest: -.string "The user gains the {COLOR_2 CYAN}Napping{END_COLOR_TEXT_2} status.\nUpon awakening{COMMA} the Pokémon regains {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}\nand recovers from any status problems.\0" +.string "The user gains the {COLOR_2 CYAN}Napping{END_COLOR_TEXT_2} status.\nUpon awakening, the Pokémon regains {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}\nand recovers from any status problems.\0" .align 2,0 .global MoveNameRest @@ -1265,7 +1265,7 @@ MoveNameRest: .global MoveDescriptionSleepPowder MoveDescriptionSleepPowder: -.string "Makes all foes around the user go to\n{COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}{COMMA} making them incapable of action.\0" +.string "Makes all foes around the user go to\n{COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}, making them incapable of action.\0" .align 2,0 .global MoveNameSleepPowder @@ -1300,7 +1300,7 @@ MoveNameAssist: .global MoveDescriptionPayDay MoveDescriptionPayDay: -.string "Inflicts damage on the target.\nIf the foe faints{COMMA} it will drop money.\0" +.string "Inflicts damage on the target.\nIf the foe faints, it will drop money.\0" .align 2,0 .global MoveNamePayDay @@ -1330,7 +1330,7 @@ MoveNameFakeOut: .global MoveDescriptionWish MoveDescriptionWish: -.string "The user gains the {COLOR_2 CYAN}Wish{END_COLOR_TEXT_2} status.\nIt boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} recovery rate.\0" +.string "The user gains the {COLOR_2 CYAN}Wish{END_COLOR_TEXT_2} status.\nIt boosts the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} recovery rate.\0" .align 2,0 .global MoveNameLeer @@ -1340,7 +1340,7 @@ MoveNameLeer: .global MoveDescriptionSunnyDay MoveDescriptionSunnyDay: -.string "Changes the dungeon floor{APOSTROPHE}s weather to\n{COLOR_2 CYAN}Sunny{END_COLOR_TEXT_2} over several turns.\0" +.string "Changes the dungeon floor's weather to\n{COLOR_2 CYAN}Sunny{END_COLOR_TEXT_2} over several turns.\0" .align 2,0 .global MoveNameSunnyDay @@ -1365,7 +1365,7 @@ MoveNameNeedleArm: .global MoveDescriptionRolePlay MoveDescriptionRolePlay: -.string "Copies the target{APOSTROPHE}s {COLOR_2 YELLOW}Special Ability{END_COLOR_TEXT_2}.\nThe user regains its own {COLOR_2 YELLOW}Special Ability{END_COLOR_TEXT_2}\nwhen it leaves the floor.\0" +.string "Copies the target's {COLOR_2 YELLOW}Special Ability{END_COLOR_TEXT_2}.\nThe user regains its own {COLOR_2 YELLOW}Special Ability{END_COLOR_TEXT_2}\nwhen it leaves the floor.\0" .align 2,0 .global MoveNameRolePlay @@ -1400,7 +1400,7 @@ MoveNameGrowl: .global MoveDescriptionNightShade MoveDescriptionNightShade: -.string "Damages all foes around the user.\nThe amount of damage depends on the\nuser{APOSTROPHE}s {COLOR_2 YELLOW}level{END_COLOR_TEXT_2}.\0" +.string "Damages all foes around the user.\nThe amount of damage depends on the\nuser's {COLOR_2 YELLOW}level{END_COLOR_TEXT_2}.\0" .align 2,0 .global MoveNameNightShade @@ -1410,7 +1410,7 @@ MoveNameNightShade: .global MoveDescriptionAmnesia MoveDescriptionAmnesia: -.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by\ntwo levels.\0" +.string "Boosts the user's {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by\ntwo levels.\0" .align 2,0 .global MoveNameAmnesia @@ -1420,7 +1420,7 @@ MoveNameAmnesia: .global MoveDescriptionThief MoveDescriptionThief: -.string "Inflicts damage on the target.\nIt also snatches the target{APOSTROPHE}s hold item\nto make it the user{APOSTROPHE}s.\0" +.string "Inflicts damage on the target.\nIt also snatches the target's hold item\nto make it the user's.\0" .align 2,0 .global MoveNameThief @@ -1430,7 +1430,7 @@ MoveNameThief: .global MoveDescriptionMudSlap MoveDescriptionMudSlap: -.string "Inflicts damage on the target.\nIt also lowers the target{APOSTROPHE}s {COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2} by\none level.\0" +.string "Inflicts damage on the target.\nIt also lowers the target's {COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2} by\none level.\0" .align 2,0 .global MoveNameMudSlap @@ -1440,7 +1440,7 @@ MoveNameMudSlap: .global MoveDescriptionMudSport MoveDescriptionMudSport: -.string "Changes the floor{APOSTROPHE}s status to {COLOR_2 CYAN}Mud Sport{END_COLOR_TEXT_2}{COMMA}\nwhich halves the power of Electric-type\nmoves.\0" +.string "Changes the floor's status to {COLOR_2 CYAN}Mud Sport{END_COLOR_TEXT_2},\nwhich halves the power of Electric-type\nmoves.\0" .align 2,0 .global MoveNameMudSport @@ -1465,7 +1465,7 @@ MoveNameTripleKick: .global MoveDescriptionTrick MoveDescriptionTrick: -.string "Switches the user{APOSTROPHE}s hold item with the\ntarget{APOSTROPHE}s hold item.\nIt only works if both Pokémon hold items.\0" +.string "Switches the user's hold item with the\ntarget's hold item.\nIt only works if both Pokémon hold items.\0" .align 2,0 .global MoveNameTrick @@ -1480,7 +1480,7 @@ MoveNameDragonClaw: .global MoveDescriptionTriAttack MoveDescriptionTriAttack: -.string "Inflicts damage on the target.\nIt may also cause a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}{COMMA}\n{COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}{COMMA} or leave the target {COLOR_2 CYAN}frozen{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target.\nIt may also cause a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2},\n{COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}, or leave the target {COLOR_2 CYAN}frozen{END_COLOR_TEXT_2}.\0" .align 2,0 .global MoveNameTriAttack @@ -1495,12 +1495,12 @@ MoveNameHiJumpKick: .global MoveDescriptionBounce MoveDescriptionBounce: -.string "The user gains the {COLOR_2 CYAN}Bouncing{END_COLOR_TEXT_2} status{COMMA}\nmaking it attack strongly on the next turn.\nIt may also cause {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" +.string "The user gains the {COLOR_2 CYAN}Bouncing{END_COLOR_TEXT_2} status,\nmaking it attack strongly on the next turn.\nIt may also cause {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" .align 2,0 .global MoveDescriptionJumpKick MoveDescriptionJumpKick: -.string "Inflicts damage on the target{COMMA} but hurts\nthe user if it misses.\0" +.string "Inflicts damage on the target, but hurts\nthe user if it misses.\0" .align 2,0 .global MoveNameJumpKick @@ -1510,7 +1510,7 @@ MoveNameJumpKick: .global MoveDescriptionTakeDown MoveDescriptionTakeDown: -.string "Inflicts damage on the target{COMMA} but also\nhurts the user.\0" +.string "Inflicts damage on the target, but also\nhurts the user.\0" .align 2,0 .global MoveNameTakeDown @@ -1540,7 +1540,7 @@ MoveNamePoisonpowder: .global MoveDescriptionPoisonFang MoveDescriptionPoisonFang: -.string "Inflicts damage on the target.\nIt may also leave the target\n{COLOR_2 CYAN}badly poisoned{END_COLOR_TEXT_2}{COMMA} damaging it over\nseveral turns.\0" +.string "Inflicts damage on the target.\nIt may also leave the target\n{COLOR_2 CYAN}badly poisoned{END_COLOR_TEXT_2}, damaging it over\nseveral turns.\0" .align 2,0 .global MoveNamePoisonFang @@ -1550,7 +1550,7 @@ MoveNamePoisonFang: .global MoveDescriptionToxic MoveDescriptionToxic: -.string "{COLOR_2 CYAN}Badly poisons{END_COLOR_TEXT_2} the target.\nIf a Pokémon is {COLOR_2 CYAN}badly poisoned{END_COLOR_TEXT_2}{COMMA} it\nsustains damage over several turns.\0" +.string "{COLOR_2 CYAN}Badly poisons{END_COLOR_TEXT_2} the target.\nIf a Pokémon is {COLOR_2 CYAN}badly poisoned{END_COLOR_TEXT_2}, it\nsustains damage over several turns.\0" .align 2,0 .global MoveNameToxic @@ -1560,7 +1560,7 @@ MoveNameToxic: .global MoveDescriptionPoison MoveDescriptionPoison: -.string "{COLOR_2 CYAN}Poisons{END_COLOR_TEXT_2} the target.\nIf a Pokémon is {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}{COMMA} it sustains\ndamage over several turns.\0" +.string "{COLOR_2 CYAN}Poisons{END_COLOR_TEXT_2} the target.\nIf a Pokémon is {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}, it sustains\ndamage over several turns.\0" .align 2,0 .global MoveNameHowl @@ -1570,7 +1570,7 @@ MoveNameHowl: .global MoveDescriptionBlock MoveDescriptionBlock: -.string "Inflicts the {COLOR_2 CYAN}Leg Hold{END_COLOR_TEXT_2} status on the\ntarget{COMMA} making it incapable of movement.\0" +.string "Inflicts the {COLOR_2 CYAN}Leg Hold{END_COLOR_TEXT_2} status on the\ntarget, making it incapable of movement.\0" .align 2,0 .global MoveNameBlock @@ -1580,7 +1580,7 @@ MoveNameBlock: .global MoveDescriptionZapCannon MoveDescriptionZapCannon: -.string "Inflicts damage on the target{COMMA} even at a\ndistance. It also causes {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}{COMMA}\npreventing any attacks or moves.\0" +.string "Inflicts damage on the target, even at a\ndistance. It also causes {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2},\npreventing any attacks or moves.\0" .align 2,0 .global MoveNameZapCannon @@ -1605,7 +1605,7 @@ MoveNameQuickAttack: .global MoveDescriptionShockWave MoveDescriptionShockWave: -.string "Inflicts damage on the target{COMMA} even at a\ndistance.\nIt never misses.\0" +.string "Inflicts damage on the target, even at a\ndistance.\nIt never misses.\0" .align 2,0 .global MoveNameShockWave @@ -1630,7 +1630,7 @@ MoveNameTeleport: .global MoveDescriptionBoostDefenseTwo MoveDescriptionBoostDefenseTwo: -.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by two levels.\0" +.string "Boosts the user's {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by two levels.\0" .align 2,0 .global MoveNameIronDefense @@ -1650,7 +1650,7 @@ MoveNameHelpingHand: .global MoveDescriptionConversion2 MoveDescriptionConversion2: -.string "The user gains the {COLOR_2 CYAN}Conversion 2{END_COLOR_TEXT_2} status.\nIt changes the user{APOSTROPHE}s type to one that is\nstrong against the move type it took last.\0" +.string "The user gains the {COLOR_2 CYAN}Conversion 2{END_COLOR_TEXT_2} status.\nIt changes the user's type to one that is\nstrong against the move type it took last.\0" .align 2,0 .global MoveNameConversion2 @@ -1660,7 +1660,7 @@ MoveNameConversion2: .global MoveDescriptionConversion MoveDescriptionConversion: -.string "Changes the user{APOSTROPHE}s type into the same\ntype as one of its moves.\0" +.string "Changes the user's type into the same\ntype as one of its moves.\0" .align 2,0 .global MoveNameConversion @@ -1675,7 +1675,7 @@ MoveNameVineWhip: .global MoveDescriptionSwordsDance MoveDescriptionSwordsDance: -.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by two levels.\0" +.string "Boosts the user's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by two levels.\0" .align 2,0 .global MoveNameSwordsDance @@ -1735,7 +1735,7 @@ MoveNameTaunt: .global MoveDescriptionConfuse MoveDescriptionConfuse: -.string "Inflicts the {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} status on the\ntarget{COMMA} making its attacks and\nmovements erratic.\0" +.string "Inflicts the {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} status on the\ntarget, making its attacks and\nmovements erratic.\0" .align 2,0 .global MoveNameSupersonic @@ -1745,7 +1745,7 @@ MoveNameSupersonic: .global MoveDescriptionSeismicToss MoveDescriptionSeismicToss: -.string "Inflicts damage on the target.\nThe amount of damage depends on the\nuser{APOSTROPHE}s {COLOR_2 YELLOW}level{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target.\nThe amount of damage depends on the\nuser's {COLOR_2 YELLOW}level{END_COLOR_TEXT_2}.\0" .align 2,0 .global MoveNameSeismicToss @@ -1785,7 +1785,7 @@ MoveNameSoftboiled: .global MoveDescriptionTwineedle MoveDescriptionTwineedle: -.string "Hits the target twice{COMMA} even at a distance.\nIt may also leave the target {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}{COMMA}\ndamaging it over several turns.\0" +.string "Hits the target twice, even at a distance.\nIt may also leave the target {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2},\ndamaging it over several turns.\0" .align 2,0 .global MoveNameTwineedle @@ -1795,7 +1795,7 @@ MoveNameTwineedle: .global MoveDescriptionMultiHitDistance MoveDescriptionMultiHitDistance: -.string "Inflicts damage on the target{COMMA} even at a\ndistance.\nIt hits two to five times in succession.\0" +.string "Inflicts damage on the target, even at a\ndistance.\nIt hits two to five times in succession.\0" .align 2,0 .global MoveNameBulletSeed @@ -1805,7 +1805,7 @@ MoveNameBulletSeed: .global MoveDescriptionTwister MoveDescriptionTwister: -.string "Inflicts damage on the target. It may also\ncause the target to {COLOR_2 CYAN}cringe{END_COLOR_TEXT_2}{COMMA} making\nit incapable of action. Doubles damage\non a {COLOR_2 CYAN}flying{END_COLOR_TEXT_2} or {COLOR_2 CYAN}bouncing{END_COLOR_TEXT_2} Pokémon.\0" +.string "Inflicts damage on the target. It may also\ncause the target to {COLOR_2 CYAN}cringe{END_COLOR_TEXT_2}, making\nit incapable of action. Doubles damage\non a {COLOR_2 CYAN}flying{END_COLOR_TEXT_2} or {COLOR_2 CYAN}bouncing{END_COLOR_TEXT_2} Pokémon.\0" .align 2,0 .global MoveNameTwister @@ -1830,7 +1830,7 @@ MoveNameStockpile: .global MoveDescriptionMuddyWater MoveDescriptionMuddyWater: -.string "Inflicts damage on the target.\nIt may also lower the target{APOSTROPHE}s {COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2}\nby one level.\0" +.string "Inflicts damage on the target.\nIt may also lower the target's {COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2}\nby one level.\0" .align 2,0 .global MoveNameMuddyWater @@ -1850,7 +1850,7 @@ MoveNameFireBlast: .global MoveDescriptionDive MoveDescriptionDive: -.string "The user gains the {COLOR_2 CYAN}Diving{END_COLOR_TEXT_2} status{COMMA}\nmaking it attack strongly on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\nIt can{APOSTROPHE}t be used without water.\0" +.string "The user gains the {COLOR_2 CYAN}Diving{END_COLOR_TEXT_2} status,\nmaking it attack strongly on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\nIt can't be used without water.\0" .align 2,0 .global MoveNameDive @@ -1860,7 +1860,7 @@ MoveNameDive: .global MoveDescriptionExplosion MoveDescriptionExplosion: -.string "Makes the user blow up in\na {COLOR_2 CYAN}huge explosion{END_COLOR_TEXT_2}{COMMA} inflicting damage on all\nsurrounding Pokémon. It also destroys\nsurrounding items and walls.\0" +.string "Makes the user blow up in\na {COLOR_2 CYAN}huge explosion{END_COLOR_TEXT_2}, inflicting damage on all\nsurrounding Pokémon. It also destroys\nsurrounding items and walls.\0" .align 2,0 .global MoveNameExplosion @@ -1875,7 +1875,7 @@ MoveNameTackle: .global MoveDescriptionFly MoveDescriptionFly: -.string "The user gains the {COLOR_2 CYAN}Flying{END_COLOR_TEXT_2} status{COMMA} \nmaking it attack strongly on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" +.string "The user gains the {COLOR_2 CYAN}Flying{END_COLOR_TEXT_2} status, \nmaking it attack strongly on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" .align 2,0 .global MoveNameFly @@ -1885,7 +1885,7 @@ MoveNameFly: .global MoveDescriptionSonicboom MoveDescriptionSonicboom: -.string "Inflicts a set amount of damage on the\ntarget{COMMA} even at a distance.\0" +.string "Inflicts a set amount of damage on the\ntarget, even at a distance.\0" .align 2,0 .global MoveNameSonicboom @@ -1895,7 +1895,7 @@ MoveNameSonicboom: .global MoveDescriptionSolarbeam MoveDescriptionSolarbeam: -.string "The user gains the {COLOR_2 CYAN}Solarbeam{END_COLOR_TEXT_2} status{COMMA}\nmaking it attack strongly on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" +.string "The user gains the {COLOR_2 CYAN}Solarbeam{END_COLOR_TEXT_2} status,\nmaking it attack strongly on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" .align 2,0 .global MoveNameSolarbeam @@ -1925,7 +1925,7 @@ MoveNameSacredFire: .global MoveDescriptionGrowth MoveDescriptionGrowth: -.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2} by one\nlevel.\0" +.string "Boosts the user's {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2} by one\nlevel.\0" .align 2,0 .global MoveNameGrowth @@ -1935,7 +1935,7 @@ MoveNameGrowth: .global MoveDescriptionPoisonChance MoveDescriptionPoisonChance: -.string "Inflicts damage on the target.\nIt may also leave the target {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}{COMMA}\ndamaging it over several turns.\0" +.string "Inflicts damage on the target.\nIt may also leave the target {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2},\ndamaging it over several turns.\0" .align 2,0 .global MoveNameSmog @@ -1965,7 +1965,7 @@ MoveNameSandTomb: .global MoveDescriptionLowerAccuracy MoveDescriptionLowerAccuracy: -.string "Lowers the target{APOSTROPHE}s {COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2} by one level.\0" +.string "Lowers the target's {COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2} by one level.\0" .align 2,0 .global MoveNameSandAttack @@ -1975,7 +1975,7 @@ MoveNameSandAttack: .global MoveDescriptionSandstorm MoveDescriptionSandstorm: -.string "Changes the dungeon floor{APOSTROPHE}s weather to\n{COLOR_2 CYAN}Sandstorm{END_COLOR_TEXT_2} for several turns.\0" +.string "Changes the dungeon floor's weather to\n{COLOR_2 CYAN}Sandstorm{END_COLOR_TEXT_2} for several turns.\0" .align 2,0 .global MoveNameSandstorm @@ -1995,7 +1995,7 @@ MoveNameHeadbutt: .global MoveDescriptionSketch MoveDescriptionSketch: -.string "Copies the move last used by the target\nand makes it the user{APOSTROPHE}s.\n{COLOR_2 GREEN}Sketch{END_COLOR_TEXT_2} disappears after it copies a move.\0" +.string "Copies the move last used by the target\nand makes it the user's.\n{COLOR_2 GREEN}Sketch{END_COLOR_TEXT_2} disappears after it copies a move.\0" .align 2,0 .global MoveNameSketch @@ -2005,7 +2005,7 @@ MoveNameSketch: .global MoveDescriptionSkillSwap MoveDescriptionSkillSwap: -.string "Switches the user{APOSTROPHE}s {COLOR_2 YELLOW}Special Ability{END_COLOR_TEXT_2} with\nthat of the target.\0" +.string "Switches the user's {COLOR_2 YELLOW}Special Ability{END_COLOR_TEXT_2} with\nthat of the target.\0" .align 2,0 .global MoveNameSkillSwap @@ -2030,7 +2030,7 @@ MoveNameAbsorb: .global MoveDescriptionSafeguard MoveDescriptionSafeguard: -.string "The user and team members in the same\nroom gain the {COLOR_2 CYAN}Safeguard{END_COLOR_TEXT_2} status{COMMA}\nwhich prevents status problems.\0" +.string "The user and team members in the same\nroom gain the {COLOR_2 CYAN}Safeguard{END_COLOR_TEXT_2} status,\nwhich prevents status problems.\0" .align 2,0 .global MoveNameSafeguard @@ -2040,7 +2040,7 @@ MoveNameSafeguard: .global MoveDescriptionExtrasensory MoveDescriptionExtrasensory: -.string "Inflicts damage on the target.\nIt may also cause the target to {COLOR_2 CYAN}cringe{END_COLOR_TEXT_2}{COMMA}\nmaking it incapable of attacking\nor using moves.\0" +.string "Inflicts damage on the target.\nIt may also cause the target to {COLOR_2 CYAN}cringe{END_COLOR_TEXT_2},\nmaking it incapable of attacking\nor using moves.\0" .align 2,0 .global MoveNameExtrasensory @@ -2070,7 +2070,7 @@ MoveNameFissure: .global MoveDescriptionMist MoveDescriptionMist: -.string "The user gains the {COLOR_2 CYAN}Mist{END_COLOR_TEXT_2} status.\nIt prevents {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Special\nAttack{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2}{COMMA} and\n{COLOR_2 YELLOW}Evasion{END_COLOR_TEXT_2} from being reduced.\0" +.string "The user gains the {COLOR_2 CYAN}Mist{END_COLOR_TEXT_2} status.\nIt prevents {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Special\nAttack{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2}, and\n{COLOR_2 YELLOW}Evasion{END_COLOR_TEXT_2} from being reduced.\0" .align 2,0 .global MoveNameMist @@ -2100,7 +2100,7 @@ MoveNameCharge: .global MoveDescriptionShadowBall MoveDescriptionShadowBall: -.string "Inflicts damage on the target{COMMA} even at a\ndistance. It may also lower the target{APOSTROPHE}s\n{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by one level.\0" +.string "Inflicts damage on the target, even at a\ndistance. It may also lower the target's\n{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by one level.\0" .align 2,0 .global MoveNameShadowBall @@ -2135,7 +2135,7 @@ MoveNameStunSpore: .global MoveDescriptionSelfdestruct MoveDescriptionSelfdestruct: -.string "Makes the user {COLOR_2 CYAN}explode{END_COLOR_TEXT_2}{COMMA} inflicting\ndamage on all surrounding Pokémon.\nIt also destroys surrounding items.\0" +.string "Makes the user {COLOR_2 CYAN}explode{END_COLOR_TEXT_2}, inflicting\ndamage on all surrounding Pokémon.\nIt also destroys surrounding items.\0" .align 2,0 .global MoveNameSelfdestruct @@ -2145,7 +2145,7 @@ MoveNameSelfdestruct: .global MoveDescriptionLowerDefense MoveDescriptionLowerDefense: -.string "Lowers the target{APOSTROPHE}s {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by one level.\0" +.string "Lowers the target's {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by one level.\0" .align 2,0 .global MoveNameTailWhip @@ -2155,7 +2155,7 @@ MoveNameTailWhip: .global MoveDescriptionFlail MoveDescriptionFlail: -.string "Inflicts damage on the target.\nThe lower the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}{COMMA} the greater\nthe damage.\0" +.string "Inflicts damage on the target.\nThe lower the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}, the greater\nthe damage.\0" .align 2,0 .global MoveNameFlail @@ -2190,7 +2190,7 @@ MoveNameEarthquake: .global MoveDescriptionRecover MoveDescriptionRecover: -.string "Restores the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} by half its\n{COLOR_2 YELLOW}maximum HP{END_COLOR_TEXT_2}.\0" +.string "Restores the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} by half its\n{COLOR_2 YELLOW}maximum HP{END_COLOR_TEXT_2}.\0" .align 2,0 .global MoveNameRecover @@ -2200,7 +2200,7 @@ MoveNameRecover: .global MoveDescriptionRecoil MoveDescriptionRecoil: -.string "Inflicts damage on the target.\nHowever{COMMA} it also damages the user.\0" +.string "Inflicts damage on the target.\nHowever, it also damages the user.\0" .align 2,0 .global MoveNameSubmission @@ -2210,7 +2210,7 @@ MoveNameSubmission: .global MoveDescriptionPsychUp MoveDescriptionPsychUp: -.string "Copies the target{APOSTROPHE}s levels for stats such\nas {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}.\0" +.string "Copies the target's levels for stats such\nas {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}.\0" .align 2,0 .global MoveNamePsychUp @@ -2225,7 +2225,7 @@ MoveNameSignalBeam: .global MoveDescriptionWaterSpout MoveDescriptionWaterSpout: -.string "Inflicts damage on the target.\nThe higher the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}{COMMA} the greater\nthe damage.\0" +.string "Inflicts damage on the target.\nThe higher the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}, the greater\nthe damage.\0" .align 2,0 .global MoveNameWaterSpout @@ -2235,7 +2235,7 @@ MoveNameWaterSpout: .global MoveDescriptionUproar MoveDescriptionUproar: -.string "The user and team members in the room\ngain the {COLOR_2 CYAN}Sleepless{END_COLOR_TEXT_2} status{COMMA}\nso they cannot fall asleep.\nIt also awakens sleeping team members.\0" +.string "The user and team members in the room\ngain the {COLOR_2 CYAN}Sleepless{END_COLOR_TEXT_2} status,\nso they cannot fall asleep.\nIt also awakens sleeping team members.\0" .align 2,0 .global MoveNameUproar @@ -2245,7 +2245,7 @@ MoveNameUproar: .global MoveDescriptionPsychoBoost MoveDescriptionPsychoBoost: -.string "Inflicts damage on the target.\nHowever{COMMA} it also lowers the user{APOSTROPHE}s {COLOR_2 YELLOW}Special\nAttack{END_COLOR_TEXT_2} by two levels.\0" +.string "Inflicts damage on the target.\nHowever, it also lowers the user's {COLOR_2 YELLOW}Special\nAttack{END_COLOR_TEXT_2} by two levels.\0" .align 2,0 .global MoveNamePsychoBoost @@ -2260,7 +2260,7 @@ MoveNamePsychic: .global MoveDescriptionPsywave MoveDescriptionPsywave: -.string "Inflicts damage on the target{COMMA} even at a\ndistance. The amount of damage depends\non the user{APOSTROPHE}s {COLOR_2 YELLOW}level{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target, even at a\ndistance. The amount of damage depends\non the user's {COLOR_2 YELLOW}level{END_COLOR_TEXT_2}.\0" .align 2,0 .global MoveNamePsywave @@ -2270,7 +2270,7 @@ MoveNamePsywave: .global MoveDescriptionConfuseChanceDistance MoveDescriptionConfuseChanceDistance: -.string "Inflicts damage on the target{COMMA} even at a\ndistance. It may also leave the target\n{COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target, even at a\ndistance. It may also leave the target\n{COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.\0" .align 2,0 .global MoveNamePsybeam @@ -2280,7 +2280,7 @@ MoveNamePsybeam: .global MoveDescriptionLowerSpeed MoveDescriptionLowerSpeed: -.string "Lowers the target{APOSTROPHE}s {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} by\none level.\0" +.string "Lowers the target's {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} by\none level.\0" .align 2,0 .global MoveNameScaryFace @@ -2305,7 +2305,7 @@ MoveNameEndure: .global MoveDescriptionMeteorMash MoveDescriptionMeteorMash: -.string "Inflicts damage on the target{COMMA} even at a\ndistance. It may also boost the user{APOSTROPHE}s\n{COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by one level.\0" +.string "Inflicts damage on the target, even at a\ndistance. It may also boost the user's\n{COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by one level.\0" .align 2,0 .global MoveNameMeteorMash @@ -2315,7 +2315,7 @@ MoveNameMeteorMash: .global MoveDescriptionFollowMe MoveDescriptionFollowMe: -.string "The user gains the {COLOR_2 CYAN}Decoy{END_COLOR_TEXT_2} status{COMMA}\nmaking it the primary target of foes.\0" +.string "The user gains the {COLOR_2 CYAN}Decoy{END_COLOR_TEXT_2} status,\nmaking it the primary target of foes.\0" .align 2,0 .global MoveNameFollowMe @@ -2335,7 +2335,7 @@ MoveNamePowderSnow: .global MoveDescriptionSkyAttack MoveDescriptionSkyAttack: -.string "The user gains the {COLOR_2 CYAN}Sky Attack{END_COLOR_TEXT_2} status{COMMA}\nand it attacks strongly on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" +.string "The user gains the {COLOR_2 CYAN}Sky Attack{END_COLOR_TEXT_2} status,\nand it attacks strongly on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" .align 2,0 .global MoveNameSkyAttack @@ -2345,7 +2345,7 @@ MoveNameSkyAttack: .global MoveDescriptionCosmicPower MoveDescriptionCosmicPower: -.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Special\nDefense{END_COLOR_TEXT_2} by one level.\0" +.string "Boosts the user's {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Special\nDefense{END_COLOR_TEXT_2} by one level.\0" .align 2,0 .global MoveNameCosmicPower @@ -2355,7 +2355,7 @@ MoveNameCosmicPower: .global MoveDescriptionMindReader MoveDescriptionMindReader: -.string "Gives the user {COLOR_2 CYAN}Sure Shot{END_COLOR_TEXT_2} status{COMMA} making\nall its moves and attacks completely\naccurate.\0" +.string "Gives the user {COLOR_2 CYAN}Sure Shot{END_COLOR_TEXT_2} status, making\nall its moves and attacks completely\naccurate.\0" .align 2,0 .global MoveNameMindReader @@ -2365,7 +2365,7 @@ MoveNameMindReader: .global MoveDescriptionIcyWind MoveDescriptionIcyWind: -.string "Inflicts damage on the target{COMMA} even at a\ndistance. It also lowers the target{APOSTROPHE}s\n{COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} by one level.\0" +.string "Inflicts damage on the target, even at a\ndistance. It also lowers the target's\n{COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} by one level.\0" .align 2,0 .global MoveNameIcyWind @@ -2375,7 +2375,7 @@ MoveNameIcyWind: .global MoveDescriptionRapidSpin MoveDescriptionRapidSpin: -.string "Inflicts damage on the target.\nIt also frees the user from {COLOR_2 CYAN}Leech Seed{END_COLOR_TEXT_2}{COMMA}\n{COLOR_2 CYAN}Leg Hold{END_COLOR_TEXT_2}{COMMA} {COLOR_2 CYAN}Ingrain{END_COLOR_TEXT_2}{COMMA} or {COLOR_2 CYAN}Constriction{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target.\nIt also frees the user from {COLOR_2 CYAN}Leech Seed{END_COLOR_TEXT_2},\n{COLOR_2 CYAN}Leg Hold{END_COLOR_TEXT_2}, {COLOR_2 CYAN}Ingrain{END_COLOR_TEXT_2}, or {COLOR_2 CYAN}Constriction{END_COLOR_TEXT_2}.\0" .align 2,0 .global MoveNameRapidSpin @@ -2395,7 +2395,7 @@ MoveNameAgility: .global MoveDescriptionSynthesis MoveDescriptionSynthesis: -.string "Restores the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\nThe amount of {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} regained depends on\nthe weather.\0" +.string "Restores the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\nThe amount of {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} regained depends on\nthe weather.\0" .align 2,0 .global MoveNameSynthesis @@ -2405,7 +2405,7 @@ MoveNameSynthesis: .global MoveDescriptionAncientpower MoveDescriptionAncientpower: -.string "Inflicts damage on the target.\nIt may also simultaneously raise by one\nlevel {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}{COMMA}\n{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}{COMMA} and {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target.\nIt may also simultaneously raise by one\nlevel {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2},\n{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}, and {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2}.\0" .align 2,0 .global MoveNameAncientpower @@ -2415,7 +2415,7 @@ MoveNameAncientpower: .global MoveDescriptionLowKick MoveDescriptionLowKick: -.string "Inflicts damage on the target.\nThe heavier the target{COMMA} the greater the\ndamage.\0" +.string "Inflicts damage on the target.\nThe heavier the target, the greater the\ndamage.\0" .align 2,0 .global MoveNameLowKick @@ -2425,7 +2425,7 @@ MoveNameLowKick: .global MoveDescriptionOutrage MoveDescriptionOutrage: -.string "Hits the target two to five times in\nsuccession. However{COMMA} it also makes the\nuser {COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.\0" +.string "Hits the target two to five times in\nsuccession. However, it also makes the\nuser {COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.\0" .align 2,0 .global MoveNameOutrage @@ -2445,7 +2445,7 @@ MoveNameMeanLook: .global MoveDescriptionHaze MoveDescriptionHaze: -.string "Resets the {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}{COMMA} etc.{COMMA} of all\nPokémon on the floor whether they were\nboosted or lowered.\0" +.string "Resets the {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}, etc., of all\nPokémon on the floor whether they were\nboosted or lowered.\0" .align 2,0 .global MoveNameHaze @@ -2460,7 +2460,7 @@ MoveNameCrabhammer: .global MoveDescriptionLegHolder MoveDescriptionLegHolder: -.string "Inflicts the {COLOR_2 CYAN}Leg Hold{END_COLOR_TEXT_2} status on the target{COMMA}\nmaking it incapable of movement.\0" +.string "Inflicts the {COLOR_2 CYAN}Leg Hold{END_COLOR_TEXT_2} status on the target,\nmaking it incapable of movement.\0" .align 2,0 .global MoveNameSpiderWeb @@ -2470,7 +2470,7 @@ MoveNameSpiderWeb: .global MoveDescriptionTickle MoveDescriptionTickle: -.string "Reduces the target{APOSTROPHE}s {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}\nby one level.\0" +.string "Reduces the target's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}\nby one level.\0" .align 2,0 .global MoveNameTickle @@ -2480,7 +2480,7 @@ MoveNameTickle: .global MoveDescriptionSleep MoveDescriptionSleep: -.string "Makes the target go to {COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}{COMMA} causing it\nto be incapable of action.\0" +.string "Makes the target go to {COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}, causing it\nto be incapable of action.\0" .align 2,0 .global MoveNameGrasswhistle @@ -2490,7 +2490,7 @@ MoveNameGrasswhistle: .global MoveDescriptionMetalSound MoveDescriptionMetalSound: -.string "Reduces the target{APOSTROPHE}s {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by\nthree levels.\0" +.string "Reduces the target's {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by\nthree levels.\0" .align 2,0 .global MoveNameMetalSound @@ -2500,7 +2500,7 @@ MoveNameMetalSound: .global MoveDescriptionSilverWind MoveDescriptionSilverWind: -.string "Inflicts damage on foes in the same room.\nIt may also simultaneously raise by one\nlevel {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}{COMMA} {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}{COMMA}\n{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}{COMMA} and {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on foes in the same room.\nIt may also simultaneously raise by one\nlevel {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2},\n{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}, and {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2}.\0" .align 2,0 .global MoveNameSilverWind @@ -2530,7 +2530,7 @@ MoveNameSpore: .global MoveDescriptionSmellingsalt MoveDescriptionSmellingsalt: -.string "Inflicts damage on the target.\nIt inflicts greater damage if the target\nhas {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}{COMMA} but it also heals {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target.\nIt inflicts greater damage if the target\nhas {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}, but it also heals {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}.\0" .align 2,0 .global MoveNameSmellingsalt @@ -2540,7 +2540,7 @@ MoveNameSmellingsalt: .global MoveDescriptionReversal MoveDescriptionReversal: -.string "Inflicts damage on the target.\nThe lower the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}{COMMA} the greater the\ndamage it inflicts.\0" +.string "Inflicts damage on the target.\nThe lower the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}, the greater the\ndamage it inflicts.\0" .align 2,0 .global MoveNameReversal @@ -2550,7 +2550,7 @@ MoveNameReversal: .global MoveDescriptionDrain MoveDescriptionDrain: -.string "Inflicts damage on the target.\nIt also restores the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} based\non the damage it inflicted.\0" +.string "Inflicts damage on the target.\nIt also restores the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} based\non the damage it inflicted.\0" .align 2,0 .global MoveNameGigaDrain @@ -2560,7 +2560,7 @@ MoveNameGigaDrain: .global MoveDescriptionFocusPunch MoveDescriptionFocusPunch: -.string "The user gains the {COLOR_2 CYAN}Focus Punch{END_COLOR_TEXT_2} status{COMMA}\nand it attacks on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" +.string "The user gains the {COLOR_2 CYAN}Focus Punch{END_COLOR_TEXT_2} status,\nand it attacks on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" .align 2,0 .global MoveNameFocusPunch @@ -2570,7 +2570,7 @@ MoveNameFocusPunch: .global MoveDescriptionFocusEnergy MoveDescriptionFocusEnergy: -.string "The user gains the {COLOR_2 CYAN}Focus Energy{END_COLOR_TEXT_2} status{COMMA}\nraising its critical-hit rate.\0" +.string "The user gains the {COLOR_2 CYAN}Focus Energy{END_COLOR_TEXT_2} status,\nraising its critical-hit rate.\0" .align 2,0 .global MoveNameFocusEnergy @@ -2580,7 +2580,7 @@ MoveNameFocusEnergy: .global MoveDescriptionDamageLowerSpeed MoveDescriptionDamageLowerSpeed: -.string "Inflicts damage on the target.\nIt also lowers the target{APOSTROPHE}s {COLOR_2 YELLOW}Movement\nSpeed{END_COLOR_TEXT_2} by one level.\0" +.string "Inflicts damage on the target.\nIt also lowers the target's {COLOR_2 YELLOW}Movement\nSpeed{END_COLOR_TEXT_2} by one level.\0" .align 2,0 .global MoveNameRockTomb @@ -2590,7 +2590,7 @@ MoveNameRockTomb: .global MoveDescriptionBrickBreak MoveDescriptionBrickBreak: -.string "Shatters the target{APOSTROPHE}s {COLOR_2 CYAN}Reflect{END_COLOR_TEXT_2}\nor {COLOR_2 CYAN}Light Screen{END_COLOR_TEXT_2} to inflict damage.\0" +.string "Shatters the target's {COLOR_2 CYAN}Reflect{END_COLOR_TEXT_2}\nor {COLOR_2 CYAN}Light Screen{END_COLOR_TEXT_2} to inflict damage.\0" .align 2,0 .global MoveNameBrickBreak @@ -2600,7 +2600,7 @@ MoveNameBrickBreak: .global MoveDescriptionConstrict MoveDescriptionConstrict: -.string "Inflicts damage on the target.\nIt may also lower the target{APOSTROPHE}s {COLOR_2 YELLOW}Movement\nSpeed{END_COLOR_TEXT_2} by one level.\0" +.string "Inflicts damage on the target.\nIt may also lower the target's {COLOR_2 YELLOW}Movement\nSpeed{END_COLOR_TEXT_2} by one level.\0" .align 2,0 .global MoveNameConstrict @@ -2615,7 +2615,7 @@ MoveNameWithdraw: .global MoveDescriptionConstriction MoveDescriptionConstriction: -.string "Inflicts damage on the target.\nIt may also cause {COLOR_2 CYAN}constriction{END_COLOR_TEXT_2}{COMMA} making the\nfoe incapable of movement.\0" +.string "Inflicts damage on the target.\nIt may also cause {COLOR_2 CYAN}constriction{END_COLOR_TEXT_2}, making the\nfoe incapable of movement.\0" .align 2,0 .global MoveNameClamp @@ -2630,7 +2630,7 @@ MoveNameKarateChop: .global MoveDescriptionFacade MoveDescriptionFacade: -.string "Inflicts damage on the target.\nIf the user is {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}{COMMA} {COLOR_2 CYAN}badly poisoned{END_COLOR_TEXT_2}{COMMA}\nor has a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}{COMMA} its power is doubled.\0" +.string "Inflicts damage on the target.\nIf the user is {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}, {COLOR_2 CYAN}badly poisoned{END_COLOR_TEXT_2},\nor has a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}, its power is doubled.\0" .align 2,0 .global MoveNameFacade @@ -2640,7 +2640,7 @@ MoveNameFacade: .global MoveDescriptionEndeavor MoveDescriptionEndeavor: -.string "The difference between the foe{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} and\nthe user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} is applied as this move{APOSTROPHE}s\ndamage.\0" +.string "The difference between the foe's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} and\nthe user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} is applied as this move's\ndamage.\0" .align 2,0 .global MoveNameEndeavor @@ -2665,7 +2665,7 @@ MoveDescriptionThunder: .global MoveDescriptionLowerSpecialDefenseChance MoveDescriptionLowerSpecialDefenseChance: -.string "Inflicts damage on the target.\nIt may also lower the target{APOSTROPHE}s {COLOR_2 YELLOW}Special\nDefense{END_COLOR_TEXT_2} by one level.\0" +.string "Inflicts damage on the target.\nIt may also lower the target's {COLOR_2 YELLOW}Special\nDefense{END_COLOR_TEXT_2} by one level.\0" .align 2,0 .global MoveNameCrunch @@ -2675,7 +2675,7 @@ MoveNameCrunch: .global MoveDescriptionBide MoveDescriptionBide: -.string "The user gains the {COLOR_2 CYAN}Bide{END_COLOR_TEXT_2} status.\nWhen {COLOR_2 CYAN}Bide{END_COLOR_TEXT_2} is released{COMMA} the user looses an\nattack double the damage it took\nwhile waiting.\0" +.string "The user gains the {COLOR_2 CYAN}Bide{END_COLOR_TEXT_2} status.\nWhen {COLOR_2 CYAN}Bide{END_COLOR_TEXT_2} is released, the user looses an\nattack double the damage it took\nwhile waiting.\0" .align 2,0 .global MoveNameBide @@ -2685,7 +2685,7 @@ MoveNameBide: .global MoveDescriptionRazorWind MoveDescriptionRazorWind: -.string "The user gains the {COLOR_2 CYAN}Razor Wind{END_COLOR_TEXT_2} status{COMMA}\nand it looses a powerful attack with a\nhigh critical-hit rate on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" +.string "The user gains the {COLOR_2 CYAN}Razor Wind{END_COLOR_TEXT_2} status,\nand it looses a powerful attack with a\nhigh critical-hit rate on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" .align 2,0 .global MoveNameRazorWind @@ -2705,7 +2705,7 @@ MoveNameDisable: .global MoveDescriptionBoostDefense MoveDescriptionBoostDefense: -.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by one level.\0" +.string "Boosts the user's {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by one level.\0" .align 2,0 .global MoveNameHarden @@ -2725,7 +2725,7 @@ MoveNameGust: .global MoveDescriptionBoostEvasion MoveDescriptionBoostEvasion: -.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Evasion{END_COLOR_TEXT_2} by one level.\0" +.string "Boosts the user's {COLOR_2 YELLOW}Evasion{END_COLOR_TEXT_2} by one level.\0" .align 2,0 .global MoveNameDoubleTeam @@ -2735,7 +2735,7 @@ MoveNameDoubleTeam: .global MoveDescriptionBoostAttack MoveDescriptionBoostAttack: -.string "Boosts the user{APOSTROPHE}s {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by one level.\0" +.string "Boosts the user's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by one level.\0" .align 2,0 .global MoveNameSharpen @@ -2755,7 +2755,7 @@ MoveNameOdorSleuth: .global MoveDescriptionFlamethrower MoveDescriptionFlamethrower: -.string "Inflicts damage on the target{COMMA} even at a\ndistance. It may also cause a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}.\nIt thaws and frees frozen Pokémon.\0" +.string "Inflicts damage on the target, even at a\ndistance. It may also cause a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}.\nIt thaws and frees frozen Pokémon.\0" .align 2,0 .global MoveNameFlamethrower @@ -2790,7 +2790,7 @@ MoveNameStrength: .global MoveDescriptionGrudge MoveDescriptionGrudge: -.string "The user gains the {COLOR_2 CYAN}Grudge{END_COLOR_TEXT_2} status.\nIf the user is defeated{COMMA} it zeroes the {COLOR_2 YELLOW}PP{END_COLOR_TEXT_2}\nof the move last used by the foe.\0" +.string "The user gains the {COLOR_2 CYAN}Grudge{END_COLOR_TEXT_2} status.\nIf the user is defeated, it zeroes the {COLOR_2 YELLOW}PP{END_COLOR_TEXT_2}\nof the move last used by the foe.\0" .align 2,0 .global MoveNameGrudge @@ -2800,7 +2800,7 @@ MoveNameGrudge: .global MoveDescriptionReturn MoveDescriptionReturn: -.string "Inflicts damage on the target.\nIts power rises with the user{APOSTROPHE}s\n{COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target.\nIts power rises with the user's\n{COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.\0" .align 2,0 .global MoveNameReturn @@ -2820,7 +2820,7 @@ MoveNameWillOWisp: .global MoveDescriptionCringe MoveDescriptionCringe: -.string "Inflicts damage on the target.\nIt may also cause the target to {COLOR_2 CYAN}cringe{END_COLOR_TEXT_2}{COMMA}\nmaking it incapable of action.\0" +.string "Inflicts damage on the target.\nIt may also cause the target to {COLOR_2 CYAN}cringe{END_COLOR_TEXT_2},\nmaking it incapable of action.\0" .align 2,0 .global MoveNameAstonish @@ -2830,7 +2830,7 @@ MoveNameAstonish: .global MoveDescriptionFlatter MoveDescriptionFlatter: -.string "Inflicts the {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} status on the\ntarget{COMMA} but also raises its {COLOR_2 YELLOW}Special\nAttack{END_COLOR_TEXT_2} by one level.\0" +.string "Inflicts the {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} status on the\ntarget, but also raises its {COLOR_2 YELLOW}Special\nAttack{END_COLOR_TEXT_2} by one level.\0" .align 2,0 .global MoveNameFlatter @@ -2840,7 +2840,7 @@ MoveNameFlatter: .global MoveDescriptionOctazooka MoveDescriptionOctazooka: -.string "Inflicts damage on the target{COMMA} even at a\ndistance. It may also lower the target{APOSTROPHE}s\n{COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2} by one level.\0" +.string "Inflicts damage on the target, even at a\ndistance. It may also lower the target's\n{COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2} by one level.\0" .align 2,0 .global MoveNameOctazooka @@ -2850,7 +2850,7 @@ MoveNameOctazooka: .global MoveDescriptionMemento MoveDescriptionMemento: -.string "Sharply reduces the {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Special\nAttack{END_COLOR_TEXT_2} of all foes in the room. It also\ncuts the user{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} to one and warps the\nuser to a different place on the floor.\n\0" +.string "Sharply reduces the {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Special\nAttack{END_COLOR_TEXT_2} of all foes in the room. It also\ncuts the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} to one and warps the\nuser to a different place on the floor.\n\0" .align 2,0 .global MoveNameMemento @@ -2860,7 +2860,7 @@ MoveNameMemento: .global MoveDescriptionAuroraBeam MoveDescriptionAuroraBeam: -.string "Inflicts damage on the target{COMMA} even at a\ndistance. It may also halve the \ntarget{APOSTROPHE}s {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target, even at a\ndistance. It may also halve the \ntarget's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}.\0" .align 2,0 .global MoveNameAuroraBeam @@ -2870,7 +2870,7 @@ MoveNameAuroraBeam: .global MoveDescriptionOverheat MoveDescriptionOverheat: -.string "Damages all foes around the user{COMMA} but\nalso lowers the user{APOSTROPHE}s {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}\nby two levels and thaws frozen Pokémon.\0" +.string "Damages all foes around the user, but\nalso lowers the user's {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}\nby two levels and thaws frozen Pokémon.\0" .align 2,0 .global MoveNameOverheat @@ -2910,7 +2910,7 @@ MoveNamePursuit: .global MoveDescriptionSmokescreen MoveDescriptionSmokescreen: -.string "Inflicts the {COLOR_2 CYAN}Whiffer{END_COLOR_TEXT_2} status on the target{COMMA}\nmaking it miss almost all of its attacks\nand moves.\0" +.string "Inflicts the {COLOR_2 CYAN}Whiffer{END_COLOR_TEXT_2} status on the target,\nmaking it miss almost all of its attacks\nand moves.\0" .align 2,0 .global MoveNameSmokescreen @@ -2930,7 +2930,7 @@ MoveNameAirCutter: .global MoveDescriptionSpite MoveDescriptionSpite: -.string "Zeroes the {COLOR_2 YELLOW}PP{END_COLOR_TEXT_2} of the move last used by\nthe target{COMMA} making it unusable.\0" +.string "Zeroes the {COLOR_2 YELLOW}PP{END_COLOR_TEXT_2} of the move last used by\nthe target, making it unusable.\0" .align 2,0 .global MoveNameSpite @@ -2940,7 +2940,7 @@ MoveNameSpite: .global MoveDescriptionSing MoveDescriptionSing: -.string "Makes the target go to {COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}{COMMA} causing\nit to be incapable of action.\0" +.string "Makes the target go to {COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}, causing\nit to be incapable of action.\0" .align 2,0 .global MoveNameSing @@ -2950,7 +2950,7 @@ MoveNameSing: .global MoveDescriptionFakeTears MoveDescriptionFakeTears: -.string "Lowers the target{APOSTROPHE}s {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by\ntwo levels.\0" +.string "Lowers the target's {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by\ntwo levels.\0" .align 2,0 .global MoveNameFakeTears @@ -2960,7 +2960,7 @@ MoveNameFakeTears: .global MoveDescriptionWhirlpool MoveDescriptionWhirlpool: -.string "Inflicts damage on the target.\nIt may also cause {COLOR_2 CYAN}constriction{END_COLOR_TEXT_2}{COMMA} making the\nfoe incapable of movement.\nInflicts double damage on a {COLOR_2 CYAN}diving{END_COLOR_TEXT_2} foe.\0" +.string "Inflicts damage on the target.\nIt may also cause {COLOR_2 CYAN}constriction{END_COLOR_TEXT_2}, making the\nfoe incapable of movement.\nInflicts double damage on a {COLOR_2 CYAN}diving{END_COLOR_TEXT_2} foe.\0" .align 2,0 .global MoveNameWhirlpool @@ -2970,7 +2970,7 @@ MoveNameWhirlpool: .global MoveDescriptionWeatherBall MoveDescriptionWeatherBall: -.string "Inflicts damage on the target{COMMA} even at a\ndistance{COMMA} using the weather{APOSTROPHE}s power.\0" +.string "Inflicts damage on the target, even at a\ndistance, using the weather's power.\0" .align 2,0 .global MoveNameWeatherBall @@ -2980,7 +2980,7 @@ MoveNameWeatherBall: .global MoveDescriptionRockSlide MoveDescriptionRockSlide: -.string "Inflicts damage on the target.\nIt may also cause the target to {COLOR_2 CYAN}cringe{END_COLOR_TEXT_2}{COMMA} \nmaking it incapable of action.\0" +.string "Inflicts damage on the target.\nIt may also cause the target to {COLOR_2 CYAN}cringe{END_COLOR_TEXT_2}, \nmaking it incapable of action.\0" .align 2,0 .global MoveNameRockSlide @@ -3010,7 +3010,7 @@ MoveNameRockThrow: .global MoveDescriptionScreech MoveDescriptionScreech: -.string "Sharply lowers the target{APOSTROPHE}s {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}.\0" +.string "Sharply lowers the target's {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}.\0" .align 2,0 .global MoveNameHealBell @@ -3020,7 +3020,7 @@ MoveNameHealBell: .global MoveDescriptionSnore MoveDescriptionSnore: -.string "If the user is attacked while asleep{COMMA} it\ncounterattacks. It may also cause the\ntarget to {COLOR_2 CYAN}cringe{END_COLOR_TEXT_2}{COMMA} making it incapable\nof action.\0" +.string "If the user is attacked while asleep, it\ncounterattacks. It may also cause the\ntarget to {COLOR_2 CYAN}cringe{END_COLOR_TEXT_2}, making it incapable\nof action.\0" .align 2,0 .global MoveNameSnore @@ -3030,7 +3030,7 @@ MoveNameSnore: .global MoveDescriptionSwagger MoveDescriptionSwagger: -.string "Inflicts the {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} status on the\ntarget{COMMA} but also raises its {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by\ntwo levels.\0" +.string "Inflicts the {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} status on the\ntarget, but also raises its {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by\ntwo levels.\0" .align 2,0 .global MoveNameSwagger @@ -3040,7 +3040,7 @@ MoveNameSwagger: .global MoveDescriptionStringShot MoveDescriptionStringShot: -.string "Reduces the target{APOSTROPHE}s {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} by\none level{COMMA} even at a distance.\0" +.string "Reduces the target's {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} by\none level, even at a distance.\0" .align 2,0 .global MoveNameStringShot @@ -3050,7 +3050,7 @@ MoveNameStringShot: .global MoveDescriptionTorment MoveDescriptionTorment: -.string "Prevents the targeted Pokémon{COMMA}\nwhile it remains on the floor{COMMA} from \nusing the last move it used.\0" +.string "Prevents the targeted Pokémon,\nwhile it remains on the floor, from \nusing the last move it used.\0" .align 2,0 .global MoveNameTorment @@ -3060,7 +3060,7 @@ MoveNameTorment: .global MoveDescriptionPainSplit MoveDescriptionPainSplit: -.string "Adds the {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} of the user and the target{COMMA}\nthen shares it equally.\0" +.string "Adds the {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} of the user and the target,\nthen shares it equally.\0" .align 2,0 .global MoveNamePainSplit @@ -3070,7 +3070,7 @@ MoveNamePainSplit: .global MoveDescriptionSuperFang MoveDescriptionSuperFang: -.string "Halves the target{APOSTROPHE}s {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\0" +.string "Halves the target's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\0" .align 2,0 .global MoveNameSuperFang @@ -3100,7 +3100,7 @@ MoveNameCut: .global MoveDescriptionEncore MoveDescriptionEncore: -.string "Inflicts the {COLOR_2 CYAN}Encore{END_COLOR_TEXT_2} status on the target{COMMA}\nmaking it capable of using only\nthe move it last used.\0" +.string "Inflicts the {COLOR_2 CYAN}Encore{END_COLOR_TEXT_2} status on the target,\nmaking it capable of using only\nthe move it last used.\0" .align 2,0 .global MoveNameEncore @@ -3110,7 +3110,7 @@ MoveNameEncore: .global MoveDescriptionLowerSpeedChanceDistance MoveDescriptionLowerSpeedChanceDistance: -.string "Inflicts damage on the target{COMMA} even at a\ndistance. It may also lower the target{APOSTROPHE}s\n{COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} by one level.\0" +.string "Inflicts damage on the target, even at a\ndistance. It may also lower the target's\n{COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} by one level.\0" .align 2,0 .global MoveNameBubble @@ -3130,7 +3130,7 @@ MoveNameAromatherapy: .global MoveDescriptionHail MoveDescriptionHail: -.string "Changes the dungeon floor{APOSTROPHE}s weather to\n{COLOR_2 CYAN}Hail{END_COLOR_TEXT_2} for several turns.\0" +.string "Changes the dungeon floor's weather to\n{COLOR_2 CYAN}Hail{END_COLOR_TEXT_2} for several turns.\0" .align 2,0 .global MoveNameHail @@ -3140,7 +3140,7 @@ MoveNameHail: .global MoveDescriptionConfuseRay MoveDescriptionConfuseRay: -.string "Inflicts the {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} status on\nthe target{COMMA} making its attacks and\nmovements erratic.\0" +.string "Inflicts the {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} status on\nthe target, making its attacks and\nmovements erratic.\0" .align 2,0 .global MoveNameConfuseRay @@ -3150,7 +3150,7 @@ MoveNameConfuseRay: .global MoveDescriptionRainDance MoveDescriptionRainDance: -.string "Changes the dungeon floor{APOSTROPHE}s weather to\n{COLOR_2 CYAN}Rain{END_COLOR_TEXT_2} over several turns.\0" +.string "Changes the dungeon floor's weather to\n{COLOR_2 CYAN}Rain{END_COLOR_TEXT_2} over several turns.\0" .align 2,0 .global MoveNameRainDance @@ -3190,7 +3190,7 @@ MoveNameThrash: .global MoveDescriptionDig MoveDescriptionDig: -.string "The user gains the {COLOR_2 CYAN}Digging{END_COLOR_TEXT_2} status{COMMA}\nand it attacks on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" +.string "The user gains the {COLOR_2 CYAN}Digging{END_COLOR_TEXT_2} status,\nand it attacks on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" .align 2,0 .global MoveNameDig @@ -3220,7 +3220,7 @@ MoveNameMorningSun: .global MoveDescriptionNightmare MoveDescriptionNightmare: -.string "Inflicts the {COLOR_2 CYAN}Nightmare{END_COLOR_TEXT_2} status\non the target{COMMA} making it incapable\nof action.\0" +.string "Inflicts the {COLOR_2 CYAN}Nightmare{END_COLOR_TEXT_2} status\non the target, making it incapable\nof action.\0" .align 2,0 .global MoveNameNightmare @@ -3230,7 +3230,7 @@ MoveNameNightmare: .global MoveDescriptionLovelyKiss MoveDescriptionLovelyKiss: -.string "Makes all foes around the user go to {COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}{COMMA}\ncausing them to be incapable of action.\0" +.string "Makes all foes around the user go to {COLOR_2 CYAN}sleep{END_COLOR_TEXT_2},\ncausing them to be incapable of action.\0" .align 2,0 .global MoveNameLovelyKiss @@ -3265,7 +3265,7 @@ MoveUseTextUse: .global MoveDescriptionLowerDefenseChance MoveDescriptionLowerDefenseChance: -.string "Inflicts damage on the target.\nIt may also lower the target{APOSTROPHE}s {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}\nby one level.\0" +.string "Inflicts damage on the target.\nIt may also lower the target's {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}\nby one level.\0" .align 2,0 .global MoveNameIronTail diff --git a/data/scripts/personality_test.inc b/data/scripts/personality_test.inc index b19949f18..3bb3e89cb 100644 --- a/data/scripts/personality_test.inc +++ b/data/scripts/personality_test.inc @@ -52,7 +52,7 @@ .align 2,0 SeveralQuestions_826E16C: - .string "{CENTER_ALIGN}But before I can let you through{COMMA}\n" + .string "{CENTER_ALIGN}But before I can let you through,\n" .string "{CENTER_ALIGN}I have several questions for you.\0" .align 2,0 diff --git a/src/data/code_801B60C.h b/src/data/code_801B60C.h index cfbb439f6..7d534ee66 100644 --- a/src/data/code_801B60C.h +++ b/src/data/code_801B60C.h @@ -30,7 +30,7 @@ ALIGNED(4) static const u8 sFmtReceivedThePromised[] = _( "{CENTER_ALIGN}the promised {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}. "); ALIGNED(4) static const u8 sFmtTeamReceivedThePromised[] = _( - "{CENTER_ALIGN}{COLOR_1 YELLOW_5}{ARG_POKEMON_0}{END_COLOR_TEXT_1}{APOSTROPHE}s team received\n" + "{CENTER_ALIGN}{COLOR_1 YELLOW_5}{ARG_POKEMON_0}{END_COLOR_TEXT_1}'s team received\n" "{CENTER_ALIGN}the promised {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}."); ALIGNED(4) static const u8 sFmtTeamAlsoReceived[] = _( @@ -43,8 +43,8 @@ ALIGNED(4) static const u8 sFmtReceivedStatue[] = _( ALIGNED(4) static const u8 sFmtReceive1000Instead[] = _( "{CENTER_ALIGN}The {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}...\n" - "{CENTER_ALIGN}You{APOSTROPHE}ve already acquired it.{EXTRA_MSG}{CENTER_ALIGN}Sorry to see that...{EXTRA_MSG}{CENTER_ALIGN}In its place{COMMA} {COLOR_1 YELLOW_5}{ARG_POKEMON_0}{END_COLOR_TEXT_1}{COMMA}\n" - "{CENTER_ALIGN}you can have {COLOR_1 LIGHT_BLUE}1{COMMA}000{END_COLOR_TEXT_1} {POKE}."); + "{CENTER_ALIGN}You've already acquired it.{EXTRA_MSG}{CENTER_ALIGN}Sorry to see that...{EXTRA_MSG}{CENTER_ALIGN}In its place, {COLOR_1 YELLOW_5}{ARG_POKEMON_0}{END_COLOR_TEXT_1},\n" + "{CENTER_ALIGN}you can have {COLOR_1 LIGHT_BLUE}1,000{END_COLOR_TEXT_1} {POKE}."); ALIGNED(4) static const u8 sFmtFullSoSentToStorage[] = _( "{CENTER_ALIGN}Your Toolbox is full.\n" diff --git a/src/data/code_80227B8.h b/src/data/code_80227B8.h index c3fe35287..4e7fe4fb7 100644 --- a/src/data/code_80227B8.h +++ b/src/data/code_80227B8.h @@ -34,54 +34,54 @@ static const UnkTextStruct2 sUnknown_80DC5D4 = }; ALIGNED(4) static const u8 sTripleQuestionMark[] = _("???"); -ALIGNED(4) static const u8 sDoesNotAppearHungry[] = _("It doesn{APOSTROPHE}t appear to be hungry."); +ALIGNED(4) static const u8 sDoesNotAppearHungry[] = _("It doesn't appear to be hungry."); ALIGNED(4) static const u8 sFmtGummiBigFav[] = _( "{ARG_POKEMON_1} took the Gummi and ate it.\n" "This Gummi looks like a big favorite!\n" - "{ARG_POKEMON_1}{APOSTROPHE}s IQ went up!"); + "{ARG_POKEMON_1}'s IQ went up!"); ALIGNED(4) static const u8 sFmtGummiFav[] = _( "{ARG_POKEMON_1} took the Gummi and ate it.\n" "This Gummi looks like a favorite!\n" - "{ARG_POKEMON_1}{APOSTROPHE}s IQ went up!"); + "{ARG_POKEMON_1}'s IQ went up!"); ALIGNED(4) static const u8 sFmtGummiOkay[] = _( "{ARG_POKEMON_1} took the Gummi and ate it.\n" - "It doesn{APOSTROPHE}t seem to dislike this Gummi.\n" - "{ARG_POKEMON_1}{APOSTROPHE}s IQ went up!"); + "It doesn't seem to dislike this Gummi.\n" + "{ARG_POKEMON_1}'s IQ went up!"); ALIGNED(4) static const u8 sFmtGummiSatisfied[] = _( "{ARG_POKEMON_1} took the Gummi and ate it.\n" "It appears to be just a little satisfied.\n" - "{ARG_POKEMON_1}{APOSTROPHE}s IQ went up!"); + "{ARG_POKEMON_1}'s IQ went up!"); ALIGNED(4) static const u8 sFmtIQHelpedLearn[] = _( - "{ARG_POKEMON_1}{APOSTROPHE}s IQ helped it learn how to\n" + "{ARG_POKEMON_1}'s IQ helped it learn how to\n" "use {ARG_MOVE_ITEM_1}!"); ALIGNED(4) static const u8 sFmtPlusEverything[] = _( "Yes! {ARG_POKEMON_1} grew explosively!\n" - "Attack{COMMA} Defense{COMMA} and so on rose by 1!"); + "Attack, Defense, and so on rose by 1!"); ALIGNED(4) static const u8 sFmtPlusAtk[] = _( "Yes!\n" - "{ARG_POKEMON_1}{APOSTROPHE}s Attack rose by 1!"); + "{ARG_POKEMON_1}'s Attack rose by 1!"); ALIGNED(4) static const u8 sFmtPlusSpAtk[] = _( "Yes!\n" - "{ARG_POKEMON_1}{APOSTROPHE}s Special Attack rose by 1!"); + "{ARG_POKEMON_1}'s Special Attack rose by 1!"); ALIGNED(4) static const u8 sFmtPlusDef[] = _( "Yes!\n" - "{ARG_POKEMON_1}{APOSTROPHE}s Defense rose by 1!"); + "{ARG_POKEMON_1}'s Defense rose by 1!"); ALIGNED(4) static const u8 sFmtPlusSpDef[] = _( "Yes!\n" - "{ARG_POKEMON_1}{APOSTROPHE}s Special Defense rose by 1!"); + "{ARG_POKEMON_1}'s Special Defense rose by 1!"); -ALIGNED(4) static const u8 sNoGummis[] = _("You don{APOSTROPHE}t have any Gummis."); -ALIGNED(4) static const u8 sNoItem[] = _("You don{APOSTROPHE}t have an item."); +ALIGNED(4) static const u8 sNoGummis[] = _("You don't have any Gummis."); +ALIGNED(4) static const u8 sNoItem[] = _("You don't have an item."); ALIGNED(4) static const u8 sGummiGone[] = _("The Gummi is gone!"); ALIGNED(4) static const u8 sItemGone[] = _("The item is gone!"); ALIGNED(4) static const u8 sGive[] = _("Give"); diff --git a/src/data/common_strings_felicity_bank.h b/src/data/common_strings_felicity_bank.h index c7d7a27bc..b65a46e31 100644 --- a/src/data/common_strings_felicity_bank.h +++ b/src/data/common_strings_felicity_bank.h @@ -71,38 +71,38 @@ ALIGNED(4) const u8* const gCommonFelicity[FEL_MODE_COUNT][FEL_DLG_MAX] = ALIGNED(4) static const u8 sUnknown_80D4A58[] = _( " Sssnore...\n" - "Ah{COMMA} you wish to know how the bank\n" + "Ah, you wish to know how the bank\n" "operates... Very well...{EXTRA_MSG}" " Zzz...\n" - "If you{APOSTROPHE}re defeated in a dungeon{COMMA}\n" - "you{APOSTROPHE}ll lose all your money. Did you know?{EXTRA_MSG}" + "If you're defeated in a dungeon,\n" + "you'll lose all your money. Did you know?{EXTRA_MSG}" " Purr...\n" - "But{COMMA} you{APOSTROPHE}ve nothing to fear if you leave\n" + "But, you've nothing to fear if you leave\n" "your money with Felicity Bank...{EXTRA_MSG}" " Meow... Even if you\n" - "return defeated from a dungeon{COMMA} your\n" + "return defeated from a dungeon, your\n" "money will be safe with me...{EXTRA_MSG}" " Sssnore...\n" - "I assure you{COMMA} my bank will keep your\n" + "I assure you, my bank will keep your\n" "money safe...{EXTRA_MSG}" " Zzz...\n" - "Simple{COMMA} isn{APOSTROPHE}t it...?"); + "Simple, isn't it...?"); ALIGNED(4) static const u8 sUnknown_80D4C14[] = _( " {POKE}... Purr...\n" - "Very well{COMMA} {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}.\n" + "Very well, {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}.\n" "Here you are."); ALIGNED(4) static const u8 sUnknown_80D4C50[] = _( " Fnarf? Hunh...?{EXTRA_MSG}" - " Purr... I so do apologize{COMMA}\n" - "but you couldn{APOSTROPHE}t possibly carry any more\n" + " Purr... I so do apologize,\n" + "but you couldn't possibly carry any more\n" "money with you..."); ALIGNED(4) static const u8 sUnknown_80D4CC0[] = _( " Fnarf? Meow...?{EXTRA_MSG}" " Purr...\n" - "I so hate to disappoint{COMMA} but you have no\n" + "I so hate to disappoint, but you have no\n" "money saved with me..."); ALIGNED(4) static const u8 sUnknown_80D4D20[] = _( @@ -119,13 +119,13 @@ ALIGNED(4) static const u8 sUnknown_80D4D8C[] = _( "Meow! All this money...{WAIT_PRESS}\n" "Our safe is about to burst...{EXTRA_MSG}" " Purr...\n" - "I am so sorry to say{COMMA} but I can{APOSTROPHE}t accept\n" + "I am so sorry to say, but I can't accept\n" "any more of your money..."); ALIGNED(4) static const u8 sUnknown_80D4E28[] = _( " Sssnore... Hmm?{EXTRA_MSG}" " Zzz...\n" - "I{APOSTROPHE}m so sorry to say{COMMA} but you appear not\n" + "I'm so sorry to say, but you appear not\n" "to have any money..."); ALIGNED(4) static const u8 sUnknown_80D4E84[] = _( @@ -158,32 +158,32 @@ ALIGNED(4) static const u8 sUnknown_80D4F94[] = _( "This is Felicity Bank..."); ALIGNED(4) static const u8 sUnknown_80D4FC8[] = _( - " Ah{COMMA} you wish to know how\n" + " Ah, you wish to know how\n" "the bank operates. Very well.{EXTRA_MSG}" " If you are defeated\n" - "in a dungeon{COMMA} you{APOSTROPHE}ll lose all your money.\n" + "in a dungeon, you'll lose all your money.\n" "Did you know that?{EXTRA_MSG}" " But you can avoid that!{WAIT_PRESS}\n" - "You{APOSTROPHE}ve nothing to fear if you leave your\n" + "You've nothing to fear if you leave your\n" "money with Felicity Bank.{EXTRA_MSG}" " Even if you return\n" - "defeated from a dungeon{COMMA} your money will\n" + "defeated from a dungeon, your money will\n" "be safe with me!{EXTRA_MSG}" - " I assure you{COMMA} my bank\n" + " I assure you, my bank\n" "will keep your money safe.{EXTRA_MSG}" - " Simple{COMMA} isn{APOSTROPHE}t it?"); + " Simple, isn't it?"); ALIGNED(4) static const u8 sUnknown_80D5158[] = _( - " Very well{COMMA} {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}.\n" + " Very well, {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}.\n" "Here you are."); ALIGNED(4) static const u8 sUnknown_80D5184[] = _( - " Oh?{WAIT_PRESS} I do so apologize{COMMA}\n" - "but you couldn{APOSTROPHE}t possibly carry any more\n" + " Oh?{WAIT_PRESS} I do so apologize,\n" + "but you couldn't possibly carry any more\n" "money with you."); ALIGNED(4) static const u8 sUnknown_80D51DC[] = _( - " Oh?{WAIT_PRESS} I so hate to disappoint{COMMA}\n" + " Oh?{WAIT_PRESS} I so hate to disappoint,\n" "but you have no money saved with me."); ALIGNED(4) static const u8 sUnknown_80D5224[] = _( @@ -197,11 +197,11 @@ ALIGNED(4) static const u8 sUnknown_80D5244[] = _( ALIGNED(4) static const u8 sUnknown_80D527C[] = _( " Meow! All this money!{WAIT_PRESS}\n" "Our safe is about to burst!{EXTRA_MSG}" - " I am so sorry to say{COMMA} but\n" - "I can{APOSTROPHE}t accept any more of your money!"); + " I am so sorry to say, but\n" + "I can't accept any more of your money!"); ALIGNED(4) static const u8 sUnknown_80D52F8[] = _( - " Oh?{WAIT_PRESS} I{APOSTROPHE}m so sorry to say{COMMA}\n" + " Oh?{WAIT_PRESS} I'm so sorry to say,\n" "but you appear not to have any money."); ALIGNED(4) static const u8 sUnknown_80D5340[] = _( diff --git a/src/data/common_strings_gulpin_shop.h b/src/data/common_strings_gulpin_shop.h index 0a3a06502..4780eef66 100644 --- a/src/data/common_strings_gulpin_shop.h +++ b/src/data/common_strings_gulpin_shop.h @@ -109,7 +109,7 @@ ALIGNED(4) const u8* const gCommonGulpin[GULPIN_SHOP_MODE_DIALOGUE_COUNT][GULPIN ALIGNED(4) static const u8 sUnknown_80D8950[] = _( " Zzz... Snuffle...\n" - "I{APOSTROPHE}d go broke if it weren{APOSTROPHE}t for those\n" + "I'd go broke if it weren't for those\n" "forgetful Pokémon...{EXTRA_MSG}" " Zzz... Gwaaah...\n" "Especially that {COLOR_1 CYAN}{ARG_POKEMON_4}{END_COLOR_TEXT_1}...\n" @@ -121,7 +121,7 @@ ALIGNED(4) static const u8 sUnknown_80D8950[] = _( "But we decided to get rid of that\n" "{COLOR_1 CYAN}{ARG_POKEMON_4}{END_COLOR_TEXT_1}...{EXTRA_MSG}" " Gwaaaah... Gweh...\n" - "{COLOR_1 CYAN}{ARG_POKEMON_4}{END_COLOR_TEXT_1} won{APOSTROPHE}t be coming around\n" + "{COLOR_1 CYAN}{ARG_POKEMON_4}{END_COLOR_TEXT_1} won't be coming around\n" "anymore... "); ALIGNED(4) static const u8 sUnknown_80D8AB8[] = _( @@ -147,7 +147,7 @@ ALIGNED(4) static const u8 sUnknown_80D8BD4[] = _( "Press {L_BUTTON} and {A_BUTTON}...{WAIT_PRESS} Use move!{WAIT_PRESS}\n" "Convenient...{EXTRA_MSG}" " Sssnore...\n" - "Switch the set move in a dungeon{COMMA} too..."); + "Switch the set move in a dungeon, too..."); ALIGNED(4) static const u8 sUnknown_80D8C98[] = _( " Zzznork... Fnurfle?\n" @@ -186,9 +186,9 @@ ALIGNED(4) static const u8 sUnknown_80D8E28[] = _( ALIGNED(4) static const u8 sUnknown_80D8E48[] = _( " Zzznork...? Hunh?\n" - "You{APOSTROPHE}re a special Pokémon...{EXTRA_MSG}" + "You're a special Pokémon...{EXTRA_MSG}" " Mumble...\n" - "I can{APOSTROPHE}t help you..."); + "I can't help you..."); ALIGNED(4) static const u8 sUnknown_80D8E9C[] = _( " Zzz... Fwaah?\n" @@ -202,7 +202,7 @@ ALIGNED(4) static const u8 sUnknown_80D8EC4[] = _( " Fwaaah hah!\n" "There...{EXTRA_MSG}" " Zzz... Mumble...\n" - "{COLOR_1 CYAN_3}{ARG_POKEMON_5}{END_COLOR_TEXT_1}{APOSTROPHE}s OK...{EXTRA_MSG}" + "{COLOR_1 CYAN_3}{ARG_POKEMON_5}{END_COLOR_TEXT_1}'s OK...{EXTRA_MSG}" " Sssnork... Forgotten...\n" "{COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1} and moves linked to it...\n" "Remembered {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}..."); @@ -237,7 +237,7 @@ ALIGNED(4) static const u8 sUnknown_80D90BC[] = _( "There...{EXTRA_MSG}" " Zzz... Zzz...\n" "{COLOR_1 CYAN_3}{ARG_POKEMON_5}{END_COLOR_TEXT_1} remembered...\n" - "Hunh? That move{COMMA} {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}..."); + "Hunh? That move, {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}..."); ALIGNED(4) static const u8 sUnknown_80D9168[] = _( " Zzz... Fgwah...?\n" @@ -245,7 +245,7 @@ ALIGNED(4) static const u8 sUnknown_80D9168[] = _( ALIGNED(4) static const u8 sUnknown_80D9194[] = _( " Gwaah... Gwaah...\n" - "Who{APOSTROPHE}s gonna link moves?"); + "Who's gonna link moves?"); ALIGNED(4) static const u8 sUnknown_80D91C4[] = _( " Zzz... Zzz...\n" @@ -257,7 +257,7 @@ ALIGNED(4) static const u8 sUnknown_80D91E4[] = _( ALIGNED(4) static const u8 sUnknown_80D9204[] = _( " Zzznort... Zzznnort...\n" - "Can{APOSTROPHE}t forget that..."); + "Can't forget that..."); ALIGNED(4) static const u8 sUnknown_80D9234[] = _( " Sssnork... Sssnork...\n" @@ -282,13 +282,13 @@ ALIGNED(4) static const u8 sUnknown_80D92EC[] = _( ALIGNED(4) static const u8 sUnknown_80D9328[] = _( " What if you had to forget\n" - "a move{COMMA} but you wanted it back?{WAIT_PRESS}\n" + "a move, but you wanted it back?{WAIT_PRESS}\n" "Ever face that situation?{EXTRA_MSG}" " I can help!{WAIT_PRESS}\n" - "Come to me{COMMA} and I can make you instantly\n" + "Come to me, and I can make you instantly\n" "remember forgotten moves!{EXTRA_MSG}" " I...{WAIT_PRESS}\n" - "Well{COMMA} when Pokémon remember...{WAIT_PRESS}\n" + "Well, when Pokémon remember...{WAIT_PRESS}\n" "I love seeing that instant!{EXTRA_MSG}" " That look of enlightenment!{WAIT_PRESS}\n" "That amazed look of pleasure!{EXTRA_MSG}" @@ -299,39 +299,39 @@ ALIGNED(4) static const u8 sUnknown_80D9498[] = _( " When moves are linked...{WAIT_PRESS}\n" "Two or more moves can be used one after\n" "another in one turn!{EXTRA_MSG}" - " For example{COMMA} if the moves\n" + " For example, if the moves\n" "{COLOR_1 CYAN}Scratch{END_COLOR_TEXT_1} and {COLOR_1 CYAN}Growl{END_COLOR_TEXT_1} are\n" "linked...{EXTRA_MSG}" " Both {COLOR_1 CYAN}Scratch{END_COLOR_TEXT_1} and {COLOR_1 CYAN}Growl{END_COLOR_TEXT_1} are\n" "used in one turn!{WAIT_PRESS}\n" - "See? Amazing{COMMA} huh?{EXTRA_MSG}" - " Using links{COMMA} heheh...{WAIT_PRESS}\n" - "Well{COMMA} depending on the moves you link{COMMA}\n" + "See? Amazing, huh?{EXTRA_MSG}" + " Using links, heheh...{WAIT_PRESS}\n" + "Well, depending on the moves you link,\n" "you can get incredible results!{EXTRA_MSG}" - " Oh{COMMA} yes.\n" - "When moves are linked{COMMA} they are used in\n" + " Oh, yes.\n" + "When moves are linked, they are used in\n" "sequence from the top one first.{EXTRA_MSG}" " You can also separate linked\n" "moves by selecting the Delink command.{EXTRA_MSG}" " The sequence of moves can\n" - "be changed by pressing {R_BUTTON}{COMMA}\n" + "be changed by pressing {R_BUTTON},\n" "then pressing up or down on {DPAD}.{EXTRA_MSG}" " Try to innovate with links.{WAIT_PRESS}\n" "Try creating links of your very own!"); ALIGNED(4) static const u8 sUnknown_80D972C[] = _( - " When you{APOSTROPHE}re in a dungeon\n" - "and you{APOSTROPHE}re about to use a move...{WAIT_PRESS}\n" - "Isn{APOSTROPHE}t it a pain to open a window each time?{EXTRA_MSG}" + " When you're in a dungeon\n" + "and you're about to use a move...{WAIT_PRESS}\n" + "Isn't it a pain to open a window each time?{EXTRA_MSG}" " You can avoid that!{WAIT_PRESS}\n" - "You can just conveniently {QUOTE_START}Set{QUOTE_END}\n" + "You can just conveniently “Set”\n" "a move for instant use!{EXTRA_MSG}" " A set move can be instantly\n" "used with {L_BUTTON} and {A_BUTTON}!{WAIT_PRESS}\n" - "See? Isn{APOSTROPHE}t it easy?{EXTRA_MSG}" + "See? Isn't it easy?{EXTRA_MSG}" " Just set the move...{WAIT_PRESS}\n" "Hold {L_BUTTON} and then press {A_BUTTON} to use it!{WAIT_PRESS}\n" - "It{APOSTROPHE}s very convenient!{EXTRA_MSG}" + "It's very convenient!{EXTRA_MSG}" " You can also switch the set\n" "move in a dungeon.\n" "Do try it out!\n"); @@ -341,7 +341,7 @@ ALIGNED(4) static const u8 sUnknown_80D98D4[] = _( "What do you need information on?"); ALIGNED(4) static const u8 sUnknown_80D9904[] = _( - " OK{COMMA} here goes!{EXTRA_MSG}" + " OK, here goes!{EXTRA_MSG}" " Gggggggg...{WAIT_PRESS} Poof!{EXTRA_MSG}" " There!\n" "Success!{EXTRA_MSG}" @@ -350,7 +350,7 @@ ALIGNED(4) static const u8 sUnknown_80D9904[] = _( "linked to it!"); ALIGNED(4) static const u8 sUnknown_80D9988[] = _( - " OK{COMMA} here goes!{EXTRA_MSG}" + " OK, here goes!{EXTRA_MSG}" " Gggggggg...{WAIT_PRESS} Poof!{EXTRA_MSG}" " There!\n" "Success!{EXTRA_MSG}" @@ -358,37 +358,37 @@ ALIGNED(4) static const u8 sUnknown_80D9988[] = _( "the move {COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1}!"); ALIGNED(4) static const u8 sUnknown_80D99F0[] = _( - " So{COMMA} forget the move\n" + " So, forget the move\n" "{COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1} and any moves linked to it?"); ALIGNED(4) static const u8 sUnknown_80D9A2C[] = _( - " So{COMMA} forget the move\n" + " So, forget the move\n" "{COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1}?"); ALIGNED(4) static const u8 sUnknown_80D9A50[] = _( " Uh... Huh?{WAIT_PRESS}\n" "You appear to be a special Pokémon.{EXTRA_MSG}" - " I can{APOSTROPHE}t help you remember\n" - "any moves{COMMA} I don{APOSTROPHE}t think.\n" - "I{APOSTROPHE}m sorry."); + " I can't help you remember\n" + "any moves, I don't think.\n" + "I'm sorry."); ALIGNED(4) static const u8 sUnknown_80D9ACC[] = _( " Uh... Hello?{WAIT_PRESS}\n" - "There don{APOSTROPHE}t appear to be any moves that\n" + "There don't appear to be any moves that\n" "can be remembered."); ALIGNED(4) static const u8 sUnknown_80D9B1C[] = _( - " OK{COMMA} here goes!{EXTRA_MSG}" + " OK, here goes!{EXTRA_MSG}" " Gggggggg...{WAIT_PRESS} Pwah! Gulpin!{EXTRA_MSG}" " There!\n" "Success!{EXTRA_MSG}" " {COLOR_1 CYAN_3}{ARG_POKEMON_5}{END_COLOR_TEXT_1} is done!{EXTRA_MSG}" - " It{APOSTROPHE}s forgotten the move\n" - "{COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1} and any moves linked to it{COMMA}\n" + " It's forgotten the move\n" + "{COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1} and any moves linked to it,\n" "and {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1} has been remembered!"); ALIGNED(4) static const u8 sUnknown_80D9BD8[] = _( - " OK{COMMA} here goes!{EXTRA_MSG}" + " OK, here goes!{EXTRA_MSG}" " Gggggggg...{WAIT_PRESS} Pwah! Gulpin!{EXTRA_MSG}" " There!\n" "Success!{EXTRA_MSG}" @@ -397,19 +397,19 @@ ALIGNED(4) static const u8 sUnknown_80D9BD8[] = _( "the move {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}!"); ALIGNED(4) static const u8 sUnknown_80D9C68[] = _( - " So{COMMA} forget {COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1}\n" - "and any moves linked to it{COMMA} and remember\n" + " So, forget {COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1}\n" + "and any moves linked to it, and remember\n" "the move {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}?"); ALIGNED(4) static const u8 sUnknown_80D9CC0[] = _( - " So{COMMA} forget the move\n" + " So, forget the move\n" "{COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1} and remember the move\n" "{COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}?"); ALIGNED(4) static const u8 sUnknown_80D9D00[] = _( - " So{COMMA} the move {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}\n" + " So, the move {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}\n" "is the one to be remembered?{WAIT_PRESS}\n" - "OK{COMMA} here goes!{EXTRA_MSG}" + "OK, here goes!{EXTRA_MSG}" " Gggggggggggg...{WAIT_PRESS} Gulpin!{EXTRA_MSG}" " There!\n" "Success!{EXTRA_MSG}" @@ -422,21 +422,21 @@ ALIGNED(4) static const u8 sUnknown_80D9DA4[] = _( ALIGNED(4) static const u8 sUnknown_80D9DCC[] = _( " Good!\n" - "Now{COMMA} who wants to link moves?"); + "Now, who wants to link moves?"); ALIGNED(4) static const u8 sUnknown_80D9DF4[] = _( " Whenever you get the urge\n" - "to link moves{COMMA} please come see me!"); + "to link moves, please come see me!"); ALIGNED(4) static const u8 sUnknown_80D9E34[] = _(" Shall we go on?"); ALIGNED(4) static const u8 sUnknown_80D9E48[] = _( - " If you forget that move{COMMA}\n" - "you won{APOSTROPHE}t have any moves at all."); + " If you forget that move,\n" + "you won't have any moves at all."); ALIGNED(4) static const u8 sUnknown_80D9E88[] = _( - " That move isn{APOSTROPHE}t linked{COMMA}\n" - "so it can{APOSTROPHE}t be delinked."); + " That move isn't linked,\n" + "so it can't be delinked."); ALIGNED(4) static const u8 sUnknown_80D9EC0[] = _( " Too bad.\n" @@ -444,7 +444,7 @@ ALIGNED(4) static const u8 sUnknown_80D9EC0[] = _( ALIGNED(4) static const u8 sUnknown_80D9EF4[] = _( " Uh... Hello?\n" - "You don{APOSTROPHE}t have enough money?"); + "You don't have enough money?"); ALIGNED(4) static const u8 sUnknown_80D9F24[] = _( " Welcome to the Gulpin\n" diff --git a/src/data/common_strings_hints.h b/src/data/common_strings_hints.h index 75314ad1e..b8b8589af 100644 --- a/src/data/common_strings_hints.h +++ b/src/data/common_strings_hints.h @@ -19,7 +19,7 @@ ALIGNED(4) const Hints gCommonHints[NUM_HINTS] = }; ALIGNED(4) static const u8 sUnknown_80DAAC0[] = _( - "Before leaving on an adventure{COMMA} go visit\n" + "Before leaving on an adventure, go visit\n" "friends in their Friend Areas and pick\n" "your mission members.\n" "The team can include members up to\n" @@ -30,14 +30,14 @@ ALIGNED(4) static const u8 sUnknown_80DAAC0[] = _( ALIGNED(4) static const u8 sUnknown_80DABD8[] = _("Building a Team"); ALIGNED(4) static const u8 sUnknown_80DABE8[] = _( - "If new recruits join you{COMMA} try to return to\n" + "If new recruits join you, try to return to\n" "your base without letting them faint.\n" - "If you get them out safely{COMMA} they{APOSTROPHE}ll wait\n" + "If you get them out safely, they'll wait\n" "for you in their Friend Areas.\n" - "Once you get them out{COMMA} they{APOSTROPHE}ll always\n" + "Once you get them out, they'll always\n" "return home if they faint in a dungeon.\n" - "If you faint in a dungeon{COMMA} you lose all your\n" - "money and some items{COMMA} too."); + "If you faint in a dungeon, you lose all your\n" + "money and some items, too."); ALIGNED(4) static const u8 sUnknown_80DAD28[] = _("Adventures with Friends"); ALIGNED(4) static const u8 sUnknown_80DAD40[] = _( @@ -49,9 +49,9 @@ ALIGNED(4) static const u8 sUnknown_80DADCC[] = _("Saving"); ALIGNED(4) static const u8 sUnknown_80DADD4[] = _( "Selecting multiple items in storage:\n" - " Select an item{COMMA} then press {L_BUTTON} or {R_BUTTON}.\n" + " Select an item, then press {L_BUTTON} or {R_BUTTON}.\n" "Moving to the Friend Area Map:\n" - " Move out from the town{APOSTROPHE}s west side\n" + " Move out from the town's west side\n" " while pressing {L_BUTTON} or {R_BUTTON}.\n" "Moving diagonally on the Friend Area Map:\n" " {DPAD} while keeping {R_BUTTON} pressed."); @@ -63,5 +63,5 @@ ALIGNED(4) static const u8 sUnknown_80DAEE0[] = _( "Window: {B_BUTTON} lightly\n" "Message scroll: {A_BUTTON} or {B_BUTTON}\n" "Cancel: {B_BUTTON}\n" - "Description: Choose item or move{COMMA} {START_BUTTON}"); + "Description: Choose item or move, {START_BUTTON}"); ALIGNED(4) static const u8 sUnknown_80DAF54[] = _("Controls in Town 1"); \ No newline at end of file diff --git a/src/data/common_strings_kangaskhan_storage.h b/src/data/common_strings_kangaskhan_storage.h index fb395a03e..3a3c05f21 100644 --- a/src/data/common_strings_kangaskhan_storage.h +++ b/src/data/common_strings_kangaskhan_storage.h @@ -92,9 +92,9 @@ ALIGNED(4) static const u8 sUnknown_80D54A4[] = _( "I can store items that you\n" "found in dungeons...{EXTRA_MSG}" " Snarfle...\n" - "Things in storage don{APOSTROPHE}t get lost...{EXTRA_MSG}" + "Things in storage don't get lost...{EXTRA_MSG}" " Zzz... Zzz...\n" - "That{APOSTROPHE}s why...\n" + "That's why...\n" "Keep important items in storage..."); ALIGNED(4) static const u8 sUnknown_80D555C[] = _( @@ -103,12 +103,12 @@ ALIGNED(4) static const u8 sUnknown_80D555C[] = _( ALIGNED(4) static const u8 sUnknown_80D5590[] = _( " Zzz... No...\n" - "Can{APOSTROPHE}t store any more of that..."); + "Can't store any more of that..."); ALIGNED(4) static const u8 sUnknown_80D55C0[] = _( " Zzz... Zzz...\n" "That {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}...\n" - "Can{APOSTROPHE}t store it..."); + "Can't store it..."); ALIGNED(4) static const u8 sUnknown_80D55F4[] = _( " Snarfle? Hunh...?{WAIT_PRESS}\n" @@ -117,12 +117,12 @@ ALIGNED(4) static const u8 sUnknown_80D55F4[] = _( ALIGNED(4) static const u8 sUnknown_80D5630[] = _( " Snarfle? Hunh...?{WAIT_PRESS}\n" "Zzz...\n" - "You don{APOSTROPHE}t have enough space..."); + "You don't have enough space..."); ALIGNED(4) static const u8 sUnknown_80D5670[] = _( " Snarfle? Hunh...?{WAIT_PRESS}\n" "Zzz...\n" - "You don{APOSTROPHE}t have anything...?"); + "You don't have anything...?"); ALIGNED(4) static const u8 sUnknown_80D56AC[] = _( " Zzz... Snork!\n" @@ -149,11 +149,11 @@ ALIGNED(4) static const u8 sUnknown_80D5774[] = _( ALIGNED(4) static const u8 sUnknown_80D57C4[] = _( " Zzz... Zzz...\n" - "Yup{COMMA} I did... Stored away..."); + "Yup, I did... Stored away..."); ALIGNED(4) static const u8 sUnknown_80D57F4[] = _( - " Hunh{COMMA} wha--? Storage...?\n" - "I{APOSTROPHE}ll put away the things you chose...\n" + " Hunh, wha--? Storage...?\n" + "I'll put away the things you chose...\n" "That OK?"); ALIGNED(4) static const u8 sUnknown_80D5844[] = _( @@ -166,7 +166,7 @@ ALIGNED(4) static const u8 sUnknown_80D5884[] = _( "Store anything else?"); ALIGNED(4) static const u8 sUnknown_80D58B0[] = _( - " Hunh{COMMA} wha--? Store what...?\n" + " Hunh, wha--? Store what...?\n" "You can choose more than one using\n" "{L_BUTTON} or {R_BUTTON}..."); @@ -181,58 +181,58 @@ ALIGNED(4) static const u8 sUnknown_80D5934[] = _( ALIGNED(4) static const u8 sUnknown_80D5954[] = _( " Zzz... Zzz...\n" - "Hello{COMMA} there...\n" + "Hello, there...\n" "{ARG_POKEMON_6} Storage..."); ALIGNED(4) static const u8 sUnknown_80D5984[] = _( " I can store items that you\n" - "found in dungeons{COMMA} or that you\n" + "found in dungeons, or that you\n" "bought from shops.{EXTRA_MSG}" " If you faint in\n" - "a dungeon{COMMA} your items will be lost...{WAIT_PRESS}\n" - "But what{APOSTROPHE}s in storage will be safe.{EXTRA_MSG}" + "a dungeon, your items will be lost...{WAIT_PRESS}\n" + "But what's in storage will be safe.{EXTRA_MSG}" " I keep guard over the\n" - "storage space{COMMA} so anything you leave\n" - "with me won{APOSTROPHE}t ever disappear!{EXTRA_MSG}" + "storage space, so anything you leave\n" + "with me won't ever disappear!{EXTRA_MSG}" " If you have any items that\n" - "you can{APOSTROPHE}t bear to lose{COMMA} be sure to leave\n" + "you can't bear to lose, be sure to leave\n" "them with me!"); ALIGNED(4) static const u8 sUnknown_80D5AF0[] = _( - " Sorry{COMMA} dear.\n" - "I{APOSTROPHE}ve run out of storage space."); + " Sorry, dear.\n" + "I've run out of storage space."); ALIGNED(4) static const u8 sUnknown_80D5B24[] = _( - " Sorry{COMMA} dear.\n" - "I can{APOSTROPHE}t take any more of that item."); + " Sorry, dear.\n" + "I can't take any more of that item."); ALIGNED(4) static const u8 sUnknown_80D5B5C[] = _( - " Oh{COMMA} dear{COMMA} sorry.{WAIT_PRESS}\n" + " Oh, dear, sorry.{WAIT_PRESS}\n" "That {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1} is an item you\n" - "can{APOSTROPHE}t put in storage."); + "can't put in storage."); ALIGNED(4) static const u8 sUnknown_80D5BAC[] = _( " Oh?\n" - "You don{APOSTROPHE}t have anything stored{COMMA} dear."); + "You don't have anything stored, dear."); ALIGNED(4) static const u8 sUnknown_80D5BDC[] = _( - " Oh? You don{APOSTROPHE}t have the room\n" - "to carry any more items{COMMA} dear."); + " Oh? You don't have the room\n" + "to carry any more items, dear."); ALIGNED(4) static const u8 sUnknown_80D5C1C[] = _( " Oh?\n" - "You don{APOSTROPHE}t seem to have anything?"); + "You don't seem to have anything?"); ALIGNED(4) static const u8 sUnknown_80D5C44[] = _( " There you go!\n" - "Just like you asked{COMMA} sweetie!"); + "Just like you asked, sweetie!"); ALIGNED(4) static const u8 sUnknown_80D5C74[] = _( - " I{APOSTROPHE}ll take the items you\n" + " I'll take the items you\n" "chose out of storage. OK?"); ALIGNED(4) static const u8 sUnknown_80D5CAC[] = _( - " Fine{COMMA} I{APOSTROPHE}ll take your\n" + " Fine, I'll take your\n" "{COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1} out of storage. OK?"); ALIGNED(4) static const u8 sUnknown_80D5CE4[] = _( @@ -245,15 +245,15 @@ ALIGNED(4) static const u8 sUnknown_80D5D0C[] = _( "{L_BUTTON} or {R_BUTTON}."); ALIGNED(4) static const u8 sUnknown_80D5D58[] = _( - " OK{COMMA} stored away!\n" - "You can count on me{COMMA} honey."); + " OK, stored away!\n" + "You can count on me, honey."); ALIGNED(4) static const u8 sUnknown_80D5D8C[] = _( - " I{APOSTROPHE}ll put the items you chose\n" + " I'll put the items you chose\n" "in storage. OK?"); ALIGNED(4) static const u8 sUnknown_80D5DBC[] = _( - " I{APOSTROPHE}ll put your\n" + " I'll put your\n" "{COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1} in storage. OK?"); ALIGNED(4) static const u8 sUnknown_80D5DE8[] = _( @@ -266,11 +266,11 @@ ALIGNED(4) static const u8 sUnknown_80D5E10[] = _( "{L_BUTTON} or {R_BUTTON}."); ALIGNED(4) static const u8 sUnknown_80D5E60[] = _( - " Thank you{COMMA} sweetie.\n" + " Thank you, sweetie.\n" "Come again!"); -ALIGNED(4) static const u8 sUnknown_80D5E84[] = _(" Anything else{COMMA} dear?"); +ALIGNED(4) static const u8 sUnknown_80D5E84[] = _(" Anything else, dear?"); ALIGNED(4) static const u8 sUnknown_80D5E9C[] = _( - " Hello{COMMA} there!\n" + " Hello, there!\n" "Welcome to {ARG_POKEMON_6} Storage."); \ No newline at end of file diff --git a/src/data/common_strings_kecleon_bros.h b/src/data/common_strings_kecleon_bros.h index ac4cbbaa6..5e899abc7 100644 --- a/src/data/common_strings_kecleon_bros.h +++ b/src/data/common_strings_kecleon_bros.h @@ -208,12 +208,12 @@ ALIGNED(4) static const u8 sUnknown_80D6038[] = _( "Come buy... Reep..."); ALIGNED(4) static const u8 sUnknown_80D6128[] = _( - " Zzz... Eep? No{COMMA} no...{WAIT_PRESS}\n" + " Zzz... Eep? No, no...{WAIT_PRESS}\n" "You cannot hold any more money..."); ALIGNED(4) static const u8 sUnknown_80D6168[] = _( " Zzz... Hunh? Wha--? Whoa!{WAIT_PRESS}\n" - "I... I can{APOSTROPHE}t accept anything like that!"); + "I... I can't accept anything like that!"); ALIGNED(4) static const u8 sUnknown_80D61B0[] = _( " Reep...? Eep!{WAIT_PRESS}\n" @@ -231,7 +231,7 @@ ALIGNED(4) static const u8 sUnknown_80D6204[] = _( ALIGNED(4) static const u8 sUnknown_80D6250[] = _( " Zzzzzz... Oh?{WAIT_PRESS}\n" - "You{APOSTROPHE}ve got nothing..."); + "You've got nothing..."); ALIGNED(4) static const u8 sUnknown_80D627C[] = _( " Zzz... Oh...?{WAIT_PRESS}\n" @@ -242,7 +242,7 @@ ALIGNED(4) static const u8 sUnknown_80D62B0[] = _( " Eep...? Zzz...\n" "You have too much money!{EXTRA_MSG}" " Zzz... Eh?\n" - "You can{APOSTROPHE}t hold any more money..."); + "You can't hold any more money..."); ALIGNED(4) static const u8 sUnknown_80D630C[] = _( " Reep eep! Oh?{WAIT_PRESS}\n" @@ -259,8 +259,8 @@ ALIGNED(4) static const u8 sUnknown_80D6364[] = _( "Thank you..."); ALIGNED(4) static const u8 sUnknown_80D6394[] = _( - " Zzz... Reep{COMMA} what...?\n" - "For all that I can buy{COMMA} I will pay\n" + " Zzz... Reep, what...?\n" + "For all that I can buy, I will pay\n" "{COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}... OK?"); ALIGNED(4) static const u8 sUnknown_80D63E8[] = _( @@ -306,94 +306,94 @@ ALIGNED(4) static const u8 sUnknown_80D6544[] = _( "This is...my shop..."); ALIGNED(4) static const u8 sUnknown_80D6564[] = _( - " Wonder Orbs are very{COMMA}\n" + " Wonder Orbs are very,\n" "very convenient〜♪{EXTRA_MSG}" - " However{COMMA} they disappear\n" + " However, they disappear\n" "after one use...{WAIT_PRESS}\n" "But they are useful in a pinch!{EXTRA_MSG}" - " Use them cleverly{COMMA} and your\n" + " Use them cleverly, and your\n" "adventures will be made much easier〜♪{EXTRA_MSG}" " And moves...{WAIT_PRESS}\n" "They are the ultimate power!{EXTRA_MSG}" " Smash rocks!{WAIT_PRESS} Fly!{WAIT_PRESS}\n" - "There are many kinds of moves{COMMA} all of\n" - "them dynamic{COMMA} yet elegant!{EXTRA_MSG}" + "There are many kinds of moves, all of\n" + "them dynamic, yet elegant!{EXTRA_MSG}" " There are even moves of\n" "obscure rarity...{WAIT_PRESS}\n" - "Simply gorgeous{COMMA} they are!{EXTRA_MSG}" - " Now{COMMA} we have these moves!{WAIT_PRESS}\n" + "Simply gorgeous, they are!{EXTRA_MSG}" + " Now, we have these moves!{WAIT_PRESS}\n" "They can be learned using our Technical\n" - "Machines{COMMA} or TMs for short!{EXTRA_MSG}" + "Machines, or TMs for short!{EXTRA_MSG}" " You see?\n" - "Isn{APOSTROPHE}t it exciting? Even dreamy?{EXTRA_MSG}" - " Why{COMMA} it gets me so excited{COMMA}\n" + "Isn't it exciting? Even dreamy?{EXTRA_MSG}" + " Why, it gets me so excited,\n" "my color has turned a rosy tint!{EXTRA_MSG}" " I do hope you will shop\n" "with us--me and my brother next to\n" "me!"); ALIGNED(4) static const u8 sUnknown_80D6818[] = _( - " Oh{COMMA} no{COMMA} no!{WAIT_PRESS}\n" - "My friend{COMMA} you cannot add to your money!\n" + " Oh, no, no!{WAIT_PRESS}\n" + "My friend, you cannot add to your money!\n" "I cannot do this."); ALIGNED(4) static const u8 sUnknown_80D6868[] = _( - " Whoa{COMMA} whoa!{WAIT_PRESS}\n" - "I... I can{APOSTROPHE}t accept anything like that!"); + " Whoa, whoa!{WAIT_PRESS}\n" + "I... I can't accept anything like that!"); ALIGNED(4) static const u8 sUnknown_80D68A4[] = _( - " Eep! Oh{COMMA} dear!{WAIT_PRESS}\n" - "You{APOSTROPHE}re short on money{COMMA} my friend!"); + " Eep! Oh, dear!{WAIT_PRESS}\n" + "You're short on money, my friend!"); ALIGNED(4) static const u8 sUnknown_80D68E0[] = _( " Oh? Uh-oh!{WAIT_PRESS}\n" "My shelves are bare of wares!{EXTRA_MSG}" - " I am completely sold out{COMMA}\n" + " I am completely sold out,\n" "my friend!"); ALIGNED(4) static const u8 sUnknown_80D6938[] = _( - " Oh{COMMA} dear me!{WAIT_PRESS}\n" - "My friend{COMMA} you{APOSTROPHE}ve run out of space for\n" + " Oh, dear me!{WAIT_PRESS}\n" + "My friend, you've run out of space for\n" "my wares!"); ALIGNED(4) static const u8 sUnknown_80D6980[] = _( " Oh?{WAIT_PRESS}\n" - "My friend{COMMA} you seem to have nothing?"); + "My friend, you seem to have nothing?"); ALIGNED(4) static const u8 sUnknown_80D69B0[] = _( - " Oh{COMMA} oh{COMMA} oh?{WAIT_PRESS}\n" - "My friend{COMMA} you seem to not have anything\n" + " Oh, oh, oh?{WAIT_PRESS}\n" + "My friend, you seem to not have anything\n" "that you can sell?"); ALIGNED(4) static const u8 sUnknown_80D6A04[] = _( - " Oh{COMMA} my{COMMA} my!\n" - "My friend{COMMA} you have too much money!{EXTRA_MSG}" - " You can{APOSTROPHE}t carry any more\n" + " Oh, my, my!\n" + "My friend, you have too much money!{EXTRA_MSG}" + " You can't carry any more\n" "money than you have now."); ALIGNED(4) static const u8 sUnknown_80D6A74[] = _( " Oh?{WAIT_PRESS}\n" - "My friend{COMMA} you seem not to have\n" + "My friend, you seem not to have\n" "enough money?"); ALIGNED(4) static const u8 sUnknown_80D6AAC[] = _( " ...{WAIT_PRESS}I am all out of wares...\n" - "I am so sorry{COMMA} my friend...{EXTRA_MSG}" + "I am so sorry, my friend...{EXTRA_MSG}" " Tomorrow!\n" "Tomorrow I shall have more wares!"); ALIGNED(4) static const u8 sUnknown_80D6B18[] = _( - " Fine{COMMA} fine{COMMA} we have a deal!\n" + " Fine, fine, we have a deal!\n" "Thank you so much〜♪ "); ALIGNED(4) static const u8 sUnknown_80D6B50[] = _( - " For all that I can buy{COMMA} I can\n" + " For all that I can buy, I can\n" "offer you {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}.\n" "Is that acceptable?"); ALIGNED(4) static const u8 sUnknown_80D6BA0[] = _( - " {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}{COMMA} you say?\n" - "For that{COMMA} I can offer {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}.\n" + " {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}, you say?\n" + "For that, I can offer {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}.\n" "Is that acceptable?"); ALIGNED(4) static const u8 sUnknown_80D6BF4[] = _( @@ -405,7 +405,7 @@ ALIGNED(4) static const u8 sUnknown_80D6C1C[] = _( "A very good choice!"); ALIGNED(4) static const u8 sUnknown_80D6C48[] = _( - " {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}{COMMA} you say?\n" + " {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}, you say?\n" "That will be {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}.\n" "Is that acceptable?"); @@ -414,7 +414,7 @@ ALIGNED(4) static const u8 sUnknown_80D6C90[] = _( "anything else?"); ALIGNED(4) static const u8 sUnknown_80D6CB8[] = _( - " Ah{COMMA} very well!\n" + " Ah, very well!\n" "Do examine my merchandise.\n" "I have chosen it with pride〜♪ "); @@ -440,17 +440,17 @@ ALIGNED(4) static const u8 sUnknown_80D6D98[] = _( "With them..."); ALIGNED(4) static const u8 sUnknown_80D6E30[] = _( - " Zzz... Hunh{COMMA} what...?{WAIT_PRESS}\n" - "Zzz... You can{APOSTROPHE}t hold any more money..."); + " Zzz... Hunh, what...?{WAIT_PRESS}\n" + "Zzz... You can't hold any more money..."); ALIGNED(4) static const u8 sUnknown_80D6E78[] = _( " Zzz... Whoa...{WAIT_PRESS}\n" - "I... I can{APOSTROPHE}t take that!"); + "I... I can't take that!"); ALIGNED(4) static const u8 sUnknown_80D6EA4[] = _( - " Zzz... Huh{COMMA} my...!{WAIT_PRESS}\n" + " Zzz... Huh, my...!{WAIT_PRESS}\n" "Meep... Meep...\n" - "You don{APOSTROPHE}t have enough money!"); + "You don't have enough money!"); ALIGNED(4) static const u8 sUnknown_80D6EEC[] = _( " Zzz... Uh-oh?!{WAIT_PRESS}\n" @@ -458,33 +458,33 @@ ALIGNED(4) static const u8 sUnknown_80D6EEC[] = _( "Sold out! All gone!"); ALIGNED(4) static const u8 sUnknown_80D6F18[] = _( - " Zzz... Oh{COMMA} my!{WAIT_PRESS}\n" + " Zzz... Oh, my!{WAIT_PRESS}\n" "Meep... You have no space..."); ALIGNED(4) static const u8 sUnknown_80D6F4C[] = _( " Zzz... Eep...?{WAIT_PRESS}\n" - "Meep... You don{APOSTROPHE}t seem to have\n" + "Meep... You don't seem to have\n" "anything...?"); ALIGNED(4) static const u8 sUnknown_80D6F8C[] = _( " Zzz... Huh?{WAIT_PRESS}\n" "Meep meep...\n" - "You don{APOSTROPHE}t seem to have anything to sell?"); + "You don't seem to have anything to sell?"); ALIGNED(4) static const u8 sUnknown_80D6FD4[] = _( - " Zzz... Oh{COMMA} my!\n" + " Zzz... Oh, my!\n" "You have so much money...!{EXTRA_MSG}" " Zzz... Meep...\n" - "You can{APOSTROPHE}t carry any more money..."); + "You can't carry any more money..."); ALIGNED(4) static const u8 sUnknown_80D7038[] = _( " Hunh?{WAIT_PRESS}\n" "Eep...?\n" - "You don{APOSTROPHE}t have money?"); + "You don't have money?"); ALIGNED(4) static const u8 sUnknown_80D7064[] = _( " ...{WAIT_PRESS} ZZZ!\n" - "I{APOSTROPHE}m sold out... Forgive me..."); + "I'm sold out... Forgive me..."); ALIGNED(4) static const u8 sUnknown_80D7090[] = _( " Done... Meep! Deal!\n" @@ -506,7 +506,7 @@ ALIGNED(4) static const u8 sUnknown_80D7154[] = _( ALIGNED(4) static const u8 sUnknown_80D7184[] = _( " Zzz... Zzz...?\n" - "You{APOSTROPHE}re selling what...?"); + "You're selling what...?"); ALIGNED(4) static const u8 sUnknown_80D71B0[] = _( " Eep! Wah...?\n" @@ -515,10 +515,10 @@ ALIGNED(4) static const u8 sUnknown_80D71B0[] = _( ALIGNED(4) static const u8 sUnknown_80D71CC[] = _( " Zzz... Meep meep...\n" "{COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}...?\n" - "{COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}{COMMA} OK?"); + "{COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}, OK?"); ALIGNED(4) static const u8 sUnknown_80D7204[] = _( - " Buy? Huh{COMMA} eep?\n" + " Buy? Huh, eep?\n" "Anything else?"); ALIGNED(4) static const u8 sUnknown_80D7228[] = _( @@ -538,78 +538,78 @@ ALIGNED(4) static const u8 sUnknown_80D72A0[] = _( "Welcome..."); ALIGNED(4) static const u8 sUnknown_80D72B8[] = _( - " We{COMMA} the {ARG_POKEMON_6}\n" - "Brothers{COMMA} have a passion for selling\n" + " We, the {ARG_POKEMON_6}\n" + "Brothers, have a passion for selling\n" "items.{EXTRA_MSG}" " Items are useful for your\n" "dungeon adventures.{EXTRA_MSG}" " Use your imagination and\n" - "discover innovative uses{COMMA} please.{EXTRA_MSG}" - " Ah{COMMA} yes.\n" + "discover innovative uses, please.{EXTRA_MSG}" + " Ah, yes.\n" "If my shop sells out...{EXTRA_MSG}" " New merchandise will\n" "arrive the following day.{EXTRA_MSG}" - " Until then{COMMA} please go to\n" + " Until then, please go to\n" "a dungeon and spend some time.\n" "Please visit on your return〜♪{EXTRA_MSG}" - " Ah{COMMA} yes. The {ARG_POKEMON_6}\n" + " Ah, yes. The {ARG_POKEMON_6}\n" "Shop is a nationwide chain.{EXTRA_MSG}" " There are shops even in\n" "dungeons.\n" "Please do visit〜♪ "); ALIGNED(4) static const u8 sUnknown_80D7480[] = _( - " Oh{COMMA} my!{WAIT_PRESS}\n" - "You can{APOSTROPHE}t add any more to your money.\n" - "I can{APOSTROPHE}t complete this deal{COMMA} sorry."); + " Oh, my!{WAIT_PRESS}\n" + "You can't add any more to your money.\n" + "I can't complete this deal, sorry."); ALIGNED(4) static const u8 sUnknown_80D74DC[] = _( - " Oh{COMMA} whoa{COMMA} whoa!{WAIT_PRESS}\n" - "I... I couldn{APOSTROPHE}t possibly take that from you!"); + " Oh, whoa, whoa!{WAIT_PRESS}\n" + "I... I couldn't possibly take that from you!"); ALIGNED(4) static const u8 sUnknown_80D7524[] = _( - " Oh{COMMA} my!{WAIT_PRESS}\n" - "Sorry{COMMA} but you don{APOSTROPHE}t have enough money!"); + " Oh, my!{WAIT_PRESS}\n" + "Sorry, but you don't have enough money!"); ALIGNED(4) static const u8 sUnknown_80D7560[] = _( " Uh-oh?!{WAIT_PRESS}\n" - "That{APOSTROPHE}s it! No more merchandise!{EXTRA_MSG}" - " I{APOSTROPHE}m completely sold out!"); + "That's it! No more merchandise!{EXTRA_MSG}" + " I'm completely sold out!"); ALIGNED(4) static const u8 sUnknown_80D75AC[] = _( - " Oh{COMMA} my!{WAIT_PRESS}\n" + " Oh, my!{WAIT_PRESS}\n" "You have no space for any more items!"); ALIGNED(4) static const u8 sUnknown_80D75E0[] = _( " Oh? Oh?{WAIT_PRESS}\n" - "You don{APOSTROPHE}t seem to have anything?"); + "You don't seem to have anything?"); ALIGNED(4) static const u8 sUnknown_80D7610[] = _( " Oh? Oh?{WAIT_PRESS}\n" "You seem to have nothing to sell?"); ALIGNED(4) static const u8 sUnknown_80D7640[] = _( - " Oh{COMMA} my goodness!\n" - "You{APOSTROPHE}re overflowing with money!{EXTRA_MSG}" - " You couldn{APOSTROPHE}t possibly carry\n" + " Oh, my goodness!\n" + "You're overflowing with money!{EXTRA_MSG}" + " You couldn't possibly carry\n" "any more money! "); ALIGNED(4) static const u8 sUnknown_80D76A8[] = _( " Huh?{WAIT_PRESS}\n" - "You don{APOSTROPHE}t seem to have the money?"); + "You don't seem to have the money?"); ALIGNED(4) static const u8 sUnknown_80D76D4[] = _( - " ...{WAIT_PRESS}I{APOSTROPHE}m sold out...\n" - "Please{COMMA} forgive me.{EXTRA_MSG}" + " ...{WAIT_PRESS}I'm sold out...\n" + "Please, forgive me.{EXTRA_MSG}" " I will have new merchandise\n" - "for you tomorrow{COMMA} I swear!"); + "for you tomorrow, I swear!"); ALIGNED(4) static const u8 sUnknown_80D7740[] = _( " Good! Done deal!\n" "Thank you so much〜♪ "); ALIGNED(4) static const u8 sUnknown_80D776C[] = _( - " For everything I can buy{COMMA}\n" + " For everything I can buy,\n" "I can offer {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}.\n" "Is that acceptable to you?"); @@ -623,7 +623,7 @@ ALIGNED(4) static const u8 sUnknown_80D780C[] = _( "anything else?"); ALIGNED(4) static const u8 sUnknown_80D7830[] = _( - " Ah{COMMA} very well!\n" + " Ah, very well!\n" "What do you wish to sell?"); ALIGNED(4) static const u8 sUnknown_80D785C[] = _( @@ -640,7 +640,7 @@ ALIGNED(4) static const u8 sUnknown_80D78CC[] = _( "anything else today?"); ALIGNED(4) static const u8 sUnknown_80D78F8[] = _( - " Ah{COMMA} very well!\n" + " Ah, very well!\n" "Feel free to examine my merchandise〜♪"); ALIGNED(4) static const u8 sUnknown_80D7934[] = _( diff --git a/src/data/common_strings_makuhita_dojo.h b/src/data/common_strings_makuhita_dojo.h index 2bab2fce2..efdb7477d 100644 --- a/src/data/common_strings_makuhita_dojo.h +++ b/src/data/common_strings_makuhita_dojo.h @@ -56,7 +56,7 @@ ALIGNED(4) static const u8 sUnknown_80DA018[] = _( " Zzznarr... Urr!\n" "Make stronger rescue team...{EXTRA_MSG}" " Urr... Zzznarr!\n" - "Don{APOSTROPHE}t let up!"); + "Don't let up!"); ALIGNED(4) static const u8 sUnknown_80DA0DC[] = _( " Zzznarr... Zzz...!\n" @@ -88,13 +88,13 @@ ALIGNED(4) static const u8 sUnknown_80DA204[] = _( ALIGNED(4) static const u8 sUnknown_80DA248[] = _( " Aiyah... Zzznarr...\n" - "Didn{APOSTROPHE}t finish...{EXTRA_MSG}" + "Didn't finish...{EXTRA_MSG}" " Zzz... Urr?\n" "No giving up..."); ALIGNED(4) static const u8 sUnknown_80DA290[] = _( " Zzz... Narr...\n" - "{ARG_POKEMON_0}? {APOSTROPHE}K{COMMA} go..."); + "{ARG_POKEMON_0}? 'K, go..."); ALIGNED(4) static const u8 sUnknown_80DA2B4[] = _( " Zzznarr... Zzz...\n" @@ -123,18 +123,18 @@ ALIGNED(4) static const u8 sUnknown_80DA338[] = _( "Fire-type Pokémon.{EXTRA_MSG}" " In the {COLOR_1 YELLOW_4}Water Maze{END_COLOR_TEXT_1} there\n" "will only be Water-type Pokémon.{EXTRA_MSG}" - " In such ways{COMMA} only one type\n" + " In such ways, only one type\n" "of Pokémon will be in a given room.\n" "Study how types match up in battle.{EXTRA_MSG}" - " The Pokémon in this dojo{COMMA}\n" - "by the way{COMMA} are all volunteers.{EXTRA_MSG}" + " The Pokémon in this dojo,\n" + "by the way, are all volunteers.{EXTRA_MSG}" " They are participating\n" "because they want to see rescue teams\n" "succeed.{EXTRA_MSG}" " The only thanks they expect\n" "is to see you become stronger.\n" - "Don{APOSTROPHE}t let them down!{EXTRA_MSG}" - " There{APOSTROPHE}s more.{WAIT_PRESS}\n" + "Don't let them down!{EXTRA_MSG}" + " There's more.{WAIT_PRESS}\n" "For a rescue team that successfully\n" "completes all training courses...{EXTRA_MSG}" " I have a special reward!{EXTRA_MSG}" @@ -142,7 +142,7 @@ ALIGNED(4) static const u8 sUnknown_80DA338[] = _( "harder!"); ALIGNED(4) static const u8 sUnknown_80DA62C[] = _( - " Don{APOSTROPHE}t let up on your training!\n" + " Don't let up on your training!\n" "Keep bettering yourself!{EXTRA_MSG}" " May you never lose your\n" "drive!"); @@ -150,27 +150,27 @@ ALIGNED(4) static const u8 sUnknown_80DA62C[] = _( ALIGNED(4) static const u8 sUnknown_80DA688[] = _( " Ah...\n" "You have succeeded in your training!{EXTRA_MSG}" - " You{APOSTROPHE}ve shown your worth!{WAIT_PRESS}\n" - "Without a doubt{COMMA} you have grown more\n" + " You've shown your worth!{WAIT_PRESS}\n" + "Without a doubt, you have grown more\n" "powerful from your training!{WAIT_PRESS} Wait...{WAIT_PRESS} ...{EXTRA_MSG}" " Wuh?{WAIT_PRESS}\n" - "What{COMMA} what{COMMA} what?!{EXTRA_MSG}" + "What, what, what?!{EXTRA_MSG}" " Did you maybe...{WAIT_PRESS}\n" "Conquer all the training courses?{EXTRA_MSG}" - " That{APOSTROPHE}s...{WAIT_PRESS} Amazing! You!{WAIT_PRESS}\n" + " That's...{WAIT_PRESS} Amazing! You!{WAIT_PRESS}\n" "Congratulations!{EXTRA_MSG}" " I promised!{WAIT_PRESS}\n" "I promised you a reward for completing\n" "the training courses!{EXTRA_MSG}" " So... Here it is!{WAIT_PRESS}\n" "My {COLOR_1 GREEN_2}Bonsly Doll{END_COLOR_TEXT_1}!{EXTRA_MSG}" - " Isn{APOSTROPHE}t it smashing? Hey?!"); + " Isn't it smashing? Hey?!"); ALIGNED(4) static const u8 sUnknown_80DA844[] = _( " Ah...\n" "You have succeeded in your training!{EXTRA_MSG}" - " You{APOSTROPHE}ve shown your worth!{WAIT_PRESS}\n" - "Without a doubt{COMMA} you have grown more\n" + " You've shown your worth!{WAIT_PRESS}\n" + "Without a doubt, you have grown more\n" "powerful from your training!{EXTRA_MSG}" " May this success drive\n" "you to train even harder!"); @@ -191,12 +191,12 @@ ALIGNED(4) static const u8 sUnknown_80DA998[] = _( ALIGNED(4) static const u8 sUnknown_80DA9D4[] = _(" Where do you wish to train?"); ALIGNED(4) static const u8 sUnknown_80DA9F4[] = _( - " Fine{COMMA} farewell.\n" + " Fine, farewell.\n" "Return if you seek more training."); ALIGNED(4) static const u8 sUnknown_80DAA2C[] = _(" What else do you seek?"); ALIGNED(4) static const u8 sUnknown_80DAA44[] = _( " This is the Makuhita Dojo!{WAIT_PRESS}\n" - "Through rigorous training{COMMA} one begets\n" + "Through rigorous training, one begets\n" "true power."); \ No newline at end of file diff --git a/src/data/common_strings_wigglytuff_shop.h b/src/data/common_strings_wigglytuff_shop.h index ca680cc43..f614e93f9 100644 --- a/src/data/common_strings_wigglytuff_shop.h +++ b/src/data/common_strings_wigglytuff_shop.h @@ -91,10 +91,10 @@ ALIGNED(4) static const u8 sUnknown_80D7A44[] = _( " Zzz... Kwoo...\n" "You need Friend Areas for friends...{EXTRA_MSG}" " Zzz... Zzz...\n" - "A Pokémon becomes your pal when it{APOSTROPHE}s in\n" + "A Pokémon becomes your pal when it's in\n" "the right Friend Area...{EXTRA_MSG}" " Zzz... Dwee...\n" - "That{APOSTROPHE}s why you should get more Friend\n" + "That's why you should get more Friend\n" "Areas...{EXTRA_MSG}" " Zzz... Pokémon can only\n" "live in the right Friend Area for\n" @@ -103,27 +103,27 @@ ALIGNED(4) static const u8 sUnknown_80D7A44[] = _( "See what Pokémon can live there by\n" "checking {COLOR_1 YELLOW}Info{END_COLOR_TEXT_1}...{EXTRA_MSG}" " Zzz...\n" - "I don{APOSTROPHE}t sell some Friend Areas...{EXTRA_MSG}" + "I don't sell some Friend Areas...{EXTRA_MSG}" " Kwoo...\n" "Some rescue missions reward you with\n" "Friend Areas...{EXTRA_MSG}" " Zzz... Dwee...\n" - "Check the Pelipper Post Office{APOSTROPHE}s Bulletin\n" + "Check the Pelipper Post Office's Bulletin\n" "Board or your Mailbox for missions..."); ALIGNED(4) static const u8 sUnknown_80D7C94[] = _( " Sssnore...\n" "{COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}...?\n" - "I can{APOSTROPHE}t get that Friend Area...{EXTRA_MSG}" + "I can't get that Friend Area...{EXTRA_MSG}" " Zzz... Zzz...\n" "Sorry..."); ALIGNED(4) static const u8 sUnknown_80D7CE8[] = _( " Zzz... Hunh...?\n" "{COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}...?\n" - "I don{APOSTROPHE}t know... I{APOSTROPHE}ll check...{EXTRA_MSG}" + "I don't know... I'll check...{EXTRA_MSG}" " Sssnore...\n" - "I{APOSTROPHE}ll have it for sale...\n" + "I'll have it for sale...\n" "When I find out..."); ALIGNED(4) static const u8 sUnknown_80D7D64[] = _( @@ -133,7 +133,7 @@ ALIGNED(4) static const u8 sUnknown_80D7D64[] = _( ALIGNED(4) static const u8 sUnknown_80D7DA0[] = _( " Dwee... Kwoo...\n" - "{COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}{APOSTROPHE}s Friend Area...\n" + "{COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}'s Friend Area...\n" "Zzz... {COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}..."); ALIGNED(4) static const u8 sUnknown_80D7DE0[] = _( @@ -155,13 +155,13 @@ ALIGNED(4) static const u8 sUnknown_80D7E58[] = _( ALIGNED(4) static const u8 sUnknown_80D7E9C[] = _( " Hunh...?{WAIT_PRESS}\n" - "You don{APOSTROPHE}t have any money...\n" + "You don't have any money...\n" "Zzzzzz..."); ALIGNED(4) static const u8 sUnknown_80D7ED0[] = _( " Zzz... Zzz?{WAIT_PRESS}\n" "Hunh...?\n" - "You can{APOSTROPHE}t add to your Friend Areas..."); + "You can't add to your Friend Areas..."); ALIGNED(4) static const u8 sUnknown_80D7F10[] = _( " Grats... Zzz...{WAIT_PRESS}\n" @@ -172,16 +172,16 @@ ALIGNED(4) static const u8 sUnknown_80D7F10[] = _( ALIGNED(4) static const u8 sUnknown_80D7F7C[] = _( " Zzz... Dwee... Gotcha...{WAIT_PRESS}\n" - "Zzz... Let{APOSTROPHE}s do it...{EXTRA_MSG}" + "Zzz... Let's do it...{EXTRA_MSG}" " Sssnore♪ Sssnore♪\n" "{ARG_POKEMON_6}〜♪ {ARG_POKEMON_6}〜♪\n" - "Let{APOSTROPHE}s be friends...{EXTRA_MSG}" + "Let's be friends...{EXTRA_MSG}" " Kwoo!\n" "Taaaaaaah!"); ALIGNED(4) static const u8 sUnknown_80D8000[] = _( " Kwoo? {COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}?\n" - "That{APOSTROPHE}s {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}...\n" + "That's {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}...\n" "OK?"); ALIGNED(4) static const u8 sUnknown_80D8030[] = _( @@ -195,7 +195,7 @@ ALIGNED(4) static const u8 sUnknown_80D8054[] = _( ALIGNED(4) static const u8 sUnknown_80D8080[] = _( " Thank... Zzz... You...\n" - "Friends{COMMA} friend..."); + "Friends, friend..."); ALIGNED(4) static const u8 sUnknown_80D80B0[] = _( " Anything? Kwoo...\n" @@ -209,41 +209,41 @@ ALIGNED(4) static const u8 sUnknown_80D8104[] = _( " Would you like to get more\n" "friends...{WAIT_PRESS}\n" "...More members for your team?{EXTRA_MSG}" - " To add new friends{COMMA} what\n" + " To add new friends, what\n" "you need are Friend Areas.{EXTRA_MSG}" " A Pokémon can join your\n" "rescue team only after it settles in\n" "the right Friend Area.{EXTRA_MSG}" - " So{COMMA} if you want to recruit\n" - "new members{COMMA} you should add to your\n" + " So, if you want to recruit\n" + "new members, you should add to your\n" "Friend Areas.{EXTRA_MSG}" - " Oh{COMMA} yes{COMMA} Pokémon can\n" + " Oh, yes, Pokémon can\n" "only live in the right Friend Area for\n" "their species.{EXTRA_MSG}" - " If you{APOSTROPHE}re buying a Friend\n" - "Area{COMMA} you should confirm what Pokémon\n" + " If you're buying a Friend\n" + "Area, you should confirm what Pokémon\n" "can live there by checking {COLOR_1 YELLOW}Info{END_COLOR_TEXT_1}.{EXTRA_MSG}" - " Also{COMMA} there are some Friend\n" - "Areas that I don{APOSTROPHE}t sell.{EXTRA_MSG}" + " Also, there are some Friend\n" + "Areas that I don't sell.{EXTRA_MSG}" " I think there are some\n" "rescue missions that give you access\n" - "to Friend Areas{COMMA} too.{EXTRA_MSG}" + "to Friend Areas, too.{EXTRA_MSG}" " You should check the\n" - "Pelipper Post Office{APOSTROPHE}s Bulletin Board or\n" + "Pelipper Post Office's Bulletin Board or\n" "your Mailbox for rescue requests.{EXTRA_MSG}" - " You know{COMMA} it makes me\n" + " You know, it makes me\n" "delighted when you make new friends!"); ALIGNED(4) static const u8 sUnknown_80D8420[] = _( " {COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}?\n" - "I can{APOSTROPHE}t get that Friend Area for you.{WAIT_PRESS}\n" - "I{APOSTROPHE}m really sorry."); + "I can't get that Friend Area for you.{WAIT_PRESS}\n" + "I'm really sorry."); ALIGNED(4) static const u8 sUnknown_80D8468[] = _( " {COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}?\n" - "I don{APOSTROPHE}t know much about it at all.{WAIT_PRESS}\n" - "I{APOSTROPHE}ll check up on it.{EXTRA_MSG}" - " I{APOSTROPHE}ll add it to the Friend\n" + "I don't know much about it at all.{WAIT_PRESS}\n" + "I'll check up on it.{EXTRA_MSG}" + " I'll add it to the Friend\n" "Areas you can buy when I find out more."); ALIGNED(4) static const u8 sUnknown_80D84F8[] = _( @@ -251,12 +251,12 @@ ALIGNED(4) static const u8 sUnknown_80D84F8[] = _( "Friend Area {COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}."); ALIGNED(4) static const u8 sUnknown_80D8528[] = _( - " {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}{APOSTROPHE}s Friend Area\n" + " {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}'s Friend Area\n" "is {COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}."); ALIGNED(4) static const u8 sUnknown_80D8550[] = _( " Is there another Pokémon\n" - "you{APOSTROPHE}d like to check?"); + "you'd like to check?"); ALIGNED(4) static const u8 sUnknown_80D8584[] = _( " Which Pokémon would you\n" @@ -264,21 +264,21 @@ ALIGNED(4) static const u8 sUnknown_80D8584[] = _( ALIGNED(4) static const u8 sUnknown_80D85AC[] = _( " Oops?{WAIT_PRESS}\n" - "It doesn{APOSTROPHE}t look like you have enough\n" + "It doesn't look like you have enough\n" "money!"); ALIGNED(4) static const u8 sUnknown_80D85E4[] = _( " Oops?{WAIT_PRESS}\n" - "Oh{COMMA} too bad.{WAIT_PRESS}\n" - "I{APOSTROPHE}m fresh out of Friend Areas."); + "Oh, too bad.{WAIT_PRESS}\n" + "I'm fresh out of Friend Areas."); ALIGNED(4) static const u8 sUnknown_80D8620[] = _( " Um?{WAIT_PRESS}\n" - "You don{APOSTROPHE}t have any money."); + "You don't have any money."); ALIGNED(4) static const u8 sUnknown_80D8644[] = _( " Oops!{WAIT_PRESS}\n" - "You can{APOSTROPHE}t add to your Friend Areas."); + "You can't add to your Friend Areas."); ALIGNED(4) static const u8 sUnknown_80D8674[] = _( " Congratulations!{WAIT_PRESS}\n" @@ -288,9 +288,9 @@ ALIGNED(4) static const u8 sUnknown_80D8674[] = _( "{COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}."); ALIGNED(4) static const u8 sUnknown_80D86E4[] = _( - " Gotcha! Let{APOSTROPHE}s do it!{WAIT_PRESS}\n" + " Gotcha! Let's do it!{WAIT_PRESS}\n" "{ARG_POKEMON_6}〜♪ {ARG_POKEMON_6}〜♪{WAIT_PRESS}\n" - "Let{APOSTROPHE}s be friends... Yoomtaaaaaaah!"); + "Let's be friends... Yoomtaaaaaaah!"); ALIGNED(4) static const u8 sUnknown_80D8738[] = _( " {COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}?\n" @@ -302,13 +302,13 @@ ALIGNED(4) static const u8 sUnknown_80D876C[] = _( "other Friend Areas?"); ALIGNED(4) static const u8 sUnknown_80D8798[] = _( - " You{APOSTROPHE}d like to add to your\n" + " You'd like to add to your\n" "Friend Areas?\n" "Which one would you like?"); ALIGNED(4) static const u8 sUnknown_80D87E0[] = _( " Thank you! Come again!\n" - "We{APOSTROPHE}re all friends{COMMA} friend!"); + "We're all friends, friend!"); ALIGNED(4) static const u8 sUnknown_80D8818[] = _( " Anything else I can do for\n" diff --git a/src/data/friend_area_action_menu.h b/src/data/friend_area_action_menu.h index 8706913e0..028a8ae23 100644 --- a/src/data/friend_area_action_menu.h +++ b/src/data/friend_area_action_menu.h @@ -57,7 +57,7 @@ ALIGNED(4) static const u8 sSayFarewellPrompt[] = _( ALIGNED(4) static const u8 sSayFarewellConfirm[] = _( "If you say farewell to this\n" - "Pokémon{COMMA} it will be gone forever.{EXTRA_MSG}" + "Pokémon, it will be gone forever.{EXTRA_MSG}" "You will never be able to get another one\n" "like it to join your team.\n" "Will you release it anyway?"); diff --git a/src/data/friend_rescue_menus.h b/src/data/friend_rescue_menus.h index 39da86698..2911db275 100644 --- a/src/data/friend_rescue_menus.h +++ b/src/data/friend_rescue_menus.h @@ -198,7 +198,7 @@ const MenuItem gUnknown_80E23A8[4] = { {NULL, 0x8}, }; -ALIGNED(4) const u8 DontSendPokemon_80E23C8[] = _("Don{APOSTROPHE}t Send Pokémon"); +ALIGNED(4) const u8 DontSendPokemon_80E23C8[] = _("Don't Send Pokémon"); ALIGNED(4) const u8 SendPokemon_80E23E0[] = _("Send Pokémon"); const UnkTextStruct2 gUnknown_80E23F0 = @@ -250,7 +250,7 @@ const MenuItem gUnknown_80E2470[4] = { {NULL, 0x8}, }; -const u8 DontSendItem_80E2490[] = _("Don{APOSTROPHE}t Send Item"); +const u8 DontSendItem_80E2490[] = _("Don't Send Item"); const u8 SendItem_80E24A4[] = "Send Item"; extern const u8 SendwoItem_80E24C8[]; diff --git a/src/data/gulpin_shop.h b/src/data/gulpin_shop.h index 4e8df4187..c9312ab65 100644 --- a/src/data/gulpin_shop.h +++ b/src/data/gulpin_shop.h @@ -31,7 +31,7 @@ ALIGNED(4) static const u8 sWillAMoveBeForgotten[] = _( ALIGNED(4) static const u8 sForgetMoveAndLinkedOnes[] = _( "{CENTER_ALIGN}Forget the move {COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1} and\n" - "{CENTER_ALIGN}any moves linked to it{COMMA} and learn the move\n" + "{CENTER_ALIGN}any moves linked to it, and learn the move\n" "{CENTER_ALIGN}{COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}?"); ALIGNED(4) static const u8 sForgetMoveOnly[] = _( diff --git a/src/data/luminous_cave.h b/src/data/luminous_cave.h index 237136305..f10c58c9a 100644 --- a/src/data/luminous_cave.h +++ b/src/data/luminous_cave.h @@ -41,7 +41,7 @@ ALIGNED(4) static const u8 sEvolveInfo[] = _( "{CENTER_ALIGN}spot if they satisfy certain conditions.{EXTRA_MSG}" "{CENTER_ALIGN}Evolution brings about changes\n" "{CENTER_ALIGN}in appearance and abilities.{EXTRA_MSG}" - "{CENTER_ALIGN}Not only that{COMMA} some Pokémon even change\n" + "{CENTER_ALIGN}Not only that, some Pokémon even change\n" "{CENTER_ALIGN}type and learn different moves.{EXTRA_MSG}" "{CENTER_ALIGN}However...{WAIT_PRESS} The requirements for\n" "{CENTER_ALIGN}evolution differ among Pokémon.{EXTRA_MSG}" @@ -50,7 +50,7 @@ ALIGNED(4) static const u8 sEvolveInfo[] = _( "{CENTER_ALIGN}Still others may need special items\n" "{CENTER_ALIGN}to attain evolution.{EXTRA_MSG}" "{CENTER_ALIGN}Ye must also be aware of this:{EXTRA_MSG}" - "{CENTER_ALIGN}Once it has evolved{COMMA} a Pokémon\n" + "{CENTER_ALIGN}Once it has evolved, a Pokémon\n" "{CENTER_ALIGN}can never regain its previous form.{EXTRA_MSG}" "{CENTER_ALIGN}That is why ye must think carefully\n" "{CENTER_ALIGN}before committing to evolution."); @@ -66,7 +66,7 @@ ALIGNED(4) static const u8 sGiveAnotherItemPrompt[] = _( "{CENTER_ALIGN}Will ye give yet another item?"); ALIGNED(4) static const u8 sLackWhatIsNeeded[] = _( - "{CENTER_ALIGN}Alas{COMMA} ye seem to lack what is needed\n" + "{CENTER_ALIGN}Alas, ye seem to lack what is needed\n" "{CENTER_ALIGN}for evolution."); ALIGNED(4) static const u8 sOnlyOneItem[] = _( @@ -78,7 +78,7 @@ ALIGNED(4) static const u8 sLetUsBegin[] = _( ALIGNED(4) static const u8 sFmtChangedAppearance[] = _( "{CENTER_ALIGN}...{WAIT_PRESS}{ARG_NICKNAME_0} is undergoing changes...{EXTRA_MSG}" - "{CENTER_ALIGN}{ARG_NICKNAME_0}{APOSTROPHE}s appearance changed...{EXTRA_MSG}"); + "{CENTER_ALIGN}{ARG_NICKNAME_0}'s appearance changed...{EXTRA_MSG}"); ALIGNED(4) static const u8 sFmtEvolved[] = _( "{CENTER_ALIGN}It evolved from {COLOR_1 GREEN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}\n" diff --git a/src/data/main_menu2.h b/src/data/main_menu2.h index 83a8d2ddd..935626ceb 100644 --- a/src/data/main_menu2.h +++ b/src/data/main_menu2.h @@ -197,7 +197,7 @@ static const MenuItem sUnknown_80E5D48[] = {sUnknown_80E5D60, 0xffde}, {NULL, 0xffdd}, }; -ALIGNED(4) static const u8 sUnknown_80E5D60[] = _("It won{APOSTROPHE}t be in the release version."); +ALIGNED(4) static const u8 sUnknown_80E5D60[] = _("It won't be in the release version."); ALIGNED(4) static const u8 sUnknown_80E5D88[] = _("This is the Debug Mode."); static const u8 sUnknown_80E5DB8[]; @@ -230,7 +230,7 @@ static const MenuItem sUnknown_80E5E5C[] = {sUnknown_80E5E74, 0xFFDE}, {0, 0xFFDD} }; -ALIGNED(4) static const u8 sUnknown_80E5E74[] = _("passwords{COMMA} friends may rescue each other."); +ALIGNED(4) static const u8 sUnknown_80E5E74[] = _("passwords, friends may rescue each other."); ALIGNED(4) static const u8 sUnknown_80E5EA0[] = _("Using a Game Link cable or"); static const u8 sUnknown_80E5ED4[]; @@ -242,7 +242,7 @@ static const MenuItem sUnknown_80E5EBC[] = {0, 0xFFDD} }; ALIGNED(4) static const u8 sUnknown_80E5ED4[] = _("trade stored items with a friend."); -ALIGNED(4) static const u8 sUnknown_80E5EF8[] = _("Using a Game Link cable{COMMA} you can"); +ALIGNED(4) static const u8 sUnknown_80E5EF8[] = _("Using a Game Link cable, you can"); static const u8 sUnknown_80E5F34[]; static const u8 sUnknown_80E5F58[]; @@ -264,7 +264,7 @@ static const MenuItem sUnknown_80E5F80[] = {0, 0xFFDD} }; ALIGNED(4) static const u8 sUnknown_80E5F98[] = _("receive Wonder Mail."); -ALIGNED(4) static const u8 sUnknown_80E5FB0[] = _("Using passwords{COMMA} you can"); +ALIGNED(4) static const u8 sUnknown_80E5FB0[] = _("Using passwords, you can"); static const u8 sUnknown_80E5FE4[]; static const u8 sUnknown_80E6008[]; @@ -275,7 +275,7 @@ static const MenuItem sUnknown_80E5FCC[] = {NULL, 0xFFDD} }; ALIGNED(4) static const u8 sUnknown_80E5FE4[] = _("receive teams from your friends."); -ALIGNED(4) static const u8 sUnknown_80E6008[] = _("Using the Dual Slot function{COMMA} you can"); +ALIGNED(4) static const u8 sUnknown_80E6008[] = _("Using the Dual Slot function, you can"); static const u8 sUnknown_80E6048[]; static const u8 sUnknown_80E6070[]; @@ -286,4 +286,4 @@ static const MenuItem sUnknown_80E6030[] = {NULL, 0xFFDD} }; ALIGNED(4) static const u8 sUnknown_80E6048[] = _("go on an adventure to unknown worlds."); -ALIGNED(4) static const u8 sUnknown_80E6070[] = _("Using wireless communication{COMMA} you can"); \ No newline at end of file +ALIGNED(4) static const u8 sUnknown_80E6070[] = _("Using wireless communication, you can"); \ No newline at end of file diff --git a/src/data/other_menus1.h b/src/data/other_menus1.h index 95714d76b..2c1d21101 100644 --- a/src/data/other_menus1.h +++ b/src/data/other_menus1.h @@ -24,7 +24,7 @@ const MenuItem sUnknown_80E656C[4] = { // TODO: MAKE STATIC WHEN other_menus1.s {sUnknown_80E658C, 5}, {NULL, 3}, }; -ALIGNED(4) static const u8 sUnknown_80E658C[] = _("{CENTER_ALIGN}Don{APOSTROPHE}t turn the power off!"); +ALIGNED(4) static const u8 sUnknown_80E658C[] = _("{CENTER_ALIGN}Don't turn the power off!"); ALIGNED(4) static const u8 sUnknown_80E65AC[] = _("{CENTER_ALIGN}Item transmitting!"); ALIGNED(4) static const u8 sUnknown_80E65C4[] = _("{CENTER_ALIGN}{COLOR_1 RED}Caution!{END_COLOR_TEXT_1} "); @@ -162,7 +162,7 @@ static const MenuItem sUnknown_80E68B4[4] = { {sUnknown_80E68D4, 5}, {NULL, 3}, }; -ALIGNED(4) static const u8 sUnknown_80E68D4[] = _("{CENTER_ALIGN}someone{APOSTROPHE}s storage space was full."); +ALIGNED(4) static const u8 sUnknown_80E68D4[] = _("{CENTER_ALIGN}someone's storage space was full."); ALIGNED(4) static const u8 sUnknown_80E68FC[] = _("{CENTER_ALIGN}An item could not be transferred because"); ALIGNED(4) static const u8 sUnknown_80E6928[] = _("{CENTER_ALIGN}{COLOR_1 RED}Error!{END_COLOR_TEXT_1} "); @@ -184,7 +184,7 @@ static const MenuItem sUnknown_80E6950[4] = { {NULL, 3}, }; ALIGNED(4) static const u8 sUnknown_80E6970[] = _("{CENTER_ALIGN}Please check again."); -ALIGNED(4) static const u8 sUnknown_80E6988[] = _("{CENTER_ALIGN}This {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1} can{APOSTROPHE}t be used."); +ALIGNED(4) static const u8 sUnknown_80E6988[] = _("{CENTER_ALIGN}This {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1} can't be used."); static const UnkTextStruct2 sUnknown_80E69B0 = { 0, 0, 0, 0, @@ -202,7 +202,7 @@ static const MenuItem sUnknown_80E69C8[4] = { {sUnknown_80E6970, 5}, {NULL, 3}, }; -ALIGNED(4) static const u8 sUnknown_80E69E8[] = _("{CENTER_ALIGN}This {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} can{APOSTROPHE}t be used."); +ALIGNED(4) static const u8 sUnknown_80E69E8[] = _("{CENTER_ALIGN}This {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} can't be used."); static const UnkTextStruct2 sUnknown_80E6A10 = { 0, 0, 0, 0, @@ -220,7 +220,7 @@ static const MenuItem sUnknown_80E6A28[4] = { {sUnknown_80E6970, 5}, {NULL, 3}, }; -ALIGNED(4) static const u8 sUnknown_80E6A48[] = _("{CENTER_ALIGN}This {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} can{APOSTROPHE}t be used."); +ALIGNED(4) static const u8 sUnknown_80E6A48[] = _("{CENTER_ALIGN}This {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} can't be used."); static const UnkTextStruct2 sUnknown_80E6A74 = { 0, 0, 0, 0, @@ -239,7 +239,7 @@ static const MenuItem sUnknown_80E6A8C[4] = { {sUnknown_80E6AAC, 5}, {NULL, 3}, }; -ALIGNED(4) static const u8 sUnknown_80E6AAC[] = _("{CENTER_ALIGN}It can{APOSTROPHE}t be received."); +ALIGNED(4) static const u8 sUnknown_80E6AAC[] = _("{CENTER_ALIGN}It can't be received."); ALIGNED(4) static const u8 sUnknown_80E6AC8[] = _("{CENTER_ALIGN}There is no space for new mail."); UNUSED static const UnkTextStruct2 sUnknown_80E6AEC = { @@ -280,7 +280,7 @@ static const MenuItem sUnknown_80E6B90[4] = { {NULL, 3}, }; ALIGNED(4) static const u8 sUnknown_80E6BB0[] = _("{CENTER_ALIGN}Please try again."); -ALIGNED(4) static const u8 sUnknown_80E6BC4[] = _("{CENTER_ALIGN}There was a problem on your friend{APOSTROPHE}s end."); +ALIGNED(4) static const u8 sUnknown_80E6BC4[] = _("{CENTER_ALIGN}There was a problem on your friend's end."); static const UnkTextStruct2 sUnknown_80E6BF4 = { 0, 0, 0, 0, diff --git a/src/data/party_list_menu.h b/src/data/party_list_menu.h index 2225a2a11..a0d73d0e9 100644 --- a/src/data/party_list_menu.h +++ b/src/data/party_list_menu.h @@ -52,7 +52,7 @@ ALIGNED(4) static const u8 sUnknown_80DD388[] = _( ALIGNED(4) static const u8 sUnknown_80DD420[] = _( "If you say farewell to this\n" - "Pokémon{COMMA} it will be gone forever.{EXTRA_MSG}" + "Pokémon, it will be gone forever.{EXTRA_MSG}" "You will never be able to get another one\n" "like it to join your team.\n" "Will you release it anyway?"); @@ -72,7 +72,7 @@ ALIGNED(4) static const u8 sBecameLeader[] = _( ALIGNED(4) static const u8 sUnknown_80DD564[] = _( "{CENTER_ALIGN}{ARG_POKEMON_1} left\n" "{CENTER_ALIGN}the Friend Area.\n" - "{CENTER_ALIGN}Bye-bye{COMMA} {ARG_POKEMON_1}!"); + "{CENTER_ALIGN}Bye-bye, {ARG_POKEMON_1}!"); ALIGNED(4) static const u8 sUnknown_80DD594[] = _( "{CENTER_ALIGN}The {COLOR_1 GREEN}{ARG_MOVE_ITEM_1}{END_COLOR_TEXT_1} was\n" diff --git a/src/data/personality_test1.h b/src/data/personality_test1.h index 3fe9dc1e7..bae1a59dd 100644 --- a/src/data/personality_test1.h +++ b/src/data/personality_test1.h @@ -52,7 +52,7 @@ static const MenuItem HardyQuest3Answers[] = static const u8 HardyQuest3Question[]; static const PersonalityQuestion HardyQuest3 = { HardyQuest3Question, HardyQuest3Answers, HardyQuest3Points }; ALIGNED(4) static const u8 HardyQuest3Question[] = _( - "When the going gets tough{COMMA} do you get\n" + "When the going gets tough, do you get\n" "going?"); ALIGNED(4) static const u8 HardyQuest4Points[48] = @@ -74,7 +74,7 @@ static const u8 HardyQuest4Question[]; static const PersonalityQuestion HardyQuest4 = { HardyQuest4Question, HardyQuest4Answers, HardyQuest4Points }; ALIGNED(4) static const u8 HardyQuest4Question[] = _( "There is a bucket. If you put\n" - "water in it{COMMA} how high will you fill it?"); + "water in it, how high will you fill it?"); ALIGNED(4) static const u8 DocileQuest1Points[32] = { @@ -131,14 +131,14 @@ static const MenuItem DocileQuest3Answers[] = {DocileQuest3_Cool, 2}, {NULL, -1}, }; -ALIGNED(4) static const u8 DocileQuest3_Cool[] = _("Say thanks{COMMA} but be cool."); +ALIGNED(4) static const u8 DocileQuest3_Cool[] = _("Say thanks, but be cool."); ALIGNED(4) static const u8 DocileQuest3_Joke[] = _("Say thanks with a joke."); ALIGNED(4) static const u8 DocileQuest3_Regular[] = _("Say thank you regularly."); static const u8 DocileQuest3Question[]; static const PersonalityQuestion DocileQuest3 = { DocileQuest3Question, DocileQuest3Answers, DocileQuest3Points }; ALIGNED(4) static const u8 DocileQuest3Question[] = _( - "A friend brought over something you{APOSTROPHE}d\n" + "A friend brought over something you'd\n" "forgotten.{WAIT_PRESS}\n" "How do you thank your friend?"); @@ -177,8 +177,8 @@ static const MenuItem BraveQuest1Answers[] = static const u8 BraveQuest1Question[]; static const PersonalityQuestion BraveQuest1 = { BraveQuest1Question, BraveQuest1Answers, BraveQuest1Points }; ALIGNED(4) static const u8 BraveQuest1Question[] = _( - "You{APOSTROPHE}re going bungee jumping for the first\n" - "time.{EXTRA_MSG}Since it{APOSTROPHE}s scary{COMMA} you decide to test the\n" + "You're going bungee jumping for the first\n" + "time.{EXTRA_MSG}Since it's scary, you decide to test the\n" "jump with a doll...{WAIT_PRESS}\n" "And the bungee cord snaps!{EXTRA_MSG}" "Will you still try to make a jump anyway?"); @@ -221,9 +221,9 @@ static const u8 BraveQuest2BQuestion[]; static const PersonalityQuestion BraveQuest2B = { BraveQuest2BQuestion, BraveQuest2BAnswers, BraveQuest2BPoints }; ALIGNED(4) static const u8 BraveQuest2BQuestion[] = _( "You valiantly fight the aliens...{WAIT_PRESS}\n" - "But{COMMA} you are defeated...{EXTRA_MSG}An alien says to you...{EXTRA_MSG}{QUOTE_START}YOU HAVE IMPRESSED US.\n" - "IT WAS A PLEASURE TO SEE.{EXTRA_MSG}JOIN US{COMMA} AND TOGETHER WE SHALL\n" - "RULE THE WORLD.{QUOTE_END}{WAIT_PRESS}\n" + "But, you are defeated...{EXTRA_MSG}An alien says to you...{EXTRA_MSG}“YOU HAVE IMPRESSED US.\n" + "IT WAS A PLEASURE TO SEE.{EXTRA_MSG}JOIN US, AND TOGETHER WE SHALL\n" + "RULE THE WORLD.”{WAIT_PRESS}\n" "What will you do?"); ALIGNED(4) static const u8 BraveQuest3Points[32] = @@ -267,7 +267,7 @@ static const MenuItem BraveQuest4Answers[] = }; ALIGNED(4) static const u8 BraveQuest4_Nothing[] = _("Do nothing out of fear."); ALIGNED(4) static const u8 BraveQuest4_Police[] = _("Call the police."); -ALIGNED(4) static const u8 BraveQuest4_Scared[] = _("Help{COMMA} even if scared."); +ALIGNED(4) static const u8 BraveQuest4_Scared[] = _("Help, even if scared."); ALIGNED(4) static const u8 BraveQuest4_Hesitation[] = _("Help without hesitation."); static const u8 BraveQuest4Question[]; @@ -331,7 +331,7 @@ static const MenuItem JollyQuest3Answers[] = static const u8 JollyQuest3Question[]; static const PersonalityQuestion JollyQuest3 = { JollyQuest3Question, JollyQuest3Answers, JollyQuest3Points }; ALIGNED(4) static const u8 JollyQuest3Question[] = _( - "It{APOSTROPHE}s the summer holidays!\n" + "It's the summer holidays!\n" "Where would you like to go?"); ALIGNED(4) static const u8 JollyQuest4Points[48] = @@ -351,7 +351,7 @@ static const MenuItem JollyQuest4Answers[] = {JollyQuest4_Go, 2}, {NULL, -1}, }; -ALIGNED(4) static const u8 JollyQuest4_Go[] = _("Right... Well{COMMA} I gotta go."); +ALIGNED(4) static const u8 JollyQuest4_Go[] = _("Right... Well, I gotta go."); ALIGNED(4) static const u8 JollyQuest4_Again[] = _("Um... Could you say that again?"); ALIGNED(4) static const u8 JollyQuest4_Funny[] = _("Haha! Yes. Very funny!"); @@ -360,7 +360,7 @@ static const PersonalityQuestion JollyQuest4 = { JollyQuest4Question, JollyQuest ALIGNED(4) static const u8 JollyQuest4Question[] = _( "A foreign person has started up a\n" "conversation with you.{EXTRA_MSG}" - "To be honest{COMMA} you don{APOSTROPHE}t have a clue what\n" + "To be honest, you don't have a clue what\n" "this fellow is saying.{WAIT_PRESS}\n" "How do you reply?"); @@ -615,8 +615,8 @@ static const u8 HastyQuest1Question[]; static const PersonalityQuestion HastyQuest1 = { HastyQuest1Question, HastyQuest1Answers, HastyQuest1Points }; ALIGNED(4) static const u8 HastyQuest1Question[] = _( "You receive a gift!{WAIT_PRESS}\n" - "But you don{APOSTROPHE}t know what{APOSTROPHE}s in it.{WAIT_PRESS}\n" - "You{APOSTROPHE}re curious{COMMA} so what do you do?"); + "But you don't know what's in it.{WAIT_PRESS}\n" + "You're curious, so what do you do?"); ALIGNED(4) static const u8 HastyQuest2Points[48] = { @@ -656,7 +656,7 @@ static const MenuItem HastyQuest3Answers[] = {HastyQuest3_Empty, 2}, {NULL, -1}, }; -ALIGNED(4) static const u8 HastyQuest3_Empty[] = _("It{APOSTROPHE}s going to be empty..."); +ALIGNED(4) static const u8 HastyQuest3_Empty[] = _("It's going to be empty..."); ALIGNED(4) static const u8 HastyQuest3_Trap[] = _("No... Could be a trap..."); ALIGNED(4) static const u8 HastyQuest3_Open[] = _("Open it right away!"); @@ -706,7 +706,7 @@ static const MenuItem SassyQuest1Answers[] = static const u8 SassyQuest1Question[]; static const PersonalityQuestion SassyQuest1 = { SassyQuest1Question, SassyQuest1Answers, SassyQuest1Points }; ALIGNED(4) static const u8 SassyQuest1Question[] = _( - "Your country{APOSTROPHE}s leader is in front of you.\n" + "Your country's leader is in front of you.\n" "How do you speak to him or her?"); ALIGNED(4) static const u8 SassyQuest2Points[32] = @@ -869,7 +869,7 @@ static const MenuItem RelaxedQuest2Answers[] = static const u8 RelaxedQuest2Question[]; static const PersonalityQuestion RelaxedQuest2 = { RelaxedQuest2Question, RelaxedQuest2Answers, RelaxedQuest2Points }; ALIGNED(4) static const u8 RelaxedQuest2Question[] = _( - "Do you get the feeling that you{APOSTROPHE}ve slowed\n" + "Do you get the feeling that you've slowed\n" "down lately?"); ALIGNED(4) static const u8 RelaxedQuest3Points[48] = @@ -962,8 +962,8 @@ static const MenuItem LonelyQuest3Answers[] = static const u8 LonelyQuest3Question[]; static const PersonalityQuestion LonelyQuest3 = { LonelyQuest3Question, LonelyQuest3Answers, LonelyQuest3Points }; ALIGNED(4) static const u8 LonelyQuest3Question[] = _( - "What do you do with your room{APOSTROPHE}s light\n" - "when you{APOSTROPHE}re going to bed at night?"); + "What do you do with your room's light\n" + "when you're going to bed at night?"); ALIGNED(4) static const u8 LonelyQuest4Points[48] = { @@ -983,7 +983,7 @@ static const MenuItem LonelyQuest4Answers[] = static const u8 LonelyQuest4Question[]; static const PersonalityQuestion LonelyQuest4 = { LonelyQuest4Question, LonelyQuest4Answers, LonelyQuest4Points }; ALIGNED(4) static const u8 LonelyQuest4Question[] = _( - "It{APOSTROPHE}s a weekend{COMMA} but no one will play\n" + "It's a weekend, but no one will play\n" "with you...\n" "What do you do?"); @@ -1024,7 +1024,7 @@ static const MenuItem QuirkyQuest2Answers[] = {NULL, -1}, }; ALIGNED(4) static const u8 QuirkyQuest2_Trouble[] = _("Too much trouble."); -ALIGNED(4) static const u8 QuirkyQuest2_MayMayNot[] = _("May reply{COMMA} may not."); +ALIGNED(4) static const u8 QuirkyQuest2_MayMayNot[] = _("May reply, may not."); ALIGNED(4) static const u8 QuirkyQuest2_Reply[] = _("Reply right away."); static const u8 QuirkyQuest2Question[]; @@ -1052,7 +1052,7 @@ static const u8 QuirkyQuest3Question[]; static const PersonalityQuestion QuirkyQuest3 = { QuirkyQuest3Question, QuirkyQuest3Answers, QuirkyQuest3Points }; ALIGNED(4) static const u8 QuirkyQuest3Question[] = _( "There is a person you like...{WAIT_PRESS}\n" - "But there{APOSTROPHE}s no opportunity to get close.\n" + "But there's no opportunity to get close.\n" "What do you do?"); ALIGNED(4) static const u8 QuirkyQuest4Points[48] = @@ -1073,7 +1073,7 @@ static const MenuItem QuirkyQuest4Answers[] = {NULL, -1}, }; ALIGNED(4) static const u8 QuirkyQuest4_EitherSide[] = _("Choose either side."); -ALIGNED(4) static const u8 QuirkyQuest4_GoLeft[] = _("It{APOSTROPHE}s a trap! Go left."); +ALIGNED(4) static const u8 QuirkyQuest4_GoLeft[] = _("It's a trap! Go left."); ALIGNED(4) static const u8 QuirkyQuest4_GoRight[] = _("Instantly go right."); static const u8 QuirkyQuest4Question[]; @@ -1098,7 +1098,7 @@ static const MenuItem MiscQuest1Answers[] = static const u8 MiscQuest1Question[]; static const PersonalityQuestion MiscQuest1 = { MiscQuest1Question, MiscQuest1Answers, MiscQuest1Points }; -ALIGNED(4) static const u8 MiscQuest1Question[] = _("On vacation outings{COMMA} you want to..."); +ALIGNED(4) static const u8 MiscQuest1Question[] = _("On vacation outings, you want to..."); ALIGNED(4) static const u8 MiscQuest2Points[32] = { @@ -1113,12 +1113,12 @@ static const MenuItem MiscQuest2Answers[] = {MiscQuest2_DontCare, 1}, {NULL, -1}, }; -ALIGNED(4) static const u8 MiscQuest2_DontCare[] = _("Don{APOSTROPHE}t care."); +ALIGNED(4) static const u8 MiscQuest2_DontCare[] = _("Don't care."); static const u8 MiscQuest2Question[]; static const PersonalityQuestion MiscQuest2 = { MiscQuest2Question, MiscQuest2Answers, MiscQuest2Points }; ALIGNED(4) static const u8 MiscQuest2Question[] = _( - "It{APOSTROPHE}s the summer festival!\n" + "It's the summer festival!\n" "Do you like carnivals?"); ALIGNED(4) static const u8 MiscQuest3Points[32] = @@ -1137,7 +1137,7 @@ static const MenuItem MiscQuest3Answers[] = static const u8 MiscQuest3Question[]; static const PersonalityQuestion MiscQuest3 = { MiscQuest3Question, MiscQuest3Answers, MiscQuest3Points }; ALIGNED(4) static const u8 MiscQuest3Question[] = _( - "Somebody calls you {QUOTE_START}weird but funny.{QUOTE_END}\n" + "Somebody calls you “weird but funny.”\n" "How does that make you feel?"); static const PersonalityQuestion* const gPersonalityQuestionPointerTable[NUM_QUIZ_QUESTIONS + 1] = @@ -1224,12 +1224,12 @@ ALIGNED(4) static const u8 gPartnerPrompt[] = _( "{CENTER_ALIGN}as your partner from this group."); UNUSED ALIGNED(4) static const u8* const gPartnerPromptPtr = gPartnerPrompt; -ALIGNED(4) static const u8 gPartnerNickPrompt[] = _("{CENTER_ALIGN}What is your partner{APOSTROPHE}s nickname?"); +ALIGNED(4) static const u8 gPartnerNickPrompt[] = _("{CENTER_ALIGN}What is your partner's nickname?"); UNUSED ALIGNED(4) static const u8* const gPartnerNickPromptPtr[] = { gPartnerNickPrompt }; ALIGNED(4) static const u8 gEndIntroText[] = _( - "{CENTER_ALIGN}OK! We{APOSTROPHE}re all set!{EXTRA_MSG}" - "{CENTER_ALIGN}Let{APOSTROPHE}s get you into the\n" + "{CENTER_ALIGN}OK! We're all set!{EXTRA_MSG}" + "{CENTER_ALIGN}Let's get you into the\n" "{CENTER_ALIGN}world of Pokémon!{EXTRA_MSG}" "{CENTER_ALIGN}Go for it!"); UNUSED ALIGNED(4) static const u8* const gEndIntroTextPtr[] = { gEndIntroText }; @@ -1279,7 +1279,7 @@ ALIGNED(4) static const u8 gQuirkyDescription[] = _( "{CENTER_ALIGN}Maybe people are even upset\n" "{CENTER_ALIGN}with you for being so fickle?{EXTRA_MSG}" "{CENTER_ALIGN}If you realize how selfishly\n" - "{CENTER_ALIGN}you{APOSTROPHE}re behaving{COMMA} try to think\n" + "{CENTER_ALIGN}you're behaving, try to think\n" "{CENTER_ALIGN}before you do anything rash.{EXTRA_MSG}" "{CENTER_ALIGN}A quirky person like you should be..."); @@ -1288,23 +1288,23 @@ ALIGNED(4) static const u8 gLonelyDescription[] = _( "{CENTER_ALIGN}The lonely type.{EXTRA_MSG}" "{CENTER_ALIGN}You always act cheerful and\n" "{CENTER_ALIGN}jocular around other people.{EXTRA_MSG}" - "{CENTER_ALIGN}But that{APOSTROPHE}s only because\n" + "{CENTER_ALIGN}But that's only because\n" "{CENTER_ALIGN}you are with other people.{EXTRA_MSG}" - "{CENTER_ALIGN}However{COMMA} when you get alone...{EXTRA_MSG}" + "{CENTER_ALIGN}However, when you get alone...{EXTRA_MSG}" "{CENTER_ALIGN}Do you find yourself\n" "{CENTER_ALIGN}feeling oddly depressed?{EXTRA_MSG}" - "{CENTER_ALIGN}That{APOSTROPHE}s why you always\n" + "{CENTER_ALIGN}That's why you always\n" "{CENTER_ALIGN}want to be with others.{EXTRA_MSG}" "{CENTER_ALIGN}But if you go around feeling\n" "{CENTER_ALIGN}depressed too much...{EXTRA_MSG}" "{CENTER_ALIGN}Your nutritional balance goes out\n" "{CENTER_ALIGN}of wack. Eat more vegetables!{EXTRA_MSG}" "{CENTER_ALIGN}However...{WAIT_PRESS}\n" - "{CENTER_ALIGN}It{APOSTROPHE}s not a bad thing\n" + "{CENTER_ALIGN}It's not a bad thing\n" "{CENTER_ALIGN}to feel lonely.{EXTRA_MSG}" - "{CENTER_ALIGN}You know what it{APOSTROPHE}s like when you aren{APOSTROPHE}t\n" - "{CENTER_ALIGN}alone{COMMA} so that{APOSTROPHE}s why you feel lonesome.{EXTRA_MSG}" - "{CENTER_ALIGN}And that{APOSTROPHE}s why you aren{APOSTROPHE}t really alone.{EXTRA_MSG}" + "{CENTER_ALIGN}You know what it's like when you aren't\n" + "{CENTER_ALIGN}alone, so that's why you feel lonesome.{EXTRA_MSG}" + "{CENTER_ALIGN}And that's why you aren't really alone.{EXTRA_MSG}" "{CENTER_ALIGN}A lonely person like you should be..."); ALIGNED(4) static const u8 gRelaxedDescription[] = _( @@ -1315,28 +1315,28 @@ ALIGNED(4) static const u8 gRelaxedDescription[] = _( "{CENTER_ALIGN}Or do you find yourself dozing off?{EXTRA_MSG}" "{CENTER_ALIGN}Or is your reaction time\n" "{CENTER_ALIGN}a little slower than others?{EXTRA_MSG}" - "{CENTER_ALIGN}But that{APOSTROPHE}s not necessarily\n" + "{CENTER_ALIGN}But that's not necessarily\n" "{CENTER_ALIGN}a bad thing.{EXTRA_MSG}" "{CENTER_ALIGN}You can do things at your own\n" "{CENTER_ALIGN}tempo without feeling pressured.{EXTRA_MSG}" "{CENTER_ALIGN}You can live in a relaxed and\n" "{CENTER_ALIGN}unhurried manner without worries.{EXTRA_MSG}" - "{CENTER_ALIGN}I think that{APOSTROPHE}s a happy\n" - "{CENTER_ALIGN}lifestyle to be envied{COMMA} even.{EXTRA_MSG}" - "{CENTER_ALIGN}You{APOSTROPHE}re also surprisingly popular.{EXTRA_MSG}" + "{CENTER_ALIGN}I think that's a happy\n" + "{CENTER_ALIGN}lifestyle to be envied, even.{EXTRA_MSG}" + "{CENTER_ALIGN}You're also surprisingly popular.{EXTRA_MSG}" "{CENTER_ALIGN}The way you vacantly stare\n" "{CENTER_ALIGN}off into the distance...{EXTRA_MSG}" "{CENTER_ALIGN}It should make that someone\n" - "{CENTER_ALIGN}special{APOSTROPHE}s pulse race.{EXTRA_MSG}" + "{CENTER_ALIGN}special's pulse race.{EXTRA_MSG}" "{CENTER_ALIGN}A relaxed person like you should be..."); ALIGNED(4) static const u8 gCalmDescription[] = _( "{CENTER_ALIGN}You appear to be...{WAIT_PRESS}\n" "{CENTER_ALIGN}The calm type.{EXTRA_MSG}" - "{CENTER_ALIGN}You{APOSTROPHE}re capable of giving advice\n" + "{CENTER_ALIGN}You're capable of giving advice\n" "{CENTER_ALIGN}to friends with worries.{EXTRA_MSG}" - "{CENTER_ALIGN}You don{APOSTROPHE}t like to fight.{EXTRA_MSG}" - "{CENTER_ALIGN}You{APOSTROPHE}re a warm{COMMA} kindhearted\n" + "{CENTER_ALIGN}You don't like to fight.{EXTRA_MSG}" + "{CENTER_ALIGN}You're a warm, kindhearted\n" "{CENTER_ALIGN}person who cares.{EXTRA_MSG}" "{CENTER_ALIGN}You must have many friends\n" "{CENTER_ALIGN}who look up to you.{EXTRA_MSG}" @@ -1352,21 +1352,21 @@ ALIGNED(4) static const u8 gSassyDescription[] = _( "{CENTER_ALIGN}You appear to be...{WAIT_PRESS}\n" "{CENTER_ALIGN}The sassy type.{EXTRA_MSG}" "{CENTER_ALIGN}You tend to be somewhat cynical.{EXTRA_MSG}" - "{CENTER_ALIGN}Despite that{COMMA} there is something\n" + "{CENTER_ALIGN}Despite that, there is something\n" "{CENTER_ALIGN}appealing and lovable about you.{EXTRA_MSG}" "{CENTER_ALIGN}But do you occasionally say something\n" "{CENTER_ALIGN}arrogant that angers others?{EXTRA_MSG}" "{CENTER_ALIGN}Do you make that mistake?{EXTRA_MSG}" "{CENTER_ALIGN}Or have people called you\n" - "{CENTER_ALIGN}conceited{COMMA} vain{COMMA} or selfish?{EXTRA_MSG}" + "{CENTER_ALIGN}conceited, vain, or selfish?{EXTRA_MSG}" "{CENTER_ALIGN}Have people said that about you?{EXTRA_MSG}" - "{CENTER_ALIGN}Huh?{WAIT_PRESS} You{APOSTROPHE}re telling me to get lost?{EXTRA_MSG}" - "{CENTER_ALIGN}Why{COMMA} you... Come here and say that!{WAIT_PRESS}\n" + "{CENTER_ALIGN}Huh?{WAIT_PRESS} You're telling me to get lost?{EXTRA_MSG}" + "{CENTER_ALIGN}Why, you... Come here and say that!{WAIT_PRESS}\n" "{CENTER_ALIGN}......Gasp!{EXTRA_MSG}" - "{CENTER_ALIGN}...I{APOSTROPHE}m sorry.\n" + "{CENTER_ALIGN}...I'm sorry.\n" "{CENTER_ALIGN}I let my feelings run away.\n" - "{CENTER_ALIGN}I truly regret this{COMMA} really.{EXTRA_MSG}" - "{CENTER_ALIGN}Anyway{COMMA} your cool and aloof\n" + "{CENTER_ALIGN}I truly regret this, really.{EXTRA_MSG}" + "{CENTER_ALIGN}Anyway, your cool and aloof\n" "{CENTER_ALIGN}attitude is what defines you.{EXTRA_MSG}" "{CENTER_ALIGN}It makes you exasperating and\n" "{CENTER_ALIGN}appealing at the same time.{EXTRA_MSG}" @@ -1377,18 +1377,18 @@ ALIGNED(4) static const u8 gHastyDescription[] = _( "{CENTER_ALIGN}The hasty type.{EXTRA_MSG}" "{CENTER_ALIGN}You like to take charge\n" "{CENTER_ALIGN}and get things done.{EXTRA_MSG}" - "{CENTER_ALIGN}You{APOSTROPHE}re a real go-getter.{EXTRA_MSG}" + "{CENTER_ALIGN}You're a real go-getter.{EXTRA_MSG}" "{CENTER_ALIGN}But are you also stressed out?{EXTRA_MSG}" "{CENTER_ALIGN}You get irritated when your\n" - "{CENTER_ALIGN}friends don{APOSTROPHE}t show up on time.{EXTRA_MSG}" + "{CENTER_ALIGN}friends don't show up on time.{EXTRA_MSG}" "{CENTER_ALIGN}You get frustrated when things\n" - "{CENTER_ALIGN}don{APOSTROPHE}t turn out the way you expect.{EXTRA_MSG}" + "{CENTER_ALIGN}don't turn out the way you expect.{EXTRA_MSG}" "{CENTER_ALIGN}Maybe you jab the elevator button\n" "{CENTER_ALIGN}if the elevator is slow to arrive.{EXTRA_MSG}" - "{CENTER_ALIGN}...Maybe you{APOSTROPHE}re already jabbing\n" + "{CENTER_ALIGN}...Maybe you're already jabbing\n" "{CENTER_ALIGN}the A Button repeatedly now.{EXTRA_MSG}" "{CENTER_ALIGN}Beware--getting too easily irritated\n" - "{CENTER_ALIGN}just isn{APOSTROPHE}t good for your well-being.{EXTRA_MSG}" + "{CENTER_ALIGN}just isn't good for your well-being.{EXTRA_MSG}" "{CENTER_ALIGN}A hasty person like you should be..."); ALIGNED(4) static const u8 gTimidDescription[] = _( @@ -1399,8 +1399,8 @@ ALIGNED(4) static const u8 gTimidDescription[] = _( "{CENTER_ALIGN}You may also find it too frightening\n" "{CENTER_ALIGN}to go back to school to get something\n" "{CENTER_ALIGN}you left behind in class.{EXTRA_MSG}" - "{CENTER_ALIGN}If you{APOSTROPHE}re ever walking on a dark\n" - "{CENTER_ALIGN}street at night{COMMA} you probably turn\n" + "{CENTER_ALIGN}If you're ever walking on a dark\n" + "{CENTER_ALIGN}street at night, you probably turn\n" "{CENTER_ALIGN}around often to check behind you.{EXTRA_MSG}" "{CENTER_ALIGN}But your timid nature is\n" "{CENTER_ALIGN}also your good point!{EXTRA_MSG}" @@ -1411,7 +1411,7 @@ ALIGNED(4) static const u8 gTimidDescription[] = _( ALIGNED(4) static const u8 gNaiveDescription[] = _( "{CENTER_ALIGN}You appear to be...{WAIT_PRESS}\n" "{CENTER_ALIGN}The naive type.{EXTRA_MSG}" - "{CENTER_ALIGN}You are highly curious{COMMA}\n" + "{CENTER_ALIGN}You are highly curious,\n" "{CENTER_ALIGN}and you love rare things.{EXTRA_MSG}" "{CENTER_ALIGN}Your cheerful and carefree\n" "{CENTER_ALIGN}attitude should make things fun\n" @@ -1419,38 +1419,38 @@ ALIGNED(4) static const u8 gNaiveDescription[] = _( "{CENTER_ALIGN}But you do have one flaw.\n" "{CENTER_ALIGN}You can be childish.{EXTRA_MSG}" "{CENTER_ALIGN}You can never sit still.\n" - "{CENTER_ALIGN}You{APOSTROPHE}re always on the move.{EXTRA_MSG}" - "{CENTER_ALIGN}You can also be selfish{COMMA}\n" + "{CENTER_ALIGN}You're always on the move.{EXTRA_MSG}" + "{CENTER_ALIGN}You can also be selfish,\n" "{CENTER_ALIGN}so you should watch yourself.{EXTRA_MSG}" "{CENTER_ALIGN}A naive person like you should be..."); ALIGNED(4) static const u8 gImpishDescription[] = _( "{CENTER_ALIGN}You appear to be...{WAIT_PRESS}\n" "{CENTER_ALIGN}The impish type.{EXTRA_MSG}" - "{CENTER_ALIGN}You{APOSTROPHE}re playful{COMMA} cheerful{COMMA}\n" + "{CENTER_ALIGN}You're playful, cheerful,\n" "{CENTER_ALIGN}and you love pranks.{EXTRA_MSG}" - "{CENTER_ALIGN}You{APOSTROPHE}re also kindhearted.{EXTRA_MSG}" - "{CENTER_ALIGN}That{APOSTROPHE}s why the people around\n" + "{CENTER_ALIGN}You're also kindhearted.{EXTRA_MSG}" + "{CENTER_ALIGN}That's why the people around\n" "{CENTER_ALIGN}you find you so irresistible.{EXTRA_MSG}" "{CENTER_ALIGN}You must be the most\n" "{CENTER_ALIGN}popular person around!{EXTRA_MSG}" - "{CENTER_ALIGN}Oh?{WAIT_PRESS} You{APOSTROPHE}re not that popular?{WAIT_PRESS}\n" - "{CENTER_ALIGN}You{APOSTROPHE}re either being modest...\n" - "{CENTER_ALIGN}or you just don{APOSTROPHE}t notice it.{EXTRA_MSG}" + "{CENTER_ALIGN}Oh?{WAIT_PRESS} You're not that popular?{WAIT_PRESS}\n" + "{CENTER_ALIGN}You're either being modest...\n" + "{CENTER_ALIGN}or you just don't notice it.{EXTRA_MSG}" "{CENTER_ALIGN}I bet people are just too shy\n" "{CENTER_ALIGN}to let their feelings be known.{EXTRA_MSG}" - "{CENTER_ALIGN}There{APOSTROPHE}s someone out there who{APOSTROPHE}s\n" + "{CENTER_ALIGN}There's someone out there who's\n" "{CENTER_ALIGN}afraid to declare their love for you!{EXTRA_MSG}" "{CENTER_ALIGN}An impish person like you should be..."); ALIGNED(4) static const u8 gJollyDescription[] = _( "{CENTER_ALIGN}You appear to be...{WAIT_PRESS}\n" "{CENTER_ALIGN}The jolly type.{EXTRA_MSG}" - "{CENTER_ALIGN}Always laughing and smiling{COMMA}\n" + "{CENTER_ALIGN}Always laughing and smiling,\n" "{CENTER_ALIGN}you uplift everyone around you.{EXTRA_MSG}" "{CENTER_ALIGN}You love jokes!{EXTRA_MSG}" - "{CENTER_ALIGN}You have lots of friends{COMMA} and\n" - "{CENTER_ALIGN}you{APOSTROPHE}re popular wherever you go.{EXTRA_MSG}" + "{CENTER_ALIGN}You have lots of friends, and\n" + "{CENTER_ALIGN}you're popular wherever you go.{EXTRA_MSG}" "{CENTER_ALIGN}But sometimes you get carried away\n" "{CENTER_ALIGN}and say things that get you in trouble.{EXTRA_MSG}" "{CENTER_ALIGN}You should learn to think before\n" @@ -1468,19 +1468,19 @@ ALIGNED(4) static const u8 gBraveDescription[] = _( "{CENTER_ALIGN}For justice...{WAIT_PRESS}\n" "{CENTER_ALIGN}For peace on earth...{WAIT_PRESS}\n" "{CENTER_ALIGN}Fight the forces of evil!{EXTRA_MSG}" - "{CENTER_ALIGN}......{WAIT_PRESS}If I{APOSTROPHE}m wrong...{WAIT_PRESS}\n" + "{CENTER_ALIGN}......{WAIT_PRESS}If I'm wrong...{WAIT_PRESS}\n" "{CENTER_ALIGN}Work at becoming a true hero!{EXTRA_MSG}" "{CENTER_ALIGN}A brave person like you should be..."); ALIGNED(4) static const u8 gDocileDescription[] = _( "{CENTER_ALIGN}You appear to be...{WAIT_PRESS}\n" "{CENTER_ALIGN}The docile type.{EXTRA_MSG}" - "{CENTER_ALIGN}You{APOSTROPHE}re very kindhearted.{WAIT_PRESS}\n" + "{CENTER_ALIGN}You're very kindhearted.{WAIT_PRESS}\n" "{CENTER_ALIGN}Very helpful.{WAIT_PRESS}\n" "{CENTER_ALIGN}You can make friends with anyone.{EXTRA_MSG}" - "{CENTER_ALIGN}You{APOSTROPHE}re a wonderful person.{EXTRA_MSG}" + "{CENTER_ALIGN}You're a wonderful person.{EXTRA_MSG}" "{CENTER_ALIGN}......{WAIT_PRESS}Is that going overboard?{WAIT_PRESS}\n" - "{CENTER_ALIGN}I don{APOSTROPHE}t think so.{EXTRA_MSG}" + "{CENTER_ALIGN}I don't think so.{EXTRA_MSG}" "{CENTER_ALIGN}You yourself should be\n" "{CENTER_ALIGN}the best judge of that.{EXTRA_MSG}" "{CENTER_ALIGN}A docile person like you should be..."); @@ -1488,14 +1488,14 @@ ALIGNED(4) static const u8 gDocileDescription[] = _( ALIGNED(4) static const u8 gHardyDescription[] = _( "{CENTER_ALIGN}You appear to be...{WAIT_PRESS}\n" "{CENTER_ALIGN}The hardy type.{EXTRA_MSG}" - "{CENTER_ALIGN}You do your homework diligently{COMMA}\n" + "{CENTER_ALIGN}You do your homework diligently,\n" "{CENTER_ALIGN}and you know to eat properly.{EXTRA_MSG}" "{CENTER_ALIGN}You have strong willpower that lets\n" - "{CENTER_ALIGN}you complete tasks{COMMA} however tough.{EXTRA_MSG}" - "{CENTER_ALIGN}But{COMMA} you can also be stubborn to the\n" + "{CENTER_ALIGN}you complete tasks, however tough.{EXTRA_MSG}" + "{CENTER_ALIGN}But, you can also be stubborn to the\n" "{CENTER_ALIGN}point of even feuding with friends...{EXTRA_MSG}" - "{CENTER_ALIGN}Nothing will go right for you when you{APOSTROPHE}re\n" - "{CENTER_ALIGN}irritated{COMMA} so learn to laugh it off.{EXTRA_MSG}" + "{CENTER_ALIGN}Nothing will go right for you when you're\n" + "{CENTER_ALIGN}irritated, so learn to laugh it off.{EXTRA_MSG}" "{CENTER_ALIGN}A hardy person like you should be..."); static const UnkTextStruct2 sUnknown_80F4244 = diff --git a/src/data/pokemon_mail.h b/src/data/pokemon_mail.h index 90fb4a6a0..0197766c6 100644 --- a/src/data/pokemon_mail.h +++ b/src/data/pokemon_mail.h @@ -118,19 +118,19 @@ static const u8 * const gUnknown_80E8C98[15] = { }; ALIGNED(4) static const u8 sUnknown_80E8CD4[] = _("Help me!"); -ALIGNED(4) static const u8 sUnknown_80E8CE0[] = _("I can{APOSTROPHE}t get home!"); -ALIGNED(4) static const u8 sUnknown_80E8CF4[] = _("I{APOSTROPHE}m sad and lonely."); +ALIGNED(4) static const u8 sUnknown_80E8CE0[] = _("I can't get home!"); +ALIGNED(4) static const u8 sUnknown_80E8CF4[] = _("I'm sad and lonely."); ALIGNED(4) static const u8 sUnknown_80E8D0C[] = _("Where am I?"); -ALIGNED(4) static const u8 sUnknown_80E8D18[] = _("I was KO{APOSTROPHE}d..."); -ALIGNED(4) static const u8 sUnknown_80E8D28[] = _("I{APOSTROPHE}m too tired to move."); -ALIGNED(4) static const u8 sUnknown_80E8D44[] = _("I{APOSTROPHE}m not a fighter..."); +ALIGNED(4) static const u8 sUnknown_80E8D18[] = _("I was KO'd..."); +ALIGNED(4) static const u8 sUnknown_80E8D28[] = _("I'm too tired to move."); +ALIGNED(4) static const u8 sUnknown_80E8D44[] = _("I'm not a fighter..."); ALIGNED(4) static const u8 sUnknown_80E8D5C[] = _("I fainted..."); ALIGNED(4) static const u8 sUnknown_80E8D6C[] = _("I was attacked!"); -ALIGNED(4) static const u8 sUnknown_80E8D7C[] = _("I{APOSTROPHE}m lost."); -ALIGNED(4) static const u8 sUnknown_80E8D88[] = _("I can{APOSTROPHE}t seem to get out."); -ALIGNED(4) static const u8 sUnknown_80E8DA4[] = _("I{APOSTROPHE}m scared!"); -ALIGNED(4) static const u8 sUnknown_80E8DB4[] = _("I{APOSTROPHE}m in trouble..."); -ALIGNED(4) static const u8 sUnknown_80E8DC8[] = _("I can{APOSTROPHE}t get out!"); +ALIGNED(4) static const u8 sUnknown_80E8D7C[] = _("I'm lost."); +ALIGNED(4) static const u8 sUnknown_80E8D88[] = _("I can't seem to get out."); +ALIGNED(4) static const u8 sUnknown_80E8DA4[] = _("I'm scared!"); +ALIGNED(4) static const u8 sUnknown_80E8DB4[] = _("I'm in trouble..."); +ALIGNED(4) static const u8 sUnknown_80E8DC8[] = _("I can't get out!"); ALIGNED(4) static const u8 sUnknown_80E8DDC[] = _("Help!"); static const u8 sUnknown_80E8E18[]; @@ -163,19 +163,19 @@ static const u8 * const gUnknown_80E8DE4[13] = { sUnknown_80E8E18 }; -ALIGNED(4) static const u8 sUnknown_80E8E18[] = _("I{APOSTROPHE}m famished..."); -ALIGNED(4) static const u8 sUnknown_80E8E2C[] = _("I can{APOSTROPHE}t move another step."); -ALIGNED(4) static const u8 sUnknown_80E8E4C[] = _("Whoa! It{APOSTROPHE}s too rough here..."); +ALIGNED(4) static const u8 sUnknown_80E8E18[] = _("I'm famished..."); +ALIGNED(4) static const u8 sUnknown_80E8E2C[] = _("I can't move another step."); +ALIGNED(4) static const u8 sUnknown_80E8E4C[] = _("Whoa! It's too rough here..."); ALIGNED(4) static const u8 sUnknown_80E8E6C[] = _("I was done in..."); ALIGNED(4) static const u8 sUnknown_80E8E80[] = _("I lost in a battle..."); -ALIGNED(4) static const u8 sUnknown_80E8E98[] = _("I{APOSTROPHE}m close to fainting..."); -ALIGNED(4) static const u8 sUnknown_80E8EB4[] = _("I{APOSTROPHE}ve reached my limit..."); +ALIGNED(4) static const u8 sUnknown_80E8E98[] = _("I'm close to fainting..."); +ALIGNED(4) static const u8 sUnknown_80E8EB4[] = _("I've reached my limit..."); ALIGNED(4) static const u8 sUnknown_80E8ED0[] = _("Fighting the tough foe was a mistake..."); ALIGNED(4) static const u8 sUnknown_80E8EF8[] = _("This dungeon is scary!"); ALIGNED(4) static const u8 sUnknown_80E8F10[] = _("I got lost in this dungeon!"); -ALIGNED(4) static const u8 sUnknown_80E8F2C[] = _("I{APOSTROPHE}m simply no good at fighting."); +ALIGNED(4) static const u8 sUnknown_80E8F2C[] = _("I'm simply no good at fighting."); ALIGNED(4) static const u8 sUnknown_80E8F50[] = _("I was attacked when I was sitting still!"); -ALIGNED(4) static const u8 sUnknown_80E8F7C[] = _("I don{APOSTROPHE}t know how I did it{COMMA} but I can{APOSTROPHE}t exit!"); +ALIGNED(4) static const u8 sUnknown_80E8F7C[] = _("I don't know how I did it, but I can't exit!"); static const u8 sUnknown_80E8FE4[]; static const u8 sUnknown_80E8FF4[]; @@ -208,16 +208,16 @@ static const u8 * const gUnknown_80E8FB0[13] = { ALIGNED(4) static const u8 sUnknown_80E8FE4[] = _("Aiyeeeeeeeeh!"); ALIGNED(4) static const u8 sUnknown_80E8FF4[] = _("...Gasp! Waaaaaaaah!"); -ALIGNED(4) static const u8 sUnknown_80E900C[] = _("Someone{COMMA} please help!"); +ALIGNED(4) static const u8 sUnknown_80E900C[] = _("Someone, please help!"); ALIGNED(4) static const u8 sUnknown_80E9024[] = _("Rescue is requested!"); ALIGNED(4) static const u8 sUnknown_80E903C[] = _("My consciousness is slipping... Help..."); ALIGNED(4) static const u8 sUnknown_80E9064[] = _("Wroooooaaar! Someone!"); ALIGNED(4) static const u8 sUnknown_80E907C[] = _("Where am I? Help!"); ALIGNED(4) static const u8 sUnknown_80E9090[] = _("Why? Why is everyone attacking me?"); ALIGNED(4) static const u8 sUnknown_80E90B4[] = _("I feel faint... Please help..."); -ALIGNED(4) static const u8 sUnknown_80E90D4[] = _("Someone{COMMA} help!"); +ALIGNED(4) static const u8 sUnknown_80E90D4[] = _("Someone, help!"); ALIGNED(4) static const u8 sUnknown_80E90E8[] = _("Someone!"); -ALIGNED(4) static const u8 sUnknown_80E90F4[] = _("Please{COMMA} I need help!"); +ALIGNED(4) static const u8 sUnknown_80E90F4[] = _("Please, I need help!"); static const u8 sUnknown_80E9134[]; static const u8 sUnknown_80E9144[]; @@ -244,11 +244,11 @@ static const u8 * const gUnknown_80E910C[10] = { ALIGNED(4) static const u8 sUnknown_80E9134[] = _("Disappearance!"); ALIGNED(4) static const u8 sUnknown_80E9144[] = _("Hurry!"); -ALIGNED(4) static const u8 sUnknown_80E914C[] = _("Hasn{APOSTROPHE}t come back."); -ALIGNED(4) static const u8 sUnknown_80E9160[] = _("I{APOSTROPHE}m worried."); +ALIGNED(4) static const u8 sUnknown_80E914C[] = _("Hasn't come back."); +ALIGNED(4) static const u8 sUnknown_80E9160[] = _("I'm worried."); ALIGNED(4) static const u8 sUnknown_80E9170[] = _("Somebody!"); ALIGNED(4) static const u8 sUnknown_80E917C[] = _("Failed to return."); -ALIGNED(4) static const u8 sUnknown_80E9190[] = _("Hurry{COMMA} save {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); +ALIGNED(4) static const u8 sUnknown_80E9190[] = _("Hurry, save {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); ALIGNED(4) static const u8 sUnknown_80E91A8[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} needs help!"); ALIGNED(4) static const u8 sUnknown_80E91BC[] = _("Please help {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); @@ -348,34 +348,34 @@ static const u8 * const gUnknown_80E91D4[45] = { ALIGNED(4) static const u8 sUnknown_80E9288[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} fell into a trap!"); ALIGNED(4) static const u8 sUnknown_80E92A4[] = _("I lost contact with {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); -ALIGNED(4) static const u8 sUnknown_80E92C4[] = _("I can{APOSTROPHE}t contact {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); -ALIGNED(4) static const u8 sUnknown_80E92E0[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} can{APOSTROPHE}t walk anymore!"); -ALIGNED(4) static const u8 sUnknown_80E9300[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}{APOSTROPHE}s been missing three days!"); +ALIGNED(4) static const u8 sUnknown_80E92C4[] = _("I can't contact {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); +ALIGNED(4) static const u8 sUnknown_80E92E0[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} can't walk anymore!"); +ALIGNED(4) static const u8 sUnknown_80E9300[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}'s been missing three days!"); ALIGNED(4) static const u8 sUnknown_80E9328[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} went the wrong way!"); ALIGNED(4) static const u8 sUnknown_80E9344[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is lost!"); ALIGNED(4) static const u8 sUnknown_80E9358[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} appears to be stuck!"); ALIGNED(4) static const u8 sUnknown_80E9378[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} appears to be lost!"); ALIGNED(4) static const u8 sUnknown_80E9394[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} may have had an accident!"); -ALIGNED(4) static const u8 sUnknown_80E93B8[] = _("I{APOSTROPHE}m worried for {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}{APOSTROPHE}s safety!"); +ALIGNED(4) static const u8 sUnknown_80E93B8[] = _("I'm worried for {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}'s safety!"); ALIGNED(4) static const u8 sUnknown_80E93E0[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is fighting all alone!"); ALIGNED(4) static const u8 sUnknown_80E9400[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is too hungry to move!"); -ALIGNED(4) static const u8 sUnknown_80E9420[] = _("Hurry{COMMA} bring back {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}."); +ALIGNED(4) static const u8 sUnknown_80E9420[] = _("Hurry, bring back {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}."); ALIGNED(4) static const u8 sUnknown_80E9440[] = _("I got separated from {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}."); ALIGNED(4) static const u8 sUnknown_80E9460[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is running out of time!"); -ALIGNED(4) static const u8 sUnknown_80E9480[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} was attacked{COMMA} maybe!"); +ALIGNED(4) static const u8 sUnknown_80E9480[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} was attacked, maybe!"); ALIGNED(4) static const u8 sUnknown_80E94A0[] = _("Something happened to {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); ALIGNED(4) static const u8 sUnknown_80E94C0[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} appears to be trapped!"); ALIGNED(4) static const u8 sUnknown_80E94E0[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is stuck in a cave!"); ALIGNED(4) static const u8 sUnknown_80E94FC[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} appears to be helpless!"); -ALIGNED(4) static const u8 sUnknown_80E951C[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} hasn{APOSTROPHE}t reemerged!"); +ALIGNED(4) static const u8 sUnknown_80E951C[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} hasn't reemerged!"); ALIGNED(4) static const u8 sUnknown_80E9538[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} was attacked by assailants!"); -ALIGNED(4) static const u8 sUnknown_80E955C[] = _("It appears as if {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} can{APOSTROPHE}t escape!"); +ALIGNED(4) static const u8 sUnknown_80E955C[] = _("It appears as if {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} can't escape!"); ALIGNED(4) static const u8 sUnknown_80E9588[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} may have fainted already!"); ALIGNED(4) static const u8 sUnknown_80E95AC[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is about to faint!"); -ALIGNED(4) static const u8 sUnknown_80E95C8[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}{APOSTROPHE}s been gone a long time!"); +ALIGNED(4) static const u8 sUnknown_80E95C8[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}'s been gone a long time!"); ALIGNED(4) static const u8 sUnknown_80E95EC[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} has been cornered!"); -ALIGNED(4) static const u8 sUnknown_80E9608[] = _("I{APOSTROPHE}m worried about {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); -ALIGNED(4) static const u8 sUnknown_80E9628[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}{APOSTROPHE}s whereabouts are unknown!"); +ALIGNED(4) static const u8 sUnknown_80E9608[] = _("I'm worried about {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); +ALIGNED(4) static const u8 sUnknown_80E9628[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}'s whereabouts are unknown!"); ALIGNED(4) static const u8 sUnknown_80E9650[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} was paralyzed!"); ALIGNED(4) static const u8 sUnknown_80E9668[] = _("Trouble may have found {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); ALIGNED(4) static const u8 sUnknown_80E9688[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} appears to be freezing!"); @@ -385,9 +385,9 @@ ALIGNED(4) static const u8 sUnknown_80E96E4[] = _("{COLOR_1 YELLOW}%s{END_COLOR_ ALIGNED(4) static const u8 sUnknown_80E9708[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} appears to be injured!"); ALIGNED(4) static const u8 sUnknown_80E9728[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} may be facing danger!"); ALIGNED(4) static const u8 sUnknown_80E9748[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} might be unable to return."); -ALIGNED(4) static const u8 sUnknown_80E976C[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} hasn{APOSTROPHE}t come back!"); -ALIGNED(4) static const u8 sUnknown_80E9788[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} can{APOSTROPHE}t swim!"); -ALIGNED(4) static const u8 sUnknown_80E97A0[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} hasn{APOSTROPHE}t been heard from!"); +ALIGNED(4) static const u8 sUnknown_80E976C[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} hasn't come back!"); +ALIGNED(4) static const u8 sUnknown_80E9788[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} can't swim!"); +ALIGNED(4) static const u8 sUnknown_80E97A0[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} hasn't been heard from!"); ALIGNED(4) static const u8 sUnknown_80E97C4[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is still missing."); ALIGNED(4) static const u8 sUnknown_80E97E0[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} may be endangered!"); ALIGNED(4) static const u8 sUnknown_80E97FC[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} passed out from the heat!"); @@ -417,8 +417,8 @@ static const u8 * const gUnknown_80E9820[10] = { ALIGNED(4) static const u8 sUnknown_80E9848[] = _("Reward upon rescue!"); ALIGNED(4) static const u8 sUnknown_80E985C[] = _("A rescue is urgently needed!"); ALIGNED(4) static const u8 sUnknown_80E987C[] = _("Please send a rescue team!"); -ALIGNED(4) static const u8 sUnknown_80E9898[] = _("I{APOSTROPHE}m pleading for help!"); -ALIGNED(4) static const u8 sUnknown_80E98B4[] = _("I don{APOSTROPHE}t care who it is! Please help!"); +ALIGNED(4) static const u8 sUnknown_80E9898[] = _("I'm pleading for help!"); +ALIGNED(4) static const u8 sUnknown_80E98B4[] = _("I don't care who it is! Please help!"); ALIGNED(4) static const u8 sUnknown_80E98DC[] = _("Someone! Anyone?"); ALIGNED(4) static const u8 sUnknown_80E98F0[] = _("Please! I need help!"); ALIGNED(4) static const u8 sUnknown_80E9908[] = _("Please! Someone help!"); @@ -472,7 +472,7 @@ const unkStruct_80E9920 gUnknown_80E9920[21] = { ALIGNED(4) static const u8 sUnknown_80E99C8[] = _( "Please look for Taillow!\n" - "My baby is very timid{COMMA} so I{APOSTROPHE}m worried!"); + "My baby is very timid, so I'm worried!"); ALIGNED(4) static const u8 sUnknown_80E9A0C[] = _( "Save my baby Spheal! My baby is easy to\n" @@ -484,7 +484,7 @@ ALIGNED(4) static const u8 sUnknown_80E9A54[] = _( ALIGNED(4) static const u8 sUnknown_80E9A94[] = _( "Please find my Aron!\n" - "He{APOSTROPHE}s my only child! Please help!"); + "He's my only child! Please help!"); ALIGNED(4) static const u8 sUnknown_80E9ACC[] = _( "My Wurmple went missing! Please look\n" @@ -495,19 +495,19 @@ ALIGNED(4) static const u8 sUnknown_80E9B18[] = _( "He loves to eat dirt! I need help!"); ALIGNED(4) static const u8 sUnknown_80E9B58[] = _( - "My baby Magby is lost. I{APOSTROPHE}m worried sick.\n" - "She{APOSTROPHE}s a cheerful child who loves fire."); + "My baby Magby is lost. I'm worried sick.\n" + "She's a cheerful child who loves fire."); ALIGNED(4) static const u8 sUnknown_80E9BAC[] = _( - "My son can be wild with thunderbolts{COMMA}\n" - "but he{APOSTROPHE}s kindhearted. Please help!"); + "My son can be wild with thunderbolts,\n" + "but he's kindhearted. Please help!"); ALIGNED(4) static const u8 sUnknown_80E9BFC[] = _( "Please look for Phanpy!\n" "My son has a distinctive long nose!"); ALIGNED(4) static const u8 sUnknown_80E9C38[] = _( - "Please find Teddiursa! My baby{APOSTROPHE}s head\n" + "Please find Teddiursa! My baby's head\n" "has a cute crescent mark! Help!"); ALIGNED(4) static const u8 sUnknown_80E9C80[] = _( @@ -515,8 +515,8 @@ ALIGNED(4) static const u8 sUnknown_80E9C80[] = _( "Watch for a round and bouncy tail!"); ALIGNED(4) static const u8 sUnknown_80E9CC4[] = _( - "Help! Togepi{APOSTROPHE}s just a baby!\n" - "I{APOSTROPHE}m worried sick! Please help!"); + "Help! Togepi's just a baby!\n" + "I'm worried sick! Please help!"); ALIGNED(4) static const u8 sUnknown_80E9D04[] = _( "My baby Poliwag! He wandered off...\n" @@ -524,14 +524,14 @@ ALIGNED(4) static const u8 sUnknown_80E9D04[] = _( ALIGNED(4) static const u8 sUnknown_80E9D50[] = _( "Oddish disappeared from sight! She may be\n" - "buried somewhere! Someone{COMMA} please help!"); + "buried somewhere! Someone, please help!"); ALIGNED(4) static const u8 sUnknown_80E9DA4[] = _( - "Please rescue Zubat! He{APOSTROPHE}s so young he\n" - "can{APOSTROPHE}t even hang from cavern ceilings well!"); + "Please rescue Zubat! He's so young he\n" + "can't even hang from cavern ceilings well!"); ALIGNED(4) static const u8 sUnknown_80E9DFC[] = _( - "Please find Igglybuff! Oh{COMMA} where did that\n" + "Please find Igglybuff! Oh, where did that\n" "child roll off to?! Oh!"); ALIGNED(4) static const u8 sUnknown_80E9E40[] = _( @@ -539,20 +539,20 @@ ALIGNED(4) static const u8 sUnknown_80E9E40[] = _( "if you find my child!"); ALIGNED(4) static const u8 sUnknown_80E9E80[] = _( - "Please rescue Pichu! He{APOSTROPHE}s a little cutie\n" - "who can{APOSTROPHE}t charge power well yet. Please!"); + "Please rescue Pichu! He's a little cutie\n" + "who can't charge power well yet. Please!"); ALIGNED(4) static const u8 sUnknown_80E9ED8[] = _( "Rattata is missing! My precious child!\n" - "Please{COMMA} won{APOSTROPHE}t someone help me?"); + "Please, won't someone help me?"); ALIGNED(4) static const u8 sUnknown_80E9F24[] = _( - "Oh{COMMA} my cute little Pidgey!\n" - "Please{COMMA} someone help!"); + "Oh, my cute little Pidgey!\n" + "Please, someone help!"); ALIGNED(4) static const u8 sUnknown_80E9F5C[] = _( "Please rescue Weedle!\n" - "He{APOSTROPHE}s my son! Please!"); + "He's my son! Please!"); static const u8 sUnknown_80EA1A8[]; static const u8 sUnknown_80EA1FC[]; @@ -659,20 +659,20 @@ const unkStruct_80E9F8C gUnknown_80E9F8C[45] = { ALIGNED(4) static const u8 sUnknown_80EA1A8[] = _( "My little brother Pichu disappeared!\n" - "I{APOSTROPHE}m really worried! Someone{COMMA} please help!"); + "I'm really worried! Someone, please help!"); ALIGNED(4) static const u8 sUnknown_80EA1FC[] = _("Please help my brother!"); ALIGNED(4) static const u8 sUnknown_80EA214[] = _( - "We{APOSTROPHE}ve been rivals with {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} for\n" - "generations. It can{APOSTROPHE}t suddenly end like this!"); + "We've been rivals with {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} for\n" + "generations. It can't suddenly end like this!"); ALIGNED(4) static const u8 sUnknown_80EA26C[] = _( "{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} has been a rival since my\n" - "ancestors{APOSTROPHE} time. The rivalry can{APOSTROPHE}t end!"); + "ancestors' time. The rivalry can't end!"); ALIGNED(4) static const u8 sUnknown_80EA2BC[] = _( - "{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} can{APOSTROPHE}t leave without settling\n" + "{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} can't leave without settling\n" "which one of us is better. Please help!"); ALIGNED(4) static const u8 sUnknown_80EA30C[] = _( @@ -681,17 +681,17 @@ ALIGNED(4) static const u8 sUnknown_80EA30C[] = _( ALIGNED(4) static const u8 sUnknown_80EA33C[] = _( "Please rescue {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}! We detest\n" - "each other{COMMA} but we need each other!"); + "each other, but we need each other!"); ALIGNED(4) static const u8 sUnknown_80EA384[] = _("Rescue my rival!"); ALIGNED(4) static const u8 sUnknown_80EA398[] = _( - "I can{APOSTROPHE}t live without {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!\n" + "I can't live without {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!\n" "My heart is breaking! Please! Help!"); ALIGNED(4) static const u8 sUnknown_80EA3DC[] = _( "Please save {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!\n" - "We{APOSTROPHE}re no good if we{APOSTROPHE}re not together!"); + "We're no good if we're not together!"); ALIGNED(4) static const u8 sUnknown_80EA41C[] = _( "Please save my {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}! Now I\n" @@ -703,16 +703,16 @@ ALIGNED(4) static const u8 sUnknown_80EA45C[] = _( ALIGNED(4) static const u8 sUnknown_80EA4A0[] = _( "Please rescue my precious {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!\n" - "We{APOSTROPHE}re in love! Please help!"); + "We're in love! Please help!"); ALIGNED(4) static const u8 sUnknown_80EA4E4[] = _( "Please! Please rescue {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!\n" - "We{APOSTROPHE}re madly in love!"); + "We're madly in love!"); ALIGNED(4) static const u8 sUnknown_80EA51C[] = _("Please save my love!"); ALIGNED(4) static const u8 sUnknown_80EA534[] = _( - "We make each other happy--it{APOSTROPHE}s in our\n" + "We make each other happy--it's in our\n" "nature. Please save {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); ALIGNED(4) static const u8 sUnknown_80EA57C[] = _( @@ -724,23 +724,23 @@ ALIGNED(4) static const u8 sUnknown_80EA5C4[] = _( "pranks and mess around with. Please help!"); ALIGNED(4) static const u8 sUnknown_80EA614[] = _( - "Help {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}{COMMA} please!\n" + "Help {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}, please!\n" "We often took strolls on the wind!"); ALIGNED(4) static const u8 sUnknown_80EA650[] = _( - "Please save {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}! We{APOSTROPHE}re both\n" + "Please save {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}! We're both\n" "old-timers who are longtime friends!"); ALIGNED(4) static const u8 sUnknown_80EA698[] = _( - "Please save {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}. We{APOSTROPHE}ve been in\n" + "Please save {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}. We've been in\n" "the delivery business for many years!"); ALIGNED(4) static const u8 sUnknown_80EA6E4[] = _( - "I{APOSTROPHE}m sad without {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}{APOSTROPHE}s company.\n" + "I'm sad without {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}'s company.\n" "We showed flowers to each other..."); ALIGNED(4) static const u8 sUnknown_80EA730[] = _( - "Without {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}{COMMA} there{APOSTROPHE}s no one for\n" + "Without {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}, there's no one for\n" "me to play with in the dark! Please help!"); ALIGNED(4) static const u8 sUnknown_80EA784[] = _( @@ -748,11 +748,11 @@ ALIGNED(4) static const u8 sUnknown_80EA784[] = _( "Who was it?"); ALIGNED(4) static const u8 sUnknown_80EA7A8[] = _( - "Please save {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}. We{APOSTROPHE}re both alike\n" + "Please save {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}. We're both alike\n" "in being kind of vacant and unpredictable!"); ALIGNED(4) static const u8 sUnknown_80EA7FC[] = _( - "Without {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} around{COMMA} there{APOSTROPHE}s no\n" + "Without {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} around, there's no\n" "one to heckle! Please break my boredom!"); ALIGNED(4) static const u8 sUnknown_80EA84C[] = _( @@ -761,15 +761,15 @@ ALIGNED(4) static const u8 sUnknown_80EA84C[] = _( ALIGNED(4) static const u8 sUnknown_80EA880[] = _( "We promised to show each other how\n" - "sharp our claws could be... Someone{COMMA} help!"); + "sharp our claws could be... Someone, help!"); ALIGNED(4) static const u8 sUnknown_80EA8D0[] = _( "I lock horns with {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} for fun.\n" "I terribly miss doing that..."); ALIGNED(4) static const u8 sUnknown_80EA914[] = _( - "Please help {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}! We{APOSTROPHE}re both lazy{COMMA}\n" - "so we{APOSTROPHE}re comfortable around each other!"); + "Please help {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}! We're both lazy,\n" + "so we're comfortable around each other!"); ALIGNED(4) static const u8 sUnknown_80EA968[] = _( "I want to help {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!\n" @@ -788,20 +788,20 @@ ALIGNED(4) static const u8 sUnknown_80EAA34[] = _( "identical! We can tell each other anything!"); ALIGNED(4) static const u8 sUnknown_80EAA84[] = _( - "I can{APOSTROPHE}t play the biting game without my pal\n" + "I can't play the biting game without my pal\n" "{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}! Please help!"); ALIGNED(4) static const u8 sUnknown_80EAAC8[] = _( "{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is really noisy.\n" - "But it{APOSTROPHE}s lonely without the racket... Sob..."); + "But it's lonely without the racket... Sob..."); ALIGNED(4) static const u8 sUnknown_80EAB10[] = _( - "Without {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}{COMMA} it{APOSTROPHE}s no fun playing\n" - "with toxic powders! Someone{COMMA} please help!"); + "Without {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}, it's no fun playing\n" + "with toxic powders! Someone, please help!"); ALIGNED(4) static const u8 sUnknown_80EAB68[] = _( "Please rescue {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!\n" - "We{APOSTROPHE}ve been friends since we were eggs!"); + "We've been friends since we were eggs!"); ALIGNED(4) static const u8 sUnknown_80EABA8[] = _( "Please help {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}--a good\n" @@ -809,18 +809,18 @@ ALIGNED(4) static const u8 sUnknown_80EABA8[] = _( ALIGNED(4) static const u8 sUnknown_80EABE8[] = _( "{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} and I are of the same height.\n" - "We{APOSTROPHE}re lifelong friends! Please help!"); + "We're lifelong friends! Please help!"); ALIGNED(4) static const u8 sUnknown_80EAC38[] = _( "We identify with each other because we\n" "both evolved from Wurmple. Please help!"); ALIGNED(4) static const u8 sUnknown_80EAC88[] = _( - "Help! I{APOSTROPHE}m friends with {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}\n" + "Help! I'm friends with {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}\n" "because we both evolve fast! Please help!"); ALIGNED(4) static const u8 sUnknown_80EACD4[] = _( - "Help! {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} isn{APOSTROPHE}t much now{COMMA} but\n" + "Help! {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} isn't much now, but\n" "my friend is amazing after evolution!"); ALIGNED(4) static const u8 sUnknown_80EAD20[] = _( @@ -829,14 +829,14 @@ ALIGNED(4) static const u8 sUnknown_80EAD20[] = _( ALIGNED(4) static const u8 sUnknown_80EAD50[] = _( "Please rescue {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}.\n" - "I can{APOSTROPHE}t stand to see a sludge buddy hurt!"); + "I can't stand to see a sludge buddy hurt!"); ALIGNED(4) static const u8 sUnknown_80EAD94[] = _( "Please save my best friend {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!\n" - "We{APOSTROPHE}re both bivalves!"); + "We're both bivalves!"); ALIGNED(4) static const u8 sUnknown_80EADD0[] = _( - "Please save {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}{COMMA}\n" + "Please save {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1},\n" "my drilling buddy!"); ALIGNED(4) static const u8 sUnknown_80EADFC[] = _( @@ -907,23 +907,23 @@ static const u8 * const gUnknown_80EAEB8[20] = { CloseFriends_80EAF08 }; -ALIGNED(4) static const u8 CloseFriends_80EAF08[] = _("I{APOSTROPHE}m close friends with {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); +ALIGNED(4) static const u8 CloseFriends_80EAF08[] = _("I'm close friends with {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); ALIGNED(4) static const u8 Apologize_80EAF2C[] = _("I want to apologize to {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}."); -ALIGNED(4) static const u8 MustMeet_80EAF4C[] = _("I don{APOSTROPHE}t care how--we must meet!"); +ALIGNED(4) static const u8 MustMeet_80EAF4C[] = _("I don't care how--we must meet!"); ALIGNED(4) static const u8 HaveToMeet_80EAF70[] = _("We have to meet--whatever it takes!"); ALIGNED(4) static const u8 HaveToGo_80EAF94[] = _("I have to go!"); -ALIGNED(4) static const u8 LongTime_80EAFA4[] = _("We haven{APOSTROPHE}t seen each other in a long time."); -ALIGNED(4) static const u8 SickWorry_80EAFD4[] = _("I{APOSTROPHE}m sick with worry..."); +ALIGNED(4) static const u8 LongTime_80EAFA4[] = _("We haven't seen each other in a long time."); +ALIGNED(4) static const u8 SickWorry_80EAFD4[] = _("I'm sick with worry..."); ALIGNED(4) static const u8 FaintedInside_80EAFF0[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} may have fainted inside..."); -ALIGNED(4) static const u8 HasntReturned_80EB014[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} hasn{APOSTROPHE}t returned!"); +ALIGNED(4) static const u8 HasntReturned_80EB014[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} hasn't returned!"); ALIGNED(4) static const u8 WantToHelp_80EB030[] = _("I want to help {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); -ALIGNED(4) static const u8 InTrouble_80EB048[] = _("Hurry{COMMA} {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is in trouble..."); +ALIGNED(4) static const u8 InTrouble_80EB048[] = _("Hurry, {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is in trouble..."); ALIGNED(4) static const u8 WaitingForever_80EB06C[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} has been waiting forever..."); ALIGNED(4) static const u8 WaitingInDungeon_80EB090[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is waiting in the dungeon."); -ALIGNED(4) static const u8 TooWeak_80EB0B4[] = _("I{APOSTROPHE}m too weak. It{APOSTROPHE}s not possible."); -ALIGNED(4) static const u8 OwnPower_80EB0DC[] = _("I can{APOSTROPHE}t go on my own power..."); -ALIGNED(4) static const u8 GoMyself_80EB0FC[] = _("I can{APOSTROPHE}t go by myself..."); -ALIGNED(4) static const u8 WorriedAbout_80EB118[] = _("I{APOSTROPHE}m worried about {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}..."); +ALIGNED(4) static const u8 TooWeak_80EB0B4[] = _("I'm too weak. It's not possible."); +ALIGNED(4) static const u8 OwnPower_80EB0DC[] = _("I can't go on my own power..."); +ALIGNED(4) static const u8 GoMyself_80EB0FC[] = _("I can't go by myself..."); +ALIGNED(4) static const u8 WorriedAbout_80EB118[] = _("I'm worried about {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}..."); ALIGNED(4) static const u8 WantMeet_80EB138[] = _("I want to meet with {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}."); ALIGNED(4) static const u8 PromisedMeet_80EB158[] = _("We promised to meet in the dungeon!"); ALIGNED(4) static const u8 WaitingForMe_80EB17C[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is waiting for me!"); @@ -940,7 +940,7 @@ static const u8 * const gUnknown_80EB198[4] = { SomeonePleaseEscort }; -ALIGNED(4) static const u8 SomeonePleaseEscort[] = _("Someone{COMMA} please escort me!"); +ALIGNED(4) static const u8 SomeonePleaseEscort[] = _("Someone, please escort me!"); ALIGNED(4) static const u8 PleaseEscortMe[] = _("Please escort me there!"); ALIGNED(4) static const u8 PleaseTakeMeThere[] = _("Please take me there with you!"); ALIGNED(4) static const u8 PleaseTakeMeToSee[] = _("Please take me to see {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); @@ -961,8 +961,8 @@ static const u8 * const gUnknown_80EB220[6] = { Without_80EB238 }; -ALIGNED(4) static const u8 Without_80EB238[] = _("Without {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}{COMMA} I..."); -ALIGNED(4) static const u8 Worried_80EB250[] = _("I{APOSTROPHE}m so worried about {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}..."); +ALIGNED(4) static const u8 Without_80EB238[] = _("Without {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}, I..."); +ALIGNED(4) static const u8 Worried_80EB250[] = _("I'm so worried about {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}..."); ALIGNED(4) static const u8 WantMeet_80EB274[] = _("I really want to meet {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); ALIGNED(4) static const u8 HelpMeet_80EB294[] = _("Help me meet {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); ALIGNED(4) static const u8 Escort_80EB2AC[] = _("Please escort me to my {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); @@ -984,12 +984,12 @@ static const u8 * const gUnknown_80EB2F0[6] = { Lonely_80EB308 }; -ALIGNED(4) static const u8 Lonely_80EB308[] = _("I{APOSTROPHE}m very lonely! Please take me with you!"); -ALIGNED(4) static const u8 NoGood_80EB334[] = _("It{APOSTROPHE}s no good if we{APOSTROPHE}re not together!"); +ALIGNED(4) static const u8 Lonely_80EB308[] = _("I'm very lonely! Please take me with you!"); +ALIGNED(4) static const u8 NoGood_80EB334[] = _("It's no good if we're not together!"); ALIGNED(4) static const u8 MeansEverything_80EB35C[] = _("This means everything to me!"); -ALIGNED(4) static const u8 WePromised_80EB37C[] = _("We{APOSTROPHE}ve promised our futures together."); +ALIGNED(4) static const u8 WePromised_80EB37C[] = _("We've promised our futures together."); ALIGNED(4) static const u8 WeBelong_80EB3A4[] = _("We belong together! Please escort me!"); -ALIGNED(4) static const u8 WeInLove_80EB3CC[] = _("We{APOSTROPHE}re in love! Please{COMMA} take me there!"); +ALIGNED(4) static const u8 WeInLove_80EB3CC[] = _("We're in love! Please, take me there!"); static const u8 sUnknown_80EB450[]; static const u8 sUnknown_80EB470[]; @@ -1046,21 +1046,21 @@ ALIGNED(4) static const u8 sUnknown_80EB494[] = _("Wanted: my own {COLOR_1 GREEN ALIGNED(4) static const u8 sUnknown_80EB4AC[] = _("I lost my {COLOR_1 GREEN}%s{END_COLOR_TEXT_1}."); ALIGNED(4) static const u8 sUnknown_80EB4C0[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1} wanted for nostalgia."); ALIGNED(4) static const u8 sUnknown_80EB4E0[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1} wanted to test effects."); -ALIGNED(4) static const u8 sUnknown_80EB500[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1}{APOSTROPHE}s texture is comforting."); -ALIGNED(4) static const u8 sUnknown_80EB524[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1}--it{APOSTROPHE}s my mom{APOSTROPHE}s favorite."); +ALIGNED(4) static const u8 sUnknown_80EB500[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1}'s texture is comforting."); +ALIGNED(4) static const u8 sUnknown_80EB524[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1}--it's my mom's favorite."); ALIGNED(4) static const u8 sUnknown_80EB54C[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1} makes me strong."); -ALIGNED(4) static const u8 sUnknown_80EB568[] = _("I can{APOSTROPHE}t sleep without it: {COLOR_1 GREEN}%s{END_COLOR_TEXT_1}."); +ALIGNED(4) static const u8 sUnknown_80EB568[] = _("I can't sleep without it: {COLOR_1 GREEN}%s{END_COLOR_TEXT_1}."); ALIGNED(4) static const u8 sUnknown_80EB590[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1}--I get scared without it!"); ALIGNED(4) static const u8 sUnknown_80EB5B4[] = _("Hard-to-find {COLOR_1 GREEN}%s{END_COLOR_TEXT_1} sought."); -ALIGNED(4) static const u8 sUnknown_80EB5D4[] = _("I can{APOSTROPHE}t find one more {COLOR_1 GREEN}%s{END_COLOR_TEXT_1}."); +ALIGNED(4) static const u8 sUnknown_80EB5D4[] = _("I can't find one more {COLOR_1 GREEN}%s{END_COLOR_TEXT_1}."); ALIGNED(4) static const u8 sUnknown_80EB5F8[] = _("Help this {COLOR_1 GREEN}%s{END_COLOR_TEXT_1} collector!"); ALIGNED(4) static const u8 sUnknown_80EB618[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1}! Seeking in quantity!"); ALIGNED(4) static const u8 sUnknown_80EB638[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1} wanted as a charm."); -ALIGNED(4) static const u8 sUnknown_80EB654[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1}--I can{APOSTROPHE}t leave without it."); -ALIGNED(4) static const u8 sUnknown_80EB67C[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1}--I{APOSTROPHE}d love to utilize one!"); +ALIGNED(4) static const u8 sUnknown_80EB654[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1}--I can't leave without it."); +ALIGNED(4) static const u8 sUnknown_80EB67C[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1}--I'd love to utilize one!"); ALIGNED(4) static const u8 sUnknown_80EB6A0[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1} wanted for exploration."); ALIGNED(4) static const u8 sUnknown_80EB6C0[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1} wanted after long search."); -ALIGNED(4) static const u8 sUnknown_80EB6E4[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1}--it{APOSTROPHE}s convenient to have."); +ALIGNED(4) static const u8 sUnknown_80EB6E4[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1}--it's convenient to have."); ALIGNED(4) static const u8 sUnknown_80EB708[] = _("Having one {COLOR_1 GREEN}%s{END_COLOR_TEXT_1} is reassuring."); static const u8 sUnknown_80EB784[]; @@ -1111,19 +1111,19 @@ static const u8 * const gUnknown_80EB72C[22] = { }; ALIGNED(4) static const u8 sUnknown_80EB784[] = _("Please contact me if you find it!"); -ALIGNED(4) static const u8 sUnknown_80EB7A8[] = _("Please help! I{APOSTROPHE}ll make it worth your time!"); -ALIGNED(4) static const u8 sUnknown_80EB7D8[] = _("Please help! I{APOSTROPHE}m offering a reward!"); +ALIGNED(4) static const u8 sUnknown_80EB7A8[] = _("Please help! I'll make it worth your time!"); +ALIGNED(4) static const u8 sUnknown_80EB7D8[] = _("Please help! I'm offering a reward!"); ALIGNED(4) static const u8 sUnknown_80EB800[] = _("Please! Please help me!"); ALIGNED(4) static const u8 sUnknown_80EB818[] = _("Please help me out!"); ALIGNED(4) static const u8 sUnknown_80EB82C[] = _("Please! I need some cooperation!"); ALIGNED(4) static const u8 sUnknown_80EB850[] = _("Please share a little bit!"); -ALIGNED(4) static const u8 sUnknown_80EB86C[] = _("Please help! You{APOSTROPHE}re my only hope!"); +ALIGNED(4) static const u8 sUnknown_80EB86C[] = _("Please help! You're my only hope!"); ALIGNED(4) static const u8 sUnknown_80EB890[] = _("Please! I need your help!"); -ALIGNED(4) static const u8 sUnknown_80EB8AC[] = _("Please help! I{APOSTROPHE}m counting on you!"); +ALIGNED(4) static const u8 sUnknown_80EB8AC[] = _("Please help! I'm counting on you!"); ALIGNED(4) static const u8 sUnknown_80EB8D0[] = _("Please search for it!"); ALIGNED(4) static const u8 sUnknown_80EB8E8[] = _("Please let me know if you find one!"); -ALIGNED(4) static const u8 sUnknown_80EB90C[] = _("I{APOSTROPHE}m looking forward to your help!"); -ALIGNED(4) static const u8 sUnknown_80EB930[] = _("Please! I{APOSTROPHE}m offering a generous reward!"); +ALIGNED(4) static const u8 sUnknown_80EB90C[] = _("I'm looking forward to your help!"); +ALIGNED(4) static const u8 sUnknown_80EB930[] = _("Please! I'm offering a generous reward!"); ALIGNED(4) static const u8 sUnknown_80EB95C[] = _("Please help! Reward offered!"); ALIGNED(4) static const u8 sUnknown_80EB97C[] = _("Please! I must have one delivered!"); ALIGNED(4) static const u8 sUnknown_80EB9A0[] = _("Please share one with me!"); @@ -1310,8 +1310,8 @@ ALIGNED(4) static const u8 sNewFriendAreasText[] = _( "Areas for sale!\n" "Rescue Teams are urged to check with\n" "Wigglytuff for what is available.\n" - "By adding to your Friend Areas{COMMA} you can\n" - "recruit Pokémon that wouldn{APOSTROPHE}t join your\n" + "By adding to your Friend Areas, you can\n" + "recruit Pokémon that wouldn't join your\n" "rescue team before!"); ALIGNED(4) static const u8 sNewFriendAreasHeadline[] = _("New Friend Areas!"); @@ -1320,8 +1320,8 @@ ALIGNED(4) static const u8 sLucarioRankText[] = _( "Congratulations! Your team has attained\n" "the Lucario Rank--the top rank among\n" "rescue teams! In commemoration of your\n" - "fantastic achievement{COMMA} we award you the\n" - "Lucario Statue{COMMA} crafted after the legendary\n" + "fantastic achievement, we award you the\n" + "Lucario Statue, crafted after the legendary\n" "rescue team leader.\n" "Keep working for world peace!\n" " - Pokémon Rescue Organization -"); @@ -1343,12 +1343,12 @@ ALIGNED(4) static const u8 sBuriedRelicHeadline[] = _("Buried Relic Discovered!" ALIGNED(4) static const u8 sNewsText2[] = _( "{CENTER_ALIGN}{COLOR_1 CYAN}{ARG_POKEMON_0} Innocent! Part 2{END_COLOR_TEXT_1}\n" "{COLOR_1 GREEN}Quote from Charizard on the scene:{END_COLOR_TEXT_1}\n" - "{QUOTE_START}That{APOSTROPHE}s what I thought right from\n" - "the start{COMMA} hahaha!{QUOTE_END}\n" + "“That's what I thought right from\n" + "the start, hahaha!”\n" "{COLOR_1 GREEN}Quote from Tyranitar on the scene:{END_COLOR_TEXT_1}\n" - "{QUOTE_START}That muckraking Gengar...\n" - "He{APOSTROPHE}s not getting away with this!\n" - "He{APOSTROPHE}d better be ready for it!{QUOTE_END}"); + "“That muckraking Gengar...\n" + "He's not getting away with this!\n" + "He'd better be ready for it!”"); ALIGNED(4) static const u8 sNewsHeadline2[] = _("Pokémon News Extra 2"); @@ -1357,21 +1357,21 @@ ALIGNED(4) static const u8 sNewsText1[] = _( "{ARG_POKEMON_1} met with Ninetales on {COLOR_1 RED}Mt. Freeze{END_COLOR_TEXT_1}.\n" "Ninetales testified that {ARG_POKEMON_0} was\n" "not the human that appeared in the legend.\n" - "As a result{COMMA} Gengar{APOSTROPHE}s claims were found to\n" + "As a result, Gengar's claims were found to\n" "be malicious lies.\n" - "{COLOR_1 GREEN}The clearly dismayed Gengar{APOSTROPHE}s quote:{END_COLOR_TEXT_1}\n" - "{QUOTE_START}Ugegegegegegegegegegegeh!{QUOTE_END}"); + "{COLOR_1 GREEN}The clearly dismayed Gengar's quote:{END_COLOR_TEXT_1}\n" + "“Ugegegegegegegegegegegeh!”"); ALIGNED(4) static const u8 sNewsHeadline1[] = _("Pokémon News Extra 1"); ALIGNED(4) static const u8 sPelipperText[] = _( - "Yo! Amigo! It{APOSTROPHE}s awesome you{APOSTROPHE}re back!\n" - "I{APOSTROPHE}ll be delivering mail to you again!\n" - "I{APOSTROPHE}ve been looking forward to this with\n" + "Yo! Amigo! It's awesome you're back!\n" + "I'll be delivering mail to you again!\n" + "I've been looking forward to this with\n" "my bill outstretched!\n" - "I{APOSTROPHE}ll deliver tons of mail{COMMA} so you{APOSTROPHE}d better\n" - "be ready{COMMA} amigo!\n\n" - " - The wandering postal carrier{COMMA} Pelipper -"); + "I'll deliver tons of mail, so you'd better\n" + "be ready, amigo!\n\n" + " - The wandering postal carrier, Pelipper -"); ALIGNED(4) static const u8 sPelipperHeadline[] =_("A Letter from Pelipper"); @@ -1407,22 +1407,22 @@ ALIGNED(4) static const u8 sLinkedProText1[] = _( ALIGNED(4) static const u8 sLinkedProHeadline1[] = _("#49 Linked Moves Pro Level 1"); ALIGNED(4) static const u8 sSlakothText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}Relief for Delicate Souls Who Can{APOSTROPHE}t{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR_1 YELLOW}Relief for Delicate Souls Who Can't{END_COLOR_TEXT_1}\n" "{CENTER_ALIGN COLOR_1 YELLOW}Sleep with Different Pillows!{END_COLOR_TEXT_1}\n" "Insomniacs rejoiced over the announcement\n" - "of the Slakoth Pillow{COMMA} which is said to\n" + "of the Slakoth Pillow, which is said to\n" "induce sleepiness just by seeing it.\n" "Already the inventor is swamped with\n" - "inquiries from all over. However{COMMA}\n" + "inquiries from all over. However,\n" "production is said to be not yet ready."); ALIGNED(4) static const u8 sSlakothHeadline[] = _("#48 Slakoth Pillows for Insomnia!"); ALIGNED(4) static const u8 sPitfallText[] = _( - "As a result of the natural disasters{COMMA}\n" + "As a result of the natural disasters,\n" "there have been many reports of Pitfall\n" "Traps appearing in dungeons.\n" - "However{COMMA} there also appear to be pitfalls\n" + "However, there also appear to be pitfalls\n" "made by Pokémon that are not harmful.\n" "The latter are thought to be made by\n" "foraging Swinub. Some even turn out to\n" @@ -1434,109 +1434,109 @@ ALIGNED(4) static const u8 sSeaRescueText[] = _( "A high-seas rescue in the {COLOR_1 RED}Stormy Sea{END_COLOR_TEXT_1} by\n" "{COLOR_1 CYAN}Team Sea Dragons{END_COLOR_TEXT_1} ended yesterday with\n" "the successful recovery of Tentacool.\n" - "The client{COMMA} Corsola{COMMA} is said to be delighted\n" + "The client, Corsola, is said to be delighted\n" "by the outcome.\n" - "Tentacool stated{COMMA} {QUOTE_START}I didn{APOSTROPHE}t realize how far\n" - "I{APOSTROPHE}d been washed out to sea.{QUOTE_END}\n" + "Tentacool stated, “I didn't realize how far\n" + "I'd been washed out to sea.”\n" "The {COLOR_1 RED}Stormy Sea{END_COLOR_TEXT_1} is unforgiving!"); ALIGNED(4) static const u8 sSeaRescueHeadline[] = _("#46 Sea Rescue a Success!"); ALIGNED(4) static const u8 sVileplumeText[] = _( "Vileplume are widely recognized for \n" - "their massive flower. However{COMMA} few dare\n" + "their massive flower. However, few dare\n" "to approach Vileplume because they\n" "scatter clouds of allergy-inducing\n" "pollen. Vileplume complain that they tire\n" - "very easily because the flower{APOSTROPHE}s weight\n" + "very easily because the flower's weight\n" "makes their head heavy."); -ALIGNED(4) static const u8 sVileplumeHeadline[] = _("#45 Vileplume{APOSTROPHE}s Weighty Problem"); +ALIGNED(4) static const u8 sVileplumeHeadline[] = _("#45 Vileplume's Weighty Problem"); ALIGNED(4) static const u8 sRawstText[] = _( "Research has revealed that {COLOR_1 GREEN}Rawst Berries{END_COLOR_TEXT_1}\n" "found in dungeons are usually unripened\n" - "and colored green. When ripe{COMMA} they turn a\n" + "and colored green. When ripe, they turn a\n" "sky blue color. An unripened one is easier\n" - "to eat{COMMA} however{COMMA} because it has not yet\n" + "to eat, however, because it has not yet\n" "turned bitter. It is known to heal all\n" "burns."); -ALIGNED(4) static const u8 sRawstHeadline[] = _("#44 Rawst Berry{APOSTROPHE}s Effect"); +ALIGNED(4) static const u8 sRawstHeadline[] = _("#44 Rawst Berry's Effect"); ALIGNED(4) static const u8 sClubText[] = _( "We proudly announce the foundation of\n" - "the Red & Blue Fan Club{COMMA} an organization\n" + "the Red & Blue Fan Club, an organization\n" "for supporting Pokémon rescue teams.\n" "We are currently recruiting new members.\n" - "Won{APOSTROPHE}t you join and throw your support\n" + "Won't you join and throw your support\n" "behind our hard-working rescue heroes?\n\n" " - Plusle and Minun -"); ALIGNED(4) static const u8 sClubHeadline[] = _("#43 Fan Club Seeks Members!"); ALIGNED(4) static const u8 sChanseyText[] = _( - "As a special treat{COMMA} I{APOSTROPHE}ll share a simple\n" + "As a special treat, I'll share a simple\n" "way to tell fortunes with you!\n" "The key is the first thing you find in the\n" - "day{APOSTROPHE}s first dungeon.\n" - "If it{APOSTROPHE}s money{COMMA} you{APOSTROPHE}ll be sure to make more.\n" - "If it{APOSTROPHE}s a Berry{COMMA} your health luck is good.\n" - "If it{APOSTROPHE}s an Apple{COMMA} you{APOSTROPHE}re super lucky!\n" + "day's first dungeon.\n" + "If it's money, you'll be sure to make more.\n" + "If it's a Berry, your health luck is good.\n" + "If it's an Apple, you're super lucky!\n" " - Chansey -"); -ALIGNED(4) static const u8 sChanseyHeadline[] = _("#42 Chansey{APOSTROPHE}s Fortune-Telling"); +ALIGNED(4) static const u8 sChanseyHeadline[] = _("#42 Chansey's Fortune-Telling"); ALIGNED(4) static const u8 sKabutoText[] = _( "One of our oldest residents claims to feel\n" "rejuvenated. Kabuto reportedly had an\n" "encounter with Relicanth in which both\n" - "parties reminisced about the {QUOTE_START}old days.{QUOTE_END}\n" - "However{COMMA} even Kabuto could not keep up\n" - "with Relicanth{APOSTROPHE}s tales from a hundred\n" - "million years ago. Kabuto stated{COMMA} {QUOTE_START}It\n" - "made me feel young talking to Relicanth.{QUOTE_END}"); + "parties reminisced about the “old days.”\n" + "However, even Kabuto could not keep up\n" + "with Relicanth's tales from a hundred\n" + "million years ago. Kabuto stated, “It\n" + "made me feel young talking to Relicanth.”"); ALIGNED(4) static const u8 sKabutoHeadline[] = _("#41 Kabuto Feels Young Again!"); ALIGNED(4) static const u8 sSmeargleText[] = _( - "Smeargle{COMMA} the artist known for his unique\n" - "artistic vision{COMMA} had a windfall day as one\n" + "Smeargle, the artist known for his unique\n" + "artistic vision, had a windfall day as one\n" "of his paintings was auctioned for 300\n" "million {POKE} yesterday. The auctioned\n" - "artwork was one of Smeargle{APOSTROPHE}s signature\n" + "artwork was one of Smeargle's signature\n" "works from early in his career."); ALIGNED(4) static const u8 sSmeargleHeadline[] = _("#40 Smeargle Painting Auctioned!"); ALIGNED(4) static const u8 sCastformText[] = _( - "Today{COMMA} the weather over Pokémon\n" + "Today, the weather over Pokémon\n" "Square promises to be clear with no\n" "chance of showers.\n" "Other regions can expect showers followed\n" "by clouds. There may be sun breaks\n" - "depending on the day{APOSTROPHE}s moods."); + "depending on the day's moods."); -ALIGNED(4) static const u8 sCastformHeadline[] = _("#39 Castform{APOSTROPHE}s Daily Weather"); +ALIGNED(4) static const u8 sCastformHeadline[] = _("#39 Castform's Daily Weather"); ALIGNED(4) static const u8 sGasText[] = _( "Reports of a noxious gas leak caused\n" "widespread chaos in the {COLOR_1 YELLOW_4}Sinister Woods{END_COLOR_TEXT_1}.\n" "Specialists speculate that the recent\n" - "natural disasters are to blame. However{COMMA}\n" - "some also blame {COLOR_1 CYAN}Team Koffing{END_COLOR_TEXT_1}{APOSTROPHE}s training\n" + "natural disasters are to blame. However,\n" + "some also blame {COLOR_1 CYAN}Team Koffing{END_COLOR_TEXT_1}'s training\n" "in the area for the foul-smelling gas.\n" - "The answer{COMMA} apparently{COMMA} is blowing in the\n" + "The answer, apparently, is blowing in the\n" "wind."); ALIGNED(4) static const u8 sGasHeadline[] = _("#38 Noxious Gas Leak?!"); ALIGNED(4) static const u8 sKeyItemText2[] = _( "{CENTER_ALIGN COLOR_1 YELLOW}When Used Somewhere Special...{END_COLOR_TEXT_1}\n" - "Eevee and Water Stone{COMMA} Fire Stone{COMMA}\n" - "Thunderstone{COMMA} or...\n" + "Eevee and Water Stone, Fire Stone,\n" + "Thunderstone, or...\n" "Exeggcute and Leaf Stone...\n" - "Onix{COMMA} Metal Coat{COMMA} and Link Cable...\n" + "Onix, Metal Coat, and Link Cable...\n" "There appear to be many others!"); ALIGNED(4) static const u8 sKeyItemHeadline2[] = _("#37 Key Items for Pokémon 2"); @@ -1557,9 +1557,9 @@ ALIGNED(4) static const u8 sSwitchText[] = _( "Some dungeons allow rescue teams to\n" "switch leaders on the spot for doing\n" "combination attacks and so on.\n" - "When you enter a dungeon{COMMA} open the menu{COMMA}\n" + "When you enter a dungeon, open the menu,\n" "choose the Pokémon you want as the\n" - "leader under {COLOR_1 YELLOW}Team{END_COLOR_TEXT_1}{COMMA} then select the\n" + "leader under {COLOR_1 YELLOW}Team{END_COLOR_TEXT_1}, then select the\n" "command {COLOR_1 YELLOW}Leader{END_COLOR_TEXT_1}."); ALIGNED(4) static const u8 sSwitchHeadline[] = _("#35 Switching Leaders"); @@ -1568,17 +1568,17 @@ ALIGNED(4) static const u8 sKecleonText[] = _( "There have been numerous reports that\n" "the older of the Kecleon merchants in\n" "Pokémon Square occasionally goes\n" - "missing. Some residents claim{COMMA} {QUOTE_START}He{APOSTROPHE}s\n" + "missing. Some residents claim, “He's\n" "greedy. He must be off doing business\n" - "somewhere.{QUOTE_END} His younger brother denies\n" - "such claims: {QUOTE_START}He wouldn{APOSTROPHE}t get free items\n" - "in dungeons and try to sell them...{QUOTE_END}"); + "somewhere.” His younger brother denies\n" + "such claims: “He wouldn't get free items\n" + "in dungeons and try to sell them...”"); ALIGNED(4) static const u8 sKecleonHeadline[] = _("#34 Where Is Kecleon?"); ALIGNED(4) static const u8 sWeatherText2[] = _( "Clear: Pleasant weather.\n" - "Hail: Regularly inflicts damage{COMMA}\n" + "Hail: Regularly inflicts damage,\n" "except on the Ice type.\n" "Fog: Turns the status of all Pokémon on\n" "the floor to Mud Sport.\n" @@ -1588,46 +1588,46 @@ ALIGNED(4) static const u8 sWeatherText2[] = _( ALIGNED(4) static const u8 sWeatherHeadline2[] = _("#33 Dungeons and Weather 2"); ALIGNED(4) static const u8 sWobbuffetText[] = _( - "Earlier today{COMMA} Wobbuffet reportedly\n" + "Earlier today, Wobbuffet reportedly\n" "wobbled the wrong way and wandered off.\n" "It had to be rescued by the famous\n" "{COLOR_1 CYAN}Team Hydro{END_COLOR_TEXT_1}.\n" - "Fortunately{COMMA} the wayward wanderer\n" + "Fortunately, the wayward wanderer\n" "Wobbuffet was only wobbly and otherwise\n" "unharmed."); ALIGNED(4) static const u8 sWobbuffetHeadline[] = _("#32 Wobbly Wobbuffet Wanders!"); ALIGNED(4) static const u8 sPechaText[] = _( - "Among rescue teams{COMMA} there is growing\n" + "Among rescue teams, there is growing\n" "demand for equipment that is not only\n" - "practical{COMMA} but also fashionably appealing.\n" + "practical, but also fashionably appealing.\n" "The pink {COLOR_1 GREEN}Pecha Scarf{END_COLOR_TEXT_1} is especially popular.\n" "Even the {COLOR_1 CYAN}Kecleon Shop{END_COLOR_TEXT_1} is having trouble\n" "keeping it in stock.\n" - "If you{APOSTROPHE}re lucky enough to spot one{COMMA} make a\n" + "If you're lucky enough to spot one, make a\n" "beeline for it!"); ALIGNED(4) static const u8 sPechaHeadline[] = _("#31 Pecha Scarf--Top Popularity!"); ALIGNED(4) static const u8 sWeatherText1[] = _( - "Sunny: Boosts Fire-type moves{COMMA} and\n" + "Sunny: Boosts Fire-type moves, and\n" "weakens Water-type moves.\n" "Sandstorm: Regularly inflicts damage\n" - "except on Ground{COMMA} Rock{COMMA} and Steel types.\n" - "Cloudy: All moves and attacks{COMMA} excluding\n" - "the Normal type{COMMA} are weakened.\n" - "Rain: Boosts Water-type moves{COMMA} and\n" + "except on Ground, Rock, and Steel types.\n" + "Cloudy: All moves and attacks, excluding\n" + "the Normal type, are weakened.\n" + "Rain: Boosts Water-type moves, and\n" "weakens Fire. Prevents explosions."); ALIGNED(4) static const u8 sWeatherHeadline1[] = _("#30 Dungeons and Weather 1"); ALIGNED(4) static const u8 sAzurillText[] = _( - "With a simple act of courage{COMMA} Azurill\n" + "With a simple act of courage, Azurill\n" "became a hero despite being small in size.\n" - "Azurill came across Slowpoke{COMMA} who had\n" - "fallen into a pond. Our hero{APOSTROPHE}s tail{COMMA} thrown\n" - "at the struggling Slowpoke{COMMA} saved a sure\n" + "Azurill came across Slowpoke, who had\n" + "fallen into a pond. Our hero's tail, thrown\n" + "at the struggling Slowpoke, saved a sure\n" "drowning! Slowpoke claimed to have\n" "entirely forgotten having the ability to\n" "swim capably."); @@ -1636,9 +1636,9 @@ ALIGNED(4) static const u8 sAzurillHeadline[] = _("#29 Azurill--the Little Hero! ALIGNED(4) static const u8 sKeyText[] = _( "{CENTER_ALIGN COLOR_1 YELLOW}Head Out to the Desert Region!{END_COLOR_TEXT_1}\n" - "If you{APOSTROPHE}ve been wondering what lies behind\n" + "If you've been wondering what lies behind\n" "the mysterious locked doors of the {COLOR_1 YELLOW_4}Solar\n" - "Cave{END_COLOR_TEXT_1}{COMMA} there{APOSTROPHE}s been a breakthrough!\n" + "Cave{END_COLOR_TEXT_1}, there's been a breakthrough!\n" "Reports indicate the door keys are easily\n" "found in the {COLOR_1 YELLOW_4}Desert Region{END_COLOR_TEXT_1}. Explorers are\n" "advised to compose teams with Pokémon\n" @@ -1651,7 +1651,7 @@ ALIGNED(4) static const u8 sSweetText[] = _( "Teddiursa is often seen licking its paws\n" "that have soaked up sweet honey. While it\n" "may be sticky shaking paws with\n" - "Teddiursa{COMMA} one can{APOSTROPHE}t help but feel a\n" + "Teddiursa, one can't help but feel a\n" "twinge of envy."); ALIGNED(4) static const u8 sSweetHeadline[] = _("#27 Sweet Hands!"); @@ -1660,10 +1660,10 @@ ALIGNED(4) static const u8 sRangeText[] = _( "{CENTER_ALIGN COLOR_1 YELLOW}All Moves Have Effective Ranges{END_COLOR_TEXT_1}\n" "Moves that affect an entire room have a\n" "range of two tiles in a corridor. The move\n" - "{COLOR_1 GREEN}Growl{END_COLOR_TEXT_1}{COMMA} which lowers the Attack stat of\n" - "foes in a room{COMMA} will reach two tiles away\n" - "in a corridor{COMMA} for example. If{COMMA} however{COMMA}\n" - "the visibility is limited to just one tile{COMMA}\n" + "{COLOR_1 GREEN}Growl{END_COLOR_TEXT_1}, which lowers the Attack stat of\n" + "foes in a room, will reach two tiles away\n" + "in a corridor, for example. If, however,\n" + "the visibility is limited to just one tile,\n" "the range of moves will also be limited."); ALIGNED(4) static const u8 sRangeHeadline[] = _("#26 The Range of Moves"); @@ -1672,9 +1672,9 @@ ALIGNED(4) static const u8 sIQText[] = _( "{CENTER_ALIGN COLOR_1 YELLOW}Make Your Explorations Easier by{END_COLOR_TEXT_1}\n" "{CENTER_ALIGN COLOR_1 YELLOW}Boosting the IQ of Team Members!{END_COLOR_TEXT_1}\n" "Eating Gummis boosts the IQ of Pokémon.\n" - "Upon reaching certain IQ levels{COMMA} a Pokémon\n" + "Upon reaching certain IQ levels, a Pokémon\n" "learns IQ Skills that can be very helpful\n" - "(for example{COMMA} learning to seek out foes\n" + "(for example, learning to seek out foes\n" "with type disadvantages). Check\n" "the IQ Skills of your team members!"); @@ -1685,7 +1685,7 @@ ALIGNED(4) static const u8 sTrapTileText[] = _( "There have been numerous reports of new\n" "floor tiles other than Wonder Tiles.\n" "Believed to have been made by the recent\n" - "natural disasters{COMMA} these floor tiles remain\n" + "natural disasters, these floor tiles remain\n" "hidden until they are stepped on. They then\n" "trigger a variety of traps. Rescue teams\n" "are urged to use extreme caution."); @@ -1695,23 +1695,23 @@ ALIGNED(4) static const u8 sTrapTileHeadline[] = _("#24 New Floor Tiles?"); ALIGNED(4) static const u8 sMakuhitaText[] = _( "{CENTER_ALIGN COLOR_1 YELLOW}Study Type Matchups{END_COLOR_TEXT_1}\n" "{CENTER_ALIGN COLOR_1 YELLOW}at the Makuhita Dojo!{END_COLOR_TEXT_1}\n" - "At the Makuhita Dojo{COMMA} one can learn how\n" + "At the Makuhita Dojo, one can learn how\n" "Pokémon type matchups affect battles.\n" - "It{APOSTROPHE}s because the dojo{APOSTROPHE}s training rooms are\n" - "divided by type. For example{COMMA} in the {COLOR_1 YELLOW_4}Fire\n" - "Maze{END_COLOR_TEXT_1}{COMMA} there are only Fire-type Pokémon.\n" + "It's because the dojo's training rooms are\n" + "divided by type. For example, in the {COLOR_1 YELLOW_4}Fire\n" + "Maze{END_COLOR_TEXT_1}, there are only Fire-type Pokémon.\n" "Try move types to see what works best!"); ALIGNED(4) static const u8 sMakuhitaHeadline[] = _("#23 Train at the Makuhita Dojo!"); ALIGNED(4) static const u8 sMachineText[] = _( "{CENTER_ALIGN COLOR_1 YELLOW}New Types of Machines Discovered?{END_COLOR_TEXT_1}\n" - "In a recently discovered cave{COMMA} explorers\n" + "In a recently discovered cave, explorers\n" "found unique types of Technical Machines.\n" "They apparently do not break after a single\n" "use. Further studies are said to be under\n" "consideration by the authorities.\n" - "In related news{COMMA} the cave is to be named\n" + "In related news, the cave is to be named\n" "the {COLOR_1 YELLOW_4}Solar Cave{END_COLOR_TEXT_1}."); ALIGNED(4) static const u8 sMachineHeadline[] = _("#22 New Types of Machines?"); @@ -1719,23 +1719,23 @@ ALIGNED(4) static const u8 sMachineHeadline[] = _("#22 New Types of Machines?"); ALIGNED(4) static const u8 sUltimateText[] = _( "{CENTER_ALIGN COLOR_1 YELLOW}The Ultimate Dungeon{END_COLOR_TEXT_1}\n" "{CENTER_ALIGN COLOR_1 YELLOW}Challenges You to Do Your Best!{END_COLOR_TEXT_1}\n" - "Somewhere in the world{COMMA} there supposedly\n" + "Somewhere in the world, there supposedly\n" "is an incredibly tough dungeon. One must\n" - "enter alone at Level 1{COMMA} and without any\n" + "enter alone at Level 1, and without any\n" "items. No one has ever completed the\n" "challenge. It is considered a test not of\n" - "power{COMMA} but of intelligence and wits."); + "power, but of intelligence and wits."); ALIGNED(4) static const u8 sUltimateHeadline[] = _("#21 The Ultimate Dungeon"); ALIGNED(4) static const u8 sGummiText[] = _( "{CENTER_ALIGN COLOR_1 YELLOW}Gummis That Make You Smart{END_COLOR_TEXT_1}\n" "Research has revealed that popular Gummi\n" - "treats not only enhance intelligence{COMMA} they\n" + "treats not only enhance intelligence, they\n" "also have different effects depending on\n" "type. Share Gummis with your friends and\n" "get smarter for your adventures! In\n" - "dungeons{COMMA} throw them at your friends.\n" + "dungeons, throw them at your friends.\n" "Use them in Friend Areas and...?"); ALIGNED(4) static const u8 sGummiHeadline[] = _("#20 Secrets of the Gummi"); @@ -1744,45 +1744,45 @@ ALIGNED(4) static const u8 sMoveTipsText[] = _( "{CENTER_ALIGN COLOR_1 YELLOW}Moving Diagonally{END_COLOR_TEXT_1}\n" "Move diagonally to avoid foes!\n" "Keeping {R_BUTTON}" - " pressed{COMMA} use\n" + " pressed, use\n" "{DPAD} to move diagonally.\n" "{CENTER_ALIGN COLOR_1 YELLOW}Changing Direction{END_COLOR_TEXT_1}\n" - "It{APOSTROPHE}s also very important to change\n" + "It's also very important to change\n" "directions without moving. Check Hints to\n" "see how you can do this maneuver!"); ALIGNED(4) static const u8 sMoveTipsHeadline[] = _("#19 Important Moving Tips"); ALIGNED(4) static const u8 sAddMembersText[] = _( - "If you want to enlarge your rescue team{COMMA}\n" + "If you want to enlarge your rescue team,\n" "you must first get Friend Areas. When\n" "a Pokémon that can live in an obtained\n" - "Friend Area is defeated{COMMA} it may ask to\n" + "Friend Area is defeated, it may ask to\n" "join your rescue team. Add to your\n" "Friend Areas so you can recruit more\n" - "members! Incidentally{COMMA} you may take no\n" + "members! Incidentally, you may take no\n" "more than three friends into a dungeon."); ALIGNED(4) static const u8 sAddMembersHeadline[] = _("#18 Adding Team Members"); ALIGNED(4) static const u8 sTeamMoveText[] = _( "{CENTER_ALIGN COLOR_1 YELLOW}Use Team Members Effectively!{END_COLOR_TEXT_1}\n" - "When you{APOSTROPHE}re fighting in a dungeon{COMMA} it{APOSTROPHE}s\n" + "When you're fighting in a dungeon, it's\n" "important to use your team members. If\n" - "attacked from the side{COMMA} move horizontally.\n" - "If attacked from above or below{COMMA} move\n" - "vertically. That way{COMMA} you can have several\n" + "attacked from the side, move horizontally.\n" + "If attacked from above or below, move\n" + "vertically. That way, you can have several\n" "Pokémon fighting a single foe. Change\n" - "Tactics if members don{APOSTROPHE}t move properly."); + "Tactics if members don't move properly."); ALIGNED(4) static const u8 sTeamMoveHeadline[] = _("#17 Moving as a Team"); ALIGNED(4) static const u8 sWondersText[] = _( "{CENTER_ALIGN COLOR_1 YELLOW}The Seven Wonders of Pokémon?{END_COLOR_TEXT_1}\n" "The mysterious feet of Diglett.\n" - "What is inside Forretress{APOSTROPHE}s shell.\n" - "The intelligence of Girafarig{APOSTROPHE}s tail.\n" - "Arbok{APOSTROPHE}s variety of patterns.\n" + "What is inside Forretress's shell.\n" + "The intelligence of Girafarig's tail.\n" + "Arbok's variety of patterns.\n" "We await submissions from readers on\n" "other Pokémon mysteries!\n" " - Mystery Hunter Team -"); @@ -1793,10 +1793,10 @@ ALIGNED(4) static const u8 sPollText[] = _( "{COLOR_1 YELLOW}First{UNK_MACRO_3D_50}Gravelerock{END_COLOR_TEXT_1}\n" "{COLOR_1 YELLOW}Second{UNK_MACRO_3D_50}Oran Berry{END_COLOR_TEXT_1}\n" "In a nationwide survey involving rescue\n" - "teams{COMMA} the most popular item was found to\n" + "teams, the most popular item was found to\n" "be {COLOR_1 GREEN}Gravelerocks{END_COLOR_TEXT_1}. According to Sudowoodo\n" - "of {COLOR_1 CYAN}Team Fakers{END_COLOR_TEXT_1}{COMMA} {QUOTE_START}It lets you attack\n" - "from far away. It{APOSTROPHE}s invaluable.{QUOTE_END} The next\n" + "of {COLOR_1 CYAN}Team Fakers{END_COLOR_TEXT_1}, “It lets you attack\n" + "from far away. It's invaluable.” The next\n" "most popular item was {COLOR_1 GREEN}Oran Berries{END_COLOR_TEXT_1}."); ALIGNED(4) static const u8 sPollHeadline[] = _("#15 Poll: Top Two Items"); @@ -1836,7 +1836,7 @@ ALIGNED(4) static const u8 sLinkedEntryHeadline2[] = _("#13 Linked Moves Entry L ALIGNED(4) static const u8 sLinkedEntryText1[] = _( "{CENTER_ALIGN COLOR_1 YELLOW}These Are the Recommended{END_COLOR_TEXT_1}\n" "{CENTER_ALIGN COLOR_1 YELLOW}Linked Moves for Beginners!{END_COLOR_TEXT_1}\n" - "{COLOR_1 RED}Grass{COMMA} Fighting{COMMA} and Ground Types{END_COLOR_TEXT_1}\n" + "{COLOR_1 RED}Grass, Fighting, and Ground Types{END_COLOR_TEXT_1}\n" "Bulbasaur\n" "{COLOR_1 GREEN}Vine Whip{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Growl{END_COLOR_TEXT_1}\n" "Chikorita\n" @@ -1851,11 +1851,11 @@ ALIGNED(4) static const u8 sLinkedEntryHeadline1[] = _("#12 Linked Moves Entry L ALIGNED(4) static const u8 sTypeText[] = _( "{CENTER_ALIGN COLOR_1 YELLOW}Learn How Types Match Up!{END_COLOR_TEXT_1}\n" - "All Pokémon are of certain types{COMMA} such as\n" - "{COLOR_1 RED}Fire{END_COLOR_TEXT_1} and {COLOR_1 CYAN}Water{END_COLOR_TEXT_1}. In a battle{COMMA} the damage\n" - "inflicted depends on how the Pokémon{APOSTROPHE}s\n" - "type matches up with the move{APOSTROPHE}s type.\n" - "For example{COMMA} a {COLOR_1 RED}Fire{END_COLOR_TEXT_1}-type Pokémon is\n" + "All Pokémon are of certain types, such as\n" + "{COLOR_1 RED}Fire{END_COLOR_TEXT_1} and {COLOR_1 CYAN}Water{END_COLOR_TEXT_1}. In a battle, the damage\n" + "inflicted depends on how the Pokémon's\n" + "type matches up with the move's type.\n" + "For example, a {COLOR_1 RED}Fire{END_COLOR_TEXT_1}-type Pokémon is\n" "weak against {COLOR_1 CYAN}Water{END_COLOR_TEXT_1}-type moves.\n" "Exploit type matchups to win battles!"); @@ -1863,9 +1863,9 @@ ALIGNED(4) static const u8 sTypeHeadline[] = _("#11 Types and Matchups"); ALIGNED(4) static const u8 sDungeonText[] = _( "If your rescue team is defeated in a\n" - "dungeon{COMMA} you lose several items and\n" + "dungeon, you lose several items and\n" "all the money you are carrying.\n" - "Beware of what you{APOSTROPHE}re carrying before\n" + "Beware of what you're carrying before\n" "you go off on a rescue or an outing.\n" "Use {COLOR_1 CYAN}Kangaskhan Storage{END_COLOR_TEXT_1} to keep\n" "invaluable items safely stored.\n" @@ -1875,32 +1875,32 @@ ALIGNED(4) static const u8 sDungeonHeadline[] = _("#10 Mysterious Dungeons?"); ALIGNED(4) static const u8 sWonderText[] = _( "{CENTER_ALIGN COLOR_1 YELLOW}Wonder Tiles Reset Attack and Defense!{END_COLOR_TEXT_1}\n" - "If your Attack is lowered by a foe{APOSTROPHE}s\n" - "{COLOR_1 GREEN}Growl{END_COLOR_TEXT_1}{COMMA} or your Defense is lowered\n" - "by a foe{APOSTROPHE}s {COLOR_1 GREEN}Tail Whip{END_COLOR_TEXT_1}{COMMA} for example{COMMA} the\n" + "If your Attack is lowered by a foe's\n" + "{COLOR_1 GREEN}Growl{END_COLOR_TEXT_1}, or your Defense is lowered\n" + "by a foe's {COLOR_1 GREEN}Tail Whip{END_COLOR_TEXT_1}, for example, the\n" "affected stat can be reset to normal by\n" "stepping on a Wonder Tile or going to the\n" - "next floor. Beware{COMMA} enhanced stats are\n" + "next floor. Beware, enhanced stats are\n" "also reset to normal!"); ALIGNED(4) static const u8 sWonderHeadline[] = _("#9 Wonder Tiles"); ALIGNED(4) static const u8 sMoveText[] = _( "{CENTER_ALIGN COLOR_1 YELLOW}The Benefits of Using Moves{END_COLOR_TEXT_1}\n" - "If a move is used on a foe{COMMA} when it is\n" - "defeated{COMMA} {COLOR_1 CYAN}you earn more Exp. Points{END_COLOR_TEXT_1}!\n" + "If a move is used on a foe, when it is\n" + "defeated, {COLOR_1 CYAN}you earn more Exp. Points{END_COLOR_TEXT_1}!\n" "A move only has to be used once on the\n" "foe: after that it can be defeated using a\n" "regular attack to earn more Exp. Points.\n" "Moves are also more likely to become\n" - "{COLOR_1 CYAN}critical hits{END_COLOR_TEXT_1}! Don{APOSTROPHE}t overuse them{COMMA} though!"); + "{COLOR_1 CYAN}critical hits{END_COLOR_TEXT_1}! Don't overuse them, though!"); -ALIGNED(4) static const u8 sMoveHeadline[] = _("#8 Let{APOSTROPHE}s Use Moves!"); +ALIGNED(4) static const u8 sMoveHeadline[] = _("#8 Let's Use Moves!"); ALIGNED(4) static const u8 sOptionsText[] = _( "{CENTER_ALIGN COLOR_1 YELLOW}Change Your Option Settings{END_COLOR_TEXT_1}\n" "{CENTER_ALIGN COLOR_1 YELLOW}to Suit Your Play Style!{END_COLOR_TEXT_1}\n" - "Press {B_BUTTON} to open the menu{COMMA} then\n" + "Press {B_BUTTON} to open the menu, then\n" "choose {COLOR_1 YELLOW}Others{END_COLOR_TEXT_1} and {COLOR_1 YELLOW}Game Options{END_COLOR_TEXT_1}.\n" "You can change settings to suit the way\n" "you play."); @@ -1914,29 +1914,29 @@ ALIGNED(4) static const u8 sDisasterText[] = _( "outsider without hesitation. Some believe\n" "a mysterious force is behind their\n" "behavior. One source blamed Diglett\n" - "for triggering earthquakes{COMMA} but the\n" + "for triggering earthquakes, but the\n" "investigative team is skeptical."); ALIGNED(4) static const u8 sDisasterHeadline[] = _("#6 Recent Natural Disasters"); ALIGNED(4) static const u8 sSeedText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}Seeds Can Be Thrown{COMMA} Too!{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR_1 YELLOW}Seeds Can Be Thrown, Too!{END_COLOR_TEXT_1}\n" "Seeds are usually meant to be eaten.\n" "But did you know? They can also be thrown\n" "at other Pokémon to unlock their effects.\n" - "Toss seeds you don{APOSTROPHE}t want to eat at foes!\n" + "Toss seeds you don't want to eat at foes!\n" "Throw good seeds at friends!\n" - "Don{APOSTROPHE}t be afraid to throw your seeds!"); + "Don't be afraid to throw your seeds!"); ALIGNED(4) static const u8 sSeedHeadline[] = _("#5 Throw Seeds!"); ALIGNED(4) static const u8 sHungerText[] = _( "{CENTER_ALIGN COLOR_1 YELLOW}Eat Something When You Get Hungry!{END_COLOR_TEXT_1}\n" - "While you{APOSTROPHE}re exploring a dungeon{COMMA} you will\n" + "While you're exploring a dungeon, you will\n" "get progressively hungry (your Belly goes\n" - "down). If you become famished{COMMA} you will\n" + "down). If you become famished, you will\n" "eventually lose HP and even faint.\n" - "That{APOSTROPHE}s why you should eat something to fill\n" + "That's why you should eat something to fill\n" "your Belly! You can always buy food at the\n" "{COLOR_1 CYAN}Kecleon Shop{END_COLOR_TEXT_1}."); @@ -1945,8 +1945,8 @@ ALIGNED(4) static const u8 sHungerHeadline[] = _("#4 Getting Hungry"); ALIGNED(4) static const u8 sJobText[] = _( "If you want to go on a rescue job listed\n" "on the Bulletin Board at the Pelipper Post\n" - "Office{COMMA} or one that{APOSTROPHE}s delivered to your\n" - "Mailbox{COMMA} you first need to {COLOR_1 YELLOW}Accept{END_COLOR_TEXT_1} the job{COMMA}\n" + "Office, or one that's delivered to your\n" + "Mailbox, you first need to {COLOR_1 YELLOW}Accept{END_COLOR_TEXT_1} the job,\n" "then choose {COLOR_1 YELLOW}Take Job{END_COLOR_TEXT_1}. Only then will you\n" "be able to handle that job.\n" "Try to do accepted jobs quickly!\n" @@ -1959,7 +1959,7 @@ ALIGNED(4) static const u8 sBasicsText[] = _( "You can save your adventure by going to\n" "your bed. Get in the habit of saving often.\n" "You should also store old Pokémon News.\n" - "If your Mailbox is full{COMMA} you won{APOSTROPHE}t get the\n" + "If your Mailbox is full, you won't get the\n" "latest issue of the news or any job mail.\n" "Check the Mailbox and store old news!\n" " - Pokémon Rescue Organization -"); @@ -1969,10 +1969,10 @@ ALIGNED(4) static const u8 sBasicsHeadline[] = _("#2 Rescue Team Basics"); ALIGNED(4) static const u8 sWelcomeText[] = _( "{CENTER_ALIGN COLOR_1 YELLOW}To All New Members!{END_COLOR_TEXT_1}\n" "Your badge has the power to send back\n" - "to town any Pokémon you{APOSTROPHE}ve rescued. Just\n" - "hold the badge up{COMMA} and it does the rest.\n" - "By completing rescue jobs{COMMA} you will be\n" - "awarded points that raise your team{APOSTROPHE}s\n" + "to town any Pokémon you've rescued. Just\n" + "hold the badge up, and it does the rest.\n" + "By completing rescue jobs, you will be\n" + "awarded points that raise your team's\n" "ranking. Aim for the Bronze Rank for now!\n" " - Pokémon Rescue Organization -"); diff --git a/src/data/pokemon_mail_pre.h b/src/data/pokemon_mail_pre.h index 7ea76ac06..1c1f72629 100644 --- a/src/data/pokemon_mail_pre.h +++ b/src/data/pokemon_mail_pre.h @@ -519,7 +519,7 @@ const s16 gUnknown_80E81D4[386][2] = { }; ALIGNED(4) const u8 gMankeyMission[] = _("Punish bad {COLOR_1 YELLOW}Mankey{END_COLOR_TEXT_1}!"); -ALIGNED(4) const u8 gSmeargleMission[] = _("{COLOR_1 YELLOW}Smeargle{END_COLOR_TEXT_1}{APOSTROPHE}s desperate plea!"); +ALIGNED(4) const u8 gSmeargleMission[] = _("{COLOR_1 YELLOW}Smeargle{END_COLOR_TEXT_1}'s desperate plea!"); ALIGNED(4) const u8 gMedichamMission[] = _("{COLOR_1 YELLOW}Medicham{END_COLOR_TEXT_1}: Help me!"); ALIGNED(4) const u8 gUnknown_80E8830[] = _("Deliver one {COLOR_1 GREEN}%s{END_COLOR_TEXT_1}."); ALIGNED(4) const u8 gUnknown_80E8848[] = _("One {COLOR_1 GREEN}%s{END_COLOR_TEXT_1} wanted!"); @@ -527,23 +527,23 @@ ALIGNED(4) const u8 gUnknown_80E885C[] = _("Save my child!"); ALIGNED(4) const u8 gUnknown_80E886C[] = _("Escort me to my love!"); ALIGNED(4) const u8 gUnknown_80E8884[] = _("Near %s"); ALIGNED(4) const u8 gUnknown_80E888C[] = _("Rescue Description"); -ALIGNED(4) const u8 gMankeyMissionDescription[] = _("Please punish bad {COLOR_1 YELLOW}Mankey{END_COLOR_TEXT_1}{APOSTROPHE}s gang."); +ALIGNED(4) const u8 gMankeyMissionDescription[] = _("Please punish bad {COLOR_1 YELLOW}Mankey{END_COLOR_TEXT_1}'s gang."); ALIGNED(4) const u8 gSmeargleMissionDescription[] = _( - "I didn{APOSTROPHE}t want to become a grown-up{COMMA} so I\n" - "fled{COMMA} but now I{APOSTROPHE}ve lost my way! Help!"); + "I didn't want to become a grown-up, so I\n" + "fled, but now I've lost my way! Help!"); ALIGNED(4) const u8 gMedichamMissionDescription[] = _( - "This is {COLOR_1 YELLOW}Medicham{END_COLOR_TEXT_1}. Rescue me{COMMA} please!\n" + "This is {COLOR_1 YELLOW}Medicham{END_COLOR_TEXT_1}. Rescue me, please!\n" "The reward is a secret〜♪ "); ALIGNED(4) const u8 gUnknown_80E8968[] = _( - "With the item {COLOR_1 GREEN}%s{END_COLOR_TEXT_1}{COMMA} I can\n" - "evolve! I{APOSTROPHE}m yearning to evolve! Help!"); + "With the item {COLOR_1 GREEN}%s{END_COLOR_TEXT_1}, I can\n" + "evolve! I'm yearning to evolve! Help!"); ALIGNED(4) const u8 gUnknown_80E89B0[] = _( "The {COLOR_1 GREEN}%s{END_COLOR_TEXT_1}! What I love to eat\n" - "and can{APOSTROPHE}t live without! Please get one!"); + "and can't live without! Please get one!"); ALIGNED(4) const u8 gUnknown_80E89FC[] = _( "This is a rescue through communication.\n" diff --git a/src/data/post_office_guide1.h b/src/data/post_office_guide1.h index bdc69da7f..8a9c1cb0f 100644 --- a/src/data/post_office_guide1.h +++ b/src/data/post_office_guide1.h @@ -87,114 +87,114 @@ static const MenuItem sPostOfficeHelpGetHelpMenu[] = }; ALIGNED(4) static const u8 sWhatdYouWantToKnow[] = - _(" So{COMMA} what{APOSTROPHE}d you want to\n" + _(" So, what'd you want to\n" "know?"); ALIGNED(4) static const u8 sGettingHelpExplanation[] = _(" If you need to call for\n" - "help{COMMA} first send your friend\n" + "help, first send your friend\n" "an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" - " Once you send that mail{COMMA}\n" + " Once you send that mail,\n" "wait until your friend sends you back\n" "an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" " When you get that\n" - "{COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} back{COMMA} your team\n" + "{COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} back, your team\n" "can continue from where it went down.{EXTRA_MSG}" " Make sure you send your\n" "friend a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}.\n" - "That{APOSTROPHE}s if you get revived{COMMA} of course."); + "That's if you get revived, of course."); ALIGNED(4) static const u8 sSendSOSMailExplanation[] = _(" If your team gets defeated\n" - "in a dungeon{COMMA} you can send an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}\n" + "in a dungeon, you can send an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}\n" "to a friend willing to help.{EXTRA_MSG}" " But I have to warn you.\n" - "You can{APOSTROPHE}t get anyone to rescue you\n" + "You can't get anyone to rescue you\n" "in certain places.{EXTRA_MSG}" " If you need to send\n" - "an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}{COMMA} you send it from the\n" + "an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}, you send it from the\n" "{COLOR_1 LIGHT_BLUE}main menu{END_COLOR_TEXT_1}."); ALIGNED(4) static const u8 sReceiveAOKMailExplanation[] = _(" If your friend manages to\n" - "rescue your team{COMMA} you need to receive\n" + "rescue your team, you need to receive\n" "an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} from your friend.{EXTRA_MSG}" - " See{COMMA} once you get that\n" - "{COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}{COMMA} your team can continue from\n" + " See, once you get that\n" + "{COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}, your team can continue from\n" "where it went down in the dungeon.{EXTRA_MSG}" - " And{COMMA} if you use\n" - "a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}{COMMA} your friend can\n" + " And, if you use\n" + "a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}, your friend can\n" "even send you a {COLOR_1 LIGHT_BLUE}helper Pokémon{END_COLOR_TEXT_1}.{EXTRA_MSG}" - " There{APOSTROPHE}s just one thing.\n" - "A {COLOR_1 LIGHT_BLUE}helper Pokémon{END_COLOR_TEXT_1} can{APOSTROPHE}t bring\n" + " There's just one thing.\n" + "A {COLOR_1 LIGHT_BLUE}helper Pokémon{END_COLOR_TEXT_1} can't bring\n" "any item it happens to be holding.{EXTRA_MSG}" " You can receive that\n" - "team-saving {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} on the {COLOR_1 LIGHT_BLUE}main menu{END_COLOR_TEXT_1}{COMMA}\n" + "team-saving {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} on the {COLOR_1 LIGHT_BLUE}main menu{END_COLOR_TEXT_1},\n" "all right?"); ALIGNED(4) static const u8 sSendThankYouMailExplanation[] = - _(" If your team gets rescued{COMMA}\n" + _(" If your team gets rescued,\n" "be sure to send your friend\n" "a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" " You do that by going to\n" - "the {COLOR_1 LIGHT_BLUE}right counter{END_COLOR_TEXT_1}{COMMA} or\n" + "the {COLOR_1 LIGHT_BLUE}right counter{END_COLOR_TEXT_1}, or\n" "by selecting it from the {COLOR_1 LIGHT_BLUE}main menu{END_COLOR_TEXT_1}.{EXTRA_MSG}" " You can attach an item in\n" "storage to your {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}\n" "as a {COLOR_1 LIGHT_BLUE}reward item{END_COLOR_TEXT_1}.{EXTRA_MSG}" - " You don{APOSTROPHE}t want to ever\n" + " You don't want to ever\n" "forget to express your thanks."); ALIGNED(4) static const u8 sRescueProceduresExplanation[] = _(" If you want to go and\n" - "rescue your friend{APOSTROPHE}s KO{APOSTROPHE}d team{COMMA}\n" + "rescue your friend's KO'd team,\n" "you need to receive an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" - " When you get that mail{COMMA}\n" + " When you get that mail,\n" "you can rescue your friend at\n" "the {COLOR_1 LIGHT_BLUE}left counter{END_COLOR_TEXT_1} over there.{EXTRA_MSG}" " If you do manage to rescue\n" - "the team{COMMA} you send your friend\n" + "the team, you send your friend\n" "an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" - " After you do that{COMMA} your\n" + " After you do that, your\n" "friend can send back to you\n" "a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}."); ALIGNED(4) static const u8 sReceiveSOSMailExplanation[] = - _(" To go off on a rescue{COMMA}\n" - "you first need to receive your friend{APOSTROPHE}s\n" + _(" To go off on a rescue,\n" + "you first need to receive your friend's\n" "{COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" " You do that at\n" - "the {COLOR_1 LIGHT_BLUE}left counter{END_COLOR_TEXT_1} over there{COMMA}\n" + "the {COLOR_1 LIGHT_BLUE}left counter{END_COLOR_TEXT_1} over there,\n" "or by selecting it from the {COLOR_1 LIGHT_BLUE}main menu{END_COLOR_TEXT_1}."); ALIGNED(4) static const u8 sSendAOKMailExplanation[] = _(" If you succeed in rescuing\n" - "that team{COMMA} you send your friend an\n" + "that team, you send your friend an\n" "{COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" " You do that by going to\n" - "the {COLOR_1 LIGHT_BLUE}left counter{END_COLOR_TEXT_1}{COMMA}\n" + "the {COLOR_1 LIGHT_BLUE}left counter{END_COLOR_TEXT_1},\n" "or from the {COLOR_1 LIGHT_BLUE}main menu{END_COLOR_TEXT_1}.{EXTRA_MSG}" " You can send your friend\n" "a Pokémon as a helper from your Friend\n" "Areas using a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}.{EXTRA_MSG}" - " This Pokémon won{APOSTROPHE}t\n" - "disappear from its Friend Area{COMMA} so\n" - "don{APOSTROPHE}t you worry any."); + " This Pokémon won't\n" + "disappear from its Friend Area, so\n" + "don't you worry any."); ALIGNED(4) static const u8 sLeaveForRescueExplanation[] = - _(" If you get an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}{COMMA}\n" + _(" If you get an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1},\n" "you head off on the rescue from\n" "the {COLOR_1 LIGHT_BLUE}left counter{END_COLOR_TEXT_1}.{EXTRA_MSG}" - " But{COMMA} I have to warn you.\n" - "You can{APOSTROPHE}t go off to rescue in a dungeon\n" - "if you can{APOSTROPHE}t get into it.{EXTRA_MSG}" - " You{APOSTROPHE}ll be able to get\n" + " But, I have to warn you.\n" + "You can't go off to rescue in a dungeon\n" + "if you can't get into it.{EXTRA_MSG}" + " You'll be able to get\n" "there when you go farther in your\n" - "adventure{COMMA} so it won{APOSTROPHE}t do to fret."); + "adventure, so it won't do to fret."); ALIGNED(4) static const u8 sGetThankYouMailExplanation[] = _(" If you send your friend\n" - "an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}{COMMA} you can look forward\n" + "an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}, you can look forward\n" "to getting a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} back.{EXTRA_MSG}" " You can receive it at\n" "the {COLOR_1 LIGHT_BLUE}right counter{END_COLOR_TEXT_1}\n" @@ -204,9 +204,9 @@ ALIGNED(4) static const u8 sGetThankYouMailExplanation[] = "before you get the {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} back."); ALIGNED(4) static const u8 sImYourGuide[] = - _(" I{APOSTROPHE}m your guide to what you\n" + _(" I'm your guide to what you\n" "can expect at the Pelipper Post Office.\n" - "If you have any questions{COMMA} just ask away!"); + "If you have any questions, just ask away!"); ALIGNED(4) static const u8 sAnythingElse[] = _(" Did you want to ask about\n" @@ -219,14 +219,14 @@ ALIGNED(4) static const u8 sPostOfficeExplanation[] = " We inform folks\n" "about everything from gossip to calls\n" "for help from fellow Pokémon.{EXTRA_MSG}" - " For the latest news{COMMA} check\n" + " For the latest news, check\n" "{COLOR_1 LIGHT_BLUE}your Mailbox{END_COLOR_TEXT_1} or the {COLOR_1 LIGHT_BLUE}Bulletin Board{END_COLOR_TEXT_1}\n" - "outside{COMMA} all right?{EXTRA_MSG}" - " Oh{COMMA} that{APOSTROPHE}s not all.\n" + "outside, all right?{EXTRA_MSG}" + " Oh, that's not all.\n" "You can arrange for {COLOR_1 LIGHT_BLUE}Friend Rescue{END_COLOR_TEXT_1}\n" "missions at that counter there.{EXTRA_MSG}" " The {COLOR_1 LIGHT_BLUE}left counter{END_COLOR_TEXT_1} is\n" - "for rescues{COMMA} and the {COLOR_1 LIGHT_BLUE}right counter{END_COLOR_TEXT_1}\n" + "for rescues, and the {COLOR_1 LIGHT_BLUE}right counter{END_COLOR_TEXT_1}\n" "is for Thank-You Mail."); ALIGNED(4) static const u8 sBulletinBoardExplanation[] = @@ -238,7 +238,7 @@ ALIGNED(4) static const u8 sBulletinBoardExplanation[] = ALIGNED(4) static const u8 sDeliveryExplanation[] = _(" If your rescue team\n" - "becomes famous for doing lots of rescues{COMMA}\n" + "becomes famous for doing lots of rescues,\n" "expect to get rescue requests directly.{EXTRA_MSG}" " Our delivery {ARG_POKEMON_0}\n" "will take those jobs straight to your\n" @@ -247,14 +247,14 @@ ALIGNED(4) static const u8 sDeliveryExplanation[] = ALIGNED(4) static const u8 sFriendRescueExplanation[] = _(" Friend Rescue is what we\n" "call rescue missions between friends using\n" - "a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}{COMMA} {COLOR_1 LIGHT_BLUE}passwords{END_COLOR_TEXT_1}{COMMA} etc.{EXTRA_MSG}" - " For instance{COMMA} you can send\n" + "a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}, {COLOR_1 LIGHT_BLUE}passwords{END_COLOR_TEXT_1}, etc.{EXTRA_MSG}" + " For instance, you can send\n" "out for help saying your team wiped out\n" "in a dungeon at such and such a place.{EXTRA_MSG}" " Your friend could play\n" - "the hero and come to your team{APOSTROPHE}s rescue.\n" - "Or it can be the other way around{COMMA} too.{EXTRA_MSG}" - " If you use {COLOR_1 LIGHT_BLUE}passwords{END_COLOR_TEXT_1}{COMMA}\n" + "the hero and come to your team's rescue.\n" + "Or it can be the other way around, too.{EXTRA_MSG}" + " If you use {COLOR_1 LIGHT_BLUE}passwords{END_COLOR_TEXT_1},\n" "you can do rescues with friends in\n" "far-away places.{EXTRA_MSG}" " You can apply for Friend\n" @@ -263,13 +263,13 @@ ALIGNED(4) static const u8 sFriendRescueExplanation[] = ALIGNED(4) static const u8 sDeletingMailExplanation[] = _(" Deleting mail just means\n" - "getting rid of old mail that you don{APOSTROPHE}t\n" + "getting rid of old mail that you don't\n" "need anymore.{EXTRA_MSG}" " If you do lots of Friend\n" - "Rescues{COMMA} you{APOSTROPHE}ll find {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1} and\n" + "Rescues, you'll find {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1} and\n" "{COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} piling up.{EXTRA_MSG}" - " Once you get {COLOR_1 LIGHT_BLUE}30 pieces{END_COLOR_TEXT_1}{COMMA}\n" - "you won{APOSTROPHE}t be able to receive more mail.\n" - "That{APOSTROPHE}s why you{APOSTROPHE}ll need to delete old mail.{EXTRA_MSG}" + " Once you get {COLOR_1 LIGHT_BLUE}30 pieces{END_COLOR_TEXT_1},\n" + "you won't be able to receive more mail.\n" + "That's why you'll need to delete old mail.{EXTRA_MSG}" " You can look through old\n" "mail at the {COLOR_1 LIGHT_BLUE}left counter{END_COLOR_TEXT_1} over there."); \ No newline at end of file diff --git a/src/data/quick_save_read.h b/src/data/quick_save_read.h index 4ea679523..1a8d5c183 100644 --- a/src/data/quick_save_read.h +++ b/src/data/quick_save_read.h @@ -1,7 +1,7 @@ ALIGNED(4) static const u8 sSaveFailedExplanation[] = _( - "{CENTER_ALIGN}Your data was not properly saved{COMMA}\n" + "{CENTER_ALIGN}Your data was not properly saved,\n" "{CENTER_ALIGN}so your game cannot be resumed\n" "{CENTER_ALIGN}from your last spot.{EXTRA_MSG}" "{CENTER_ALIGN}Your last outing is considered a defeat.\n" - "{CENTER_ALIGN}Before shutting down{COMMA} save in your\n" - "{CENTER_ALIGN}team base{COMMA} or quicksave in a dungeon."); \ No newline at end of file + "{CENTER_ALIGN}Before shutting down, save in your\n" + "{CENTER_ALIGN}team base, or quicksave in a dungeon."); \ No newline at end of file diff --git a/src/data/quick_save_write.h b/src/data/quick_save_write.h index 2e52fe03f..867fda8cd 100644 --- a/src/data/quick_save_write.h +++ b/src/data/quick_save_write.h @@ -1,18 +1,18 @@ ALIGNED(4) static const u8 sUnknown_80D45AC[] = _( "{CENTER_ALIGN}Quicksaving your adventure...\n" - "{CENTER_ALIGN}Please don{APOSTROPHE}t turn off the power."); + "{CENTER_ALIGN}Please don't turn off the power."); ALIGNED(4) static const u8 sUnknown_80D45F4[] = _( "{CENTER_ALIGN}Your adventure has been saved.\n" - "{CENTER_ALIGN}When you are in a dungeon{COMMA} quicksave\n" + "{CENTER_ALIGN}When you are in a dungeon, quicksave\n" "{CENTER_ALIGN}your progress before ending the game."); ALIGNED(4) static const u8 sUnknown_80D4668[] = _( "{CENTER_ALIGN}Your adventure has been saved.\n" - "{CENTER_ALIGN}When you resume play{COMMA} the quicksave\n" + "{CENTER_ALIGN}When you resume play, the quicksave\n" "{CENTER_ALIGN}data will be deleted.{EXTRA_MSG}" - "{CENTER_ALIGN}When you are shutting down the game{COMMA}\n" - "{CENTER_ALIGN}save your progress in your team base{COMMA}\n" + "{CENTER_ALIGN}When you are shutting down the game,\n" + "{CENTER_ALIGN}save your progress in your team base,\n" "{CENTER_ALIGN}or quicksave in a dungeon."); ALIGNED(4) static const u8 sSaveNotWritten[] = _( diff --git a/src/data/save_write.h b/src/data/save_write.h index e81d79ba1..a910cc129 100644 --- a/src/data/save_write.h +++ b/src/data/save_write.h @@ -1,6 +1,6 @@ ALIGNED(4) static const u8 sSavingAdventure[] = _( "{CENTER_ALIGN}Saving your adventure...\n" - "{CENTER_ALIGN}Please don{APOSTROPHE}t turn off the power."); + "{CENTER_ALIGN}Please don't turn off the power."); ALIGNED(4) static const u8 sWriteGamePak[] = _( "{CENTER_ALIGN}Writing to GBA Game Pak.\n" diff --git a/src/data/story_missions.h b/src/data/story_missions.h index b21236345..d305474f7 100644 --- a/src/data/story_missions.h +++ b/src/data/story_missions.h @@ -65,7 +65,7 @@ static const MissionText gStoryMissionText[] = { { NULL, -1, -1, 0, 0 }, }; -ALIGNED(4) const u8 gUnknown_8109A94[] = _("Break Gardevoir{APOSTROPHE}s curse."); +ALIGNED(4) const u8 gUnknown_8109A94[] = _("Break Gardevoir's curse."); ALIGNED(4) const u8 gUnknown_8109AB0[] = _("Rescue Medicham."); ALIGNED(4) const u8 gUnknown_8109AC4[] = _("Investigate Relic."); ALIGNED(4) const u8 gUnknown_8109AD8[] = _("Rescue Latias."); @@ -81,7 +81,7 @@ ALIGNED(4) const u8 gUnknown_8109B8C[] = _("Explore seafloor."); ALIGNED(4) const u8 gUnknown_8109BA0[] = _("Rescue Smeargle."); ALIGNED(4) const u8 gUnknown_8109BB4[] = _("Punish bad Mankey."); ALIGNED(4) const u8 gUnknown_8109BC8[] = _("{COLOR_1 YELLOW_3}Scenario Progress Dummy{END_COLOR_TEXT_1}"); -ALIGNED(4) const u8 gUnknown_8109BE8[] = _("Seek Rayquaza{APOSTROPHE}s help."); +ALIGNED(4) const u8 gUnknown_8109BE8[] = _("Seek Rayquaza's help."); ALIGNED(4) const u8 gUnknown_8109C00[] = _("Rescue Alakazam."); ALIGNED(4) const u8 gUnknown_8109C14[] = _("Meet Ninetales."); ALIGNED(4) const u8 gUnknown_8109C24[] = _("Fugitive"); diff --git a/src/data/thank_you_wonder_mail.h b/src/data/thank_you_wonder_mail.h index 8071f3fcf..e60cedbdc 100644 --- a/src/data/thank_you_wonder_mail.h +++ b/src/data/thank_you_wonder_mail.h @@ -1,5 +1,5 @@ ALIGNED(4) const char gUnknown_80DEF04[] = _(" ...Oh?\n" - "Something{APOSTROPHE}s gone wrong."); + "Something's gone wrong."); ALIGNED(4) const char gUnknown_80DEF28[] = " ...Oh? The number of linked\n" "GBA systems is incorrect.\n" @@ -17,12 +17,12 @@ ALIGNED(4) const u8 gUnknown_80DEFDC[]= ALIGNED(4) const u8 gUnknown_80DF044[]= _( " ...Oh?\n" - "I think you{APOSTROPHE}ve received this mail before.\n" - "You can{APOSTROPHE}t get the same mail twice."); + "I think you've received this mail before.\n" + "You can't get the same mail twice."); ALIGNED(4) const u8 gUnknown_80DF0A0[]= _( " ...Oh?\n" - "I don{APOSTROPHE}t think you{APOSTROPHE}re eligible to receive\n" + "I don't think you're eligible to receive\n" "this mail."); ALIGNED(4) const u8 gUnknown_80DF0E0[]= @@ -31,7 +31,7 @@ ALIGNED(4) const u8 gUnknown_80DF0E0[]= "Please delete some mail and try again."; ALIGNED(4) const u8 gUnknown_80DF138[]= _( - " ...Oh? Your friend didn{APOSTROPHE}t\n" + " ...Oh? Your friend didn't\n" "follow through on their side.\n" "Please try again from the start."); @@ -45,14 +45,14 @@ ALIGNED(4) const u8 gUnknown_80DF1C0[]= "Would you like to try again?"; ALIGNED(4) const u8 gUnknown_80DF208[]= _( - " ...Oh? This password doesn{APOSTROPHE}t\n" + " ...Oh? This password doesn't\n" "appear to be for a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}."); ALIGNED(4) const u8 gUnknown_80DF250[]= _( ": This is the counter for\n" "{COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" - ": Oh{COMMA} hi{COMMA} {COLOR_1 YELLOW_5}%s{END_COLOR_TEXT_1}.\n" - "I{APOSTROPHE}ve been waiting for you. You wanted me\n" + ": Oh, hi, {COLOR_1 YELLOW_5}%s{END_COLOR_TEXT_1}.\n" + "I've been waiting for you. You wanted me\n" "to process a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}?{EXTRA_MSG}" ": Let me get on it right away."); @@ -76,7 +76,7 @@ ALIGNED(4) const u8 gUnknown_80DF3B4[]= _( "adventure."); ALIGNED(4) const u8 gUnknown_80DF418[]= _( - " OK{COMMA} here is your\n" + " OK, here is your\n" "{COLOR_1 LIGHT_BLUE}Thank-You Mail password{END_COLOR_TEXT_1}."); ALIGNED(4) const u8 gUnknown_80DF44C[]= @@ -85,8 +85,8 @@ ALIGNED(4) const u8 gUnknown_80DF44C[]= ALIGNED(4) const u8 gUnknown_80DF46C[]= _( " There we go.\n" - "I{APOSTROPHE}m all done.{EXTRA_MSG}" - " Doesn{APOSTROPHE}t it feel great to\n" + "I'm all done.{EXTRA_MSG}" + " Doesn't it feel great to\n" "be appreciated for doing something good?\n" "Please keep up your rescue work!"); @@ -98,10 +98,10 @@ ALIGNED(4) const u8 gUnknown_80DF4F4[]= _( ALIGNED(4) const u8 gUnknown_80DF544[]= _( "{CENTER_ALIGN}Communicating...\n" "{CENTER_ALIGN}Please wait with the power on.\n" - "{CENTER_ALIGN}To cancel{COMMA} press {B_BUTTON}."); + "{CENTER_ALIGN}To cancel, press {B_BUTTON}."); ALIGNED(4) const u8 gUnknown_80DF594[]= _( - " There. I{APOSTROPHE}ve sent your\n" + " There. I've sent your\n" "{COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}.\n" "I need to save your adventure."); @@ -111,20 +111,20 @@ ALIGNED(4) const u8 gUnknown_80DF5E4[]= _( "Is your friend also ready?"); ALIGNED(4) const u8 gUnknown_80DF63C[]= _( - " There{COMMA} all done.\n" - "{COLOR_1 YELLOW_5}%s{END_COLOR_TEXT_1}{COMMA} I hope your friend\n" + " There, all done.\n" + "{COLOR_1 YELLOW_5}%s{END_COLOR_TEXT_1}, I hope your friend\n" "appreciates your sense of gratitude."); ALIGNED(4) const u8 gUnknown_80DF694[]= _( - " The item you{APOSTROPHE}ve chosen\n" - "here can{APOSTROPHE}t be exchanged later.\n" + " The item you've chosen\n" + "here can't be exchanged later.\n" "Are you certain this item is OK?"); ALIGNED(4) const u8 gUnknown_80DF6F0[]= _( - " I{APOSTROPHE}ve saved your adventure. "); + " I've saved your adventure. "); ALIGNED(4) const u8 gUnknown_80DF710[]= _( - " OK{COMMA} please choose\n" + " OK, please choose\n" "the item to be sent."); ALIGNED(4) const u8 gUnknown_80DF73C[]= @@ -139,10 +139,10 @@ ALIGNED(4) const u8 gUnknown_80DF77C[]= _( ALIGNED(4) const u8 gUnknown_80DF7D4[]= _( " ...Oh?\n" - "You{APOSTROPHE}ve already attached a {COLOR_1 LIGHT_BLUE}reward item{END_COLOR_TEXT_1}\n" + "You've already attached a {COLOR_1 LIGHT_BLUE}reward item{END_COLOR_TEXT_1}\n" "to this mail.{EXTRA_MSG}" - " I{APOSTROPHE}m sorry{COMMA} but once an item\n" - "has been attached to mail{COMMA} it can{APOSTROPHE}t be\n" + " I'm sorry, but once an item\n" + "has been attached to mail, it can't be\n" "exchanged."); ALIGNED(4) const u8 gUnknown_80DF870[]= @@ -151,7 +151,7 @@ ALIGNED(4) const u8 gUnknown_80DF870[]= ALIGNED(4) const u8 gUnknown_80DF8B4[]= _( " ...Oh?\n" - "You don{APOSTROPHE}t seem to have a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}."); + "You don't seem to have a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}."); ALIGNED(4) const u8 gUnknown_80DF8EC[]= _( " Hello.\n" @@ -172,4 +172,4 @@ ALIGNED(4) const u8 gUnknown_80DF96C[] = _( ALIGNED(4) const u8 gUnknown_80DF9A4[]= _( " How would you like to\n" - "receive your friend{APOSTROPHE}s {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}?"); \ No newline at end of file + "receive your friend's {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}?"); \ No newline at end of file diff --git a/src/data/trade_items_menu.h b/src/data/trade_items_menu.h index ff7010996..d6adc969d 100644 --- a/src/data/trade_items_menu.h +++ b/src/data/trade_items_menu.h @@ -68,18 +68,18 @@ ALIGNED(4) static const u8 sFmtWillBeSentPrompt[] = _( ALIGNED(4) static const u8 sFriendWillSendAnItem[] = _( "Your friend will send you an item.\n" - "When you are both ready{COMMA} you\n" + "When you are both ready, you\n" "may communicate."); ALIGNED(4) static const u8 sPreparingToSendItem[] = _( "Preparing to send an item to your\n" - "friend. When you are both ready{COMMA}\n" + "friend. When you are both ready,\n" "you may communicate."); ALIGNED(4) static const u8 sInCommunication[] = _( "{CENTER_ALIGN}In communication...\n" "{CENTER_ALIGN}Please wait with the power on.\n" - "{CENTER_ALIGN}To cancel{COMMA} press {B_BUTTON}."); + "{CENTER_ALIGN}To cancel, press {B_BUTTON}."); ALIGNED(4) static const u8 sFmtYouReceived[] = _( "You received\n" @@ -107,6 +107,6 @@ ALIGNED(4) static const u8 sUnequalModes[] = ALIGNED(4) static const u8 sNoResponseCheckSenderReceiver[] = _( "There is no response from your friend.\n" "Please make sure the sender and receiver\n" - "are ready{COMMA} then redo this from the start."); + "are ready, then redo this from the start."); ALIGNED(4) static const u8 sHowMany[] = "How many?"; \ No newline at end of file diff --git a/src/data/wonder_mail_1.h b/src/data/wonder_mail_1.h index e5d9dd688..ef6da20e7 100644 --- a/src/data/wonder_mail_1.h +++ b/src/data/wonder_mail_1.h @@ -93,7 +93,7 @@ const MenuItem gUnknown_80DDB60[] = {NULL, 0xA}, }; -ALIGNED(4) const u8 DontSendPokemon_80DDB80[] = _("Don{APOSTROPHE}t Send Pokémon"); +ALIGNED(4) const u8 DontSendPokemon_80DDB80[] = _("Don't Send Pokémon"); ALIGNED(4) const u8 SendPokemon_80DDB98[] = _("Send Pokémon"); ALIGNED(4) const char gUnknown_80DDBA8[] = _( @@ -103,10 +103,10 @@ ALIGNED(4) const char gUnknown_80DDBA8[] = _( ALIGNED(4) const char gUnknown_80DDBFC[] = _( " All righty!\n" - "Here{APOSTROPHE}s your {COLOR_1 LIGHT_BLUE}A-OK Mail password{END_COLOR_TEXT_1}."); + "Here's your {COLOR_1 LIGHT_BLUE}A-OK Mail password{END_COLOR_TEXT_1}."); ALIGNED(4) const char gUnknown_80DDC30[] = _( - " Okeydoke! That{APOSTROPHE}s all done.\n" + " Okeydoke! That's all done.\n" "Come around whenever you need."); ALIGNED(4) const char gUnknown_80DDC70[] = _( @@ -120,106 +120,106 @@ ALIGNED(4) const char gUnknown_80DDCBC[] = _( "{CENTER_ALIGN}(Its hold item will not be sent.)"); ALIGNED(4) const char gUnknown_80DDD2C[] = _( - " ...Uh{COMMA} no?\n" + " ...Uh, no?\n" "There appear to be no Pokémon in your\n" "Friend Areas. What do you want to do?"); ALIGNED(4) const char gUnknown_80DDD88[] = _( - " You{APOSTROPHE}re sure you want to\n" + " You're sure you want to\n" "send this here Pokémon?"); ALIGNED(4) const char gUnknown_80DDDBC[] = _( - " You{APOSTROPHE}re sure about this?"); + " You're sure about this?"); ALIGNED(4) const char gUnknown_80DDDD8[] = _( " All righty. I need you to\n" "pick the {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} you want to send."); ALIGNED(4) const char gUnknown_80DDE20[] = _( - " ...Uh{COMMA} no?\n" - "I don{APOSTROPHE}t see any {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} here."); + " ...Uh, no?\n" + "I don't see any {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} here."); ALIGNED(4) const char gUnknown_80DDE58[] = _( " Did you know? If you use\n" - "a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}{COMMA} you can send\n" + "a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}, you can send\n" "a {COLOR_1 LIGHT_BLUE}helper Pokémon{END_COLOR_TEXT_1} to your friend."); ALIGNED(4) const char gUnknown_80DDEC0[] = _( - " Don{APOSTROPHE}t you worry. Sending\n" - "a Pokémon doesn{APOSTROPHE}t mean it will go away.\n" + " Don't you worry. Sending\n" + "a Pokémon doesn't mean it will go away.\n" "So! Want to send one to your friend?"); ALIGNED(4) const char gUnknown_80DDF2C[] = _( - " ...Uh{COMMA} no?\n" - "There{APOSTROPHE}s no space at all to receive\n" + " ...Uh, no?\n" + "There's no space at all to receive\n" "any more mail.{EXTRA_MSG}" - " Delete some old mail{COMMA}\n" + " Delete some old mail,\n" "and then come to me to receive\n" - "your mail{COMMA} OK?"); + "your mail, OK?"); ALIGNED(4) const char gUnknown_80DDFB8[] = _( " All righty! Connect up\n" - "the {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}{COMMA} if you{APOSTROPHE}d please.\n" - "Your friend ready{COMMA} too?"); + "the {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}, if you'd please.\n" + "Your friend ready, too?"); ALIGNED(4) const char gUnknown_80DE01C[] = _( "{CENTER_ALIGN}Communicating...\n" "{CENTER_ALIGN}Please wait with the power on.\n" - "{CENTER_ALIGN}To cancel{COMMA} press {B_BUTTON}."); + "{CENTER_ALIGN}To cancel, press {B_BUTTON}."); ALIGNED(4) const char gUnknown_80DE06C[] = _( " Okeydoke!\n" - "I received your friend{APOSTROPHE}s {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" + "I received your friend's {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" " Let me save your adventure."); ALIGNED(4) const char gUnknown_80DE0C0[] = _( - " Okeydoke! You{APOSTROPHE}re good to go.\n" - "Just give me a shout when you{APOSTROPHE}d like\n" + " Okeydoke! You're good to go.\n" + "Just give me a shout when you'd like\n" "to go rescue your friend."); ALIGNED(4) const char gUnknown_80DE124[] = _( - " OK{COMMA} I need you to enter\n" + " OK, I need you to enter\n" "the {COLOR_1 LIGHT_BLUE}SOS Mail password{END_COLOR_TEXT_1} that your\n" "friend gave you."); ALIGNED(4) const char gUnknown_80DE178[] = _( " How do you want to receive\n" - "your friend{APOSTROPHE}s {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}?"); + "your friend's {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}?"); ALIGNED(4) const char gUnknown_80DE1B4[] = _( " How do you want to send\n" "your {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}?"); ALIGNED(4) const char gUnknown_80DE1E4[] = _( - " ...Uh{COMMA} no?\n" - "You don{APOSTROPHE}t have an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" - " You{APOSTROPHE}ll need to arrange\n" - "to receive your friend{APOSTROPHE}s {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1} first.\n" - "That{APOSTROPHE}s what you need to do."); + " ...Uh, no?\n" + "You don't have an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" + " You'll need to arrange\n" + "to receive your friend's {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1} first.\n" + "That's what you need to do."); ALIGNED(4) const char gUnknown_80DE280[] = _( " Okeydoke!\n" "Let me show you to the rescue site."); ALIGNED(4) const char gUnknown_80DE2B0[] = _( - " ...Uh{COMMA} no?\n" - "Doesn{APOSTROPHE}t look like you can go to the dungeon\n" + " ...Uh, no?\n" + "Doesn't look like you can go to the dungeon\n" "named in this {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" " Come see me about doing\n" "this rescue when you can actually go\n" - "to that dungeon{COMMA} all right?"); + "to that dungeon, all right?"); ALIGNED(4) const char gUnknown_80DE368[] = _( - " ...Uh{COMMA} no?\n" - "You{APOSTROPHE}ve blown this rescue mission too\n" - "often. Your friend{APOSTROPHE}s team is beyond help.{EXTRA_MSG}" - " I{APOSTROPHE}m sorry to say this{COMMA}\n" - "but you{APOSTROPHE}ll have to tell your friend that\n" + " ...Uh, no?\n" + "You've blown this rescue mission too\n" + "often. Your friend's team is beyond help.{EXTRA_MSG}" + " I'm sorry to say this,\n" + "but you'll have to tell your friend that\n" "your rescue attempts failed."); ALIGNED(4) const char gUnknown_80DE430[] = _( " Okeydoke.\n" - "I{APOSTROPHE}ll need you to choose the {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}\n" + "I'll need you to choose the {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}\n" "for you to go on a rescue mission."); ALIGNED(4) const char gUnknown_80DE48C[] = _( @@ -228,52 +228,52 @@ ALIGNED(4) const char gUnknown_80DE48C[] = _( ALIGNED(4) const char gUnknown_80DE4B8[] = _( " All righty. Choose\n" - "the {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1} you don{APOSTROPHE}t need."); + "the {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1} you don't need."); ALIGNED(4) const char gUnknown_80DE4F0[] = _( - " ...Uh{COMMA} no?\n" - "You don{APOSTROPHE}t have any {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}."); + " ...Uh, no?\n" + "You don't have any {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}."); ALIGNED(4) const char gUnknown_80DE524[] = _( - " If you want a reward{COMMA} {COLOR_1 RED}don{APOSTROPHE}t\n" + " If you want a reward, {COLOR_1 RED}don't\n" "delete an A-OK Mail{END_COLOR_TEXT_1} before getting a\n" "{COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} back for it.{EXTRA_MSG}" - " {COLOR_1 RED}Be careful{END_COLOR_TEXT_1} if you{APOSTROPHE}re going\n" + " {COLOR_1 RED}Be careful{END_COLOR_TEXT_1} if you're going\n" "to delete any {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" " Okeydoke.\n" "Choose an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}\n" - "you don{APOSTROPHE}t need anymore."); + "you don't need anymore."); ALIGNED(4) const char gUnknown_80DE614[] = _( - " ...Uh{COMMA} no?\n" - "You don{APOSTROPHE}t have any {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}."); + " ...Uh, no?\n" + "You don't have any {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}."); ALIGNED(4) const char gUnknown_80DE648[] = _( - " Uh{COMMA} OK.\n" - "So{COMMA} you want me to delete every piece\n" + " Uh, OK.\n" + "So, you want me to delete every piece\n" "of mail that you have."); ALIGNED(4) const char gUnknown_80DE694[] = _( - " ...Uh{COMMA} no?\n" - "You don{APOSTROPHE}t have a single piece of\n" + " ...Uh, no?\n" + "You don't have a single piece of\n" "mail on you!"); ALIGNED(4) const char gUnknown_80DE6D4[] = _( - " So{COMMA} delete all your {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}{COMMA}\n" - "{COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}{COMMA} and your {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}?\n" - "You{APOSTROPHE}re absolutely{COMMA} positively sure?"); + " So, delete all your {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1},\n" + "{COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}, and your {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}?\n" + "You're absolutely, positively sure?"); ALIGNED(4) const char gUnknown_80DE754[] = _( - " If I delete any mail{COMMA} it{APOSTROPHE}s\n" + " If I delete any mail, it's\n" "gone forever and ever. Bye-bye.\n" - "You{APOSTROPHE}re really{COMMA} really sure now?"); + "You're really, really sure now?"); ALIGNED(4) const char gUnknown_80DE7B8[] = _( - " OK{COMMA} then.\n" + " OK, then.\n" "Let me save your adventure now."); ALIGNED(4) const char gUnknown_80DE7E8[] = _( - " Okeydoke. That{APOSTROPHE}s all done."); + " Okeydoke. That's all done."); ALIGNED(4) const char gUnknown_80DE808[] = _( " Do you want to delete\n" @@ -281,7 +281,7 @@ ALIGNED(4) const char gUnknown_80DE808[] = _( ALIGNED(4) const char gUnknown_80DE830[] = _( " Okeydoke.\n" - "I{APOSTROPHE}ll delete {COLOR_1 LIGHT_BLUE}every piece of mail{END_COLOR_TEXT_1}."); + "I'll delete {COLOR_1 LIGHT_BLUE}every piece of mail{END_COLOR_TEXT_1}."); ALIGNED(4) const char gUnknown_80DE864[] = _( " Okeydoke.\n" @@ -289,7 +289,7 @@ ALIGNED(4) const char gUnknown_80DE864[] = _( " Let me save your adventure."); ALIGNED(4) const char gUnknown_80DE8B4[] = _( - " Well{COMMA} hello{COMMA} there!\n" + " Well, hello, there!\n" "This is the {COLOR_1 LIGHT_BLUE}Friend Rescue{END_COLOR_TEXT_1} counter.\n" "What can I help you with today?"); @@ -301,53 +301,53 @@ ALIGNED(4) const char gUnknown_80DE93C[] = _( " Come again anytime!"); ALIGNED(4) const char gWonderMailErrorText[] = _( - " ...Uh{COMMA} no?\n" - "Something{APOSTROPHE}s not working right here..."); + " ...Uh, no?\n" + "Something's not working right here..."); ALIGNED(4) const char gWonderMailNumGBAsText[] = _( - " ...Uh{COMMA} no?\n" - "The number of GBA systems isn{APOSTROPHE}t right.\n" - "You{APOSTROPHE}d better try this again from the top."); + " ...Uh, no?\n" + "The number of GBA systems isn't right.\n" + "You'd better try this again from the top."); ALIGNED(4) const char gWonderMailWrongModeText[] = _( - " ...Uh{COMMA} no? You{APOSTROPHE}re not in the\n" + " ...Uh, no? You're not in the\n" "same mode as your friend.\n" - "You{APOSTROPHE}d better try this again from the top."); + "You'd better try this again from the top."); ALIGNED(4) const char gWonderMailStorageFullText[] = _( - " ...Uh{COMMA} no?\n" + " ...Uh, no?\n" "Your storage space is stuffed full.\n" - "You{APOSTROPHE}d better make room and try again."); + "You'd better make room and try again."); ALIGNED(4) const char gWonderMailDuplicateText[] = _( - " ...Uh{COMMA} no? It looks like\n" + " ...Uh, no? It looks like\n" "you received this mail before.\n" - "You can{APOSTROPHE}t get the same mail twice. "); + "You can't get the same mail twice. "); ALIGNED(4) const char gWonderMailNotEligibleReceiveText[] = _( - " ...Uh{COMMA} no?\n" - "You{APOSTROPHE}re not eligible to receive this mail."); + " ...Uh, no?\n" + "You're not eligible to receive this mail."); ALIGNED(4) const char gWonderMailNoRoomText[] = _( - " ...Uh{COMMA} no?\n" - "There{APOSTROPHE}s no room for you to \n" + " ...Uh, no?\n" + "There's no room for you to \n" "receive any more mail.{EXTRA_MSG}" - " You{APOSTROPHE}d better delete some\n" + " You'd better delete some\n" "mail and make room before you come see\n" "me again about receiving new mail."); ALIGNED(4) const char gWonderMailFriendErrorText[] = _( - " ...Uh{COMMA} no? Looks like your\n" - "friend didn{APOSTROPHE}t do what needed doing.\n" - "You{APOSTROPHE}d better do this again from the top."); + " ...Uh, no? Looks like your\n" + "friend didn't do what needed doing.\n" + "You'd better do this again from the top."); ALIGNED(4) const char gWonderMailPasswordIncorrectText[] = _( - " ...Uh{COMMA} no?\n" + " ...Uh, no?\n" "This here password looks wrong.\n" "Do you want to try that again?"); ALIGNED(4) const char gWonderMailSOSPasswordIncorrectText[] = _( - " ...Uh{COMMA} no? This password{APOSTROPHE}s\n" + " ...Uh, no? This password's\n" "not for any {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}."); ALIGNED(4) const char gWonderMailAOKMailReceivedText[] = _( diff --git a/src/data/wonder_mail_main_menu.h b/src/data/wonder_mail_main_menu.h index 5cf3e723c..0e017a948 100644 --- a/src/data/wonder_mail_main_menu.h +++ b/src/data/wonder_mail_main_menu.h @@ -46,7 +46,7 @@ ALIGNED(4) const char gUnknown_80E79E4[] = "The sender and receiver appear to be ALIGNED(4) const char gUnknown_80E7A48[] = _("There is no response from your friend.\n" "Please make sure the sender and receiver\n" - "are ready{COMMA} then redo this from the start."); + "are ready, then redo this from the start."); ALIGNED(4) const char gUnknown_80E7AC4[] = "What would you like to do?"; @@ -66,12 +66,12 @@ ALIGNED(4) const char gUnknown_80E7B88[] = _("The received {COLOR_1 LIGHT_BLUE}W ALIGNED(4) const char gUnknown_80E7BC8[] = _("The {COLOR_1 LIGHT_BLUE}Wonder Mail{END_COLOR_TEXT_1} was refused."); ALIGNED(4) const char gUnknown_80E7BEC[] = _("Connect a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}.\n" - "When you and your friend are ready{COMMA}\n" + "When you and your friend are ready,\n" "you may communicate. "); ALIGNED(4) const char gUnknown_80E7C48[] = _("{CENTER_ALIGN}In communication...\n" "{CENTER_ALIGN}Please wait with the power on.\n" - "{CENTER_ALIGN}To cancel{COMMA} press {B_BUTTON}."); + "{CENTER_ALIGN}To cancel, press {B_BUTTON}."); ALIGNED(4) const char gUnknown_80E7C98[] = _("Please enter the\n" "{COLOR_1 LIGHT_BLUE}Wonder Mail password{END_COLOR_TEXT_1}."); diff --git a/src/friend_rescue.c b/src/friend_rescue.c index a6fa8840b..5ac108e8d 100644 --- a/src/friend_rescue.c +++ b/src/friend_rescue.c @@ -46,7 +46,7 @@ ALIGNED(4) const u8 gUnknown_80E2610[] = _( ALIGNED(4) const u8 gUnknown_80E2640[] = _( "How would you like to receive your\n" - "friend{APOSTROPHE}s {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}?"); + "friend's {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}?"); ALIGNED(4) const u8 gUnknown_80E2680[] = _( "How would you like to send your\n" @@ -54,7 +54,7 @@ ALIGNED(4) const u8 gUnknown_80E2680[] = _( ALIGNED(4) const u8 gUnknown_80E26B0[] = _( "How would you like to receive your\n" - "friend{APOSTROPHE}s {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}?"); + "friend's {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}?"); ALIGNED(4) const u8 gUnknown_80E26F0[] = _( "How would you like to send your\n" @@ -62,14 +62,14 @@ ALIGNED(4) const u8 gUnknown_80E26F0[] = _( ALIGNED(4) const u8 gUnknown_80E2728[] = _( "How would you like to receive your\n" - "friend{APOSTROPHE}s {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}?"); + "friend's {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}?"); ALIGNED(4) const u8 gUnknown_80E276C[] = _( "The GBA Game Pak does not have\n" "an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} on it."); ALIGNED(4) const u8 gUnknown_80E27A4[] = _( - "If you accept an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}{COMMA} the\n" + "If you accept an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}, the\n" "{COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} you received before\n" "will be overwritten. Is that OK?"); @@ -91,7 +91,7 @@ ALIGNED(4) const u8 gUnknown_80E28D8[] = _( "Resume your game using {COLOR_1 LIGHT_BLUE}Revive Team{END_COLOR_TEXT_1}."); ALIGNED(4) const u8 gUnknown_80E2904[] = _( - "Your friend{APOSTROPHE}s Mailbox is full.\n" + "Your friend's Mailbox is full.\n" "This piece of mail cannot be sent.\n" "The recipient must delete old mail."); @@ -125,7 +125,7 @@ ALIGNED(4) const u8 gUnknown_80E2AA8[] = _( ALIGNED(4) const u8 gUnknown_80E2AE4[] = _( "Please connect a {COLOR_1 LIGHT_BLUE}Link Cable{END_COLOR_TEXT_1}.\n" -"When your friend{APOSTROPHE}s side is ready{COMMA} you may\n" +"When your friend's side is ready, you may\n" "communicate and exchange data."); ALIGNED(4) const u8 gUnknown_80E2B54[] = _( @@ -133,7 +133,7 @@ ALIGNED(4) const u8 gUnknown_80E2B54[] = _( "Your adventure will be saved."); ALIGNED(4) const u8 gUnknown_80E2B90[] = _( -"Using a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}{COMMA}\n" +"Using a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1},\n" "you can send a {COLOR_1 LIGHT_BLUE}helper Pokémon{END_COLOR_TEXT_1} to\n" "a friend."); diff --git a/src/mission_reward.c b/src/mission_reward.c index 4c9e5c7c2..c357018bd 100644 --- a/src/mission_reward.c +++ b/src/mission_reward.c @@ -66,7 +66,7 @@ const UnkTextStruct2 gUnknown_80E041C = { }; ALIGNED(4) const u8 gUnknown_80E0434[] = _( - " Here{APOSTROPHE}s your reward!\n" + " Here's your reward!\n" "{COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}!"); ALIGNED(4) const u8 gUnknown_80E045C[] = _( @@ -74,22 +74,22 @@ ALIGNED(4) const u8 gUnknown_80E045C[] = _( "{CENTER_ALIGN}{COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}."); ALIGNED(4) const u8 gUnknown_80E0484[] = _( - "{CENTER_ALIGN}{COLOR_1 YELLOW_5}{ARG_POKEMON_0}{END_COLOR_TEXT_1}{APOSTROPHE}s team received\n" + "{CENTER_ALIGN}{COLOR_1 YELLOW_5}{ARG_POKEMON_0}{END_COLOR_TEXT_1}'s team received\n" "{CENTER_ALIGN}{COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}."); ALIGNED(4) const u8 gUnknown_80E04B4[]= _( - " As your reward{COMMA} you can\n" + " As your reward, you can\n" "now go to the Friend Area\n" "{COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}!"); ALIGNED(4) const u8 gUnknown_80E04F4[] = _( - "{CENTER_ALIGN}...Oh{COMMA} wait{COMMA} sorry.{EXTRA_MSG}" + "{CENTER_ALIGN}...Oh, wait, sorry.{EXTRA_MSG}" "{CENTER_ALIGN}You already have the \n" "{CENTER_ALIGN}{COLOR_1 GREEN}{ARG_FRIEND_AREA} Friend Area{END_COLOR_TEXT_1}.{EXTRA_MSG}" - "{CENTER_ALIGN}I{APOSTROPHE}m sorry that my reward is\n" + "{CENTER_ALIGN}I'm sorry that my reward is\n" "{CENTER_ALIGN}something you already have.{EXTRA_MSG}" - "{CENTER_ALIGN}In its place{COMMA} {COLOR_1 YELLOW_5}{ARG_POKEMON_0}{END_COLOR_TEXT_1}{COMMA}\n" - "{CENTER_ALIGN}you can have {COLOR_1 LIGHT_BLUE}1{COMMA}000{END_COLOR_TEXT_1} {POKE}."); + "{CENTER_ALIGN}In its place, {COLOR_1 YELLOW_5}{ARG_POKEMON_0}{END_COLOR_TEXT_1},\n" + "{CENTER_ALIGN}you can have {COLOR_1 LIGHT_BLUE}1,000{END_COLOR_TEXT_1} {POKE}."); ALIGNED(4) const u8 gUnknown_80E05C0[] = _( "{CENTER_ALIGN}{COLOR_1 YELLOW_5}{ARG_POKEMON_0}{END_COLOR_TEXT_1} gained access\n" @@ -97,12 +97,12 @@ ALIGNED(4) const u8 gUnknown_80E05C0[] = _( "{CENTER_ALIGN}{COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}."); ALIGNED(4) const u8 gUnknown_80E05FC[] = _( - "{CENTER_ALIGN}{COLOR_1 YELLOW_5}{ARG_POKEMON_0}{END_COLOR_TEXT_1}{APOSTROPHE}s team gained access\n" + "{CENTER_ALIGN}{COLOR_1 YELLOW_5}{ARG_POKEMON_0}{END_COLOR_TEXT_1}'s team gained access\n" "{CENTER_ALIGN}to the Friend Area\n" "{CENTER_ALIGN}{COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}."); ALIGNED(4) const u8 gUnknown_80E0640[] = _( - " Here{APOSTROPHE}s your reward!\n" + " Here's your reward!\n" "The promised {COLOR_1 GREEN}{ARG_MOVE_ITEM_1}{END_COLOR_TEXT_1}!"); ALIGNED(4) const u8 gUnknown_80E0670[] = _( diff --git a/src/save_menu.c b/src/save_menu.c index 4c7601cf6..afcd78111 100644 --- a/src/save_menu.c +++ b/src/save_menu.c @@ -42,7 +42,7 @@ const MenuItem gSavingAdventureMenuItems[] = { {sUnknown_80E6F70, 4}, {NULL, 2} }; -ALIGNED(4) const u8 sUnknown_80E6F70[] = _("{CENTER_ALIGN}Don{APOSTROPHE}t turn off the power."); +ALIGNED(4) const u8 sUnknown_80E6F70[] = _("{CENTER_ALIGN}Don't turn off the power."); ALIGNED(4) const u8 sUnknown_80E6F90[] = _("{CENTER_ALIGN}Saving your adventure!"); ALIGNED(4) const u8 sUnknown_80E6FAC[] = _("{CENTER_ALIGN}{COLOR_1 RED}Beware!{END_COLOR_TEXT_1} "); diff --git a/src/thank_you_wonder_mail.c b/src/thank_you_wonder_mail.c index 8b3401cc1..e7c9a9312 100644 --- a/src/thank_you_wonder_mail.c +++ b/src/thank_you_wonder_mail.c @@ -160,7 +160,7 @@ const MenuItem gUnknown_80DEE7C[] = {}, }; -ALIGNED(4) static const u8 DontSendItem_Text[] = _("Don{APOSTROPHE}t Send Item"); +ALIGNED(4) static const u8 DontSendItem_Text[] = _("Don't Send Item"); ALIGNED(4) static const u8 SendItem_Text[] = "Send Item"; const MenuItem gUnknown_80DEEBC[] = diff --git a/src/wonder_mail_2.c b/src/wonder_mail_2.c index 19441ba28..3c70cdebe 100644 --- a/src/wonder_mail_2.c +++ b/src/wonder_mail_2.c @@ -62,10 +62,10 @@ extern u32 GetDungeonTeamRankPts(DungeonLocation *, u32); ALIGNED(4) const char gRescueTeamNamePlaceholder[] = "????"; ALIGNED(4) const char gUnknown_80DF9F8[] = _( - " Oh{COMMA} hello!\n" - "Your rescue mission went well{COMMA} didn{APOSTROPHE}t it?\n" - "I wouldn{APOSTROPHE}t expect any less{COMMA} {COLOR_1 LIGHT_BLUE}%s{END_COLOR_TEXT_1}!{EXTRA_MSG}" - " Well{COMMA} well!\n" + " Oh, hello!\n" + "Your rescue mission went well, didn't it?\n" + "I wouldn't expect any less, {COLOR_1 LIGHT_BLUE}%s{END_COLOR_TEXT_1}!{EXTRA_MSG}" + " Well, well!\n" "Here is your reward from the Pokémon\n" "Rescue Organization!"); @@ -73,12 +73,12 @@ ALIGNED(4) const char gUnknown_80DFAA8[] = _( " I hope you will keep on\n" "rescuing your friends in\n" "dire straits.{EXTRA_MSG}" - " And now{COMMA} I must save\n" + " And now, I must save\n" "your adventure."); ALIGNED(4) const char gUnknown_80DFB14[] = _( - " Oh{COMMA} yes{COMMA} that{APOSTROPHE}s right.\n" - "Please don{APOSTROPHE}t forget to send an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}\n" + " Oh, yes, that's right.\n" + "Please don't forget to send an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}\n" "to the friend you just rescued.{EXTRA_MSG}" " Please give me a shout if\n" "you would like to send {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}."); diff --git a/src/wonder_mail_4.c b/src/wonder_mail_4.c index 14a8b9371..de7641b24 100644 --- a/src/wonder_mail_4.c +++ b/src/wonder_mail_4.c @@ -66,7 +66,7 @@ const u8 * const gUnknown_80E086C[MAX_WONDER_MAIL_TYPES] = OkdRescue }; -ALIGNED(4) const u8 OkdRescue[] = _("OK{APOSTROPHE}d Rescues"); +ALIGNED(4) const u8 OkdRescue[] = _("OK'd Rescues"); ALIGNED(4) const u8 CompletedJobs[] = "Completed Jobs"; ALIGNED(4) const u8 ThanksList[] = "Thanks List"; ALIGNED(4) const u8 AOKMail[] = "A-OK Mail"; diff --git a/src/wonder_mail_6.c b/src/wonder_mail_6.c index 542238ead..c96ce33a4 100644 --- a/src/wonder_mail_6.c +++ b/src/wonder_mail_6.c @@ -81,12 +81,12 @@ const UnkTextStruct2 gUnknown_80E09C0 = { }; ALIGNED(4) const u8 gUnknown_80E09D8[] = _( - " ...Uh{COMMA} no?\n" - "You don{APOSTROPHE}t have any {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}."); + " ...Uh, no?\n" + "You don't have any {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}."); ALIGNED(4) const u8 gUnknown_80E0A0C[] = _( - " ...Uh{COMMA} no?\n" - "You don{APOSTROPHE}t have any {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}."); + " ...Uh, no?\n" + "You don't have any {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}."); static void sub_8031300(void); static void HandleWonderMail6MainMenu(void); @@ -127,11 +127,11 @@ bool8 sub_8030F58(u32 wonderMailType) switch(wonderMailType) { case WONDER_MAIL_TYPE_SOS_1: - // "You don{APOSTROPHE}t have any {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}.\0" + // "You don't have any {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}.\0" xxx_info_box_80141B4(gUnknown_80E09D8,0,&gUnknown_203B328->faceFile,0x101); break; case WONDER_MAIL_TYPE_AOK: - // "You don{APOSTROPHE}t have any {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.\0" + // "You don't have any {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.\0" xxx_info_box_80141B4(gUnknown_80E0A0C,0,&gUnknown_203B328->faceFile,0x101); break; } From fa2d34f2d9ed373a8da51e543ca105ce3222b2c8 Mon Sep 17 00:00:00 2001 From: Mateon1 Date: Tue, 1 Oct 2024 12:50:01 +0200 Subject: [PATCH 05/10] Tutorial renames --- asm/code_8045A00.s | 4 +-- asm/code_80521D0.s | 50 ++++++++++++++++++------------------- data/data_80F59C8.s | 36 +++++++++++++------------- include/exclusive_pokemon.h | 4 +-- src/exclusive_pokemon.c | 8 +++--- tmp/renames.sed | 13 ++++++++++ 6 files changed, 64 insertions(+), 51 deletions(-) create mode 100644 tmp/renames.sed diff --git a/asm/code_8045A00.s b/asm/code_8045A00.s index bc6170a26..6c935b712 100644 --- a/asm/code_8045A00.s +++ b/asm/code_8045A00.s @@ -291,7 +291,7 @@ _08045FE8: bl SendMessage _08045FF2: ldrb r0, [r5, 0x2] - bl sub_8052EC0 + bl HandleOnPickupTutorial b _080460E0 .align 2, 0 _08045FFC: .4byte gPickedUpItemToolbox @@ -397,7 +397,7 @@ _080460C0: bl SendMessage _080460DA: ldrb r0, [r5, 0x2] - bl sub_8052EC0 + bl HandleOnPickupTutorial _080460E0: add sp, 0xB8 pop {r3-r5} diff --git a/asm/code_80521D0.s b/asm/code_80521D0.s index a2e6bb397..535565cc8 100644 --- a/asm/code_80521D0.s +++ b/asm/code_80521D0.s @@ -1277,21 +1277,21 @@ sub_8052DD0: ldr r6, _08052E68 ldr r4, [r6] adds r0, r4, 0 - bl sub_80981A0 + bl GetTutorialFlag lsls r0, 24 cmp r0, 0 beq _08052E46 ldr r6, _08052E6C ldr r4, [r6] adds r0, r4, 0 - bl sub_80981A0 + bl GetTutorialFlag lsls r0, 24 cmp r0, 0 beq _08052E46 ldr r6, _08052E70 ldr r4, [r6] adds r0, r4, 0 - bl sub_80981A0 + bl GetTutorialFlag lsls r0, 24 cmp r0, 0 beq _08052E46 @@ -1305,27 +1305,27 @@ sub_8052DD0: ldr r6, _08052E7C ldr r4, [r6] adds r0, r4, 0 - bl sub_80981A0 + bl GetTutorialFlag lsls r0, 24 cmp r0, 0 beq _08052E46 ldr r6, _08052E80 ldr r4, [r6] adds r0, r4, 0 - bl sub_80981A0 + bl GetTutorialFlag lsls r0, 24 cmp r0, 0 beq _08052E46 ldr r6, _08052E84 ldr r4, [r6] adds r0, r4, 0 - bl sub_80981A0 + bl GetTutorialFlag lsls r0, 24 cmp r0, 0 bne _08052E88 _08052E46: adds r0, r4, 0 - bl sub_8098170 + bl SetTutorialFlag bl sub_8083E28 ldr r4, [r6, 0x4] movs r0, 0 @@ -1344,17 +1344,17 @@ _08052E74: .4byte gDungeon _08052E78: .4byte 0x00000644 _08052E7C: .4byte gUnknown_80FF13C _08052E80: .4byte gUnknown_80FF1B4 -_08052E84: .4byte gUnknown_80FF22C +_08052E84: .4byte gMovementTutorial _08052E88: ldr r6, _08052EBC ldr r4, [r6] adds r0, r4, 0 - bl sub_80981A0 + bl GetTutorialFlag lsls r0, 24 cmp r0, 0 bne _08052EB6 adds r0, r4, 0 - bl sub_8098170 + bl SetTutorialFlag bl sub_8083E28 ldr r4, [r6, 0x4] movs r0, 0 @@ -1369,11 +1369,11 @@ _08052EB6: pop {r0} bx r0 .align 2, 0 -_08052EBC: .4byte gUnknown_80FF290 +_08052EBC: .4byte gHungerTutorial thumb_func_end sub_8052DD0 - thumb_func_start sub_8052EC0 -sub_8052EC0: + thumb_func_start HandleOnPickupTutorial +HandleOnPickupTutorial: push {r4,r5,lr} lsls r0, 24 lsrs r4, r0, 24 @@ -1387,28 +1387,28 @@ sub_8052EC0: ldr r5, _08052EDC b _08052F22 .align 2, 0 -_08052EDC: .4byte gUnknown_80FF310 +_08052EDC: .4byte gFoodTutorial _08052EE0: cmp r4, 0x37 bne _08052EEC ldr r5, _08052EE8 b _08052F22 .align 2, 0 -_08052EE8: .4byte gUnknown_80FF394 +_08052EE8: .4byte gOranTutorial _08052EEC: cmp r4, 0x43 bne _08052EF8 ldr r5, _08052EF4 b _08052F22 .align 2, 0 -_08052EF4: .4byte gUnknown_80FF3E8 +_08052EF4: .4byte gCheriTutorial _08052EF8: cmp r4, 0x48 bne _08052F04 ldr r5, _08052F00 b _08052F22 .align 2, 0 -_08052F00: .4byte gUnknown_80FF440 +_08052F00: .4byte gBlastSeedTutorial _08052F04: cmp r4, 0x7 bne _08052F10 @@ -1422,7 +1422,7 @@ _08052F10: ldr r5, _08052F18 b _08052F22 .align 2, 0 -_08052F18: .4byte gUnknown_80FF518 +_08052F18: .4byte gPechaTutorial _08052F1C: cmp r4, 0x45 bne _08052F4C @@ -1430,12 +1430,12 @@ _08052F1C: _08052F22: ldr r4, [r5] adds r0, r4, 0 - bl sub_80981A0 + bl GetTutorialFlag lsls r0, 24 cmp r0, 0 bne _08052F74 adds r0, r4, 0 - bl sub_8098170 + bl SetTutorialFlag bl sub_8083E28 ldr r1, [r5, 0x4] movs r0, 0 @@ -1443,19 +1443,19 @@ _08052F22: bl PrintFieldMessage b _08052F74 .align 2, 0 -_08052F48: .4byte gUnknown_80FF57C +_08052F48: .4byte gSleepSeedTutorial _08052F4C: cmp r5, 0x69 bne _08052F74 ldr r5, _08052F7C ldr r4, [r5] adds r0, r4, 0 - bl sub_80981A0 + bl GetTutorialFlag lsls r0, 24 cmp r0, 0 bne _08052F74 adds r0, r4, 0 - bl sub_8098170 + bl SetTutorialFlag bl sub_8083E28 ldr r1, [r5, 0x4] movs r0, 0 @@ -1466,8 +1466,8 @@ _08052F74: pop {r0} bx r0 .align 2, 0 -_08052F7C: .4byte gUnknown_80FF5E8 - thumb_func_end sub_8052EC0 +_08052F7C: .4byte gMoneyTutorial + thumb_func_end HandleOnPickupTutorial thumb_func_start sub_8052F80 sub_8052F80: diff --git a/data/data_80F59C8.s b/data/data_80F59C8.s index a51af4c4f..9e9ff2346 100644 --- a/data/data_80F59C8.s +++ b/data/data_80F59C8.s @@ -9605,8 +9605,8 @@ gUnknown_80FF1BC: @ 80FF1BC .string "Cooperation with partners is the key!\0" .align 2, 0 -.global gUnknown_80FF22C -gUnknown_80FF22C: @ 80FF22C +.global gMovementTutorial +gMovementTutorial: @ 80FF22C @ replacing .incbin "baserom.gba", 0xFF22C, 0x64 .byte 0x0e, 0x00, 0x00, 0x00 .4byte gUnknown_80FF234 @@ -9618,8 +9618,8 @@ gUnknown_80FF234: @ 80FF234 .string "to move only diagonally.\0" .align 2, 0 -.global gUnknown_80FF290 -gUnknown_80FF290: @ 80FF290 +.global gHungerTutorial +gHungerTutorial: @ 80FF290 @ replacing .incbin "baserom.gba", 0xFF290, 0x80 .byte 0x0f, 0x00, 0x00, 0x00 .4byte gUnknown_80FF298 @@ -9631,8 +9631,8 @@ gUnknown_80FF298: @ 80FF298 .string "fainting, so check your Belly in the menu.\0" .align 2, 0 -.global gUnknown_80FF310 -gUnknown_80FF310: @ 80FF310 +.global gFoodTutorial +gFoodTutorial: @ 80FF310 @ replacing .incbin "baserom.gba", 0xFF310, 0x84 .byte 0x03, 0x00, 0x00, 0x00 .4byte gUnknown_80FF318 @@ -9644,8 +9644,8 @@ gUnknown_80FF318: @ 80FF318 .string "and eat one before your Belly gets empty.\0" .align 2, 0 -.global gUnknown_80FF394 -gUnknown_80FF394: @ 80FF394 +.global gOranTutorial +gOranTutorial: @ 80FF394 @ replacing .incbin "baserom.gba", 0xFF394, 0x54 .byte 0x04, 0x00, 0x00, 0x00 .4byte gUnknown_80FF39C @@ -9657,8 +9657,8 @@ gUnknown_80FF39C: @ 80FF39C .string "select it under Items.\0" .align 2, 0 -.global gUnknown_80FF3E8 -gUnknown_80FF3E8: @ 80FF3E8 +.global gCheriTutorial +gCheriTutorial: @ 80FF3E8 @ replacing .incbin "baserom.gba", 0xFF3E8, 0x58 .byte 0x05, 0x00, 0x00, 0x00 .4byte gUnknown_80FF3F0 @@ -9670,8 +9670,8 @@ gUnknown_80FF3F0: @ 80FF3F0 .string "select it under Items.\0" .align 2, 0 -.global gUnknown_80FF440 -gUnknown_80FF440: @ 80FF440 +.global gBlastSeedTutorial +gBlastSeedTutorial: @ 80FF440 @ replacing .incbin "baserom.gba", 0xFF440, 0x60 .byte 0x06, 0x00, 0x00, 0x00 .4byte gUnknown_80FF448 @@ -9696,8 +9696,8 @@ gUnknown_80FF4A8: @ 80FF4A8 .string "Hold {L_BUTTON} then press {R_BUTTON} to throw them.\0" .align 2, 0 -.global gUnknown_80FF518 -gUnknown_80FF518: @ 80FF518 +.global gPechaTutorial +gPechaTutorial: @ 80FF518 @ replacing .incbin "baserom.gba", 0xFF518, 0x64 .byte 0x09, 0x00, 0x00, 0x00 .4byte gUnknown_80FF520 @@ -9709,8 +9709,8 @@ gUnknown_80FF520: @ 80FF520 .string "select it under Items.\0" .align 2, 0 -.global gUnknown_80FF57C -gUnknown_80FF57C: @ 80FF57C +.global gSleepSeedTutorial +gSleepSeedTutorial: @ 80FF57C @ replacing .incbin "baserom.gba", 0xFF57C, 0x6C .byte 0x0a, 0x00, 0x00, 0x00 .4byte gUnknown_80FF584 @@ -9722,8 +9722,8 @@ gUnknown_80FF584: @ 80FF584 .string "Eating it will put you to sleep!\0" .align 2, 0 -.global gUnknown_80FF5E8 -gUnknown_80FF5E8: @ 80FF5E8 +.global gMoneyTutorial +gMoneyTutorial: @ 80FF5E8 @ replacing .incbin "baserom.gba", 0xFF5E8, 0x8C .byte 0x0b, 0x00, 0x00, 0x00 .4byte gUnknown_80FF5F0 diff --git a/include/exclusive_pokemon.h b/include/exclusive_pokemon.h index 14d00b945..02e038308 100644 --- a/include/exclusive_pokemon.h +++ b/include/exclusive_pokemon.h @@ -53,8 +53,8 @@ u32 sub_80980A4(void); void sub_80980B4(s16 pokeID); bool8 sub_8098100(u8 param_1); bool8 sub_8098134(s16 pokeID); -void sub_8098170(s32 param_1); -bool32 sub_80981A0(s32 param_1); +void SetTutorialFlag(s32 param_1); +bool32 GetTutorialFlag(s32 param_1); bool8 IsExclusivePokemonUnlocked(s16 pokeID); void UnlockExclusivePokemon(s16 pokeID); void WriteExclusivePokemon(struct unkStruct_8094924 *r0); diff --git a/src/exclusive_pokemon.c b/src/exclusive_pokemon.c index caae7613f..00388e751 100644 --- a/src/exclusive_pokemon.c +++ b/src/exclusive_pokemon.c @@ -163,7 +163,7 @@ bool8 sub_8098134(s16 pokeID) return ((ptr->unk4[(index >> 5)] & (1 << (s16)(pokeID_s32_1 - ((index >> 5) * 0x20)))) != 0) ? TRUE : FALSE; } -void sub_8098170(s32 param_1) +void SetTutorialFlag(s32 param_1) { s32 index; struct ExclusivePokemonData *ptr; @@ -179,7 +179,7 @@ void sub_8098170(s32 param_1) ptr->unk54[(index >> 5)] |= 1 << (param_1 - ((index >> 5) * 0x20)); } -bool32 sub_80981A0(s32 param_1) +bool32 GetTutorialFlag(s32 param_1) { s32 index; bool32 flag; @@ -262,7 +262,7 @@ void WriteExclusivePokemon(struct unkStruct_8094924 *r0) } for(index = 0; index < 31; index++) { - stack_2 = sub_80981A0(index); + stack_2 = GetTutorialFlag(index); SaveIntegerBits(r0, &stack_2, 1); } for(index = 0; index < NUM_EXCLUSIVE_POKEMON; index++) @@ -301,7 +301,7 @@ void ReadExclusivePokemon(struct unkStruct_8094924 *r0) { RestoreIntegerBits(r0, &stack_2, 1); if(stack_2) - sub_8098170(index); + SetTutorialFlag(index); } for(index = 0; index < NUM_EXCLUSIVE_POKEMON; index++) { diff --git a/tmp/renames.sed b/tmp/renames.sed new file mode 100644 index 000000000..d1cd647a2 --- /dev/null +++ b/tmp/renames.sed @@ -0,0 +1,13 @@ +s/gUnknown_80FF22C/gMovementTutorial/g +s/gUnknown_80FF290/gHungerTutorial/g +s/gUnknown_80FF310/gFoodTutorial/g +s/gUnknown_80FF394/gOranTutorial/g +s/gUnknown_80FF3E8/gCheriTutorial/g +s/gUnknown_80FF440/gBlastSeedTutorial/g +s/gUnknown_80FF490/gGravelerockTutorial/g +s/gUnknown_80FF518/gPechaTutorial/g +s/gUnknown_80FF57C/gSleepSeedTutorial/g +s/gUnknown_80FF5E8/gMoneyTutorial/g +s/sub_8052EC0/HandleOnPickupTutorial/g +s/sub_80981A0/GetTutorialFlag/g +s/sub_8098170/SetTutorialFlag/g From 1cbc9547760c59bf159aa3d76183e61c298b9ff6 Mon Sep 17 00:00:00 2001 From: Mateon1 Date: Tue, 1 Oct 2024 13:15:32 +0200 Subject: [PATCH 06/10] Personality test cleanup --- include/personality_test1.h | 4 +- src/data/personality_test1.h | 394 +++++++++++++++++------------------ src/personality_test1.c | 8 +- 3 files changed, 202 insertions(+), 204 deletions(-) diff --git a/include/personality_test1.h b/include/personality_test1.h index d0d2a4b05..108a2d666 100644 --- a/include/personality_test1.h +++ b/include/personality_test1.h @@ -9,7 +9,7 @@ typedef struct PersonalityQuestion { /* 0x0 */ const u8 *question; /* 0x4 */ const MenuItem *answers; - /* 0x8 */ const u8 *effects; + /* 0x8 */ const u8 (*effects)[16]; } PersonalityQuestion; struct PersonalityTestTracker @@ -34,4 +34,4 @@ bool8 CreateTestTracker(void); void DeleteTestTracker(void); u8 HandleTestTrackerState(void); -#endif // GUARD_PERSONALITY_TEST1_H \ No newline at end of file +#endif // GUARD_PERSONALITY_TEST1_H diff --git a/src/data/personality_test1.h b/src/data/personality_test1.h index bae1a59dd..db143f302 100644 --- a/src/data/personality_test1.h +++ b/src/data/personality_test1.h @@ -1,8 +1,8 @@ -ALIGNED(4) static const u8 HardyQuest1Points[48] = +ALIGNED(4) static const u8 HardyQuest1Points[3][16] = { - 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [HARDY] = 0x02, }, + { [RELAXED] = 0x02, }, + { [IMPISH] = 0x02, } }; static const MenuItem HardyQuest1Answers[] = @@ -19,10 +19,10 @@ ALIGNED(4) static const u8 HardyQuest1Question[] = _( "A test is coming up.\n" "How do you study for it?"); -ALIGNED(4) static const u8 HardyQuest2Points[32] = +ALIGNED(4) static const u8 HardyQuest2Points[2][16] = { - 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 + { [HARDY] = 0x02, [DOCILE] = 0x01, }, + { [QUIRKY] = 0x02, } }; static const MenuItem HardyQuest2Answers[] = @@ -36,10 +36,10 @@ static const u8 HardyQuest2Question[]; static const PersonalityQuestion HardyQuest2 = { HardyQuest2Question, HardyQuest2Answers, HardyQuest2Points }; ALIGNED(4) static const u8 HardyQuest2Question[] = _("Can you focus on something you like?"); -ALIGNED(4) static const u8 HardyQuest3Points[32] = +ALIGNED(4) static const u8 HardyQuest3Points[2][16] = { - 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 + { [HARDY] = 0x02, [BRAVE] = 0x02, }, + { [SASSY] = 0x02, [QUIRKY] = 0x02, } }; static const MenuItem HardyQuest3Answers[] = @@ -55,11 +55,11 @@ ALIGNED(4) static const u8 HardyQuest3Question[] = _( "When the going gets tough, do you get\n" "going?"); -ALIGNED(4) static const u8 HardyQuest4Points[48] = +ALIGNED(4) static const u8 HardyQuest4Points[3][16] = { - 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 + { [HARDY] = 0x02, }, + { [CALM] = 0x02, }, + { [QUIRKY] = 0x02, } }; static const MenuItem HardyQuest4Answers[] = @@ -76,10 +76,10 @@ ALIGNED(4) static const u8 HardyQuest4Question[] = _( "There is a bucket. If you put\n" "water in it, how high will you fill it?"); -ALIGNED(4) static const u8 DocileQuest1Points[32] = +ALIGNED(4) static const u8 DocileQuest1Points[2][16] = { - 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [DOCILE] = 0x02, [NAIVE] = 0x01, }, + { [TIMID] = 0x02, [CALM] = 0x01, } }; static const MenuItem DocileQuest1Answers[] = @@ -95,10 +95,10 @@ ALIGNED(4) static const u8 DocileQuest1Question[] = _( "You are offered a choice of two gifts.\n" "Which one will you take?"); -ALIGNED(4) static const u8 DocileQuest2Points[32] = +ALIGNED(4) static const u8 DocileQuest2Points[2][16] = { - 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 + { [DOCILE] = 0x02, [HASTY] = 0x01, }, + { [NAIVE] = 0x02, [RELAXED] = 0x01, } }; static const MenuItem DocileQuest2Answers[] = @@ -114,11 +114,11 @@ ALIGNED(4) static const u8 DocileQuest2Question[] = _( "You broke a rotten egg in your room!\n" "What will you do?"); -ALIGNED(4) static const u8 DocileQuest3Points[48] = +ALIGNED(4) static const u8 DocileQuest3Points[3][16] = { - 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [DOCILE] = 0x02, }, + { [NAIVE] = 0x01, [LONELY] = 0x01, }, + { [SASSY] = 0x02, } }; static const u8 DocileQuest3_Regular[]; @@ -142,11 +142,11 @@ ALIGNED(4) static const u8 DocileQuest3Question[] = _( "forgotten.{WAIT_PRESS}\n" "How do you thank your friend?"); -ALIGNED(4) static const u8 DocileQuest4Points[48] = +ALIGNED(4) static const u8 DocileQuest4Points[3][16] = { - 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [DOCILE] = 0x02, }, + { [NAIVE] = 0x02, }, + { [IMPISH] = 0x02, } }; static const MenuItem DocileQuest4Answers[] = @@ -161,10 +161,10 @@ static const u8 DocileQuest4Question[]; static const PersonalityQuestion DocileQuest4 = { DocileQuest4Question, DocileQuest4Answers, DocileQuest4Points }; ALIGNED(4) static const u8 DocileQuest4Question[] = _("There is a wallet at the side of a road."); -ALIGNED(4) static const u8 BraveQuest1Points[32] = +ALIGNED(4) static const u8 BraveQuest1Points[2][16] = { - 0x00, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [BRAVE] = 0x03, [IMPISH] = 0x01, }, + { [DOCILE] = 0x02, [TIMID] = 0x01, } }; static const MenuItem BraveQuest1Answers[] = @@ -183,11 +183,11 @@ ALIGNED(4) static const u8 BraveQuest1Question[] = _( "And the bungee cord snaps!{EXTRA_MSG}" "Will you still try to make a jump anyway?"); -ALIGNED(4) static const u8 BraveQuest2APoints[48] = +ALIGNED(4) static const u8 BraveQuest2APoints[3][16] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 + { }, + { [TIMID] = 0x02, }, + { [RELAXED] = 0x02, } }; static const MenuItem BraveQuest2AAnswers[] = @@ -204,10 +204,10 @@ ALIGNED(4) static const u8 BraveQuest2AQuestion[] = _( "There is an alien invasion!\n" "What will you do?"); -ALIGNED(4) static const u8 BraveQuest2BPoints[32] = +ALIGNED(4) static const u8 BraveQuest2BPoints[2][16] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [SASSY] = 0x01, [RELAXED] = 0x01, }, + { [BRAVE] = 0x04, } }; static const MenuItem BraveQuest2BAnswers[] = @@ -226,10 +226,10 @@ ALIGNED(4) static const u8 BraveQuest2BQuestion[] = _( "RULE THE WORLD.”{WAIT_PRESS}\n" "What will you do?"); -ALIGNED(4) static const u8 BraveQuest3Points[32] = +ALIGNED(4) static const u8 BraveQuest3Points[2][16] = { - 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [HARDY] = 0x01, [BRAVE] = 0x02, }, + { [NAIVE] = 0x02, } }; static const MenuItem BraveQuest3Answers[] = @@ -245,12 +245,12 @@ ALIGNED(4) static const u8 BraveQuest3Question[] = _( "There is a scream from behind a door!{WAIT_PRESS}\n" "How will you react?"); -ALIGNED(4) static const u8 BraveQuest4Points[64] = +ALIGNED(4) static const u8 BraveQuest4Points[4][16] = { - 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [BRAVE] = 0x03, }, + { [HARDY] = 0x02, [BRAVE] = 0x02, }, + { [DOCILE] = 0x01, [TIMID] = 0x01, [RELAXED] = 0x01, }, + { [TIMID] = 0x02, } }; static const u8 BraveQuest4_Hesitation[]; @@ -277,10 +277,10 @@ ALIGNED(4) static const u8 BraveQuest4Question[] = _( "a busy city street!{WAIT_PRESS}\n" "What will you do?"); -ALIGNED(4) static const u8 JollyQuest1Points[32] = +ALIGNED(4) static const u8 JollyQuest1Points[2][16] = { - 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 + { [JOLLY] = 0x02, [NAIVE] = 0x01, }, + { [SASSY] = 0x01, [QUIRKY] = 0x01, } }; static const MenuItem JollyQuest1Answers[] = @@ -294,10 +294,10 @@ static const u8 JollyQuest1Question[]; static const PersonalityQuestion JollyQuest1 = { JollyQuest1Question, JollyQuest1Answers, JollyQuest1Points }; ALIGNED(4) static const u8 JollyQuest1Question[] = _("Are you a cheerful personality?"); -ALIGNED(4) static const u8 JollyQuest2Points[32] = +ALIGNED(4) static const u8 JollyQuest2Points[2][16] = { - 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [JOLLY] = 0x02, [LONELY] = 0x01, }, + { [TIMID] = 0x01, } }; static const MenuItem JollyQuest2Answers[] = @@ -313,11 +313,11 @@ ALIGNED(4) static const u8 JollyQuest2Question[] = _( "Do you like to noisily enjoy yourself\n" "with others?"); -ALIGNED(4) static const u8 JollyQuest3Points[48] = +ALIGNED(4) static const u8 JollyQuest3Points[3][16] = { - 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 + { [JOLLY] = 0x02, }, + { [CALM] = 0x02, }, + { [QUIRKY] = 0x02, } }; static const MenuItem JollyQuest3Answers[] = @@ -334,11 +334,11 @@ ALIGNED(4) static const u8 JollyQuest3Question[] = _( "It's the summer holidays!\n" "Where would you like to go?"); -ALIGNED(4) static const u8 JollyQuest4Points[48] = +ALIGNED(4) static const u8 JollyQuest4Points[3][16] = { - 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [JOLLY] = 0x03, }, + { [HARDY] = 0x02, }, + { [TIMID] = 0x02, } }; static const u8 JollyQuest4_Funny[]; @@ -364,10 +364,10 @@ ALIGNED(4) static const u8 JollyQuest4Question[] = _( "this fellow is saying.{WAIT_PRESS}\n" "How do you reply?"); -ALIGNED(4) static const u8 ImpishQuest1Points[32] = +ALIGNED(4) static const u8 ImpishQuest1Points[2][16] = { - 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [IMPISH] = 0x02, [LONELY] = 0x01, }, + { [CALM] = 0x02, } }; static const MenuItem ImpishQuest1Answers[] = @@ -381,10 +381,10 @@ static const u8 ImpishQuest1Question[]; static const PersonalityQuestion ImpishQuest1 = { ImpishQuest1Question, ImpishQuest1Answers, ImpishQuest1Points }; ALIGNED(4) static const u8 ImpishQuest1Question[] = _("Have you ever made a pitfall trap?"); -ALIGNED(4) static const u8 ImpishQuest2Points[32] = +ALIGNED(4) static const u8 ImpishQuest2Points[2][16] = { - 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 + { [IMPISH] = 0x02, }, + { [DOCILE] = 0x01, [RELAXED] = 0x01, } }; static const MenuItem ImpishQuest2Answers[] = @@ -398,10 +398,10 @@ static const u8 ImpishQuest2Question[]; static const PersonalityQuestion ImpishQuest2 = { ImpishQuest2Question, ImpishQuest2Answers, ImpishQuest2Points }; ALIGNED(4) static const u8 ImpishQuest2Question[] = _("Do you like pranks?"); -ALIGNED(4) static const u8 ImpishQuest3Points[32] = +ALIGNED(4) static const u8 ImpishQuest3Points[2][16] = { - 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 + { [HARDY] = 0x01, [IMPISH] = 0x02, }, + { [SASSY] = 0x01, [QUIRKY] = 0x02, } }; static const MenuItem ImpishQuest3Answers[] = @@ -415,11 +415,11 @@ static const u8 ImpishQuest3Question[]; static const PersonalityQuestion ImpishQuest3 = { ImpishQuest3Question, ImpishQuest3Answers, ImpishQuest3Points }; ALIGNED(4) static const u8 ImpishQuest3Question[] = _("Are there many things that you would like\nto do?"); -ALIGNED(4) static const u8 ImpishQuest4Points[48] = +ALIGNED(4) static const u8 ImpishQuest4Points[3][16] = { - 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [BRAVE] = 0x03, }, + { [TIMID] = 0x02, }, + { [IMPISH] = 0x02, } }; static const MenuItem ImpishQuest4Answers[] = @@ -436,11 +436,11 @@ ALIGNED(4) static const u8 ImpishQuest4Question[] = _( "Your friend is being bullied!\n" "What do you do?"); -ALIGNED(4) static const u8 NaiveQuest1Points[48] = +ALIGNED(4) static const u8 NaiveQuest1Points[3][16] = { - 0x00, 0x00, 0x00, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [IMPISH] = 0x01, [NAIVE] = 0x03, }, + { [JOLLY] = 0x02, }, + { [SASSY] = 0x02, } }; static const MenuItem NaiveQuest1Answers[] = @@ -455,10 +455,10 @@ static const u8 NaiveQuest1Question[]; static const PersonalityQuestion NaiveQuest1 = { NaiveQuest1Question, NaiveQuest1Answers, NaiveQuest1Points }; ALIGNED(4) static const u8 NaiveQuest1Question[] = _("Do you like groan-inducing puns?"); -ALIGNED(4) static const u8 NaiveQuest2Points[32] = +ALIGNED(4) static const u8 NaiveQuest2Points[2][16] = { - 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 + { [DOCILE] = 0x01, [NAIVE] = 0x02, }, + { [QUIRKY] = 0x02, } }; static const MenuItem NaiveQuest2Answers[] = @@ -472,10 +472,10 @@ static const u8 NaiveQuest2Question[]; static const PersonalityQuestion NaiveQuest2 = { NaiveQuest2Question, NaiveQuest2Answers, NaiveQuest2Points }; ALIGNED(4) static const u8 NaiveQuest2Question[] = _("Do you tend to laugh a lot?"); -ALIGNED(4) static const u8 NaiveQuest3Points[32] = +ALIGNED(4) static const u8 NaiveQuest3Points[2][16] = { - 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [JOLLY] = 0x01, [NAIVE] = 0x02, }, + { [CALM] = 0x02, } }; static const MenuItem NaiveQuest3Answers[] = @@ -489,10 +489,10 @@ static const u8 NaiveQuest3Question[]; static const PersonalityQuestion NaiveQuest3 = { NaiveQuest3Question, NaiveQuest3Answers, NaiveQuest3Points }; ALIGNED(4) static const u8 NaiveQuest3Question[] = _("Do others often call you childish?"); -ALIGNED(4) static const u8 NaiveQuest4Points[32] = +ALIGNED(4) static const u8 NaiveQuest4Points[2][16] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [NAIVE] = 0x02, }, + { [HASTY] = 0x02, } }; static const MenuItem NaiveQuest4Answers[] = @@ -508,11 +508,11 @@ ALIGNED(4) static const u8 NaiveQuest4Question[] = _( "Do you like to imagine things for your\n" "amusement?"); -ALIGNED(4) static const u8 TimidQuest1Points[48] = +ALIGNED(4) static const u8 TimidQuest1Points[3][16] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x02, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [TIMID] = 0x02, }, + { [HARDY] = 0x01, [CALM] = 0x02, }, + { [BRAVE] = 0x02, [IMPISH] = 0x01, [NAIVE] = 0x01, } }; static const MenuItem TimidQuest1Answers[] = @@ -529,13 +529,13 @@ ALIGNED(4) static const u8 TimidQuest1Question[] = _( "A human hand extends out of a toilet!\n" "What would you do?"); -ALIGNED(4) static const u8 TimidQuest2Points[80] = +ALIGNED(4) static const u8 TimidQuest2Points[5][16] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 + { [TIMID] = 0x02, }, + { [HASTY] = 0x02, }, + { [JOLLY] = 0x02, }, + { [SASSY] = 0x02, }, + { [LONELY] = 0x02, } }; static const MenuItem TimidQuest2Answers[] = @@ -555,11 +555,11 @@ ALIGNED(4) static const u8 TimidQuest2Question[] = _( "right hand.{WAIT_PRESS}\n" "Which digit did you grab?"); -ALIGNED(4) static const u8 TimidQuest3Points[48] = +ALIGNED(4) static const u8 TimidQuest3Points[3][16] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 + { [TIMID] = 0x02, }, + { [LONELY] = 0x02, }, + { [IMPISH] = 0x02, [QUIRKY] = 0x01, } }; static const MenuItem TimidQuest3Answers[] = @@ -577,11 +577,11 @@ ALIGNED(4) static const u8 TimidQuest3Question[] = _( "pitch-black room!{WAIT_PRESS}\n" "What do you do?"); -ALIGNED(4) static const u8 TimidQuest4Points[48] = +ALIGNED(4) static const u8 TimidQuest4Points[3][16] = { - 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [BRAVE] = 0x03, }, + { [TIMID] = 0x02, }, + { [SASSY] = 0x02, } }; static const MenuItem TimidQuest4Answers[] = @@ -596,11 +596,11 @@ static const u8 TimidQuest4Question[]; static const PersonalityQuestion TimidQuest4 = { TimidQuest4Question, TimidQuest4Answers, TimidQuest4Points }; ALIGNED(4) static const u8 TimidQuest4Question[] = _("Can you go into a haunted house?"); -ALIGNED(4) static const u8 HastyQuest1Points[48] = +ALIGNED(4) static const u8 HastyQuest1Points[3][16] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [HASTY] = 0x02, }, + { [CALM] = 0x02, }, + { [TIMID] = 0x02, } }; static const MenuItem HastyQuest1Answers[] = @@ -618,11 +618,11 @@ ALIGNED(4) static const u8 HastyQuest1Question[] = _( "But you don't know what's in it.{WAIT_PRESS}\n" "You're curious, so what do you do?"); -ALIGNED(4) static const u8 HastyQuest2Points[48] = +ALIGNED(4) static const u8 HastyQuest2Points[3][16] = { - 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 + { [JOLLY] = 0x02, [HASTY] = 0x01, }, + { [HARDY] = 0x01, [CALM] = 0x01, }, + { [BRAVE] = 0x02, [QUIRKY] = 0x02, } }; static const MenuItem HastyQuest2Answers[] = @@ -639,11 +639,11 @@ ALIGNED(4) static const u8 HastyQuest2Question[] = _( "You win a lottery!{WAIT_PRESS}\n" "What do you do with the money?"); -ALIGNED(4) static const u8 HastyQuest3Points[48] = +ALIGNED(4) static const u8 HastyQuest3Points[3][16] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [HASTY] = 0x02, }, + { [TIMID] = 0x02, }, + { [SASSY] = 0x02, } }; static const u8 HastyQuest3_Open[]; @@ -666,11 +666,11 @@ ALIGNED(4) static const u8 HastyQuest3Question[] = _( "You come across a treasure chest!\n" "What do you do?"); -ALIGNED(4) static const u8 HastyQuest4Points[48] = +ALIGNED(4) static const u8 HastyQuest4Points[3][16] = { - 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [DOCILE] = 0x01, [HASTY] = 0x02, }, + { [RELAXED] = 0x02, }, + { [HASTY] = 0x03, } }; static const MenuItem HastyQuest4Answers[] = @@ -688,11 +688,11 @@ ALIGNED(4) static const u8 HastyQuest4Question[] = _( "at the promised time.\n" "What do you do?"); -ALIGNED(4) static const u8 SassyQuest1Points[48] = +ALIGNED(4) static const u8 SassyQuest1Points[3][16] = { - 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [HARDY] = 0x02, }, + { [DOCILE] = 0x02, }, + { [SASSY] = 0x02, } }; static const MenuItem SassyQuest1Answers[] = @@ -709,10 +709,10 @@ ALIGNED(4) static const u8 SassyQuest1Question[] = _( "Your country's leader is in front of you.\n" "How do you speak to him or her?"); -ALIGNED(4) static const u8 SassyQuest2Points[32] = +ALIGNED(4) static const u8 SassyQuest2Points[2][16] = { - 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [IMPISH] = 0x01, [SASSY] = 0x02, }, + { [CALM] = 0x02, } }; static const MenuItem SassyQuest2Answers[] = @@ -726,10 +726,10 @@ static const u8 SassyQuest2Question[]; static const PersonalityQuestion SassyQuest2 = { SassyQuest2Question, SassyQuest2Answers, SassyQuest2Points }; ALIGNED(4) static const u8 SassyQuest2Question[] = _("Do others tell you to watch what you say?"); -ALIGNED(4) static const u8 SassyQuest3Points[32] = +ALIGNED(4) static const u8 SassyQuest3Points[2][16] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 + { [SASSY] = 0x02, }, + { [RELAXED] = 0x02, } }; static const MenuItem SassyQuest3Answers[] = @@ -745,10 +745,10 @@ ALIGNED(4) static const u8 SassyQuest3Question[] = _( "Do you think you are cool?\n" "Be honest."); -ALIGNED(4) static const u8 SassyQuest4Points[32] = +ALIGNED(4) static const u8 SassyQuest4Points[2][16] = { - 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 + { [DOCILE] = 0x02, [CALM] = 0x01, }, + { [SASSY] = 0x02, [QUIRKY] = 0x01, } }; static const MenuItem SassyQuest4Answers[] = @@ -764,10 +764,10 @@ ALIGNED(4) static const u8 SassyQuest4Question[] = _( "Can you sincerely thank someone when you\n" "feel grateful?"); -ALIGNED(4) static const u8 CalmQuest1Points[32] = +ALIGNED(4) static const u8 CalmQuest1Points[2][16] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [CALM] = 0x02, [LONELY] = 0x01, }, + { [HARDY] = 0x02, } }; static const MenuItem CalmQuest1Answers[] = @@ -783,10 +783,10 @@ ALIGNED(4) static const u8 CalmQuest1Question[] = _( "Do you occasionally consider yourself\n" "dull and overly cautious?"); -ALIGNED(4) static const u8 CalmQuest2Points[32] = +ALIGNED(4) static const u8 CalmQuest2Points[2][16] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [CALM] = 0x02, }, + { [IMPISH] = 0x02, } }; static const MenuItem CalmQuest2Answers[] = @@ -802,10 +802,10 @@ ALIGNED(4) static const u8 CalmQuest2Question[] = _( "Do you dream of lounging around idly\n" "without much excitement?"); -ALIGNED(4) static const u8 CalmQuest3Points[32] = +ALIGNED(4) static const u8 CalmQuest3Points[2][16] = { - 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 + { [IMPISH] = 0x01, [TIMID] = 0x02, }, + { [CALM] = 0x02, [LONELY] = 0x01, } }; static const MenuItem CalmQuest3Answers[] = @@ -819,10 +819,10 @@ static const u8 CalmQuest3Question[]; static const PersonalityQuestion CalmQuest3 = { CalmQuest3Question, CalmQuest3Answers, CalmQuest3Points }; ALIGNED(4) static const u8 CalmQuest3Question[] = _("Do you like to fight?"); -ALIGNED(4) static const u8 CalmQuest4Points[32] = +ALIGNED(4) static const u8 CalmQuest4Points[2][16] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [CALM] = 0x02, [RELAXED] = 0x01, }, + { [HARDY] = 0x01, [HASTY] = 0x02, } }; static const MenuItem CalmQuest4Answers[] = @@ -836,10 +836,10 @@ static const u8 CalmQuest4Question[]; static const PersonalityQuestion CalmQuest4 = { CalmQuest4Question, CalmQuest4Answers, CalmQuest4Points }; ALIGNED(4) static const u8 CalmQuest4Question[] = _("Do you often yawn?"); -ALIGNED(4) static const u8 RelaxedQuest1Points[32] = +ALIGNED(4) static const u8 RelaxedQuest1Points[2][16] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [SASSY] = 0x01, [RELAXED] = 0x02, }, + { [HARDY] = 0x02, [HASTY] = 0x01, } }; static const MenuItem RelaxedQuest1Answers[] = @@ -853,10 +853,10 @@ static const u8 RelaxedQuest1Question[]; static const PersonalityQuestion RelaxedQuest1 = { RelaxedQuest1Question, RelaxedQuest1Answers, RelaxedQuest1Points }; ALIGNED(4) static const u8 RelaxedQuest1Question[] = _("Are you often late for school or meetings?"); -ALIGNED(4) static const u8 RelaxedQuest2Points[32] = +ALIGNED(4) static const u8 RelaxedQuest2Points[2][16] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [RELAXED] = 0x02, }, + { [IMPISH] = 0x01, [HASTY] = 0x02, } }; static const MenuItem RelaxedQuest2Answers[] = @@ -872,11 +872,11 @@ ALIGNED(4) static const u8 RelaxedQuest2Question[] = _( "Do you get the feeling that you've slowed\n" "down lately?"); -ALIGNED(4) static const u8 RelaxedQuest3Points[48] = +ALIGNED(4) static const u8 RelaxedQuest3Points[3][16] = { - 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [JOLLY] = 0x02, }, + { [RELAXED] = 0x02, }, + { [HASTY] = 0x02, } }; static const MenuItem RelaxedQuest3Answers[] = @@ -893,10 +893,10 @@ ALIGNED(4) static const u8 RelaxedQuest3Question[] = _( "It is a pleasant day at the beach.\n" "How do you feel?"); -ALIGNED(4) static const u8 RelaxedQuest4Points[32] = +ALIGNED(4) static const u8 RelaxedQuest4Points[2][16] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [CALM] = 0x01, [RELAXED] = 0x02, }, + { [HARDY] = 0x02, } }; static const MenuItem RelaxedQuest4Answers[] = @@ -910,10 +910,10 @@ static const u8 RelaxedQuest4Question[]; static const PersonalityQuestion RelaxedQuest4 = { RelaxedQuest4Question, RelaxedQuest4Answers, RelaxedQuest4Points }; ALIGNED(4) static const u8 RelaxedQuest4Question[] = _("Do you fall asleep without noticing?"); -ALIGNED(4) static const u8 LonelyQuest1Points[32] = +ALIGNED(4) static const u8 LonelyQuest1Points[2][16] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [TIMID] = 0x01, [LONELY] = 0x02, }, + { [SASSY] = 0x02, } }; static const MenuItem LonelyQuest1Answers[] = @@ -927,10 +927,10 @@ static const u8 LonelyQuest1Question[]; static const PersonalityQuestion LonelyQuest1 = { LonelyQuest1Question, LonelyQuest1Answers, LonelyQuest1Points }; ALIGNED(4) static const u8 LonelyQuest1Question[] = _("Do you feel lonesome when you are alone?"); -ALIGNED(4) static const u8 LonelyQuest2Points[32] = +ALIGNED(4) static const u8 LonelyQuest2Points[2][16] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 + { [TIMID] = 0x01, [LONELY] = 0x02, }, + { [BRAVE] = 0x03, [RELAXED] = 0x01, } }; static const MenuItem LonelyQuest2Answers[] = @@ -946,10 +946,10 @@ ALIGNED(4) static const u8 LonelyQuest2Question[] = _( "Do you hate to be the last person to leave\n" "class at the end of a school day?"); -ALIGNED(4) static const u8 LonelyQuest3Points[32] = +ALIGNED(4) static const u8 LonelyQuest3Points[2][16] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [TIMID] = 0x01, [LONELY] = 0x02, }, + { [CALM] = 0x02, } }; static const MenuItem LonelyQuest3Answers[] = @@ -965,11 +965,11 @@ ALIGNED(4) static const u8 LonelyQuest3Question[] = _( "What do you do with your room's light\n" "when you're going to bed at night?"); -ALIGNED(4) static const u8 LonelyQuest4Points[48] = +ALIGNED(4) static const u8 LonelyQuest4Points[3][16] = { - 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00 + { [JOLLY] = 0x01, [LONELY] = 0x01, }, + { [CALM] = 0x01, [RELAXED] = 0x02, }, + { [TIMID] = 0x01, [LONELY] = 0x03, } }; static const MenuItem LonelyQuest4Answers[] = @@ -987,10 +987,10 @@ ALIGNED(4) static const u8 LonelyQuest4Question[] = _( "with you...\n" "What do you do?"); -ALIGNED(4) static const u8 QuirkyQuest1Points[32] = +ALIGNED(4) static const u8 QuirkyQuest1Points[2][16] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, - 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [QUIRKY] = 0x02, }, + { [HARDY] = 0x02, } }; static const MenuItem QuirkyQuest1Answers[] = @@ -1006,11 +1006,11 @@ ALIGNED(4) static const u8 QuirkyQuest1Question[] = _( "Do you sometimes run out of things to do\n" "all of a sudden?"); -ALIGNED(4) static const u8 QuirkyQuest2Points[48] = +ALIGNED(4) static const u8 QuirkyQuest2Points[3][16] = { - 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [HARDY] = 0x01, [HASTY] = 0x01, }, + { [QUIRKY] = 0x02, }, + { [SASSY] = 0x02, } }; static const u8 QuirkyQuest2_Reply[]; @@ -1031,12 +1031,12 @@ static const u8 QuirkyQuest2Question[]; static const PersonalityQuestion QuirkyQuest2 = { QuirkyQuest2Question, QuirkyQuest2Answers, QuirkyQuest2Points }; ALIGNED(4) static const u8 QuirkyQuest2Question[] = _("How quickly do you respond to an e-mail?"); -ALIGNED(4) static const u8 QuirkyQuest3Points[64] = +ALIGNED(4) static const u8 QuirkyQuest3Points[4][16] = { - 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [HARDY] = 0x01, [BRAVE] = 0x03, }, + { [QUIRKY] = 0x02, }, + { [IMPISH] = 0x02, }, + { [TIMID] = 0x02, } }; static const MenuItem QuirkyQuest3Answers[] = @@ -1055,11 +1055,11 @@ ALIGNED(4) static const u8 QuirkyQuest3Question[] = _( "But there's no opportunity to get close.\n" "What do you do?"); -ALIGNED(4) static const u8 QuirkyQuest4Points[48] = +ALIGNED(4) static const u8 QuirkyQuest4Points[3][16] = { - 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 + { [DOCILE] = 0x02, }, + { [SASSY] = 0x02, }, + { [QUIRKY] = 0x02, } }; static const u8 QuirkyQuest4_GoRight[]; @@ -1083,10 +1083,10 @@ ALIGNED(4) static const u8 QuirkyQuest4Question[] = _( "You are told there is a treasure on the\n" "right side. What do you do?"); -ALIGNED(4) static const u8 MiscQuest1Points[32] = +ALIGNED(4) static const u8 MiscQuest1Points[2][16] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 + { [HASTY] = 0x01, [QUIRKY] = 0x01, }, + { [JOLLY] = 0x01, [LONELY] = 0x01, } }; static const MenuItem MiscQuest1Answers[] = @@ -1100,10 +1100,10 @@ static const u8 MiscQuest1Question[]; static const PersonalityQuestion MiscQuest1 = { MiscQuest1Question, MiscQuest1Answers, MiscQuest1Points }; ALIGNED(4) static const u8 MiscQuest1Question[] = _("On vacation outings, you want to..."); -ALIGNED(4) static const u8 MiscQuest2Points[32] = +ALIGNED(4) static const u8 MiscQuest2Points[2][16] = { - 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 + { [JOLLY] = 0x02, }, + { [SASSY] = 0x01, [QUIRKY] = 0x01, } }; static const u8 MiscQuest2_DontCare[]; @@ -1121,10 +1121,10 @@ ALIGNED(4) static const u8 MiscQuest2Question[] = _( "It's the summer festival!\n" "Do you like carnivals?"); -ALIGNED(4) static const u8 MiscQuest3Points[32] = +ALIGNED(4) static const u8 MiscQuest3Points[2][16] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + { [NAIVE] = 0x01, [LONELY] = 0x01, }, + { [HASTY] = 0x01, [SASSY] = 0x01, } }; static const MenuItem MiscQuest3Answers[] = @@ -1506,4 +1506,4 @@ static const UnkTextStruct2 sUnknown_80F4244 = 5, 5, 5, 0, NULL -}; \ No newline at end of file +}; diff --git a/src/personality_test1.c b/src/personality_test1.c index 65170594d..760479496 100644 --- a/src/personality_test1.c +++ b/src/personality_test1.c @@ -215,7 +215,7 @@ static void UpdateNatureTotals(void) { s32 answerIndex; s32 natureIndex; - const u8 *pointArray; + const u8 (*pointArray)[16]; if (sub_80144A4(&answerIndex)) return; @@ -228,11 +228,9 @@ static void UpdateNatureTotals(void) } else { pointArray = gPersonalityQuestionPointerTable[sPersonalityTestTracker->currQuestionIndex]->effects; - // Skip until we get to the one for our answer - // Each Answer has 16 bytes. 13 are currently used with 3 remaining - pointArray += (NUM_PERSONALITIES + 3) * answerIndex; + pointArray += answerIndex; for (natureIndex = 0; natureIndex < NUM_PERSONALITIES; natureIndex++) - sPersonalityTestTracker->NatureTotals[natureIndex] += pointArray[natureIndex]; + sPersonalityTestTracker->NatureTotals[natureIndex] += (*pointArray)[natureIndex]; sPersonalityTestTracker->TestState = PERSONALITY_GENERATE_NEW_QUESTION; } From aad27b9c26efa7056d906d02ae57c42b2f1aeea7 Mon Sep 17 00:00:00 2001 From: Mateon1 Date: Sun, 29 Sep 2024 17:08:19 +0200 Subject: [PATCH 07/10] Ground script decomp --- charmap.txt | 6 +- data/cutscenes.s | 106108 --------------- data/cutscenes_1.s | 28483 ---- data/data_8115F5C.s | 10458 +- data/friend_area_dialogue.s | 6 +- data/scripts/company_screens.inc | 4 +- data/scripts/health_safety.inc | 4 +- data/scripts/intro.inc | 4 +- data/scripts/personality_test.inc | 4 +- data/scripts/title.inc | 4 +- data/scripts/world_map.inc | 4 +- include/data_script.h | 546 + include/ground_script.h | 98 +- ld_script.txt | 137 +- src/data/ground/ground_data_a01p01_station.h | 1488 + src/data/ground/ground_data_a01p02_station.h | 336 + src/data/ground/ground_data_a02p01_station.h | 107 + src/data/ground/ground_data_a02p02_station.h | 127 + src/data/ground/ground_data_a02p03_station.h | 226 + src/data/ground/ground_data_a02p04_station.h | 367 + src/data/ground/ground_data_a03p01_station.h | 338 + src/data/ground/ground_data_a03p02_station.h | 91 + src/data/ground/ground_data_a03p03_station.h | 485 + src/data/ground/ground_data_a04p01_station.h | 2667 + src/data/ground/ground_data_a04p02_station.h | 73 + src/data/ground/ground_data_a04p03_station.h | 161 + src/data/ground/ground_data_a04p04_station.h | 220 + src/data/ground/ground_data_a05p01_station.h | 142 + src/data/ground/ground_data_a05p02_station.h | 143 + src/data/ground/ground_data_a05p03_station.h | 84 + src/data/ground/ground_data_b01p01a_station.h | 16502 +++ src/data/ground/ground_data_b01p02a_station.h | 3631 + src/data/ground/ground_data_d01p01_station.h | 833 + src/data/ground/ground_data_d01p02_station.h | 147 + src/data/ground/ground_data_d02p01_station.h | 523 + src/data/ground/ground_data_d02p02_station.h | 128 + src/data/ground/ground_data_d03p01_station.h | 328 + src/data/ground/ground_data_d03p02_station.h | 296 + src/data/ground/ground_data_d04p01_station.h | 183 + src/data/ground/ground_data_d04p02_station.h | 281 + src/data/ground/ground_data_d05p01_station.h | 460 + src/data/ground/ground_data_d05p02_station.h | 378 + src/data/ground/ground_data_d06p01_station.h | 236 + src/data/ground/ground_data_d06p02_station.h | 265 + src/data/ground/ground_data_d06p03_station.h | 689 + src/data/ground/ground_data_d07p01_station.h | 203 + src/data/ground/ground_data_d07p02_station.h | 974 + src/data/ground/ground_data_d08p01_station.h | 748 + src/data/ground/ground_data_d08p02_station.h | 148 + src/data/ground/ground_data_d09p01_station.h | 836 + src/data/ground/ground_data_d09p02_station.h | 281 + src/data/ground/ground_data_d09p03_station.h | 451 + src/data/ground/ground_data_d10p01_station.h | 791 + src/data/ground/ground_data_d10p02_station.h | 378 + src/data/ground/ground_data_d10p03_station.h | 496 + src/data/ground/ground_data_d11p01_station.h | 892 + src/data/ground/ground_data_d11p02_station.h | 315 + src/data/ground/ground_data_d11p03_station.h | 1414 + src/data/ground/ground_data_d12p01_station.h | 291 + src/data/ground/ground_data_d12p02_station.h | 264 + src/data/ground/ground_data_d12p04_station.h | 420 + src/data/ground/ground_data_d13p01_station.h | 421 + src/data/ground/ground_data_d13p02_station.h | 265 + src/data/ground/ground_data_d13p03_station.h | 564 + src/data/ground/ground_data_d14p01_station.h | 83 + src/data/ground/ground_data_d15p01_station.h | 114 + src/data/ground/ground_data_d16p01_station.h | 261 + src/data/ground/ground_data_d17p01_station.h | 260 + src/data/ground/ground_data_d18p01_station.h | 260 + src/data/ground/ground_data_d19p01_station.h | 114 + src/data/ground/ground_data_d20p01_station.h | 442 + src/data/ground/ground_data_d21p01_station.h | 132 + src/data/ground/ground_data_d22p01_station.h | 177 + src/data/ground/ground_data_d23p01_station.h | 118 + src/data/ground/ground_data_d24p01_station.h | 621 + src/data/ground/ground_data_d24p02_station.h | 104 + src/data/ground/ground_data_d25p01_station.h | 118 + src/data/ground/ground_data_h01p01_station.h | 293 + src/data/ground/ground_data_h01p02_station.h | 323 + src/data/ground/ground_data_h01p03_station.h | 221 + src/data/ground/ground_data_h02p01_station.h | 357 + src/data/ground/ground_data_h02p02_station.h | 170 + src/data/ground/ground_data_h02p03_station.h | 170 + src/data/ground/ground_data_h03p01_station.h | 255 + src/data/ground/ground_data_h04p01_station.h | 354 + src/data/ground/ground_data_h04p02_station.h | 304 + src/data/ground/ground_data_h05p01_station.h | 252 + src/data/ground/ground_data_h05p02_station.h | 170 + src/data/ground/ground_data_h06p01_station.h | 374 + src/data/ground/ground_data_h06p02_station.h | 357 + src/data/ground/ground_data_h06p03_station.h | 374 + src/data/ground/ground_data_h06p04_station.h | 408 + src/data/ground/ground_data_h06p05_station.h | 323 + src/data/ground/ground_data_h06p06_station.h | 204 + src/data/ground/ground_data_h07p01_station.h | 391 + src/data/ground/ground_data_h07p02_station.h | 355 + src/data/ground/ground_data_h07p03_station.h | 303 + src/data/ground/ground_data_h07p04_station.h | 422 + src/data/ground/ground_data_h07p05_station.h | 270 + src/data/ground/ground_data_h07p06_station.h | 184 + src/data/ground/ground_data_h07p07_station.h | 262 + src/data/ground/ground_data_h07p08_station.h | 306 + src/data/ground/ground_data_h08p01_station.h | 285 + src/data/ground/ground_data_h09p01_station.h | 303 + src/data/ground/ground_data_h09p02_station.h | 323 + src/data/ground/ground_data_h10p01_station.h | 218 + src/data/ground/ground_data_h10p02_station.h | 231 + src/data/ground/ground_data_h11p01_station.h | 272 + src/data/ground/ground_data_h12p01_station.h | 255 + src/data/ground/ground_data_h13p01_station.h | 340 + src/data/ground/ground_data_h13p02_station.h | 170 + src/data/ground/ground_data_h13p03_station.h | 221 + src/data/ground/ground_data_h13p04_station.h | 219 + src/data/ground/ground_data_h14p01_station.h | 374 + src/data/ground/ground_data_h15p01_station.h | 269 + src/data/ground/ground_data_h16p01_station.h | 340 + src/data/ground/ground_data_h17p01_station.h | 340 + src/data/ground/ground_data_h18p01_station.h | 272 + src/data/ground/ground_data_h19p01_station.h | 272 + src/data/ground/ground_data_h20p01_station.h | 272 + src/data/ground/ground_data_h21p01_station.h | 389 + src/data/ground/ground_data_h21p02_station.h | 389 + src/data/ground/ground_data_h22p01_station.h | 255 + src/data/ground/ground_data_h23p01_station.h | 374 + src/data/ground/ground_data_h24p01_station.h | 272 + src/data/ground/ground_data_h25p01_station.h | 255 + src/data/ground/ground_data_h26p01_station.h | 170 + src/data/ground/ground_data_h27p01_station.h | 170 + src/data/ground/ground_data_h28p01_station.h | 255 + src/data/ground/ground_data_h28p02_station.h | 218 + src/data/ground/ground_data_h29p01_station.h | 657 + src/data/ground/ground_data_h29p02_station.h | 187 + src/data/ground/ground_data_h29p03_station.h | 170 + src/data/ground/ground_data_h29p04_station.h | 170 + src/data/ground/ground_data_s01_station.h | 65 + src/data/ground/ground_data_s02_station.h | 259 + src/data/ground/ground_data_s03_station.h | 150 + src/data/ground/ground_data_s04_station.h | 106 + src/data/ground/ground_data_s05_station.h | 75 + src/data/ground/ground_data_s06_station.h | 55 + src/data/ground/ground_data_t00p01_station.h | 1487 + src/data/ground/ground_data_t01p01_station.h | 17921 +++ src/data/ground/ground_data_t01p02a_station.h | 3431 + src/data/ground/ground_data_t01p03_station.h | 3954 + src/data/ground/ground_data_t01p04_station.h | 474 + src/data/ground/ground_data_t01p05_station.h | 529 + src/data/ground/ground_data_t01p06_station.h | 99 + src/data/ground/ground_data_t01p07_station.h | 171 + src/data/ground/ground_event_data.h | 5673 + src/ground_data_a01p01_station.c | 7 + src/ground_data_a01p02_station.c | 7 + src/ground_data_a02p01_station.c | 7 + src/ground_data_a02p02_station.c | 7 + src/ground_data_a02p03_station.c | 7 + src/ground_data_a02p04_station.c | 7 + src/ground_data_a03p01_station.c | 7 + src/ground_data_a03p02_station.c | 7 + src/ground_data_a03p03_station.c | 7 + src/ground_data_a04p01_station.c | 7 + src/ground_data_a04p02_station.c | 7 + src/ground_data_a04p03_station.c | 7 + src/ground_data_a04p04_station.c | 7 + src/ground_data_a05p01_station.c | 7 + src/ground_data_a05p02_station.c | 7 + src/ground_data_a05p03_station.c | 7 + src/ground_data_b01p01a_station.c | 7 + src/ground_data_b01p02a_station.c | 7 + src/ground_data_d01p01_station.c | 7 + src/ground_data_d01p02_station.c | 7 + src/ground_data_d02p01_station.c | 7 + src/ground_data_d02p02_station.c | 7 + src/ground_data_d03p01_station.c | 7 + src/ground_data_d03p02_station.c | 7 + src/ground_data_d04p01_station.c | 7 + src/ground_data_d04p02_station.c | 7 + src/ground_data_d05p01_station.c | 7 + src/ground_data_d05p02_station.c | 7 + src/ground_data_d06p01_station.c | 7 + src/ground_data_d06p02_station.c | 7 + src/ground_data_d06p03_station.c | 7 + src/ground_data_d07p01_station.c | 7 + src/ground_data_d07p02_station.c | 7 + src/ground_data_d08p01_station.c | 7 + src/ground_data_d08p02_station.c | 7 + src/ground_data_d09p01_station.c | 7 + src/ground_data_d09p02_station.c | 7 + src/ground_data_d09p03_station.c | 7 + src/ground_data_d10p01_station.c | 7 + src/ground_data_d10p02_station.c | 7 + src/ground_data_d10p03_station.c | 7 + src/ground_data_d11p01_station.c | 7 + src/ground_data_d11p02_station.c | 7 + src/ground_data_d11p03_station.c | 7 + src/ground_data_d12p01_station.c | 7 + src/ground_data_d12p02_station.c | 7 + src/ground_data_d12p04_station.c | 7 + src/ground_data_d13p01_station.c | 7 + src/ground_data_d13p02_station.c | 7 + src/ground_data_d13p03_station.c | 7 + src/ground_data_d14p01_station.c | 7 + src/ground_data_d15p01_station.c | 7 + src/ground_data_d16p01_station.c | 7 + src/ground_data_d17p01_station.c | 7 + src/ground_data_d18p01_station.c | 7 + src/ground_data_d19p01_station.c | 7 + src/ground_data_d20p01_station.c | 7 + src/ground_data_d21p01_station.c | 7 + src/ground_data_d22p01_station.c | 7 + src/ground_data_d23p01_station.c | 7 + src/ground_data_d24p01_station.c | 7 + src/ground_data_d24p02_station.c | 7 + src/ground_data_d25p01_station.c | 7 + src/ground_data_h01p01_station.c | 7 + src/ground_data_h01p02_station.c | 7 + src/ground_data_h01p03_station.c | 7 + src/ground_data_h02p01_station.c | 7 + src/ground_data_h02p02_station.c | 7 + src/ground_data_h02p03_station.c | 7 + src/ground_data_h03p01_station.c | 7 + src/ground_data_h04p01_station.c | 7 + src/ground_data_h04p02_station.c | 7 + src/ground_data_h05p01_station.c | 7 + src/ground_data_h05p02_station.c | 7 + src/ground_data_h06p01_station.c | 7 + src/ground_data_h06p02_station.c | 7 + src/ground_data_h06p03_station.c | 7 + src/ground_data_h06p04_station.c | 7 + src/ground_data_h06p05_station.c | 7 + src/ground_data_h06p06_station.c | 7 + src/ground_data_h07p01_station.c | 7 + src/ground_data_h07p02_station.c | 7 + src/ground_data_h07p03_station.c | 7 + src/ground_data_h07p04_station.c | 7 + src/ground_data_h07p05_station.c | 7 + src/ground_data_h07p06_station.c | 7 + src/ground_data_h07p07_station.c | 7 + src/ground_data_h07p08_station.c | 7 + src/ground_data_h08p01_station.c | 7 + src/ground_data_h09p01_station.c | 7 + src/ground_data_h09p02_station.c | 7 + src/ground_data_h10p01_station.c | 7 + src/ground_data_h10p02_station.c | 7 + src/ground_data_h11p01_station.c | 7 + src/ground_data_h12p01_station.c | 7 + src/ground_data_h13p01_station.c | 7 + src/ground_data_h13p02_station.c | 7 + src/ground_data_h13p03_station.c | 7 + src/ground_data_h13p04_station.c | 7 + src/ground_data_h14p01_station.c | 7 + src/ground_data_h15p01_station.c | 7 + src/ground_data_h16p01_station.c | 7 + src/ground_data_h17p01_station.c | 7 + src/ground_data_h18p01_station.c | 7 + src/ground_data_h19p01_station.c | 7 + src/ground_data_h20p01_station.c | 7 + src/ground_data_h21p01_station.c | 7 + src/ground_data_h21p02_station.c | 7 + src/ground_data_h22p01_station.c | 7 + src/ground_data_h23p01_station.c | 7 + src/ground_data_h24p01_station.c | 7 + src/ground_data_h25p01_station.c | 7 + src/ground_data_h26p01_station.c | 7 + src/ground_data_h27p01_station.c | 7 + src/ground_data_h28p01_station.c | 7 + src/ground_data_h28p02_station.c | 7 + src/ground_data_h29p01_station.c | 7 + src/ground_data_h29p02_station.c | 7 + src/ground_data_h29p03_station.c | 7 + src/ground_data_h29p04_station.c | 7 + src/ground_data_s01_station.c | 7 + src/ground_data_s02_station.c | 7 + src/ground_data_s03_station.c | 7 + src/ground_data_s04_station.c | 7 + src/ground_data_s05_station.c | 7 + src/ground_data_s06_station.c | 7 + src/ground_data_t00p01_station.c | 7 + src/ground_data_t01p01_station.c | 7 + src/ground_data_t01p02a_station.c | 7 + src/ground_data_t01p03_station.c | 7 + src/ground_data_t01p04_station.c | 7 + src/ground_data_t01p05_station.c | 7 + src/ground_data_t01p06_station.c | 7 + src/ground_data_t01p07_station.c | 7 + src/ground_event_data.c | 7 + src/ground_script.c | 2 +- src/ground_script_1.c | 53 +- src/ground_script_2.c | 10 +- tmp/renames.sed | 549 +- 288 files changed, 98165 insertions(+), 144909 deletions(-) delete mode 100644 data/cutscenes.s delete mode 100644 data/cutscenes_1.s create mode 100644 include/data_script.h create mode 100644 src/data/ground/ground_data_a01p01_station.h create mode 100644 src/data/ground/ground_data_a01p02_station.h create mode 100644 src/data/ground/ground_data_a02p01_station.h create mode 100644 src/data/ground/ground_data_a02p02_station.h create mode 100644 src/data/ground/ground_data_a02p03_station.h create mode 100644 src/data/ground/ground_data_a02p04_station.h create mode 100644 src/data/ground/ground_data_a03p01_station.h create mode 100644 src/data/ground/ground_data_a03p02_station.h create mode 100644 src/data/ground/ground_data_a03p03_station.h create mode 100644 src/data/ground/ground_data_a04p01_station.h create mode 100644 src/data/ground/ground_data_a04p02_station.h create mode 100644 src/data/ground/ground_data_a04p03_station.h create mode 100644 src/data/ground/ground_data_a04p04_station.h create mode 100644 src/data/ground/ground_data_a05p01_station.h create mode 100644 src/data/ground/ground_data_a05p02_station.h create mode 100644 src/data/ground/ground_data_a05p03_station.h create mode 100644 src/data/ground/ground_data_b01p01a_station.h create mode 100644 src/data/ground/ground_data_b01p02a_station.h create mode 100644 src/data/ground/ground_data_d01p01_station.h create mode 100644 src/data/ground/ground_data_d01p02_station.h create mode 100644 src/data/ground/ground_data_d02p01_station.h create mode 100644 src/data/ground/ground_data_d02p02_station.h create mode 100644 src/data/ground/ground_data_d03p01_station.h create mode 100644 src/data/ground/ground_data_d03p02_station.h create mode 100644 src/data/ground/ground_data_d04p01_station.h create mode 100644 src/data/ground/ground_data_d04p02_station.h create mode 100644 src/data/ground/ground_data_d05p01_station.h create mode 100644 src/data/ground/ground_data_d05p02_station.h create mode 100644 src/data/ground/ground_data_d06p01_station.h create mode 100644 src/data/ground/ground_data_d06p02_station.h create mode 100644 src/data/ground/ground_data_d06p03_station.h create mode 100644 src/data/ground/ground_data_d07p01_station.h create mode 100644 src/data/ground/ground_data_d07p02_station.h create mode 100644 src/data/ground/ground_data_d08p01_station.h create mode 100644 src/data/ground/ground_data_d08p02_station.h create mode 100644 src/data/ground/ground_data_d09p01_station.h create mode 100644 src/data/ground/ground_data_d09p02_station.h create mode 100644 src/data/ground/ground_data_d09p03_station.h create mode 100644 src/data/ground/ground_data_d10p01_station.h create mode 100644 src/data/ground/ground_data_d10p02_station.h create mode 100644 src/data/ground/ground_data_d10p03_station.h create mode 100644 src/data/ground/ground_data_d11p01_station.h create mode 100644 src/data/ground/ground_data_d11p02_station.h create mode 100644 src/data/ground/ground_data_d11p03_station.h create mode 100644 src/data/ground/ground_data_d12p01_station.h create mode 100644 src/data/ground/ground_data_d12p02_station.h create mode 100644 src/data/ground/ground_data_d12p04_station.h create mode 100644 src/data/ground/ground_data_d13p01_station.h create mode 100644 src/data/ground/ground_data_d13p02_station.h create mode 100644 src/data/ground/ground_data_d13p03_station.h create mode 100644 src/data/ground/ground_data_d14p01_station.h create mode 100644 src/data/ground/ground_data_d15p01_station.h create mode 100644 src/data/ground/ground_data_d16p01_station.h create mode 100644 src/data/ground/ground_data_d17p01_station.h create mode 100644 src/data/ground/ground_data_d18p01_station.h create mode 100644 src/data/ground/ground_data_d19p01_station.h create mode 100644 src/data/ground/ground_data_d20p01_station.h create mode 100644 src/data/ground/ground_data_d21p01_station.h create mode 100644 src/data/ground/ground_data_d22p01_station.h create mode 100644 src/data/ground/ground_data_d23p01_station.h create mode 100644 src/data/ground/ground_data_d24p01_station.h create mode 100644 src/data/ground/ground_data_d24p02_station.h create mode 100644 src/data/ground/ground_data_d25p01_station.h create mode 100644 src/data/ground/ground_data_h01p01_station.h create mode 100644 src/data/ground/ground_data_h01p02_station.h create mode 100644 src/data/ground/ground_data_h01p03_station.h create mode 100644 src/data/ground/ground_data_h02p01_station.h create mode 100644 src/data/ground/ground_data_h02p02_station.h create mode 100644 src/data/ground/ground_data_h02p03_station.h create mode 100644 src/data/ground/ground_data_h03p01_station.h create mode 100644 src/data/ground/ground_data_h04p01_station.h create mode 100644 src/data/ground/ground_data_h04p02_station.h create mode 100644 src/data/ground/ground_data_h05p01_station.h create mode 100644 src/data/ground/ground_data_h05p02_station.h create mode 100644 src/data/ground/ground_data_h06p01_station.h create mode 100644 src/data/ground/ground_data_h06p02_station.h create mode 100644 src/data/ground/ground_data_h06p03_station.h create mode 100644 src/data/ground/ground_data_h06p04_station.h create mode 100644 src/data/ground/ground_data_h06p05_station.h create mode 100644 src/data/ground/ground_data_h06p06_station.h create mode 100644 src/data/ground/ground_data_h07p01_station.h create mode 100644 src/data/ground/ground_data_h07p02_station.h create mode 100644 src/data/ground/ground_data_h07p03_station.h create mode 100644 src/data/ground/ground_data_h07p04_station.h create mode 100644 src/data/ground/ground_data_h07p05_station.h create mode 100644 src/data/ground/ground_data_h07p06_station.h create mode 100644 src/data/ground/ground_data_h07p07_station.h create mode 100644 src/data/ground/ground_data_h07p08_station.h create mode 100644 src/data/ground/ground_data_h08p01_station.h create mode 100644 src/data/ground/ground_data_h09p01_station.h create mode 100644 src/data/ground/ground_data_h09p02_station.h create mode 100644 src/data/ground/ground_data_h10p01_station.h create mode 100644 src/data/ground/ground_data_h10p02_station.h create mode 100644 src/data/ground/ground_data_h11p01_station.h create mode 100644 src/data/ground/ground_data_h12p01_station.h create mode 100644 src/data/ground/ground_data_h13p01_station.h create mode 100644 src/data/ground/ground_data_h13p02_station.h create mode 100644 src/data/ground/ground_data_h13p03_station.h create mode 100644 src/data/ground/ground_data_h13p04_station.h create mode 100644 src/data/ground/ground_data_h14p01_station.h create mode 100644 src/data/ground/ground_data_h15p01_station.h create mode 100644 src/data/ground/ground_data_h16p01_station.h create mode 100644 src/data/ground/ground_data_h17p01_station.h create mode 100644 src/data/ground/ground_data_h18p01_station.h create mode 100644 src/data/ground/ground_data_h19p01_station.h create mode 100644 src/data/ground/ground_data_h20p01_station.h create mode 100644 src/data/ground/ground_data_h21p01_station.h create mode 100644 src/data/ground/ground_data_h21p02_station.h create mode 100644 src/data/ground/ground_data_h22p01_station.h create mode 100644 src/data/ground/ground_data_h23p01_station.h create mode 100644 src/data/ground/ground_data_h24p01_station.h create mode 100644 src/data/ground/ground_data_h25p01_station.h create mode 100644 src/data/ground/ground_data_h26p01_station.h create mode 100644 src/data/ground/ground_data_h27p01_station.h create mode 100644 src/data/ground/ground_data_h28p01_station.h create mode 100644 src/data/ground/ground_data_h28p02_station.h create mode 100644 src/data/ground/ground_data_h29p01_station.h create mode 100644 src/data/ground/ground_data_h29p02_station.h create mode 100644 src/data/ground/ground_data_h29p03_station.h create mode 100644 src/data/ground/ground_data_h29p04_station.h create mode 100644 src/data/ground/ground_data_s01_station.h create mode 100644 src/data/ground/ground_data_s02_station.h create mode 100644 src/data/ground/ground_data_s03_station.h create mode 100644 src/data/ground/ground_data_s04_station.h create mode 100644 src/data/ground/ground_data_s05_station.h create mode 100644 src/data/ground/ground_data_s06_station.h create mode 100644 src/data/ground/ground_data_t00p01_station.h create mode 100644 src/data/ground/ground_data_t01p01_station.h create mode 100644 src/data/ground/ground_data_t01p02a_station.h create mode 100644 src/data/ground/ground_data_t01p03_station.h create mode 100644 src/data/ground/ground_data_t01p04_station.h create mode 100644 src/data/ground/ground_data_t01p05_station.h create mode 100644 src/data/ground/ground_data_t01p06_station.h create mode 100644 src/data/ground/ground_data_t01p07_station.h create mode 100644 src/data/ground/ground_event_data.h create mode 100644 src/ground_data_a01p01_station.c create mode 100644 src/ground_data_a01p02_station.c create mode 100644 src/ground_data_a02p01_station.c create mode 100644 src/ground_data_a02p02_station.c create mode 100644 src/ground_data_a02p03_station.c create mode 100644 src/ground_data_a02p04_station.c create mode 100644 src/ground_data_a03p01_station.c create mode 100644 src/ground_data_a03p02_station.c create mode 100644 src/ground_data_a03p03_station.c create mode 100644 src/ground_data_a04p01_station.c create mode 100644 src/ground_data_a04p02_station.c create mode 100644 src/ground_data_a04p03_station.c create mode 100644 src/ground_data_a04p04_station.c create mode 100644 src/ground_data_a05p01_station.c create mode 100644 src/ground_data_a05p02_station.c create mode 100644 src/ground_data_a05p03_station.c create mode 100644 src/ground_data_b01p01a_station.c create mode 100644 src/ground_data_b01p02a_station.c create mode 100644 src/ground_data_d01p01_station.c create mode 100644 src/ground_data_d01p02_station.c create mode 100644 src/ground_data_d02p01_station.c create mode 100644 src/ground_data_d02p02_station.c create mode 100644 src/ground_data_d03p01_station.c create mode 100644 src/ground_data_d03p02_station.c create mode 100644 src/ground_data_d04p01_station.c create mode 100644 src/ground_data_d04p02_station.c create mode 100644 src/ground_data_d05p01_station.c create mode 100644 src/ground_data_d05p02_station.c create mode 100644 src/ground_data_d06p01_station.c create mode 100644 src/ground_data_d06p02_station.c create mode 100644 src/ground_data_d06p03_station.c create mode 100644 src/ground_data_d07p01_station.c create mode 100644 src/ground_data_d07p02_station.c create mode 100644 src/ground_data_d08p01_station.c create mode 100644 src/ground_data_d08p02_station.c create mode 100644 src/ground_data_d09p01_station.c create mode 100644 src/ground_data_d09p02_station.c create mode 100644 src/ground_data_d09p03_station.c create mode 100644 src/ground_data_d10p01_station.c create mode 100644 src/ground_data_d10p02_station.c create mode 100644 src/ground_data_d10p03_station.c create mode 100644 src/ground_data_d11p01_station.c create mode 100644 src/ground_data_d11p02_station.c create mode 100644 src/ground_data_d11p03_station.c create mode 100644 src/ground_data_d12p01_station.c create mode 100644 src/ground_data_d12p02_station.c create mode 100644 src/ground_data_d12p04_station.c create mode 100644 src/ground_data_d13p01_station.c create mode 100644 src/ground_data_d13p02_station.c create mode 100644 src/ground_data_d13p03_station.c create mode 100644 src/ground_data_d14p01_station.c create mode 100644 src/ground_data_d15p01_station.c create mode 100644 src/ground_data_d16p01_station.c create mode 100644 src/ground_data_d17p01_station.c create mode 100644 src/ground_data_d18p01_station.c create mode 100644 src/ground_data_d19p01_station.c create mode 100644 src/ground_data_d20p01_station.c create mode 100644 src/ground_data_d21p01_station.c create mode 100644 src/ground_data_d22p01_station.c create mode 100644 src/ground_data_d23p01_station.c create mode 100644 src/ground_data_d24p01_station.c create mode 100644 src/ground_data_d24p02_station.c create mode 100644 src/ground_data_d25p01_station.c create mode 100644 src/ground_data_h01p01_station.c create mode 100644 src/ground_data_h01p02_station.c create mode 100644 src/ground_data_h01p03_station.c create mode 100644 src/ground_data_h02p01_station.c create mode 100644 src/ground_data_h02p02_station.c create mode 100644 src/ground_data_h02p03_station.c create mode 100644 src/ground_data_h03p01_station.c create mode 100644 src/ground_data_h04p01_station.c create mode 100644 src/ground_data_h04p02_station.c create mode 100644 src/ground_data_h05p01_station.c create mode 100644 src/ground_data_h05p02_station.c create mode 100644 src/ground_data_h06p01_station.c create mode 100644 src/ground_data_h06p02_station.c create mode 100644 src/ground_data_h06p03_station.c create mode 100644 src/ground_data_h06p04_station.c create mode 100644 src/ground_data_h06p05_station.c create mode 100644 src/ground_data_h06p06_station.c create mode 100644 src/ground_data_h07p01_station.c create mode 100644 src/ground_data_h07p02_station.c create mode 100644 src/ground_data_h07p03_station.c create mode 100644 src/ground_data_h07p04_station.c create mode 100644 src/ground_data_h07p05_station.c create mode 100644 src/ground_data_h07p06_station.c create mode 100644 src/ground_data_h07p07_station.c create mode 100644 src/ground_data_h07p08_station.c create mode 100644 src/ground_data_h08p01_station.c create mode 100644 src/ground_data_h09p01_station.c create mode 100644 src/ground_data_h09p02_station.c create mode 100644 src/ground_data_h10p01_station.c create mode 100644 src/ground_data_h10p02_station.c create mode 100644 src/ground_data_h11p01_station.c create mode 100644 src/ground_data_h12p01_station.c create mode 100644 src/ground_data_h13p01_station.c create mode 100644 src/ground_data_h13p02_station.c create mode 100644 src/ground_data_h13p03_station.c create mode 100644 src/ground_data_h13p04_station.c create mode 100644 src/ground_data_h14p01_station.c create mode 100644 src/ground_data_h15p01_station.c create mode 100644 src/ground_data_h16p01_station.c create mode 100644 src/ground_data_h17p01_station.c create mode 100644 src/ground_data_h18p01_station.c create mode 100644 src/ground_data_h19p01_station.c create mode 100644 src/ground_data_h20p01_station.c create mode 100644 src/ground_data_h21p01_station.c create mode 100644 src/ground_data_h21p02_station.c create mode 100644 src/ground_data_h22p01_station.c create mode 100644 src/ground_data_h23p01_station.c create mode 100644 src/ground_data_h24p01_station.c create mode 100644 src/ground_data_h25p01_station.c create mode 100644 src/ground_data_h26p01_station.c create mode 100644 src/ground_data_h27p01_station.c create mode 100644 src/ground_data_h28p01_station.c create mode 100644 src/ground_data_h28p02_station.c create mode 100644 src/ground_data_h29p01_station.c create mode 100644 src/ground_data_h29p02_station.c create mode 100644 src/ground_data_h29p03_station.c create mode 100644 src/ground_data_h29p04_station.c create mode 100644 src/ground_data_s01_station.c create mode 100644 src/ground_data_s02_station.c create mode 100644 src/ground_data_s03_station.c create mode 100644 src/ground_data_s04_station.c create mode 100644 src/ground_data_s05_station.c create mode 100644 src/ground_data_s06_station.c create mode 100644 src/ground_data_t00p01_station.c create mode 100644 src/ground_data_t01p01_station.c create mode 100644 src/ground_data_t01p02a_station.c create mode 100644 src/ground_data_t01p03_station.c create mode 100644 src/ground_data_t01p04_station.c create mode 100644 src/ground_data_t01p05_station.c create mode 100644 src/ground_data_t01p06_station.c create mode 100644 src/ground_data_t01p07_station.c create mode 100644 src/ground_event_data.c diff --git a/charmap.txt b/charmap.txt index 7993a6f34..356f64c86 100644 --- a/charmap.txt +++ b/charmap.txt @@ -150,7 +150,7 @@ '¹' = B9 '⁰' = BA '»' = BB -'←' = BC @ nonstandard, normally ¼ +@'←' = BC @ nonstandard, normally ¼ '♂' = BD @ nonstandard, normally ½ '♀' = BE @ nonstandard, normally ¾ '¿' = BF @@ -252,6 +252,10 @@ UNK_ICON_81_6A = 81 6A RIGHT_ARROW = 81 A8 LEFT_ARROW = 81 A9 UP_ARROW = 81 AA +'→' = 81 A8 +'←' = 81 A9 +'↑' = 81 AA +'↓' = 81 AB POKE = 83 BF 83 C4 @ This is actually two characters which can render separately; may need to be split eventually. UNK_ICON_83_C0 = 83 C0 diff --git a/data/cutscenes.s b/data/cutscenes.s deleted file mode 100644 index 9590ae3f4..000000000 --- a/data/cutscenes.s +++ /dev/null @@ -1,106108 +0,0 @@ -.section .rodata -#include "asm/macros.inc" -#include "asm/constants/script_func_constants.inc" -#include "constants/bg_music.h" -@ Debug Room - -.global Cutscene_DebugRoom_Main -Cutscene_DebugRoom_Main: @ DebugRoom -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -changeTileset 0 -.byte 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x02, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x03, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x04, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x04, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -loopLabel 2 -label 4 -.byte 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x05, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x05, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -loopLabel 6 -label 2 -.byte 0x0d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -loopLabel 7 -label 3 -.byte 0x0d, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -loopLabel 7 -label 5 -.byte 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -loopLabel 7 -.byte 0x0d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -loopLabel 7 -label 6 -.byte 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -loopLabel 7 -label 7 -playMusic MUS_POKEMON_SQUARE -MsgEnd 0x163 - -.global gUnknown_81328EC -gUnknown_81328EC: @ 81328EC -.string "../data/ground/ground_data_t00p01_station.c\0" -.align 2, 0 - -.global gUnknown_8132918 -gUnknown_8132918: @ 8132918 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte Cutscene_DebugRoom_Main - -.global gUnknown_8132924 -gUnknown_8132924: @ 8132924 -.byte 0xf6, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -endFuncAndScript - -.global gUnknown_8132944 -gUnknown_8132944: @ 8132944 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8132924 - -.global gUnknown_8132950 -gUnknown_8132950: @ 8132950 -.byte 0xf6, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -endFuncAndScript - -.global gUnknown_8132970 -gUnknown_8132970: @ 8132970 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8132950 - -.global gUnknown_813297C -gUnknown_813297C: @ 813297C -.byte 0xf6, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -endFuncAndScript - -.global gUnknown_813299C -gUnknown_813299C: @ 813299C -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813297C - -.global gUnknown_81329A8 -gUnknown_81329A8: @ 81329A8 -.byte 0xf6, 0x00, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -setAnimation 2 -executeScript WAIT_START_FUNC -endFuncAndScript - -.global gUnknown_81329E8 -gUnknown_81329E8: @ 81329E8 -.byte 0xf6, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -setAnimation 2 -executeScript WAIT_START_FUNC -endFuncAndScript - -.global gUnknown_8132A28 -gUnknown_8132A28: @ 8132A28 -.byte 0xf6, 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -setAnimation 2 -executeScript WAIT_START_FUNC -endFuncAndScript - -.global gUnknown_8132A68 -gUnknown_8132A68: @ 8132A68 -.byte 0xf6, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -setAnimation 2 -executeScript WAIT_START_FUNC -endFuncAndScript - -.global gUnknown_8132AA8 -gUnknown_8132AA8: @ 8132AA8 -.byte 0xf6, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -setAnimation 2 -executeScript WAIT_START_FUNC -endFuncAndScript - -.global gUnknown_8132AE8 -gUnknown_8132AE8: @ 8132AE8 -.byte 0xf6, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -setAnimation 2 -executeScript WAIT_START_FUNC -endFuncAndScript - -.global gUnknown_8132B28 -gUnknown_8132B28: @ 8132B28 -.byte 0xf6, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -setAnimation 2 -executeScript WAIT_START_FUNC -endFuncAndScript - -.global gUnknown_8132B68 -gUnknown_8132B68: @ 8132B68 -.byte 0xf6, 0x00, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -setAnimation 2 -executeScript WAIT_START_FUNC -endFuncAndScript - -.global gUnknown_8132BA8 -gUnknown_8132BA8: @ 8132BA8 -.byte 0xf6, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -executeScript LIVES_WARP_ARRIVE_FUNC -endFuncAndScript - -.global gUnknown_8132BD8 -gUnknown_8132BD8: @ 8132BD8 -.byte 0xf6, 0x00, 0x84, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -executeScript LIVES_WARP_ARRIVE2_FUNC -endFuncAndScript - -.global gUnknown_8132C08 -gUnknown_8132C08: @ 8132C08 -.byte 0xf6, 0x00, 0x8a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 1 -.byte 0x3c, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -MsgEnd 0 - -.global gUnknown_8132C68 -gUnknown_8132C68: @ 8132C68 -.byte 0xf6, 0x00, 0x93, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 1 -.byte 0x3c, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -MsgEnd 0 - -.global gUnknown_8132CC8 -gUnknown_8132CC8: @ 8132CC8 -.byte 0xf6, 0x00, 0x9c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 1 -.byte 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -MsgEnd 0 - -.global gUnknown_8132D28 -gUnknown_8132D28: @ 8132D28 -.byte 0xf6, 0x00, 0xa5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 1 -.byte 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -MsgEnd 0 - -.global gUnknown_8132D88 -gUnknown_8132D88: @ 8132D88 -.byte 0xf6, 0x00, 0xae, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 1 -.byte 0x3c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -msgEnd 0 - -.global gUnknown_8132DE8 -gUnknown_8132DE8: @ 8132DE8 -.byte 0xf6, 0x00, 0xb7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 1 -.byte 0x3c, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -msgEnd 0 - -.global gUnknown_8132E48 -gUnknown_8132E48: @ 8132E48 -.byte 0xf6, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 1 -.byte 0x3c, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -msgEnd 0 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8132EE8 -gUnknown_8132EE8: @ 8132EE8 -.byte 0xf6, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8132F48 -gUnknown_8132F48: @ 8132F48 -.byte 0xf6, 0x00, 0xd6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8132FA8 -gUnknown_8132FA8: @ 8132FA8 -.byte 0xf6, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -.byte 0x3c, 0x20, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8132FD8 -gUnknown_8132FD8: @ 8132FD8 -.byte 0xf6, 0x00, 0xe5, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -.byte 0x3c, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8133008 -gUnknown_8133008: @ 8133008 -.byte 0xf6, 0x00, 0xeb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8133068 -gUnknown_8133068: @ 8133068 -.byte 0xf6, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8136018 -.byte 0xd9, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8136004 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135FF8 -.byte 0xd9, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135FE4 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135FD8 -.byte 0x22, 0x01, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135FC4 -.byte 0xd9, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135FBC -.byte 0xd9, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135FB4 -.byte 0xd9, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135FA8 -.byte 0xd9, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135F9C -.byte 0xd9, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135F94 -.byte 0xd9, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135F8C -.byte 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135F84 -.byte 0xd9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135F7C -.byte 0xd9, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135F74 -.byte 0xd9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135F6C -.byte 0xd9, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135F64 -.byte 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x10, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135F5C -.byte 0xd9, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135F54 -.byte 0xd9, 0x00, 0x12, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135F48 -.byte 0xd9, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135F3C -.byte 0xd9, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135F30 -.byte 0xd9, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135F28 -.byte 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135F20 -.byte 0xd9, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135F18 -.byte 0xd9, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135F10 -.byte 0xd9, 0x00, 0x19, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135F04 -.byte 0xd9, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135EF8 -.byte 0xd9, 0x00, 0x1b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135EEC -.byte 0xd9, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135EE0 -.byte 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x73 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x74 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x75 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x77 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x78 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x79 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x7a -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135ED4 -.byte 0xd9, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135EC8 -.byte 0xd9, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135EBC -.byte 0xd9, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135EB0 -.byte 0xd9, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135EA4 -.byte 0xd9, 0x00, 0x22, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135E98 -.byte 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x7b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x7e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x1f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x7f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x80, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x21, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x81, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x22, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x82, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x23, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135E8C -.byte 0xd9, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135E80 -.byte 0xd9, 0x00, 0x25, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135E74 -.byte 0xd9, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135E68 -.byte 0xd9, 0x00, 0x27, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135E5C -.byte 0xd9, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135E50 -.byte 0xd9, 0x00, 0x29, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135E44 -.byte 0xd9, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135E38 -.byte 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x83 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x84 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x85 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x86 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x88 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x89 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x8a -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x8b -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135E2C -.byte 0xd9, 0x00, 0x2c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135E20 -.byte 0xd9, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135E14 -.byte 0xd9, 0x00, 0x2e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135E08 -.byte 0xd9, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135DFC -.byte 0xd9, 0x00, 0x30, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135DF0 -.byte 0xd9, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135DE4 -.byte 0xd9, 0x00, 0x32, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135DD8 -.byte 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x8c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x2c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x8d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x2d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x8e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x2e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x8f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x90, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x30, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x91, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x31, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x92, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x32, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x93, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x33, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135DCC -.byte 0xd9, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135DC0 -.byte 0xd9, 0x00, 0x35, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135DB4 -.byte 0xd9, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135DA8 -.byte 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x94 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x95 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x96 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x97 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135D9C -.byte 0xd9, 0x00, 0x38, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135D90 -.byte 0xd9, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135D84 -.byte 0xd9, 0x00, 0x3a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135D78 -.byte 0xd9, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135D6C -.byte 0xd9, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135D60 -.byte 0xd9, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135D54 -.byte 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x98 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x99 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x9a -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x9b -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x9c -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x9d -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x9e -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135D48 -.byte 0xd9, 0x00, 0x3f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135D3C -.byte 0xd9, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135D30 -.byte 0xd9, 0x00, 0x41, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135D24 -.byte 0xd9, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135D18 -.byte 0xd9, 0x00, 0x43, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135D0C -.byte 0xd9, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135D00 -.byte 0xd9, 0x00, 0x45, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135CF4 -.byte 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x3e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x9f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x3f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xa0, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x40, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xa1, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x41, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xa2, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x42, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xa3, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x43, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xa4, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x44, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xa5, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x45, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xa6, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x46, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135CE8 -.byte 0xd9, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135CDC -.byte 0xd9, 0x00, 0x48, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135CD0 -.byte 0xd9, 0x00, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135CC4 -.byte 0xd9, 0x00, 0x4a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135CB8 -.byte 0xd9, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135CAC -.byte 0xd9, 0x00, 0x4c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135CA0 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x46, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xa7, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x47, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xa8, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x48, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xa9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x49, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xaa, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x4a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xab, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x4b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xac, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x4c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xad, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x4d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135C94 -.byte 0xd9, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135C88 -.byte 0xd9, 0x00, 0x4f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135C7C -.byte 0xd9, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135C70 -.byte 0xd9, 0x00, 0x51, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135C64 -.byte 0xd9, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135C58 -.byte 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xae -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xaf -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xb0 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xb1 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xb2 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xb3 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135C4C -.byte 0xd9, 0x00, 0x54, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135C40 -.byte 0xd9, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135C40 -.byte 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xb4 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xb5 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xb6 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135C34 -.byte 0xd9, 0x00, 0x57, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135C28 -.byte 0xd9, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135C1C -.byte 0xd9, 0x00, 0x59, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135C10 -.byte 0xd9, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135C04 -.byte 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xb7 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xb8 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xb9 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xba -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xbb -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135BF8 -.byte 0xd9, 0x00, 0x5c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135BEC -.byte 0xd9, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135BE0 -.byte 0xd9, 0x00, 0x5e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135BD4 -.byte 0xd9, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135BC8 -.byte 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xbe -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xbf -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xc0 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xc1 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xc2 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135BBC -.byte 0xd9, 0x00, 0x61, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135BB0 -.byte 0xd9, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135BA4 -.byte 0xd9, 0x00, 0x63, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135B98 -.byte 0xd9, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135B8C -.byte 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xc5 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xc6 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xc7 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xc8 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xc9 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135B80 -.byte 0xd9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135B74 -.byte 0xd9, 0x00, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135B68 -.byte 0xd9, 0x00, 0x68, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135B5C -.byte 0xd9, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135B50 -.byte 0xd9, 0x00, 0x6a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135B44 -.byte 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x65, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xcc, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xcd, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x67, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xce, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x68, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xcf, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x69, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xd0, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x6a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xd1, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x12, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x6b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135B38 -.byte 0xd9, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135B2C -.byte 0xd9, 0x00, 0x6d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135B20 -.byte 0xd9, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135B14 -.byte 0xd9, 0x00, 0x6f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135B08 -.byte 0xd9, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135AFC -.byte 0xd9, 0x00, 0x71, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135AF0 -.byte 0xd9, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135AE4 -.byte 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xd4 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xd5 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xd6 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xd7 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xd8 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xd9 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x71, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xda -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xdb -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135AD8 -.byte 0xd9, 0x00, 0x74, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135ACC -.byte 0xd9, 0x00, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135AC0 -.byte 0xd9, 0x00, 0x76, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135AB4 -.byte 0xd9, 0x00, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135AA8 -.byte 0xd9, 0x00, 0x78, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135A9C -.byte 0xd9, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135A90 -.byte 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xdc -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xdd -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xde -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xdf -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xe0 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xe1 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xe2 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135A84 -.byte 0xd9, 0x00, 0x7b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135A78 -.byte 0xd9, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135A6C -.byte 0xd9, 0x00, 0x7d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135A60 -.byte 0xd9, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135A54 -.byte 0xd9, 0x00, 0x7f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135A48 -.byte 0xd9, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135A3C -.byte 0xd9, 0x00, 0x81, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135A30 -.byte 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x7a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xe3, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x7b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xe4, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x7c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xe5, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x7d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xe6, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x7e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xe7, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x7f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xe8, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x80, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xe9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x81, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0xea, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x15, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x82, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135A24 -.byte 0xd9, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135A18 -.byte 0xd9, 0x00, 0x84, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135A0C -.byte 0xd9, 0x00, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8135A00 -.byte 0xd9, 0x00, 0x86, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81359F4 -.byte 0xd9, 0x00, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81359E8 -.byte 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xeb -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xed -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xee -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xef -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xf0 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xf8 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81359E8 -gUnknown_81359E8: @ 81359E8 -.string "Main2 ExD\0" -.align 2, 0 - -.global gUnknown_81359F4 -gUnknown_81359F4: @ 81359F4 -.string "Main2 2A-1\0" -.align 2, 0 - -.global gUnknown_8135A00 -gUnknown_8135A00: @ 8135A00 -.string "Main2 1A-3\0" -.align 2, 0 - -.global gUnknown_8135A0C -gUnknown_8135A0C: @ 8135A0C -.string "Main2 1A-2\0" -.align 2, 0 - -.global gUnknown_8135A18 -gUnknown_8135A18: @ 8135A18 -.string "Main2 1A-1\0" -.align 2, 0 - -.global gUnknown_8135A24 -gUnknown_8135A24: @ 8135A24 -.string "Main ExD\0" -.align 2, 0 - -.global gUnknown_8135A30 -gUnknown_8135A30: @ 8135A30 -.string "Main 10A-8\0" -.align 2, 0 - -.global gUnknown_8135A3C -gUnknown_8135A3C: @ 8135A3C -.string "Main 10A-7\0" -.align 2, 0 - -.global gUnknown_8135A48 -gUnknown_8135A48: @ 8135A48 -.string "Main 10A-6\0" -.align 2, 0 - -.global gUnknown_8135A54 -gUnknown_8135A54: @ 8135A54 -.string "Main 10A-5\0" -.align 2, 0 - -.global gUnknown_8135A60 -gUnknown_8135A60: @ 8135A60 -.string "Main 10A-4\0" -.align 2, 0 - -.global gUnknown_8135A6C -gUnknown_8135A6C: @ 8135A6C -.string "Main 10A-3\0" -.align 2, 0 - -.global gUnknown_8135A78 -gUnknown_8135A78: @ 8135A78 -.string "Main 10A-2\0" -.align 2, 0 - -.global gUnknown_8135A84 -gUnknown_8135A84: @ 8135A84 -.string "Main 10A-1\0" -.align 2, 0 - -.global gUnknown_8135A90 -gUnknown_8135A90: @ 8135A90 -.string "Main 9A-15\0" -.align 2, 0 - -.global gUnknown_8135A9C -gUnknown_8135A9C: @ 8135A9C -.string "Main 9A-14\0" -.align 2, 0 - -.global gUnknown_8135AA8 -gUnknown_8135AA8: @ 8135AA8 -.string "Main 9A-13\0" -.align 2, 0 - -.global gUnknown_8135AB4 -gUnknown_8135AB4: @ 8135AB4 -.string "Main 9A-12\0" -.align 2, 0 - -.global gUnknown_8135AC0 -gUnknown_8135AC0: @ 8135AC0 -.string "Main 9A-11\0" -.align 2, 0 - -.global gUnknown_8135ACC -gUnknown_8135ACC: @ 8135ACC -.string "Main 9A-10\0" -.align 2, 0 - -.global gUnknown_8135AD8 -gUnknown_8135AD8: @ 8135AD8 -.string "Main 9A-9\0" -.align 2, 0 - -.global gUnknown_8135AE4 -gUnknown_8135AE4: @ 8135AE4 -.string "Main 9A-8\0" -.align 2, 0 - -.global gUnknown_8135AF0 -gUnknown_8135AF0: @ 8135AF0 -.string "Main 9A-7\0" -.align 2, 0 - -.global gUnknown_8135AFC -gUnknown_8135AFC: @ 8135AFC -.string "Main 9A-6\0" -.align 2, 0 - -.global gUnknown_8135B08 -gUnknown_8135B08: @ 8135B08 -.string "Main 9A-5\0" -.align 2, 0 - -.global gUnknown_8135B14 -gUnknown_8135B14: @ 8135B14 -.string "Main 9A-4\0" -.align 2, 0 - -.global gUnknown_8135B20 -gUnknown_8135B20: @ 8135B20 -.string "Main 9A-3\0" -.align 2, 0 - -.global gUnknown_8135B2C -gUnknown_8135B2C: @ 8135B2C -.string "Main 9A-2\0" -.align 2, 0 - -.global gUnknown_8135B38 -gUnknown_8135B38: @ 8135B38 -.string "Main 9A-1\0" -.align 2, 0 - -.global gUnknown_8135B44 -gUnknown_8135B44: @ 8135B44 -.string "Main 8B-6\0" -.align 2, 0 - -.global gUnknown_8135B50 -gUnknown_8135B50: @ 8135B50 -.string "Main 8B-5\0" -.align 2, 0 - -.global gUnknown_8135B5C -gUnknown_8135B5C: @ 8135B5C -.string "Main 8B-4\0" -.align 2, 0 - -.global gUnknown_8135B68 -gUnknown_8135B68: @ 8135B68 -.string "Main 8B-3\0" -.align 2, 0 - -.global gUnknown_8135B74 -gUnknown_8135B74: @ 8135B74 -.string "Main 8B-2\0" -.align 2, 0 - -.global gUnknown_8135B80 -gUnknown_8135B80: @ 8135B80 -.string "Main 8B-1\0" -.align 2, 0 - -.global gUnknown_8135B8C -gUnknown_8135B8C: @ 8135B8C -.string "Main 8A-5\0" -.align 2, 0 - -.global gUnknown_8135B98 -gUnknown_8135B98: @ 8135B98 -.string "Main 8A-4\0" -.align 2, 0 - -.global gUnknown_8135BA4 -gUnknown_8135BA4: @ 8135BA4 -.string "Main 8A-3\0" -.align 2, 0 - -.global gUnknown_8135BB0 -gUnknown_8135BB0: @ 8135BB0 -.string "Main 8A-2\0" -.align 2, 0 - -.global gUnknown_8135BBC -gUnknown_8135BBC: @ 8135BBC -.string "Main 8A-1\0" -.align 2, 0 - -.global gUnknown_8135BC8 -gUnknown_8135BC8: @ 8135BC8 -.string "Main 7B-5\0" -.align 2, 0 - -.global gUnknown_8135BD4 -gUnknown_8135BD4: @ 8135BD4 -.string "Main 7B-4\0" -.align 2, 0 - -.global gUnknown_8135BE0 -gUnknown_8135BE0: @ 8135BE0 -.string "Main 7B-3\0" -.align 2, 0 - -.global gUnknown_8135BEC -gUnknown_8135BEC: @ 8135BEC -.string "Main 7B-2\0" -.align 2, 0 - -.global gUnknown_8135BF8 -gUnknown_8135BF8: @ 8135BF8 -.string "Main 7B-1\0" -.align 2, 0 - -.global gUnknown_8135C04 -gUnknown_8135C04: @ 8135C04 -.string "Main 7A-5\0" -.align 2, 0 - -.global gUnknown_8135C10 -gUnknown_8135C10: @ 8135C10 -.string "Main 7A-4\0" -.align 2, 0 - -.global gUnknown_8135C1C -gUnknown_8135C1C: @ 8135C1C -.string "Main 7A-3\0" -.align 2, 0 - -.global gUnknown_8135C28 -gUnknown_8135C28: @ 8135C28 -.string "Main 7A-2\0" -.align 2, 0 - -.global gUnknown_8135C34 -gUnknown_8135C34: @ 8135C34 -.string "Main 7A-1\0" -.align 2, 0 - -.global gUnknown_8135C40 -gUnknown_8135C40: @ 8135C40 -.string "Main 6A-2\0" -.align 2, 0 - -.global gUnknown_8135C4C -gUnknown_8135C4C: @ 8135C4C -.string "Main 6A-1\0" -.align 2, 0 - -.global gUnknown_8135C58 -gUnknown_8135C58: @ 8135C58 -.string "Main 5B-5\0" -.align 2, 0 - -.global gUnknown_8135C64 -gUnknown_8135C64: @ 8135C64 -.string "Main 5B-4\0" -.align 2, 0 - -.global gUnknown_8135C70 -gUnknown_8135C70: @ 8135C70 -.string "Main 5B-3\0" -.align 2, 0 - -.global gUnknown_8135C7C -gUnknown_8135C7C: @ 8135C7C -.string "Main 5B-2\0" -.align 2, 0 - -.global gUnknown_8135C88 -gUnknown_8135C88: @ 8135C88 -.string "Main 5B-1\0" -.align 2, 0 - -.global gUnknown_8135C94 -gUnknown_8135C94: @ 8135C94 -.string "Main 5B-0\0" -.align 2, 0 - -.global gUnknown_8135CA0 -gUnknown_8135CA0: @ 8135CA0 -.string "Main 5A-6\0" -.align 2, 0 - -.global gUnknown_8135CAC -gUnknown_8135CAC: @ 8135CAC -.string "Main 5A-5\0" -.align 2, 0 - -.global gUnknown_8135CB8 -gUnknown_8135CB8: @ 8135CB8 -.string "Main 5A-4\0" -.align 2, 0 - -.global gUnknown_8135CC4 -gUnknown_8135CC4: @ 8135CC4 -.string "Main 5A-3\0" -.align 2, 0 - -.global gUnknown_8135CD0 -gUnknown_8135CD0: @ 8135CD0 -.string "Main 5A-2\0" -.align 2, 0 - -.global gUnknown_8135CDC -gUnknown_8135CDC: @ 8135CDC -.string "Main 5A-1\0" -.align 2, 0 - -.global gUnknown_8135CE8 -gUnknown_8135CE8: @ 8135CE8 -.string "Main 5A-0\0" -.align 2, 0 - -.global gUnknown_8135CF4 -gUnknown_8135CF4: @ 8135CF4 -.string "Main 4B-7\0" -.align 2, 0 - -.global gUnknown_8135D00 -gUnknown_8135D00: @ 8135D00 -.string "Main 4B-6\0" -.align 2, 0 - -.global gUnknown_8135D0C -gUnknown_8135D0C: @ 8135D0C -.string "Main 4B-5\0" -.align 2, 0 - -.global gUnknown_8135D18 -gUnknown_8135D18: @ 8135D18 -.string "Main 4B-4\0" -.align 2, 0 - -.global gUnknown_8135D24 -gUnknown_8135D24: @ 8135D24 -.string "Main 4B-3\0" -.align 2, 0 - -.global gUnknown_8135D30 -gUnknown_8135D30: @ 8135D30 -.string "Main 4B-2\0" -.align 2, 0 - -.global gUnknown_8135D3C -gUnknown_8135D3C: @ 8135D3C -.string "Main 4B-1\0" -.align 2, 0 - -.global gUnknown_8135D48 -gUnknown_8135D48: @ 8135D48 -.string "Main 4B-0\0" -.align 2, 0 - -.global gUnknown_8135D54 -gUnknown_8135D54: @ 8135D54 -.string "Main 4A-6\0" -.align 2, 0 - -.global gUnknown_8135D60 -gUnknown_8135D60: @ 8135D60 -.string "Main 4A-5\0" -.align 2, 0 - -.global gUnknown_8135D6C -gUnknown_8135D6C: @ 8135D6C -.string "Main 4A-4\0" -.align 2, 0 - -.global gUnknown_8135D78 -gUnknown_8135D78: @ 8135D78 -.string "Main 4A-3\0" -.align 2, 0 - -.global gUnknown_8135D84 -gUnknown_8135D84: @ 8135D84 -.string "Main 4A-2\0" -.align 2, 0 - -.global gUnknown_8135D90 -gUnknown_8135D90: @ 8135D90 -.string "Main 4A-1\0" -.align 2, 0 - -.global gUnknown_8135D9C -gUnknown_8135D9C: @ 8135D9C -.string "Main 4A-0\0" -.align 2, 0 - -.global gUnknown_8135DA8 -gUnknown_8135DA8: @ 8135DA8 -.string "Main 3A-11\0" -.align 2, 0 - -.global gUnknown_8135DB4 -gUnknown_8135DB4: @ 8135DB4 -.string "Main 3A-10\0" -.align 2, 0 - -.global gUnknown_8135DC0 -gUnknown_8135DC0: @ 8135DC0 -.string "Main 3A-9\0" -.align 2, 0 - -.global gUnknown_8135DCC -gUnknown_8135DCC: @ 8135DCC -.string "Main 3A-8\0" -.align 2, 0 - -.global gUnknown_8135DD8 -gUnknown_8135DD8: @ 8135DD8 -.string "Main 3A-7\0" -.align 2, 0 - -.global gUnknown_8135DE4 -gUnknown_8135DE4: @ 8135DE4 -.string "Main 3A-6\0" -.align 2, 0 - -.global gUnknown_8135DF0 -gUnknown_8135DF0: @ 8135DF0 -.string "Main 3A-5\0" -.align 2, 0 - -.global gUnknown_8135DFC -gUnknown_8135DFC: @ 8135DFC -.string "Main 3A-4\0" -.align 2, 0 - -.global gUnknown_8135E08 -gUnknown_8135E08: @ 8135E08 -.string "Main 3A-3\0" -.align 2, 0 - -.global gUnknown_8135E14 -gUnknown_8135E14: @ 8135E14 -.string "Main 3A-2\0" -.align 2, 0 - -.global gUnknown_8135E20 -gUnknown_8135E20: @ 8135E20 -.string "Main 3A-1\0" -.align 2, 0 - -.global gUnknown_8135E2C -gUnknown_8135E2C: @ 8135E2C -.string "Main 3A-0\0" -.align 2, 0 - -.global gUnknown_8135E38 -gUnknown_8135E38: @ 8135E38 -.string "Main 2B-8\0" -.align 2, 0 - -.global gUnknown_8135E44 -gUnknown_8135E44: @ 8135E44 -.string "Main 2B-7\0" -.align 2, 0 - -.global gUnknown_8135E50 -gUnknown_8135E50: @ 8135E50 -.string "Main 2B-6\0" -.align 2, 0 - -.global gUnknown_8135E5C -gUnknown_8135E5C: @ 8135E5C -.string "Main 2B-5\0" -.align 2, 0 - -.global gUnknown_8135E68 -gUnknown_8135E68: @ 8135E68 -.string "Main 2B-4\0" -.align 2, 0 - -.global gUnknown_8135E74 -gUnknown_8135E74: @ 8135E74 -.string "Main 2B-3\0" -.align 2, 0 - -.global gUnknown_8135E80 -gUnknown_8135E80: @ 8135E80 -.string "Main 2B-2\0" -.align 2, 0 - -.global gUnknown_8135E8C -gUnknown_8135E8C: @ 8135E8C -.string "Main 2B-1\0" -.align 2, 0 - -.global gUnknown_8135E98 -gUnknown_8135E98: @ 8135E98 -.string "Main 2A-6\0" -.align 2, 0 - -.global gUnknown_8135EA4 -gUnknown_8135EA4: @ 8135EA4 -.string "Main 2A-5\0" -.align 2, 0 - -.global gUnknown_8135EB0 -gUnknown_8135EB0: @ 8135EB0 -.string "Main 2A-4\0" -.align 2, 0 - -.global gUnknown_8135EBC -gUnknown_8135EBC: @ 8135EBC -.string "Main 2A-3\0" -.align 2, 0 - -.global gUnknown_8135EC8 -gUnknown_8135EC8: @ 8135EC8 -.string "Main 2A-2\0" -.align 2, 0 - -.global gUnknown_8135ED4 -gUnknown_8135ED4: @ 8135ED4 -.string "Main 2A-1\0" -.align 2, 0 - -.global gUnknown_8135EE0 -gUnknown_8135EE0: @ 8135EE0 -.string "Main 1A-3\0" -.align 2, 0 - -.global gUnknown_8135EEC -gUnknown_8135EEC: @ 8135EEC -.string "Main 1A-2\0" -.align 2, 0 - -.global gUnknown_8135EF8 -gUnknown_8135EF8: @ 8135EF8 -.string "Main 1A-1\0" -.align 2, 0 - -.global gUnknown_8135F04 -gUnknown_8135F04: @ 8135F04 -.string "Main 0A-1\0" -.align 2, 0 - -.global gUnknown_8135F10 -gUnknown_8135F10: @ 8135F10 -.string "Demo 03\0" -.align 2, 0 - -.global gUnknown_8135F18 -gUnknown_8135F18: @ 8135F18 -.string "Demo 02\0" -.align 2, 0 - -.global gUnknown_8135F20 -gUnknown_8135F20: @ 8135F20 -.string "Demo 01\0" -.align 2, 0 - -.global gUnknown_8135F28 -gUnknown_8135F28: @ 8135F28 -.string "Ending\0" -.align 2, 0 - -.global gUnknown_8135F30 -gUnknown_8135F30: @ 8135F30 -.string "Main 10A\0" -.align 2, 0 - -.global gUnknown_8135F3C -gUnknown_8135F3C: @ 8135F3C -.string "Main 9A-9〜\0" -.align 2, 0 - -.global gUnknown_8135F48 -gUnknown_8135F48: @ 8135F48 -.string "Main 9A-1〜\0" -.align 2, 0 - -.global gUnknown_8135F54 -gUnknown_8135F54: @ 8135F54 -.string "Main 8B\0" -.align 2, 0 - -.global gUnknown_8135F5C -gUnknown_8135F5C: @ 8135F5C -.string "Main 8A\0" -.align 2, 0 - -.global gUnknown_8135F64 -gUnknown_8135F64: @ 8135F64 -.string "Main 7B\0" -.align 2, 0 - -.global gUnknown_8135F6C -gUnknown_8135F6C: @ 8135F6C -.string "Main 7A\0" -.align 2, 0 - -.global gUnknown_8135F74 -gUnknown_8135F74: @ 8135F74 -.string "Main 6A\0" -.align 2, 0 - -.global gUnknown_8135F7C -gUnknown_8135F7C: @ 8135F7C -.string "Main 5B\0" -.align 2, 0 - -.global gUnknown_8135F84 -gUnknown_8135F84: @ 8135F84 -.string "Main 5A\0" -.align 2, 0 - -.global gUnknown_8135F8C -gUnknown_8135F8C: @ 8135F8C -.string "Main 4B\0" -.align 2, 0 - -.global gUnknown_8135F94 -gUnknown_8135F94: @ 8135F94 -.string "Main 4A\0" -.align 2, 0 - -.global gUnknown_8135F9C -gUnknown_8135F9C: @ 8135F9C -.string "Main 3A-8〜\0" -.align 2, 0 - -.global gUnknown_8135FA8 -gUnknown_8135FA8: @ 8135FA8 -.string "Main 3A-0〜\0" -.align 2, 0 - -.global gUnknown_8135FB4 -gUnknown_8135FB4: @ 8135FB4 -.string "Main 2B\0" -.align 2, 0 - -.global gUnknown_8135FBC -gUnknown_8135FBC: @ 8135FBC -.string "Main 2A\0" -.align 2, 0 - -.global gUnknown_8135FC4 -gUnknown_8135FC4: @ 8135FC4 -.string "Main 0A〜1A Demo\0" -.align 2, 0 - -.global gUnknown_8135FD8 -gUnknown_8135FD8: @ 8135FD8 -.string " Farewell\0" -.align 2, 0 - -.global gUnknown_8135FE4 -gUnknown_8135FE4: @ 8135FE4 -.string "Main 8A〜10A Ending\0" -.align 2, 0 - -.global gUnknown_8135FF8 -gUnknown_8135FF8: @ 8135FF8 -.string "Main 5A〜7B\0" -.align 2, 0 - -.global gUnknown_8136004 -gUnknown_8136004: @ 8136004 -.string "Main 0A〜4B Demo\0" -.align 2, 0 - -.global gUnknown_8136018 -gUnknown_8136018: @ 8136018 -.string " I{APOSTROPHE}m the event test Pokémon!\n" -.string "Motions will differ from the real thing!\0" -.align 2, 0 - -.global gUnknown_8136060 -gUnknown_8136060: @ 8136060 -.byte 0xf6, 0x00, 0x8f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd5, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8136018 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81376BC -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81376B0 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81376A4 -.byte 0x22, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813769C -.byte 0xd9, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137694 -.byte 0xd9, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813768C -.byte 0xd9, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137684 -.byte 0xd9, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813767C -.byte 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137674 -.byte 0xd9, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813766C -.byte 0xd9, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137664 -.byte 0xd9, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813765C -.byte 0xd9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137654 -.byte 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137648 -.byte 0xd9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813763C -.byte 0xd9, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137630 -.byte 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xf9 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xfa -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xfb -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137624 -.byte 0xd9, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137618 -.byte 0xd9, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813760C -.byte 0xd9, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137600 -.byte 0xd9, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81375F4 -.byte 0xd9, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81375E8 -.byte 0xd9, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81375DC -.byte 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x05, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x08, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x09, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81375D0 -.byte 0xd9, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81375C4 -.byte 0xd9, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81375B8 -.byte 0xd9, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81375AC -.byte 0xd9, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81375A0 -.byte 0xd9, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137594 -.byte 0xd9, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137588 -.byte 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x0f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x10, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x11, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x12, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x16, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x17, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x18, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813757C -.byte 0xd9, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137570 -.byte 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x1d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x1e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137564 -.byte 0xd9, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137558 -.byte 0xd9, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813754C -.byte 0xd9, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137540 -.byte 0xd9, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137534 -.byte 0xd9, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137528 -.byte 0xd9, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813751C -.byte 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x24, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x28, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x2a, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x2c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x2e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137510 -.byte 0xd9, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137504 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x32, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x33, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81374F8 -.byte 0xd9, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81374EC -.byte 0xd9, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81374E0 -.byte 0xd9, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81374D4 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x38, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x3b, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x3c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81374C8 -.byte 0xd9, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81374BC -.byte 0xd9, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81374B0 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x40, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x41, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x42, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81374A4 -.byte 0xd9, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137498 -.byte 0xd9, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813748C -.byte 0xd9, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137480 -.byte 0xd9, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137474 -.byte 0xd9, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137468 -.byte 0xd9, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813745C -.byte 0xd9, 0x00, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137450 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x46, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x47, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x48, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x49, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x4a, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x4c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x4e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x4f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137444 -.byte 0xd9, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137438 -.byte 0xd9, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813742C -.byte 0xd9, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137420 -.byte 0xd9, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137414 -.byte 0xd9, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137408 -.byte 0xd9, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81373FC -.byte 0xd9, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81373F0 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x56, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x57, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x58, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x59, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x5b, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x5d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x5f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x61, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81373F0 -gUnknown_81373F0: @ 81373F0 -.string "Sub9 1C-1\0" -.align 2, 0 - -.global gUnknown_81373FC -gUnknown_81373FC: @ 81373FC -.string "Sub9 1B-2\0" -.align 2, 0 - -.global gUnknown_8137408 -gUnknown_8137408: @ 8137408 -.string "Sub9 1B-1\0" -.align 2, 0 - -.global gUnknown_8137414 -gUnknown_8137414: @ 8137414 -.string "Sub9 1A-5\0" -.align 2, 0 - -.global gUnknown_8137420 -gUnknown_8137420: @ 8137420 -.string "Sub9 1A-4\0" -.align 2, 0 - -.global gUnknown_813742C -gUnknown_813742C: @ 813742C -.string "Sub9 1A-3\0" -.align 2, 0 - -.global gUnknown_8137438 -gUnknown_8137438: @ 8137438 -.string "Sub9 1A-2\0" -.align 2, 0 - -.global gUnknown_8137444 -gUnknown_8137444: @ 8137444 -.string "Sub9 1A-1\0" -.align 2, 0 - -.global gUnknown_8137450 -gUnknown_8137450: @ 8137450 -.string "Sub8 1A-8\0" -.align 2, 0 - -.global gUnknown_813745C -gUnknown_813745C: @ 813745C -.string "Sub8 1A-7\0" -.align 2, 0 - -.global gUnknown_8137468 -gUnknown_8137468: @ 8137468 -.string "Sub8 1A-6\0" -.align 2, 0 - -.global gUnknown_8137474 -gUnknown_8137474: @ 8137474 -.string "Sub8 1A-5\0" -.align 2, 0 - -.global gUnknown_8137480 -gUnknown_8137480: @ 8137480 -.string "Sub8 1A-4\0" -.align 2, 0 - -.global gUnknown_813748C -gUnknown_813748C: @ 813748C -.string "Sub8 1A-3\0" -.align 2, 0 - -.global gUnknown_8137498 -gUnknown_8137498: @ 8137498 -.string "Sub8 1A-2\0" -.align 2, 0 - -.global gUnknown_81374A4 -gUnknown_81374A4: @ 81374A4 -.string "Sub8 1A-1\0" -.align 2, 0 - -.global gUnknown_81374B0 -gUnknown_81374B0: @ 81374B0 -.string "Sub7 1A-3\0" -.align 2, 0 - -.global gUnknown_81374BC -gUnknown_81374BC: @ 81374BC -.string "Sub7 1A-2\0" -.align 2, 0 - -.global gUnknown_81374C8 -gUnknown_81374C8: @ 81374C8 -.string "Sub7 1A-1\0" -.align 2, 0 - -.global gUnknown_81374D4 -gUnknown_81374D4: @ 81374D4 -.string "Sub6 1B-2\0" -.align 2, 0 - -.global gUnknown_81374E0 -gUnknown_81374E0: @ 81374E0 -.string "Sub6 1B-1\0" -.align 2, 0 - -.global gUnknown_81374EC -gUnknown_81374EC: @ 81374EC -.string "Sub6 1A-2\0" -.align 2, 0 - -.global gUnknown_81374F8 -gUnknown_81374F8: @ 81374F8 -.string "Sub6 1A-1\0" -.align 2, 0 - -.global gUnknown_8137504 -gUnknown_8137504: @ 8137504 -.string "Sub5 1A-2\0" -.align 2, 0 - -.global gUnknown_8137510 -gUnknown_8137510: @ 8137510 -.string "Sub5 1A-1\0" -.align 2, 0 - -.global gUnknown_813751C -gUnknown_813751C: @ 813751C -.string "Sub4 1F-1\0" -.align 2, 0 - -.global gUnknown_8137528 -gUnknown_8137528: @ 8137528 -.string "Sub4 1E-1\0" -.align 2, 0 - -.global gUnknown_8137534 -gUnknown_8137534: @ 8137534 -.string "Sub4 1D-1\0" -.align 2, 0 - -.global gUnknown_8137540 -gUnknown_8137540: @ 8137540 -.string "Sub4 1C-1\0" -.align 2, 0 - -.global gUnknown_813754C -gUnknown_813754C: @ 813754C -.string "Sub4 1B-1\0" -.align 2, 0 - -.global gUnknown_8137558 -gUnknown_8137558: @ 8137558 -.string "Sub4 1A-2\0" -.align 2, 0 - -.global gUnknown_8137564 -gUnknown_8137564: @ 8137564 -.string "Sub4 1A-1\0" -.align 2, 0 - -.global gUnknown_8137570 -gUnknown_8137570: @ 8137570 -.string "Sub3 1A-2\0" -.align 2, 0 - -.global gUnknown_813757C -gUnknown_813757C: @ 813757C -.string "Sub3 1A-1\0" -.align 2, 0 - -.global gUnknown_8137588 -gUnknown_8137588: @ 8137588 -.string "Sub2 2A-3\0" -.align 2, 0 - -.global gUnknown_8137594 -gUnknown_8137594: @ 8137594 -.string "Sub2 2A-2\0" -.align 2, 0 - -.global gUnknown_81375A0 -gUnknown_81375A0: @ 81375A0 -.string "Sub2 2A-1\0" -.align 2, 0 - -.global gUnknown_81375AC -gUnknown_81375AC: @ 81375AC -.string "Sub2 1A-4\0" -.align 2, 0 - -.global gUnknown_81375B8 -gUnknown_81375B8: @ 81375B8 -.string "Sub2 1A-3\0" -.align 2, 0 - -.global gUnknown_81375C4 -gUnknown_81375C4: @ 81375C4 -.string "Sub2 1A-2\0" -.align 2, 0 - -.global gUnknown_81375D0 -gUnknown_81375D0: @ 81375D0 -.string "Sub2 1A-1\0" -.align 2, 0 - -.global gUnknown_81375DC -gUnknown_81375DC: @ 81375DC -.string "Sub1 2A-2\0" -.align 2, 0 - -.global gUnknown_81375E8 -gUnknown_81375E8: @ 81375E8 -.string "Sub1 2A-1\0" -.align 2, 0 - -.global gUnknown_81375F4 -gUnknown_81375F4: @ 81375F4 -.string "Sub1 1C-1\0" -.align 2, 0 - -.global gUnknown_8137600 -gUnknown_8137600: @ 8137600 -.string "Sub1 1B-1\0" -.align 2, 0 - -.global gUnknown_813760C -gUnknown_813760C: @ 813760C -.string "Sub1 1A-3\0" -.align 2, 0 - -.global gUnknown_8137618 -gUnknown_8137618: @ 8137618 -.string "Sub1 1A-2\0" -.align 2, 0 - -.global gUnknown_8137624 -gUnknown_8137624: @ 8137624 -.string "Sub1 1A-1\0" -.align 2, 0 - -.global gUnknown_8137630 -gUnknown_8137630: @ 8137630 -.string "Sub0 1A-3\0" -.align 2, 0 - -.global gUnknown_813763C -gUnknown_813763C: @ 813763C -.string "Sub0 1A-2\0" -.align 2, 0 - -.global gUnknown_8137648 -gUnknown_8137648: @ 8137648 -.string "Sub0 1A-1\0" -.align 2, 0 - -.global gUnknown_8137654 -gUnknown_8137654: @ 8137654 -.string "Sub 9\0" -.align 2, 0 - -.global gUnknown_813765C -gUnknown_813765C: @ 813765C -.string "Sub 8\0" -.align 2, 0 - -.global gUnknown_8137664 -gUnknown_8137664: @ 8137664 -.string "Sub 7\0" -.align 2, 0 - -.global gUnknown_813766C -gUnknown_813766C: @ 813766C -.string "Sub 6\0" -.align 2, 0 - -.global gUnknown_8137674 -gUnknown_8137674: @ 8137674 -.string "Sub 5\0" -.align 2, 0 - -.global gUnknown_813767C -gUnknown_813767C: @ 813767C -.string "Sub 4\0" -.align 2, 0 - -.global gUnknown_8137684 -gUnknown_8137684: @ 8137684 -.string "Sub 3\0" -.align 2, 0 - -.global gUnknown_813768C -gUnknown_813768C: @ 813768C -.string "Sub 2\0" -.align 2, 0 - -.global gUnknown_8137694 -gUnknown_8137694: @ 8137694 -.string "Sub 1\0" -.align 2, 0 - -.global gUnknown_813769C -gUnknown_813769C: @ 813769C -.string "Sub 0\0" -.align 2, 0 - -.global gUnknown_81376A4 -gUnknown_81376A4: @ 81376A4 -.string " Farewell.\0" -.align 2, 0 - -.global gUnknown_81376B0 -gUnknown_81376B0: @ 81376B0 -.string "Sub 5〜9\0" -.align 2, 0 - -.global gUnknown_81376BC -gUnknown_81376BC: @ 81376BC -.string "Sub 0〜4\0" -.align 2, 0 - -.global gUnknown_81376C8 -gUnknown_81376C8: @ 81376C8 -.byte 0xf6, 0x00, 0xcb, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -.byte 0x55, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81376F8 -gUnknown_81376F8: @ 81376F8 -.byte 0xf6, 0x00, 0xd1, 0x04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xd5, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137A58 -.byte 0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137A4C -.byte 0xd9, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137A40 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137A34 -.byte 0xd9, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8137A28 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81376A4 -.byte 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x01, 0x00, 0x62, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x01, 0x00, 0x63, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x97, 0x00, 0x02, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x97, 0x00, 0x02, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x97, 0x00, 0x02, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x97, 0x00, 0x02, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x97, 0x00, 0x02, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x97, 0x00, 0x02, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x97, 0x00, 0x02, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x97, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8137A28 -gUnknown_8137A28: @ 8137A28 -.string "Effect 4\0" -.align 2, 0 - -.global gUnknown_8137A34 -gUnknown_8137A34: @ 8137A34 -.string "Effect 3\0" -.align 2, 0 - -.global gUnknown_8137A40 -gUnknown_8137A40: @ 8137A40 -.string "Effect 2\0" -.align 2, 0 - -.global gUnknown_8137A4C -gUnknown_8137A4C: @ 8137A4C -.string "Effect 1\0" -.align 2, 0 - -.global gUnknown_8137A58 -gUnknown_8137A58: @ 8137A58 -.string " Which effect should I use?\0" -.align 2, 0 - -.global gUnknown_8137A74 -gUnknown_8137A74: @ 8137A74 -.byte 0xf6, 0x00, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8137B24 -gUnknown_8137B24: @ 8137B24 -.byte 0xf6, 0x00, 0x15, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81328EC -.byte 0x59, 0x00, 0xf8, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x56, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x56, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xb4 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xb4 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xb4 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xb4 -.byte 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8137DA4 -gUnknown_8137DA4: @ 8137DA4 -.byte 0x00, 0x02, 0x00, 0x00, 0x0b, 0x1f, 0x02, 0x02 -.4byte gUnknown_81329A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x02, 0x00, 0x00, 0x08, 0x1f, 0x02, 0x02 -.4byte gUnknown_81329E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8137DD4 -gUnknown_8137DD4: @ 8137DD4 -.byte 0x00, 0x04, 0x00, 0x00, 0x1c, 0x21, 0x00, 0x02 -.4byte gUnknown_8132A28 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1c, 0x23, 0x00, 0x02 -.4byte gUnknown_8132A68 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8137E04 -gUnknown_8137E04: @ 8137E04 -.byte 0x00, 0x06, 0x00, 0x00, 0x25, 0x1f, 0x02, 0x02 -.4byte gUnknown_8132AA8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x06, 0x00, 0x00, 0x29, 0x1f, 0x02, 0x02 -.4byte gUnknown_8132AE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8137E34 -gUnknown_8137E34: @ 8137E34 -.byte 0x00, 0x04, 0x00, 0x00, 0x1c, 0x1b, 0x02, 0x02 -.4byte gUnknown_8132B28 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1c, 0x1d, 0x02, 0x02 -.4byte gUnknown_8132B68 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8137E64 -gUnknown_8137E64: @ 8137E64 -.byte 0x00, 0x00, 0x00, 0x00, 0x0b, 0x1f, 0x02, 0x02 -.4byte gUnknown_8132BA8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x08, 0x1f, 0x02, 0x02 -.4byte gUnknown_8132BD8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8137E94 -gUnknown_8137E94: @ 8137E94 -.byte 0x48, 0x00, 0x00, 0x00, 0x0c, 0x1c, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8132C08 -.byte 0x00, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x10, 0x1c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8132C68 -.byte 0x00, 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x14, 0x1c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8132CC8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x47, 0x00, 0x00, 0x00, 0x18, 0x1c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8132D28 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x24, 0x1c, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8132D88 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x28, 0x1c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8132DE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x11, 0x15, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8132E48 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x30, 0x00, 0x00, 0x00, 0x14, 0x15, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8132EE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x17, 0x15, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8132F48 -.byte 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x20, 0x1c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8133008 -.byte 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x1a, 0x19, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8133068 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x25, 0x00, 0x00, 0x00, 0x1e, 0x19, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8136060 -.byte 0x00, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x22, 0x18, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x37, 0x18, 0x02, 0x02 -.4byte gUnknown_81376C8 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81376F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0x54, 0x18, 0x02 -warpDungeon 0x00 -.byte 0x00 -.byte 0x6a, 0x00, 0x00, 0x00, 0x3c, 0x18, 0x02 -warpDungeon 0x00 -.byte 0x00 - -.global gUnknown_8138014 -gUnknown_8138014: @ 8138014 -.byte 0x0e, 0x00, 0x03, 0x01, 0x0d, 0x17, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8132FA8 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x03, 0x01, 0x0a, 0x17, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8132FD8 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8138044 -gUnknown_8138044: @ 8138044 -.byte 0x05, 0x00, 0x01, 0x01, 0x55, 0x18, 0x00, 0x02 -.4byte gUnknown_8137A74 - -.global gUnknown_8138050 -gUnknown_8138050: @ 8138050 -.byte 0x05, 0x00, 0x02, 0x01, 0x55, 0x18, 0x02, 0x02 -.4byte gUnknown_8137B24 - -.global gUnknown_813805C -gUnknown_813805C: @ 813805C -.byte 0x06, 0x0c, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00 -.4byte gUnknown_8132944 -.byte 0x0c, 0x06, 0x00, 0x00, 0x36, 0x69, 0x00, 0x00 -.4byte gUnknown_8132970 -.byte 0x06, 0x0c, 0x00, 0x00, 0x8a, 0x1e, 0x00, 0x00 -.4byte gUnknown_813299C - -.global gUnknown_8138080 -gUnknown_8138080: @ 8138080 -.4byte gUnknown_8132918 - -.global gUnknown_8138084 -gUnknown_8138084: @ 8138084 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_813805C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8138080 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8137DA4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8137DD4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8137E04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8137E34 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8137E64 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81381EC -gUnknown_81381EC: @ 81381EC -.byte 0x10, 0x00, 0x00, 0x00 -.4byte gUnknown_8137E94 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8138014 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8138044 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8138050 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813823C -gUnknown_813823C: @ 813823C -.byte 0x09, 0x00, 0x00, 0x00 -.4byte gUnknown_8138084 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81381EC - -.global gUnknown_813824C -gUnknown_813824C: @ 813824C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8138254 -gUnknown_8138254: @ 8138254 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_813823C -.4byte gUnknown_813824C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8138268 -gUnknown_8138268: @ 8138268 -.byte 0xf6, 0x00, 0x9c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x04, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x02, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x03, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x04, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x05, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x06, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x07, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x08, 0x00 -.byte 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x04, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x09, 0x00 -.byte 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x0a, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x04, 0x0b, 0x00 -.byte 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x0c, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x0e, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x07, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x07, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x10, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x11, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x12, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x0b, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x10, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x07, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x08, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x12, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x08, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x02, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x13, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x0d, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x0b, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x14, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x0e, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x0d, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x15, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x0f, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x0e, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x16, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x17, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x18, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x16, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x0f, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x10, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x18, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x12, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x19, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xb6, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x16, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x1a, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x1b, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x1c, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x1d, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x18, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x19, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x1b, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x1d, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x1e, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x1f, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x20, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x21, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x22, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x23, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x24, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x24, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x26, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x22, 0x18, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x23, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x24, 0x18, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x24, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x22, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x25, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x25, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x25, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x25, 0x00 -.byte 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x25, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x25, 0x00 -.byte 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x26, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x27, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x28, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x22, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x29, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x08, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x25, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x29, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x02, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x27, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x29, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x29, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8138D88 -gUnknown_8138D88: @ 8138D88 -.string "../data/ground/ground_data_t01p01_station.c\0" -.align 2, 0 - -.global gUnknown_8138DB4 -gUnknown_8138DB4: @ 8138DB4 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138268 - -.global gUnknown_8138DC0 -gUnknown_8138DC0: @ 8138DC0 -.byte 0xf6, 0x00, 0x53, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xb9, 0x00, 0x03, 0x00, 0x09, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x01, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x25, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x25, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1d, 0x01, 0x07, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x01, 0x08, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x13, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8138F00 -gUnknown_8138F00: @ 8138F00 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138DC0 - -.global gUnknown_8138F0C -gUnknown_8138F0C: @ 8138F0C -.byte 0xf6, 0x00, 0x6d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x01, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8138F3C -gUnknown_8138F3C: @ 8138F3C -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138F0C - -.global gUnknown_8138F48 -gUnknown_8138F48: @ 8138F48 -.byte 0xf6, 0x00, 0x75, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x01, 0x00, 0xff, 0xff -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8138F78 -gUnknown_8138F78: @ 8138F78 -.byte 0x65, 0x01, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138F48 - -.global gUnknown_8138F84 -gUnknown_8138F84: @ 8138F84 -.byte 0xf6, 0x00, 0x7d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x01, 0x00, 0xff, 0xff, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8138FB4 -gUnknown_8138FB4: @ 8138FB4 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138F84 - -.global gUnknown_8138FC0 -gUnknown_8138FC0: @ 8138FC0 -.byte 0xf6, 0x00, 0x85, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813908C -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139050 -closeTextBox -.byte 0xe4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8139050 -gUnknown_8139050: @ 8139050 -.string "Whiscash Pond {UP_ARROW}\n" -.string " Pelipper Post Office {RIGHT_ARROW}\0" -.align 2, 0 - -.global gUnknown_813908C -gUnknown_813908C: @ 813908C -.string "{CENTER_ALIGN}Welcome!\n" -.string "{CENTER_ALIGN}The fun and bustling Pokémon Square!\0" -.align 2, 0 - -.global gUnknown_81390C0 -gUnknown_81390C0: @ 81390C0 -.byte 0xf6, 0x00, 0x91, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139140 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x02 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8139140 -gUnknown_8139140: @ 8139140 -.string "{CENTER_ALIGN}{UP_ARROW}\n" -.string "{CENTER_ALIGN}Whiscash Pond\0" -.align 2, 0 - -.global gUnknown_8139158 -gUnknown_8139158: @ 8139158 -.byte 0xf6, 0x00, 0x9c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x32, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81391D8 -closeTextBox -.byte 0xe4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81391D8 -gUnknown_81391D8: @ 81391D8 -.string "\n{CENTER_ALIGN}Pelipper Post Office {RIGHT_ARROW}\0" -.align 2, 0 - -.global gUnknown_81391F4 -gUnknown_81391F4: @ 81391F4 -.byte 0xf6, 0x00, 0xa7, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8139234 -gUnknown_8139234: @ 8139234 -.byte 0xf6, 0x00, 0xae, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8139274 -gUnknown_8139274: @ 8139274 -.byte 0xf6, 0x00, 0xb5, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81392B4 -gUnknown_81392B4: @ 81392B4 -.byte 0xf6, 0x00, 0xbc, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81392F4 -gUnknown_81392F4: @ 81392F4 -.byte 0xf6, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8139334 -gUnknown_8139334: @ 8139334 -.byte 0xf6, 0x00, 0xca, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8139374 -gUnknown_8139374: @ 8139374 -.byte 0xf6, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81393B4 -gUnknown_81393B4: @ 81393B4 -.byte 0xf6, 0x00, 0xd8, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81393F4 -gUnknown_81393F4: @ 81393F4 -.byte 0xf6, 0x00, 0xdf, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8139434 -gUnknown_8139434: @ 8139434 -.byte 0xf6, 0x00, 0xe6, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8139474 -gUnknown_8139474: @ 8139474 -.byte 0xf6, 0x00, 0xed, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81394A4 -gUnknown_81394A4: @ 81394A4 -.byte 0xf6, 0x00, 0xf3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81394D4 -gUnknown_81394D4: @ 81394D4 -.byte 0xf6, 0x00, 0xf9, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8139514 -gUnknown_8139514: @ 8139514 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81394D4 - -.global gUnknown_8139520 -gUnknown_8139520: @ 8139520 -.byte 0xf6, 0x00, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8139580 -gUnknown_8139580: @ 8139580 -.byte 0xf6, 0x00, 0x0b, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81395E0 -gUnknown_81395E0: @ 81395E0 -.byte 0xf6, 0x00, 0x14, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8139640 -gUnknown_8139640: @ 8139640 -.byte 0xf6, 0x00, 0x1d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81396A0 -gUnknown_81396A0: @ 81396A0 -.byte 0xf6, 0x00, 0x26, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8139700 -gUnknown_8139700: @ 8139700 -.byte 0xf6, 0x00, 0x2f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8139760 -gUnknown_8139760: @ 8139760 -.byte 0xf6, 0x00, 0x38, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139808 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81397D0 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81397D0 -gUnknown_81397D0: @ 81397D0 -.string " We{APOSTROPHE}re still Normal Rank.{WAIT_PRESS}\n" -.string "We{APOSTROPHE}re trying{COMMA} but...\0" -.align 2, 0 - -.global gUnknown_8139808 -gUnknown_8139808: @ 8139808 -.string " What{APOSTROPHE}s your rescue rank?\n" -.string "How high{APOSTROPHE}d you get it?\0" -.align 2, 0 - -.global gUnknown_8139840 -gUnknown_8139840: @ 8139840 -.byte 0xf6, 0x00, 0x42, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81399E8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81399A4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139970 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813993C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81398E0 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81398E0 -gUnknown_81398E0: @ 81398E0 -.string " I don{APOSTROPHE}t know about having\n" -.string "my personality become carefree...{WAIT_PRESS}\n" -.string "What do you think? Huh?\0" -.align 2, 0 - -.global gUnknown_813993C -gUnknown_813993C: @ 813993C -.string " You know? \n" -.string "{COLOR_1 CYAN_3}Ludicolo{END_COLOR_TEXT_1} is a carefree Pokémon.\0" -.align 2, 0 - -.global gUnknown_8139970 -gUnknown_8139970: @ 8139970 -.string " But when I evolve...{WAIT_PRESS}\n" -.string "I become a {COLOR_1 CYAN_3}Ludicolo{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_81399A4 -gUnknown_81399A4: @ 81399A4 -.string " I think the timing{APOSTROPHE}s right.{WAIT_PRESS}\n" -.string "I should think about evolving...\0" -.align 2, 0 - -.global gUnknown_81399E8 -gUnknown_81399E8: @ 81399E8 -.string " It sounds like the natural\n" -.string "disasters were interfering with our ability\n" -.string "to evolve.\0" -.align 2, 0 - -.global gUnknown_8139A3C -gUnknown_8139A3C: @ 8139A3C -.byte 0xf6, 0x00, 0x4f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139AF8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139ABC -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8139ABC -gUnknown_8139ABC: @ 8139ABC -.string " From now on{COMMA} I{APOSTROPHE}m living as\n" -.string "{ARG_POKEMON_1}.\n" -.string "Pleased to meet you.\0" -.align 2, 0 - -.global gUnknown_8139AF8 -gUnknown_8139AF8: @ 8139AF8 -.string " I{APOSTROPHE}ve given up on trying to\n" -.string "turn back into {ARG_POKEMON_2}.\0" -.align 2, 0 - -.global gUnknown_8139B2C -gUnknown_8139B2C: @ 8139B2C -.byte 0xf6, 0x00, 0x5a, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139BCC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139B9C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8139B9C -gUnknown_8139B9C: @ 8139B9C -.string " I think the rescue ranks go\n" -.string "higher than that.\0" -.align 2, 0 - -.global gUnknown_8139BCC -gUnknown_8139BCC: @ 8139BCC -.string " Our team got the Gold Rank{COMMA}\n" -.string "but...\0" -.align 2, 0 - -.global gUnknown_8139BF4 -gUnknown_8139BF4: @ 8139BF4 -.byte 0xf6, 0x00, 0x64, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139C54 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8139C54 -gUnknown_8139C54: @ 8139C54 -.string " I wonder what{APOSTROPHE}s higher than\n" -.string "the Gold Rank?{WAIT_PRESS}\n" -.string "I can{APOSTROPHE}t imagine it.\0" -.align 2, 0 - -.global gUnknown_8139C9C -gUnknown_8139C9C: @ 8139C9C -.byte 0xf6, 0x00, 0x6d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139EB0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139E84 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139E34 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139DE4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139DC0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139D6C -closeTextBox -pause 0x0a -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8139D6C -gUnknown_8139D6C: @ 8139D6C -.string " To become even closer to\n" -.string "Lucario{APOSTROPHE}s greatness...\n" -.string "That is my goal and my dream.\0" -.align 2, 0 - -.global gUnknown_8139DC0 -gUnknown_8139DC0: @ 8139DC0 -.string " I aspire to become like\n" -.string "Lucario.\0" -.align 2, 0 - -.global gUnknown_8139DE4 -gUnknown_8139DE4: @ 8139DE4 -.string " It{APOSTROPHE}s Lucario...{WAIT_PRESS}\n" -.string "whose exploits as a rescue leader are the\n" -.string "stuff of legend.\0" -.align 2, 0 - -.global gUnknown_8139E34 -gUnknown_8139E34: @ 8139E34 -.string " But if anyone asks\n" -.string "about the greatest of them all...{WAIT_PRESS}\n" -.string "There is but one hero.\0" -.align 2, 0 - -.global gUnknown_8139E84 -gUnknown_8139E84: @ 8139E84 -.string " Many have engraved\n" -.string "their names in glory.\0" -.align 2, 0 - -.global gUnknown_8139EB0 -gUnknown_8139EB0: @ 8139EB0 -.string " For many years{COMMA} countless\n" -.string "Pokémon have served on rescue teams.\0" -.align 2, 0 - -.global gUnknown_8139EF4 -gUnknown_8139EF4: @ 8139EF4 -.byte 0xf6, 0x00, 0x7d, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139F54 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8139F54 -gUnknown_8139F54: @ 8139F54 -.string " KEEP UP YOUR RESCUE\n" -.string "WORK! BZBZBZZZ!\0" -.align 2, 0 - -.global gUnknown_8139F7C -gUnknown_8139F7C: @ 8139F7C -.byte 0xf6, 0x00, 0x86, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139FDC -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8139FDC -gUnknown_8139FDC: @ 8139FDC -.string " YOUR TEAM HAS MY\n" -.string "SUPPORT! BZBZBZZT!\0" -.align 2, 0 - -.global gUnknown_813A004 -gUnknown_813A004: @ 813A004 -.byte 0xf6, 0x00, 0x8f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xb3, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x06, 0x03, 0x00, 0x13, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x03, 0x07, 0x00, 0x26, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x04, 0x07, 0x00, 0x2b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x04, 0x07, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x05, 0x0c, 0x00, 0x35, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x05, 0x0c, 0x00, 0x35, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x06, 0x0a, 0x00, 0x31, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x06, 0x0a, 0x00, 0x31, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x07, 0x0a, 0x00, 0x31, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb7, 0x04, 0x07, 0x00, 0x40, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa5, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x09, 0x04, 0x00, 0x20, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x0c, 0x00, 0x21, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x0d, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x0f, 0x05, 0x00, 0x21, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x10, 0x05, 0x00, 0x22, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x13, 0x07, 0x00, 0x26, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x14, 0x07, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x18, 0x0c, 0x00, 0x37, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x1a, 0x03, 0x00, 0x13, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x07, 0x1a, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x1b, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x1e, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813A604 -gUnknown_813A604: @ 813A604 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813A004 - -.global gUnknown_813A610 -gUnknown_813A610: @ 813A610 -.byte 0xf6, 0x00, 0xfb, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xd5, 0x01, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813A778 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813A768 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813A758 -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813A750 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x11, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813A750 -gUnknown_813A750: @ 813A750 -.string "*Cancel\0" -.align 2, 0 - -.global gUnknown_813A758 -gUnknown_813A758: @ 813A758 -.string "Activate Type 2\0" -.align 2, 0 - -.global gUnknown_813A768 -gUnknown_813A768: @ 813A768 -.string "Activate Type 1\0" -.align 2, 0 - -.global gUnknown_813A778 -gUnknown_813A778: @ 813A778 -.string " Activate the subevent {DOUBLE_QUOTE}Munchlax{DOUBLE_QUOTE}?\0" -.align 2, 0 - -.global gUnknown_813A7A0 -gUnknown_813A7A0: @ 813A7A0 -.byte 0xf6, 0x00, 0x13, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3b, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3b, 0x15, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xca, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813A8B0 -gUnknown_813A8B0: @ 813A8B0 -.byte 0xf6, 0x00, 0x27, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813A910 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813A910 -gUnknown_813A910: @ 813A910 -.string " ....................................\0" -.align 2, 0 - -.global gUnknown_813A938 -gUnknown_813A938: @ 813A938 -.byte 0xf6, 0x00, 0x30, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xb2, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x03, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813A9A8 -gUnknown_813A9A8: @ 813A9A8 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813A938 - -.global gUnknown_813A9B4 -gUnknown_813A9B4: @ 813A9B4 -.byte 0xf6, 0x00, 0x3c, 0x03, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x03, 0x02, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813AC20 -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x56, 0x00, 0xff, 0xff, 0x58, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x7f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813AB98 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813AB74 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813AB74 -gUnknown_813AB74: @ 813AB74 -.string " ...Belly...rumbling...{WAIT_PRESS}\n" -.string "Hungry...\0" -.align 2, 0 - -.global gUnknown_813AB98 -gUnknown_813AB98: @ 813AB98 -.string " ....................................\n" -.string "................................................\n" -.string "................................................\0" -.align 2, 0 - -.global gUnknown_813AC20 -gUnknown_813AC20: @ 813AC20 -.string " ...Grrruummmmmbbbbblle...!\0" -.align 2, 0 - -.global gUnknown_813AC3C -gUnknown_813AC3C: @ 813AC3C -.byte 0xf6, 0x00, 0x5b, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x00, 0xff, 0xff, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813ACDC -gUnknown_813ACDC: @ 813ACDC -.byte 0xf6, 0x00, 0x68, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x00, 0xff, 0xff, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8b, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -closeThread - -.global gUnknown_813AD6C -gUnknown_813AD6C: @ 813AD6C -.byte 0xf6, 0x00, 0x74, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x56, 0x00, 0xff, 0xff, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813ADCC -gUnknown_813ADCC: @ 813ADCC -.byte 0xf6, 0x00, 0x7d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x56, 0x00, 0xff, 0xff, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813AE2C -gUnknown_813AE2C: @ 813AE2C -.byte 0xf6, 0x00, 0x86, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x56, 0x00, 0xff, 0xff, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813AE8C -gUnknown_813AE8C: @ 813AE8C -.byte 0xf6, 0x00, 0x8f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x56, 0x00, 0xff, 0xff, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813AEEC -gUnknown_813AEEC: @ 813AEEC -.byte 0xf6, 0x00, 0x98, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x56, 0x00, 0xff, 0xff, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813AF4C -gUnknown_813AF4C: @ 813AF4C -.byte 0xf6, 0x00, 0xa1, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x56, 0x00, 0xff, 0xff, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813AFAC -gUnknown_813AFAC: @ 813AFAC -.byte 0xf6, 0x00, 0xaa, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x56, 0x00, 0xff, 0xff, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813B00C -gUnknown_813B00C: @ 813B00C -.byte 0xf6, 0x00, 0xb3, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x56, 0x00, 0xff, 0xff, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813B06C -gUnknown_813B06C: @ 813B06C -.byte 0xf6, 0x00, 0xbc, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x56, 0x00, 0xff, 0xff, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813B0CC -gUnknown_813B0CC: @ 813B0CC -.byte 0xf6, 0x00, 0xc5, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x56, 0x00, 0xff, 0xff, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813B12C -gUnknown_813B12C: @ 813B12C -.byte 0xf6, 0x00, 0xce, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813B16C -gUnknown_813B16C: @ 813B16C -.byte 0xf6, 0x00, 0xd5, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 1 -.byte 0x6b, 0x00, 0x80, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813B1AC -gUnknown_813B1AC: @ 813B1AC -.byte 0xf6, 0x00, 0xdc, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xa5, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd5, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B7B0 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B7A8 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B7A4 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x01, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B798 -.byte 0x2e, 0x15, 0x01, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B768 -.byte 0x3c, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -closeTextBox -pause 0x0a -.byte 0x2e, 0x15, 0x01, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B740 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B714 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -closeTextBox -pause 0x0a -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B6F0 -closeTextBox -pause 0x0a -.byte 0x2e, 0x15, 0x01, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B6C0 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x04, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B638 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B638 -.byte 0x4d, 0x00, 0x00, 0x00, 0x04, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B618 -closeTextBox -.byte 0x2e, 0x15, 0x01, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B600 -closeTextBox -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B5D4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B5B0 -closeTextBox -pause 0x0a -.byte 0x3c, 0x2c, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B59C -closeTextBox -.byte 0x0c, 0x04, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813B59C -gUnknown_813B59C: @ 813B59C -.string " Munchlax go now.\0" -.align 2, 0 - -.global gUnknown_813B5B0 -gUnknown_813B5B0: @ 813B5B0 -.string " Munchlax say thank you\n" -.string "with this.\0" -.align 2, 0 - -.global gUnknown_813B5D4 -gUnknown_813B5D4: @ 813B5D4 -.string " ............{WAIT_PRESS}\n" -.string "You{COMMA} good to Munchlax.\0" -.align 2, 0 - -.global gUnknown_813B600 -gUnknown_813B600: @ 813B600 -.string " Munchlax satisfied!\0" -.align 2, 0 - -.global gUnknown_813B618 -gUnknown_813B618: @ 813B618 -.string " Nnnnnnnnn!{WAIT_PRESS}\n" -.string "Deeeeelicious!\0" -.align 2, 0 - -.global gUnknown_813B638 -gUnknown_813B638: @ 813B638 -.string "Munch{COMMA} munch{COMMA} munch{COMMA} munch{COMMA} munch{COMMA}\n" -.string "munch{COMMA} munch{COMMA} munch{COMMA} munch{COMMA} munch{COMMA}\n" -.string "munch{COMMA} munch{COMMA} munch{COMMA} munch{COMMA} munch...\0" -.align 2, 0 - -.global gUnknown_813B6C0 -gUnknown_813B6C0: @ 813B6C0 -.string " Th-this {COLOR_1 GREEN_2}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}!{WAIT_PRESS}\n" -.string "M-Munchlax big favorite!\0" -.align 2, 0 - -.global gUnknown_813B6F0 -gUnknown_813B6F0: @ 813B6F0 -.string "{CENTER_ALIGN}{ARG_NICKNAME_0} gave Munchlax\n" -.string "{CENTER_ALIGN}one {COLOR_1 GREEN_2}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_813B714 -gUnknown_813B714: @ 813B714 -.string " Munchlax feel sad...{WAIT_PRESS}\n" -.string "Munchlax go now.\0" -.align 2, 0 - -.global gUnknown_813B740 -gUnknown_813B740: @ 813B740 -.string " ...Nnnnn?{WAIT_PRESS}\n" -.string "Oh... Don{APOSTROPHE}t have food...\0" -.align 2, 0 - -.global gUnknown_813B768 -gUnknown_813B768: @ 813B768 -.string " What kind food?!\n" -.string "Show Munchlax! Show{COMMA} show!\0" -.align 2, 0 - -.global gUnknown_813B798 -gUnknown_813B798: @ 813B798 -.string " R-really?!\0" -.align 2, 0 - -.global gUnknown_813B7A4 -gUnknown_813B7A4: @ 813B7A4 -.byte 0x4e, 0x6f, 0x2e, 0x00 - -.global gUnknown_813B7A8 -gUnknown_813B7A8: @ 813B7A8 -.string "Yes.\0" -.align 2, 0 - -.global gUnknown_813B7B0 -gUnknown_813B7B0: @ 813B7B0 -.string " Munchlax hungry...{WAIT_PRESS}\n" -.string "You have food?\0" -.align 2, 0 - -.global gUnknown_813B7D8 -gUnknown_813B7D8: @ 813B7D8 -.byte 0xf6, 0x00, 0x22, 0x04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0c -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x1f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813B948 -gUnknown_813B948: @ 813B948 -.byte 0xf6, 0x00, 0x3c, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813B988 -gUnknown_813B988: @ 813B988 -.byte 0xf6, 0x00, 0x43, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B5D4 -.byte 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813B9E8 -gUnknown_813B9E8: @ 813B9E8 -.byte 0xf6, 0x00, 0x4c, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x15, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xca, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x01, 0xff, 0xff -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813BAF8 -gUnknown_813BAF8: @ 813BAF8 -.byte 0xf6, 0x00, 0x60, 0x04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813BB58 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813BB58 -gUnknown_813BB58: @ 813BB58 -.string " ........................\0" -.align 2, 0 - -.global gUnknown_813BB74 -gUnknown_813BB74: @ 813BB74 -.byte 0xf6, 0x00, 0x69, 0x04, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xb2, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813BBE4 -gUnknown_813BBE4: @ 813BBE4 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813BB74 - -.global gUnknown_813BBF0 -gUnknown_813BBF0: @ 813BBF0 -.byte 0xf6, 0x00, 0x75, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x90, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813BE10 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x84, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0xff, 0xff, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x02, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813A910 -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813BE10 -gUnknown_813BE10: @ 813BE10 -.string " Flump!\0" -.align 2, 0 - -.global gUnknown_813BE18 -gUnknown_813BE18: @ 813BE18 -.byte 0xf6, 0x00, 0x9a, 0x04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0xff, 0xff -.byte 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813BEB8 -gUnknown_813BEB8: @ 813BEB8 -.byte 0xf6, 0x00, 0xa7, 0x04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0xe5, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x08 -.byte 0xe5, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 26 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813BFC8 -gUnknown_813BFC8: @ 813BFC8 -.byte 0xf6, 0x00, 0xbb, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x02 -.byte 0xe0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00 -.byte 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813C058 -gUnknown_813C058: @ 813C058 -.byte 0xf6, 0x00, 0xc7, 0x04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 8 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813C088 -gUnknown_813C088: @ 813C088 -.byte 0xf6, 0x00, 0xcd, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0x4a, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x04, 0xff, 0xff -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813C0D8 -gUnknown_813C0D8: @ 813C0D8 -.byte 0xf6, 0x00, 0xd5, 0x04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 8 -.byte 0x5d, 0x00, 0x00, 0x00 -.byte 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x02, 0xe8, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x01 -.byte 0xf8, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x84, 0x00, 0x80, 0x00, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813C168 -gUnknown_813C168: @ 813C168 -.byte 0xf6, 0x00, 0xe1, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813C198 -gUnknown_813C198: @ 813C198 -.byte 0xf6, 0x00, 0xe7, 0x04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x4c, 0x00, 0x00, 0x00, 0x4a, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0x01, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x04, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813C1E8 -gUnknown_813C1E8: @ 813C1E8 -.byte 0xf6, 0x00, 0xef, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x02 -.byte 0xe8, 0xff, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0x00, 0x80, 0x00 -.byte 0xfe, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813C278 -gUnknown_813C278: @ 813C278 -.byte 0xf6, 0x00, 0xfb, 0x04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 8 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813C2A8 -gUnknown_813C2A8: @ 813C2A8 -.byte 0xf6, 0x00, 0x01, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0x4a, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x04, 0xff, 0xff -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813C2F8 -gUnknown_813C2F8: @ 813C2F8 -.byte 0xf6, 0x00, 0x09, 0x05 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x56, 0x00, 0xff, 0xff -.byte 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813C358 -gUnknown_813C358: @ 813C358 -.byte 0xf6, 0x00, 0x12, 0x05 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x56, 0x00, 0xff, 0xff -.byte 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813C3B8 -gUnknown_813C3B8: @ 813C3B8 -.byte 0xf6, 0x00, 0x1b, 0x05 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x56, 0x00, 0xff, 0xff -.byte 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813C418 -gUnknown_813C418: @ 813C418 -.byte 0xf6, 0x00, 0x24, 0x05 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x56, 0x00, 0xff, 0xff -.byte 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813C478 -gUnknown_813C478: @ 813C478 -.byte 0xf6, 0x00, 0x2d, 0x05 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x56, 0x00, 0xff, 0xff -.byte 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813C4D8 -gUnknown_813C4D8: @ 813C4D8 -.byte 0xf6, 0x00, 0x36, 0x05 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x56, 0x00, 0xff, 0xff -.byte 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813C538 -gUnknown_813C538: @ 813C538 -.byte 0xf6, 0x00, 0x3f, 0x05 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x56, 0x00, 0xff, 0xff -.byte 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813C598 -gUnknown_813C598: @ 813C598 -.byte 0xf6, 0x00, 0x48, 0x05 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x56, 0x00, 0xff, 0xff -.byte 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813C5F8 -gUnknown_813C5F8: @ 813C5F8 -.byte 0xf6, 0x00, 0x51, 0x05 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x56, 0x00, 0xff, 0xff -.byte 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813C658 -gUnknown_813C658: @ 813C658 -.byte 0xf6, 0x00, 0x5a, 0x05 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x56, 0x00, 0xff, 0xff -.byte 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813C6B8 -gUnknown_813C6B8: @ 813C6B8 -.byte 0xf6, 0x00, 0x63, 0x05 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x53, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x40, 0x00, 0xdc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0x01, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x6b, 0x00, 0x80, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813C738 -gUnknown_813C738: @ 813C738 -.byte 0xf6, 0x00, 0x6e, 0x05 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813BB58 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813C798 -gUnknown_813C798: @ 813C798 -.byte 0xf6, 0x00, 0x77, 0x05 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813C7D8 -gUnknown_813C7D8: @ 813C7D8 -.byte 0x91, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813C798 - -.global gUnknown_813C7E4 -gUnknown_813C7E4: @ 813C7E4 -.byte 0xf6, 0x00, 0x80, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813CD48 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813CD3C -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813CD30 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x4d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813CD00 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B798 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813CCD4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813CCA4 -.byte 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813CC70 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B5B0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x3c, 0x2c, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B59C -closeTextBox -.byte 0x0c, 0x05, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813CC3C -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813CC14 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813CBF4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x06, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813CBF4 -gUnknown_813CBF4: @ 813CBF4 -.string " ..................{WAIT_PRESS}\n" -.string "Meanie...\0" -.align 2, 0 - -.global gUnknown_813CC14 -gUnknown_813CC14: @ 813CC14 -.string " ..................{WAIT_PRESS}\n" -.string "Munchlax sad...\0" -.align 2, 0 - -.global gUnknown_813CC3C -gUnknown_813CC3C: @ 813CC3C -.string " Nnnnnnnnnnnn!{WAIT_PRESS}\n" -.string "Nnnnnnnnnnnnnnnnnnnnnnnnnnnnnn!\0" -.align 2, 0 - -.global gUnknown_813CC70 -gUnknown_813CC70: @ 813CC70 -.string " ............{WAIT_PRESS}\n" -.string "You honest and nice.\n" -.string "Munchlax like.\0" -.align 2, 0 - -.global gUnknown_813CCA4 -gUnknown_813CCA4: @ 813CCA4 -.string " Snivel...\n" -.string "Munchlax feel all squishy inside...\0" -.align 2, 0 - -.global gUnknown_813CCD4 -gUnknown_813CCD4: @ 813CCD4 -.string " Really{COMMA} you give food back\n" -.string "to Munchlax?\0" -.align 2, 0 - -.global gUnknown_813CD00 -gUnknown_813CD00: @ 813CD00 -.string "{CENTER_ALIGN}{ARG_NICKNAME_0} returned\n" -.string "{CENTER_ALIGN}the {COLOR_1 GREEN_2}Apple{END_COLOR_TEXT_1} to Munchlax.\0" -.align 2, 0 - -.global gUnknown_813CD30 -gUnknown_813CD30: @ 813CD30 -.string "Keep it.\0" -.align 2, 0 - -.global gUnknown_813CD3C -gUnknown_813CD3C: @ 813CD3C -.string "Return it.\0" -.align 2, 0 - -.global gUnknown_813CD48 -gUnknown_813CD48: @ 813CD48 -.string " ............{WAIT_PRESS}Hey.{WAIT_PRESS}\n" -.string "That belong to Munchlax.{WAIT_PRESS}\n" -.string "Munchlax want back.\0" -.align 2, 0 - -.global gUnknown_813CD90 -gUnknown_813CD90: @ 813CD90 -.byte 0xf6, 0x00, 0xc8, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813CDF0 -gUnknown_813CDF0: @ 813CDF0 -.byte 0xf6, 0x00, 0xd1, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0xff, 0xff, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xda, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x8b, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 24 -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x95, 0x08, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 33 -.byte 0x53, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3b, 0x15, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x95, 0x04, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813D100 -gUnknown_813D100: @ 813D100 -.byte 0xf6, 0x00, 0x05, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813D140 -gUnknown_813D140: @ 813D140 -.byte 0xf6, 0x00, 0x0c, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B5D4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813D190 -gUnknown_813D190: @ 813D190 -.byte 0xf6, 0x00, 0x14, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 33 -.byte 0x6b, 0x00, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813D1D0 -gUnknown_813D1D0: @ 813D1D0 -.byte 0xf6, 0x00, 0x1b, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x15, 0x01, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813CBF4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813D240 -gUnknown_813D240: @ 813D240 -.byte 0xf6, 0x00, 0x25, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xa6, 0x00, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813D310 -gUnknown_813D310: @ 813D310 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813D240 - -.global gUnknown_813D31C -gUnknown_813D31C: @ 813D31C -.byte 0xf6, 0x00, 0x37, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x02, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x86, 0x00, 0x00, 0x02, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x02, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x86, 0x00, 0x00, 0x02, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x02, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -setFlag 0x05 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813D45C -gUnknown_813D45C: @ 813D45C -.byte 0xf6, 0x00, 0x4e, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DF6C -closeTextBox -setFlag 0x06 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DF24 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DF24 -closeTextBox -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DF04 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DEE4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DF04 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DEE4 -closeTextBox -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DE9C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DE3C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DDFC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DDB4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DD54 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DD28 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DDB4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DD54 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DCEC -closeTextBox -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DC9C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DC44 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DBE8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DB94 -closeTextBox -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DB60 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DB2C -closeTextBox -pause 0x0a -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DACC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DA7C -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DA40 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813D9FC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813D9C8 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813D988 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813D950 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813D91C -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813D91C -gUnknown_813D91C: @ 813D91C -.string " Let{APOSTROPHE}s first go to the\n" -.string "{COLOR_1 CYAN}Pelipper Post Office{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_813D950 -gUnknown_813D950: @ 813D950 -.string " I think we can get some\n" -.string "information on rescue jobs.\0" -.align 2, 0 - -.global gUnknown_813D988 -gUnknown_813D988: @ 813D988 -.string " So{COMMA} how about we go to\n" -.string "the {COLOR_1 CYAN}Pelipper Post Office{END_COLOR_TEXT_1} first?\0" -.align 2, 0 - -.global gUnknown_813D9C8 -gUnknown_813D9C8: @ 813D9C8 -.string " I think we can get rescue-\n" -.string "job information there.\0" -.align 2, 0 - -.global gUnknown_813D9FC -gUnknown_813D9FC: @ 813D9FC -.string " So{COMMA} let{APOSTROPHE}s start with a visit\n" -.string "to the {COLOR_1 CYAN}Pelipper Post Office{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_813DA40 -gUnknown_813DA40: @ 813DA40 -.string " I{APOSTROPHE}m sure you can get\n" -.string "information on rescue jobs there.\0" -.align 2, 0 - -.global gUnknown_813DA7C -gUnknown_813DA7C: @ 813DA7C -.string " Oh{COMMA} and there{APOSTROPHE}s also the\n" -.string "{COLOR_1 CYAN}Pelipper Post Office{END_COLOR_TEXT_1}.\n" -.string "That{APOSTROPHE}s up past here.\0" -.align 2, 0 - -.global gUnknown_813DACC -gUnknown_813DACC: @ 813DACC -.string " Oh{COMMA} yeah{COMMA} there{APOSTROPHE}s also the\n" -.string "{COLOR_1 CYAN}Pelipper Post Office{END_COLOR_TEXT_1}.\n" -.string "It{APOSTROPHE}s straight ahead past here.\0" -.align 2, 0 - -.global gUnknown_813DB2C -gUnknown_813DB2C: @ 813DB2C -.string " What do you think?\n" -.string "The businesses here help us.\0" -.align 2, 0 - -.global gUnknown_813DB60 -gUnknown_813DB60: @ 813DB60 -.string " How do you like it?\n" -.string "The shops are useful{COMMA} huh?\0" -.align 2, 0 - -.global gUnknown_813DB94 -gUnknown_813DB94: @ 813DB94 -.string " You should store important\n" -.string "items here before you go out on any\n" -.string "dungeon adventure.\0" -.align 2, 0 - -.global gUnknown_813DBE8 -gUnknown_813DBE8: @ 813DBE8 -.string " This is {COLOR_1 CYAN}Kangaskhan Storage{END_COLOR_TEXT_1}.\n" -.string "If you store items here{COMMA} they{APOSTROPHE}ll never go\n" -.string "missing.\0" -.align 2, 0 - -.global gUnknown_813DC44 -gUnknown_813DC44: @ 813DC44 -.string " If you have important\n" -.string "items{COMMA} you should store them before you\n" -.string "head out to a dungeon.\0" -.align 2, 0 - -.global gUnknown_813DC9C -gUnknown_813DC9C: @ 813DC9C -.string " This is {COLOR_1 CYAN}Kangaskhan Storage{END_COLOR_TEXT_1}.\n" -.string "Store items here so they{APOSTROPHE}ll never be\n" -.string "lost.\0" -.align 2, 0 - -.global gUnknown_813DCEC -gUnknown_813DCEC: @ 813DCEC -.string " I think you should ask Gulpin\n" -.string "if you want to know more.\0" -.align 2, 0 - -.global gUnknown_813DD28 -gUnknown_813DD28: @ 813DD28 -.string " You should just ask Gulpin\n" -.string "for details.\0" -.align 2, 0 - -.global gUnknown_813DD54 -gUnknown_813DD54: @ 813DD54 -.string " Huh?{WAIT_PRESS} What{APOSTROPHE}s linking?{WAIT_PRESS}\n" -.string "Well{COMMA} if you link moves...{WAIT_PRESS}\n" -.string "You can use them at the same time.\0" -.align 2, 0 - -.global gUnknown_813DDB4 -gUnknown_813DDB4: @ 813DDB4 -.string " This is the\n" -.string "{COLOR_1 CYAN}Gulpin Link Shop{END_COLOR_TEXT_1}.{WAIT_PRESS}\n" -.string "Gulpin can link moves for you.\0" -.align 2, 0 - -.global gUnknown_813DDFC -gUnknown_813DDFC: @ 813DDFC -.string " If you need details{COMMA} you{APOSTROPHE}d\n" -.string "be better off asking Gulpin.\0" -.align 2, 0 - -.global gUnknown_813DE3C -gUnknown_813DE3C: @ 813DE3C -.string " Hah?{WAIT_PRESS} What{APOSTROPHE}s linking?{WAIT_PRESS}\n" -.string "Well{COMMA} if you link moves...{WAIT_PRESS}\n" -.string "You can use them at the same time.\0" -.align 2, 0 - -.global gUnknown_813DE9C -gUnknown_813DE9C: @ 813DE9C -.string " This is the\n" -.string "{COLOR_1 CYAN}Gulpin Link Shop{END_COLOR_TEXT_1}.{WAIT_PRESS}\n" -.string "Gulpin will link moves for you.\0" -.align 2, 0 - -.global gUnknown_813DEE4 -gUnknown_813DEE4: @ 813DEE4 -.string " You can save your money\n" -.string "there.\0" -.align 2, 0 - -.global gUnknown_813DF04 -gUnknown_813DF04: @ 813DF04 -.string " That{APOSTROPHE}s {COLOR_1 CYAN}Felicity Bank{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_813DF24 -gUnknown_813DF24: @ 813DF24 -.string " That{APOSTROPHE}s the {COLOR_1 CYAN}Kecleon Shop{END_COLOR_TEXT_1}.{WAIT_PRESS}\n" -.string "You can buy and sell items there.\0" -.align 2, 0 - -.global gUnknown_813DF6C -gUnknown_813DF6C: @ 813DF6C -.string " This is Pokémon Square.\0" -.align 2, 0 - -.global gUnknown_813DF88 -gUnknown_813DF88: @ 813DF88 -.byte 0xf6, 0x00, 0x9e, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813E0F8 -gUnknown_813E0F8: @ 813E0F8 -.byte 0xf6, 0x00, 0xb8, 0x06 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813E128 -gUnknown_813E128: @ 813E128 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813E0F8 - -.global gUnknown_813E134 -gUnknown_813E134: @ 813E134 -.byte 0xf6, 0x00, 0xc0, 0x06, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813E194 -gUnknown_813E194: @ 813E194 -.byte 0xf6, 0x00, 0xc9, 0x06, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813E1F4 -gUnknown_813E1F4: @ 813E1F4 -.byte 0xf6, 0x00, 0xd2, 0x06, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813E254 -gUnknown_813E254: @ 813E254 -.byte 0xf6, 0x00, 0xdb, 0x06, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813E2B4 -gUnknown_813E2B4: @ 813E2B4 -.byte 0xf6, 0x00, 0xe4, 0x06, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813E314 -gUnknown_813E314: @ 813E314 -.byte 0xf6, 0x00, 0xed, 0x06, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x51, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813E354 -gUnknown_813E354: @ 813E354 -.byte 0xf6, 0x00, 0xf4, 0x06, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813E448 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813E3F4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813E3D4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813E3D4 -gUnknown_813E3D4: @ 813E3D4 -.string " It{APOSTROPHE}s a mean world out there.\0" -.align 2, 0 - -.global gUnknown_813E3F4 -gUnknown_813E3F4: @ 813E3F4 -.string " A lot of Pokémon have gone\n" -.string "wild and violent because the disasters\n" -.string "scared them...\0" -.align 2, 0 - -.global gUnknown_813E448 -gUnknown_813E448: @ 813E448 -.string " I don{APOSTROPHE}t know why{COMMA} but\n" -.string "there{APOSTROPHE}ve been many natural disasters\n" -.string "lately.\0" -.align 2, 0 - -.global gUnknown_813E494 -gUnknown_813E494: @ 813E494 -.byte 0xf6, 0x00, 0xff, 0x06, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x51, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813E4D4 -gUnknown_813E4D4: @ 813E4D4 -.byte 0xf6, 0x00, 0x06, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813E5E4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813E59C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813E554 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813E554 -gUnknown_813E554: @ 813E554 -.string " But it could have been much\n" -.string "worse if they were slower getting\n" -.string "there.\0" -.align 2, 0 - -.global gUnknown_813E59C -gUnknown_813E59C: @ 813E59C -.string " Luckily{COMMA} Blastoise and\n" -.string "Feraligatr were able to douse it quickly...\0" -.align 2, 0 - -.global gUnknown_813E5E4 -gUnknown_813E5E4: @ 813E5E4 -.string " There was a forest fire not\n" -.string "long ago.\n" -.string "It was terrible.\0" -.align 2, 0 - -.global gUnknown_813E61C -gUnknown_813E61C: @ 813E61C -.byte 0xf6, 0x00, 0x11, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813E764 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813E738 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813E71C -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813E6EC -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813E6EC -gUnknown_813E6EC: @ 813E6EC -.string " It{APOSTROPHE}s out at the cape.\n" -.string "You can{APOSTROPHE}t miss it.\0" -.align 2, 0 - -.global gUnknown_813E71C -gUnknown_813E71C: @ 813E71C -.string " Straight down this path.\0" -.align 2, 0 - -.global gUnknown_813E738 -gUnknown_813E738: @ 813E738 -.string " The {COLOR_1 CYAN}Pelipper Post Office{END_COLOR_TEXT_1}\n" -.string "would be...\0" -.align 2, 0 - -.global gUnknown_813E764 -gUnknown_813E764: @ 813E764 -.string " Pardon?\n" -.string "Oh{COMMA} the {COLOR_1 CYAN}Pelipper Post Office{END_COLOR_TEXT_1}?\0" -.align 2, 0 - -.global gUnknown_813E794 -gUnknown_813E794: @ 813E794 -.byte 0xf6, 0x00, 0x21, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813E844 -gUnknown_813E844: @ 813E844 -.byte 0xf6, 0x00, 0x2f, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813E874 -gUnknown_813E874: @ 813E874 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813E844 - -.global gUnknown_813E880 -gUnknown_813E880: @ 813E880 -.byte 0xf6, 0x00, 0x37, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813EAB0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813EA74 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813EA34 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813E9F8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813E9C0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813E9C0 -gUnknown_813E9C0: @ 813E9C0 -.string " Let{APOSTROPHE}s go to the {COLOR_1 CYAN}Pelipper\n" -.string "Post Office{END_COLOR_TEXT_1} at least.\0" -.align 2, 0 - -.global gUnknown_813E9F8 -gUnknown_813E9F8: @ 813E9F8 -.string " We haven{APOSTROPHE}t gone to the\n" -.string "{COLOR_1 CYAN}Pelipper Post Office{END_COLOR_TEXT_1} yet.\0" -.align 2, 0 - -.global gUnknown_813EA34 -gUnknown_813EA34: @ 813EA34 -.string " You can go home after we\n" -.string "go to the {COLOR_1 CYAN}Pelipper Post Office{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_813EA74 -gUnknown_813EA74: @ 813EA74 -.string " We haven{APOSTROPHE}t gone to the\n" -.string "{COLOR_1 CYAN}Pelipper Post Office{END_COLOR_TEXT_1} yet?\0" -.align 2, 0 - -.global gUnknown_813EAB0 -gUnknown_813EAB0: @ 813EAB0 -.string " Huh?\n" -.string "Are you going home already?\0" -.align 2, 0 - -.global gUnknown_813EAD4 -gUnknown_813EAD4: @ 813EAD4 -.byte 0xf6, 0x00, 0x4f, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813EB54 -gUnknown_813EB54: @ 813EB54 -.byte 0xf6, 0x00, 0x5a, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xb8, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813EBD4 -gUnknown_813EBD4: @ 813EBD4 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813EB54 - -.global gUnknown_813EBE0 -gUnknown_813EBE0: @ 813EBE0 -.byte 0xf6, 0x00, 0x67, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813EC40 -gUnknown_813EC40: @ 813EC40 -.byte 0xf6, 0x00, 0x70, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813ECA0 -gUnknown_813ECA0: @ 813ECA0 -.byte 0xf6, 0x00, 0x79, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813ED00 -gUnknown_813ED00: @ 813ED00 -.byte 0xf6, 0x00, 0x82, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813ED60 -gUnknown_813ED60: @ 813ED60 -.byte 0xf6, 0x00, 0x8b, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813EDC0 -gUnknown_813EDC0: @ 813EDC0 -.byte 0xf6, 0x00, 0x94, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb8, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x09, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813EE60 -gUnknown_813EE60: @ 813EE60 -.byte 0xf6, 0x00, 0xa1, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x51, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813EEA0 -gUnknown_813EEA0: @ 813EEA0 -.byte 0xf6, 0x00, 0xa8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813EF44 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813EF10 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813EF10 -gUnknown_813EF10: @ 813EF10 -.string " More Pokémon are starting\n" -.string "their own rescue teams.\0" -.align 2, 0 - -.global gUnknown_813EF44 -gUnknown_813EF44: @ 813EF44 -.string " There{APOSTROPHE}ve been so many\n" -.string "natural disasters lately...\0" -.align 2, 0 - -.global gUnknown_813EF7C -gUnknown_813EF7C: @ 813EF7C -.byte 0xf6, 0x00, 0xb2, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x51, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813EFBC -gUnknown_813EFBC: @ 813EFBC -.byte 0xf6, 0x00, 0xb9, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813F05C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813F03C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813F03C -gUnknown_813F03C: @ 813F03C -.string " I hightailed it out of there!\0" -.align 2, 0 - -.global gUnknown_813F05C -gUnknown_813F05C: @ 813F05C -.string " Oh{COMMA} my gosh{COMMA} the forest fire\n" -.string "a while back was simply awful.\0" -.align 2, 0 - -.global gUnknown_813F0A0 -gUnknown_813F0A0: @ 813F0A0 -.byte 0xf6, 0x00, 0xc4, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813F0D0 -gUnknown_813F0D0: @ 813F0D0 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813F0A0 - -.global gUnknown_813F0DC -gUnknown_813F0DC: @ 813F0DC -.byte 0xf6, 0x00, 0xcc, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813F218 -closeTextBox -.byte 0x93, 0x08, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813F1DC -closeTextBox -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813F1DC -gUnknown_813F1DC: @ 813F1DC -.string " We{APOSTROPHE}re already here.\n" -.string "Let me show you around a bit more.\0" -.align 2, 0 - -.global gUnknown_813F218 -gUnknown_813F218: @ 813F218 -.string " Huh?\n" -.string "You want to go home already?\0" -.align 2, 0 - -.global gUnknown_813F23C -gUnknown_813F23C: @ 813F23C -.byte 0xf6, 0x00, 0xdf, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813F2BC -gUnknown_813F2BC: @ 813F2BC -.byte 0xf6, 0x00, 0xea, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813F2EC -gUnknown_813F2EC: @ 813F2EC -.byte 0xf6, 0x00, 0xf0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813F31C -gUnknown_813F31C: @ 813F31C -.byte 0xf6, 0x00, 0xf6, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813F34C -gUnknown_813F34C: @ 813F34C -.byte 0xf6, 0x00, 0xfc, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813F37C -gUnknown_813F37C: @ 813F37C -.byte 0xf6, 0x00, 0x02, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813F3BC -gUnknown_813F3BC: @ 813F3BC -.byte 0xf6, 0x00, 0x09, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813F3FC -gUnknown_813F3FC: @ 813F3FC -.byte 0xf6, 0x00, 0x10, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813F44C -gUnknown_813F44C: @ 813F44C -.byte 0xf6, 0x00, 0x18, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813F49C -gUnknown_813F49C: @ 813F49C -.byte 0xf6, 0x00, 0x20, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813F4FC -gUnknown_813F4FC: @ 813F4FC -.byte 0xf6, 0x00, 0x29, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813F55C -gUnknown_813F55C: @ 813F55C -.byte 0xf6, 0x00, 0x32, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x1d, 0x00, 0x0a, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_813F58C -gUnknown_813F58C: @ 813F58C -.byte 0x39, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813F55C - -.global gUnknown_813F598 -gUnknown_813F598: @ 813F598 -.byte 0xf6, 0x00, 0x3a, 0x08 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x02, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813F608 -gUnknown_813F608: @ 813F608 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813F598 - -.global gUnknown_813F614 -gUnknown_813F614: @ 813F614 -.byte 0xf6, 0x00, 0x46, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8140888 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814085C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8140814 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81407B4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8140758 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8140704 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00, 0x5b, 0x02, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x10, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x10, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0x5b, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0xce, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81406C8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8140698 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8140654 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81405EC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81405B4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814056C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x2e, 0x0c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8140534 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81404E8 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81404C0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81404B0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8140450 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x5b, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x10, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x10, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0x5b, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0xce, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8140414 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x04, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81403F0 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81403E0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0x2e, 0x15, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814038C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814035C -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8140314 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81402CC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8140278 -.byte 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8140230 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814020C -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81401C4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x04, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81401A8 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8140194 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x49, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8140178 -.byte 0xe1, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd3, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8140160 -.byte 0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8140158 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B7A4 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x19, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814011C -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81400D0 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81400C0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8140068 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813FFFC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813FF94 -closeTextBox -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_813FF94 -gUnknown_813FF94: @ 813FF94 -.string " That{APOSTROPHE}s all the giveaways\n" -.string "today!{WAIT_PRESS} If you want more Friend Areas{COMMA}\n" -.string "you{APOSTROPHE}ll have to buy them now.\0" -.align 2, 0 - -.global gUnknown_813FFFC -gUnknown_813FFFC: @ 813FFFC -.string " There{APOSTROPHE}s a sign on the path\n" -.string "to the left of your rescue team base{COMMA}\n" -.string "so you shouldn{APOSTROPHE}t have any trouble.\0" -.align 2, 0 - -.global gUnknown_8140068 -gUnknown_8140068: @ 8140068 -.string " You can go to your Friend\n" -.string "Areas by taking the left path from your\n" -.string "rescue team base.\0" -.align 2, 0 - -.global gUnknown_81400C0 -gUnknown_81400C0: @ 81400C0 -.string " OK! BZBZBZZ!\0" -.align 2, 0 - -.global gUnknown_81400D0 -gUnknown_81400D0: @ 81400D0 -.string " IF YOU WANT ME ALONG\n" -.string "FOR A RESCUE{COMMA} COME GET ME AT THE\n" -.string "{COLOR_1 UNK_COLOR_5}POWER PLANT{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_814011C -gUnknown_814011C: @ 814011C -.string " I{APOSTROPHE}LL BE RESTING UP IN THE\n" -.string "{COLOR_1 UNK_COLOR_5}POWER PLANT{END_COLOR_TEXT_1} FRIEND AREA.\0" -.align 2, 0 - -.global gUnknown_8140158 -gUnknown_8140158: @ 8140158 -.string "*Yes.\0" -.align 2, 0 - -.global gUnknown_8140160 -gUnknown_8140160: @ 8140160 -.string "Give a nickname to {ARG_NICKNAME_4}?\0" -.align 2, 0 - -.global gUnknown_8140178 -gUnknown_8140178: @ 8140178 -.string "{CENTER_ALIGN}{ARG_NICKNAME_4} became a team member!\0" -.align 2, 0 - -.global gUnknown_8140194 -gUnknown_8140194: @ 8140194 -.string " YAY{COMMA} BZBZBZZ!\0" -.align 2, 0 - -.global gUnknown_81401A8 -gUnknown_81401A8: @ 81401A8 -.string " YEAH! I{APOSTROPHE}LL DO MY BEST!\0" -.align 2, 0 - -.global gUnknown_81401C4 -gUnknown_81401C4: @ 81401C4 -.string " DO YOUR BEST{COMMA} AND TRY\n" -.string "NOT TO HINDER YOUR RESCUE\n" -.string "TEAMMATES! BZBZBZZT!\0" -.align 2, 0 - -.global gUnknown_814020C -gUnknown_814020C: @ 814020C -.string " ALL RIGHT!\n" -.string "GOOD ON YOU! BZBZBZZ!\0" -.align 2, 0 - -.global gUnknown_8140230 -gUnknown_8140230: @ 8140230 -.string " So{COMMA} yes{COMMA} that{APOSTROPHE}d be awesome!\n" -.string "Glad to have your friend on board!\0" -.align 2, 0 - -.global gUnknown_8140278 -gUnknown_8140278: @ 8140278 -.string " Oh{COMMA} wow!{WAIT_PRESS}\n" -.string "Don{APOSTROPHE}t forget{COMMA} we were the ones that asked\n" -.string "your friend to join us.\0" -.align 2, 0 - -.global gUnknown_81402CC -gUnknown_81402CC: @ 81402CC -.string " I APOLOGIZE{COMMA} BUT COULD\n" -.string "YOU ALLOW MY FRIEND TO JOIN YOUR\n" -.string "RESCUE TEAM?\0" -.align 2, 0 - -.global gUnknown_8140314 -gUnknown_8140314: @ 8140314 -.string " MY FRIEND DEVELOPED AN\n" -.string "OVERWHELMING DESIRE TO BECOME YOUR\n" -.string "TEAM MEMBER.\0" -.align 2, 0 - -.global gUnknown_814035C -gUnknown_814035C: @ 814035C -.string " BUT AFTER MULLING IT\n" -.string "OVER ALL LAST NIGHT...\0" -.align 2, 0 - -.global gUnknown_814038C -gUnknown_814038C: @ 814038C -.string " SORRY.{WAIT_PRESS}\n" -.string "I KNOW MY FRIEND TURNED DOWN YOUR\n" -.string "OFFER TO JOIN YOUR TEAM YESTERDAY...\0" -.align 2, 0 - -.global gUnknown_81403E0 -gUnknown_81403E0: @ 81403E0 -.string " YAY! BZBZBZZT!\0" -.align 2, 0 - -.global gUnknown_81403F0 -gUnknown_81403F0: @ 81403F0 -.string " YES!\n" -.string "NOW I CAN JOIN THEIR TEAM!\0" -.align 2, 0 - -.global gUnknown_8140414 -gUnknown_8140414: @ 8140414 -.string " Congratulations!{WAIT_PRESS}\n" -.string "You can go to the {COLOR_1 UNK_COLOR_5}Power Plant{END_COLOR_TEXT_1} now.\0" -.align 2, 0 - -.global gUnknown_8140450 -gUnknown_8140450: @ 8140450 -.string " I{APOSTROPHE}m giving it away today!{WAIT_PRESS}\n" -.string "Wigglytuff〜♪ Wigglytuff〜♪{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s be friends... Taaaaaaah!\0" -.align 2, 0 - -.global gUnknown_81404B0 -gUnknown_81404B0: @ 81404B0 -.string " OK! Gotcha!\0" -.align 2, 0 - -.global gUnknown_81404C0 -gUnknown_81404C0: @ 81404C0 -.string " I ALSO WANT TO JOIN\n" -.string "THEIR RESCUE TEAM.\0" -.align 2, 0 - -.global gUnknown_81404E8 -gUnknown_81404E8: @ 81404E8 -.string " CAN YOU ALSO GIVE MY\n" -.string "FRIENDS ACCESS TO THE {COLOR_1 UNK_COLOR_5}POWER PLANT{END_COLOR_TEXT_1}\n" -.string "FRIEND AREA?\0" -.align 2, 0 - -.global gUnknown_8140534 -gUnknown_8140534: @ 8140534 -.string " BZBZBZZT!{WAIT_PRESS}\n" -.string "IF YOU{APOSTROPHE}RE GIVING FRIEND AREAS AWAY...\0" -.align 2, 0 - -.global gUnknown_814056C -gUnknown_814056C: @ 814056C -.string " In that case{COMMA} they may ask\n" -.string "to join your team.{WAIT_PRESS}\n" -.string "Just keep trying!\0" -.align 2, 0 - -.global gUnknown_81405B4 -gUnknown_81405B4: @ 81405B4 -.string " Sometimes{COMMA} they will come\n" -.string "to admire you as a friend.\0" -.align 2, 0 - -.global gUnknown_81405EC -gUnknown_81405EC: @ 81405EC -.string " How do you recruit new\n" -.string "members?{WAIT_PRESS} Well{COMMA} if you{APOSTROPHE}re fighting\n" -.string "Pokémon that live in a Friend Area...\0" -.align 2, 0 - -.global gUnknown_8140654 -gUnknown_8140654: @ 8140654 -.string " Now you can recruit\n" -.string "Pokémon that live in these two Friend\n" -.string "Areas.\0" -.align 2, 0 - -.global gUnknown_8140698 -gUnknown_8140698: @ 8140698 -.string " You can also go to the\n" -.string "{COLOR_1 UNK_COLOR_5}Mist-Rise Forest{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_81406C8 -gUnknown_81406C8: @ 81406C8 -.string " Congratulations!{WAIT_PRESS}\n" -.string "You can go to the {COLOR_1 UNK_COLOR_5}Wild Plains{END_COLOR_TEXT_1} now.\0" -.align 2, 0 - -.global gUnknown_8140704 -gUnknown_8140704: @ 8140704 -.string " Let{APOSTROPHE}s do it!{WAIT_PRESS}\n" -.string "Wigglytuff〜♪ Wigglytuff〜♪{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s be friends... Taaaaaaah!\0" -.align 2, 0 - -.global gUnknown_8140758 -gUnknown_8140758: @ 8140758 -.string " Since you{APOSTROPHE}re here for the\n" -.string "very first time{COMMA} I{APOSTROPHE}ll give you two Friend\n" -.string "Areas for free!\0" -.align 2, 0 - -.global gUnknown_81407B4 -gUnknown_81407B4: @ 81407B4 -.string " You{APOSTROPHE}ve come to the right\n" -.string "place!{WAIT_PRESS} I sell Friend Areas to add\n" -.string "members to your rescue team.\0" -.align 2, 0 - -.global gUnknown_8140814 -gUnknown_8140814: @ 8140814 -.string " ...Oh{COMMA} I get it!{WAIT_PRESS}\n" -.string "You started a rescue team too{COMMA} didn{APOSTROPHE}t you?\0" -.align 2, 0 - -.global gUnknown_814085C -gUnknown_814085C: @ 814085C -.string " ...Oh?{WAIT_PRESS}\n" -.string "Is this your first visit here?\0" -.align 2, 0 - -.global gUnknown_8140888 -gUnknown_8140888: @ 8140888 -.string " Friends are my treasures!\n" -.string "Welcome to {ARG_NICKNAME_2} Club--a circle\n" -.string "of friends! \0" -.align 2, 0 - -.global gUnknown_81408D0 -gUnknown_81408D0: @ 81408D0 -.byte 0xf6, 0x00, 0xe1, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8140A10 -gUnknown_8140A10: @ 8140A10 -.byte 0xf6, 0x00, 0xf8, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8140AE0 -gUnknown_8140AE0: @ 8140AE0 -.byte 0xf6, 0x00, 0x08, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb8, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x02, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8140BA0 -gUnknown_8140BA0: @ 8140BA0 -.byte 0xf6, 0x00, 0x17, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x01, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x10, 0x80, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x88, 0x00, 0x01, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8140DC0 -gUnknown_8140DC0: @ 8140DC0 -.byte 0xf6, 0x00, 0x3c, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x01, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x88, 0x00, 0x01, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8140F60 -gUnknown_8140F60: @ 8140F60 -.byte 0xf6, 0x00, 0x59, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x8f -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8141040 -gUnknown_8141040: @ 8141040 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8140F60 - -.global gUnknown_814104C -gUnknown_814104C: @ 814104C -.byte 0xf6, 0x00, 0x6c, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x28, 0x00, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x28, 0x00, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0x20, 0x00, 0x03, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0x30, 0x00, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x00, 0x00, 0x04, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x88, 0x00, 0x00, 0x01, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x00, 0x00, 0x01, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x7a, 0x00, 0xf0, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x18, 0x00, 0x01, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x88, 0x00, 0x80, 0x01, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81412BC -gUnknown_81412BC: @ 81412BC -.byte 0xf6, 0x00, 0x96, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x03, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142CAC -closeTextBox -.byte 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x86, 0x00, 0x00, 0x01, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -pause 0x1e -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x2e, 0x0f, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142C7C -closeTextBox -pause 0x0a -.byte 0x2e, 0x02, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142C4C -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142C1C -closeTextBox -pause 0x0a -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142C04 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142BE8 -closeTextBox -pause 0x0a -.byte 0x93, 0x04, 0x0b, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x05, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142BD0 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142B8C -closeTextBox -pause 0x04 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142B7C -closeTextBox -pause 0x04 -setFlag 0x04 -.byte 0x93, 0x04, 0x0b, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142B44 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142B04 -closeTextBox -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -rotate 0x04, CCW, south -setFlag 0x06 -.byte 0x2e, 0x05, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142AB8 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142A68 -closeTextBox -pause 0x1e -setFlag 0x09 -setFlag 0x06 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142A60 -closeTextBox -setFlag 0x03 -pause 0x04 -setFlag 0x04 -setFlag 0x08 -setFlag 0x07 -setFlag 0x0d -setFlag 0x0e -pause 0x14 -.byte 0x93, 0x04, 0x0b, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -setFlag 0x06 -pause 0x01 -setFlag 0x09 -pause 0x46 -setFlag 0x08 -setFlag 0x0d -setFlag 0x0e -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x0f, 0x03, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142A44 -closeTextBox -pause 0x1e -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142A30 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142A20 -closeTextBox -pause 0x1e -setFlag 0x0a -setFlag 0x07 -setFlag 0x0d -setFlag 0x0e -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81429F4 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81429C0 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142990 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142954 -closeTextBox -pause 0x04 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x10, 0x03, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142930 -closeTextBox -pause 0x0a -setFlag 0x08 -setFlag 0x0d -setFlag 0x0e -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -setFlag 0x0d -setFlag 0x0e -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142928 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81428FC -closeTextBox -pause 0x14 -.byte 0x45, 0x00, 0x50, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x0e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81428E0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81428C8 -closeTextBox -pause 0x0a -rotate 0x04, shortestDir, south -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x05, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142898 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814285C -closeTextBox -pause 0x04 -setFlag 0x09 -pause 0x05 -rotate 0x04, shortestDir, west -setFlag 0x06 -pause 0x14 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142824 -closeTextBox -pause 0x04 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81427D4 -closeTextBox -pause 0x04 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81427B0 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142764 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142728 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81426DC -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142694 -closeTextBox -pause 0x10 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142684 -closeTextBox -pause 0x04 -.byte 0x2e, 0x02, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142648 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814260C -closeTextBox -pause 0x1e -pause 0x01 -setFlag 0x07 -setFlag 0x04 -setFlag 0x0c -setFlag 0x0b -setFlag 0x0a -setFlag 0x0d -setFlag 0x0e -pause 0x2e -.byte 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81425F8 -pause 0x3c -.byte 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81425B8 -pause 0x28 -rotate 0x0a, 0x0b, east -setFlag 0x06 -setFlag 0x09 -pause 0x46 -closeTextBox -.byte 0x48, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x14, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81425B0 -closeTextBox -pause 0x14 -setFlag 0x0a -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -setFlag 0x09 -setFlag 0x07 -pause 0x18 -.byte 0x2e, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142598 -closeTextBox -pause 0x04 -setFlag 0x0c -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x0d, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142588 -closeTextBox -pause 0x1e -.byte 0x2e, 0x0f, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142568 -closeTextBox -setFlag 0x0a -pause 0x40 -.byte 0x2e, 0x14, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142558 -closeTextBox -pause 0x0f -setFlag 0x0a -setFlag 0x0b -setFlag 0x0c -pause 0x5e -pause 0x1e -setFlag 0x09 -.byte 0x45, 0x00, 0x3c, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142538 -closeTextBox -pause 0x0a -.byte 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x2e, 0x0c, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142528 -closeTextBox -setFlag 0x06 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81424F0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81424B0 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142480 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814243C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142480 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814243C -closeTextBox -closeTextBox -setFlag 0x03 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x20 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814241C -closeTextBox -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -setFlag 0x03 -closeThread - -.global gUnknown_814241C -gUnknown_814241C: @ 814241C -.string " Not if I can help it!\n" -.string "Kekeh!\0" -.align 2, 0 - -.global gUnknown_814243C -gUnknown_814243C: @ 814243C -.string " Let{APOSTROPHE}s recruit more members\n" -.string "and make our rescue team first-class!\0" -.align 2, 0 - -.global gUnknown_8142480 -gUnknown_8142480: @ 8142480 -.string " Whew{COMMA} {ARG_NICKNAME_0}!{WAIT_PRESS}\n" -.string "We need to become like them!\0" -.align 2, 0 - -.global gUnknown_81424B0 -gUnknown_81424B0: @ 81424B0 -.string " Let{APOSTROPHE}s get more members and\n" -.string "make our rescue team first-class!\0" -.align 2, 0 - -.global gUnknown_81424F0 -gUnknown_81424F0: @ 81424F0 -.string " Whew{COMMA} {ARG_NICKNAME_0}...{WAIT_PRESS}\n" -.string "That{APOSTROPHE}s what we{APOSTROPHE}ve got to become.\0" -.align 2, 0 - -.global gUnknown_8142528 -gUnknown_8142528: @ 8142528 -.string " ...C-cool...\0" -.align 2, 0 - -.global gUnknown_8142538 -gUnknown_8142538: @ 8142538 -.string " Whew!\n" -.string "That was scary! Sheesh!\0" -.align 2, 0 - -.global gUnknown_8142558 -gUnknown_8142558: @ 8142558 -.string " Let{APOSTROPHE}s go.\0" -.align 2, 0 - -.global gUnknown_8142568 -gUnknown_8142568: @ 8142568 -.string " ......{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s fine. Nothing.\0" -.align 2, 0 - -.global gUnknown_8142588 -gUnknown_8142588: @ 8142588 -.string " What{APOSTROPHE}s up?\0" -.align 2, 0 - -.global gUnknown_8142598 -gUnknown_8142598: @ 8142598 -.string " Wah! What{APOSTROPHE}s wrong?\0" -.align 2, 0 - -.global gUnknown_81425B0 -gUnknown_81425B0: @ 81425B0 -.string " ...!\0" -.align 2, 0 - -.global gUnknown_81425B8 -gUnknown_81425B8: @ 81425B8 -.string "{COLOR_1 YELLOW}{SPEECH_BUBBLE}{END_COLOR_TEXT_1}: I wouldn{APOSTROPHE}t expect less from a Gold\n" -.string "Rank rescue team.\0" -.align 2, 0 - -.global gUnknown_81425F8 -gUnknown_81425F8: @ 81425F8 -.string "{COLOR_1 YELLOW}{SPEECH_BUBBLE}{END_COLOR_TEXT_1}: C-cool...\0" -.align 2, 0 - -.global gUnknown_814260C -gUnknown_814260C: @ 814260C -.string " If anyone turns you down\n" -.string "again{COMMA} come see me.\n" -.string "Take care.\0" -.align 2, 0 - -.global gUnknown_8142648 -gUnknown_8142648: @ 8142648 -.string " No need for thanks.\n" -.string "It is only natural that you get help.\0" -.align 2, 0 - -.global gUnknown_8142684 -gUnknown_8142684: @ 8142684 -.string " Th-thank you.\0" -.align 2, 0 - -.global gUnknown_8142694 -gUnknown_8142694: @ 8142694 -.string " {ARG_NICKNAME_5} does all the\n" -.string "commanding in the team.{WAIT_PRESS}\n" -.string "He{APOSTROPHE}s clearly in charge.\0" -.align 2, 0 - -.global gUnknown_81426DC -gUnknown_81426DC: @ 81426DC -.string " Apparently{COMMA} he{APOSTROPHE}s memorized\n" -.string "everything that{APOSTROPHE}s happened in the world.\0" -.align 2, 0 - -.global gUnknown_8142728 -gUnknown_8142728: @ 8142728 -.string " He{APOSTROPHE}s endowed with an\n" -.string "amazing brain and an IQ of 5{COMMA}000.\0" -.align 2, 0 - -.global gUnknown_8142764 -gUnknown_8142764: @ 8142764 -.string " {ARG_NICKNAME_5} doesn{APOSTROPHE}t like\n" -.string "physical attacks.\n" -.string "He fights with his psychic powers.\0" -.align 2, 0 - -.global gUnknown_81427B0 -gUnknown_81427B0: @ 81427B0 -.string " And that{APOSTROPHE}s the leader{COMMA}\n" -.string "{ARG_NICKNAME_5}.\0" -.align 2, 0 - -.global gUnknown_81427D4 -gUnknown_81427D4: @ 81427D4 -.string " That{APOSTROPHE}s {ARG_NICKNAME_7}.{WAIT_PRESS}\n" -.string "He takes great pride in his armored\n" -.string "body and amazing strength.\0" -.align 2, 0 - -.global gUnknown_8142824 -gUnknown_8142824: @ 8142824 -.string " That{APOSTROPHE}s {ARG_NICKNAME_6}.{WAIT_PRESS}\n" -.string "His Flamethrower can melt mountains!\0" -.align 2, 0 - -.global gUnknown_814285C -gUnknown_814285C: @ 814285C -.string " They{APOSTROPHE}re the most famous\n" -.string "rescue team around these parts.\0" -.align 2, 0 - -.global gUnknown_8142898 -gUnknown_8142898: @ 8142898 -.string " What? You don{APOSTROPHE}t know?!\n" -.string "It{APOSTROPHE}s {ARG_NICKNAME_5}{APOSTROPHE}s team!\0" -.align 2, 0 - -.global gUnknown_81428C8 -gUnknown_81428C8: @ 81428C8 -.string " Say{COMMA} who are they?\0" -.align 2, 0 - -.global gUnknown_81428E0 -gUnknown_81428E0: @ 81428E0 -.string " Hey{COMMA} who are those guys?\0" -.align 2, 0 - -.global gUnknown_81428FC -gUnknown_81428FC: @ 81428FC -.string " That {ARG_NICKNAME_3} agreed without\n" -.string "any argument...\0" -.align 2, 0 - -.global gUnknown_8142928 -gUnknown_8142928: @ 8142928 -.string " Wow...\0" -.align 2, 0 - -.global gUnknown_8142930 -gUnknown_8142930: @ 8142930 -.string " Grr...{WAIT_PRESS}\n" -.string "Tch! OK{COMMA} we{APOSTROPHE}ll do it.\0" -.align 2, 0 - -.global gUnknown_8142954 -gUnknown_8142954: @ 8142954 -.string " It{APOSTROPHE}s an easy matter for you.{WAIT_PRESS}\n" -.string "Help that Pokémon out.\0" -.align 2, 0 - -.global gUnknown_8142990 -gUnknown_8142990: @ 8142990 -.string " Your leafy fans can whip up\n" -.string "powerful winds.\0" -.align 2, 0 - -.global gUnknown_81429C0 -gUnknown_81429C0: @ 81429C0 -.string " To save {ARG_NICKNAME_2}{APOSTROPHE}s\n" -.string "friend{COMMA} a strong wind is needed.\0" -.align 2, 0 - -.global gUnknown_81429F4 -gUnknown_81429F4: @ 81429F4 -.string " Hey. Rather coldhearted{COMMA}\n" -.string "aren{APOSTROPHE}t you?\0" -.align 2, 0 - -.global gUnknown_8142A20 -gUnknown_8142A20: @ 8142A20 -.string " That{APOSTROPHE}s {ARG_NICKNAME_5}?!\0" -.align 2, 0 - -.global gUnknown_8142A30 -gUnknown_8142A30: @ 8142A30 -.string " Oh! It{APOSTROPHE}s {ARG_NICKNAME_5}!\0" -.align 2, 0 - -.global gUnknown_8142A44 -gUnknown_8142A44: @ 8142A44 -.string " Oh! Wh-what do you want?\0" -.align 2, 0 - -.global gUnknown_8142A60 -gUnknown_8142A60: @ 8142A60 -.string " Wait!\0" -.align 2, 0 - -.global gUnknown_8142A68 -gUnknown_8142A68: @ 8142A68 -.string " {ARG_NICKNAME_2}{APOSTROPHE}s been begging\n" -.string "for help{COMMA} but...{WAIT_PRESS}\n" -.string "I feel sorry for that poor Pokémon.\0" -.align 2, 0 - -.global gUnknown_8142AB8 -gUnknown_8142AB8: @ 8142AB8 -.string " But his team{APOSTROPHE}s greedy.\n" -.string "They don{APOSTROPHE}t work unless they get paid\n" -.string "royally.\0" -.align 2, 0 - -.global gUnknown_8142B04 -gUnknown_8142B04: @ 8142B04 -.string " He{APOSTROPHE}s a Pokémon named\n" -.string "{ARG_POKEMON_3}.\n" -.string "He{APOSTROPHE}s got his own rescue team.\0" -.align 2, 0 - -.global gUnknown_8142B44 -gUnknown_8142B44: @ 8142B44 -.string " There{COMMA} the one in the middle\n" -.string "with the pointy nose.\0" -.align 2, 0 - -.global gUnknown_8142B7C -gUnknown_8142B7C: @ 8142B7C -.string " See that guy?\0" -.align 2, 0 - -.global gUnknown_8142B8C -gUnknown_8142B8C: @ 8142B8C -.string " {ARG_NICKNAME_2}{APOSTROPHE}s begging for\n" -.string "a rescue mission{COMMA} but not finding any luck.\0" -.align 2, 0 - -.global gUnknown_8142BD0 -gUnknown_8142BD0: @ 8142BD0 -.string " Huh? That scene there?\0" -.align 2, 0 - -.global gUnknown_8142BE8 -gUnknown_8142BE8: @ 8142BE8 -.string " Hi{COMMA} what{APOSTROPHE}s going on?\0" -.align 2, 0 - -.global gUnknown_8142C04 -gUnknown_8142C04: @ 8142C04 -.string " Hey{COMMA} what{APOSTROPHE}s up?\0" -.align 2, 0 - -.global gUnknown_8142C1C -gUnknown_8142C1C: @ 8142C1C -.string " But my friend needs a gust\n" -.string "of wind! Please!\0" -.align 2, 0 - -.global gUnknown_8142C4C -gUnknown_8142C4C: @ 8142C4C -.string " Forget it.\n" -.string "We{APOSTROPHE}re not about to work for that.\0" -.align 2, 0 - -.global gUnknown_8142C7C -gUnknown_8142C7C: @ 8142C7C -.string " Please help my friend!\n" -.string "Please{COMMA} I need help!\0" -.align 2, 0 - -.global gUnknown_8142CAC -gUnknown_8142CAC: @ 8142CAC -.string " Huh? What{APOSTROPHE}s going on over\n" -.string "there?{WAIT_PRESS}\n" -.string "There seems to be a commotion.\0" -.align 2, 0 - -.global gUnknown_8142CF4 -gUnknown_8142CF4: @ 8142CF4 -.byte 0xf6, 0x00, 0xc7, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x4e, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01, 0x17, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x55, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x58, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x4d, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0a, CCW, east -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x20, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8142F64 -gUnknown_8142F64: @ 8142F64 -.byte 0xf6, 0x00, 0xf1, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x58, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, CW, west -.byte 0x61, 0x00, 0x00, 0x04, 0x30, 0x02, 0x00, 0x00 -.byte 0x08, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x04, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CCW, southeast -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, east -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8143104 -gUnknown_8143104: @ 8143104 -.byte 0xf6, 0x00, 0x0e, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, west -.byte 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, northwest -.byte 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, north -.byte 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, north -.byte 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northwest -.byte 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x96 -.byte 0x91, 0x08, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x91, 0x04, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8143254 -gUnknown_8143254: @ 8143254 -.byte 0xf6, 0x00, 0x26, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 3 -.byte 0x2d, 0x07, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, southwest -.byte 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, south -.byte 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, CCW, east -.byte 0x61, 0x00, 0x00, 0x04, 0xd0, 0x01, 0x00, 0x00 -.byte 0x08, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x04, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, east -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81433E4 -gUnknown_81433E4: @ 81433E4 -.byte 0xf6, 0x00, 0x42, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x10, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x10, 0x00, 0x01, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0e -.byte 0xdb, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x08, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, southwest -.byte 0xdb, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, east -.byte 0xdb, 0x00, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x30, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8143574 -gUnknown_8143574: @ 8143574 -.byte 0xf6, 0x00, 0x5e, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, east -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x30 -.byte 0x91, 0x04, 0x0b, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x28 -.byte 0x91, 0x04, 0x0b, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, southwest -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x28 -.byte 0x4d, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, west -.byte 0xdb, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xcc, 0x01, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x6b, 0x00, 0xcc, 0x01, 0x18, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x20 -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81437D4 -gUnknown_81437D4: @ 81437D4 -.byte 0xf6, 0x00, 0x87, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xcc, 0x01, 0x19, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8143884 -gUnknown_8143884: @ 8143884 -.byte 0xf6, 0x00, 0x95, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xcc, 0x01, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8143934 -gUnknown_8143934: @ 8143934 -.byte 0xf6, 0x00, 0xa3, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x02, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc7, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x0a, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc7, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff -.byte 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8143B44 -gUnknown_8143B44: @ 8143B44 -.byte 0xf6, 0x00, 0xc7, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x1a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x0f, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0xf0, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd2, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x10, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x10 -.byte 0x8e, 0x10, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x10 -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x80, 0x00, 0x1c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x80 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8143D14 -gUnknown_8143D14: @ 8143D14 -.byte 0xf6, 0x00, 0xe7, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0xf0, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x8e, 0x10, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x10 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x4d, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x88, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x88 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8143E74 -gUnknown_8143E74: @ 8143E74 -.byte 0xf6, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0xf0, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x10, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x88, 0x00, 0x22, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x88 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8143F74 -gUnknown_8143F74: @ 8143F74 -.byte 0xf6, 0x00, 0x13, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x01, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0a, shortestDir, south -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 24 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x8c, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8144064 -gUnknown_8144064: @ 8144064 -.byte 0xf6, 0x00, 0x25, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8144094 -gUnknown_8144094: @ 8144094 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144064 - -.global gUnknown_81440A0 -gUnknown_81440A0: @ 81440A0 -.byte 0xf6, 0x00, 0x2d, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8144100 -gUnknown_8144100: @ 8144100 -.byte 0xf6, 0x00, 0x36, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8144160 -gUnknown_8144160: @ 8144160 -.byte 0xf6, 0x00, 0x3f, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81441C0 -gUnknown_81441C0: @ 81441C0 -.byte 0xf6, 0x00, 0x48, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8144220 -gUnknown_8144220: @ 8144220 -.byte 0xf6, 0x00, 0x51, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8144280 -gUnknown_8144280: @ 8144280 -.byte 0xf6, 0x00, 0x5a, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81442E0 -gUnknown_81442E0: @ 81442E0 -.byte 0xf6, 0x00, 0x63, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x51, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8144320 -gUnknown_8144320: @ 8144320 -.byte 0xf6, 0x00, 0x6a, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144544 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144514 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81444C4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144484 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144440 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81443E0 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81443E0 -gUnknown_81443E0: @ 81443E0 -.string " It{APOSTROPHE}s rumored that the natural\n" -.string "disasters are to blame{COMMA} but...{WAIT_PRESS}\n" -.string "I wonder what{APOSTROPHE}s going on.\0" -.align 2, 0 - -.global gUnknown_8144440 -gUnknown_8144440: @ 8144440 -.string " But for some reason{COMMA} we\n" -.string "haven{APOSTROPHE}t been able to evolve at all.\0" -.align 2, 0 - -.global gUnknown_8144484 -gUnknown_8144484: @ 8144484 -.string " You know how we Pokémon\n" -.string "evolve if the conditions are right?\0" -.align 2, 0 - -.global gUnknown_81444C4 -gUnknown_81444C4: @ 81444C4 -.string " By the way...{WAIT_PRESS}\n" -.string "Apparently{COMMA} it{APOSTROPHE}s been impossible for us to\n" -.string "evolve lately.\0" -.align 2, 0 - -.global gUnknown_8144514 -gUnknown_8144514: @ 8144514 -.string " That{APOSTROPHE}s how a real hero has\n" -.string "to carry himself.\0" -.align 2, 0 - -.global gUnknown_8144544 -gUnknown_8144544: @ 8144544 -.string " Alakazam and his sidekicks\n" -.string "were sure cool before.\0" -.align 2, 0 - -.global gUnknown_8144578 -gUnknown_8144578: @ 8144578 -.byte 0xf6, 0x00, 0x79, 0x0c -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 1 -.byte 0x8b, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81445B8 -gUnknown_81445B8: @ 81445B8 -.byte 0xf6, 0x00, 0x80, 0x0c -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144830 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81447DC -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144788 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814475C -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814473C -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144708 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81446B8 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81446B8 -gUnknown_81446B8: @ 81446B8 -.string " If you have a rescue team\n" -.string "too{COMMA} I highly recommend you pay the dojo\n" -.string "a visit.\0" -.align 2, 0 - -.global gUnknown_8144708 -gUnknown_8144708: @ 8144708 -.string " From here{COMMA} it{APOSTROPHE}s just straight\n" -.string "down this path.\0" -.align 2, 0 - -.global gUnknown_814473C -gUnknown_814473C: @ 814473C -.string " You can find the dojo easily.\0" -.align 2, 0 - -.global gUnknown_814475C -gUnknown_814475C: @ 814475C -.string " So they got together and\n" -.string "built the dojo.\0" -.align 2, 0 - -.global gUnknown_8144788 -gUnknown_8144788: @ 8144788 -.string " There was a group of\n" -.string "concerned Pokémon...{WAIT_PRESS}\n" -.string "They wanted to support rescue teams.\0" -.align 2, 0 - -.global gUnknown_81447DC -gUnknown_81447DC: @ 81447DC -.string " You know how many rescue\n" -.string "teams started up? To deal with all\n" -.string "the natural disasters?\0" -.align 2, 0 - -.global gUnknown_8144830 -gUnknown_8144830: @ 8144830 -.string " Did you know that a new\n" -.string "training gym--I think they called it\n" -.string "a dojo--opened in town?\0" -.align 2, 0 - -.global gUnknown_8144888 -gUnknown_8144888: @ 8144888 -.byte 0xf6, 0x00, 0x93, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, south -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe8, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8144938 -gUnknown_8144938: @ 8144938 -.byte 0xf6, 0x00, 0xa1, 0x0c -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144BB4 -.byte 0xd5, 0x01, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144B70 -.byte 0xd9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144B5C -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144B50 -.byte 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144B38 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144AD8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144AA0 -.byte 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144A7C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144A48 -.byte 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8144A48 -gUnknown_8144A48: @ 8144A48 -.string " ......{WAIT_PRESS}\n" -.string "I{APOSTROPHE}m not falling for a lie like that.\0" -.align 2, 0 - -.global gUnknown_8144A7C -gUnknown_8144A7C: @ 8144A7C -.string " What?!\n" -.string "You{APOSTROPHE}re Gold Rank too?!\0" -.align 2, 0 - -.global gUnknown_8144AA0 -gUnknown_8144AA0: @ 8144AA0 -.string " It just goes to show how\n" -.string "awesome Alakazam{APOSTROPHE}s team is!\0" -.align 2, 0 - -.global gUnknown_8144AD8 -gUnknown_8144AD8: @ 8144AD8 -.string " It might be rude to say it...{WAIT_PRESS}\n" -.string "but you obviously look like you really are\n" -.string "nothing special.\0" -.align 2, 0 - -.global gUnknown_8144B38 -gUnknown_8144B38: @ 8144B38 -.string " I guess that{APOSTROPHE}s true.\0" -.align 2, 0 - -.global gUnknown_8144B50 -gUnknown_8144B50: @ 8144B50 -.string "Gold Rank.\0" -.align 2, 0 - -.global gUnknown_8144B5C -gUnknown_8144B5C: @ 8144B5C -.string "Nothing special.\0" -.align 2, 0 - -.global gUnknown_8144B70 -gUnknown_8144B70: @ 8144B70 -.string " You have a rescue team too{COMMA}\n" -.string "don{APOSTROPHE}t you?{WAIT_PRESS}\n" -.string "What{APOSTROPHE}s your rank?\0" -.align 2, 0 - -.global gUnknown_8144BB4 -gUnknown_8144BB4: @ 8144BB4 -.string " Alakazam{APOSTROPHE}s team has the\n" -.string "Gold Rank. Isn{APOSTROPHE}t that awesome?\0" -.align 2, 0 - -.global gUnknown_8144BF0 -gUnknown_8144BF0: @ 8144BF0 -.byte 0xf6, 0x00, 0xb5, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x0e, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x0e, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8144C80 -gUnknown_8144C80: @ 8144C80 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144BF0 - -.global gUnknown_8144C8C -gUnknown_8144C8C: @ 8144C8C -.byte 0xf6, 0x00, 0xc3, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x00, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142C7C -closeTextBox -pause 0x0a -.byte 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142C4C -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142C1C -closeTextBox -pause 0x0a -setFlag 0x03 -closeThread - -.global gUnknown_8144D9C -gUnknown_8144D9C: @ 8144D9C -.byte 0xf6, 0x00, 0xda, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8144DDC -gUnknown_8144DDC: @ 8144DDC -.byte 0xf6, 0x00, 0xe1, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -closeThread - -.global gUnknown_8144E0C -gUnknown_8144E0C: @ 8144E0C -.byte 0xf6, 0x00, 0xe7, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -closeThread - -.global gUnknown_8144E3C -gUnknown_8144E3C: @ 8144E3C -.byte 0xf6, 0x00, 0xed, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -closeThread - -.global gUnknown_8144E6C -gUnknown_8144E6C: @ 8144E6C -.byte 0xf6, 0x00, 0xf3, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -closeThread - -.global gUnknown_8144E9C -gUnknown_8144E9C: @ 8144E9C -.byte 0xf6, 0x00, 0xf9, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -closeThread - -.global gUnknown_8144ECC -gUnknown_8144ECC: @ 8144ECC -.byte 0xf6, 0x00, 0xff, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -closeThread - -.global gUnknown_8144EFC -gUnknown_8144EFC: @ 8144EFC -.byte 0xf6, 0x00, 0x05, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -closeThread - -.global gUnknown_8144F2C -gUnknown_8144F2C: @ 8144F2C -.byte 0xf6, 0x00, 0x0b, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -closeThread - -.global gUnknown_8144F5C -gUnknown_8144F5C: @ 8144F5C -.byte 0xf6, 0x00, 0x11, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8144F8C -gUnknown_8144F8C: @ 8144F8C -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144F5C - -.global gUnknown_8144F98 -gUnknown_8144F98: @ 8144F98 -.byte 0xf6, 0x00, 0x19, 0x0d -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x17, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8144FF8 -gUnknown_8144FF8: @ 8144FF8 -.byte 0xf6, 0x00, 0x22, 0x0d -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x18, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145058 -gUnknown_8145058: @ 8145058 -.byte 0xf6, 0x00, 0x2b, 0x0d -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x13, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81450B8 -gUnknown_81450B8: @ 81450B8 -.byte 0xf6, 0x00, 0x34, 0x0d -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x19, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145118 -gUnknown_8145118: @ 8145118 -.byte 0xf6, 0x00, 0x3d, 0x0d -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x10, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145178 -gUnknown_8145178: @ 8145178 -.byte 0xf6, 0x00, 0x46, 0x0d -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x1b, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81451D8 -gUnknown_81451D8: @ 81451D8 -.byte 0xf6, 0x00, 0x4f, 0x0d -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x51, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145218 -gUnknown_8145218: @ 8145218 -.byte 0xf6, 0x00, 0x56, 0x0d -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81452B8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145288 -.byte 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145288 -gUnknown_8145288: @ 8145288 -.string " I wonder...\n" -.string "Did Shiftry maybe just run off?\0" -.align 2, 0 - -.global gUnknown_81452B8 -gUnknown_81452B8: @ 81452B8 -.string " We heard.{WAIT_PRESS}\n" -.string "Shiftry hasn{APOSTROPHE}t returned?\0" -.align 2, 0 - -.global gUnknown_81452E0 -gUnknown_81452E0: @ 81452E0 -.byte 0xf6, 0x00, 0x60, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x51, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145320 -gUnknown_8145320: @ 8145320 -.byte 0xf6, 0x00, 0x67, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814541C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81453D8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81453A0 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81453A0 -gUnknown_81453A0: @ 81453A0 -.string " I don{APOSTROPHE}t think they were\n" -.string "very enthusiastic about it.\0" -.align 2, 0 - -.global gUnknown_81453D8 -gUnknown_81453D8: @ 81453D8 -.string " They went out on that\n" -.string "rescue only because Alakazam told them\n" -.string "to...\0" -.align 2, 0 - -.global gUnknown_814541C -gUnknown_814541C: @ 814541C -.string " I{APOSTROPHE}m afraid Shiftry{APOSTROPHE}s team is\n" -.string "always about the money.\0" -.align 2, 0 - -.global gUnknown_8145458 -gUnknown_8145458: @ 8145458 -.byte 0xf6, 0x00, 0x72, 0x0d -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145488 -gUnknown_8145488: @ 8145488 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145458 - -.global gUnknown_8145494 -gUnknown_8145494: @ 8145494 -.byte 0xf6, 0x00, 0x7a, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81454F4 -gUnknown_81454F4: @ 81454F4 -.byte 0xf6, 0x00, 0x83, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145554 -gUnknown_8145554: @ 8145554 -.byte 0xf6, 0x00, 0x8c, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81455B4 -gUnknown_81455B4: @ 81455B4 -.byte 0xf6, 0x00, 0x95, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145614 -gUnknown_8145614: @ 8145614 -.byte 0xf6, 0x00, 0x9e, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145674 -gUnknown_8145674: @ 8145674 -.byte 0xf6, 0x00, 0xa7, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81456D4 -gUnknown_81456D4: @ 81456D4 -.byte 0xf6, 0x00, 0xb0, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x51, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145714 -gUnknown_8145714: @ 8145714 -.byte 0xf6, 0x00, 0xb7, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145774 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145774 -gUnknown_8145774: @ 8145774 -.string " Shiftry was abducted?\n" -.string "That{APOSTROPHE}s shocking news!\0" -.align 2, 0 - -.global gUnknown_81457A4 -gUnknown_81457A4: @ 81457A4 -.byte 0xf6, 0x00, 0xc0, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x51, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81457E4 -gUnknown_81457E4: @ 81457E4 -.byte 0xf6, 0x00, 0xc7, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81458D4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145894 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145864 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145864 -gUnknown_8145864: @ 8145864 -.string " Oh? Me?{WAIT_PRESS}\n" -.string "I couldn{APOSTROPHE}t possibly go rescue him.\0" -.align 2, 0 - -.global gUnknown_8145894 -gUnknown_8145894: @ 8145894 -.string " I wonder what that place is\n" -.string "like?{WAIT_PRESS}\n" -.string "It sounds rather horrible.\0" -.align 2, 0 - -.global gUnknown_81458D4 -gUnknown_81458D4: @ 81458D4 -.string " Is that right...\n" -.string "Shiftry was taken away to {COLOR_1 YELLOW_4}Mt. Thunder{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_8145914 -gUnknown_8145914: @ 8145914 -.byte 0xf6, 0x00, 0xd2, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145944 -gUnknown_8145944: @ 8145944 -.byte 0xf6, 0x00, 0xd8, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x50, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145ABC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145A8C -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145A6C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145A54 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145A54 -gUnknown_8145A54: @ 8145A54 -.string " I hope he is safe...\0" -.align 2, 0 - -.global gUnknown_8145A6C -gUnknown_8145A6C: @ 8145A6C -.string " Shiftry came and rescued\n" -.string "me...\0" -.align 2, 0 - -.global gUnknown_8145A8C -gUnknown_8145A8C: @ 8145A8C -.string " Thank you.\n" -.string "But Shiftry is in trouble now...\0" -.align 2, 0 - -.global gUnknown_8145ABC -gUnknown_8145ABC: @ 8145ABC -.string " I{APOSTROPHE}m glad to see you{APOSTROPHE}re\n" -.string "back safe.\0" -.align 2, 0 - -.global gUnknown_8145AE4 -gUnknown_8145AE4: @ 8145AE4 -.byte 0xf6, 0x00, 0xec, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145B14 -gUnknown_8145B14: @ 8145B14 -.byte 0xf6, 0x00, 0xf2, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x4e, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x03, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145ABC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145A8C -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145A6C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x02, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145A54 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145C24 -gUnknown_8145C24: @ 8145C24 -.byte 0xf6, 0x00, 0x06, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145C54 -gUnknown_8145C54: @ 8145C54 -.byte 0xf6, 0x00, 0x0c, 0x0e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x4e, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x03, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145ABC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145A8C -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145A6C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x02, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145A54 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145D64 -gUnknown_8145D64: @ 8145D64 -.byte 0xf6, 0x00, 0x20, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145D94 -gUnknown_8145D94: @ 8145D94 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145D64 - -.global gUnknown_8145DA0 -gUnknown_8145DA0: @ 8145DA0 -.byte 0xf6, 0x00, 0x28, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145E00 -gUnknown_8145E00: @ 8145E00 -.byte 0xf6, 0x00, 0x31, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145E60 -gUnknown_8145E60: @ 8145E60 -.byte 0xf6, 0x00, 0x3a, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145EC0 -gUnknown_8145EC0: @ 8145EC0 -.byte 0xf6, 0x00, 0x43, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145F20 -gUnknown_8145F20: @ 8145F20 -.byte 0xf6, 0x00, 0x4c, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145F80 -gUnknown_8145F80: @ 8145F80 -.byte 0xf6, 0x00, 0x55, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8145FE0 -gUnknown_8145FE0: @ 8145FE0 -.byte 0xf6, 0x00, 0x5e, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x51, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8146020 -gUnknown_8146020: @ 8146020 -.byte 0xf6, 0x00, 0x65, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8146090 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8146090 -gUnknown_8146090: @ 8146090 -.string " Xatu?{WAIT_PRESS} I wouldn{APOSTROPHE}t know.{WAIT_PRESS}\n" -.string "There{APOSTROPHE}s really a Pokémon named that?\0" -.align 2, 0 - -.global gUnknown_81460D8 -gUnknown_81460D8: @ 81460D8 -.byte 0xf6, 0x00, 0x6f, 0x0e -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x51, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8146118 -gUnknown_8146118: @ 8146118 -.byte 0xf6, 0x00, 0x76, 0x0e -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81461DC -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8146198 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8146198 -gUnknown_8146198: @ 8146198 -.string " Your team is surprisingly\n" -.string "courageous. It casts you in a new light!\0" -.align 2, 0 - -.global gUnknown_81461DC -gUnknown_81461DC: @ 81461DC -.string " I must say{COMMA} I{APOSTROPHE}m very\n" -.string "impressed.\0" -.align 2, 0 - -.global gUnknown_8146204 -gUnknown_8146204: @ 8146204 -.byte 0xf6, 0x00, 0x81, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8146264 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8146264 -gUnknown_8146264: @ 8146264 -.string " I{APOSTROPHE}m glad that Shiftry is\n" -.string "safe.\0" -.align 2, 0 - -.global gUnknown_8146288 -gUnknown_8146288: @ 8146288 -.byte 0xf6, 0x00, 0x8a, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8146330 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81462F8 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81462F8 -gUnknown_81462F8: @ 81462F8 -.string " It{APOSTROPHE}s shocking to hear that\n" -.string "you{APOSTROPHE}ve beaten Zapdos!\0" -.align 2, 0 - -.global gUnknown_8146330 -gUnknown_8146330: @ 8146330 -.string " {ARG_NICKNAME_0}{COMMA} your team is\n" -.string "fantastic!\0" -.align 2, 0 - -.global gUnknown_8146350 -gUnknown_8146350: @ 8146350 -.byte 0xf6, 0x00, 0x94, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8146380 -gUnknown_8146380: @ 8146380 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8146350 - -.global gUnknown_814638C -gUnknown_814638C: @ 814638C -.byte 0xf6, 0x00, 0x9c, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81463EC -gUnknown_81463EC: @ 81463EC -.byte 0xf6, 0x00, 0xa5, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814644C -gUnknown_814644C: @ 814644C -.byte 0xf6, 0x00, 0xae, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81464AC -gUnknown_81464AC: @ 81464AC -.byte 0xf6, 0x00, 0xb7, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814650C -gUnknown_814650C: @ 814650C -.byte 0xf6, 0x00, 0xc0, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814656C -gUnknown_814656C: @ 814656C -.byte 0xf6, 0x00, 0xc9, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81465CC -gUnknown_81465CC: @ 81465CC -.byte 0xf6, 0x00, 0xd2, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x1d, 0x00, 0x11, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81465FC -gUnknown_81465FC: @ 81465FC -.byte 0x39, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81465CC - -.global gUnknown_8146608 -gUnknown_8146608: @ 8146608 -.byte 0xf6, 0x00, 0xda, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x12, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8146678 -gUnknown_8146678: @ 8146678 -.byte 0x91, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8146608 - -.global gUnknown_8146684 -gUnknown_8146684: @ 8146684 -.byte 0xf6, 0x00, 0xe6, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x80, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8146704 -gUnknown_8146704: @ 8146704 -.byte 0xf6, 0x00, 0xf1, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x05, 0x00, 0x62, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x06, 0x00, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8147134 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814710C -closeTextBox -.byte 0x91, 0x04, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81470EC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81470C4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8147080 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x2b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142C04 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8147064 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x10, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814702C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x6a, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CW, southeast -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8147008 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8146FEC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8146FC0 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8146F78 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8146F3C -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8146EF8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8146ED4 -setFlag 0x06 -.byte 0x91, 0x04, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8146E94 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8146E58 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8146E24 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southeast -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8146DE0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8146DB4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southeast -.byte 0x2e, 0x10, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8146D84 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8146D84 -gUnknown_8146D84: @ 8146D84 -.string " You should visit him if you\n" -.string "want to know more.\0" -.align 2, 0 - -.global gUnknown_8146DB4 -gUnknown_8146DB4: @ 8146DB4 -.string " {ARG_NICKNAME_5} is uh...{WAIT_PRESS}\n" -.string "You know{COMMA} in his pond.\0" -.align 2, 0 - -.global gUnknown_8146DE0 -gUnknown_8146DE0: @ 8146DE0 -.string " You should go see a\n" -.string "Pokémon named {ARG_NICKNAME_5}.\n" -.string "He knows the story well.\0" -.align 2, 0 - -.global gUnknown_8146E24 -gUnknown_8146E24: @ 8146E24 -.string " If you want to know more\n" -.string "about the {ARG_NICKNAME_6} legend...\0" -.align 2, 0 - -.global gUnknown_8146E58 -gUnknown_8146E58: @ 8146E58 -.string " Personally{COMMA} I don{APOSTROPHE}t believe\n" -.string "in rumors of that sort.\0" -.align 2, 0 - -.global gUnknown_8146E94 -gUnknown_8146E94: @ 8146E94 -.string " I wouldn{APOSTROPHE}t put too much\n" -.string "stock in that story if I were you.\0" -.align 2, 0 - -.global gUnknown_8146ED4 -gUnknown_8146ED4: @ 8146ED4 -.string " Well{COMMA} it is still a mere\n" -.string "rumor.\0" -.align 2, 0 - -.global gUnknown_8146EF8 -gUnknown_8146EF8: @ 8146EF8 -.string " But lately{COMMA} it{APOSTROPHE}s been rumored\n" -.string "that maybe it really happened.\0" -.align 2, 0 - -.global gUnknown_8146F3C -gUnknown_8146F3C: @ 8146F3C -.string " All this time{COMMA} everyone\n" -.string "thought it was just a legend.\0" -.align 2, 0 - -.global gUnknown_8146F78 -gUnknown_8146F78: @ 8146F78 -.string " How you{APOSTROPHE}ll get cursed if you\n" -.string "ever grab one of Ninetales{APOSTROPHE}s tails.\0" -.align 2, 0 - -.global gUnknown_8146FC0 -gUnknown_8146FC0: @ 8146FC0 -.string " You know{COMMA} it{APOSTROPHE}s that old\n" -.string "fairy tale.\0" -.align 2, 0 - -.global gUnknown_8146FEC -gUnknown_8146FEC: @ 8146FEC -.string " What{COMMA} you don{APOSTROPHE}t know?\0" -.align 2, 0 - -.global gUnknown_8147008 -gUnknown_8147008: @ 8147008 -.string " The {ARG_NICKNAME_6} legend?{WAIT_PRESS}\n" -.string "What{APOSTROPHE}s that?\0" -.align 2, 0 - -.global gUnknown_814702C -gUnknown_814702C: @ 814702C -.string " Well{COMMA} you know the\n" -.string "{COLOR_1 GREEN}{ARG_NICKNAME_6} legend{END_COLOR_TEXT_1}?\n" -.string "That old story?\0" -.align 2, 0 - -.global gUnknown_8147064 -gUnknown_8147064: @ 8147064 -.string " Hi{COMMA} what{APOSTROPHE}s happening?\0" -.align 2, 0 - -.global gUnknown_8147080 -gUnknown_8147080: @ 8147080 -.string " But could it be true?{WAIT_PRESS}\n" -.string "I{APOSTROPHE}m having a hard time believing it...\0" -.align 2, 0 - -.global gUnknown_81470C4 -gUnknown_81470C4: @ 81470C4 -.string " I always thought it was\n" -.string "only a legend.\0" -.align 2, 0 - -.global gUnknown_81470EC -gUnknown_81470EC: @ 81470EC -.string " Yeah{COMMA} I{APOSTROPHE}m kind of shocked.\0" -.align 2, 0 - -.global gUnknown_814710C -gUnknown_814710C: @ 814710C -.string " Huh?{WAIT_PRESS}\n" -.string "What are they chatting about?\0" -.align 2, 0 - -.global gUnknown_8147134 -gUnknown_8147134: @ 8147134 -.string " Hah?{WAIT_PRESS}\n" -.string "What are those guys talking about?\0" -.align 2, 0 - -.global gUnknown_8147160 -gUnknown_8147160: @ 8147160 -.byte 0xf6, 0x00, 0x5c, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8147330 -gUnknown_8147330: @ 8147330 -.byte 0xf6, 0x00, 0x7c, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, west -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81474C0 -gUnknown_81474C0: @ 81474C0 -.byte 0xf6, 0x00, 0x98, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x8b, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, west -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8147590 -gUnknown_8147590: @ 8147590 -.byte 0xf6, 0x00, 0xa8, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, west -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8147620 -gUnknown_8147620: @ 8147620 -.byte 0xf6, 0x00, 0xb4, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8147650 -gUnknown_8147650: @ 8147650 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8147620 - -.global gUnknown_814765C -gUnknown_814765C: @ 814765C -.byte 0xf6, 0x00, 0xbc, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81476BC -gUnknown_81476BC: @ 81476BC -.byte 0xf6, 0x00, 0xc5, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814771C -gUnknown_814771C: @ 814771C -.byte 0xf6, 0x00, 0xce, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814777C -gUnknown_814777C: @ 814777C -.byte 0xf6, 0x00, 0xd7, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81477DC -gUnknown_81477DC: @ 81477DC -.byte 0xf6, 0x00, 0xe0, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814783C -gUnknown_814783C: @ 814783C -.byte 0xf6, 0x00, 0xe9, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814789C -gUnknown_814789C: @ 814789C -.byte 0xf6, 0x00, 0xf2, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8147938 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814790C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814790C -gUnknown_814790C: @ 814790C -.string " You should visit him if you\n" -.string "want to chat.\0" -.align 2, 0 - -.global gUnknown_8147938 -gUnknown_8147938: @ 8147938 -.string " Whiscash is in the pond just\n" -.string "north of here.\0" -.align 2, 0 - -.global gUnknown_8147968 -gUnknown_8147968: @ 8147968 -.byte 0xf6, 0x00, 0xfc, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8146ED4 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81479D8 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81479D8 -gUnknown_81479D8: @ 81479D8 -.string " I don{APOSTROPHE}t put any stock in\n" -.string "rumors like that...\0" -.align 2, 0 - -.global gUnknown_8147A08 -gUnknown_8147A08: @ 8147A08 -.byte 0xf6, 0x00, 0x06, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81470C4 -.byte 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8147A68 -gUnknown_8147A68: @ 8147A68 -.byte 0xf6, 0x00, 0x0f, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x2d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xb3 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8147AE8 -gUnknown_8147AE8: @ 8147AE8 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8147A68 - -.global gUnknown_8147AF4 -gUnknown_8147AF4: @ 8147AF4 -.byte 0xf6, 0x00, 0x1c, 0x10, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8147CDC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8147CCC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, east -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8147C8C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8147C44 -closeTextBox -.byte 0xdb, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8147C44 -gUnknown_8147C44: @ 8147C44 -.string " Want to call it a day now?\n" -.string "I can{APOSTROPHE}t seem to get motivated today...\0" -.align 2, 0 - -.global gUnknown_8147C8C -gUnknown_8147C8C: @ 8147C8C -.string " Want to knock\n" -.string "off for today?\n" -.string "I can{APOSTROPHE}t seem to get into it...\0" -.align 2, 0 - -.global gUnknown_8147CCC -gUnknown_8147CCC: @ 8147CCC -.string " ...Say{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_8147CDC -gUnknown_8147CDC: @ 8147CDC -.string " ...Listen{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_8147CF0 -gUnknown_8147CF0: @ 8147CF0 -.byte 0xf6, 0x00, 0x34, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8147D50 -gUnknown_8147D50: @ 8147D50 -.byte 0xf6, 0x00, 0x3d, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0x23, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8147EA0 -gUnknown_8147EA0: @ 8147EA0 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8147D50 - -.global gUnknown_8147EAC -gUnknown_8147EAC: @ 8147EAC -.byte 0xf6, 0x00, 0x57, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x5b, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0xb4, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, 0xb4, 0x00, 0x01, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0xb0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8147F8C -gUnknown_8147F8C: @ 8147F8C -.byte 0xf6, 0x00, 0x68, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81481F0 -closeTextBox -rotate 0x05, shortestDir, northwest -setFlag 0x06 -pause 0x14 -rotate 0x0a, CW, east -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81481BC -closeTextBox -pause 0x1e -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814819C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814817C -closeTextBox -pause 0x0f -setFlag 0x03 -setFlag 0x06 -.byte 0x6a, 0x00, 0x00, 0x01, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_814817C -gUnknown_814817C: @ 814817C -.string " {ARG_NICKNAME_0}{COMMA} let{APOSTROPHE}s check\n" -.string "it out!\0" -.align 2, 0 - -.global gUnknown_814819C -gUnknown_814819C: @ 814819C -.string " Maybe something{APOSTROPHE}s happened.\0" -.align 2, 0 - -.global gUnknown_81481BC -gUnknown_81481BC: @ 81481BC -.string " The town{APOSTROPHE}s atmosphere\n" -.string "feels different somehow...\0" -.align 2, 0 - -.global gUnknown_81481F0 -gUnknown_81481F0: @ 81481F0 -.string " Huh?\0" -.align 2, 0 - -.global gUnknown_81481F8 -gUnknown_81481F8: @ 81481F8 -.byte 0xf6, 0x00, 0x8b, 0x10 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00 -.byte 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x05, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x05, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x05, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8148378 -gUnknown_8148378: @ 8148378 -.byte 0xf6, 0x00, 0xa6, 0x10 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81483F8 -gUnknown_81483F8: @ 81483F8 -.byte 0x90, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8148378 - -.global gUnknown_8148404 -gUnknown_8148404: @ 8148404 -.byte 0xf6, 0x00, 0xb3, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x22, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x05, 0x00, 0x3a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81484D4 -gUnknown_81484D4: @ 81484D4 -.byte 0xf6, 0x00, 0xc3, 0x10, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x07, 0x00, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x08, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x46, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xd0, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A940 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A914 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142C04 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8142BE8 -closeTextBox -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A8DC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A8BC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A8AC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A894 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A840 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A830 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xcf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A81C -closeTextBox -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0x93, 0x0a, 0x0a, 0x00, 0x36, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x02, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A800 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x2e, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A7F8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A7E8 -.byte 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A7B8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A794 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A778 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A768 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0x93, 0x05, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x96, 0x00, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xd9, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A75C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A728 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A6DC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A6C8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A694 -.byte 0x2e, 0x15, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A65C -.byte 0x2e, 0x15, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A630 -closeTextBox -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd0, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A628 -closeTextBox -.byte 0xdb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x05, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A5EC -closeTextBox -.byte 0xdb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A5C4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A564 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x2e, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A524 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x14, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A4F0 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A4A8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A450 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A418 -.byte 0x2e, 0x15, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A3CC -closeTextBox -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe6, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A3C0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x0c, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A388 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A370 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A338 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A2F8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A2C0 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A278 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x11 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A264 -closeTextBox -.byte 0xdb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A23C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A1F8 -.byte 0x2e, 0x15, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A1A0 -closeTextBox -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe5, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A18C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x04, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A158 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A10C -setFlag 0x09 -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A0C0 -closeTextBox -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A0A4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe6, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa5, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A07C -closeTextBox -.byte 0xdb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A058 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x03, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A044 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A010 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8149FC8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8149F98 -closeTextBox -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8149F7C -.byte 0x2e, 0x15, 0x06, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x00, 0xff, 0xff, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8149F48 -.byte 0xd9, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8149F34 -.byte 0xd9, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8149F34 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8149F2C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x05, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8149F2C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x2e, 0x0d, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8149EE0 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8149EB8 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8149E80 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe6, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x2e, 0x02, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8149E70 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8149E28 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8149E70 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8149DE0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x05, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x05, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x05, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x4c, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8149DCC -closeTextBox -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x8b, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xf1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8149DB8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8149D9C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8149D84 -closeTextBox -.byte 0xe5, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x02, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe6, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe5, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x03, 0x88, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8149D64 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xe4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0e -.byte 0xe4, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x10 -.byte 0xe4, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8149D64 -gUnknown_8149D64: @ 8149D64 -.string " Serves them right!\n" -.string "Kekekekeh!\0" -.align 2, 0 - -.global gUnknown_8149D84 -gUnknown_8149D84: @ 8149D84 -.string " Waaaaah!{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_0}{COMMA} run!\0" -.align 2, 0 - -.global gUnknown_8149D9C -gUnknown_8149D9C: @ 8149D9C -.string " Wah! What are you doing?!\0" -.align 2, 0 - -.global gUnknown_8149DB8 -gUnknown_8149DB8: @ 8149DB8 -.string " Wah! What the...?!\0" -.align 2, 0 - -.global gUnknown_8149DCC -gUnknown_8149DCC: @ 8149DCC -.string " {ARG_NICKNAME_0}{COMMA} forgive me!\0" -.align 2, 0 - -.global gUnknown_8149DE0 -gUnknown_8149DE0: @ 8149DE0 -.string " E-everyone{COMMA} what{APOSTROPHE}s gotten\n" -.string "into you?{WAIT_PRESS}\n" -.string "What are you going to do?\0" -.align 2, 0 - -.global gUnknown_8149E28 -gUnknown_8149E28: @ 8149E28 -.string " E-everyone{COMMA} hold up.\n" -.string "What{APOSTROPHE}s with you?{WAIT_PRESS}\n" -.string "What are you going to do?\0" -.align 2, 0 - -.global gUnknown_8149E70 -gUnknown_8149E70: @ 8149E70 -.string " ...Wh-what?\0" -.align 2, 0 - -.global gUnknown_8149E80 -gUnknown_8149E80: @ 8149E80 -.string " Let{APOSTROPHE}s get rid of\n" -.string "{ARG_NICKNAME_0} and regain peace.\n" -.string "Kekekekekeh!\0" -.align 2, 0 - -.global gUnknown_8149EB8 -gUnknown_8149EB8: @ 8149EB8 -.string " That{APOSTROPHE}s how it is{COMMA} fellow\n" -.string "Pokémon.\0" -.align 2, 0 - -.global gUnknown_8149EE0 -gUnknown_8149EE0: @ 8149EE0 -.string " Kekekekekekeh!\n" -.string "Looks like you have nothing to say\n" -.string "in your defense{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8149F2C -gUnknown_8149F2C: @ 8149F2C -.string " {ARG_NICKNAME_0}...\0" -.align 2, 0 - -.global gUnknown_8149F34 -gUnknown_8149F34: @ 8149F34 -.string "..................\0" -.align 2, 0 - -.global gUnknown_8149F48 -gUnknown_8149F48: @ 8149F48 -.string " Are you really the human\n" -.string "that was in the legend?\0" -.align 2, 0 - -.global gUnknown_8149F7C -gUnknown_8149F7C: @ 8149F7C -.string " Hey! {ARG_NICKNAME_0}!\n" -.string "So what is it?!\0" -.align 2, 0 - -.global gUnknown_8149F98 -gUnknown_8149F98: @ 8149F98 -.string " We{APOSTROPHE}re not asking you.\n" -.string "We{APOSTROPHE}re asking {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8149FC8 -gUnknown_8149FC8: @ 8149FC8 -.string " W-w-wait...{WAIT_PRESS}\n" -.string "This is{COMMA} like...\n" -.string "There{APOSTROPHE}s a good explanation for...\0" -.align 2, 0 - -.global gUnknown_814A010 -gUnknown_814A010: @ 814A010 -.string " W-w-whoa...{WAIT_PRESS}\n" -.string "This is{COMMA} like...\n" -.string "We can explain...\0" -.align 2, 0 - -.global gUnknown_814A044 -gUnknown_814A044: @ 814A044 -.string " Is that true?\n" -.string "Hey!\0" -.align 2, 0 - -.global gUnknown_814A058 -gUnknown_814A058: @ 814A058 -.string " Y-you...{WAIT_PRESS}\n" -.string "You were that human?!\0" -.align 2, 0 - -.global gUnknown_814A07C -gUnknown_814A07C: @ 814A07C -.string " Wha...{WAIT_PRESS} What?!{WAIT_PRESS}\n" -.string "It... It can{APOSTROPHE}t be!\0" -.align 2, 0 - -.global gUnknown_814A0A4 -gUnknown_814A0A4: @ 814A0A4 -.string " Isn{APOSTROPHE}t that right{COMMA}\n" -.string "{ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_814A0C0 -gUnknown_814A0C0: @ 814A0C0 -.string " I don{APOSTROPHE}t think the human can\n" -.string "complain about anything if we get\n" -.string "rid of it.\0" -.align 2, 0 - -.global gUnknown_814A10C -gUnknown_814A10C: @ 814A10C -.string " Kekeh!\n" -.string "And that human is the rotten coward\n" -.string "that abandoned {ARG_NICKNAME_8}{COMMA} correct?\0" -.align 2, 0 - -.global gUnknown_814A158 -gUnknown_814A158: @ 814A158 -.string " When you put it that way...\n" -.string "maybe you{APOSTROPHE}re right.\0" -.align 2, 0 - -.global gUnknown_814A18C -gUnknown_814A18C: @ 814A18C -.string " Th-that{APOSTROPHE}s true!\0" -.align 2, 0 - -.global gUnknown_814A1A0 -gUnknown_814A1A0: @ 814A1A0 -.string " Then{COMMA} if that human is\n" -.string "gone{COMMA} then everything should return\n" -.string "to normal{COMMA} correct?\0" -.align 2, 0 - -.global gUnknown_814A1F8 -gUnknown_814A1F8: @ 814A1F8 -.string " If the world{APOSTROPHE}s balance is\n" -.string "upset by a human becoming a Pokémon...\0" -.align 2, 0 - -.global gUnknown_814A23C -gUnknown_814A23C: @ 814A23C -.string " Oh{COMMA} it{APOSTROPHE}s quite simple{COMMA}\n" -.string "actually.\0" -.align 2, 0 - -.global gUnknown_814A264 -gUnknown_814A264: @ 814A264 -.string " Wh-what can we do?\0" -.align 2, 0 - -.global gUnknown_814A278 -gUnknown_814A278: @ 814A278 -.string " Why{COMMA} I think there{APOSTROPHE}s a way\n" -.string "we can do something about this.\n" -.string "Kekeh!\0" -.align 2, 0 - -.global gUnknown_814A2C0 -gUnknown_814A2C0: @ 814A2C0 -.string " Now{COMMA} now{COMMA} people.{WAIT_PRESS}\n" -.string "There{APOSTROPHE}s no need to panic.\0" -.align 2, 0 - -.global gUnknown_814A2F8 -gUnknown_814A2F8: @ 814A2F8 -.string " That Gengar...!{WAIT_PRESS}\n" -.string "He{APOSTROPHE}s deliberately working everyone up...\0" -.align 2, 0 - -.global gUnknown_814A338 -gUnknown_814A338: @ 814A338 -.string " That Gengar...!{WAIT_PRESS}\n" -.string "He{APOSTROPHE}s getting everyone worked up...\0" -.align 2, 0 - -.global gUnknown_814A370 -gUnknown_814A370: @ 814A370 -.string " What are we to do?!\0" -.align 2, 0 - -.global gUnknown_814A388 -gUnknown_814A388: @ 814A388 -.string " The world...{WAIT_PRESS}\n" -.string "The unthinkable{APOSTROPHE}s going to happen?\0" -.align 2, 0 - -.global gUnknown_814A3C0 -gUnknown_814A3C0: @ 814A3C0 -.string " Wh-what?\0" -.align 2, 0 - -.global gUnknown_814A3CC -gUnknown_814A3CC: @ 814A3CC -.string " The unthinkable will happen\n" -.string "to the world! That{APOSTROPHE}s what Xatu said!\n" -.string "Kekeh!\0" -.align 2, 0 - -.global gUnknown_814A418 -gUnknown_814A418: @ 814A418 -.string " And if the world{APOSTROPHE}s balance\n" -.string "isn{APOSTROPHE}t restored soon...\0" -.align 2, 0 - -.global gUnknown_814A450 -gUnknown_814A450: @ 814A450 -.string " According to {ARG_NICKNAME_7}{COMMA}\n" -.string "those disasters are caused by the world{APOSTROPHE}s\n" -.string "balance being upset.\0" -.align 2, 0 - -.global gUnknown_814A4A8 -gUnknown_814A4A8: @ 814A4A8 -.string " You all know how there{APOSTROPHE}ve\n" -.string "been many natural disasters{COMMA} correct?\0" -.align 2, 0 - -.global gUnknown_814A4F0 -gUnknown_814A4F0: @ 814A4F0 -.string " Kekeh!\n" -.string "Don{APOSTROPHE}t be too shocked yet.\n" -.string "There{APOSTROPHE}s more.\0" -.align 2, 0 - -.global gUnknown_814A524 -gUnknown_814A524: @ 814A524 -.string " Wait a second...{WAIT_PRESS}\n" -.string "That{APOSTROPHE}s exactly like the Ninetales legend!\0" -.align 2, 0 - -.global gUnknown_814A564 -gUnknown_814A564: @ 814A564 -.string " That how the human became\n" -.string "a Pokémon has a lot to do with how\n" -.string "the world{APOSTROPHE}s balance is upset.\0" -.align 2, 0 - -.global gUnknown_814A5C4 -gUnknown_814A5C4: @ 814A5C4 -.string " There{APOSTROPHE}s more.\n" -.string "{ARG_NICKNAME_7} told the human...\0" -.align 2, 0 - -.global gUnknown_814A5EC -gUnknown_814A5EC: @ 814A5EC -.string " It really existed...\n" -.string "A human that turned into a Pokémon.\0" -.align 2, 0 - -.global gUnknown_814A628 -gUnknown_814A628: @ 814A628 -.string " What?!\0" -.align 2, 0 - -.global gUnknown_814A630 -gUnknown_814A630: @ 814A630 -.string " But get this!{WAIT_PRESS}\n" -.string "It was originally a human!\0" -.align 2, 0 - -.global gUnknown_814A65C -gUnknown_814A65C: @ 814A65C -.string " That Pokémon...\n" -.string "It looks like an ordinary Pokémon...\0" -.align 2, 0 - -.global gUnknown_814A694 -gUnknown_814A694: @ 814A694 -.string " This certain Pokémon was\n" -.string "getting advice from {ARG_NICKNAME_7}.\0" -.align 2, 0 - -.global gUnknown_814A6C8 -gUnknown_814A6C8: @ 814A6C8 -.string " Shocking stuff?\0" -.align 2, 0 - -.global gUnknown_814A6DC -gUnknown_814A6DC: @ 814A6DC -.string " And that{APOSTROPHE}s where I saw it!\n" -.string "It was shocking stuff{COMMA} I tell you!\n" -.string "Kekeh!\0" -.align 2, 0 - -.global gUnknown_814A728 -gUnknown_814A728: @ 814A728 -.string " ...So I went up to the\n" -.string "{COLOR_1 CYAN}Hill of the Ancients{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_814A75C -gUnknown_814A75C: @ 814A75C -.string " Ge-{ARG_NICKNAME_2}?!\0" -.align 2, 0 - -.global gUnknown_814A768 -gUnknown_814A768: @ 814A768 -.string " I-it{APOSTROPHE}s...\0" -.align 2, 0 - -.global gUnknown_814A778 -gUnknown_814A778: @ 814A778 -.string " Huh?{WAIT_PRESS} Who{APOSTROPHE}s talking?\0" -.align 2, 0 - -.global gUnknown_814A794 -gUnknown_814A794: @ 814A794 -.string " Hah?{WAIT_PRESS}\n" -.string "Who{APOSTROPHE}s doing the talking?\0" -.align 2, 0 - -.global gUnknown_814A7B8 -gUnknown_814A7B8: @ 814A7B8 -.string " That guy there{APOSTROPHE}s telling us.\n" -.string "Keep it down.\0" -.align 2, 0 - -.global gUnknown_814A7E8 -gUnknown_814A7E8: @ 814A7E8 -.string " Ssh!{WAIT_PRESS} Quiet.\0" -.align 2, 0 - -.global gUnknown_814A7F8 -gUnknown_814A7F8: @ 814A7F8 -.string " Yes.\0" -.align 2, 0 - -.global gUnknown_814A800 -gUnknown_814A800: @ 814A800 -.string " Even you came out{COMMA}\n" -.string "{ARG_NICKNAME_3}?\0" -.align 2, 0 - -.global gUnknown_814A81C -gUnknown_814A81C: @ 814A81C -.string " Oh{COMMA} hi{COMMA} {ARG_NICKNAME_3}!\0" -.align 2, 0 - -.global gUnknown_814A830 -gUnknown_814A830: @ 814A830 -.string " {ARG_NICKNAME_0}{COMMA} {ARG_NICKNAME_1}.\0" -.align 2, 0 - -.global gUnknown_814A840 -gUnknown_814A840: @ 814A840 -.string " I never believed the\n" -.string "rumors{COMMA} so you can bet I was shocked\n" -.string "to learn the truth!\0" -.align 2, 0 - -.global gUnknown_814A894 -gUnknown_814A894: @ 814A894 -.string " The Ninetales legend!\0" -.align 2, 0 - -.global gUnknown_814A8AC -gUnknown_814A8AC: @ 814A8AC -.string " What was true?\0" -.align 2, 0 - -.global gUnknown_814A8BC -gUnknown_814A8BC: @ 814A8BC -.string " What are you talking about?\0" -.align 2, 0 - -.global gUnknown_814A8DC -gUnknown_814A8DC: @ 814A8DC -.string " Let me tell you{COMMA} I was\n" -.string "amazed!{WAIT_PRESS}\n" -.string "It really was true!\0" -.align 2, 0 - -.global gUnknown_814A914 -gUnknown_814A914: @ 814A914 -.string " Look!\n" -.string "Why is everyone gathered together?\0" -.align 2, 0 - -.global gUnknown_814A940 -gUnknown_814A940: @ 814A940 -.string " Look!\n" -.string "Why{APOSTROPHE}s everyone gathered over there?\0" -.align 2, 0 - -.global gUnknown_814A970 -gUnknown_814A970: @ 814A970 -.byte 0xf6, 0x00, 0x76, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x05, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x0a, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x96, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x70, 0x00, 0x00, 0x02, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0x91, 0x04, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0x91, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x4c, 0x00, 0xf8, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x02, CCW, north -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x4c, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x02, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x02, shortestDir, east -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x02, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x03, 0x88, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814AEE0 -gUnknown_814AEE0: @ 814AEE0 -.byte 0xf6, 0x00, 0xd0, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x05, shortestDir, south -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x0a, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x06, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x06, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x06, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x05, shortestDir, southwest -.byte 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x05, shortestDir, west -.byte 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814B1E0 -gUnknown_814B1E0: @ 814B1E0 -.byte 0xf6, 0x00, 0x03, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x0a, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x05, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x05, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x05, shortestDir, northeast -.byte 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x05, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x05, shortestDir, east -.byte 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x05, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CW, northeast -.byte 0x91, 0x08, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x80, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x04, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814B6A0 -gUnknown_814B6A0: @ 814B6A0 -.byte 0xf6, 0x00, 0x52, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x06, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x05, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x05, shortestDir, southwest -.byte 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x05, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x05, shortestDir, west -.byte 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x1e, 0x00, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 12 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x80, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x4c, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x62, 0x00, 0x00, 0x03, 0xd0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_814BAD0 -gUnknown_814BAD0: @ 814BAD0 -.byte 0xf6, 0x00, 0x99, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x6b, 0x00, 0xcc, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x02, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x06, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x05, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x05, shortestDir, southeast -.byte 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x05, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x05, shortestDir, southwest -.byte 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x4c, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x05, CW, west -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x02, 0xf8, 0xff, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_814BFB0 -gUnknown_814BFB0: @ 814BFB0 -.byte 0xf6, 0x00, 0xeb, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x02, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x06, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x05, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x05, shortestDir, northeast -.byte 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x05, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x05, shortestDir, west -.byte 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x4c, 0x00, 0xe8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x4c, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x05, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x62, 0x00, 0x00, 0x02, 0xf8, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_814C4B0 -gUnknown_814C4B0: @ 814C4B0 -.byte 0xf6, 0x00, 0x3f, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x06, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x06, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00, 0xc0, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x03, 0xf0, 0xff, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814C770 -gUnknown_814C770: @ 814C770 -.byte 0xf6, 0x00, 0x6e, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x06, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x06, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00, 0xe8, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x03, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814CA30 -gUnknown_814CA30: @ 814CA30 -.byte 0xf6, 0x00, 0x9d, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00, 0xe0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00, 0xe0, 0xff, 0xff, 0xff, 0x18, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0xe0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814CD40 -gUnknown_814CD40: @ 814CD40 -.byte 0xf6, 0x00, 0xd1, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 3 -.byte 0x70, 0x00, 0x00, 0x02, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814CFE0 -gUnknown_814CFE0: @ 814CFE0 -.byte 0xf6, 0x00, 0xfe, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x93, 0x04, 0x0a, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x4c, 0x00, 0xe8, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814D270 -gUnknown_814D270: @ 814D270 -.byte 0xf6, 0x00, 0x2a, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x4c, 0x00, 0xf0, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814D4F0 -gUnknown_814D4F0: @ 814D4F0 -.byte 0xf6, 0x00, 0x55, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814D520 -gUnknown_814D520: @ 814D520 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814D4F0 - -.global gUnknown_814D52C -gUnknown_814D52C: @ 814D52C -.byte 0xf6, 0x00, 0x5d, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xe9, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814D54C -gUnknown_814D54C: @ 814D54C -.byte 0xf6, 0x00, 0x62, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814D5CC -gUnknown_814D5CC: @ 814D5CC -.byte 0xf6, 0x00, 0x6d, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 6 -.byte 0xe9, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814D5FC -gUnknown_814D5FC: @ 814D5FC -.byte 0xf6, 0x00, 0x73, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xe9, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814D61C -gUnknown_814D61C: @ 814D61C -.byte 0xf6, 0x00, 0x78, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814D69C -gUnknown_814D69C: @ 814D69C -.byte 0xf6, 0x00, 0x83, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 6 -.byte 0xe9, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814D6CC -gUnknown_814D6CC: @ 814D6CC -.byte 0xf6, 0x00, 0x89, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xe9, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814D6EC -gUnknown_814D6EC: @ 814D6EC -.byte 0xf6, 0x00, 0x8e, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814D76C -gUnknown_814D76C: @ 814D76C -.byte 0xf6, 0x00, 0x99, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 6 -.byte 0xe9, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814D79C -gUnknown_814D79C: @ 814D79C -.byte 0xf6, 0x00, 0x9f, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xe9, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814D7BC -gUnknown_814D7BC: @ 814D7BC -.byte 0xf6, 0x00, 0xa4, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814D83C -gUnknown_814D83C: @ 814D83C -.byte 0xf6, 0x00, 0xaf, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 6 -.byte 0xe9, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814D86C -gUnknown_814D86C: @ 814D86C -.byte 0xf6, 0x00, 0xb5, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xe9, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814D88C -gUnknown_814D88C: @ 814D88C -.byte 0xf6, 0x00, 0xba, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814D90C -gUnknown_814D90C: @ 814D90C -.byte 0xf6, 0x00, 0xc5, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 6 -.byte 0xe9, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814D93C -gUnknown_814D93C: @ 814D93C -.byte 0xf6, 0x00, 0xcb, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xe9, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814D95C -gUnknown_814D95C: @ 814D95C -.byte 0xf6, 0x00, 0xd0, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3c, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814D9DC -gUnknown_814D9DC: @ 814D9DC -.byte 0xf6, 0x00, 0xdb, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 6 -.byte 0xe9, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814DA0C -gUnknown_814DA0C: @ 814DA0C -.byte 0xf6, 0x00, 0xe1, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814DB0C -closeTextBox -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814DB0C -gUnknown_814DB0C: @ 814DB0C -.string "{CENTER_ALIGN}Meanwhile{COMMA} back in\n" -.string "{CENTER_ALIGN}Pokémon Square...\0" -.align 2, 0 - -.global gUnknown_814DB38 -gUnknown_814DB38: @ 814DB38 -.byte 0x90, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814DA0C - -.global gUnknown_814DB44 -gUnknown_814DB44: @ 814DB44 -.byte 0xf6, 0x00, 0xf7, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x20, 0x00, 0x01, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x1c, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x40, 0x99, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_814DC14 -gUnknown_814DC14: @ 814DC14 -.byte 0xf6, 0x00, 0x07, 0x16, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd8, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81509F4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81509BC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150998 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815097C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x2e, 0x03, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150948 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150904 -closeTextBox -.byte 0xdb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x03, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81508EC -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81508CC -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150874 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150830 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81507F8 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81507B4 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150784 -setFlag 0x08 -.byte 0x2e, 0x15, 0x03, 0x00, 0x42, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150778 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0b, 0x02, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815074C -closeTextBox -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x04, 0x00, 0x41, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815070C -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81506D0 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81506B0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150688 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150648 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x2e, 0x15, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150620 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81505FC -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81505E0 -closeTextBox -.byte 0xe4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x07, 0x00, 0x42, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81505CC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150598 -closeTextBox -.byte 0xe4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x07, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815057C -.byte 0x34, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815056C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xcf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x46, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150550 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x32 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x10 -.byte 0x6b, 0x00, 0x00, 0x01, 0x3f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x03, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150538 -.byte 0xdb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x05, 0x06, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x06, 0x00, 0xfe, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815052C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x2e, 0x03, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150514 -closeTextBox -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0x6b, 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81504F4 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81504B0 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815047C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815043C -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815042C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x01, 0x0b, 0x00, 0x5b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81503F8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81503C8 -setFlag 0x07 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81503B4 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815036C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815034C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150338 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150304 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815034C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150338 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xcf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81502F8 -.byte 0x2e, 0x05, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81502EC -.byte 0x2e, 0x0d, 0x03, 0x00, 0x42, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x03, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81502DC -closeTextBox -.byte 0xdb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81502B0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150284 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815025C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150238 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150210 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81501E0 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81501CC -closeTextBox -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xe4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150194 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150150 -closeTextBox -.byte 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150144 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xe4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x22, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x2e, 0x15, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150118 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81500E4 -closeTextBox -.byte 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81500B8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xe4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815007C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8150020 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FFD0 -closeTextBox -.byte 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xe4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xb4 -.byte 0x2e, 0x15, 0x02, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FF78 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FF54 -setFlag 0x0b -.byte 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FF3C -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FF34 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FF20 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FEF8 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FEB4 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FE78 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xe4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x14, 0x02, 0x00, 0x46, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FE6C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x04, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FE40 -closeTextBox -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FE14 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xe4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x2e, 0x0f, 0x02, 0x00, 0x46, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FE04 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x2e, 0x15, 0x01, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FDF4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0x91, 0x04, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0f -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x09, 0x00, 0xfe, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FDD0 -.byte 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x91, 0x0a, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, east -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FDB8 -closeTextBox -.byte 0xdb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FD80 -closeTextBox -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FD54 -closeTextBox -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FD34 -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FD20 -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FCDC -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FC90 -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FC48 -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FC40 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FC24 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x05, 0x04, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FC14 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xe4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FC00 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xe4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x10 -.byte 0x91, 0x04, 0x0b, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x50 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd7, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FBDC -closeTextBox -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xb4 -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x10 -.byte 0x93, 0x08, 0x0b, 0x00, 0x36, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x03, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FBCC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FB8C -closeTextBox -.byte 0x2e, 0x15, 0x06, 0x00, 0x42, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FB7C -.byte 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FB44 -closeTextBox -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FB2C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FAF4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FAE0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FAA8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FA5C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FA54 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FA1C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814F9D4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_814F9D4 -gUnknown_814F9D4: @ 814F9D4 -.string " Our rescue team gets\n" -.string "revived tomorrow!{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s try to do our best!\0" -.align 2, 0 - -.global gUnknown_814FA1C -gUnknown_814FA1C: @ 814FA1C -.string " We{APOSTROPHE}re both exhausted.\n" -.string "I{APOSTROPHE}m going to get some sleep.\0" -.align 2, 0 - -.global gUnknown_814FA54 -gUnknown_814FA54: @ 814FA54 -.string " {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_814FA5C -gUnknown_814FA5C: @ 814FA5C -.string " Our rescue team is back\n" -.string "in business tomorrow!{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s give it our best!\0" -.align 2, 0 - -.global gUnknown_814FAA8 -gUnknown_814FAA8: @ 814FAA8 -.string " We{APOSTROPHE}re both worn out.\n" -.string "I{APOSTROPHE}m going to get some sleep.\0" -.align 2, 0 - -.global gUnknown_814FAE0 -gUnknown_814FAE0: @ 814FAE0 -.string " All right{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_814FAF4 -gUnknown_814FAF4: @ 814FAF4 -.string " We won{APOSTROPHE}t have to keep\n" -.string "running from everyone anymore.\0" -.align 2, 0 - -.global gUnknown_814FB2C -gUnknown_814FB2C: @ 814FB2C -.string " Yup{COMMA} I{APOSTROPHE}m glad too.\0" -.align 2, 0 - -.global gUnknown_814FB44 -gUnknown_814FB44: @ 814FB44 -.string " I{APOSTROPHE}m so glad...{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_0} isn{APOSTROPHE}t suspected anymore...\0" -.align 2, 0 - -.global gUnknown_814FB7C -gUnknown_814FB7C: @ 814FB7C -.string " ...Sniffle...\0" -.align 2, 0 - -.global gUnknown_814FB8C -gUnknown_814FB8C: @ 814FB8C -.string " Yup! It{APOSTROPHE}s good to be back!{WAIT_PRESS}\n" -.string "We{APOSTROPHE}re back like we promised.\0" -.align 2, 0 - -.global gUnknown_814FBCC -gUnknown_814FBCC: @ 814FBCC -.string " Welcome back!\0" -.align 2, 0 - -.global gUnknown_814FBDC -gUnknown_814FBDC: @ 814FBDC -.string " Stop{COMMA} you liar!\n" -.string "You conned us!\0" -.align 2, 0 - -.global gUnknown_814FC00 -gUnknown_814FC00: @ 814FC00 -.string " Gegegeh!\n" -.string "R-run!\0" -.align 2, 0 - -.global gUnknown_814FC14 -gUnknown_814FC14: @ 814FC14 -.string " You rotten...\0" -.align 2, 0 - -.global gUnknown_814FC24 -gUnknown_814FC24: @ 814FC24 -.string " Ugegegegegegegegegegegeh!\0" -.align 2, 0 - -.global gUnknown_814FC40 -gUnknown_814FC40: @ 814FC40 -.string "{CENTER_ALIGN}-End-\0" -.align 2, 0 - -.global gUnknown_814FC48 -gUnknown_814FC48: @ 814FC48 -.string "{CENTER_ALIGN}As a result{COMMA} Gengar{APOSTROPHE}s claims were\n" -.string "{CENTER_ALIGN}found to be malicious lies.\0" -.align 2, 0 - -.global gUnknown_814FC90 -gUnknown_814FC90: @ 814FC90 -.string "{CENTER_ALIGN}...And proved that it had nothing to\n" -.string "{CENTER_ALIGN}do with the human in the legend.\0" -.align 2, 0 - -.global gUnknown_814FCDC -gUnknown_814FCDC: @ 814FCDC -.string "{CENTER_ALIGN}{ARG_NICKNAME_0} met with Ninetales under\n" -.string "{CENTER_ALIGN}the watchful eye of Alakazam...\0" -.align 2, 0 - -.global gUnknown_814FD20 -gUnknown_814FD20: @ 814FD20 -.string "{CENTER_ALIGN} \n" -.string "{CENTER_ALIGN}{ARG_NICKNAME_0} Innocent!\0" -.align 2, 0 - -.global gUnknown_814FD34 -gUnknown_814FD34: @ 814FD34 -.string "{CENTER_ALIGN}\n" -.string "{CENTER_ALIGN}= EXTRA =\0" -.align 2, 0 - -.global gUnknown_814FD54 -gUnknown_814FD54: @ 814FD54 -.string " OK{COMMA} I{APOSTROPHE}ll read it aloud.\n" -.string "Let{APOSTROPHE}s see...\0" -.align 2, 0 - -.global gUnknown_814FD80 -gUnknown_814FD80: @ 814FD80 -.string " ......{WAIT_PRESS}\n" -.string "It looks like a newspaper...\n" -.string "Doesn{APOSTROPHE}t it?\0" -.align 2, 0 - -.global gUnknown_814FDB8 -gUnknown_814FDB8: @ 814FDB8 -.string " What?\n" -.string "What is this?\0" -.align 2, 0 - -.global gUnknown_814FDD0 -gUnknown_814FDD0: @ 814FDD0 -.string " Extra! Extra!\n" -.string "Read all about it!\0" -.align 2, 0 - -.global gUnknown_814FDF4 -gUnknown_814FDF4: @ 814FDF4 -.string " E-everyone...\0" -.align 2, 0 - -.global gUnknown_814FE04 -gUnknown_814FE04: @ 814FE04 -.string " Ugegegegegege!\0" -.align 2, 0 - -.global gUnknown_814FE14 -gUnknown_814FE14: @ 814FE14 -.string " Yeah{COMMA} that{APOSTROPHE}s right!\n" -.string "Who needs proof?\0" -.align 2, 0 - -.global gUnknown_814FE40 -gUnknown_814FE40: @ 814FE40 -.string " I{APOSTROPHE}ve heard enough too!\n" -.string "I believe {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_814FE6C -gUnknown_814FE6C: @ 814FE6C -.string " Ugegegeh!\0" -.align 2, 0 - -.global gUnknown_814FE78 -gUnknown_814FE78: @ 814FE78 -.string " But I simply can{APOSTROPHE}t think\n" -.string "of {ARG_NICKNAME_0} being bad in any way.\0" -.align 2, 0 - -.global gUnknown_814FEB4 -gUnknown_814FEB4: @ 814FEB4 -.string " I joined the chase with a\n" -.string "heavy heart because of your urging...\0" -.align 2, 0 - -.global gUnknown_814FEF8 -gUnknown_814FEF8: @ 814FEF8 -.string " I was saved by\n" -.string "{ARG_NICKNAME_0}{APOSTROPHE}s team before.\0" -.align 2, 0 - -.global gUnknown_814FF20 -gUnknown_814FF20: @ 814FF20 -.string " ...I...\n" -.string "I{APOSTROPHE}m out.\0" -.align 2, 0 - -.global gUnknown_814FF34 -gUnknown_814FF34: @ 814FF34 -.string " Ugeh!\0" -.align 2, 0 - -.global gUnknown_814FF3C -gUnknown_814FF3C: @ 814FF3C -.string " You don{APOSTROPHE}t fool me!\0" -.align 2, 0 - -.global gUnknown_814FF54 -gUnknown_814FF54: @ 814FF54 -.string " I...{WAIT_PRESS}\n" -.string "I always believed in {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_814FF78 -gUnknown_814FF78: @ 814FF78 -.string " ............{WAIT_PRESS}Kekeh?!{WAIT_PRESS}\n" -.string "What{APOSTROPHE}s wrong{COMMA} everyone?\n" -.string "Don{APOSTROPHE}t you want to be rid of {ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_814FFD0 -gUnknown_814FFD0: @ 814FFD0 -.string " Now{COMMA} fellow Pokémon.{WAIT_PRESS}\n" -.string "Here{APOSTROPHE}s your chance to get rid of\n" -.string "{ARG_NICKNAME_0}! Kekekekekeh!\0" -.align 2, 0 - -.global gUnknown_8150020 -gUnknown_8150020: @ 8150020 -.string " You came back for us so\n" -.string "we could get rid of you easier!\n" -.string "How conveniently foolish! Kekekeh!\0" -.align 2, 0 - -.global gUnknown_815007C -gUnknown_815007C: @ 815007C -.string " Kekekekekekeh!{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s too bad you don{APOSTROPHE}t have proof!\0" -.align 2, 0 - -.global gUnknown_81500B8 -gUnknown_81500B8: @ 81500B8 -.string " Proof...{WAIT_PRESS}\n" -.string "We don{APOSTROPHE}t have any proof...\0" -.align 2, 0 - -.global gUnknown_81500E4 -gUnknown_81500E4: @ 81500E4 -.string " Let{APOSTROPHE}s see some proof!\n" -.string "Come on{COMMA} out with it!\0" -.align 2, 0 - -.global gUnknown_8150118 -gUnknown_8150118: @ 8150118 -.string " That{APOSTROPHE}s right.\n" -.string "Some hard evidence! Kekeh!\0" -.align 2, 0 - -.global gUnknown_8150144 -gUnknown_8150144: @ 8150144 -.string " P-proof?\0" -.align 2, 0 - -.global gUnknown_8150150 -gUnknown_8150150: @ 8150150 -.string " If you{APOSTROPHE}re going to make that\n" -.string "claim{COMMA} let{APOSTROPHE}s see some proof.\0" -.align 2, 0 - -.global gUnknown_8150194 -gUnknown_8150194: @ 8150194 -.string " Kekeh! W-wait a second!{WAIT_PRESS}\n" -.string "You can{APOSTROPHE}t be trusted yet.\0" -.align 2, 0 - -.global gUnknown_81501CC -gUnknown_81501CC: @ 81501CC -.string " Ugegegegegegegeh!\0" -.align 2, 0 - -.global gUnknown_81501E0 -gUnknown_81501E0: @ 81501E0 -.string " We{APOSTROPHE}re back because we\n" -.string "discovered the truth.\0" -.align 2, 0 - -.global gUnknown_8150210 -gUnknown_8150210: @ 8150210 -.string " {ARG_NICKNAME_0} isn{APOSTROPHE}t the human\n" -.string "from the legend.\0" -.align 2, 0 - -.global gUnknown_8150238 -gUnknown_8150238: @ 8150238 -.string " Yup.\n" -.string "We met Ninetales and asked.\0" -.align 2, 0 - -.global gUnknown_815025C -gUnknown_815025C: @ 815025C -.string " We came back when we\n" -.string "found that out.\0" -.align 2, 0 - -.global gUnknown_8150284 -gUnknown_8150284: @ 8150284 -.string " {ARG_NICKNAME_0} isn{APOSTROPHE}t the human\n" -.string "from that legend.\0" -.align 2, 0 - -.global gUnknown_81502B0 -gUnknown_81502B0: @ 81502B0 -.string " You bet.\n" -.string "We met Ninetales and found out.\0" -.align 2, 0 - -.global gUnknown_81502DC -gUnknown_81502DC: @ 81502DC -.string " Is that true?!\0" -.align 2, 0 - -.global gUnknown_81502EC -gUnknown_81502EC: @ 81502EC -.string " Wh-what?!\0" -.align 2, 0 - -.global gUnknown_81502F8 -gUnknown_81502F8: @ 81502F8 -.string " Ugege?!\0" -.align 2, 0 - -.global gUnknown_8150304 -gUnknown_8150304: @ 8150304 -.string " {ARG_NICKNAME_2}!{WAIT_PRESS}\n" -.string "Everything you said was completely\n" -.string "wrong!\0" -.align 2, 0 - -.global gUnknown_8150338 -gUnknown_8150338: @ 8150338 -.string " {ARG_NICKNAME_0} was innocent!\0" -.align 2, 0 - -.global gUnknown_815034C -gUnknown_815034C: @ 815034C -.string " {ARG_NICKNAME_0} had nothing to\n" -.string "do with it!\0" -.align 2, 0 - -.global gUnknown_815036C -gUnknown_815036C: @ 815036C -.string " {ARG_NICKNAME_2}!{WAIT_PRESS}\n" -.string "You spewed all sorts of trumped up\n" -.string "garbage{COMMA} didn{APOSTROPHE}t you?!\0" -.align 2, 0 - -.global gUnknown_81503B4 -gUnknown_81503B4: @ 81503B4 -.string " (Kekeh! Maybe...)\n\0" -.align 2, 0 - -.global gUnknown_81503C8 -gUnknown_81503C8: @ 81503C8 -.string " (Kekeh! What{APOSTROPHE}s with that\n" -.string "smug confidence?)\0" -.align 2, 0 - -.global gUnknown_81503F8 -gUnknown_81503F8: @ 81503F8 -.string " Hm! Oh{COMMA} it{APOSTROPHE}s you{COMMA}\n" -.string "{ARG_NICKNAME_2}.\n" -.string "It{APOSTROPHE}s been a while.\0" -.align 2, 0 - -.global gUnknown_815042C -gUnknown_815042C: @ 815042C -.string " Hey{COMMA} {ARG_NICKNAME_1}!\0" -.align 2, 0 - -.global gUnknown_815043C -gUnknown_815043C: @ 815043C -.string " It feels kind of nostalgic\n" -.string "to be back in the square{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_815047C -gUnknown_815047C: @ 815047C -.string " It{APOSTROPHE}s good to be back in the\n" -.string "square again{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81504B0 -gUnknown_81504B0: @ 81504B0 -.string " Whew!\n" -.string "We finally made it back.\n" -.string "We{APOSTROPHE}ve been gone for so long...\0" -.align 2, 0 - -.global gUnknown_81504F4 -gUnknown_81504F4: @ 81504F4 -.string " Hi{COMMA} everyone!\n" -.string "We{APOSTROPHE}re back!\0" -.align 2, 0 - -.global gUnknown_8150514 -gUnknown_8150514: @ 8150514 -.string " Th-they{APOSTROPHE}re back...\0" -.align 2, 0 - -.global gUnknown_815052C -gUnknown_815052C: @ 815052C -.string " ...{ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8150538 -gUnknown_8150538: @ 8150538 -.string " H-hey! Over there...\0" -.align 2, 0 - -.global gUnknown_8150550 -gUnknown_8150550: @ 8150550 -.string " Kekeh?!\n" -.string "What did you say?!\0" -.align 2, 0 - -.global gUnknown_815056C -gUnknown_815056C: @ 815056C -.string " {ARG_NICKNAME_0} is back!\0" -.align 2, 0 - -.global gUnknown_815057C -gUnknown_815057C: @ 815057C -.string " No!{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s the opposite!\0" -.align 2, 0 - -.global gUnknown_8150598 -gUnknown_8150598: @ 8150598 -.string " Oh! Finally!\n" -.string "We{APOSTROPHE}re finally rid of {ARG_NICKNAME_0}!\n" -.string "Kekeh!\0" -.align 2, 0 - -.global gUnknown_81505CC -gUnknown_81505CC: @ 81505CC -.string " {ARG_NICKNAME_0}...\n" -.string "{ARG_NICKNAME_0} is...\0" -.align 2, 0 - -.global gUnknown_81505E0 -gUnknown_81505E0: @ 81505E0 -.string " {ARG_NICKNAME_7}{COMMA} what{APOSTROPHE}s\n" -.string "the word?\0" -.align 2, 0 - -.global gUnknown_81505FC -gUnknown_81505FC: @ 81505FC -.string " Oh{COMMA} my gosh! Oh{COMMA} my goodness!\0" -.align 2, 0 - -.global gUnknown_8150620 -gUnknown_8150620: @ 8150620 -.string " Tch!\n" -.string "Just appointed yourself that...\0" -.align 2, 0 - -.global gUnknown_8150648 -gUnknown_8150648: @ 8150648 -.string " Our role is to receive word\n" -.string "about {ARG_NICKNAME_0}{APOSTROPHE}s demise.\n" -.string "Kekekekekeh!\0" -.align 2, 0 - -.global gUnknown_8150688 -gUnknown_8150688: @ 8150688 -.string " We{APOSTROPHE}re out of that picture.\n" -.string "Kekeh!\0" -.align 2, 0 - -.global gUnknown_81506B0 -gUnknown_81506B0: @ 81506B0 -.string " Walk the talk.\n" -.string "You guys go.\0" -.align 2, 0 - -.global gUnknown_81506D0 -gUnknown_81506D0: @ 81506D0 -.string " You just hang around in the\n" -.string "square and don{APOSTROPHE}t do a thing.\0" -.align 2, 0 - -.global gUnknown_815070C -gUnknown_815070C: @ 815070C -.string " You{APOSTROPHE}re so full of big talk!\n" -.string "What about your team{COMMA} Gengar?\0" -.align 2, 0 - -.global gUnknown_815074C -gUnknown_815074C: @ 815074C -.string " Kekeh!\n" -.string "What a spineless lot you are!\n" -.string "Tch!\0" -.align 2, 0 - -.global gUnknown_8150778 -gUnknown_8150778: @ 8150778 -.string " Hahaha!\0" -.align 2, 0 - -.global gUnknown_8150784 -gUnknown_8150784: @ 8150784 -.string " They{APOSTROPHE}ve grown up tough!\n" -.string "I can{APOSTROPHE}t keep up!\0" -.align 2, 0 - -.global gUnknown_81507B4 -gUnknown_81507B4: @ 81507B4 -.string " ...But those fugitives...\n" -.string "To think they would risk Mt. Blaze...\0" -.align 2, 0 - -.global gUnknown_81507F8 -gUnknown_81507F8: @ 81507F8 -.string " I don{APOSTROPHE}t know what became\n" -.string "of {ARG_NICKNAME_0}{APOSTROPHE}s team after that.\0" -.align 2, 0 - -.global gUnknown_8150830 -gUnknown_8150830: @ 8150830 -.string " I{APOSTROPHE}m a Grass type{COMMA} see.{WAIT_PRESS}\n" -.string "Fire doesn{APOSTROPHE}t agree with me at all.\0" -.align 2, 0 - -.global gUnknown_8150874 -gUnknown_8150874: @ 8150874 -.string " For the life of me{COMMA} I can{APOSTROPHE}t\n" -.string "go in there.\n" -.string "And that{APOSTROPHE}s where I lost their trail.\0" -.align 2, 0 - -.global gUnknown_81508CC -gUnknown_81508CC: @ 81508CC -.string " But they fled into Mt. Blaze.\0" -.align 2, 0 - -.global gUnknown_81508EC -gUnknown_81508EC: @ 81508EC -.string " I joined the chase...\0" -.align 2, 0 - -.global gUnknown_8150904 -gUnknown_8150904: @ 8150904 -.string " If we went{COMMA} the best we\n" -.string "could hope for is maybe the Lapis Cave.\0" -.align 2, 0 - -.global gUnknown_8150948 -gUnknown_8150948: @ 8150948 -.string " They say {ARG_NICKNAME_0}{APOSTROPHE}s\n" -.string "team has gone way far out there.\0" -.align 2, 0 - -.global gUnknown_815097C -gUnknown_815097C: @ 815097C -.string " It{APOSTROPHE}s too much for us...\0" -.align 2, 0 - -.global gUnknown_8150998 -gUnknown_8150998: @ 8150998 -.string " That{APOSTROPHE}s easy for you to say...\0" -.align 2, 0 - -.global gUnknown_81509BC -gUnknown_81509BC: @ 81509BC -.string " Why aren{APOSTROPHE}t you out there\n" -.string "hunting down {ARG_NICKNAME_0}{APOSTROPHE}s team?\0" -.align 2, 0 - -.global gUnknown_81509F4 -gUnknown_81509F4: @ 81509F4 -.string " Kekeh!\n" -.string "You lot!\0" -.align 2, 0 - -.global gUnknown_8150A08 -gUnknown_8150A08: @ 8150A08 -.byte 0xf6, 0x00, 0x12, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01 -.byte 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x93, 0x04, 0x0b, 0x00 -.byte 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xd2 -.byte 0x91, 0x0a, 0x0a, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x0c, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x91, 0x0c, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00 -.byte 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8150CB8 -gUnknown_8150CB8: @ 8150CB8 -.byte 0xf6, 0x00, 0x40, 0x18 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xe3, 0x00, 0x10, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xdc -.byte 0x91, 0x0c, 0x0a, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x2d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, shortestDir, east -.byte 0xe3, 0x00, 0x10, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, northeast -.byte 0xe3, 0x00, 0x10, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x93, 0x08, 0x0a, 0x00 -.byte 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8150DE8 -gUnknown_8150DE8: @ 8150DE8 -.byte 0xf6, 0x00, 0x56, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x93, 0x04, 0x0b, 0x00 -.byte 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x30, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe8, 0x00, 0x31, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd8, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0b, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00 -.byte 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x41, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x99, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x08, 0x00, 0x01 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, south -.byte 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, southeast -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, south -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe8, 0x00, 0x21, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0b, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xdb, 0x00, 0xb4, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, shortestDir, north -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe8, 0x00, 0x21, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xf4, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x40, 0x00, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81513C8 -gUnknown_81513C8: @ 81513C8 -.byte 0xf6, 0x00, 0xb7, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x93, 0x04, 0x0b, 0x00 -.byte 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0b, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x93, 0x04, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x93, 0x04, 0x0b, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xdb, 0x00, 0x8c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0a, shortestDir, northwest -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x0a, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x91, 0x0a, 0x0a, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x08, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x10, 0x99, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x38, 0x00, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81516E8 -gUnknown_81516E8: @ 81516E8 -.byte 0xf6, 0x00, 0xec, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0b, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x30, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe8, 0x00, 0x31, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x93, 0x3c, 0x0b, 0x00 -.byte 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3e -.byte 0x6b, 0x00, 0x99, 0x00 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0xe8, 0x00, 0x26, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0b, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xdb, 0x00, 0xa0, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0c -.byte 0x91, 0x08, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x08, 0x0a, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x08, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x30, 0x99, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 31 -.byte 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x11 -.byte 0x54, 0x00, 0x16, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xd7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x2d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x38, 0x00, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8151B48 -gUnknown_8151B48: @ 8151B48 -.byte 0xf6, 0x00, 0x35, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x93, 0x04, 0x0b, 0x00 -.byte 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0b, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x93, 0x04, 0x0b, 0x00 -.byte 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, west -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, northwest -.byte 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x08 -.byte 0x93, 0x04, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0b, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xdb, 0x00, 0x96, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, shortestDir, north -.byte 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x06, 0x00, 0x01, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x89, 0x38, 0x00, 0x02 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8151E18 -gUnknown_8151E18: @ 8151E18 -.byte 0xf6, 0x00, 0x65, 0x19 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x91, 0x04, 0x0b, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x99, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x93, 0x08, 0x0b, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0b, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x08, 0x00, 0x01 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xdb, 0x00, 0xc8, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0d -.byte 0x91, 0x0a, 0x0a, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x0a, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x08, 0x0a, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x08, 0x80, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x18, 0x80, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x05, 0x80, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81521A8 -gUnknown_81521A8: @ 81521A8 -.byte 0xf6, 0x00, 0xa1, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x37, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x99, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x93, 0x08, 0x0b, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x91, 0x04, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00 -.byte 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe8, 0x00, 0x21, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xe6 -.byte 0x91, 0x08, 0x0a, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0x91, 0x0c, 0x0a, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x40, 0x00, 0x02 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81525B8 -gUnknown_81525B8: @ 81525B8 -.byte 0xf6, 0x00, 0xe5, 0x19 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00 -.byte 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00 -.byte 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x91, 0x04, 0x0b, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x91, 0x04, 0x0b, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0b, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x91, 0x04, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe8, 0x00, 0x29, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00 -.byte 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe8, 0x00, 0x21, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xd7 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x0a, 0x0a, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x40, 0x00, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8152988 -gUnknown_8152988: @ 8152988 -.byte 0xf6, 0x00, 0x25, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x2d, 0x07, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8152A68 -gUnknown_8152A68: @ 8152A68 -.byte 0xf6, 0x00, 0x36, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xe3, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x58, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x10, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xe4, 0x00, 0x11, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x20, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8152BA8 -gUnknown_8152BA8: @ 8152BA8 -.byte 0xf6, 0x00, 0x4d, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x48, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0xbe, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8152C28 -gUnknown_8152C28: @ 8152C28 -.byte 0xf6, 0x00, 0x58, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8152C68 -gUnknown_8152C68: @ 8152C68 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8152C28 - -.global gUnknown_8152C74 -gUnknown_8152C74: @ 8152C74 -.byte 0xf6, 0x00, 0x61, 0x1a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8152E18 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8152DE8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8152DA0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8152D54 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8152D54 -gUnknown_8152D54: @ 8152D54 -.string " I{APOSTROPHE}ll never give you my\n" -.string "business again!{WAIT_PRESS}\n" -.string "I hope you won{APOSTROPHE}t say that.\0" -.align 2, 0 - -.global gUnknown_8152DA0 -gUnknown_8152DA0: @ 8152DA0 -.string " But I am glad to hear\n" -.string "you are free from that cloud of\n" -.string "suspicion〜♪\0" -.align 2, 0 - -.global gUnknown_8152DE8 -gUnknown_8152DE8: @ 8152DE8 -.string " I was fully convinced of\n" -.string "your guilt{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_8152E18 -gUnknown_8152E18: @ 8152E18 -.string " I{APOSTROPHE}m so sorry.\0" -.align 2, 0 - -.global gUnknown_8152E2C -gUnknown_8152E2C: @ 8152E2C -.byte 0xf6, 0x00, 0x72, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa8, 0x00, 0x4b, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x01, 0x18, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8152EDC -gUnknown_8152EDC: @ 8152EDC -.byte 0xf6, 0x00, 0x80, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8152FEC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8152F9C -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3c, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8152F9C -gUnknown_8152F9C: @ 8152F9C -.string " I promise to satisfy all\n" -.string "your banking needs from now on.\n" -.string "I hope you{APOSTROPHE}ll stay.\0" -.align 2, 0 - -.global gUnknown_8152FEC -gUnknown_8152FEC: @ 8152FEC -.string " I do apologize.{WAIT_PRESS}\n" -.string "How could one run a bank without\n" -.string "trusting clients?\0" -.align 2, 0 - -.global gUnknown_8153034 -gUnknown_8153034: @ 8153034 -.byte 0xf6, 0x00, 0x8f, 0x1a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4b, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815314C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81530F4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81530F4 -gUnknown_81530F4: @ 81530F4 -.string " If you could wipe the slate\n" -.string "clean{COMMA} I will do my best to serve your\n" -.string "linking needs!\0" -.align 2, 0 - -.global gUnknown_815314C -gUnknown_815314C: @ 815314C -.string " I doubted you too!\n" -.string "I do so apologize!\0" -.align 2, 0 - -.global gUnknown_8153174 -gUnknown_8153174: @ 8153174 -.byte 0xf6, 0x00, 0x9e, 0x1a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4b, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153320 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81532F8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81532A4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153254 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8153254 -gUnknown_8153254: @ 8153254 -.string " I{APOSTROPHE}ll keep looking after your\n" -.string "things{COMMA} dears! You can always count on me!\0" -.align 2, 0 - -.global gUnknown_81532A4 -gUnknown_81532A4: @ 81532A4 -.string " I mean{COMMA} look at you.\n" -.string "You don{APOSTROPHE}t look like the sort who can be\n" -.string "up to no good.\0" -.align 2, 0 - -.global gUnknown_81532F8 -gUnknown_81532F8: @ 81532F8 -.string " I thought there had to\n" -.string "be a mistake.\0" -.align 2, 0 - -.global gUnknown_8153320 -gUnknown_8153320: @ 8153320 -.string " I expected this.\0" -.align 2, 0 - -.global gUnknown_8153334 -gUnknown_8153334: @ 8153334 -.byte 0xf6, 0x00, 0xaf, 0x1a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4b, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153414 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81533F4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81533F4 -gUnknown_81533F4: @ 81533F4 -.string " Because you{APOSTROPHE}re my friend!\0" -.align 2, 0 - -.global gUnknown_8153414 -gUnknown_8153414: @ 8153414 -.string " I believed in you{COMMA}\n" -.string "{ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8153430 -gUnknown_8153430: @ 8153430 -.byte 0xf6, 0x00, 0xbe, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x51, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8153470 -gUnknown_8153470: @ 8153470 -.byte 0xf6, 0x00, 0xc5, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81534D0 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81534D0 -gUnknown_81534D0: @ 81534D0 -.string " We got conned by Gengar...{WAIT_PRESS}\n" -.string "I{APOSTROPHE}m sorry.\0" -.align 2, 0 - -.global gUnknown_81534FC -gUnknown_81534FC: @ 81534FC -.byte 0xf6, 0x00, 0xce, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x51, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815353C -gUnknown_815353C: @ 815353C -.byte 0xf6, 0x00, 0xd5, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815359C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815359C -gUnknown_815359C: @ 815359C -.string " I{APOSTROPHE}m truly sorry for what\n" -.string "happened.{WAIT_PRESS}\n" -.string "Sorry for suspecting you.\0" -.align 2, 0 - -.global gUnknown_81535E0 -gUnknown_81535E0: @ 81535E0 -.byte 0xf6, 0x00, 0xde, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x51, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8153620 -gUnknown_8153620: @ 8153620 -.byte 0xf6, 0x00, 0xe5, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153720 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81536F8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81536A0 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81536A0 -gUnknown_81536A0: @ 81536A0 -.string " It is rather worrying...{WAIT_PRESS}\n" -.string "But I suppose it is Alakazam{APOSTROPHE}s team.\n" -.string "They should be fine.\0" -.align 2, 0 - -.global gUnknown_81536F8 -gUnknown_81536F8: @ 81536F8 -.string " Groudon...{WAIT_PRESS}\n" -.string "The mythical Pokémon...\0" -.align 2, 0 - -.global gUnknown_8153720 -gUnknown_8153720: @ 8153720 -.string " ...So{COMMA} what became of\n" -.string "Alakazam{APOSTROPHE}s team?\n" -.string "Did they head underground?\0" -.align 2, 0 - -.global gUnknown_8153768 -gUnknown_8153768: @ 8153768 -.byte 0xf6, 0x00, 0xf0, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153814 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81537D8 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81537D8 -gUnknown_81537D8: @ 81537D8 -.string " I{APOSTROPHE}m sorry you had to go\n" -.string "through such a miserable time.\0" -.align 2, 0 - -.global gUnknown_8153814 -gUnknown_8153814: @ 8153814 -.string " Aww. No...\n" -.string "I thought you were completely guilty.\0" -.align 2, 0 - -.global gUnknown_8153848 -gUnknown_8153848: @ 8153848 -.byte 0xf6, 0x00, 0xfa, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0d, 0x01, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8153888 -gUnknown_8153888: @ 8153888 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153848 - -.global gUnknown_8153894 -gUnknown_8153894: @ 8153894 -.byte 0xf6, 0x00, 0x03, 0x1b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x0c, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153BE4 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153BB4 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153B58 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153B18 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153AEC -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153AB0 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153A44 -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8153A44 -gUnknown_8153A44: @ 8153A44 -.string " I will do my best to obtain\n" -.string "even better Technical Machines and Orbs.\n" -.string "I hope for your continued patronage!\0" -.align 2, 0 - -.global gUnknown_8153AB0 -gUnknown_8153AB0: @ 8153AB0 -.string " We both promise{COMMA} we will\n" -.string "not repeat the same mistake.\0" -.align 2, 0 - -.global gUnknown_8153AEC -gUnknown_8153AEC: @ 8153AEC -.string " B-Brother...{WAIT_PRESS}\n" -.string "Sniffle... My brother...\0" -.align 2, 0 - -.global gUnknown_8153B18 -gUnknown_8153B18: @ 8153B18 -.string " It isn{APOSTROPHE}t just you{COMMA} my brother.{WAIT_PRESS}\n" -.string "I am guilty of the same.\0" -.align 2, 0 - -.global gUnknown_8153B58 -gUnknown_8153B58: @ 8153B58 -.string " I{APOSTROPHE}m very ashamed that I\n" -.string "treated a valuable customer with such\n" -.string "disdain and suspicion...\0" -.align 2, 0 - -.global gUnknown_8153BB4 -gUnknown_8153BB4: @ 8153BB4 -.string " I was convinced that\n" -.string "{ARG_NICKNAME_0} had to be the one.\0" -.align 2, 0 - -.global gUnknown_8153BE4 -gUnknown_8153BE4: @ 8153BE4 -.string " I am so sorry!\0" -.align 2, 0 - -.global gUnknown_8153BF4 -gUnknown_8153BF4: @ 8153BF4 -.byte 0xf6, 0x00, 0x21, 0x1b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8153C34 -gUnknown_8153C34: @ 8153C34 -.byte 0xf6, 0x00, 0x28, 0x1b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8153CD4 -gUnknown_8153CD4: @ 8153CD4 -.byte 0xf6, 0x00, 0x35, 0x1b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8152E18 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8152DE8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8152DA0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8152D54 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8153DB4 -gUnknown_8153DB4: @ 8153DB4 -.byte 0xf6, 0x00, 0x46, 0x1b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8153E64 -gUnknown_8153E64: @ 8153E64 -.byte 0xf6, 0x00, 0x54, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4b, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x01, 0x18, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8153F14 -gUnknown_8153F14: @ 8153F14 -.byte 0xf6, 0x00, 0x62, 0x1b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8153F54 -gUnknown_8153F54: @ 8153F54 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153F14 - -.global gUnknown_8153F60 -gUnknown_8153F60: @ 8153F60 -.byte 0xf6, 0x00, 0x6b, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8153FC0 -gUnknown_8153FC0: @ 8153FC0 -.byte 0xf6, 0x00, 0x74, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8154020 -gUnknown_8154020: @ 8154020 -.byte 0xf6, 0x00, 0x7d, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8154080 -gUnknown_8154080: @ 8154080 -.byte 0xf6, 0x00, 0x86, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81540E0 -gUnknown_81540E0: @ 81540E0 -.byte 0xf6, 0x00, 0x8f, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8154140 -gUnknown_8154140: @ 8154140 -.byte 0xf6, 0x00, 0x98, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81541A0 -gUnknown_81541A0: @ 81541A0 -.byte 0xf6, 0x00, 0xa1, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x51, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81541E0 -gUnknown_81541E0: @ 81541E0 -.byte 0xf6, 0x00, 0xa8, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815428C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8154250 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8154250 -gUnknown_8154250: @ 8154250 -.string " It caught me by surprise.\n" -.string "I almost drowned in the pond!\0" -.align 2, 0 - -.global gUnknown_815428C -gUnknown_815428C: @ 815428C -.string " That quake was\n" -.string "something else!\0" -.align 2, 0 - -.global gUnknown_81542AC -gUnknown_81542AC: @ 81542AC -.byte 0xf6, 0x00, 0xb2, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x51, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81542EC -gUnknown_81542EC: @ 81542EC -.byte 0xf6, 0x00, 0xb9, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815437C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815435C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815435C -gUnknown_815435C: @ 815435C -.string " That earthquake was\n" -.string "terrible!\0" -.align 2, 0 - -.global gUnknown_815437C -gUnknown_815437C: @ 815437C -.string " Oh{COMMA} wasn{APOSTROPHE}t it shocking?!\0" -.align 2, 0 - -.global gUnknown_815439C -gUnknown_815439C: @ 815439C -.byte 0xf6, 0x00, 0xc3, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x51, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81543DC -gUnknown_81543DC: @ 81543DC -.byte 0xf6, 0x00, 0xca, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81544D0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8154490 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815445C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815445C -gUnknown_815445C: @ 815445C -.string " I don{APOSTROPHE}t think Alakazam{APOSTROPHE}s\n" -.string "team has come back.\0" -.align 2, 0 - -.global gUnknown_8154490 -gUnknown_8154490: @ 8154490 -.string " I{APOSTROPHE}m not sure...{WAIT_PRESS}\n" -.string "I haven{APOSTROPHE}t seen them around the square.\0" -.align 2, 0 - -.global gUnknown_81544D0 -gUnknown_81544D0: @ 81544D0 -.string " What{APOSTROPHE}s that?\n" -.string "Has Alakazam{APOSTROPHE}s team returned?\0" -.align 2, 0 - -.global gUnknown_8154500 -gUnknown_8154500: @ 8154500 -.byte 0xf6, 0x00, 0xd5, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81545C4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8154570 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8154570 -gUnknown_8154570: @ 8154570 -.string " If it can happen here{COMMA}\n" -.string "will more serious natural disasters\n" -.string "come to the square?\0" -.align 2, 0 - -.global gUnknown_81545C4 -gUnknown_81545C4: @ 81545C4 -.string " That earthquake here\n" -.string "was wicked...\0" -.align 2, 0 - -.global gUnknown_81545E8 -gUnknown_81545E8: @ 81545E8 -.byte 0xf6, 0x00, 0xdf, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8154678 -gUnknown_8154678: @ 8154678 -.byte 0x90, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81545E8 - -.global gUnknown_8154684 -gUnknown_8154684: @ 8154684 -.byte 0xf6, 0x00, 0xed, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x59, 0x00, 0xc0, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0xc0, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0xc0, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8154794 -gUnknown_8154794: @ 8154794 -.byte 0xf6, 0x00, 0x01, 0x1c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x08, 0x00, 0x58, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x09, 0x00, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8156864 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8156824 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81567E4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8156794 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x91, 0x04, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815676C -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8156714 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81566E8 -.byte 0x44, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81566AC -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815668C -closeTextBox -.byte 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x14 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd9, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81502EC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815667C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8156664 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8156634 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81565F8 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81565C0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x14 -.byte 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8156574 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8156540 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x04, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81564FC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81564C8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8156490 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8156468 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x04, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8156408 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81563EC -closeTextBox -.byte 0xe4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81563B4 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8156384 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8156348 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81562FC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x14 -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81562E0 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8156294 -closeTextBox -.byte 0x48, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815625C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8156224 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8156204 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81561D4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81561AC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8156168 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8156138 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815611C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x14 -.byte 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8156110 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x14 -.byte 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8156108 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81560F8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81560C4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8156060 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8156038 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8156004 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155FD4 -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155FB8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155FA0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155F74 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155F00 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155EC8 -closeTextBox -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155E80 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155E54 -closeTextBox -.byte 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x14 -.byte 0x93, 0x04, 0x0a, 0x00, 0x6a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155E48 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155E10 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155DA8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155D70 -.byte 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155D34 -closeTextBox -.byte 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155D18 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155CE8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155CB0 -closeTextBox -.byte 0xe4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155C9C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155C70 -closeTextBox -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155C60 -closeTextBox -.byte 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x6b, 0x00, 0x00, 0x01, 0x54, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x1e, CCW, west -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155C50 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155C3C -closeTextBox -.byte 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x93, 0x04, 0x0a, 0x00, 0x4d, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155C18 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155BFC -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155BCC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155BA4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8155BA4 -gUnknown_8155BA4: @ 8155BA4 -.string " Hmmm...\n" -.string "It can{APOSTROPHE}t be helped{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_8155BCC -gUnknown_8155BCC: @ 8155BCC -.string " OK...\n" -.string "I guess we can{APOSTROPHE}t say anything{COMMA}\n" -.string "{ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_8155BFC -gUnknown_8155BFC: @ 8155BFC -.string " Let them handle things.\0" -.align 2, 0 - -.global gUnknown_8155C18 -gUnknown_8155C18: @ 8155C18 -.string " See?\n" -.string "They look pretty tough{COMMA} eh?\0" -.align 2, 0 - -.global gUnknown_8155C3C -gUnknown_8155C3C: @ 8155C3C -.string " Save {ARG_NICKNAME_8}{APOSTROPHE}s team!\0" -.align 2, 0 - -.global gUnknown_8155C50 -gUnknown_8155C50: @ 8155C50 -.string " Win it for us!\0" -.align 2, 0 - -.global gUnknown_8155C60 -gUnknown_8155C60: @ 8155C60 -.string " Let{APOSTROPHE}s go!\0" -.align 2, 0 - -.global gUnknown_8155C70 -gUnknown_8155C70: @ 8155C70 -.string " You{APOSTROPHE}re representing us!\n" -.string "Make us proud!\0" -.align 2, 0 - -.global gUnknown_8155C9C -gUnknown_8155C9C: @ 8155C9C -.string " Yeah! Good choice!\0" -.align 2, 0 - -.global gUnknown_8155CB0 -gUnknown_8155CB0: @ 8155CB0 -.string " We will have these three\n" -.string "rescuers head underground!\0" -.align 2, 0 - -.global gUnknown_8155CE8 -gUnknown_8155CE8: @ 8155CE8 -.string " No one could complain\n" -.string "about your selection.\0" -.align 2, 0 - -.global gUnknown_8155D18 -gUnknown_8155D18: @ 8155D18 -.string " Oh{COMMA} {ARG_NICKNAME_4}!\n" -.string "{ARG_NICKNAME_5}! And {ARG_NICKNAME_6}!\0" -.align 2, 0 - -.global gUnknown_8155D34 -gUnknown_8155D34: @ 8155D34 -.string " I{APOSTROPHE}ll use my Rock Throw to\n" -.string "keep it buried underground.\0" -.align 2, 0 - -.global gUnknown_8155D70 -gUnknown_8155D70: @ 8155D70 -.string " If {ARG_NICKNAME_9}{APOSTROPHE}s awakened\n" -.string "underground{COMMA} that suits me fine.\0" -.align 2, 0 - -.global gUnknown_8155DA8 -gUnknown_8155DA8: @ 8155DA8 -.string " His body is rock hard.\n" -.string "He{APOSTROPHE}s supposed to be able to withstand\n" -.string "huge explosions without taking damage.\0" -.align 2, 0 - -.global gUnknown_8155E10 -gUnknown_8155E10: @ 8155E10 -.string " He{APOSTROPHE}s the most brutal out of {COLOR_1 CYAN}Team\n" -.string "Rumblerock{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_8155E48 -gUnknown_8155E48: @ 8155E48 -.string " Wow! {ARG_NICKNAME_6}!\0" -.align 2, 0 - -.global gUnknown_8155E54 -gUnknown_8155E54: @ 8155E54 -.string " Say{COMMA} how about not forgetting about\n" -.string "me?\0" -.align 2, 0 - -.global gUnknown_8155E80 -gUnknown_8155E80: @ 8155E80 -.string " Darlings{COMMA} when I see a tough\n" -.string "Pokémon{COMMA} I want to tangle with them.\0" -.align 2, 0 - -.global gUnknown_8155EC8 -gUnknown_8155EC8: @ 8155EC8 -.string " She{APOSTROPHE}d be nasty to face in any battle\n" -.string "of endurance.\0" -.align 2, 0 - -.global gUnknown_8155F00 -gUnknown_8155F00: @ 8155F00 -.string " She{APOSTROPHE}s known for persistent and\n" -.string "clingy attacks.{WAIT_PRESS} She ensnares foes with\n" -.string "her tentacles{COMMA} then head-butts them!\0" -.align 2, 0 - -.global gUnknown_8155F74 -gUnknown_8155F74: @ 8155F74 -.string " She{APOSTROPHE}s {COLOR_1 CYAN}Team Constrictor{END_COLOR_TEXT_1}{APOSTROPHE}s leader.\0" -.align 2, 0 - -.global gUnknown_8155FA0 -gUnknown_8155FA0: @ 8155FA0 -.string " Woohoo! It{APOSTROPHE}s {ARG_NICKNAME_5}!\0" -.align 2, 0 - -.global gUnknown_8155FB8 -gUnknown_8155FB8: @ 8155FB8 -.string " I{APOSTROPHE}ll join the party too.\0" -.align 2, 0 - -.global gUnknown_8155FD4 -gUnknown_8155FD4: @ 8155FD4 -.string " My Hydro Pump will put\n" -.string "{ARG_NICKNAME_9} down in one shot.\0" -.align 2, 0 - -.global gUnknown_8156004 -gUnknown_8156004: @ 8156004 -.string " I am a Water type.\n" -.string "Strong against the Ground type.\0" -.align 2, 0 - -.global gUnknown_8156038 -gUnknown_8156038: @ 8156038 -.string " It{APOSTROPHE}s rumored {ARG_NICKNAME_9}\n" -.string "is a Ground type.\0" -.align 2, 0 - -.global gUnknown_8156060 -gUnknown_8156060: @ 8156060 -.string " Those waterspouts on his back can\n" -.string "rocket water so fast that it punches\n" -.string "through thick iron plates!\0" -.align 2, 0 - -.global gUnknown_81560C4 -gUnknown_81560C4: @ 81560C4 -.string " You mean...\n" -.string "{COLOR_1 CYAN}Team Hydro{END_COLOR_TEXT_1}{APOSTROPHE}s roughneck {ARG_NICKNAME_4}?!\0" -.align 2, 0 - -.global gUnknown_81560F8 -gUnknown_81560F8: @ 81560F8 -.string " It{APOSTROPHE}s B-{ARG_NICKNAME_4}!\0" -.align 2, 0 - -.global gUnknown_8156108 -gUnknown_8156108: @ 8156108 -.string " Whoa!\0" -.align 2, 0 - -.global gUnknown_8156110 -gUnknown_8156110: @ 8156110 -.string " I{APOSTROPHE}ll go.\0" -.align 2, 0 - -.global gUnknown_815611C -gUnknown_815611C: @ 815611C -.string " Will no one step forward?!\0" -.align 2, 0 - -.global gUnknown_8156138 -gUnknown_8156138: @ 8156138 -.string " There{APOSTROPHE}s plenty of tougher\n" -.string "Pokémon out there.\0" -.align 2, 0 - -.global gUnknown_8156168 -gUnknown_8156168: @ 8156168 -.string " You guys have gotten a lot\n" -.string "tougher{COMMA} that{APOSTROPHE}s for sure{COMMA} but...\0" -.align 2, 0 - -.global gUnknown_81561AC -gUnknown_81561AC: @ 81561AC -.string " What{APOSTROPHE}s with you?\n" -.string "Can you step aside?\0" -.align 2, 0 - -.global gUnknown_81561D4 -gUnknown_81561D4: @ 81561D4 -.string " What{APOSTROPHE}s with you?\n" -.string "Can you get out of the way?\0" -.align 2, 0 - -.global gUnknown_8156204 -gUnknown_8156204: @ 8156204 -.string " Don{APOSTROPHE}t bother{COMMA} you guys.\0" -.align 2, 0 - -.global gUnknown_8156224 -gUnknown_8156224: @ 8156224 -.string " Say{COMMA} {ARG_NICKNAME_0}.\n" -.string "This is a great opportunity. Let{APOSTROPHE}s go.\0" -.align 2, 0 - -.global gUnknown_815625C -gUnknown_815625C: @ 815625C -.string " Hey{COMMA} {ARG_NICKNAME_0}.\n" -.string "This is some chance. Let{APOSTROPHE}s go for it.\0" -.align 2, 0 - -.global gUnknown_8156294 -gUnknown_8156294: @ 8156294 -.string " Who among us will be the\n" -.string "heroes to take on the challenges\n" -.string "underground?!\0" -.align 2, 0 - -.global gUnknown_81562E0 -gUnknown_81562E0: @ 81562E0 -.string " Who will step forward?!\0" -.align 2, 0 - -.global gUnknown_81562FC -gUnknown_81562FC: @ 81562FC -.string " I propose that a special\n" -.string "team be formed by choosing the best of\n" -.string "the best.\0" -.align 2, 0 - -.global gUnknown_8156348 -gUnknown_8156348: @ 8156348 -.string " That{APOSTROPHE}s why I asked so many\n" -.string "rescue teams to gather today.\0" -.align 2, 0 - -.global gUnknown_8156384 -gUnknown_8156384: @ 8156384 -.string " It{APOSTROPHE}s not a place where just\n" -.string "anyone can go.\0" -.align 2, 0 - -.global gUnknown_81563B4 -gUnknown_81563B4: @ 81563B4 -.string " There{APOSTROPHE}s no denying that\n" -.string "it is dangerous underground.\0" -.align 2, 0 - -.global gUnknown_81563EC -gUnknown_81563EC: @ 81563EC -.string " Quiet{COMMA} please! Be quiet!\0" -.align 2, 0 - -.global gUnknown_8156408 -gUnknown_8156408: @ 8156408 -.string " There{APOSTROPHE}s magma flowing everywhere\n" -.string "underground.{WAIT_PRESS}\n" -.string "I{APOSTROPHE}d burn up if I went anywhere like that!\0" -.align 2, 0 - -.global gUnknown_8156468 -gUnknown_8156468: @ 8156468 -.string " Hunh?!\n" -.string "You{APOSTROPHE}ve gotta be kidding me!\0" -.align 2, 0 - -.global gUnknown_8156490 -gUnknown_8156490: @ 8156490 -.string " Why don{APOSTROPHE}t you go underground and\n" -.string "see for yourself?\0" -.align 2, 0 - -.global gUnknown_81564C8 -gUnknown_81564C8: @ 81564C8 -.string " What? It{APOSTROPHE}s that tough?\n" -.string "This Pokémon named {ARG_NICKNAME_9}?\0" -.align 2, 0 - -.global gUnknown_81564FC -gUnknown_81564FC: @ 81564FC -.string " That{APOSTROPHE}s right...\n" -.string "And it sounds as if {ARG_NICKNAME_9} is out of\n" -.string "our league...\0" -.align 2, 0 - -.global gUnknown_8156540 -gUnknown_8156540: @ 8156540 -.string " But they haven{APOSTROPHE}t come back.\n" -.string "That{APOSTROPHE}s for real!\0" -.align 2, 0 - -.global gUnknown_8156574 -gUnknown_8156574: @ 8156574 -.string " No idea?{WAIT_PRESS}\n" -.string "How is that possible?!{WAIT_PRESS}\n" -.string "This is {ARG_NICKNAME_8} you{APOSTROPHE}re talking about?\0" -.align 2, 0 - -.global gUnknown_81565C0 -gUnknown_81565C0: @ 81565C0 -.string " To be honest...{WAIT_PRESS}\n" -.string "We have no idea what became of them.\0" -.align 2, 0 - -.global gUnknown_81565F8 -gUnknown_81565F8: @ 81565F8 -.string " And that{APOSTROPHE}s it.\n" -.string "We haven{APOSTROPHE}t heard anything from them.\0" -.align 2, 0 - -.global gUnknown_8156634 -gUnknown_8156634: @ 8156634 -.string " {ARG_NICKNAME_8} led his team\n" -.string "underground to quell {ARG_NICKNAME_9}...\0" -.align 2, 0 - -.global gUnknown_8156664 -gUnknown_8156664: @ 8156664 -.string " Yes{COMMA} unfortunately.\0" -.align 2, 0 - -.global gUnknown_815667C -gUnknown_815667C: @ 815667C -.string " Is that true?\0" -.align 2, 0 - -.global gUnknown_815668C -gUnknown_815668C: @ 815668C -.string " But they haven{APOSTROPHE}t returned!\0" -.align 2, 0 - -.global gUnknown_81566AC -gUnknown_81566AC: @ 81566AC -.string " There{APOSTROPHE}s big trouble!{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_8}{APOSTROPHE}s team went underground...\0" -.align 2, 0 - -.global gUnknown_81566E8 -gUnknown_81566E8: @ 81566E8 -.string " ...Sorry.\n" -.string "This isn{APOSTROPHE}t the time for that!\0" -.align 2, 0 - -.global gUnknown_8156714 -gUnknown_8156714: @ 8156714 -.string " I{COMMA} uh...{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s not my style to get up in front of\n" -.string "everyone like this{COMMA} and...\0" -.align 2, 0 - -.global gUnknown_815676C -gUnknown_815676C: @ 815676C -.string " Can I get everyone{APOSTROPHE}s\n" -.string "attention here?\0" -.align 2, 0 - -.global gUnknown_8156794 -gUnknown_8156794: @ 8156794 -.string " That {ARG_NICKNAME_3}...\n" -.string "I wonder what he{APOSTROPHE}s planning to do with\n" -.string "all these rescue teams?\0" -.align 2, 0 - -.global gUnknown_81567E4 -gUnknown_81567E4: @ 81567E4 -.string " I{APOSTROPHE}ve seen some pretty\n" -.string "famous leaders from faraway places.\0" -.align 2, 0 - -.global gUnknown_8156824 -gUnknown_8156824: @ 8156824 -.string " Looks like they sent out\n" -.string "to a lot of rescue teams for help.\0" -.align 2, 0 - -.global gUnknown_8156864 -gUnknown_8156864: @ 8156864 -.string " Wow!\n" -.string "Look at all the Pokémon!\0" -.align 2, 0 - -.global gUnknown_8156884 -gUnknown_8156884: @ 8156884 -.byte 0xf6, 0x00, 0x5e, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x56, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x04, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x57, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0x91, 0x14, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x4d, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8156C44 -gUnknown_8156C44: @ 8156C44 -.byte 0xf6, 0x00, 0x9d, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x58, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x1e, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8156EB4 -gUnknown_8156EB4: @ 8156EB4 -.byte 0xf6, 0x00, 0xc7, 0x1d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x91, 0x08, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x91, 0x08, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, northwest -.byte 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, southwest -.byte 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, west -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x69, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x6a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x91, 0x08, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x91, 0x08, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81570C4 -gUnknown_81570C4: @ 81570C4 -.byte 0xf6, 0x00, 0xee, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, northeast -.byte 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, northwest -.byte 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x4c, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x4c, 0x00, 0x5a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x69, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x09, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x6a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x5b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81575E4 -gUnknown_81575E4: @ 81575E4 -.byte 0xf6, 0x00, 0x44, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe7, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x4c, 0x00, 0x5c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x6a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x09, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8157A64 -gUnknown_8157A64: @ 8157A64 -.byte 0xf6, 0x00, 0x8f, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xe7, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x09, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x4c, 0x00, 0x5d, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8157EE4 -gUnknown_8157EE4: @ 8157EE4 -.byte 0xf6, 0x00, 0xda, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, northwest -.byte 0xe7, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x02, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x06, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x09, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8158324 -gUnknown_8158324: @ 8158324 -.byte 0xf6, 0x00, 0x21, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0x54, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8158684 -gUnknown_8158684: @ 8158684 -.byte 0xf6, 0x00, 0x5a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, northeast -.byte 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, southeast -.byte 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x06, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8158A44 -gUnknown_8158A44: @ 8158A44 -.byte 0xf6, 0x00, 0x99, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0x54, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8158DA4 -gUnknown_8158DA4: @ 8158DA4 -.byte 0xf6, 0x00, 0xd2, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0x54, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8159104 -gUnknown_8159104: @ 8159104 -.byte 0xf6, 0x00, 0x0b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0x54, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8159464 -gUnknown_8159464: @ 8159464 -.byte 0xf6, 0x00, 0x44, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0x54, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8159804 -gUnknown_8159804: @ 8159804 -.byte 0xf6, 0x00, 0x81, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0x54, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8159B04 -gUnknown_8159B04: @ 8159B04 -.byte 0xf6, 0x00, 0xb4, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0x54, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00, 0x78, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8159E94 -gUnknown_8159E94: @ 8159E94 -.byte 0xf6, 0x00, 0xf0, 0x20, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x69, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x6a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x06, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00, 0x78, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_815A254 -gUnknown_815A254: @ 815A254 -.byte 0xf6, 0x00, 0x2f, 0x21, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815A294 -gUnknown_815A294: @ 815A294 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815A254 - -.global gUnknown_815A2A0 -gUnknown_815A2A0: @ 815A2A0 -.byte 0xf6, 0x00, 0x38, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815A300 -gUnknown_815A300: @ 815A300 -.byte 0xf6, 0x00, 0x41, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815A360 -gUnknown_815A360: @ 815A360 -.byte 0xf6, 0x00, 0x4a, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815A3C0 -gUnknown_815A3C0: @ 815A3C0 -.byte 0xf6, 0x00, 0x53, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815A420 -gUnknown_815A420: @ 815A420 -.byte 0xf6, 0x00, 0x5c, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815A480 -gUnknown_815A480: @ 815A480 -.byte 0xf6, 0x00, 0x65, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815A4E0 -gUnknown_815A4E0: @ 815A4E0 -.byte 0xf6, 0x00, 0x6e, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x51, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815A520 -gUnknown_815A520: @ 815A520 -.byte 0xf6, 0x00, 0x75, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815A5C4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815A590 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815A590 -gUnknown_815A590: @ 815A590 -.string " Don{APOSTROPHE}t you worry now.\n" -.string "They{APOSTROPHE}ll get the job done.\0" -.align 2, 0 - -.global gUnknown_815A5C4 -gUnknown_815A5C4: @ 815A5C4 -.string " You bet I{APOSTROPHE}m worried about\n" -.string "Alakazam{APOSTROPHE}s team...{WAIT_PRESS}\n" -.string "But Blastoise and company are tough.\0" -.align 2, 0 - -.global gUnknown_815A620 -gUnknown_815A620: @ 815A620 -.byte 0xf6, 0x00, 0x7f, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x51, 0x00, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815A660 -gUnknown_815A660: @ 815A660 -.byte 0xf6, 0x00, 0x86, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815A6C0 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815A6C0 -gUnknown_815A6C0: @ 815A6C0 -.string " There have been so many\n" -.string "earthquakes...{WAIT_PRESS}\n" -.string "I can{APOSTROPHE}t get a decent night{APOSTROPHE}s sleep!\0" -.align 2, 0 - -.global gUnknown_815A714 -gUnknown_815A714: @ 815A714 -.byte 0xf6, 0x00, 0x8f, 0x21, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x51, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815A754 -gUnknown_815A754: @ 815A754 -.byte 0xf6, 0x00, 0x96, 0x21, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815A7B4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815A7B4 -gUnknown_815A7B4: @ 815A7B4 -.string " We agreed to let Blastoise{APOSTROPHE}s\n" -.string "crew handle this situation.\n" -.string "Let{APOSTROPHE}s give them some time.\0" -.align 2, 0 - -.global gUnknown_815A810 -gUnknown_815A810: @ 815A810 -.byte 0xf6, 0x00, 0x9f, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815A8CC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815A880 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815A880 -gUnknown_815A880: @ 815A880 -.string " Are they signs that\n" -.string "something a lot worse is coming?{WAIT_PRESS}\n" -.string "I shudder to think!\0" -.align 2, 0 - -.global gUnknown_815A8CC -gUnknown_815A8CC: @ 815A8CC -.string " You know how we{APOSTROPHE}ve had\n" -.string "so many earthquakes lately?\0" -.align 2, 0 - -.global gUnknown_815A904 -gUnknown_815A904: @ 815A904 -.byte 0xf6, 0x00, 0xa9, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815A9A4 -gUnknown_815A9A4: @ 815A9A4 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815A904 - -.global gUnknown_815A9B0 -gUnknown_815A9B0: @ 815A9B0 -.byte 0xf6, 0x00, 0xb8, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01, 0x71, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815AAE0 -gUnknown_815AAE0: @ 815AAE0 -.byte 0xf6, 0x00, 0xce, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x08, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x09, 0x00, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815DBA8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815DB94 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815DB88 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815DB6C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815DB54 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815DB28 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x6b, 0x00, 0x00, 0x01, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815DB14 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815DAF0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815DAD0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815DA88 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815DA74 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x05, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815DA3C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815DA08 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x03, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D9D0 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x91, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D97C -closeTextBox -.byte 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x44, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D96C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D92C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x05, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D920 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D8D0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D920 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D874 -closeTextBox -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D83C -closeTextBox -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x13, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D814 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D7E8 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D7C8 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D794 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D75C -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D73C -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D6FC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D6E8 -closeTextBox -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D6A0 -closeTextBox -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D678 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x2e, 0x0e, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D668 -closeTextBox -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x13, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D61C -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D5E8 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D5A4 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D59C -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D578 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D564 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D544 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D578 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D564 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D520 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D578 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D564 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D520 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D4FC -.byte 0xd9, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D4F0 -.byte 0xd9, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D4E0 -.byte 0xf4, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D4A4 -closeTextBox -.byte 0xe7, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D47C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D468 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D448 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D43C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x04, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D424 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D3FC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D3FC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D3FC -closeTextBox -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x14 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D3F0 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D3D8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x04, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D3CC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x14 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D3B4 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D398 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D354 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D2F0 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D2A4 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D26C -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D234 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D1F8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D1B8 -closeTextBox -.byte 0xe4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D190 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D144 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D114 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D0E0 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D0A4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D114 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D190 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D0A4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D114 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D064 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D024 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CFDC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CF98 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815D064 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CF98 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x2e, 0x0e, 0x04, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CF48 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0x2e, 0x13, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CF14 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CEFC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x93, 0x04, 0x01, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x04, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CEF0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CEB0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x13, 0x04, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CEA0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CE60 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CE50 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CE2C -closeTextBox -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x04, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CE00 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x04, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CDBC -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x14 -.byte 0x2e, 0x15, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CD90 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x2e, 0x15, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CD80 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x14 -.byte 0x93, 0x04, 0x01, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CD60 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CD58 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CD30 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x04, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CD24 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0x91, 0x04, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CCF0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0x91, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CCBC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CCA8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x04, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CC54 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CC3C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CC0C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CBD0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CB88 -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x14 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CB74 -closeTextBox -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CB48 -.byte 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CAF8 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x10 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x0a, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CAE4 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CA98 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CA7C -closeTextBox -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x14 -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CA50 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CA14 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x14 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815CA00 -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815CA00 -gUnknown_815CA00: @ 815CA00 -.string " Wrooooooaaaaar!\0" -.align 2, 0 - -.global gUnknown_815CA14 -gUnknown_815CA14: @ 815CA14 -.string " Let{APOSTROPHE}s show them what we\n" -.string "rescue teams are really about!\0" -.align 2, 0 - -.global gUnknown_815CA50 -gUnknown_815CA50: @ 815CA50 -.string " Everyone!{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s time to get to work!\0" -.align 2, 0 - -.global gUnknown_815CA7C -gUnknown_815CA7C: @ 815CA7C -.string " My thanks from all of us.\0" -.align 2, 0 - -.global gUnknown_815CA98 -gUnknown_815CA98: @ 815CA98 -.string " You stopped us from\n" -.string "throwing away the most important thing\n" -.string "we have--pride.\0" -.align 2, 0 - -.global gUnknown_815CAE4 -gUnknown_815CAE4: @ 815CAE4 -.string " Thank you{COMMA} {ARG_NICKNAME_1}.\0" -.align 2, 0 - -.global gUnknown_815CAF8 -gUnknown_815CAF8: @ 815CAF8 -.string " Don{APOSTROPHE}t say I didn{APOSTROPHE}t warn you\n" -.string "when you get into a world of pain!\n" -.string "Ugegegegeh!\0" -.align 2, 0 - -.global gUnknown_815CB48 -gUnknown_815CB48: @ 815CB48 -.string " Ugegegegegegegegeh!{WAIT_PRESS}\n" -.string "Are you dreaming?!\0" -.align 2, 0 - -.global gUnknown_815CB74 -gUnknown_815CB74: @ 815CB74 -.string " Wrooooooooaaaar!\0" -.align 2, 0 - -.global gUnknown_815CB88 -gUnknown_815CB88: @ 815CB88 -.string " We{APOSTROPHE}ll conquer the dungeon by\n" -.string "having all the rescue teams cooperate!\0" -.align 2, 0 - -.global gUnknown_815CBD0 -gUnknown_815CBD0: @ 815CBD0 -.string " If we all pull together{COMMA} we{APOSTROPHE}ll be sure\n" -.string "to find a way!\0" -.align 2, 0 - -.global gUnknown_815CC0C -gUnknown_815CC0C: @ 815CC0C -.string " There{APOSTROPHE}ve got to be ways we can\n" -.string "get through!\0" -.align 2, 0 - -.global gUnknown_815CC3C -gUnknown_815CC3C: @ 815CC3C -.string " Aye{COMMA} that{APOSTROPHE}s right!\0" -.align 2, 0 - -.global gUnknown_815CC54 -gUnknown_815CC54: @ 815CC54 -.string " Ugegegeh!\n" -.string "You lot{COMMA} that wasn{APOSTROPHE}t the tune you\n" -.string "were whistling just a little...\0" -.align 2, 0 - -.global gUnknown_815CCA8 -gUnknown_815CCA8: @ 815CCA8 -.string " {ARG_NICKNAME_6}!\n" -.string "And {ARG_NICKNAME_7} too!\0" -.align 2, 0 - -.global gUnknown_815CCBC -gUnknown_815CCBC: @ 815CCBC -.string " If we give up{COMMA} that{APOSTROPHE}s how\n" -.string "it ends. Not for me.\0" -.align 2, 0 - -.global gUnknown_815CCF0 -gUnknown_815CCF0: @ 815CCF0 -.string " Yes{COMMA} no more wallowing in\n" -.string "woe-is-me self-pity.\0" -.align 2, 0 - -.global gUnknown_815CD24 -gUnknown_815CD24: @ 815CD24 -.string " Ugegeh!\0" -.align 2, 0 - -.global gUnknown_815CD30 -gUnknown_815CD30: @ 815CD30 -.string " ...This is no time to be\n" -.string "lying around!\0" -.align 2, 0 - -.global gUnknown_815CD58 -gUnknown_815CD58: @ 815CD58 -.string " {ARG_NICKNAME_5}!\0" -.align 2, 0 - -.global gUnknown_815CD60 -gUnknown_815CD60: @ 815CD60 -.string " ...We{APOSTROPHE}ve only failed once.\0" -.align 2, 0 - -.global gUnknown_815CD80 -gUnknown_815CD80: @ 815CD80 -.string " Is that so...?\0" -.align 2, 0 - -.global gUnknown_815CD90 -gUnknown_815CD90: @ 815CD90 -.string " Why go if you{APOSTROPHE}re facing\n" -.string "certain defeat?!\0" -.align 2, 0 - -.global gUnknown_815CDBC -gUnknown_815CDBC: @ 815CDBC -.string " Why would you listen to\n" -.string "that clown and{COMMA} worse{COMMA} be persuaded?\0" -.align 2, 0 - -.global gUnknown_815CE00 -gUnknown_815CE00: @ 815CE00 -.string " Ugegegegeh!\n" -.string "Have you lost your senses?!\0" -.align 2, 0 - -.global gUnknown_815CE2C -gUnknown_815CE2C: @ 815CE2C -.string " We have it too!\n" -.string "Pride as rescuers!\0" -.align 2, 0 - -.global gUnknown_815CE50 -gUnknown_815CE50: @ 815CE50 -.string " ...Pride...\0" -.align 2, 0 - -.global gUnknown_815CE60 -gUnknown_815CE60: @ 815CE60 -.string " We all forgot the most important\n" -.string "thing. We are rescue teams.\0" -.align 2, 0 - -.global gUnknown_815CEA0 -gUnknown_815CEA0: @ 815CEA0 -.string " ...Ugegegeh?\0" -.align 2, 0 - -.global gUnknown_815CEB0 -gUnknown_815CEB0: @ 815CEB0 -.string " ...That{APOSTROPHE}s right.\n" -.string "I wasn{APOSTROPHE}t thinking straight...out of fear.\0" -.align 2, 0 - -.global gUnknown_815CEF0 -gUnknown_815CEF0: @ 815CEF0 -.string " ...Ugeh?\0" -.align 2, 0 - -.global gUnknown_815CEFC -gUnknown_815CEFC: @ 815CEFC -.string " ...No.\n" -.string "{ARG_NICKNAME_1} is right.\0" -.align 2, 0 - -.global gUnknown_815CF14 -gUnknown_815CF14: @ 815CF14 -.string " Why don{APOSTROPHE}t you do like\n" -.string "everyone else and wise up?\0" -.align 2, 0 - -.global gUnknown_815CF48 -gUnknown_815CF48: @ 815CF48 -.string " ............{WAIT_PRESS}Keh.{WAIT_PRESS} Kekekeh!{WAIT_PRESS}\n" -.string "You really aren{APOSTROPHE}t very bright{COMMA} are you?\0" -.align 2, 0 - -.global gUnknown_815CF98 -gUnknown_815CF98: @ 815CF98 -.string " Never giving up...\n" -.string "That{APOSTROPHE}s where {COLOR_1 CYAN}Team {ARG_TEAM_NAME}{END_COLOR_TEXT_1} stakes\n" -.string "its pride!\0" -.align 2, 0 - -.global gUnknown_815CFDC -gUnknown_815CFDC: @ 815CFDC -.string " That{APOSTROPHE}s why I want to rescue\n" -.string "{ARG_NICKNAME_8}{APOSTROPHE}s team{COMMA} even if it{APOSTROPHE}s risky.\0" -.align 2, 0 - -.global gUnknown_815D024 -gUnknown_815D024: @ 815D024 -.string " Never giving up...\n" -.string "That{APOSTROPHE}s what {COLOR_1 CYAN}Team {ARG_TEAM_NAME}{END_COLOR_TEXT_1} takes\n" -.string "pride in!\0" -.align 2, 0 - -.global gUnknown_815D064 -gUnknown_815D064: @ 815D064 -.string " That{APOSTROPHE}s why I want to\n" -.string "rescue {ARG_NICKNAME_8}{APOSTROPHE}s team more than\n" -.string "anything.\0" -.align 2, 0 - -.global gUnknown_815D0A4 -gUnknown_815D0A4: @ 815D0A4 -.string " To help Pokémon suffering\n" -.string "from the natural disasters...\0" -.align 2, 0 - -.global gUnknown_815D0E0 -gUnknown_815D0E0: @ 815D0E0 -.string " But...{WAIT_PRESS}\n" -.string "Even so{COMMA} we{APOSTROPHE}re still a rescue team.\0" -.align 2, 0 - -.global gUnknown_815D114 -gUnknown_815D114: @ 815D114 -.string " That{APOSTROPHE}s why we started up\n" -.string "our rescue team!\0" -.align 2, 0 - -.global gUnknown_815D144 -gUnknown_815D144: @ 815D144 -.string " I wanted to help Pokémon\n" -.string "that were suffering from the natural\n" -.string "disasters...\0" -.align 2, 0 - -.global gUnknown_815D190 -gUnknown_815D190: @ 815D190 -.string " But...{WAIT_PRESS}\n" -.string "we{APOSTROPHE}re still a rescue team.\0" -.align 2, 0 - -.global gUnknown_815D1B8 -gUnknown_815D1B8: @ 815D1B8 -.string " It{APOSTROPHE}s true--the rescue might\n" -.string "be too much for us to handle.\0" -.align 2, 0 - -.global gUnknown_815D1F8 -gUnknown_815D1F8: @ 815D1F8 -.string " Yes{COMMA} the rescue might be too\n" -.string "much of a challenge for us.\0" -.align 2, 0 - -.global gUnknown_815D234 -gUnknown_815D234: @ 815D234 -.string " Sure{COMMA} the rescue might be\n" -.string "too much for us to handle.\0" -.align 2, 0 - -.global gUnknown_815D26C -gUnknown_815D26C: @ 815D26C -.string " Can they handle it?{WAIT_PRESS}\n" -.string "They don{APOSTROPHE}t look very tough.\0" -.align 2, 0 - -.global gUnknown_815D2A4 -gUnknown_815D2A4: @ 815D2A4 -.string " I heard about that!{WAIT_PRESS}\n" -.string "Weren{APOSTROPHE}t they living like fugitives until\n" -.string "recently?\0" -.align 2, 0 - -.global gUnknown_815D2F0 -gUnknown_815D2F0: @ 815D2F0 -.string " {COLOR_1 CYAN}Team {ARG_TEAM_NAME}{END_COLOR_TEXT_1}...?{WAIT_PRESS}\n" -.string "You mean the lot that were suspected of\n" -.string "involvement in the Ninetales legend?\0" -.align 2, 0 - -.global gUnknown_815D354 -gUnknown_815D354: @ 815D354 -.string " It{APOSTROPHE}s {COLOR_1 CYAN}Team {ARG_TEAM_NAME}{END_COLOR_TEXT_1}.{WAIT_PRESS}\n" -.string "They{APOSTROPHE}re well known around these parts.\0" -.align 2, 0 - -.global gUnknown_815D398 -gUnknown_815D398: @ 815D398 -.string " Can{APOSTROPHE}t say I know them...\0" -.align 2, 0 - -.global gUnknown_815D3B4 -gUnknown_815D3B4: @ 815D3B4 -.string " Hey{COMMA} who are they?\0" -.align 2, 0 - -.global gUnknown_815D3CC -gUnknown_815D3CC: @ 815D3CC -.string " Ugegege?!\0" -.align 2, 0 - -.global gUnknown_815D3D8 -gUnknown_815D3D8: @ 815D3D8 -.string " What did they say?!\0" -.align 2, 0 - -.global gUnknown_815D3F0 -gUnknown_815D3F0: @ 815D3F0 -.string " Wha-what?!\0" -.align 2, 0 - -.global gUnknown_815D3FC -gUnknown_815D3FC: @ 815D3FC -.string " We{APOSTROPHE}re going!\n" -.string "To rescue {ARG_NICKNAME_8}{APOSTROPHE}s team!\0" -.align 2, 0 - -.global gUnknown_815D424 -gUnknown_815D424: @ 815D424 -.string " Everyone{COMMA} listen!\0" -.align 2, 0 - -.global gUnknown_815D43C -gUnknown_815D43C: @ 815D43C -.string " OK{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_815D448 -gUnknown_815D448: @ 815D448 -.string " ...{WAIT_PRESS}Yes...{WAIT_PRESS}\n" -.string "I think so too.\0" -.align 2, 0 - -.global gUnknown_815D468 -gUnknown_815D468: @ 815D468 -.string " All right{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_815D47C -gUnknown_815D47C: @ 815D47C -.string " ...{WAIT_PRESS}Yes...{WAIT_PRESS}\n" -.string "Yeah{COMMA} you{APOSTROPHE}re right.\0" -.align 2, 0 - -.global gUnknown_815D4A4 -gUnknown_815D4A4: @ 815D4A4 -.string " ...{WAIT_PRESS}Really...?{WAIT_PRESS}\n" -.string "You honestly think we shouldn{APOSTROPHE}t go?\0" -.align 2, 0 - -.global gUnknown_815D4E0 -gUnknown_815D4E0: @ 815D4E0 -.string "Let{APOSTROPHE}s not.\0" -.align 2, 0 - -.global gUnknown_815D4F0 -gUnknown_815D4F0: @ 815D4F0 -.string "Let{APOSTROPHE}s go!\0" -.align 2, 0 - -.global gUnknown_815D4FC -gUnknown_815D4FC: @ 815D4FC -.string " Should we still\n" -.string "try to rescue {ARG_NICKNAME_8}?\0" -.align 2, 0 - -.global gUnknown_815D520 -gUnknown_815D520: @ 815D520 -.string " Even if it{APOSTROPHE}s the impossible...\0" -.align 2, 0 - -.global gUnknown_815D544 -gUnknown_815D544: @ 815D544 -.string " Even if it{APOSTROPHE}s impossible...\0" -.align 2, 0 - -.global gUnknown_815D564 -gUnknown_815D564: @ 815D564 -.string " What should we do?\0" -.align 2, 0 - -.global gUnknown_815D578 -gUnknown_815D578: @ 815D578 -.string " {ARG_NICKNAME_0}...\n" -.string "I don{APOSTROPHE}t know anymore...\0" -.align 2, 0 - -.global gUnknown_815D59C -gUnknown_815D59C: @ 815D59C -.string " Urf...\0" -.align 2, 0 - -.global gUnknown_815D5A4 -gUnknown_815D5A4: @ 815D5A4 -.string " ............Huh?{WAIT_PRESS}\n" -.string "Did I say something profound?\n" -.string "Kekekekekekekeh!\0" -.align 2, 0 - -.global gUnknown_815D5E8 -gUnknown_815D5E8: @ 815D5E8 -.string " Sometimes{COMMA} it{APOSTROPHE}s better to\n" -.string "wise up and give up!\0" -.align 2, 0 - -.global gUnknown_815D61C -gUnknown_815D61C: @ 815D61C -.string " Kekeh! Get over it!\n" -.string "Don{APOSTROPHE}t expect to be rewarded just because\n" -.string "you tried!\0" -.align 2, 0 - -.global gUnknown_815D668 -gUnknown_815D668: @ 815D668 -.string " E-even {ARG_NICKNAME_3}...\0" -.align 2, 0 - -.global gUnknown_815D678 -gUnknown_815D678: @ 815D678 -.string " I...{WAIT_PRESS}\n" -.string "My leafy fans would burn up...\0" -.align 2, 0 - -.global gUnknown_815D6A0 -gUnknown_815D6A0: @ 815D6A0 -.string " You see?\n" -.string "Even they finally seem to understand\n" -.string "their situation. Kekeh!\0" -.align 2, 0 - -.global gUnknown_815D6E8 -gUnknown_815D6E8: @ 815D6E8 -.string " ...E-everyone...\0" -.align 2, 0 - -.global gUnknown_815D6FC -gUnknown_815D6FC: @ 815D6FC -.string " It{APOSTROPHE}d be like going and knowing full\n" -.string "well we{APOSTROPHE}d get wiped...\0" -.align 2, 0 - -.global gUnknown_815D73C -gUnknown_815D73C: @ 815D73C -.string " I can{APOSTROPHE}t take earthquakes.\0" -.align 2, 0 - -.global gUnknown_815D75C -gUnknown_815D75C: @ 815D75C -.string " There{APOSTROPHE}s no way. I can{APOSTROPHE}t go.{WAIT_PRESS}\n" -.string "I burn too easily.\0" -.align 2, 0 - -.global gUnknown_815D794 -gUnknown_815D794: @ 815D794 -.string " Who{APOSTROPHE}d want to go into a dungeon that\n" -.string "dangerous?\0" -.align 2, 0 - -.global gUnknown_815D7C8 -gUnknown_815D7C8: @ 815D7C8 -.string " It{APOSTROPHE}s gotta be awful tough.\0" -.align 2, 0 - -.global gUnknown_815D7E8 -gUnknown_815D7E8: @ 815D7E8 -.string " It{APOSTROPHE}s too much...\n" -.string "Even {ARG_NICKNAME_5} went down...\0" -.align 2, 0 - -.global gUnknown_815D814 -gUnknown_815D814: @ 815D814 -.string " Even they look smart\n" -.string "compared to you.\0" -.align 2, 0 - -.global gUnknown_815D83C -gUnknown_815D83C: @ 815D83C -.string " Kekeh!\n" -.string "You really find thinking hard{COMMA} don{APOSTROPHE}t you?\0" -.align 2, 0 - -.global gUnknown_815D874 -gUnknown_815D874: @ 815D874 -.string " What are you saying?!{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s only expected that we try. This is for\n" -.string "saving {ARG_NICKNAME_8}{APOSTROPHE}s team.\0" -.align 2, 0 - -.global gUnknown_815D8D0 -gUnknown_815D8D0: @ 815D8D0 -.string " Why don{APOSTROPHE}t you shut up?!{WAIT_PRESS}\n" -.string "This is about saving {ARG_NICKNAME_8}{APOSTROPHE}s team.\n" -.string "We have to try!\0" -.align 2, 0 - -.global gUnknown_815D920 -gUnknown_815D920: @ 815D920 -.string " Ge-{ARG_NICKNAME_4}!\0" -.align 2, 0 - -.global gUnknown_815D92C -gUnknown_815D92C: @ 815D92C -.string " What fools.{WAIT_PRESS}\n" -.string "That{APOSTROPHE}s what you get for trying the\n" -.string "impossible.\0" -.align 2, 0 - -.global gUnknown_815D96C -gUnknown_815D96C: @ 815D96C -.string " Kekekekekeh!\0" -.align 2, 0 - -.global gUnknown_815D97C -gUnknown_815D97C: @ 815D97C -.string " ...It appears the dungeon\n" -.string "underground...{WAIT_PRESS}\n" -.string "is far worse than we{APOSTROPHE}d imagined...\0" -.align 2, 0 - -.global gUnknown_815D9D0 -gUnknown_815D9D0: @ 815D9D0 -.string " I don{APOSTROPHE}t want to ever go\n" -.string "back to a place that bad...\0" -.align 2, 0 - -.global gUnknown_815DA08 -gUnknown_815DA08: @ 815DA08 -.string " ...We couldn{APOSTROPHE}t get far\n" -.string "enough to even see {ARG_NICKNAME_9}...\0" -.align 2, 0 - -.global gUnknown_815DA3C -gUnknown_815DA3C: @ 815DA3C -.string " Groan... That place...{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s rough{COMMA} seriously...\0" -.align 2, 0 - -.global gUnknown_815DA74 -gUnknown_815DA74: @ 815DA74 -.string " You{APOSTROPHE}re kidding!\0" -.align 2, 0 - -.global gUnknown_815DA88 -gUnknown_815DA88: @ 815DA88 -.string " ............{WAIT_PRESS}\n" -.string "They were wiped out...{WAIT_PRESS}\n" -.string "In the underground dungeon...\0" -.align 2, 0 - -.global gUnknown_815DAD0 -gUnknown_815DAD0: @ 815DAD0 -.string " {ARG_NICKNAME_3}!{WAIT_PRESS}\n" -.string "What happened here?!\0" -.align 2, 0 - -.global gUnknown_815DAF0 -gUnknown_815DAF0: @ 815DAF0 -.string " {ARG_NICKNAME_3}!{WAIT_PRESS}\n" -.string "What{APOSTROPHE}s going on here?!\0" -.align 2, 0 - -.global gUnknown_815DB14 -gUnknown_815DB14: @ 815DB14 -.string " Look!\n" -.string "It{APOSTROPHE}s {ARG_NICKNAME_5}!\0" -.align 2, 0 - -.global gUnknown_815DB28 -gUnknown_815DB28: @ 815DB28 -.string " ...You should just go see\n" -.string "for yourself...\0" -.align 2, 0 - -.global gUnknown_815DB54 -gUnknown_815DB54: @ 815DB54 -.string " Hey{COMMA} {ARG_NICKNAME_1}.\n" -.string "W-well...\0" -.align 2, 0 - -.global gUnknown_815DB6C -gUnknown_815DB6C: @ 815DB6C -.string " What{APOSTROPHE}s going on here?\0" -.align 2, 0 - -.global gUnknown_815DB88 -gUnknown_815DB88: @ 815DB88 -.string " Oh! {ARG_NICKNAME_2}!\0" -.align 2, 0 - -.global gUnknown_815DB94 -gUnknown_815DB94: @ 815DB94 -.string " What{APOSTROPHE}s up here?\0" -.align 2, 0 - -.global gUnknown_815DBA8 -gUnknown_815DBA8: @ 815DBA8 -.string " Hey{COMMA} {ARG_NICKNAME_2}!\0" -.align 2, 0 - -.global gUnknown_815DBB8 -gUnknown_815DBB8: @ 815DBB8 -.byte 0xf6, 0x00, 0xe9, 0x23 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x6b, 0x00, 0x00, 0x01 -.byte 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xd0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xcf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x02, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CW, north -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CCW, southeast -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CW, southwest -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x08, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x08, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x02, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x02, 0x00 -.byte 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_815E298 -gUnknown_815E298: @ 815E298 -.byte 0xf6, 0x00, 0x5a, 0x24 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815E488 -gUnknown_815E488: @ 815E488 -.byte 0xf6, 0x00, 0x7c, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01 -.byte 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01 -.byte 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x93, 0x04, 0x0a, 0x00 -.byte 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x04, 0x02, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe8, 0x00, 0x26, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southeast -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x03, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815EAA8 -gUnknown_815EAA8: @ 815EAA8 -.byte 0xf6, 0x00, 0xe1, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x1a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_815EBB8 -gUnknown_815EBB8: @ 815EBB8 -.byte 0xf6, 0x00, 0xf5, 0x24 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xe3, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_815EC78 -gUnknown_815EC78: @ 815EC78 -.byte 0xf6, 0x00, 0x04, 0x25 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_815ED38 -gUnknown_815ED38: @ 815ED38 -.byte 0xf6, 0x00, 0x13, 0x25 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x01, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, east -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x01, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x93, 0x04, 0x0a, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x93, 0x04, 0x0a, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00 -.byte 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xc0, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00 -.byte 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_815F118 -gUnknown_815F118: @ 815F118 -.byte 0xf6, 0x00, 0x54, 0x25 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0x54, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0x54, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0x54, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x93, 0x04, 0x0a, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815F428 -gUnknown_815F428: @ 815F428 -.byte 0xf6, 0x00, 0x88, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, south -.byte 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xdc, 0x00, 0x3c, 0x00 -.byte 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xc0, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00 -.byte 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xc0, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x3c, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x6b, 0x00, 0x4c, 0x00 -.byte 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x93, 0x04, 0x0a, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01 -.byte 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xc0, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00 -.byte 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815F928 -gUnknown_815F928: @ 815F928 -.byte 0xf6, 0x00, 0xdb, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x93, 0x04, 0x0a, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x93, 0x04, 0x0a, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00 -.byte 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xc0, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00 -.byte 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_815FC58 -gUnknown_815FC58: @ 815FC58 -.byte 0xf6, 0x00, 0x11, 0x26 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, south -.byte 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, southwest -.byte 0xc0, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x3c, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, southeast -.byte 0xc0, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x3c, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xdc, 0x00, 0x3c, 0x00 -.byte 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xc0, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xdc, 0x00, 0x3c, 0x00 -.byte 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00 -.byte 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xc0, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00 -.byte 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8160158 -gUnknown_8160158: @ 8160158 -.byte 0xf6, 0x00, 0x64, 0x26 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0f, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xdc, 0x00, 0x0f, 0x00 -.byte 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xdc, 0x00, 0x0f, 0x00 -.byte 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0x54, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x93, 0x04, 0x0a, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8160588 -gUnknown_8160588: @ 8160588 -.byte 0xf6, 0x00, 0xaa, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x93, 0x04, 0x0a, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x93, 0x04, 0x0a, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00 -.byte 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xc0, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00 -.byte 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8160898 -gUnknown_8160898: @ 8160898 -.byte 0xf6, 0x00, 0xde, 0x26 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x93, 0x04, 0x0a, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00 -.byte 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x6b, 0x00, 0x80, 0x00 -.byte 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x93, 0x04, 0x0a, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xc0, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00 -.byte 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8160C78 -gUnknown_8160C78: @ 8160C78 -.byte 0xf6, 0x00, 0x1f, 0x27 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xe3, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0xf0, 0xff, 0xff, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01 -.byte 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0x54, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0x54, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0x54, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x93, 0x04, 0x0a, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8161008 -gUnknown_8161008: @ 8161008 -.byte 0xf6, 0x00, 0x5b, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8161048 -gUnknown_8161048: @ 8161048 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161008 - -.global gUnknown_8161054 -gUnknown_8161054: @ 8161054 -.byte 0xf6, 0x00, 0x64, 0x27, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81611AC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161180 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161134 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8161134 -gUnknown_8161134: @ 8161134 -.string " I will keep bringing in fine\n" -.string "merchandise!{WAIT_PRESS} This{COMMA} I do for you!{WAIT_PRESS}\n" -.string "So...\0" -.align 2, 0 - -.global gUnknown_8161180 -gUnknown_8161180: @ 8161180 -.string " It has stoked a raging fire\n" -.string "in our hearts!\0" -.align 2, 0 - -.global gUnknown_81611AC -gUnknown_81611AC: @ 81611AC -.string " Oh{COMMA} my goodness{COMMA} yes!\n" -.string "{ARG_NICKNAME_2}{APOSTROPHE}s talk was such an\n" -.string "inspiration!\0" -.align 2, 0 - -.global gUnknown_81611F0 -gUnknown_81611F0: @ 81611F0 -.byte 0xf6, 0x00, 0x75, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x01, 0x1d, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81612A0 -gUnknown_81612A0: @ 81612A0 -.byte 0xf6, 0x00, 0x83, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161350 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8161350 -gUnknown_8161350: @ 8161350 -.string " Aren{APOSTROPHE}t you remarkable?{WAIT_PRESS}\n" -.string "Your money will be jealously guarded{COMMA}\n" -.string "so feel secure on your outings!\0" -.align 2, 0 - -.global gUnknown_81613B4 -gUnknown_81613B4: @ 81613B4 -.byte 0xf6, 0x00, 0x91, 0x27, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4c, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81614BC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161484 -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8161484 -gUnknown_8161484: @ 8161484 -.string " You can count on me for all\n" -.string "your move-linking needs!\0" -.align 2, 0 - -.global gUnknown_81614BC -gUnknown_81614BC: @ 81614BC -.string " {ARG_NICKNAME_2}{APOSTROPHE}s words struck\n" -.string "me deeply.\0" -.align 2, 0 - -.global gUnknown_81614E0 -gUnknown_81614E0: @ 81614E0 -.byte 0xf6, 0x00, 0xa1, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4c, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161650 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816161C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81615B0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81615B0 -gUnknown_81615B0: @ 81615B0 -.string " I{APOSTROPHE}ll keep your valuables\n" -.string "under my watchful eye! You can go out and\n" -.string "fight without worrying about them!\0" -.align 2, 0 - -.global gUnknown_816161C -gUnknown_816161C: @ 816161C -.string " I always thought you weren{APOSTROPHE}t\n" -.string "the ordinary sort.\0" -.align 2, 0 - -.global gUnknown_8161650 -gUnknown_8161650: @ 8161650 -.string " Dear{COMMA} I wasn{APOSTROPHE}t wrong about\n" -.string "you at all.\0" -.align 2, 0 - -.global gUnknown_816167C -gUnknown_816167C: @ 816167C -.byte 0xf6, 0x00, 0xb1, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4c, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161764 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816173C -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3c, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816173C -gUnknown_816173C: @ 816173C -.string " Because {ARG_NICKNAME_0}{APOSTROPHE}s team\n" -.string "are my friends!\0" -.align 2, 0 - -.global gUnknown_8161764 -gUnknown_8161764: @ 8161764 -.string " I{APOSTROPHE}ll do my best to get more\n" -.string "Friend Areas!\0" -.align 2, 0 - -.global gUnknown_8161794 -gUnknown_8161794: @ 8161794 -.byte 0xf6, 0x00, 0xc0, 0x27, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81617C4 -gUnknown_81617C4: @ 81617C4 -.byte 0xf6, 0x00, 0xc6, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x4d, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816191C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81618E0 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81618A4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81618A4 -gUnknown_81618A4: @ 81618A4 -.string " I{APOSTROPHE}m strong against fire...{WAIT_PRESS}\n" -.string "but that place is special.\0" -.align 2, 0 - -.global gUnknown_81618E0 -gUnknown_81618E0: @ 81618E0 -.string " It was teeming with tough\n" -.string "Pokémon{COMMA} that{APOSTROPHE}s for sure.\0" -.align 2, 0 - -.global gUnknown_816191C -gUnknown_816191C: @ 816191C -.string " What{APOSTROPHE}s it like?\n" -.string "This {COLOR_1 YELLOW_4}Magma Cavern{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_8161948 -gUnknown_8161948: @ 8161948 -.byte 0xf6, 0x00, 0xd7, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8161978 -gUnknown_8161978: @ 8161978 -.byte 0xf6, 0x00, 0xdd, 0x27 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00 -.byte 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x02, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816191C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81618E0 -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81618A4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8161A58 -gUnknown_8161A58: @ 8161A58 -.byte 0xf6, 0x00, 0xee, 0x27 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8161A88 -gUnknown_8161A88: @ 8161A88 -.byte 0xf6, 0x00, 0xf4, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161C30 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161BEC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161BB8 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161B78 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8161B78 -gUnknown_8161B78: @ 8161B78 -.string " Now is the time for each\n" -.string "and every one of us to make a stand!\0" -.align 2, 0 - -.global gUnknown_8161BB8 -gUnknown_8161BB8: @ 8161BB8 -.string " But{COMMA} no!{WAIT_PRESS}\n" -.string "I mustn{APOSTROPHE}t make excuses for myself!\0" -.align 2, 0 - -.global gUnknown_8161BEC -gUnknown_8161BEC: @ 8161BEC -.string " Fire-type Pokémon...{WAIT_PRESS}\n" -.string "I think they would burn me up in no time...\0" -.align 2, 0 - -.global gUnknown_8161C30 -gUnknown_8161C30: @ 8161C30 -.string " The {COLOR_1 YELLOW_4}Magma Cavern{END_COLOR_TEXT_1}...\n" -.string "Above all{COMMA} there were many Fire-type\n" -.string "Pokémon.\0" -.align 2, 0 - -.global gUnknown_8161C7C -gUnknown_8161C7C: @ 8161C7C -.byte 0xf6, 0x00, 0x06, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8161CAC -gUnknown_8161CAC: @ 8161CAC -.byte 0xf6, 0x00, 0x0c, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x02, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161C30 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161BEC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161BB8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161B78 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8161D9C -gUnknown_8161D9C: @ 8161D9C -.byte 0xf6, 0x00, 0x1e, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8161DCC -gUnknown_8161DCC: @ 8161DCC -.byte 0xf6, 0x00, 0x24, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x02, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161F3C -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161EF8 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161EAC -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8161EAC -gUnknown_8161EAC: @ 8161EAC -.string " We can{APOSTROPHE}t do that!{WAIT_PRESS}\n" -.string "We are a rescue team too.\n" -.string "We can{APOSTROPHE}t stand by idly!\0" -.align 2, 0 - -.global gUnknown_8161EF8 -gUnknown_8161EF8: @ 8161EF8 -.string " The {COLOR_1 YELLOW_4}Magma Cavern{END_COLOR_TEXT_1} is\n" -.string "alive with flames. You{APOSTROPHE}ll be burned up!\0" -.align 2, 0 - -.global gUnknown_8161F3C -gUnknown_8161F3C: @ 8161F3C -.string " Oi{COMMA} you lot shouldn{APOSTROPHE}t go.\0" -.align 2, 0 - -.global gUnknown_8161F5C -gUnknown_8161F5C: @ 8161F5C -.byte 0xf6, 0x00, 0x35, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8161F8C -gUnknown_8161F8C: @ 8161F8C -.byte 0xf6, 0x00, 0x3b, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x02, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161F3C -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161EF8 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161EAC -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816206C -gUnknown_816206C: @ 816206C -.byte 0xf6, 0x00, 0x4c, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162100 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81620DC -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81620DC -gUnknown_81620DC: @ 81620DC -.string " {ARG_NICKNAME_0}{COMMA} you guys take\n" -.string "care{COMMA} too.\0" -.align 2, 0 - -.global gUnknown_8162100 -gUnknown_8162100: @ 8162100 -.string " Several rescue teams have\n" -.string "already left for the {COLOR_1 YELLOW_4}Magma Cavern{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_8162144 -gUnknown_8162144: @ 8162144 -.byte 0xf6, 0x00, 0x56, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0d, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8162184 -gUnknown_8162184: @ 8162184 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162144 - -.global gUnknown_8162190 -gUnknown_8162190: @ 8162190 -.byte 0xf6, 0x00, 0x5f, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162470 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162418 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81623CC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153AEC -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162384 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162360 -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8162360 -gUnknown_8162360: @ 8162360 -.string " All with the pride of a\n" -.string "merchant!\0" -.align 2, 0 - -.global gUnknown_8162384 -gUnknown_8162384: @ 8162384 -.string " I will do my best to obtain\n" -.string "even better Technical Machines and Orbs.\0" -.align 2, 0 - -.global gUnknown_81623CC -gUnknown_81623CC: @ 81623CC -.string " It isn{APOSTROPHE}t just you{COMMA} my brother.{WAIT_PRESS}\n" -.string "I am likewise inspired beyond words.\0" -.align 2, 0 - -.global gUnknown_8162418 -gUnknown_8162418: @ 8162418 -.string " Especially the part about\n" -.string "taking pride...{WAIT_PRESS} That made me...{WAIT_PRESS}\n" -.string "It left me choked up...\0" -.align 2, 0 - -.global gUnknown_8162470 -gUnknown_8162470: @ 8162470 -.string " {ARG_NICKNAME_1}{APOSTROPHE}s words\n" -.string "shook me up with inspiration!\0" -.align 2, 0 - -.global gUnknown_81624A0 -gUnknown_81624A0: @ 81624A0 -.byte 0xf6, 0x00, 0x7f, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81624E0 -gUnknown_81624E0: @ 81624E0 -.byte 0xf6, 0x00, 0x86, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, east -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8162580 -gUnknown_8162580: @ 8162580 -.byte 0xf6, 0x00, 0x93, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81611AC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161180 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161134 -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8162660 -gUnknown_8162660: @ 8162660 -.byte 0xf6, 0x00, 0xa4, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, west -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8162710 -gUnknown_8162710: @ 8162710 -.byte 0xf6, 0x00, 0xb2, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x01, 0x1d, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81627C0 -gUnknown_81627C0: @ 81627C0 -.byte 0xf6, 0x00, 0xc0, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8162800 -gUnknown_8162800: @ 8162800 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81627C0 - -.global gUnknown_816280C -gUnknown_816280C: @ 816280C -.byte 0xf6, 0x00, 0xc9, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x02, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81611AC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161180 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161134 -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81628EC -gUnknown_81628EC: @ 81628EC -.byte 0xf6, 0x00, 0xda, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816290C -gUnknown_816290C: @ 816290C -.byte 0xf6, 0x00, 0xdf, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa8, 0x00, 0x4c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x01, 0x1e, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81629BC -gUnknown_81629BC: @ 81629BC -.byte 0xf6, 0x00, 0xed, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161350 -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8162A6C -gUnknown_8162A6C: @ 8162A6C -.byte 0xf6, 0x00, 0xfb, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x02, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4c, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81614BC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161484 -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8162B3C -gUnknown_8162B3C: @ 8162B3C -.byte 0xf6, 0x00, 0x0b, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4c, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162C0C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816161C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81615B0 -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8162C0C -gUnknown_8162C0C: @ 8162C0C -.string " Dears{COMMA} I wasn{APOSTROPHE}t wrong about\n" -.string "you at all.\0" -.align 2, 0 - -.global gUnknown_8162C3C -gUnknown_8162C3C: @ 8162C3C -.byte 0xf6, 0x00, 0x1b, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4c, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161764 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816173C -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3c, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8162CFC -gUnknown_8162CFC: @ 8162CFC -.byte 0xf6, 0x00, 0x2a, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8162D2C -gUnknown_8162D2C: @ 8162D2C -.byte 0xf6, 0x00, 0x30, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x02, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x04, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x05, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x0d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8163034 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162FF8 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162FC8 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162F78 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162F38 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162F18 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162F0C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8162F0C -gUnknown_8162F0C: @ 8162F0C -.string " Hoorah!\0" -.align 2, 0 - -.global gUnknown_8162F18 -gUnknown_8162F18: @ 8162F18 -.string " Let{APOSTROPHE}s take it down! Groudon!\0" -.align 2, 0 - -.global gUnknown_8162F38 -gUnknown_8162F38: @ 8162F38 -.string " Darlings{COMMA} we will will\n" -.string "ourselves to win{COMMA} and we will win!\0" -.align 2, 0 - -.global gUnknown_8162F78 -gUnknown_8162F78: @ 8162F78 -.string " The will to win?{WAIT_PRESS}\n" -.string "That{APOSTROPHE}s it! This is about willpower!\n" -.string "I didn{APOSTROPHE}t realize!\0" -.align 2, 0 - -.global gUnknown_8162FC8 -gUnknown_8162FC8: @ 8162FC8 -.string " Maybe we{APOSTROPHE}re just lacking\n" -.string "the will to win.\0" -.align 2, 0 - -.global gUnknown_8162FF8 -gUnknown_8162FF8: @ 8162FF8 -.string " Why does this keep\n" -.string "happening?{WAIT_PRESS}\n" -.string "We can{APOSTROPHE}t be that weak!\0" -.align 2, 0 - -.global gUnknown_8163034 -gUnknown_8163034: @ 8163034 -.string " We got wiped again...{WAIT_PRESS}\n" -.string "Fifteen times now we have been to that\n" -.string "infernal {COLOR_1 YELLOW_4}Magma Cavern{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_8163090 -gUnknown_8163090: @ 8163090 -.byte 0xf6, 0x00, 0x51, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81630C0 -gUnknown_81630C0: @ 81630C0 -.byte 0xf6, 0x00, 0x57, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x04, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x05, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8163034 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162FF8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162FC8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162F78 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162F38 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162F18 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162F0C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81632A0 -gUnknown_81632A0: @ 81632A0 -.byte 0xf6, 0x00, 0x78, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81632D0 -gUnknown_81632D0: @ 81632D0 -.byte 0xf6, 0x00, 0x7e, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x04, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x05, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x00, 0x05, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8163034 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162FF8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162FC8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162F78 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162F38 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162F18 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162F0C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81634B0 -gUnknown_81634B0: @ 81634B0 -.byte 0xf6, 0x00, 0x9f, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81635B0 -gUnknown_81635B0: @ 81635B0 -.byte 0xf6, 0x00, 0xb2, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816369C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8163654 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8163630 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8163630 -gUnknown_8163630: @ 8163630 -.string " But I won{APOSTROPHE}t give up!\n" -.string "Not ever!\0" -.align 2, 0 - -.global gUnknown_8163654 -gUnknown_8163654: @ 8163654 -.string " I got nowhere.{WAIT_PRESS}\n" -.string "I got KO{APOSTROPHE}d and kicked out as soon as I\n" -.string "went in...\0" -.align 2, 0 - -.global gUnknown_816369C -gUnknown_816369C: @ 816369C -.string " I ventured into the {COLOR_1 YELLOW_4}Magma\n" -.string "Cavern{END_COLOR_TEXT_1}{COMMA} but...\0" -.align 2, 0 - -.global gUnknown_81636D0 -gUnknown_81636D0: @ 81636D0 -.byte 0xf6, 0x00, 0xbd, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816388C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8163834 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8163808 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81637BC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8163770 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8163770 -gUnknown_8163770: @ 8163770 -.string " Since he hasn{APOSTROPHE}t returned{COMMA}\n" -.string "does it mean he{APOSTROPHE}s still in the dungeon?\0" -.align 2, 0 - -.global gUnknown_81637BC -gUnknown_81637BC: @ 81637BC -.string " If he had fallen in\n" -.string "a dungeon{COMMA} he would{APOSTROPHE}ve been\n" -.string "expelled back here...\0" -.align 2, 0 - -.global gUnknown_8163808 -gUnknown_8163808: @ 8163808 -.string " However...{WAIT_PRESS}\n" -.string "Whatever became of Alakazam?\0" -.align 2, 0 - -.global gUnknown_8163834 -gUnknown_8163834: @ 8163834 -.string " But it helps that other\n" -.string "rescue teams give us information about\n" -.string "what{APOSTROPHE}s underground.\0" -.align 2, 0 - -.global gUnknown_816388C -gUnknown_816388C: @ 816388C -.string " It{APOSTROPHE}s tough for us to get\n" -.string "very deep in there...\0" -.align 2, 0 - -.global gUnknown_81638C0 -gUnknown_81638C0: @ 81638C0 -.byte 0xf6, 0x00, 0xca, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8163998 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8163964 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8163940 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8163940 -gUnknown_8163940: @ 8163940 -.string " I wonder exactly how deep\n" -.string "it goes?\0" -.align 2, 0 - -.global gUnknown_8163964 -gUnknown_8163964: @ 8163964 -.string " They all say the {COLOR_1 YELLOW_4}Magma\n" -.string "Cavern{END_COLOR_TEXT_1} goes very deep.\0" -.align 2, 0 - -.global gUnknown_8163998 -gUnknown_8163998: @ 8163998 -.string " I talked to other rescue\n" -.string "teams.\0" -.align 2, 0 - -.global gUnknown_81639BC -gUnknown_81639BC: @ 81639BC -.byte 0xf6, 0x00, 0xd5, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8163AA8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8163A60 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8163A3C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8163A3C -gUnknown_8163A3C: @ 8163A3C -.string " Please be careful of burns{COMMA}\n" -.string "{ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_8163A60 -gUnknown_8163A60: @ 8163A60 -.string " They say it{APOSTROPHE}s very taxing\n" -.string "because it{APOSTROPHE}s so easy to get burns there.\0" -.align 2, 0 - -.global gUnknown_8163AA8 -gUnknown_8163AA8: @ 8163AA8 -.string " I overheard some rescue\n" -.string "team Pokémon earlier.\0" -.align 2, 0 - -.global gUnknown_8163AD8 -gUnknown_8163AD8: @ 8163AD8 -.byte 0xf6, 0x00, 0xe0, 0x29 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0d, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8163B18 -gUnknown_8163B18: @ 8163B18 -.byte 0x91, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8163AD8 - -.global gUnknown_8163B24 -gUnknown_8163B24: @ 8163B24 -.byte 0xf6, 0x00, 0xe9, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x22, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x0c, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162470 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162418 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81623CC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153AEC -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162384 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162360 -setFlag 0x03 -.byte 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x0d, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8163CF4 -gUnknown_8163CF4: @ 8163CF4 -.byte 0xf6, 0x00, 0x09, 0x2a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8163D34 -gUnknown_8163D34: @ 8163D34 -.byte 0xf6, 0x00, 0x10, 0x2a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8163DD4 -gUnknown_8163DD4: @ 8163DD4 -.byte 0xf6, 0x00, 0x1d, 0x2a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81611AC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161180 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161134 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8163EB4 -gUnknown_8163EB4: @ 8163EB4 -.byte 0xf6, 0x00, 0x2e, 0x2a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8163F64 -gUnknown_8163F64: @ 8163F64 -.byte 0xf6, 0x00, 0x3c, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4c, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x01, 0x1e, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8164014 -gUnknown_8164014: @ 8164014 -.byte 0xf6, 0x00, 0x4a, 0x2a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8164114 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x14, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8164114 -gUnknown_8164114: @ 8164114 -.string "{CENTER_ALIGN}And in the square...\0" -.align 2, 0 - -.global gUnknown_816412C -gUnknown_816412C: @ 816412C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8164014 - -.global gUnknown_8164138 -gUnknown_8164138: @ 8164138 -.byte 0xf6, 0x00, 0x60, 0x2a -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81641B8 -gUnknown_81641B8: @ 81641B8 -.byte 0xf6, 0x00, 0x6b, 0x2a -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8165444 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0x2e, 0x10, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x03, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816542C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8165410 -closeTextBox -.byte 0x2e, 0x07, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8155C60 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xdb, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x14 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xe4, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x10 -.byte 0x6b, 0x00, 0xcc, 0x00 -.byte 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x04, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81653F0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81653C8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8165390 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x01, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8165378 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816533C -closeTextBox -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81652F4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81652C8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81652AC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8165268 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816523C -.byte 0x34, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8165208 -.byte 0x34, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81651E4 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xdb, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81651B4 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8165184 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8165150 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8165118 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81651B4 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81650E4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8165070 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x14 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xdb, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x14 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x48, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x01, 0x00 -.byte 0x0f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x01, 0x00, 0x0f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8165058 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816500C -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xe4, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x10 -.byte 0xe4, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xe7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x01, 0x00, 0x0f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x01, 0x00 -.byte 0x0f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8164FF4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8164FD0 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8164FAC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe4, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0f -.byte 0xe4, 0x00, 0x10, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x14 -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x01, 0x00 -.byte 0x0f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x01, 0x00, 0x0f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x09, 0x00, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8164F80 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8164F48 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8164F1C -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8164EE0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8164EB8 -.byte 0x34, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8164E8C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x01, 0x00 -.byte 0x0f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x01, 0x00, 0x0f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x09, 0x00 -.byte 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8164E60 -.byte 0x34, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8164E28 -closeTextBox -.byte 0x52, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8164E28 -gUnknown_8164E28: @ 8164E28 -.string " Terrible{COMMA} it is!{WAIT_PRESS}\n" -.string "From the sky...{WAIT_PRESS} Falls a star...\0" -.align 2, 0 - -.global gUnknown_8164E60 -gUnknown_8164E60: @ 8164E60 -.string " ...To all Pokémon!\n" -.string "Calling all Pokémon!\0" -.align 2, 0 - -.global gUnknown_8164E8C -gUnknown_8164E8C: @ 8164E8C -.string " {ARG_NICKNAME_9} is calling out\n" -.string "to us using telepathy!\0" -.align 2, 0 - -.global gUnknown_8164EB8 -gUnknown_8164EB8: @ 8164EB8 -.string " {ARG_NICKNAME_9}?{WAIT_PRESS}\n" -.string "Ah{COMMA} that{APOSTROPHE}s it! Telepathy!\0" -.align 2, 0 - -.global gUnknown_8164EE0 -gUnknown_8164EE0: @ 8164EE0 -.string " This voice...{WAIT_PRESS} I{APOSTROPHE}m sure...{WAIT_PRESS}\n" -.string "That{APOSTROPHE}s it! It{APOSTROPHE}s {ARG_NICKNAME_9}!\0" -.align 2, 0 - -.global gUnknown_8164F1C -gUnknown_8164F1C: @ 8164F1C -.string " Th-this voice...{WAIT_PRESS}\n" -.string "I{APOSTROPHE}ve heard it before.\0" -.align 2, 0 - -.global gUnknown_8164F48 -gUnknown_8164F48: @ 8164F48 -.string " This voice...{WAIT_PRESS} I think...{WAIT_PRESS}\n" -.string "That{APOSTROPHE}s it! It{APOSTROPHE}s {ARG_NICKNAME_9}!\0" -.align 2, 0 - -.global gUnknown_8164F80 -gUnknown_8164F80: @ 8164F80 -.string " Th-this voice...{WAIT_PRESS}\n" -.string "I remember this voice.\0" -.align 2, 0 - -.global gUnknown_8164FAC -gUnknown_8164FAC: @ 8164FAC -.string " Someone talking?{WAIT_PRESS}\n" -.string "...Not sure.\0" -.align 2, 0 - -.global gUnknown_8164FD0 -gUnknown_8164FD0: @ 8164FD0 -.string " Me too.{WAIT_PRESS}\n" -.string "Even now{COMMA} I hear it...\0" -.align 2, 0 - -.global gUnknown_8164FF4 -gUnknown_8164FF4: @ 8164FF4 -.string " No. I heard it too.\0" -.align 2, 0 - -.global gUnknown_816500C -gUnknown_816500C: @ 816500C -.string " I thought I heard something\n" -.string "just for a moment...{WAIT_PRESS}\n" -.string "Did I just imagine it?\0" -.align 2, 0 - -.global gUnknown_8165058 -gUnknown_8165058: @ 8165058 -.string " Huh?{WAIT_PRESS} What was that?\0" -.align 2, 0 - -.global gUnknown_8165070 -gUnknown_8165070: @ 8165070 -.string " Would you look at that?{WAIT_PRESS}\n" -.string "I didn{APOSTROPHE}t think someone that could take down\n" -.string "Groudon{APOSTROPHE}d be such a crybaby! Gahahahaha!\0" -.align 2, 0 - -.global gUnknown_81650E4 -gUnknown_81650E4: @ 81650E4 -.string " Every bit of our effort...\n" -.string "It was all worthwhile!\0" -.align 2, 0 - -.global gUnknown_8165118 -gUnknown_8165118: @ 8165118 -.string " Everything we experienced...\n" -.string "It was all worthwhile!\0" -.align 2, 0 - -.global gUnknown_8165150 -gUnknown_8165150: @ 8165150 -.string " Sniff... Sniffle...{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_0}!{WAIT_PRESS} I can{APOSTROPHE}t believe it!\0" -.align 2, 0 - -.global gUnknown_8165184 -gUnknown_8165184: @ 8165184 -.string " All the work we put in...\n" -.string "It was all worth it!\0" -.align 2, 0 - -.global gUnknown_81651B4 -gUnknown_81651B4: @ 81651B4 -.string " Sniff... Sniffle...{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_0}!{WAIT_PRESS} This is great!\0" -.align 2, 0 - -.global gUnknown_81651E4 -gUnknown_81651E4: @ 81651E4 -.string " Take pride in that.{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_1}{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_8165208 -gUnknown_8165208: @ 8165208 -.string " Your {COLOR_1 CYAN}Team {ARG_TEAM_NAME}{END_COLOR_TEXT_1}\n" -.string "is a first-class rescue team.\0" -.align 2, 0 - -.global gUnknown_816523C -gUnknown_816523C: @ 816523C -.string " You{APOSTROPHE}ve earned everyone{APOSTROPHE}s\n" -.string "respect now.\0" -.align 2, 0 - -.global gUnknown_8165268 -gUnknown_8165268: @ 8165268 -.string " You lot did great!{WAIT_PRESS}\n" -.string "Why don{APOSTROPHE}t we team up sometime?\n" -.string "Gahahahaha!\0" -.align 2, 0 - -.global gUnknown_81652AC -gUnknown_81652AC: @ 81652AC -.string " You can be proud of it!\0" -.align 2, 0 - -.global gUnknown_81652C8 -gUnknown_81652C8: @ 81652C8 -.string " You bunch became stronger\n" -.string "than I expected!\0" -.align 2, 0 - -.global gUnknown_81652F4 -gUnknown_81652F4: @ 81652F4 -.string " Pelipper spread the word\n" -.string "with an extra edition of the Pokémon\n" -.string "News.\0" -.align 2, 0 - -.global gUnknown_816533C -gUnknown_816533C: @ 816533C -.string " How does everyone know\n" -.string "about what happened underground?\0" -.align 2, 0 - -.global gUnknown_8165378 -gUnknown_8165378: @ 8165378 -.string " Whoa!\n" -.string "W-wait a second!\0" -.align 2, 0 - -.global gUnknown_8165390 -gUnknown_8165390: @ 8165390 -.string " Darlings{COMMA} it{APOSTROPHE}s fantastic!{WAIT_PRESS}\n" -.string "You have won me over!\0" -.align 2, 0 - -.global gUnknown_81653C8 -gUnknown_81653C8: @ 81653C8 -.string " You really took down that\n" -.string "Groudon?!\0" -.align 2, 0 - -.global gUnknown_81653F0 -gUnknown_81653F0: @ 81653F0 -.string " Great work!\n" -.string "Great work{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8165410 -gUnknown_8165410: @ 8165410 -.string " It{APOSTROPHE}s true{COMMA} darlings!\0" -.align 2, 0 - -.global gUnknown_816542C -gUnknown_816542C: @ 816542C -.string " Look!\n" -.string "Here they come!\0" -.align 2, 0 - -.global gUnknown_8165444 -gUnknown_8165444: @ 8165444 -.string " Is {ARG_NICKNAME_0}{APOSTROPHE}s team\n" -.string "almost here?\0" -.align 2, 0 - -.global gUnknown_8165464 -gUnknown_8165464: @ 8165464 -.byte 0xf6, 0x00, 0x43, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xcc, 0x00, 0x75, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x03 -.byte 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8165654 -gUnknown_8165654: @ 8165654 -.byte 0xf6, 0x00, 0x65, 0x2b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x7b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8165794 -gUnknown_8165794: @ 8165794 -.byte 0xf6, 0x00, 0x7c, 0x2b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x79, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00, 0xf8, 0xff, 0xff, 0xff -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, shortestDir, northwest -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, shortestDir, southeast -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, shortestDir, northwest -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, shortestDir, southeast -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, shortestDir, southwest -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8165964 -gUnknown_8165964: @ 8165964 -.byte 0xf6, 0x00, 0x9c, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8165AB4 -gUnknown_8165AB4: @ 8165AB4 -.byte 0xf6, 0x00, 0xb4, 0x2b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x7c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, south -.byte 0xdb, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, west -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, south -.byte 0xdb, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, west -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8165C34 -gUnknown_8165C34: @ 8165C34 -.byte 0xf6, 0x00, 0xcf, 0x2b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x7d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, north -.byte 0xdb, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, north -.byte 0xdb, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8165D94 -gUnknown_8165D94: @ 8165D94 -.byte 0xf6, 0x00, 0xe8, 0x2b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x7e, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8165EA4 -gUnknown_8165EA4: @ 8165EA4 -.byte 0xf6, 0x00, 0xfc, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xcc, 0x00, 0x76, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8165F34 -gUnknown_8165F34: @ 8165F34 -.byte 0xf6, 0x00, 0x08, 0x2c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xcc, 0x00, 0x77, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x0c, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x91, 0x0c, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x0c, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x91, 0x0c, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8166034 -gUnknown_8166034: @ 8166034 -.byte 0xf6, 0x00, 0x1b, 0x2c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xcc, 0x00, 0x78, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x0c, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x0c, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x0c, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x0c, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8166134 -gUnknown_8166134: @ 8166134 -.byte 0xf6, 0x00, 0x2e, 0x2c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x84, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x0c, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x0c, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, shortestDir, southeast -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, shortestDir, north -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81662A4 -gUnknown_81662A4: @ 81662A4 -.byte 0xf6, 0x00, 0x48, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x6b, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x03 -.byte 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, shortestDir, southeast -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, shortestDir, west -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, shortestDir, north -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x91, 0x0c, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x0c, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x0c, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8166474 -gUnknown_8166474: @ 8166474 -.byte 0xf6, 0x00, 0x68, 0x2c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81665D4 -gUnknown_81665D4: @ 81665D4 -.byte 0xf6, 0x00, 0x81, 0x2c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x07 -.byte 0x91, 0x0c, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x0c, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, shortestDir, west -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, shortestDir, south -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8166724 -gUnknown_8166724: @ 8166724 -.byte 0xf6, 0x00, 0x99, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x6b, 0x00, 0x00, 0x01, 0x81, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81667F4 -gUnknown_81667F4: @ 81667F4 -.byte 0xf6, 0x00, 0xa9, 0x2c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x7f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81668B4 -gUnknown_81668B4: @ 81668B4 -.byte 0xf6, 0x00, 0xb8, 0x2c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x03 -.byte 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81669D4 -gUnknown_81669D4: @ 81669D4 -.byte 0xf6, 0x00, 0xcd, 0x2c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, shortestDir, east -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, southwest -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0c -.byte 0x91, 0x0c, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x91, 0x08, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8166B54 -gUnknown_8166B54: @ 8166B54 -.byte 0xf6, 0x00, 0xe8, 0x2c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8166B84 -gUnknown_8166B84: @ 8166B84 -.byte 0xf6, 0x00, 0xee, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8166BA4 -gUnknown_8166BA4: @ 8166BA4 -.byte 0xf6, 0x00, 0xf3, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8166BD4 -gUnknown_8166BD4: @ 8166BD4 -.byte 0xf6, 0x00, 0xf9, 0x2c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8166BF4 -gUnknown_8166BF4: @ 8166BF4 -.byte 0xf6, 0x00, 0xfe, 0x2c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x00, 0x05, 0x00, 0x20, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8166C74 -gUnknown_8166C74: @ 8166C74 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8166BF4 - -.global gUnknown_8166C80 -gUnknown_8166C80: @ 8166C80 -.byte 0xf6, 0x00, 0x0b, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8167730 -.byte 0x34, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816770C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2d, 0x09, 0x07, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x01, 0x00, 0x0f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x01, 0x00, 0x0f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x09, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81676EC -.byte 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81676B4 -.byte 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81676A0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8167684 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00, 0xe7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x01, 0x00, 0x0f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x01, 0x00, 0x0f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8167640 -.byte 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8167608 -.byte 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81675B4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816758C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00, 0xe7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x01, 0x00, 0x0f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x01, 0x00, 0x0f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8167560 -.byte 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8167540 -.byte 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816750C -.byte 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81674BC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x10, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8167494 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8167494 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8167494 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816745C -.byte 0x34, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81673F8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81673E4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81673B0 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81673E4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81673B0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81673E4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81673B0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00, 0xe7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x01, 0x00, 0x0f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x01, 0x00, 0x0f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8167384 -.byte 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8167338 -.byte 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81672FC -.byte 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8167298 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8167278 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8167254 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8167230 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8167230 -gUnknown_8167230: @ 8167230 -.string " Right{COMMA} {ARG_NICKNAME_0}?\n" -.string "Let{APOSTROPHE}s get it done!\0" -.align 2, 0 - -.global gUnknown_8167254 -gUnknown_8167254: @ 8167254 -.string " Hey{COMMA} {ARG_NICKNAME_0}!\n" -.string "Let{APOSTROPHE}s get it done!\0" -.align 2, 0 - -.global gUnknown_8167278 -gUnknown_8167278: @ 8167278 -.string " No problem!\n" -.string "We{APOSTROPHE}ll be fine!\0" -.align 2, 0 - -.global gUnknown_8167298 -gUnknown_8167298: @ 8167298 -.string " Last word.{WAIT_PRESS}\n" -.string "Dangerous will be your adventure...{WAIT_PRESS}\n" -.string "But fail{COMMA} you must not. Surpass yourselves.\0" -.align 2, 0 - -.global gUnknown_81672FC -gUnknown_81672FC: @ 81672FC -.string " Departure{COMMA} it is tomorrow.{WAIT_PRESS}\n" -.string "Rest you should until then.\0" -.align 2, 0 - -.global gUnknown_8167338 -gUnknown_8167338: @ 8167338 -.string " Discuss we will{COMMA}\n" -.string "{ARG_NICKNAME_8} and I{COMMA} about how our\n" -.string "Teleport can be amplified.\0" -.align 2, 0 - -.global gUnknown_8167384 -gUnknown_8167384: @ 8167384 -.string " {ARG_NICKNAME_1}{COMMA} {ARG_NICKNAME_0}.{WAIT_PRESS}\n" -.string "Do you hear?{WAIT_PRESS} This is {ARG_NICKNAME_9}.\0" -.align 2, 0 - -.global gUnknown_81673B0 -gUnknown_81673B0: @ 81673B0 -.string " It{APOSTROPHE}s my wish that all\n" -.string "Pokémon can live in peace.\0" -.align 2, 0 - -.global gUnknown_81673E4 -gUnknown_81673E4: @ 81673E4 -.string " We expect danger!\0" -.align 2, 0 - -.global gUnknown_81673F8 -gUnknown_81673F8: @ 81673F8 -.string " But...{WAIT_PRESS} Are you sure?{WAIT_PRESS}\n" -.string "There{APOSTROPHE}s no telling what you would find\n" -.string "in that world above the clouds.\0" -.align 2, 0 - -.global gUnknown_816745C -gUnknown_816745C: @ 816745C -.string " I also...{WAIT_PRESS}\n" -.string "I thought there could be none but you...\0" -.align 2, 0 - -.global gUnknown_8167494 -gUnknown_8167494: @ 8167494 -.string " Then{COMMA} we{APOSTROPHE}ll do it!{WAIT_PRESS}\n" -.string "We{APOSTROPHE}ll go!\0" -.align 2, 0 - -.global gUnknown_81674BC -gUnknown_81674BC: @ 81674BC -.string " What will become of the\n" -.string "Pokémon sent to the sky?{WAIT_PRESS}\n" -.string "Even I can guess nothing...\0" -.align 2, 0 - -.global gUnknown_816750C -gUnknown_816750C: @ 816750C -.string " However...{WAIT_PRESS}\n" -.string "The sky is a world above the clouds.\0" -.align 2, 0 - -.global gUnknown_8167540 -gUnknown_8167540: @ 8167540 -.string " And send Pokémon to the\n" -.string "sky.\0" -.align 2, 0 - -.global gUnknown_8167560 -gUnknown_8167560: @ 8167560 -.string " {ARG_NICKNAME_8} and I\n" -.string "amplify our Teleport together...\0" -.align 2, 0 - -.global gUnknown_816758C -gUnknown_816758C: @ 816758C -.string " The sky...{WAIT_PRESS}\n" -.string "How are we to go there?\0" -.align 2, 0 - -.global gUnknown_81675B4 -gUnknown_81675B4: @ 81675B4 -.string " However...{WAIT_PRESS}\n" -.string "Far{COMMA} far up in the sky lives {ARG_NICKNAME_7}.\n" -.string "Known by few and seen by none.\0" -.align 2, 0 - -.global gUnknown_8167608 -gUnknown_8167608: @ 8167608 -.string " {ARG_NICKNAME_7} must be asked\n" -.string "to destroy the star from the sky.\0" -.align 2, 0 - -.global gUnknown_8167640 -gUnknown_8167640: @ 8167640 -.string " A Pokémon{COMMA} living far above\n" -.string "us in the sky.\n" -.string "Legendary{COMMA} it is.\0" -.align 2, 0 - -.global gUnknown_8167684 -gUnknown_8167684: @ 8167684 -.string " {ARG_NICKNAME_7}?{WAIT_PRESS}\n" -.string "What might that be?\0" -.align 2, 0 - -.global gUnknown_81676A0 -gUnknown_81676A0: @ 81676A0 -.string " You must ask {ARG_NICKNAME_7}.\0" -.align 2, 0 - -.global gUnknown_81676B4 -gUnknown_81676B4: @ 81676B4 -.string " ...To prevent collision{COMMA}\n" -.string "there is but one solution.\0" -.align 2, 0 - -.global gUnknown_81676EC -gUnknown_81676EC: @ 81676EC -.string " ............{WAIT_PRESS}There is a way.\0" -.align 2, 0 - -.global gUnknown_816770C -gUnknown_816770C: @ 816770C -.string " Can the falling star be\n" -.string "stopped?\0" -.align 2, 0 - -.global gUnknown_8167730 -gUnknown_8167730: @ 8167730 -.string " {ARG_NICKNAME_9}.{WAIT_PRESS}\n" -.string "Tell us.\0" -.align 2, 0 - -.global gUnknown_8167744 -gUnknown_8167744: @ 8167744 -.byte 0xf6, 0x00, 0x74, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8167814 -gUnknown_8167814: @ 8167814 -.byte 0xf6, 0x00, 0x84, 0x2d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8167854 -gUnknown_8167854: @ 8167854 -.byte 0xf6, 0x00, 0x8b, 0x2d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0xf8, 0xff, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81678A4 -gUnknown_81678A4: @ 81678A4 -.byte 0xf6, 0x00, 0x93, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81678E4 -gUnknown_81678E4: @ 81678E4 -.byte 0xf6, 0x00, 0x9a, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8167924 -gUnknown_8167924: @ 8167924 -.byte 0xf6, 0x00, 0xa1, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8167964 -gUnknown_8167964: @ 8167964 -.byte 0xf6, 0x00, 0xa8, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81679A4 -gUnknown_81679A4: @ 81679A4 -.byte 0xf6, 0x00, 0xaf, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8167A04 -gUnknown_8167A04: @ 8167A04 -.byte 0xf6, 0x00, 0xb8, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8167A34 -gUnknown_8167A34: @ 8167A34 -.byte 0xf6, 0x00, 0xbe, 0x2d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8167A64 -gUnknown_8167A64: @ 8167A64 -.byte 0xf6, 0x00, 0xc4, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8167AA4 -gUnknown_8167AA4: @ 8167AA4 -.byte 0xf6, 0x00, 0xcb, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8167AE4 -gUnknown_8167AE4: @ 8167AE4 -.byte 0xf6, 0x00, 0xd2, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8167B24 -gUnknown_8167B24: @ 8167B24 -.byte 0xf6, 0x00, 0xd9, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8167B64 -gUnknown_8167B64: @ 8167B64 -.byte 0xf6, 0x00, 0xe0, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8167BA4 -gUnknown_8167BA4: @ 8167BA4 -.byte 0xf6, 0x00, 0xe7, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8167BE4 -gUnknown_8167BE4: @ 8167BE4 -.byte 0xf6, 0x00, 0xee, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8167C24 -gUnknown_8167C24: @ 8167C24 -.byte 0xf6, 0x00, 0xf5, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8167C64 -gUnknown_8167C64: @ 8167C64 -.byte 0xf6, 0x00, 0xfc, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x22, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8167D34 -gUnknown_8167D34: @ 8167D34 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8167C64 - -.global gUnknown_8167D40 -gUnknown_8167D40: @ 8167D40 -.byte 0xf6, 0x00, 0x0e, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8167D80 -gUnknown_8167D80: @ 8167D80 -.byte 0xf6, 0x00, 0x15, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8167DB0 -gUnknown_8167DB0: @ 8167DB0 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8167D80 - -.global gUnknown_8167DBC -gUnknown_8167DBC: @ 8167DBC -.byte 0xf6, 0x00, 0x1d, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FA54 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814FA54 -closeTextBox -.byte 0xd8, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81681E8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81681E8 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81681DC -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81681D0 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81681C4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168188 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168180 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816814C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816811C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168108 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81680C8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816808C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168064 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168108 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168034 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8167FFC -closeTextBox -.byte 0x48, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x23, 0x01, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xb4 - -triggerCutscene 0xe4 -closeThread - -.global gUnknown_8167FFC -gUnknown_8167FFC: @ 8167FFC -.string " Tomorrow!{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s give it everything we can{COMMA}\n" -.string "{ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8168034 -gUnknown_8168034: @ 8168034 -.string " So let{APOSTROPHE}s get plenty of rest\n" -.string "for tomorrow.\0" -.align 2, 0 - -.global gUnknown_8168064 -gUnknown_8168064: @ 8168064 -.string " Yup!\n" -.string "Looks like we{APOSTROPHE}re ready to go!\0" -.align 2, 0 - -.global gUnknown_816808C -gUnknown_816808C: @ 816808C -.string " Tomorrow!{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s give it everything we{APOSTROPHE}ve got{COMMA}\n" -.string "{ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_81680C8 -gUnknown_81680C8: @ 81680C8 -.string " Let{APOSTROPHE}s get plenty of rest\n" -.string "tonight and get set for tomorrow.\0" -.align 2, 0 - -.global gUnknown_8168108 -gUnknown_8168108: @ 8168108 -.string " We leave tomorrow.\0" -.align 2, 0 - -.global gUnknown_816811C -gUnknown_816811C: @ 816811C -.string " Great!\n" -.string "Looks like you{APOSTROPHE}re all set to roll!\0" -.align 2, 0 - -.global gUnknown_816814C -gUnknown_816814C: @ 816814C -.string " Just tell me when you{APOSTROPHE}re\n" -.string "ready to go to the sky.\0" -.align 2, 0 - -.global gUnknown_8168180 -gUnknown_8168180: @ 8168180 -.string " OK.\0" -.align 2, 0 - -.global gUnknown_8168188 -gUnknown_8168188: @ 8168188 -.string " Give me a shout when you{APOSTROPHE}re\n" -.string "all set to go to the sky.\0" -.align 2, 0 - -.global gUnknown_81681C4 -gUnknown_81681C4: @ 81681C4 -.string " All right.\0" -.align 2, 0 - -.global gUnknown_81681D0 -gUnknown_81681D0: @ 81681D0 -.string "Not yet.\0" -.align 2, 0 - -.global gUnknown_81681DC -gUnknown_81681DC: @ 81681DC -.string "All set!\0" -.align 2, 0 - -.global gUnknown_81681E8 -gUnknown_81681E8: @ 81681E8 -.string " Are you all ready for\n" -.string "the sky?\0" -.align 2, 0 - -.global gUnknown_8168208 -gUnknown_8168208: @ 8168208 -.byte 0xf6, 0x00, 0x46, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81682B8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x17, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81682B8 -gUnknown_81682B8: @ 81682B8 -.string " We hope you{APOSTROPHE}ll succeed!\n" -.string "Please don{APOSTROPHE}t give up!\0" -.align 2, 0 - -.global gUnknown_81682EC -gUnknown_81682EC: @ 81682EC -.byte 0xf6, 0x00, 0x54, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa8, 0x00, 0x4d, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816839C -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816839C -gUnknown_816839C: @ 816839C -.string " I also hope for your\n" -.string "success. Fight!\0" -.align 2, 0 - -.global gUnknown_81683C4 -gUnknown_81683C4: @ 81683C4 -.byte 0xf6, 0x00, 0x62, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4d, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168474 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8168474 -gUnknown_8168474: @ 8168474 -.string " {ARG_NICKNAME_0}{COMMA} you{APOSTROPHE}re our\n" -.string "one hope!\0" -.align 2, 0 - -.global gUnknown_8168494 -gUnknown_8168494: @ 8168494 -.byte 0xf6, 0x00, 0x70, 0x2e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4d, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168544 -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8168544 -gUnknown_8168544: @ 8168544 -.string " I{APOSTROPHE}m rooting for your\n" -.string "success{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_816856C -gUnknown_816856C: @ 816856C -.byte 0xf6, 0x00, 0x7e, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa8, 0x00, 0x4d, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816861C -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3c, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816861C -gUnknown_816861C: @ 816861C -.string " You{APOSTROPHE}ll do fine!{WAIT_PRESS}\n" -.string "I{APOSTROPHE}m sure you{APOSTROPHE}ll find success!\n" -.string "Have confidence in yourselves!\0" -.align 2, 0 - -.global gUnknown_8168674 -gUnknown_8168674: @ 8168674 -.byte 0xf6, 0x00, 0x8c, 0x2e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4d, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168764 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168734 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8168734 -gUnknown_8168734: @ 8168734 -.string " But with you{COMMA} I know it can\n" -.string "become a friend!\0" -.align 2, 0 - -.global gUnknown_8168764 -gUnknown_8168764: @ 8168764 -.string " I don{APOSTROPHE}t know what sort of\n" -.string "Pokémon Rayquaza is...\0" -.align 2, 0 - -.global gUnknown_8168798 -gUnknown_8168798: @ 8168798 -.byte 0xf6, 0x00, 0x9b, 0x2e -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81687F8 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81687F8 -gUnknown_81687F8: @ 81687F8 -.string " Everything depends on you!\n" -.string "Don{APOSTROPHE}t fail!\0" -.align 2, 0 - -.global gUnknown_8168824 -gUnknown_8168824: @ 8168824 -.byte 0xf6, 0x00, 0xa4, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168884 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8168884 -gUnknown_8168884: @ 8168884 -.string " Darlings{COMMA} I can{APOSTROPHE}t begin to\n" -.string "imagine a world above the clouds...{WAIT_PRESS}\n" -.string "The best of luck!\0" -.align 2, 0 - -.global gUnknown_81688DC -gUnknown_81688DC: @ 81688DC -.byte 0xf6, 0x00, 0xad, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816898C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816894C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816894C -gUnknown_816894C: @ 816894C -.string " Getting to it sounds difficult\n" -.string "enough...\n" -.string "But you can{APOSTROPHE}t fail!\0" -.align 2, 0 - -.global gUnknown_816898C -gUnknown_816898C: @ 816898C -.string " Rayquaza is a legendary\n" -.string "Pokémon{COMMA} isn{APOSTROPHE}t that right?\0" -.align 2, 0 - -.global gUnknown_81689C4 -gUnknown_81689C4: @ 81689C4 -.byte 0xf6, 0x00, 0xb7, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168A24 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8168A24 -gUnknown_8168A24: @ 8168A24 -.string " If anyone can do it{COMMA} it{APOSTROPHE}s you!\n" -.string "Keep your faith!\0" -.align 2, 0 - -.global gUnknown_8168A5C -gUnknown_8168A5C: @ 8168A5C -.byte 0xf6, 0x00, 0xc0, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168B10 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168ACC -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8168ACC -gUnknown_8168ACC: @ 8168ACC -.string " But I have this feeling\n" -.string "that you can do it.{WAIT_PRESS}\n" -.string "We need you to win!\0" -.align 2, 0 - -.global gUnknown_8168B10 -gUnknown_8168B10: @ 8168B10 -.string " This is getting heavy!\0" -.align 2, 0 - -.global gUnknown_8168B28 -gUnknown_8168B28: @ 8168B28 -.byte 0xf6, 0x00, 0xca, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168BD0 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168B98 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8168B98 -gUnknown_8168B98: @ 8168B98 -.string " {ARG_NICKNAME_0}{COMMA} I{APOSTROPHE}m sure that\n" -.string "you will succeed and come back.\0" -.align 2, 0 - -.global gUnknown_8168BD0 -gUnknown_8168BD0: @ 8168BD0 -.string " I will wait for you.\0" -.align 2, 0 - -.global gUnknown_8168BE8 -gUnknown_8168BE8: @ 8168BE8 -.byte 0xf6, 0x00, 0xd4, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168C94 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168C58 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8168C58 -gUnknown_8168C58: @ 8168C58 -.string " You leave tomorrow.\n" -.string "Prepare for your journey before then.\0" -.align 2, 0 - -.global gUnknown_8168C94 -gUnknown_8168C94: @ 8168C94 -.string " I will set out to confer\n" -.string "with Xatu.\0" -.align 2, 0 - -.global gUnknown_8168CBC -gUnknown_8168CBC: @ 8168CBC -.byte 0xf6, 0x00, 0xde, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168D50 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168D2C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8168D2C -gUnknown_8168D2C: @ 8168D2C -.string " Get out there and save\n" -.string "the world!\0" -.align 2, 0 - -.global gUnknown_8168D50 -gUnknown_8168D50: @ 8168D50 -.string " I{APOSTROPHE}m throwing in my lot with\n" -.string "{COLOR_1 CYAN}Team {ARG_TEAM_NAME}{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_8168D80 -gUnknown_8168D80: @ 8168D80 -.byte 0xf6, 0x00, 0xe8, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168DE0 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8168DE0 -gUnknown_8168DE0: @ 8168DE0 -.string " You can do it!{WAIT_PRESS}\n" -.string "You can stop the star from falling!\0" -.align 2, 0 - -.global gUnknown_8168E18 -gUnknown_8168E18: @ 8168E18 -.byte 0xf6, 0x00, 0xf1, 0x2e -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8168E58 -gUnknown_8168E58: @ 8168E58 -.byte 0x93, 0x01, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168E18 - -.global gUnknown_8168E64 -gUnknown_8168E64: @ 8168E64 -.byte 0xf6, 0x00, 0xfa, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168F14 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8168F14 -gUnknown_8168F14: @ 8168F14 -.string " I see you{APOSTROPHE}re heading out\n" -.string "soon.\n" -.string "The best of luck!\0" -.align 2, 0 - -.global gUnknown_8168F48 -gUnknown_8168F48: @ 8168F48 -.byte 0xf6, 0x00, 0x08, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4e, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168FF8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x18, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8168FF8 -gUnknown_8168FF8: @ 8168FF8 -.string " Ah{COMMA} you{APOSTROPHE}re leaving?\n" -.string "Good luck!\0" -.align 2, 0 - -.global gUnknown_816901C -gUnknown_816901C: @ 816901C -.byte 0xf6, 0x00, 0x16, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81690CC -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81690CC -gUnknown_81690CC: @ 81690CC -.string " {ARG_NICKNAME_0}{COMMA} don{APOSTROPHE}t let us\n" -.string "down!\0" -.align 2, 0 - -.global gUnknown_81690EC -gUnknown_81690EC: @ 81690EC -.byte 0xf6, 0x00, 0x24, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa8, 0x00, 0x4e, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816919C -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816919C -gUnknown_816919C: @ 816919C -.string " I{APOSTROPHE}m rooting for you!\n" -.string "Go get {APOSTROPHE}em{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_81691CC -gUnknown_81691CC: @ 81691CC -.byte 0xf6, 0x00, 0x32, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa8, 0x00, 0x4e, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816927C -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3c, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816927C -gUnknown_816927C: @ 816927C -.string " This is it{COMMA} isn{APOSTROPHE}t it?\n" -.string "Make us proud!\0" -.align 2, 0 - -.global gUnknown_81692A8 -gUnknown_81692A8: @ 81692A8 -.byte 0xf6, 0x00, 0x40, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4e, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8169358 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x1b, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8169358 -gUnknown_8169358: @ 8169358 -.string " Are you heading out now?\n" -.string "Don{APOSTROPHE}t give up!\0" -.align 2, 0 - -.global gUnknown_8169384 -gUnknown_8169384: @ 8169384 -.byte 0xf6, 0x00, 0x4e, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81693E4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81693E4 -gUnknown_81693E4: @ 81693E4 -.string " You{APOSTROPHE}re going{COMMA} hey?\n" -.string "Buckle down and get it done!\0" -.align 2, 0 - -.global gUnknown_816941C -gUnknown_816941C: @ 816941C -.byte 0xf6, 0x00, 0x57, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816947C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816947C -gUnknown_816947C: @ 816947C -.string " {ARG_NICKNAME_0}{COMMA} take care{COMMA}\n" -.string "darling.\0" -.align 2, 0 - -.global gUnknown_816949C -gUnknown_816949C: @ 816949C -.byte 0xf6, 0x00, 0x60, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81694FC -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81694FC -gUnknown_81694FC: @ 81694FC -.string " I can{APOSTROPHE}t even imagine what{APOSTROPHE}s\n" -.string "up in the sky{COMMA} but be brave!\0" -.align 2, 0 - -.global gUnknown_816953C -gUnknown_816953C: @ 816953C -.byte 0xf6, 0x00, 0x69, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816959C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816959C -gUnknown_816959C: @ 816959C -.string " Go with care!\0" -.align 2, 0 - -.global gUnknown_81695AC -gUnknown_81695AC: @ 81695AC -.byte 0xf6, 0x00, 0x72, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8169648 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816961C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816961C -gUnknown_816961C: @ 816961C -.string " Give it your best shot!\n" -.string "Don{APOSTROPHE}t you lose!\0" -.align 2, 0 - -.global gUnknown_8169648 -gUnknown_8169648: @ 8169648 -.string " Oh{COMMA} yeah. Leaving soon?\0" -.align 2, 0 - -.global gUnknown_8169664 -gUnknown_8169664: @ 8169664 -.byte 0xf6, 0x00, 0x7c, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81696EC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81696D4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81696D4 -gUnknown_81696D4: @ 81696D4 -.string " Go with confidence!\0" -.align 2, 0 - -.global gUnknown_81696EC -gUnknown_81696EC: @ 81696EC -.string " You guys can do it for sure!\n" -.string "There{APOSTROPHE}s nothing to worry about!\0" -.align 2, 0 - -.global gUnknown_816972C -gUnknown_816972C: @ 816972C -.byte 0xf6, 0x00, 0x86, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816978C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816978C -gUnknown_816978C: @ 816978C -.string " Go for it! Take care!\0" -.align 2, 0 - -.global gUnknown_81697A4 -gUnknown_81697A4: @ 81697A4 -.byte 0xf6, 0x00, 0x8f, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8169804 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8169804 -gUnknown_8169804: @ 8169804 -.string " WE CAME TO WISH YOU\n" -.string "WELL TOO! BZBZBZZZT!\0" -.align 2, 0 - -.global gUnknown_8169830 -gUnknown_8169830: @ 8169830 -.byte 0xf6, 0x00, 0x98, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8169890 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8169890 -gUnknown_8169890: @ 8169890 -.string " SAVE THE WORLD!\n" -.string "BZBZBZZ!\0" -.align 2, 0 - -.global gUnknown_81698AC -gUnknown_81698AC: @ 81698AC -.byte 0xf6, 0x00, 0xa1, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81698EC -gUnknown_81698EC: @ 81698EC -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81698AC - -.global gUnknown_81698F8 -gUnknown_81698F8: @ 81698F8 -.byte 0xf6, 0x00, 0xaa, 0x2f -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81699A8 -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81699A8 -gUnknown_81699A8: @ 81699A8 -.string " You still have everything\n" -.string "to prove!\n" -.string "The best of luck!\0" -.align 2, 0 - -.global gUnknown_81699E0 -gUnknown_81699E0: @ 81699E0 -.byte 0xf6, 0x00, 0xb8, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4f, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8169A90 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8169A90 -gUnknown_8169A90: @ 8169A90 -.string " {ARG_NICKNAME_0}{COMMA} I{APOSTROPHE}m certain\n" -.string "that you will succeed!\n" -.string "Good luck!\0" -.align 2, 0 - -.global gUnknown_8169AC8 -gUnknown_8169AC8: @ 8169AC8 -.byte 0xf6, 0x00, 0xc6, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4f, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8169B78 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x13, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8169B78 -gUnknown_8169B78: @ 8169B78 -.string " It must be difficult{COMMA} but\n" -.string "don{APOSTROPHE}t let us down!\0" -.align 2, 0 - -.global gUnknown_8169BAC -gUnknown_8169BAC: @ 8169BAC -.byte 0xf6, 0x00, 0xd4, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa8, 0x00, 0x4f, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8169C5C -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8169C5C -gUnknown_8169C5C: @ 8169C5C -.string " You{APOSTROPHE}re not finished yet!\n" -.string "I hope I can serve you in good stead!\0" -.align 2, 0 - -.global gUnknown_8169CA0 -gUnknown_8169CA0: @ 8169CA0 -.byte 0xf6, 0x00, 0xe2, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4f, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8169DB4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8169D8C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8169D70 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8169D70 -gUnknown_8169D70: @ 8169D70 -.string " Your fight{APOSTROPHE}s only begun!\0" -.align 2, 0 - -.global gUnknown_8169D8C -gUnknown_8169D8C: @ 8169D8C -.string " You{APOSTROPHE}re not about to ever\n" -.string "give up!\0" -.align 2, 0 - -.global gUnknown_8169DB4 -gUnknown_8169DB4: @ 8169DB4 -.string " I know you too well.\0" -.align 2, 0 - -.global gUnknown_8169DCC -gUnknown_8169DCC: @ 8169DCC -.byte 0xf6, 0x00, 0xf2, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa8, 0x00, 0x4f, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8169E7C -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3c, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8169E7C -gUnknown_8169E7C: @ 8169E7C -.string " Everyone hopes you reach\n" -.string "Rayquaza.\n" -.string "Keep it up!\0" -.align 2, 0 - -.global gUnknown_8169EAC -gUnknown_8169EAC: @ 8169EAC -.byte 0xf6, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8169F0C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8169F0C -gUnknown_8169F0C: @ 8169F0C -.string " From failure comes success.\n" -.string "Keep your faith!\0" -.align 2, 0 - -.global gUnknown_8169F3C -gUnknown_8169F3C: @ 8169F3C -.byte 0xf6, 0x00, 0x09, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8169F9C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8169F9C -gUnknown_8169F9C: @ 8169F9C -.string " Darling{COMMA} you{APOSTROPHE}ve only begun.{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_0}{COMMA} keep your chin up!\0" -.align 2, 0 - -.global gUnknown_8169FDC -gUnknown_8169FDC: @ 8169FDC -.byte 0xf6, 0x00, 0x12, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A03C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816A03C -gUnknown_816A03C: @ 816A03C -.string " Huh? There{APOSTROPHE}s a tower of\n" -.string "clouds in the sky?!{WAIT_PRESS}\n" -.string "It exists? Amazing!\0" -.align 2, 0 - -.global gUnknown_816A084 -gUnknown_816A084: @ 816A084 -.byte 0xf6, 0x00, 0x1b, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A110 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A0F4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816A0F4 -gUnknown_816A0F4: @ 816A0F4 -.string " This is just a setback!\0" -.align 2, 0 - -.global gUnknown_816A110 -gUnknown_816A110: @ 816A110 -.string " I know exactly how gutsy\n" -.string "you are.\0" -.align 2, 0 - -.global gUnknown_816A134 -gUnknown_816A134: @ 816A134 -.byte 0xf6, 0x00, 0x25, 0x30, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A194 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816A194 -gUnknown_816A194: @ 816A194 -.string " Go for it!\n" -.string "Don{APOSTROPHE}t you lose!\0" -.align 2, 0 - -.global gUnknown_816A1B4 -gUnknown_816A1B4: @ 816A1B4 -.byte 0xf6, 0x00, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A214 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816A214 -gUnknown_816A214: @ 816A214 -.string " You{APOSTROPHE}ll be fine!\n" -.string "Go with confidence!\0" -.align 2, 0 - -.global gUnknown_816A23C -gUnknown_816A23C: @ 816A23C -.byte 0xf6, 0x00, 0x37, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A29C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816A29C -gUnknown_816A29C: @ 816A29C -.string " Get it done the next time!\n" -.string "Keep at it!\0" -.align 2, 0 - -.global gUnknown_816A2C4 -gUnknown_816A2C4: @ 816A2C4 -.byte 0xf6, 0x00, 0x40, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A324 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816A324 -gUnknown_816A324: @ 816A324 -.string " IT{APOSTROPHE}S NOT OVER YET!\n" -.string "BZBZBZZ!\0" -.align 2, 0 - -.global gUnknown_816A344 -gUnknown_816A344: @ 816A344 -.byte 0xf6, 0x00, 0x49, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A3A4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816A3A4 -gUnknown_816A3A4: @ 816A3A4 -.string " THE TIME IS NOW!\n" -.string "SAVE THE WORLD! BZBZBZZ!\0" -.align 2, 0 - -.global gUnknown_816A3D0 -gUnknown_816A3D0: @ 816A3D0 -.byte 0xf6, 0x00, 0x52, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816A440 -gUnknown_816A440: @ 816A440 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A3D0 - -.global gUnknown_816A44C -gUnknown_816A44C: @ 816A44C -.byte 0xf6, 0x00, 0x5e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x99, 0x00, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_816A48C -gUnknown_816A48C: @ 816A48C -.byte 0xf6, 0x00, 0x65, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816A4CC -gUnknown_816A4CC: @ 816A4CC -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A48C - -.global gUnknown_816A4D8 -gUnknown_816A4D8: @ 816A4D8 -.byte 0xf6, 0x00, 0x6e, 0x30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00 -.byte 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A60C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A5BC -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A5A8 -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816A5A8 -gUnknown_816A5A8: @ 816A5A8 -.string " Thank you so much!\0" -.align 2, 0 - -.global gUnknown_816A5BC -gUnknown_816A5BC: @ 816A5BC -.string " Now that peace has been\n" -.string "restored{COMMA} I can sell my wares with\n" -.string "peace of mind.\0" -.align 2, 0 - -.global gUnknown_816A60C -gUnknown_816A60C: @ 816A60C -.string " Yes! You did it{COMMA}\n" -.string "{ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_816A628 -gUnknown_816A628: @ 816A628 -.byte 0xf6, 0x00, 0x7e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x50, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x01, 0x26, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x18, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816A6D8 -gUnknown_816A6D8: @ 816A6D8 -.byte 0xf6, 0x00, 0x8c, 0x30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00 -.byte 0x50, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x50, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A788 -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816A788 -gUnknown_816A788: @ 816A788 -.string " Peace has returned!\n" -.string "Thank you{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_816A7B0 -gUnknown_816A7B0: @ 816A7B0 -.byte 0xf6, 0x00, 0x9a, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x50, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A860 -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816A860 -gUnknown_816A860: @ 816A860 -.string " Thank you so much!\n" -.string "I can keep my shop running{COMMA} thanks to you!\0" -.align 2, 0 - -.global gUnknown_816A8A4 -gUnknown_816A8A4: @ 816A8A4 -.byte 0xf6, 0x00, 0xa8, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x50, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A954 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816A954 -gUnknown_816A954: @ 816A954 -.string " You did it! Good for you!\n" -.string "That is so cool!\0" -.align 2, 0 - -.global gUnknown_816A980 -gUnknown_816A980: @ 816A980 -.byte 0xf6, 0x00, 0xb6, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x50, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816AA30 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816AA30 -gUnknown_816AA30: @ 816AA30 -.string " It{APOSTROPHE}s peaceful again!\n" -.string "Thank you! I never expected less from\n" -.string "you{COMMA} my friend!\0" -.align 2, 0 - -.global gUnknown_816AA80 -gUnknown_816AA80: @ 816AA80 -.byte 0xf6, 0x00, 0xc4, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816AAE0 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816AAE0 -gUnknown_816AAE0: @ 816AAE0 -.string " You guys were amazing...{WAIT_PRESS}\n" -.string "Truly{COMMA} you{APOSTROPHE}ve impressed me.\0" -.align 2, 0 - -.global gUnknown_816AB1C -gUnknown_816AB1C: @ 816AB1C -.byte 0xf6, 0x00, 0xcd, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816AB7C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816AB7C -gUnknown_816AB7C: @ 816AB7C -.string " You{APOSTROPHE}ve done it{COMMA}\n" -.string "{ARG_NICKNAME_0}!\n" -.string "You{APOSTROPHE}re the greatest! Really!\0" -.align 2, 0 - -.global gUnknown_816ABB8 -gUnknown_816ABB8: @ 816ABB8 -.byte 0xf6, 0x00, 0xd6, 0x30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816AC68 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816AC38 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816AC38 -gUnknown_816AC38: @ 816AC38 -.string " ...But you{APOSTROPHE}re still not up to\n" -.string "our caliber!\0" -.align 2, 0 - -.global gUnknown_816AC68 -gUnknown_816AC68: @ 816AC68 -.string " {ARG_NICKNAME_0}! {ARG_NICKNAME_2}!\n" -.string "You both hung in there! Great job!\0" -.align 2, 0 - -.global gUnknown_816AC98 -gUnknown_816AC98: @ 816AC98 -.byte 0xf6, 0x00, 0xe1, 0x30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816AD38 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816AD08 -.byte 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816AD08 -gUnknown_816AD08: @ 816AD08 -.string " ...Of course{COMMA} we did our bit\n" -.string "to help too!\0" -.align 2, 0 - -.global gUnknown_816AD38 -gUnknown_816AD38: @ 816AD38 -.string " We{APOSTROPHE}re here now because\n" -.string "you succeeded! You have my thanks!\0" -.align 2, 0 - -.global gUnknown_816AD78 -gUnknown_816AD78: @ 816AD78 -.byte 0xf6, 0x00, 0xeb, 0x30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816ADD8 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816ADD8 -gUnknown_816ADD8: @ 816ADD8 -.string " THANK YOU{COMMA} BZBZBZZ!\0" -.align 2, 0 - -.global gUnknown_816ADF0 -gUnknown_816ADF0: @ 816ADF0 -.byte 0xf6, 0x00, 0xf4, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816AE50 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816AE50 -gUnknown_816AE50: @ 816AE50 -.string " AWESOME! AWESOME!\n" -.string "BZBZBZZZT!\0" -.align 2, 0 - -.global gUnknown_816AE70 -gUnknown_816AE70: @ 816AE70 -.byte 0xf6, 0x00, 0xfd, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816AF74 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816AF28 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816AF00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816AF00 -gUnknown_816AF00: @ 816AF00 -.string " {ARG_NICKNAME_0} and\n" -.string "{ARG_NICKNAME_2}{COMMA} please do take care!\0" -.align 2, 0 - -.global gUnknown_816AF28 -gUnknown_816AF28: @ 816AF28 -.string " Sincerely{COMMA} thank you for\n" -.string "all the help and kindness you{APOSTROPHE}ve given us.\0" -.align 2, 0 - -.global gUnknown_816AF74 -gUnknown_816AF74: @ 816AF74 -.string " We will soon be departing\n" -.string "the area.\0" -.align 2, 0 - -.global gUnknown_816AF9C -gUnknown_816AF9C: @ 816AF9C -.byte 0xf6, 0x00, 0x09, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816B0E0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816B094 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816B06C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816B03C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816B03C -gUnknown_816B03C: @ 816B03C -.string " Thank you for everything.{WAIT_PRESS}\n" -.string "May we meet again.\0" -.align 2, 0 - -.global gUnknown_816B06C -gUnknown_816B06C: @ 816B06C -.string " {ARG_NICKNAME_0} and\n" -.string "{ARG_NICKNAME_2}{COMMA} we owe so much to you.\0" -.align 2, 0 - -.global gUnknown_816B094 -gUnknown_816B094: @ 816B094 -.string " We Jumpluff travel the\n" -.string "world{COMMA} carried wherever the winds will\n" -.string "take us.\0" -.align 2, 0 - -.global gUnknown_816B0E0 -gUnknown_816B0E0: @ 816B0E0 -.string " We will soon be leaving\n" -.string "this area.\0" -.align 2, 0 - -.global gUnknown_816B104 -gUnknown_816B104: @ 816B104 -.byte 0xf6, 0x00, 0x16, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0d, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816B144 -gUnknown_816B144: @ 816B144 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816B104 - -.global gUnknown_816B150 -gUnknown_816B150: @ 816B150 -.byte 0xf6, 0x00, 0x1f, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816B400 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816B3A8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816B360 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153AEC -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816B32C -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816B310 -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816B310 -gUnknown_816B310: @ 816B310 -.string " Thank you ever so much!\0" -.align 2, 0 - -.global gUnknown_816B32C -gUnknown_816B32C: @ 816B32C -.string " {ARG_NICKNAME_0} and\n" -.string "{ARG_NICKNAME_1}...{WAIT_PRESS}\n" -.string "We only have gratitude for you.\0" -.align 2, 0 - -.global gUnknown_816B360 -gUnknown_816B360: @ 816B360 -.string " It isn{APOSTROPHE}t just you{COMMA} my brother.{WAIT_PRESS}\n" -.string "I am likewise overcome with joy.\0" -.align 2, 0 - -.global gUnknown_816B3A8 -gUnknown_816B3A8: @ 816B3A8 -.string " Knowing that the square will\n" -.string "be safe...{WAIT_PRESS} That made me...{WAIT_PRESS}\n" -.string "It left me choked up...\0" -.align 2, 0 - -.global gUnknown_816B400 -gUnknown_816B400: @ 816B400 -.string " I{APOSTROPHE}m all shaken up with\n" -.string "emotion!\0" -.align 2, 0 - -.global gUnknown_816B424 -gUnknown_816B424: @ 816B424 -.byte 0xf6, 0x00, 0x3e, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, east -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816B4D4 -gUnknown_816B4D4: @ 816B4D4 -.byte 0xf6, 0x00, 0x4c, 0x31, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816B5F0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816B5A4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816B310 -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816B5A4 -gUnknown_816B5A4: @ 816B5A4 -.string " Because peace has been\n" -.string "restored{COMMA} I may go about securely in my\n" -.string "business.\0" -.align 2, 0 - -.global gUnknown_816B5F0 -gUnknown_816B5F0: @ 816B5F0 -.string " Oh{COMMA} my{COMMA} you{APOSTROPHE}ve outdone\n" -.string "yourself{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_816B620 -gUnknown_816B620: @ 816B620 -.byte 0xf6, 0x00, 0x5c, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, west -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x54, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816B6F0 -gUnknown_816B6F0: @ 816B6F0 -.byte 0xf6, 0x00, 0x6c, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x50, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x01, 0x26, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816B7A0 -gUnknown_816B7A0: @ 816B7A0 -.byte 0xf6, 0x00, 0x7a, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd5, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816BBD0 -.byte 0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B7A8 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B7A4 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3b, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816BBC4 -.byte 0x49, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816BBA8 -.byte 0xe1, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x3b, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd3, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816BB90 -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8140158 -.byte 0xd9, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B7A4 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3b, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x04, 0x00, 0x20, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0xff, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816BB7C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816BB24 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816BAC4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816BAA8 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816BA98 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816BA40 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816BAC4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816BAA8 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816BA40 -gUnknown_816BA40: @ 816BA40 -.string " There still is no room for\n" -.string "me in the Friend Area I must go to...\n" -.string "How disappointing...\0" -.align 2, 0 - -.global gUnknown_816BA98 -gUnknown_816BA98: @ 816BA98 -.string " Oh{COMMA} I see...\0" -.align 2, 0 - -.global gUnknown_816BAA8 -gUnknown_816BAA8: @ 816BAA8 -.string " Please let me know then.\0" -.align 2, 0 - -.global gUnknown_816BAC4 -gUnknown_816BAC4: @ 816BAC4 -.string " I would be able to join your\n" -.string "rescue team if there were less Pokémon\n" -.string "in {COLOR_1 GREEN}Sky Blue Plains{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_816BB24 -gUnknown_816BB24: @ 816BB24 -.string " ...But there appears to be\n" -.string "no room for me in my Friend Area...{WAIT_PRESS}\n" -.string "How disappointing...\0" -.align 2, 0 - -.global gUnknown_816BB7C -gUnknown_816BB7C: @ 816BB7C -.string " Yes!\n" -.string "Thank you!\0" -.align 2, 0 - -.global gUnknown_816BB90 -gUnknown_816BB90: @ 816BB90 -.string "Give a nickname to {ARG_NICKNAME_1}?\0" -.align 2, 0 - -.global gUnknown_816BBA8 -gUnknown_816BBA8: @ 816BBA8 -.string "{CENTER_ALIGN}{ARG_NICKNAME_1} \n" -.string "{CENTER_ALIGN}became a member!\0" -.align 2, 0 - -.global gUnknown_816BBC4 -gUnknown_816BBC4: @ 816BBC4 -.string " Thank you!\0" -.align 2, 0 - -.global gUnknown_816BBD0 -gUnknown_816BBD0: @ 816BBD0 -.string " Have you made room so\n" -.string "I may join your rescue team?\0" -.align 2, 0 - -.global gUnknown_816BC04 -gUnknown_816BC04: @ 816BC04 -.byte 0xf6, 0x00, 0xa7, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816BC34 -gUnknown_816BC34: @ 816BC34 -.byte 0xf6, 0x00, 0xad, 0x31, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C350 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C308 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x01, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C2E4 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B7A8 -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B7A4 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C2C8 -.byte 0xa4, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C290 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C264 -.byte 0x2e, 0x15, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C210 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C1D8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C198 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C164 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C130 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C0F4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 5 -.byte 0xdb, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C0B4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C074 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C044 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C014 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa4, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x04, 0x05, 0x00, 0x21, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x05, 0x00, 0x21, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816C014 -gUnknown_816C014: @ 816C014 -.string " Yeah{COMMA} that{APOSTROPHE}d be best.\n" -.string "Go talk to Whiscash.\0" -.align 2, 0 - -.global gUnknown_816C044 -gUnknown_816C044: @ 816C044 -.string " I know!{WAIT_PRESS}\n" -.string "Maybe Whiscash would know something.\0" -.align 2, 0 - -.global gUnknown_816C074 -gUnknown_816C074: @ 816C074 -.string " I vamoosed it out of there{COMMA}\n" -.string "so I can{APOSTROPHE}t tell you much...\0" -.align 2, 0 - -.global gUnknown_816C0B4 -gUnknown_816C0B4: @ 816C0B4 -.string " Huh?{WAIT_PRESS}\n" -.string "You want to know more about that\n" -.string "dungeon in the sea?\0" -.align 2, 0 - -.global gUnknown_816C0F4 -gUnknown_816C0F4: @ 816C0F4 -.string " But who{APOSTROPHE}d{APOSTROPHE}ve guessed it?\n" -.string "A dungeon in a stormy sea!\0" -.align 2, 0 - -.global gUnknown_816C130 -gUnknown_816C130: @ 816C130 -.string " I was shocked witless!\n" -.string "I got out of there fast!\0" -.align 2, 0 - -.global gUnknown_816C164 -gUnknown_816C164: @ 816C164 -.string " There{APOSTROPHE}s more!{WAIT_PRESS}\n" -.string "A dungeon appeared in the sea!\0" -.align 2, 0 - -.global gUnknown_816C198 -gUnknown_816C198: @ 816C198 -.string " And before I knew it{COMMA} there\n" -.string "was a full-blown storm raging!\0" -.align 2, 0 - -.global gUnknown_816C1D8 -gUnknown_816C1D8: @ 816C1D8 -.string " All of a sudden{COMMA} these\n" -.string "wicked clouds rolled in...\0" -.align 2, 0 - -.global gUnknown_816C210 -gUnknown_816C210: @ 816C210 -.string " So{COMMA} I was having fun\n" -.string "going underwater...{WAIT_PRESS}\n" -.string "And I got washed out to sea a bit.\0" -.align 2, 0 - -.global gUnknown_816C264 -gUnknown_816C264: @ 816C264 -.string " You know?{WAIT_PRESS}\n" -.string "I was trying that Dive thing.\0" -.align 2, 0 - -.global gUnknown_816C290 -gUnknown_816C290: @ 816C290 -.string " See{COMMA} I went out to the sea\n" -.string "to frolic a while back.\0" -.align 2, 0 - -.global gUnknown_816C2C8 -gUnknown_816C2C8: @ 816C2C8 -.string " Tch! Fine{COMMA} then!\n" -.string "Humph!\0" -.align 2, 0 - -.global gUnknown_816C2E4 -gUnknown_816C2E4: @ 816C2E4 -.string " Want to know what really\n" -.string "happened?\0" -.align 2, 0 - -.global gUnknown_816C308 -gUnknown_816C308: @ 816C308 -.string " I wasn{APOSTROPHE}t drowning!{WAIT_PRESS}\n" -.string "Sheesh{COMMA} they{APOSTROPHE}re making up stories about\n" -.string "me!\0" -.align 2, 0 - -.global gUnknown_816C350 -gUnknown_816C350: @ 816C350 -.string " Huh? What{APOSTROPHE}s that?{WAIT_PRESS}\n" -.string "...Oh{COMMA} you mean what happened at sea?\0" -.align 2, 0 - -.global gUnknown_816C390 -gUnknown_816C390: @ 816C390 -.byte 0xf6, 0x00, 0xf0, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x92, 0x04, 0x0b, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x92, 0x04, 0x0b, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816C510 -gUnknown_816C510: @ 816C510 -.byte 0xf6, 0x00, 0x0b, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816C540 -gUnknown_816C540: @ 816C540 -.byte 0xf6, 0x00, 0x11, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C918 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C8D0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C890 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C840 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C80C -.byte 0xd5, 0x01, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C7BC -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B7A8 -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B7A4 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C784 -.byte 0xd5, 0x01, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C7BC -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B7A8 -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B7A4 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C760 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C740 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xba, 0x04, 0x05, 0x00, 0x22, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x05, 0x00, 0x22, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816C740 -gUnknown_816C740: @ 816C740 -.string " I hope for the best from\n" -.string "you.\0" -.align 2, 0 - -.global gUnknown_816C760 -gUnknown_816C760: @ 816C760 -.string " Ah{COMMA} good.\n" -.string "You accept the job.\0" -.align 2, 0 - -.global gUnknown_816C784 -gUnknown_816C784: @ 816C784 -.string " Feeling contrary today?{WAIT_PRESS}\n" -.string "We need your help{COMMA} please.\0" -.align 2, 0 - -.global gUnknown_816C7BC -gUnknown_816C7BC: @ 816C7BC -.string " Will you travel to the\n" -.string "{COLOR_1 GREEN}Legendary Island{END_COLOR_TEXT_1} and observe what is\n" -.string "taking place?\0" -.align 2, 0 - -.global gUnknown_816C80C -gUnknown_816C80C: @ 816C80C -.string " The {COLOR_1 GREEN}Legendary Island{END_COLOR_TEXT_1}\n" -.string "belongs to your team.\0" -.align 2, 0 - -.global gUnknown_816C840 -gUnknown_816C840: @ 816C840 -.string " It hasn{APOSTROPHE}t caused any damage\n" -.string "so far as I know...{WAIT_PRESS}\n" -.string "But it does concern me.\0" -.align 2, 0 - -.global gUnknown_816C890 -gUnknown_816C890: @ 816C890 -.string " It is said to be near the\n" -.string "{COLOR_1 GREEN}Legendary Island{END_COLOR_TEXT_1} Friend Area.\0" -.align 2, 0 - -.global gUnknown_816C8D0 -gUnknown_816C8D0: @ 816C8D0 -.string " They say a whirlpool\n" -.string "stretches from sea to sky in a\n" -.string "colossal tornado.\0" -.align 2, 0 - -.global gUnknown_816C918 -gUnknown_816C918: @ 816C918 -.string " I have heard of a weather\n" -.string "anomaly afflicting a certain sea.\0" -.align 2, 0 - -.global gUnknown_816C958 -gUnknown_816C958: @ 816C958 -.byte 0xf6, 0x00, 0x36, 0x32 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816CA38 -gUnknown_816CA38: @ 816CA38 -.byte 0xf6, 0x00, 0x47, 0x32 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816CB3C -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816CB00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816CAC8 -.byte 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816CAC8 -gUnknown_816CAC8: @ 816CAC8 -.string " I wish there was some\n" -.string "pizzazz to spice things up...\0" -.align 2, 0 - -.global gUnknown_816CB00 -gUnknown_816CB00: @ 816CB00 -.string " There{APOSTROPHE}s also been no\n" -.string "excitement. It{APOSTROPHE}s a little sad.\0" -.align 2, 0 - -.global gUnknown_816CB3C -gUnknown_816CB3C: @ 816CB3C -.string " It{APOSTROPHE}s cool and all that it{APOSTROPHE}s\n" -.string "peaceful{COMMA} but...\0" -.align 2, 0 - -.global gUnknown_816CB70 -gUnknown_816CB70: @ 816CB70 -.byte 0xf6, 0x00, 0x53, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x11, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816CBA0 -gUnknown_816CBA0: @ 816CBA0 -.byte 0xf6, 0x00, 0x59, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816CC44 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816CC20 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816CC20 -gUnknown_816CC20: @ 816CC20 -.string " Ahh... Another refreshing\n" -.string "day...\0" -.align 2, 0 - -.global gUnknown_816CC44 -gUnknown_816CC44: @ 816CC44 -.string " Good morning.\0" -.align 2, 0 - -.global gUnknown_816CC54 -gUnknown_816CC54: @ 816CC54 -.byte 0xf6, 0x00, 0x64, 0x32, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816CCB4 -gUnknown_816CCB4: @ 816CCB4 -.byte 0xf6, 0x00, 0x6d, 0x32, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816CD14 -gUnknown_816CD14: @ 816CD14 -.byte 0xf6, 0x00, 0x76, 0x32, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816CD74 -gUnknown_816CD74: @ 816CD74 -.byte 0xf6, 0x00, 0x7f, 0x32, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816CDD4 -gUnknown_816CDD4: @ 816CDD4 -.byte 0xf6, 0x00, 0x88, 0x32, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816CE34 -gUnknown_816CE34: @ 816CE34 -.byte 0xf6, 0x00, 0x91, 0x32, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x1d, 0x00, 0x2b, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816CE64 -gUnknown_816CE64: @ 816CE64 -.byte 0x39, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816CE34 - -.global gUnknown_816CE70 -gUnknown_816CE70: @ 816CE70 -.byte 0xf6, 0x00, 0x99, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816CEF0 -gUnknown_816CEF0: @ 816CEF0 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816CE70 - -.global gUnknown_816CEFC -gUnknown_816CEFC: @ 816CEFC -.byte 0xf6, 0x00, 0xa6, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_816CF4C -gUnknown_816CF4C: @ 816CF4C -.byte 0xf6, 0x00, 0xae, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x11, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816D2C4 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816D2A8 -closeTextBox -pause 0x0a -rotate 0x04, shortestDir, west -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816D268 -closeTextBox -.byte 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -setFlag 0x06 -rotate 0x04, shortestDir, west -pause 0x14 -setFlag 0x04 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x58, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 0x38, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -setFlag 0x07 -setFlag 0x08 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816D240 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816D228 -closeTextBox -pause 0x0a -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816D20C -closeTextBox -setFlag 0x03 -setFlag 0x08 -setFlag 0x07 -setFlag 0x06 -.byte 0x6a, 0x00, 0xcc, 0x01, 0x60, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_816D20C -gUnknown_816D20C: @ 816D20C -.string " Goodness!{WAIT_PRESS}\n" -.string "It needs help!\0" -.align 2, 0 - -.global gUnknown_816D228 -gUnknown_816D228: @ 816D228 -.string " I{APOSTROPHE}m falling down...\0" -.align 2, 0 - -.global gUnknown_816D240 -gUnknown_816D240: @ 816D240 -.string " No more...{WAIT_PRESS}\n" -.string "I can{APOSTROPHE}t walk anymore...\0" -.align 2, 0 - -.global gUnknown_816D268 -gUnknown_816D268: @ 816D268 -.string " Never seen it before.{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s not from around these parts.\0" -.align 2, 0 - -.global gUnknown_816D2A8 -gUnknown_816D2A8: @ 816D2A8 -.string " Who is that? Over there.\0" -.align 2, 0 - -.global gUnknown_816D2C4 -gUnknown_816D2C4: @ 816D2C4 -.string " Oh?\0" -.align 2, 0 - -.global gUnknown_816D2CC -gUnknown_816D2CC: @ 816D2CC -.byte 0xf6, 0x00, 0xe1, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x58, 0x01, 0x00, 0x00, 0xd0, 0x01, 0x00, 0x00, 0x50, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6a, 0x00, 0xcc, 0x01, 0x38, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816D39C -gUnknown_816D39C: @ 816D39C -.byte 0xf6, 0x00, 0xf1, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe2, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x01, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x38, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0xcc, 0x01, 0x38, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_816D48C -gUnknown_816D48C: @ 816D48C -.byte 0xf6, 0x00, 0x03, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x01, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x50, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0xcc, 0x01, 0x38, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_816D56C -gUnknown_816D56C: @ 816D56C -.byte 0xf6, 0x00, 0x14, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -setAnimation 5 -.byte 0x6a, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x6a, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x6a, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x6a, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe2, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x29, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 15 -rotate 0x01, shortestDir, south -pause 0x0a -.byte 0xe2, 0x00, 0x29, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xfe, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -setFlag 0x05 -closeThread - -.global gUnknown_816D78C -gUnknown_816D78C: @ 816D78C -.byte 0xf6, 0x00, 0x39, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x01, 0x00, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816D874 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816D840 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816D81C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816D81C -gUnknown_816D81C: @ 816D81C -.string " I{APOSTROPHE}m as tired as tired can\n" -.string "be...\0" -.align 2, 0 - -.global gUnknown_816D840 -gUnknown_816D840: @ 816D840 -.string " I...{WAIT_PRESS}\n" -.string "I{APOSTROPHE}ve reached the limit of my endurance...\0" -.align 2, 0 - -.global gUnknown_816D874 -gUnknown_816D874: @ 816D874 -.string " I...{WAIT_PRESS}\n" -.string "I{APOSTROPHE}ve given up on ever seeing the mirage\n" -.string "Pokémon...\0" -.align 2, 0 - -.global gUnknown_816D8B4 -gUnknown_816D8B4: @ 816D8B4 -.byte 0xf6, 0x00, 0x45, 0x33, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x1d, 0x01, 0x2d, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816D8E4 -gUnknown_816D8E4: @ 816D8E4 -.byte 0xf6, 0x00, 0x4b, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x07, 0x00, 0x2b, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816D934 -gUnknown_816D934: @ 816D934 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816D8E4 - -.global gUnknown_816D940 -gUnknown_816D940: @ 816D940 -.byte 0xf6, 0x00, 0x55, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816E318 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816E2F4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816E2CC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816E2C0 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816E2A0 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816E26C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816E234 -.byte 0x3b, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816E1F4 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816E1E4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816E1B4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816E184 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816E158 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816E124 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816E0E8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816E08C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816E078 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816E034 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816E008 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816DFC8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816DF98 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816DF58 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816DF3C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816DF10 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816E124 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816E0E8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816DED0 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816DE80 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0xe0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x8e, 0x0f, 0x0a, 0x00, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816DE80 -gUnknown_816DE80: @ 816DE80 -.string " I will keep the memory...{WAIT_PRESS}\n" -.string "in a special place deep in my heart!{WAIT_PRESS}\n" -.string "Farewell!\0" -.align 2, 0 - -.global gUnknown_816DED0 -gUnknown_816DED0: @ 816DED0 -.string " My meeting you...\n" -.string "It will be a memory I will cherish\n" -.string "forever!\0" -.align 2, 0 - -.global gUnknown_816DF10 -gUnknown_816DF10: @ 816DF10 -.string " The lesson is we mustn{APOSTROPHE}t\n" -.string "ever give up!\0" -.align 2, 0 - -.global gUnknown_816DF3C -gUnknown_816DF3C: @ 816DF3C -.string " I feel giddily elated...\0" -.align 2, 0 - -.global gUnknown_816DF58 -gUnknown_816DF58: @ 816DF58 -.string " Never...{WAIT_PRESS}\n" -.string "Never did I expect to meet the mirage\n" -.string "Pokémon...\0" -.align 2, 0 - -.global gUnknown_816DF98 -gUnknown_816DF98: @ 816DF98 -.string " But I...{WAIT_PRESS}\n" -.string "I{APOSTROPHE}m feeling overcome by emotion.\0" -.align 2, 0 - -.global gUnknown_816DFC8 -gUnknown_816DFC8: @ 816DFC8 -.string " And you even came to my\n" -.string "aid when I was down...{WAIT_PRESS}\n" -.string "Thank you...\0" -.align 2, 0 - -.global gUnknown_816E008 -gUnknown_816E008: @ 816E008 -.string " I{APOSTROPHE}m so sorry I keeled over\n" -.string "like that...\0" -.align 2, 0 - -.global gUnknown_816E034 -gUnknown_816E034: @ 816E034 -.string " My head...{WAIT_PRESS} Is spinning...{WAIT_PRESS}\n" -.string "My head{APOSTROPHE}s spinning...{WAIT_PRESS} Waaaaaah!\0" -.align 2, 0 - -.global gUnknown_816E078 -gUnknown_816E078: @ 816E078 -.string " Waaaaaaaaaaaah!\0" -.align 2, 0 - -.global gUnknown_816E08C -gUnknown_816E08C: @ 816E08C -.string " I will again travel the\n" -.string "world to find rare Pokémon{COMMA} perhaps even\n" -.string "before you.{WAIT_PRESS} Farewell!\0" -.align 2, 0 - -.global gUnknown_816E0E8 -gUnknown_816E0E8: @ 816E0E8 -.string " Thank you!{WAIT_PRESS}\n" -.string "You have inspired me to resume my\n" -.string "travels!\0" -.align 2, 0 - -.global gUnknown_816E124 -gUnknown_816E124: @ 816E124 -.string " Because if you give up{COMMA}\n" -.string "that{APOSTROPHE}s when it ends!\0" -.align 2, 0 - -.global gUnknown_816E158 -gUnknown_816E158: @ 816E158 -.string " The lesson is: we mustn{APOSTROPHE}t\n" -.string "ever give up!\0" -.align 2, 0 - -.global gUnknown_816E184 -gUnknown_816E184: @ 816E184 -.string " Well{COMMA} they still look googly{COMMA}\n" -.string "but still...\0" -.align 2, 0 - -.global gUnknown_816E1B4 -gUnknown_816E1B4: @ 816E1B4 -.string " I...{WAIT_PRESS} You...{WAIT_PRESS}\n" -.string "You{APOSTROPHE}ve made me open my eyes!\0" -.align 2, 0 - -.global gUnknown_816E1E4 -gUnknown_816E1E4: @ 816E1E4 -.string " Wroooooooah!\0" -.align 2, 0 - -.global gUnknown_816E1F4 -gUnknown_816E1F4: @ 816E1F4 -.string " ...Wait!{WAIT_PRESS} Huh?!{WAIT_PRESS}\n" -.string "You are!{WAIT_PRESS} You are the one-and-only Ho-Oh?!\0" -.align 2, 0 - -.global gUnknown_816E234 -gUnknown_816E234: @ 816E234 -.string " Ah{COMMA} I see indeed!{WAIT_PRESS}\n" -.string "Truly!{WAIT_PRESS} Truly{COMMA} I envy you!\0" -.align 2, 0 - -.global gUnknown_816E26C -gUnknown_816E26C: @ 816E26C -.string " ...Ah... Understood.\n" -.string "So{COMMA} it is named Ho-Oh...\0" -.align 2, 0 - -.global gUnknown_816E2A0 -gUnknown_816E2A0: @ 816E2A0 -.string " ............I see{COMMA} I see.\0" -.align 2, 0 - -.global gUnknown_816E2C0 -gUnknown_816E2C0: @ 816E2C0 -.string " ...I see.\0" -.align 2, 0 - -.global gUnknown_816E2CC -gUnknown_816E2CC: @ 816E2CC -.string " Wh-wh-what sort of a\n" -.string "Pokémon was it?!\0" -.align 2, 0 - -.global gUnknown_816E2F4 -gUnknown_816E2F4: @ 816E2F4 -.string " You{APOSTROPHE}ve seen the mirage\n" -.string "Pokémon?!\0" -.align 2, 0 - -.global gUnknown_816E318 -gUnknown_816E318: @ 816E318 -.string " Wh-wh-wh-what?!\0" -.align 2, 0 - -.global gUnknown_816E32C -gUnknown_816E32C: @ 816E32C -.byte 0xf6, 0x00, 0xad, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -pause 0x3c -setAnimation 15 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3b, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -pause 0x3c -setAnimation 15 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xfa, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 17 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xfa, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xfe, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -setAnimation 2 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -pause 0x50 -setAnimation 2 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe2, 0x00, 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -pause 0x50 -setAnimation 22 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xfe, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -setAnimation 5 -rotate 0x04, shortestDir, south -pause 0x1e -.byte 0x6a, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -pause 0x3c -.byte 0x6a, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x6a, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x6a, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x6a, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -setFlag 0x05 -pause 0x1e -.byte 0x6a, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x6a, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -pause 0x1e -.byte 0x6a, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x6a, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816E8BC -gUnknown_816E8BC: @ 816E8BC -.byte 0xf6, 0x00, 0x09, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816E97C -gUnknown_816E97C: @ 816E97C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816E8BC - -.global gUnknown_816E988 -gUnknown_816E988: @ 816E988 -.byte 0xf6, 0x00, 0x1a, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x98, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01 -.byte 0xe0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816E9F8 -gUnknown_816E9F8: @ 816E9F8 -.byte 0xf6, 0x00, 0x24, 0x34 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x05, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817092C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81708FC -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81708CC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81708BC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817088C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8170880 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817084C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8170880 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8170820 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815667C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81707E8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8170880 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8170798 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8170880 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x6b, 0x00, 0x00, 0x01 -.byte 0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817076C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8170714 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81706F8 -closeTextBox -.byte 0xd5, 0x01, 0xff, 0xff -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81706C8 -.byte 0xd9, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81706BC -.byte 0xd9, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81706B0 -.byte 0xd9, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81706AC -.byte 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8170684 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8170650 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8170628 -closeTextBox -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81705EC -closeTextBox -.byte 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xa6, 0x00, 0x39, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x07, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x11, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81705C4 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81705A0 -.byte 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81705C4 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81705C4 -.byte 0x35, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81704E0 -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817049C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817046C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8170460 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8170448 -.byte 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8170404 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81703E0 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81703D8 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81703AC -.byte 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8170374 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x2e, 0x15, 0x03, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8170338 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817030C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81702E0 -.byte 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81702AC -closeTextBox -.byte 0x48, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817028C -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0x93, 0x04, 0x0a, 0x00 -.byte 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe4, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0x62, 0x00, 0x80, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8170274 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8170250 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817021C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x06, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x07, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81701EC -.byte 0x34, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81701C0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0x56, 0x00, 0x00, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81701A8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8170164 -.byte 0x34, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817011C -.byte 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81700E8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81700D0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x34, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8170094 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8170064 -closeTextBox -.byte 0xe4, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8170020 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8170008 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x12, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816FFCC -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816FF78 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816FF48 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816FF14 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816FEFC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0x2e, 0x15, 0x05, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8170880 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816FED0 -.byte 0x47, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816FE98 -.byte 0xe1, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x23, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_816FE98 -gUnknown_816FE98: @ 816FE98 -.string "{CENTER_ALIGN}The {COLOR_1 YELLOW_4}Western Cave{END_COLOR_TEXT_1}\n" -.string "{CENTER_ALIGN}is now open for exploration!\0" -.align 2, 0 - -.global gUnknown_816FED0 -gUnknown_816FED0: @ 816FED0 -.string "{CENTER_ALIGN}The cave shunned\n" -.string "{CENTER_ALIGN}by all out of fear...\0" -.align 2, 0 - -.global gUnknown_816FEFC -gUnknown_816FEFC: @ 816FEFC -.string " I{APOSTROPHE}m scared too...\0" -.align 2, 0 - -.global gUnknown_816FF14 -gUnknown_816FF14: @ 816FF14 -.string " Going anywhere like that{APOSTROPHE}d\n" -.string "be too scary by half!\0" -.align 2, 0 - -.global gUnknown_816FF48 -gUnknown_816FF48: @ 816FF48 -.string " I still don{APOSTROPHE}t feel like going\n" -.string "out there...\0" -.align 2, 0 - -.global gUnknown_816FF78 -gUnknown_816FF78: @ 816FF78 -.string " ...But{COMMA} you know?{WAIT_PRESS}\n" -.string "So we now know that Pokémon is in the\n" -.string "{COLOR_1 YELLOW_4}Western Cave{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_816FFCC -gUnknown_816FFCC: @ 816FFCC -.string " ...Wow{COMMA} it really exists...{WAIT_PRESS}\n" -.string "A Pokémon that tough...\0" -.align 2, 0 - -.global gUnknown_8170008 -gUnknown_8170008: @ 8170008 -.string " I{APOSTROPHE}ll go get someone!\0" -.align 2, 0 - -.global gUnknown_8170020 -gUnknown_8170020: @ 8170020 -.string " Oh{COMMA} my gosh!\n" -.string "Blastoise went down{COMMA} too!{WAIT_PRESS}\n" -.string "They need help now!\0" -.align 2, 0 - -.global gUnknown_8170064 -gUnknown_8170064: @ 8170064 -.string " I never want...{WAIT_PRESS}\n" -.string "to go back again...{WAIT_PRESS} Gfwoh!\0" -.align 2, 0 - -.global gUnknown_8170094 -gUnknown_8170094: @ 8170094 -.string " There is a cave...\n" -.string "far in the west...{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s there...\0" -.align 2, 0 - -.global gUnknown_81700D0 -gUnknown_81700D0: @ 81700D0 -.string " Ch-{ARG_NICKNAME_6}!\n" -.string "Are you OK?!\0" -.align 2, 0 - -.global gUnknown_81700E8 -gUnknown_81700E8: @ 81700E8 -.string " ...It really was the most\n" -.string "powerful...{WAIT_PRESS}\n" -.string "...Gfah!\0" -.align 2, 0 - -.global gUnknown_817011C -gUnknown_817011C: @ 817011C -.string " ...But that Pokémon{APOSTROPHE}s\n" -.string "power...{WAIT_PRESS}\n" -.string "There was nothing fake about it...\0" -.align 2, 0 - -.global gUnknown_8170164 -gUnknown_8170164: @ 8170164 -.string " Grgh... There{APOSTROPHE}s no mistake...{WAIT_PRESS}\n" -.string "It said it was born to fight...\0" -.align 2, 0 - -.global gUnknown_81701A8 -gUnknown_81701A8: @ 81701A8 -.string " Wh-what did you say?!\0" -.align 2, 0 - -.global gUnknown_81701C0 -gUnknown_81701C0: @ 81701C0 -.string " ...We were wiped out by\n" -.string "that Pokémon...\0" -.align 2, 0 - -.global gUnknown_81701EC -gUnknown_81701EC: @ 81701EC -.string " Urgh...{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s what that {ARG_NICKNAME_4} was saying...\0" -.align 2, 0 - -.global gUnknown_817021C -gUnknown_817021C: @ 817021C -.string " They{APOSTROPHE}re hurt bad...{WAIT_PRESS}\n" -.string "What exactly happened?!\0" -.align 2, 0 - -.global gUnknown_8170250 -gUnknown_8170250: @ 8170250 -.string " Oh my gosh!\n" -.string "What happened to you?!\0" -.align 2, 0 - -.global gUnknown_8170274 -gUnknown_8170274: @ 8170274 -.string " {ARG_NICKNAME_6}...{WAIT_PRESS}\n" -.string "And {ARG_NICKNAME_7}...\0" -.align 2, 0 - -.global gUnknown_817028C -gUnknown_817028C: @ 817028C -.string " That rumor...{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s true...\0" -.align 2, 0 - -.global gUnknown_81702AC -gUnknown_81702AC: @ 81702AC -.string " They say it is sleeping in\n" -.string "a dungeon somewhere...\0" -.align 2, 0 - -.global gUnknown_81702E0 -gUnknown_81702E0: @ 81702E0 -.string " Rumors say...{WAIT_PRESS}\n" -.string "it is storing its power...\0" -.align 2, 0 - -.global gUnknown_817030C -gUnknown_817030C: @ 817030C -.string " Where might such a horrid\n" -.string "Pokémon be now?\0" -.align 2, 0 - -.global gUnknown_8170338 -gUnknown_8170338: @ 8170338 -.string " Th-that{APOSTROPHE}s rather a savage\n" -.string "Pokémon! I shudder to think...\0" -.align 2, 0 - -.global gUnknown_8170374 -gUnknown_8170374: @ 8170374 -.string " All it can think of is\n" -.string "defeating anything it meets.\0" -.align 2, 0 - -.global gUnknown_81703AC -gUnknown_81703AC: @ 81703AC -.string " They say it has so much\n" -.string "fighting power...\0" -.align 2, 0 - -.global gUnknown_81703D8 -gUnknown_81703D8: @ 81703D8 -.string " Yup.\0" -.align 2, 0 - -.global gUnknown_81703E0 -gUnknown_81703E0: @ 81703E0 -.string " A Pokémon...{WAIT_PRESS}\n" -.string "made for fighting?\0" -.align 2, 0 - -.global gUnknown_8170404 -gUnknown_8170404: @ 8170404 -.string " Somewhere in the world is\n" -.string "a Pokémon that was made for fighting.\0" -.align 2, 0 - -.global gUnknown_8170448 -gUnknown_8170448: @ 8170448 -.string " I heard this story...\0" -.align 2, 0 - -.global gUnknown_8170460 -gUnknown_8170460: @ 8170460 -.string " ...Um...\0" -.align 2, 0 - -.global gUnknown_817046C -gUnknown_817046C: @ 817046C -.string " I hope you never give up\n" -.string "chasing your dreams.\0" -.align 2, 0 - -.global gUnknown_817049C -gUnknown_817049C: @ 817049C -.string " ...{WAIT_PRESS}Well{COMMA} uh...{WAIT_PRESS}\n" -.string "I know you want to become tougher{COMMA} but...\0" -.align 2, 0 - -.global gUnknown_81704E0 -gUnknown_81704E0: @ 81704E0 -.string "...............................................................\n" -.string "...............................................................\n" -.string "...............................................................\0" -.align 2, 0 - -.global gUnknown_81705A0 -gUnknown_81705A0: @ 81705A0 -.string "...................................\0" -.align 2, 0 - -.global gUnknown_81705C4 -gUnknown_81705C4: @ 81705C4 -.string "....................................\0" -.align 2, 0 - -.global gUnknown_81705EC -gUnknown_81705EC: @ 81705EC -.string " Groudon is the most\n" -.string "powerful when all{APOSTROPHE}s said and done!\0" -.align 2, 0 - -.global gUnknown_8170628 -gUnknown_8170628: @ 8170628 -.string " Ah{COMMA} yes!\n" -.string "{ARG_NICKNAME_0}! Isn{APOSTROPHE}t that right!\0" -.align 2, 0 - -.global gUnknown_8170650 -gUnknown_8170650: @ 8170650 -.string " Yeah{COMMA} you bet it is!{WAIT_PRESS}\n" -.string "Rayquaza is the toughest!\0" -.align 2, 0 - -.global gUnknown_8170684 -gUnknown_8170684: @ 8170684 -.string " Oh{COMMA} yeah?\n" -.string "{ARG_NICKNAME_0}{COMMA} you think so too?\0" -.align 2, 0 - -.global gUnknown_81706AC -gUnknown_81706AC: @ 81706AC -.byte 0x4d, 0x65, 0x2e, 0x00 - -.global gUnknown_81706B0 -gUnknown_81706B0: @ 81706B0 -.string "Groudon.\0" -.align 2, 0 - -.global gUnknown_81706BC -gUnknown_81706BC: @ 81706BC -.string "Rayquaza.\0" -.align 2, 0 - -.global gUnknown_81706C8 -gUnknown_81706C8: @ 81706C8 -.string " Who do you think is the\n" -.string "most powerful Pokémon?\0" -.align 2, 0 - -.global gUnknown_81706F8 -gUnknown_81706F8: @ 81706F8 -.string " {ARG_NICKNAME_0}{COMMA} what do you\n" -.string "think?\0" -.align 2, 0 - -.global gUnknown_8170714 -gUnknown_8170714: @ 8170714 -.string " We{APOSTROPHE}re having a little\n" -.string "argument about who the most powerful\n" -.string "Pokémon happens to be.\0" -.align 2, 0 - -.global gUnknown_817076C -gUnknown_817076C: @ 817076C -.string " Hey{COMMA} you came along at\n" -.string "the right time.\0" -.align 2, 0 - -.global gUnknown_8170798 -gUnknown_8170798: @ 8170798 -.string " Legend has it that Groudon\n" -.string "shaped continents.\n" -.string "It{APOSTROPHE}s an incredible Pokémon!\0" -.align 2, 0 - -.global gUnknown_81707E8 -gUnknown_81707E8: @ 81707E8 -.string " Why{COMMA} even Alakazam{APOSTROPHE}s team\n" -.string "couldn{APOSTROPHE}t defeat it!\0" -.align 2, 0 - -.global gUnknown_8170820 -gUnknown_8170820: @ 8170820 -.string " But there{APOSTROPHE}s Groudon.\n" -.string "Isn{APOSTROPHE}t that tough?\0" -.align 2, 0 - -.global gUnknown_817084C -gUnknown_817084C: @ 817084C -.string " Who else but Rayquaza\n" -.string "would be able to do that?\0" -.align 2, 0 - -.global gUnknown_8170880 -gUnknown_8170880: @ 8170880 -.string " Wobbuffet!\0" -.align 2, 0 - -.global gUnknown_817088C -gUnknown_817088C: @ 817088C -.string " Well{COMMA} sheesh{COMMA} Rayquaza\n" -.string "destroyed a star!\0" -.align 2, 0 - -.global gUnknown_81708BC -gUnknown_81708BC: @ 81708BC -.string " Is that it?\0" -.align 2, 0 - -.global gUnknown_81708CC -gUnknown_81708CC: @ 81708CC -.string " What{COMMA} there{APOSTROPHE}s someone\n" -.string "besides Rayquaza?\0" -.align 2, 0 - -.global gUnknown_81708FC -gUnknown_81708FC: @ 81708FC -.string " Who would be the most\n" -.string "powerful Pokémon of all?\0" -.align 2, 0 - -.global gUnknown_817092C -gUnknown_817092C: @ 817092C -.string " ...I{APOSTROPHE}ve always wondered...\0" -.align 2, 0 - -.global gUnknown_817094C -gUnknown_817094C: @ 817094C -.byte 0xf6, 0x00, 0x85, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81709AC -gUnknown_81709AC: @ 81709AC -.byte 0xf6, 0x00, 0x8e, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x8a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8170D6C -gUnknown_8170D6C: @ 8170D6C -.byte 0xf6, 0x00, 0xcd, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 9 -pause 0x3c -setAnimation 2 -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x8b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x03, 0x8c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x03, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817113C -gUnknown_817113C: @ 817113C -.byte 0xf6, 0x00, 0x0d, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817145C -gUnknown_817145C: @ 817145C -.byte 0xf6, 0x00, 0x42, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817197C -gUnknown_817197C: @ 817197C -.byte 0xf6, 0x00, 0x97, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 32 -.byte 0x2d, 0x07, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6c, 0x78, 0x4c, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6c, 0x78, 0x4c, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x1e, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x4c, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 25 -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x19 -.byte 0x4c, 0x00, 0x00, 0x00, 0x90, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0x90, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8171AAC -gUnknown_8171AAC: @ 8171AAC -.byte 0xf6, 0x00, 0xad, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 33 -.byte 0x2d, 0x07, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, 0xb4, 0x4c, 0x00, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdc, 0x00, 0x1e, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x78, 0x4c, 0x00, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdc, 0x00, 0x1e, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x4c, 0x00, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x54, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 26 -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x4c, 0x00, 0x00, 0x00, 0x90, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0x90, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8171BEC -gUnknown_8171BEC: @ 8171BEC -.byte 0xf6, 0x00, 0xc4, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0f, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8171CDC -gUnknown_8171CDC: @ 8171CDC -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8171BEC - -.global gUnknown_8171CE8 -gUnknown_8171CE8: @ 8171CE8 -.byte 0xf6, 0x00, 0xd8, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0xe3, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8171D48 -gUnknown_8171D48: @ 8171D48 -.byte 0xf6, 0x00, 0xe1, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x98, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8172B3C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8172B10 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x02, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8172ADC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x91, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8172AC4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8172AA8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8172A78 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8172A3C -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x46, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81729EC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southeast -.byte 0x2e, 0x03, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81729AC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8172998 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x04, 0x02, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0x2e, 0x0f, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8172960 -.byte 0x2e, 0x0f, 0x05, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8172918 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x02, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81728D4 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0x91, 0x04, 0x01, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81728C8 -pause 0x0a -.byte 0x34, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8172898 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8172864 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8172834 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817280C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814A7F8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x11, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81727E0 -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81727C4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8172784 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817274C -.byte 0x34, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8172714 -setFlag 0x07 -.byte 0x2e, 0x11, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81726DC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81726BC -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817269C -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8172640 -.byte 0x32, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8172614 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00 -.byte 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81725D8 -.byte 0xe1, 0x00, 0xcd, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81725D8 -gUnknown_81725D8: @ 81725D8 -.string "{CENTER_ALIGN}The {COLOR_1 YELLOW_4}Northern Range{END_COLOR_TEXT_1}\n" -.string "{CENTER_ALIGN}is now open for investigation!\0" -.align 2, 0 - -.global gUnknown_8172614 -gUnknown_8172614: @ 8172614 -.string "{CENTER_ALIGN}The burglar{APOSTROPHE}s alleged\n" -.string "{CENTER_ALIGN}getaway spot...\0" -.align 2, 0 - -.global gUnknown_8172640 -gUnknown_8172640: @ 8172640 -.string "{CENTER_ALIGN}{ARG_NICKNAME_0}{APOSTROPHE}s team took on\n" -.string "{CENTER_ALIGN}the case of pursuing the burglar\n" -.string "{CENTER_ALIGN}that struck Kecleon{APOSTROPHE}s shop.\0" -.align 2, 0 - -.global gUnknown_817269C -gUnknown_817269C: @ 817269C -.string " {ARG_NICKNAME_0}.\n" -.string "Want to look into this?\0" -.align 2, 0 - -.global gUnknown_81726BC -gUnknown_81726BC: @ 81726BC -.string " {ARG_NICKNAME_0}.\n" -.string "Want to go check it out?\0" -.align 2, 0 - -.global gUnknown_81726DC -gUnknown_81726DC: @ 81726DC -.string " Yes. I beg for justice.{WAIT_PRESS}\n" -.string "My business faces ruination.\0" -.align 2, 0 - -.global gUnknown_8172714 -gUnknown_8172714: @ 8172714 -.string " So we{APOSTROPHE}ll need to investigate\n" -.string "this matter properly.\0" -.align 2, 0 - -.global gUnknown_817274C -gUnknown_817274C: @ 817274C -.string " It{APOSTROPHE}s impossible to determine\n" -.string "what the thief is...\0" -.align 2, 0 - -.global gUnknown_8172784 -gUnknown_8172784: @ 8172784 -.string " The yonder direction...{WAIT_PRESS}\n" -.string "That would be the Northern Range...\0" -.align 2, 0 - -.global gUnknown_81727C4 -gUnknown_81727C4: @ 81727C4 -.string " At tremendous speed\n" -.string "too.\0" -.align 2, 0 - -.global gUnknown_81727E0 -gUnknown_81727E0: @ 81727E0 -.string " It flew off in yonder\n" -.string "direction{COMMA} yes.\0" -.align 2, 0 - -.global gUnknown_817280C -gUnknown_817280C: @ 817280C -.string " Taken off?{WAIT_PRESS}\n" -.string "You mean it flew away?\0" -.align 2, 0 - -.global gUnknown_8172834 -gUnknown_8172834: @ 8172834 -.string " When I saw it{COMMA} it had\n" -.string "already taken off...\0" -.align 2, 0 - -.global gUnknown_8172864 -gUnknown_8172864: @ 8172864 -.string " Hmm...?{WAIT_PRESS}\n" -.string "No{COMMA} not very clearly{COMMA} I didn{APOSTROPHE}t.\0" -.align 2, 0 - -.global gUnknown_8172898 -gUnknown_8172898: @ 8172898 -.string " Tell me{COMMA} Kecleon.{WAIT_PRESS}\n" -.string "You saw...this thief?\0" -.align 2, 0 - -.global gUnknown_81728C8 -gUnknown_81728C8: @ 81728C8 -.string " Now wait.\0" -.align 2, 0 - -.global gUnknown_81728D4 -gUnknown_81728D4: @ 81728D4 -.string " You{APOSTROPHE}re insinuating...{WAIT_PRESS}\n" -.string "that we were robbed for being careless?!\0" -.align 2, 0 - -.global gUnknown_8172918 -gUnknown_8172918: @ 8172918 -.string " This mama{APOSTROPHE}s not about to\n" -.string "make a stupid mistake like that! Kakakah!\0" -.align 2, 0 - -.global gUnknown_8172960 -gUnknown_8172960: @ 8172960 -.string " No problem.{WAIT_PRESS}\n" -.string "Nothing gets stolen from under my eye.\0" -.align 2, 0 - -.global gUnknown_8172998 -gUnknown_8172998: @ 8172998 -.string " Is the storage OK?\0" -.align 2, 0 - -.global gUnknown_81729AC -gUnknown_81729AC: @ 81729AC -.string " My bank wasn{APOSTROPHE}t hit{COMMA} but...{WAIT_PRESS}\n" -.string "These are frightening times.\0" -.align 2, 0 - -.global gUnknown_81729EC -gUnknown_81729EC: @ 81729EC -.string " Many{COMMA} many TMs are simply\n" -.string "gone! Spirited away!\n" -.string "Dark clouds fill my heart!\0" -.align 2, 0 - -.global gUnknown_8172A3C -gUnknown_8172A3C: @ 8172A3C -.string " My beautiful shop...\n" -.string "My fine wares were stolen from me!\0" -.align 2, 0 - -.global gUnknown_8172A78 -gUnknown_8172A78: @ 8172A78 -.string " Up? Up? Up?!\n" -.string "How could it be up{COMMA} I ask you!\0" -.align 2, 0 - -.global gUnknown_8172AA8 -gUnknown_8172AA8: @ 8172AA8 -.string " What{APOSTROPHE}s up{COMMA} everyone?\0" -.align 2, 0 - -.global gUnknown_8172AC4 -gUnknown_8172AC4: @ 8172AC4 -.string " What{APOSTROPHE}s up{COMMA} folks?\0" -.align 2, 0 - -.global gUnknown_8172ADC -gUnknown_8172ADC: @ 8172ADC -.string " Aiyiyi...\n" -.string "I do not deserve this! I am outraged!\0" -.align 2, 0 - -.global gUnknown_8172B10 -gUnknown_8172B10: @ 8172B10 -.string " Look{COMMA} {ARG_NICKNAME_0}.\n" -.string "Everyone{APOSTROPHE}s gathered around.\0" -.align 2, 0 - -.global gUnknown_8172B3C -gUnknown_8172B3C: @ 8172B3C -.string " Hey{COMMA} {ARG_NICKNAME_0}.\n" -.string "Everyone{APOSTROPHE}s gathered around.\0" -.align 2, 0 - -.global gUnknown_8172B68 -gUnknown_8172B68: @ 8172B68 -.byte 0xf6, 0x00, 0x7c, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01 -.byte 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01 -.byte 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x46, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southeast -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northeast -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, shortestDir, north -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8172D68 -gUnknown_8172D68: @ 8172D68 -.byte 0xf6, 0x00, 0x9f, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northwest -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, north -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8172DE8 -gUnknown_8172DE8: @ 8172DE8 -.byte 0xf6, 0x00, 0xaa, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x30, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x91, 0x04, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe8, 0x00, 0x31, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x02, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd5, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northwest -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, west -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8173008 -gUnknown_8173008: @ 8173008 -.byte 0xf6, 0x00, 0xcf, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, north -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northwest -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, north -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81730A8 -gUnknown_81730A8: @ 81730A8 -.byte 0xf6, 0x00, 0xdc, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x03, CW, south -.byte 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southwest -.byte 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8173188 -gUnknown_8173188: @ 8173188 -.byte 0xf6, 0x00, 0xed, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01 -.byte 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01 -.byte 0xf8, 0xff, 0xff, 0xff, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0x91, 0x04, 0x01, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd1, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northwest -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81732B8 -gUnknown_81732B8: @ 81732B8 -.byte 0xf6, 0x00, 0x03, 0x38 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8173358 -gUnknown_8173358: @ 8173358 -.byte 0x90, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81732B8 - -.global gUnknown_8173364 -gUnknown_8173364: @ 8173364 -.byte 0xf6, 0x00, 0x12, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8173394 -gUnknown_8173394: @ 8173394 -.byte 0xf6, 0x00, 0x18, 0x38, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174E00 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x05, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174DEC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DF6C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174D9C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813DF6C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174D54 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174D10 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174CE0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x04, 0x00, 0xfd, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174CAC -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174C8C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174C58 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174C44 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174C18 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174BE4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174BB4 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174B74 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174B50 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174B18 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174AE0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174AB8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174A54 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174A20 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81749D0 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174968 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174958 -setFlag 0x06 -.byte 0x91, 0x04, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174910 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northeast -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81748C4 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817488C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174858 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174818 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81747BC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southeast -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817477C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817473C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northeast -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81746EC -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81746D0 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174690 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174644 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0x2e, 0x15, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174600 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81745AC -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174558 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817452C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81744F4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x02, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81744BC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174474 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174438 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81743F8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81743C0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -.byte 0x2e, 0x02, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81743AC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817437C -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174358 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174300 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81742C8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817425C -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174204 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x02, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81741C4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southeast -.byte 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174194 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817416C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174194 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174154 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174194 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174138 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8174104 -.byte 0xe1, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8174104 -gUnknown_8174104: @ 8174104 -.string "{CENTER_ALIGN}{ARG_NICKNAME_0} gained access to\n" -.string "{CENTER_ALIGN}the {COLOR_1 YELLOW_4}Pitfall Valley{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_8174138 -gUnknown_8174138: @ 8174138 -.string " Let{APOSTROPHE}s go rescue Latias!\0" -.align 2, 0 - -.global gUnknown_8174154 -gUnknown_8174154: @ 8174154 -.string " Let{APOSTROPHE}s go get Latias!\0" -.align 2, 0 - -.global gUnknown_817416C -gUnknown_817416C: @ 817416C -.string " Let{APOSTROPHE}s get out there and\n" -.string "help Latias!\0" -.align 2, 0 - -.global gUnknown_8174194 -gUnknown_8174194: @ 8174194 -.string " {ARG_NICKNAME_0}!{WAIT_PRESS}\n" -.string "This is a rescue that only we can do!\0" -.align 2, 0 - -.global gUnknown_81741C4 -gUnknown_81741C4: @ 81741C4 -.string " That{APOSTROPHE}s it!{WAIT_PRESS}\n" -.string "If we did that{COMMA} we could escape with\n" -.string "Latias!\0" -.align 2, 0 - -.global gUnknown_8174204 -gUnknown_8174204: @ 8174204 -.string " If you were to use the\n" -.string "{COLOR_1 GREEN_2}Teleport Gem{END_COLOR_TEXT_1} from deep within the {COLOR_1 YELLOW_4}Pitfall\n" -.string "Valley{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_817425C -gUnknown_817425C: @ 817425C -.string " While it is unlikely to\n" -.string "carry you to the sky again{COMMA} it should\n" -.string "be able to carry you a shorter distance.\0" -.align 2, 0 - -.global gUnknown_81742C8 -gUnknown_81742C8: @ 81742C8 -.string " But it got broken in the\n" -.string "falling star{APOSTROPHE}s explosion.\0" -.align 2, 0 - -.global gUnknown_8174300 -gUnknown_8174300: @ 8174300 -.string " The {COLOR_1 GREEN_2}Teleport Gem{END_COLOR_TEXT_1}?{WAIT_PRESS}\n" -.string "The one we used to get up to the sky\n" -.string "where Rayquaza lives?\0" -.align 2, 0 - -.global gUnknown_8174358 -gUnknown_8174358: @ 8174358 -.string " The {COLOR_1 GREEN_2}Teleport Gem{END_COLOR_TEXT_1}.{WAIT_PRESS}\n" -.string "Use that.\0" -.align 2, 0 - -.global gUnknown_817437C -gUnknown_817437C: @ 817437C -.string " You already have the means\n" -.string "in your possession.\0" -.align 2, 0 - -.global gUnknown_81743AC -gUnknown_81743AC: @ 81743AC -.string " You can?!{WAIT_PRESS}\n" -.string "How?!\0" -.align 2, 0 - -.global gUnknown_81743C0 -gUnknown_81743C0: @ 81743C0 -.string " No...{WAIT_PRESS} There is...{WAIT_PRESS}\n" -.string "There is but one possible way...\0" -.align 2, 0 - -.global gUnknown_81743F8 -gUnknown_81743F8: @ 81743F8 -.string " I don{APOSTROPHE}t see how we could\n" -.string "do a rescue in a place like that...\0" -.align 2, 0 - -.global gUnknown_8174438 -gUnknown_8174438: @ 8174438 -.string " But...{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s a place you can{APOSTROPHE}t escape{COMMA} isn{APOSTROPHE}t it?\0" -.align 2, 0 - -.global gUnknown_8174474 -gUnknown_8174474: @ 8174474 -.string " How are we supposed to pull\n" -.string "off a rescue from a place like that...?\0" -.align 2, 0 - -.global gUnknown_81744BC -gUnknown_81744BC: @ 81744BC -.string " But...{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s a place you can never escape{COMMA} right?\0" -.align 2, 0 - -.global gUnknown_81744F4 -gUnknown_81744F4: @ 81744F4 -.string " How foolish...{WAIT_PRESS}\n" -.string "Do you think Latias wishes for that?\0" -.align 2, 0 - -.global gUnknown_817452C -gUnknown_817452C: @ 817452C -.string " Latias wouldn{APOSTROPHE}t have to\n" -.string "be so alone...\0" -.align 2, 0 - -.global gUnknown_8174558 -gUnknown_8174558: @ 8174558 -.string " Even if I end up like her{COMMA}\n" -.string "unable to escape...{WAIT_PRESS}\n" -.string "Two would be better than one.\0" -.align 2, 0 - -.global gUnknown_81745AC -gUnknown_81745AC: @ 81745AC -.string " Latias hasn{APOSTROPHE}t been able to\n" -.string "climb out of the depths.\n" -.string "She is all alone down there.\0" -.align 2, 0 - -.global gUnknown_8174600 -gUnknown_8174600: @ 8174600 -.string " ............{WAIT_PRESS}\n" -.string "So much time has passed since my sister\n" -.string "crashed.\0" -.align 2, 0 - -.global gUnknown_8174644 -gUnknown_8174644: @ 8174644 -.string " You will wander forever{COMMA}\n" -.string "neither falling...{WAIT_PRESS}nor living...{WAIT_PRESS}\n" -.string "What then?\0" -.align 2, 0 - -.global gUnknown_8174690 -gUnknown_8174690: @ 8174690 -.string " The nether regions of the\n" -.string "{COLOR_1 YELLOW_4}Pitfall Valley{END_COLOR_TEXT_1} are a void...\0" -.align 2, 0 - -.global gUnknown_81746D0 -gUnknown_81746D0: @ 81746D0 -.string " What would you do then?\0" -.align 2, 0 - -.global gUnknown_81746EC -gUnknown_81746EC: @ 81746EC -.string " However...{WAIT_PRESS}\n" -.string "Even if you were to plumb the depths of\n" -.string "{COLOR_1 YELLOW_4}Pitfall Valley{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_817473C -gUnknown_817473C: @ 817473C -.string " For a reason so compelling{COMMA}\n" -.string "it can{APOSTROPHE}t be helped. Hahaha.\0" -.align 2, 0 - -.global gUnknown_817477C -gUnknown_817477C: @ 817477C -.string " Oh... Oh{COMMA} my!{WAIT_PRESS}\n" -.string "It is not a problem! Not a problem at all!\0" -.align 2, 0 - -.global gUnknown_81747BC -gUnknown_81747BC: @ 81747BC -.string " But that doesn{APOSTROPHE}t mean I can\n" -.string "get away with thievery.{WAIT_PRESS}\n" -.string "It was wrong{COMMA} and I{APOSTROPHE}m sorry.\0" -.align 2, 0 - -.global gUnknown_8174818 -gUnknown_8174818: @ 8174818 -.string " Yes.{WAIT_PRESS}\n" -.string "I intended to make amends after I saved\n" -.string "my sister...\0" -.align 2, 0 - -.global gUnknown_8174858 -gUnknown_8174858: @ 8174858 -.string " So that drove you to steal\n" -.string "Technical Machines...\0" -.align 2, 0 - -.global gUnknown_817488C -gUnknown_817488C: @ 817488C -.string " I made little headway...\n" -.string "I wasn{APOSTROPHE}t up to the task...\0" -.align 2, 0 - -.global gUnknown_81748C4 -gUnknown_81748C4: @ 81748C4 -.string " I went to the {COLOR_1 YELLOW_4}Pitfall Valley{END_COLOR_TEXT_1}\n" -.string "in hopes of rescuing my sister{COMMA} but...\0" -.align 2, 0 - -.global gUnknown_8174910 -gUnknown_8174910: @ 8174910 -.string " {ARG_NICKNAME_0}!{WAIT_PRESS}\n" -.string "Do you think maybe that it{APOSTROPHE}s a chunk of\n" -.string "the blown-up meteor?\0" -.align 2, 0 - -.global gUnknown_8174958 -gUnknown_8174958: @ 8174958 -.string " A meteorite?!\0" -.align 2, 0 - -.global gUnknown_8174968 -gUnknown_8174968: @ 8174968 -.string " Her wing shattered by the\n" -.string "blow{COMMA} Latias tumbled down into the\n" -.string "depths of the {COLOR_1 YELLOW_4}Pitfall Valley{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_81749D0 -gUnknown_81749D0: @ 81749D0 -.string " When suddenly{COMMA} what\n" -.string "appeared to be a meteorite struck\n" -.string "Latias on the wing...\0" -.align 2, 0 - -.global gUnknown_8174A20 -gUnknown_8174A20: @ 8174A20 -.string " Latias and I were flying\n" -.string "over the Northern Range.\0" -.align 2, 0 - -.global gUnknown_8174A54 -gUnknown_8174A54: @ 8174A54 -.string " They say that anyone so\n" -.string "unlucky to fall into the {COLOR_1 YELLOW_4}Pitfall Valley{END_COLOR_TEXT_1}...{WAIT_PRESS}\n" -.string "will never again emerge.\0" -.align 2, 0 - -.global gUnknown_8174AB8 -gUnknown_8174AB8: @ 8174AB8 -.string " It is near the {COLOR_1 YELLOW_4}Northern\n" -.string "Range{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_8174AE0 -gUnknown_8174AE0: @ 8174AE0 -.string " ...What is that?{WAIT_PRESS}\n" -.string "What is the {COLOR_1 YELLOW_4}Pitfall Valley{END_COLOR_TEXT_1}?\0" -.align 2, 0 - -.global gUnknown_8174B18 -gUnknown_8174B18: @ 8174B18 -.string " ...What is that?{WAIT_PRESS}\n" -.string "What{APOSTROPHE}s the {COLOR_1 YELLOW_4}Pitfall Valley{END_COLOR_TEXT_1}?\0" -.align 2, 0 - -.global gUnknown_8174B50 -gUnknown_8174B50: @ 8174B50 -.string " What?!{WAIT_PRESS}\n" -.string "The {COLOR_1 YELLOW_4}Pitfall Valley{END_COLOR_TEXT_1}?!\0" -.align 2, 0 - -.global gUnknown_8174B74 -gUnknown_8174B74: @ 8174B74 -.string " Latias...{WAIT_PRESS}\n" -.string "Crashed somewhere in the {COLOR_1 YELLOW_4}Pitfall Valley{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_8174BB4 -gUnknown_8174BB4: @ 8174BB4 -.string " I have a younger sister.\n" -.string "Her name is Latias.\0" -.align 2, 0 - -.global gUnknown_8174BE4 -gUnknown_8174BE4: @ 8174BE4 -.string " Tell me{COMMA} how do you justify\n" -.string "what you{APOSTROPHE}ve done?\0" -.align 2, 0 - -.global gUnknown_8174C18 -gUnknown_8174C18: @ 8174C18 -.string " You{APOSTROPHE}re injured.\n" -.string "You can{APOSTROPHE}t fly for now.\0" -.align 2, 0 - -.global gUnknown_8174C44 -gUnknown_8174C44: @ 8174C44 -.string " Ggh! This wound!\0" -.align 2, 0 - -.global gUnknown_8174C58 -gUnknown_8174C58: @ 8174C58 -.string " ...!{WAIT_PRESS} That{APOSTROPHE}s right!\n" -.string "I have to get my sister...\0" -.align 2, 0 - -.global gUnknown_8174C8C -gUnknown_8174C8C: @ 8174C8C -.string " We should at least hear\n" -.string "that.\0" -.align 2, 0 - -.global gUnknown_8174CAC -gUnknown_8174CAC: @ 8174CAC -.string " Now wait.{WAIT_PRESS}\n" -.string "There must be a good reason for this.\0" -.align 2, 0 - -.global gUnknown_8174CE0 -gUnknown_8174CE0: @ 8174CE0 -.string " You had better be prepared\n" -.string "for harsh justice!\0" -.align 2, 0 - -.global gUnknown_8174D10 -gUnknown_8174D10: @ 8174D10 -.string " You! How dare you steal\n" -.string "my fine selection of quality merchandise!\0" -.align 2, 0 - -.global gUnknown_8174D54 -gUnknown_8174D54: @ 8174D54 -.string " You fainted in the {COLOR_1 YELLOW_4}Northern\n" -.string "Range{END_COLOR_TEXT_1}{COMMA} so we brought you back here.\0" -.align 2, 0 - -.global gUnknown_8174D9C -gUnknown_8174D9C: @ 8174D9C -.string " You passed out in the\n" -.string "{COLOR_1 YELLOW_4}Northern Range{END_COLOR_TEXT_1}{COMMA} so we brought you back\n" -.string "with us.\0" -.align 2, 0 - -.global gUnknown_8174DEC -gUnknown_8174DEC: @ 8174DEC -.string " ...Wh-where...?\0" -.align 2, 0 - -.global gUnknown_8174E00 -gUnknown_8174E00: @ 8174E00 -.string " Look! He{APOSTROPHE}s waking up!\0" -.align 2, 0 - -.global gUnknown_8174E1C -gUnknown_8174E1C: @ 8174E1C -.byte 0xf6, 0x00, 0x0e, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southeast -.byte 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northeast -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe2, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northwest -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northeast -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southeast -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northeast -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northwest -closeThread - -.global gUnknown_817500C -gUnknown_817500C: @ 817500C -.byte 0xf6, 0x00, 0x30, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southwest -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northwest -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81750CC -gUnknown_81750CC: @ 81750CC -.byte 0xf6, 0x00, 0x3f, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x4c, 0x00, 0x00, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe2, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northwest -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, north -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northwest -pause 0x14 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northeast -pause 0x1e -rotate 0x04, CCW, north -.byte 0x4c, 0x00, 0x00, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_817534C -gUnknown_817534C: @ 817534C -.byte 0xf6, 0x00, 0x6a, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x62, 0x00, 0x00, 0x05, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6a, 0x00, 0x00, 0x02, 0xd8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, north -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6a, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southwest -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0xe8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, north -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southwest -closeThread - -.global gUnknown_81754AC -gUnknown_81754AC: @ 81754AC -.byte 0xf6, 0x00, 0x83, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 6 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 27 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xdb, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 10 -.byte 0xe2, 0x00, 0xdb, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 26 -pause 0x28 -.byte 0x4c, 0x00, 0x00, 0x00, 0xaa, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe2, 0x00, 0xaa, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -setAnimation 25 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 27 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -setAnimation 29 -pause 0x1e -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 25 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 29 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_817576C -gUnknown_817576C: @ 817576C -.byte 0xf6, 0x00, 0xb2, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x27, 0x01, 0x01, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81757EC -gUnknown_81757EC: @ 81757EC -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817576C - -.global gUnknown_81757F8 -gUnknown_81757F8: @ 81757F8 -.byte 0xf6, 0x00, 0xbf, 0x39 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176DC4 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176DB8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176D90 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176D60 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176D24 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southeast -.byte 0x2e, 0x03, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176CF8 -.byte 0x34, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176CC8 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176C80 -.byte 0x2e, 0x15, 0x05, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176C54 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x02, 0x01, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176BF0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176B90 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176B44 -.byte 0x34, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176AF8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176AEC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x02, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176AA8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southeast -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176A5C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x01, 0xff, 0xff -.byte 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176A18 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81769D8 -.byte 0xd9, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B7A8 -.byte 0xd9, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B7A4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xa6, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81769B0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x01, 0xff, 0xff -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817696C -.byte 0xd9, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176964 -.byte 0xd9, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176950 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x2e, 0x0d, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176914 -.byte 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176908 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northeast -.byte 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81768B4 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176870 -.byte 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176840 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81767DC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81767B4 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176794 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x01, 0xff, 0xff -.byte 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817676C -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176748 -.byte 0xd9, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B7A8 -.byte 0xd9, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B7A4 -.byte 0xf4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xa6, 0x00, 0x39, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x02, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x2e, 0x02, 0x01, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817673C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176700 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81766F8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81766B8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0x91, 0x04, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81766A0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x02, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x06, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817668C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x32, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817667C -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176650 -.byte 0x47, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176628 -.byte 0xe1, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd3, 0x00, 0xff, 0xff -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8176610 -.byte 0xd9, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8140158 -.byte 0xd9, 0x00, 0x12, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B7A4 -.byte 0xf4, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x25, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x3b, 0x26, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd3, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81765F8 -.byte 0xd9, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8140158 -.byte 0xd9, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B7A4 -.byte 0xf4, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81765F8 -gUnknown_81765F8: @ 81765F8 -.string "Give a nickname to {ARG_NICKNAME_6}?\0" -.align 2, 0 - -.global gUnknown_8176610 -gUnknown_8176610: @ 8176610 -.string "Give a nickname to {ARG_NICKNAME_5}?\0" -.align 2, 0 - -.global gUnknown_8176628 -gUnknown_8176628: @ 8176628 -.string "{CENTER_ALIGN}{ARG_NICKNAME_5} and {ARG_NICKNAME_6}\n" -.string "{CENTER_ALIGN}became team members!\0" -.align 2, 0 - -.global gUnknown_8176650 -gUnknown_8176650: @ 8176650 -.string "{CENTER_ALIGN}{COLOR_1 CYAN}Team {ARG_TEAM_NAME}{END_COLOR_TEXT_1} was\n" -.string "{CENTER_ALIGN}joined by {ARG_NICKNAME_5} and {ARG_NICKNAME_6}!\0" -.align 2, 0 - -.global gUnknown_817667C -gUnknown_817667C: @ 817667C -.string "{CENTER_ALIGN}And thus...\0" -.align 2, 0 - -.global gUnknown_817668C -gUnknown_817668C: @ 817668C -.string " Delighted to join!\0" -.align 2, 0 - -.global gUnknown_81766A0 -gUnknown_81766A0: @ 81766A0 -.string " Thanks for having us!\0" -.align 2, 0 - -.global gUnknown_81766B8 -gUnknown_81766B8: @ 81766B8 -.string " You{APOSTROPHE}re our fellow members\n" -.string "from now on. Great to have you!\0" -.align 2, 0 - -.global gUnknown_81766F8 -gUnknown_81766F8: @ 81766F8 -.string " Done!\0" -.align 2, 0 - -.global gUnknown_8176700 -gUnknown_8176700: @ 8176700 -.string " You{APOSTROPHE}re our fellow members\n" -.string "from now on! Welcome aboard!\0" -.align 2, 0 - -.global gUnknown_817673C -gUnknown_817673C: @ 817673C -.string " Done deal!\0" -.align 2, 0 - -.global gUnknown_8176748 -gUnknown_8176748: @ 8176748 -.string " Do we let Latios and Latias\n" -.string "join?\0" -.align 2, 0 - -.global gUnknown_817676C -gUnknown_817676C: @ 817676C -.string " Should we let Latios and\n" -.string "Latias join?\0" -.align 2, 0 - -.global gUnknown_8176794 -gUnknown_8176794: @ 8176794 -.string " {ARG_NICKNAME_0}{COMMA} give it good\n" -.string "thought.\0" -.align 2, 0 - -.global gUnknown_81767B4 -gUnknown_81767B4: @ 81767B4 -.string " {ARG_NICKNAME_0}{COMMA} think good\n" -.string "and hard about this.\0" -.align 2, 0 - -.global gUnknown_81767DC -gUnknown_81767DC: @ 81767DC -.string " Even knowing that...{WAIT_PRESS}\n" -.string "Even if you would never see them again{COMMA}\n" -.string "you will still not accept them?\0" -.align 2, 0 - -.global gUnknown_8176840 -gUnknown_8176840: @ 8176840 -.string " Strike that.\n" -.string "You will never again see them.\0" -.align 2, 0 - -.global gUnknown_8176870 -gUnknown_8176870: @ 8176870 -.string " If you part ways with them\n" -.string "now{COMMA} you may never see them again.\0" -.align 2, 0 - -.global gUnknown_81768B4 -gUnknown_81768B4: @ 81768B4 -.string " Latios and Latias are\n" -.string "Pokémon so rarely seen that they are\n" -.string "considered mythical.\0" -.align 2, 0 - -.global gUnknown_8176908 -gUnknown_8176908: @ 8176908 -.string " However...\0" -.align 2, 0 - -.global gUnknown_8176914 -gUnknown_8176914: @ 8176914 -.string " It is you who decides.\n" -.string "The outcome is of no concern to me.\0" -.align 2, 0 - -.global gUnknown_8176950 -gUnknown_8176950: @ 8176950 -.string "No{COMMA} forget it.\0" -.align 2, 0 - -.global gUnknown_8176964 -gUnknown_8176964: @ 8176964 -.string "Accept.\0" -.align 2, 0 - -.global gUnknown_817696C -gUnknown_817696C: @ 817696C -.string " They{APOSTROPHE}re volunteering!\n" -.string "Don{APOSTROPHE}t you think we should let them join?\0" -.align 2, 0 - -.global gUnknown_81769B0 -gUnknown_81769B0: @ 81769B0 -.string " Huh?\n" -.string "You{APOSTROPHE}re really sure about that?!\0" -.align 2, 0 - -.global gUnknown_81769D8 -gUnknown_81769D8: @ 81769D8 -.string " {ARG_NICKNAME_0}{COMMA} what should\n" -.string "we do?{WAIT_PRESS}\n" -.string "Do we let Latios and Latias join?\0" -.align 2, 0 - -.global gUnknown_8176A18 -gUnknown_8176A18: @ 8176A18 -.string " {ARG_NICKNAME_0}{COMMA} what do you\n" -.string "say?{WAIT_PRESS}\n" -.string "Should we let Latios and Latias join?\0" -.align 2, 0 - -.global gUnknown_8176A5C -gUnknown_8176A5C: @ 8176A5C -.string " Would that work?{WAIT_PRESS}\n" -.string "Would you be willing to accept us on\n" -.string "your rescue team?\0" -.align 2, 0 - -.global gUnknown_8176AA8 -gUnknown_8176AA8: @ 8176AA8 -.string " We would like to join {COLOR_1 CYAN}Team\n" -.string "{ARG_TEAM_NAME}{END_COLOR_TEXT_1} and help with your rescue\n" -.string "work.\0" -.align 2, 0 - -.global gUnknown_8176AEC -gUnknown_8176AEC: @ 8176AEC -.string " Huh...?\0" -.align 2, 0 - -.global gUnknown_8176AF8 -gUnknown_8176AF8: @ 8176AF8 -.string " So{COMMA} and it{APOSTROPHE}s the least we\n" -.string "can do...{WAIT_PRESS}\n" -.string "May we join your rescue team?\0" -.align 2, 0 - -.global gUnknown_8176B44 -gUnknown_8176B44: @ 8176B44 -.string " However...\n" -.string "We have no money or any other way of\n" -.string "repaying your kindness.\0" -.align 2, 0 - -.global gUnknown_8176B90 -gUnknown_8176B90: @ 8176B90 -.string " It{APOSTROPHE}s OK{COMMA} really.{WAIT_PRESS}\n" -.string "When you put it that way{COMMA} it{APOSTROPHE}s even a little\n" -.string "embarrassing. Hahaha.\0" -.align 2, 0 - -.global gUnknown_8176BF0 -gUnknown_8176BF0: @ 8176BF0 -.string " Hey{COMMA} now{COMMA} that{APOSTROPHE}s OK.{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s even a little embarrassing when you\n" -.string "put it that way{COMMA} hahaha!\0" -.align 2, 0 - -.global gUnknown_8176C54 -gUnknown_8176C54: @ 8176C54 -.string " We owe you so much\n" -.string "gratitude! Thank you!\0" -.align 2, 0 - -.global gUnknown_8176C80 -gUnknown_8176C80: @ 8176C80 -.string " But we{APOSTROPHE}re back together\n" -.string "again...{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s happiness beyond words...\0" -.align 2, 0 - -.global gUnknown_8176CC8 -gUnknown_8176CC8: @ 8176CC8 -.string " To be honest{COMMA} I came close\n" -.string "to giving up...\0" -.align 2, 0 - -.global gUnknown_8176CF8 -gUnknown_8176CF8: @ 8176CF8 -.string " My sister is safe{COMMA} all\n" -.string "thanks to you.\0" -.align 2, 0 - -.global gUnknown_8176D24 -gUnknown_8176D24: @ 8176D24 -.string " Oh{COMMA} this is great...\n" -.string "It{APOSTROPHE}s so touching... Sniffle...\0" -.align 2, 0 - -.global gUnknown_8176D60 -gUnknown_8176D60: @ 8176D60 -.string " I{APOSTROPHE}m sorry...\n" -.string "I caused you so much worry...\0" -.align 2, 0 - -.global gUnknown_8176D90 -gUnknown_8176D90: @ 8176D90 -.string " You{APOSTROPHE}re safe!\n" -.string "This is incredible...\0" -.align 2, 0 - -.global gUnknown_8176DB8 -gUnknown_8176DB8: @ 8176DB8 -.string " Latios!\0" -.align 2, 0 - -.global gUnknown_8176DC4 -gUnknown_8176DC4: @ 8176DC4 -.string " {ARG_NICKNAME_6}!\0" -.align 2, 0 - -.global gUnknown_8176DCC -gUnknown_8176DCC: @ 8176DCC -.byte 0xf6, 0x00, 0xb0, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northeast -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, north -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x02, 0x01, 0x00, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x02, 0x01, 0x00, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northeast -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, north -.byte 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northeast -setFlag 0x05 -closeThread - -.global gUnknown_817708C -gUnknown_817708C: @ 817708C -.byte 0xf6, 0x00, 0xe0, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 9 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -rotate 0x04, CW, southwest -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x01, 0x00, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x02, 0x01, 0x00, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southeast -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southwest -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -setAnimation 22 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -rotate 0x04, CW, southwest -closeThread - -.global gUnknown_817725C -gUnknown_817725C: @ 817725C -.byte 0xf6, 0x00, 0x01, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, west -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southwest -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x02, 0x01, 0x00, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x01, 0x00, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southeast -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southwest -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -setAnimation 22 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -rotate 0x04, CW, southwest -closeThread - -.global gUnknown_817742C -gUnknown_817742C: @ 817742C -.byte 0xf6, 0x00, 0x22, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x62, 0x00, 0x00, 0x05, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x01, 0x00, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x02, 0x01, 0x00, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southwest -closeThread - -.global gUnknown_817755C -gUnknown_817755C: @ 817755C -.byte 0xf6, 0x00, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -setAnimation 23 -pause 0x3c -.byte 0x6a, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 24 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x6a, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, west -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x02, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, north -setAnimation 17 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -pause 0x0a -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, CW, northeast -.byte 0x62, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, CW, east -.byte 0x62, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, CW, southeast -.byte 0x62, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, CW, south -.byte 0x62, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, CW, southwest -.byte 0x62, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, CW, west -.byte 0x62, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, CW, northwest -.byte 0x62, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, CW, north -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x02, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, west -closeThread - -.global gUnknown_817785C -gUnknown_817785C: @ 817785C -.byte 0xf6, 0x00, 0x6c, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -setAnimation 23 -pause 0x3c -setAnimation 24 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, west -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -.byte 0x4c, 0x00, 0x00, 0x00, 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 17 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, CW, southwest -.byte 0x62, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, CW, west -.byte 0x4c, 0x00, 0x00, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, CW, northwest -.byte 0x62, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, CW, north -.byte 0x62, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, CW, northeast -.byte 0x62, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, CW, east -.byte 0x4c, 0x00, 0x00, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, CW, southeast -.byte 0x62, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, CW, south -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, west -closeThread - -.global gUnknown_8177B2C -gUnknown_8177B2C: @ 8177B2C -.byte 0xf6, 0x00, 0x9c, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xa8, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8177D68 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8177D30 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8177CE8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8177C88 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8177C24 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8177BEC -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8177BEC -gUnknown_8177BEC: @ 8177BEC -.string " I think Shiftry knows where\n" -.string "the {COLOR_1 YELLOW_4}Buried Relic{END_COLOR_TEXT_1} is.\0" -.align 2, 0 - -.global gUnknown_8177C24 -gUnknown_8177C24: @ 8177C24 -.string " If you knock down the walls{COMMA}\n" -.string "there might be treasures galore!{WAIT_PRESS}\n" -.string "Sounds really enticing{COMMA} eh?\0" -.align 2, 0 - -.global gUnknown_8177C88 -gUnknown_8177C88: @ 8177C88 -.string " Know what they{APOSTROPHE}re saying?{WAIT_PRESS}\n" -.string "They{APOSTROPHE}re saying that treasures are even\n" -.string "embedded in the walls!\0" -.align 2, 0 - -.global gUnknown_8177CE8 -gUnknown_8177CE8: @ 8177CE8 -.string " And they say the treasures\n" -.string "aren{APOSTROPHE}t just lying around on the ground.\0" -.align 2, 0 - -.global gUnknown_8177D30 -gUnknown_8177D30: @ 8177D30 -.string " They{APOSTROPHE}re rumoring that there\n" -.string "are treasures in there.\0" -.align 2, 0 - -.global gUnknown_8177D68 -gUnknown_8177D68: @ 8177D68 -.string " Hey{COMMA} have you heard?\n" -.string "About the {COLOR_1 YELLOW_4}Buried Relic{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_8177DA0 -gUnknown_8177DA0: @ 8177DA0 -.byte 0xf6, 0x00, 0xac, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x40, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8177E10 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8177E10 -gUnknown_8177E10: @ 8177E10 -.string " I heard rumors that\n" -.string "Pokémon from ancient times live in the\n" -.string "{COLOR_1 YELLOW_4}Buried Relic{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_8177E60 -gUnknown_8177E60: @ 8177E60 -.byte 0xf6, 0x00, 0xb7, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x40, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8177F6C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8177F2C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8177EF0 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8177EF0 -gUnknown_8177EF0: @ 8177EF0 -.string " I guess there{APOSTROPHE}s a sense of\n" -.string "drama and adventure about it.\0" -.align 2, 0 - -.global gUnknown_8177F2C -gUnknown_8177F2C: @ 8177F2C -.string " But{COMMA} I must admit...{WAIT_PRESS}\n" -.string "I do get a certain thrill from it!\0" -.align 2, 0 - -.global gUnknown_8177F6C -gUnknown_8177F6C: @ 8177F6C -.string " I{APOSTROPHE}ve heard that there are\n" -.string "treasures to be found in the relic.{WAIT_PRESS}\n" -.string "I wonder how much is true?\0" -.align 2, 0 - -.global gUnknown_8177FCC -gUnknown_8177FCC: @ 8177FCC -.byte 0xf6, 0x00, 0xc4, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -setAnimation 1 -.byte 0x8b, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817803C -gUnknown_817803C: @ 817803C -.byte 0xf6, 0x00, 0xce, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xa8, 0x00, 0x40, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8178310 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81782D0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81782A4 -setFlag 0x06 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8178270 -closeTextBox -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x01, 0x0a, 0x00, 0x31, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8178228 -.byte 0x49, 0x00, 0x00, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81781EC -.byte 0xe1, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xba, 0x01, 0x0a, 0x00, 0x31, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x0a, 0x00, 0x31, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81781EC -gUnknown_81781EC: @ 81781EC -.string "{CENTER_ALIGN}{ARG_NICKNAME_0}{APOSTROPHE}s team gained\n" -.string "{CENTER_ALIGN}access to the {COLOR_1 YELLOW_4}Buried Relic{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_8178228 -gUnknown_8178228: @ 8178228 -.string "{CENTER_ALIGN}Leaving aside the disturbing fact that\n" -.string "{CENTER_ALIGN}{ARG_NICKNAME_1} made them compadres...\0" -.align 2, 0 - -.global gUnknown_8178270 -gUnknown_8178270: @ 8178270 -.string " Kukukuh...{WAIT_PRESS} Me too!{WAIT_PRESS}\n" -.string "Best of luck{COMMA} compadre!\0" -.align 2, 0 - -.global gUnknown_81782A4 -gUnknown_81782A4: @ 81782A4 -.string " Are you dreaming about\n" -.string "the treasures too?\0" -.align 2, 0 - -.global gUnknown_81782D0 -gUnknown_81782D0: @ 81782D0 -.string " The {COLOR_1 YELLOW_4}Buried Relic{END_COLOR_TEXT_1} is deep\n" -.string "in the jungle to the southeast.\0" -.align 2, 0 - -.global gUnknown_8178310 -gUnknown_8178310: @ 8178310 -.string " What{APOSTROPHE}s that?\n" -.string "Where is the {COLOR_1 YELLOW_4}Buried Relic{END_COLOR_TEXT_1}?\0" -.align 2, 0 - -.global gUnknown_8178340 -gUnknown_8178340: @ 8178340 -.byte 0xf6, 0x00, 0xee, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8178410 -gUnknown_8178410: @ 8178410 -.byte 0xf6, 0x00, 0xfe, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x40, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8178528 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81784EC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81784E0 -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81784E0 -gUnknown_81784E0: @ 81784E0 -.string " And now...\0" -.align 2, 0 - -.global gUnknown_81784EC -gUnknown_81784EC: @ 81784EC -.string " If you find any\n" -.string "treasures{COMMA} please do sell them to me.\0" -.align 2, 0 - -.global gUnknown_8178528 -gUnknown_8178528: @ 8178528 -.string " It seems talk of the relic\n" -.string "is on everyone{APOSTROPHE}s lips today!\0" -.align 2, 0 - -.global gUnknown_8178564 -gUnknown_8178564: @ 8178564 -.byte 0xf6, 0x00, 0x0f, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x40, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8178624 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81784E0 -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8178624 -gUnknown_8178624: @ 8178624 -.string " Oh{COMMA} isn{APOSTROPHE}t it exciting?{WAIT_PRESS}\n" -.string "Why{COMMA} I wouldn{APOSTROPHE}t mind closing up the shop\n" -.string "so I could go treasure hunting!\0" -.align 2, 0 - -.global gUnknown_8178690 -gUnknown_8178690: @ 8178690 -.byte 0xf6, 0x00, 0x1f, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x40, 0x00, 0x07, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8178740 -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8178740 -gUnknown_8178740: @ 8178740 -.string " If you find a fortune in the\n" -.string "relic{COMMA} save it here with me!\0" -.align 2, 0 - -.global gUnknown_8178780 -gUnknown_8178780: @ 8178780 -.byte 0xf6, 0x00, 0x2e, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x40, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8178830 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8178830 -gUnknown_8178830: @ 8178830 -.string " I wonder what kinds of\n" -.string "friends are in the {COLOR_1 YELLOW_4}Buried Relic{END_COLOR_TEXT_1}?\0" -.align 2, 0 - -.global gUnknown_8178870 -gUnknown_8178870: @ 8178870 -.byte 0xf6, 0x00, 0x3d, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x40, 0x00, 0x09, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817897C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8178948 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8178940 -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8178940 -gUnknown_8178940: @ 8178940 -.string " OK...\0" -.align 2, 0 - -.global gUnknown_8178948 -gUnknown_8178948: @ 8178948 -.string " This mama{APOSTROPHE}s behind you all\n" -.string "the way! Go for it!\0" -.align 2, 0 - -.global gUnknown_817897C -gUnknown_817897C: @ 817897C -.string " You{APOSTROPHE}re going too{COMMA} aren{APOSTROPHE}t you?\n" -.string "To the {COLOR_1 YELLOW_4}Buried Relic{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_81789BC -gUnknown_81789BC: @ 81789BC -.byte 0xf6, 0x00, 0x4e, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x40, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8178AC4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8178A7C -closeTextBox -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8178A7C -gUnknown_8178A7C: @ 8178A7C -.string " It makes me drool thinking\n" -.string "what I could swallow in a place like that.\0" -.align 2, 0 - -.global gUnknown_8178AC4 -gUnknown_8178AC4: @ 8178AC4 -.string " What treasures can be\n" -.string "found in the {COLOR_1 YELLOW_4}Buried Relic{END_COLOR_TEXT_1}{COMMA} I wonder?\0" -.align 2, 0 - -.global gUnknown_8178B08 -gUnknown_8178B08: @ 8178B08 -.byte 0xf6, 0x00, 0x5e, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8178BE0 -.byte 0x2e, 0x02, 0x01, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8178B98 -.byte 0xa9, 0x00, 0x0c, 0x00 -.byte 0x35, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8178B98 -gUnknown_8178B98: @ 8178B98 -.string " I have heard it is a place\n" -.string "that is very difficult.{WAIT_PRESS}\n" -.string "Will he be OK?\0" -.align 2, 0 - -.global gUnknown_8178BE0 -gUnknown_8178BE0: @ 8178BE0 -.string " I think Gengar headed off\n" -.string "to {COLOR_1 YELLOW_4}Mt. Freeze{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_8178C10 -gUnknown_8178C10: @ 8178C10 -.byte 0xf6, 0x00, 0x6b, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8178CCC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8178C90 -.byte 0xa9, 0x00, 0x0c, 0x00, 0x35, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8178C90 -gUnknown_8178C90: @ 8178C90 -.string " What he means to do when\n" -.string "he does meet...I don{APOSTROPHE}t know.\0" -.align 2, 0 - -.global gUnknown_8178CCC -gUnknown_8178CCC: @ 8178CCC -.string " Gengar wants to meet with\n" -.string "Ninetales. That{APOSTROPHE}s what I think.\0" -.align 2, 0 - -.global gUnknown_8178D0C -gUnknown_8178D0C: @ 8178D0C -.byte 0xf6, 0x00, 0x77, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138D88 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81791F0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81791B4 -.byte 0xd5, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8179190 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B7A8 -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B7A4 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817915C -closeTextBox -pause 0x0a -.byte 0x49, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8179128 -.byte 0xe1, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -pause 0x1e -.byte 0x3b, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd3, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816BB90 -.byte 0xd9, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8140158 -.byte 0xd9, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B7A4 -.byte 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xa9, 0x00, 0x0c, 0x00, 0x37, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0xff, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x02, 0x01, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816BB7C -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81790C4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817906C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8179054 -closeTextBox -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817902C -closeTextBox -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817902C -gUnknown_817902C: @ 817902C -.string " ...I see.{WAIT_PRESS}\n" -.string "This is disappointing...\0" -.align 2, 0 - -.global gUnknown_8179054 -gUnknown_8179054: @ 8179054 -.string " Please tell me then.\0" -.align 2, 0 - -.global gUnknown_817906C -gUnknown_817906C: @ 817906C -.string " I could join your rescue\n" -.string "team if there were less Pokémon in\n" -.string "{COLOR_1 GREEN}Sky Blue Plains{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_81790C4 -gUnknown_81790C4: @ 81790C4 -.string " ...However{COMMA} there seems to\n" -.string "be no space for me in my Friend Area...{WAIT_PRESS}\n" -.string "This is disappointing...\0" -.align 2, 0 - -.global gUnknown_8179128 -gUnknown_8179128: @ 8179128 -.string "{CENTER_ALIGN}{ARG_NICKNAME_1} became the\n" -.string "{CENTER_ALIGN}rescue team{APOSTROPHE}s newest member!\0" -.align 2, 0 - -.global gUnknown_817915C -gUnknown_817915C: @ 817915C -.string " Thank you!{WAIT_PRESS}\n" -.string "I promise to do my best for the team!\0" -.align 2, 0 - -.global gUnknown_8179190 -gUnknown_8179190: @ 8179190 -.string " Please{COMMA} may I become\n" -.string "a member?\0" -.align 2, 0 - -.global gUnknown_81791B4 -gUnknown_81791B4: @ 81791B4 -.string " I would like to join {COLOR_1 CYAN}Team \n" -.string "{ARG_TEAM_NAME}{END_COLOR_TEXT_1} and help on rescues.\0" -.align 2, 0 - -.global gUnknown_81791F0 -gUnknown_81791F0: @ 81791F0 -.string " I have done a lot of\n" -.string "thinking...\0" -.align 2, 0 - -.global gUnknown_8179214 -gUnknown_8179214: @ 8179214 -.byte 0x00, 0x02, 0x00, 0x00, 0x08, 0x28, 0x02, 0x02 -.4byte gUnknown_81391F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x02, 0x00, 0x00, 0x05, 0x28, 0x02, 0x02 -.4byte gUnknown_8139234 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8179244 -gUnknown_8179244: @ 8179244 -.byte 0x00, 0x00, 0x00, 0x00, 0x40, 0x09, 0x02, 0x02 -.4byte gUnknown_8139274 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x40, 0x07, 0x02, 0x02 -.4byte gUnknown_81392B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8179274 -gUnknown_8179274: @ 8179274 -.byte 0x00, 0x06, 0x00, 0x00, 0x70, 0x28, 0x02, 0x02 -.4byte gUnknown_81392F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x06, 0x00, 0x00, 0x73, 0x28, 0x02, 0x02 -.4byte gUnknown_8139334 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81792A4 -gUnknown_81792A4: @ 81792A4 -.byte 0x00, 0x04, 0x00, 0x00, 0x42, 0x53, 0x02, 0x02 -.4byte gUnknown_8139374 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x04, 0x00, 0x00, 0x42, 0x55, 0x02, 0x02 -.4byte gUnknown_81393B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81792D4 -gUnknown_81792D4: @ 81792D4 -.byte 0x00, 0x00, 0x00, 0x00, 0x40, 0x21, 0x02, 0x02 -.4byte gUnknown_81393F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x40, 0x1e, 0x02, 0x02 -.4byte gUnknown_8139434 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8179304 -gUnknown_8179304: @ 8179304 -.byte 0x00, 0x00, 0x00, 0x00, 0x08, 0x28, 0x02, 0x02 -.4byte gUnknown_8139474 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x05, 0x28, 0x02, 0x02 -.4byte gUnknown_81394A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8179334 -gUnknown_8179334: @ 8179334 -.byte 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139520 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139580 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81395E0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x4a, 0x00, 0x00, 0x00, 0x52, 0x3c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139640 -.byte 0x00, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x29, 0x3d, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81396A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139700 -.byte 0x00, 0x00, 0x00, 0x00, 0x55, 0x07, 0x00, 0x00, 0x45, 0x24, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139760 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x4d, 0x05, 0x00, 0x00, 0x47, 0x2c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139840 -.byte 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x3a, 0x2c, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139A3C -.byte 0x00, 0x00, 0x00, 0x00, 0x59, 0x02, 0x00, 0x00, 0x39, 0x21, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139B2C -.byte 0x00, 0x00, 0x00, 0x00, 0x5a, 0x06, 0x00, 0x00, 0x3d, 0x21, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139BF4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x58, 0x00, 0x00, 0x00, 0x5a, 0x25, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139C9C -.byte 0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3a, 0x3d, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139EF4 -.byte 0x00, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x3d, 0x3d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139F7C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8179484 -gUnknown_8179484: @ 8179484 -.byte 0x7f, 0x00, 0x00, 0x00, 0x6d, 0x26, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813A610 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817949C -gUnknown_817949C: @ 817949C -.byte 0x7f, 0x00, 0x00, 0x00, 0x73, 0x27, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813A7A0 -.4byte gUnknown_813A8B0 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81794B4 -gUnknown_81794B4: @ 81794B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x73, 0x27, 0x00, 0x02 -.4byte gUnknown_813A9B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x73, 0x27, 0x00, 0x02 -.4byte gUnknown_813AC3C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0x06, 0x00, 0x00, 0x73, 0x27, 0x02, 0x02 -.4byte gUnknown_813ACDC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81794FC -gUnknown_81794FC: @ 81794FC -.byte 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02 -.4byte gUnknown_813AD6C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02 -.4byte gUnknown_813ADCC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02 -.4byte gUnknown_813AE2C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02 -.4byte gUnknown_813AE8C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x55, 0x07, 0x00, 0x00, 0x45, 0x24, 0x00, 0x02 -.4byte gUnknown_813AEEC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x05, 0x00, 0x00, 0x47, 0x2c, 0x00, 0x02 -.4byte gUnknown_813AF4C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x3a, 0x2c, 0x00, 0x02 -.4byte gUnknown_813AFAC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x02, 0x00, 0x00, 0x39, 0x21, 0x00, 0x02 -.4byte gUnknown_813B00C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x5a, 0x06, 0x00, 0x00, 0x3d, 0x21, 0x00, 0x02 -.4byte gUnknown_813B06C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x5a, 0x25, 0x00, 0x02 -.4byte gUnknown_813B0CC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81795EC -gUnknown_81795EC: @ 81795EC -.byte 0x7f, 0x06, 0x00, 0x00, 0x73, 0x27, 0x02, 0x02 -.4byte gUnknown_813B12C -.4byte gUnknown_813B16C -.4byte gUnknown_813B1AC -.4byte gUnknown_813B7D8 - -.global gUnknown_8179604 -gUnknown_8179604: @ 8179604 -.byte 0x7f, 0x06, 0x00, 0x00, 0x73, 0x27, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B948 -.4byte gUnknown_813B988 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817961C -gUnknown_817961C: @ 817961C -.byte 0x7f, 0x00, 0x00, 0x00, 0x73, 0x27, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813B9E8 -.4byte gUnknown_813BAF8 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8179634 -gUnknown_8179634: @ 8179634 -.byte 0x00, 0x00, 0x00, 0x00, 0x73, 0x27, 0x00, 0x02 -.4byte gUnknown_813BBF0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x73, 0x27, 0x00, 0x02 -.4byte gUnknown_813BE18 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0x06, 0x00, 0x00, 0x73, 0x27, 0x02, 0x02 -.4byte gUnknown_813BEB8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817967C -gUnknown_817967C: @ 817967C -.byte 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02 -.4byte gUnknown_813C2F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02 -.4byte gUnknown_813C358 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02 -.4byte gUnknown_813C3B8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02 -.4byte gUnknown_813C418 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x55, 0x07, 0x00, 0x00, 0x45, 0x24, 0x00, 0x02 -.4byte gUnknown_813C478 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x05, 0x00, 0x00, 0x47, 0x2c, 0x00, 0x02 -.4byte gUnknown_813C4D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x3a, 0x2c, 0x00, 0x02 -.4byte gUnknown_813C538 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x02, 0x00, 0x00, 0x39, 0x21, 0x00, 0x02 -.4byte gUnknown_813C598 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x5a, 0x06, 0x00, 0x00, 0x3d, 0x21, 0x00, 0x02 -.4byte gUnknown_813C5F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x5a, 0x25, 0x00, 0x02 -.4byte gUnknown_813C658 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817976C -gUnknown_817976C: @ 817976C -.byte 0x7f, 0x06, 0x00, 0x00, 0x73, 0x27, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813C6B8 -.4byte gUnknown_813C738 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8179784 -gUnknown_8179784: @ 8179784 -.byte 0x00, 0x00, 0x00, 0x00, 0x73, 0x27, 0x00, 0x02 -.4byte gUnknown_813C7E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x73, 0x27, 0x00, 0x02 -.4byte gUnknown_813CD90 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0x06, 0x00, 0x00, 0x73, 0x27, 0x02, 0x02 -.4byte gUnknown_813CDF0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81797CC -gUnknown_81797CC: @ 81797CC -.byte 0x7f, 0x06, 0x00, 0x00, 0x73, 0x27, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813D100 -.4byte gUnknown_813D140 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81797E4 -gUnknown_81797E4: @ 81797E4 -.byte 0x7f, 0x02, 0x00, 0x00, 0x73, 0x27, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813D190 -.4byte gUnknown_813D1D0 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81797FC -gUnknown_81797FC: @ 81797FC -.byte 0x00, 0x02, 0x00, 0x00, 0x05, 0x29, 0x02, 0x02 -.4byte gUnknown_813D45C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x02, 0x00, 0x00, 0x08, 0x27, 0x02, 0x02 -.4byte gUnknown_813DF88 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817982C -gUnknown_817982C: @ 817982C -.byte 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813E134 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813E194 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813E1F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x52, 0x3c, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813E254 -.byte 0x00, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x29, 0x3d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813E2B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x3c, 0x23, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813E314 -.4byte gUnknown_813E354 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x4f, 0x03, 0x00, 0x00, 0x3e, 0x2d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813E494 -.4byte gUnknown_813E4D4 -.byte 0x00, 0x00, 0x00, 0x00, 0x50, 0x06, 0x00, 0x00, 0x45, 0x27, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813E61C -.4byte gUnknown_813E794 - -.global gUnknown_81798EC -gUnknown_81798EC: @ 81798EC -.byte 0x00, 0x02, 0x00, 0x00, 0x05, 0x28, 0x00, 0x02 -.4byte gUnknown_813E880 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x02, 0x00, 0x00, 0x08, 0x28, 0x00, 0x02 -.4byte gUnknown_813EAD4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817991C -gUnknown_817991C: @ 817991C -.byte 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813EBE0 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813EC40 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813ECA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x52, 0x3c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813ED00 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x4b, 0x00, 0x00, 0x00, 0x29, 0x3d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813ED60 -.byte 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813EDC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x4b, 0x29, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813EE60 -.4byte gUnknown_813EEA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x41, 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813EF7C -.4byte gUnknown_813EFBC -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81799DC -gUnknown_81799DC: @ 81799DC -.byte 0x00, 0x02, 0x00, 0x00, 0x05, 0x28, 0x00, 0x02 -.4byte gUnknown_813F0DC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x02, 0x00, 0x00, 0x08, 0x28, 0x00, 0x02 -.4byte gUnknown_813F23C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8179A0C -gUnknown_8179A0C: @ 8179A0C -.byte 0x4e, 0x06, 0x00, 0x00, 0x46, 0x28, 0x00, 0x02 -.4byte gUnknown_813F2BC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x02, 0x00, 0x00, 0x41, 0x28, 0x00, 0x02 -.4byte gUnknown_813F2EC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x02, 0x00, 0x00, 0x3e, 0x26, 0x00, 0x02 -.4byte gUnknown_813F31C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x02, 0x00, 0x00, 0x3e, 0x2a, 0x00, 0x02 -.4byte gUnknown_813F34C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x06, 0x00, 0x00, 0x4b, 0x29, 0x02, 0x02 -.4byte gUnknown_813F37C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0x04, 0x00, 0x00, 0x41, 0x2e, 0x02, 0x02 -.4byte gUnknown_813F3BC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x36, 0x00, 0x00, 0x00, 0x3e, 0x21, 0x02, 0x02 -.4byte gUnknown_813F3FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x42, 0x21, 0x02, 0x02 -.4byte gUnknown_813F44C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813F49C -.byte 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_813F4FC -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8179AFC -gUnknown_8179AFC: @ 8179AFC -.byte 0x00, 0x04, 0x00, 0x00, 0x61, 0x25, 0x00, 0x02 -.4byte gUnknown_813F614 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00, 0x61, 0x27, 0x00, 0x02 -.4byte gUnknown_81408D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02 -.4byte gUnknown_8140A10 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8140AE0 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8179B44 -gUnknown_8179B44: @ 8179B44 -.byte 0x3d, 0x06, 0x00, 0x00, 0x4f, 0x25, 0x02, 0x02 -.4byte gUnknown_8140BA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3e, 0x06, 0x00, 0x00, 0x4d, 0x27, 0x02, 0x02 -.4byte gUnknown_8140DC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8179B74 -gUnknown_8179B74: @ 8179B74 -.byte 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x4f, 0x29, 0x00, 0x02 -.4byte gUnknown_81412BC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x07, 0x02, 0x00, 0x00, 0x4f, 0x27, 0x00, 0x02 -.4byte gUnknown_8142CF4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x42, 0x21, 0x02, 0x02 -.4byte gUnknown_8142F64 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0x04, 0x00, 0x00, 0x41, 0x2e, 0x02, 0x02 -.4byte gUnknown_8143104 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x3e, 0x21, 0x02, 0x02 -.4byte gUnknown_8143254 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4e, 0x06, 0x00, 0x00, 0x46, 0x28, 0x00, 0x02 -.4byte gUnknown_81433E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x02, 0x00, 0x00, 0x41, 0x28, 0x00, 0x02 -.4byte gUnknown_8143574 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x06, 0x00, 0x00, 0x3e, 0x26, 0x00, 0x02 -.4byte gUnknown_81437D4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x02, 0x00, 0x00, 0x3e, 0x2a, 0x00, 0x02 -.4byte gUnknown_8143884 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4d, 0x06, 0x00, 0x00, 0x4b, 0x29, 0x00, 0x02 -.4byte gUnknown_8143934 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8179C94 -gUnknown_8179C94: @ 8179C94 -.byte 0x58, 0x02, 0x00, 0x00, 0x2f, 0x28, 0x00, 0x02 -.4byte gUnknown_8143B44 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x02, 0x00, 0x00, 0x2c, 0x26, 0x00, 0x02 -.4byte gUnknown_8143D14 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5a, 0x02, 0x00, 0x00, 0x2c, 0x2a, 0x00, 0x02 -.4byte gUnknown_8143E74 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8179CDC -gUnknown_8179CDC: @ 8179CDC -.byte 0x5b, 0x04, 0x00, 0x00, 0x3e, 0x3c, 0x00, 0x02 -.4byte gUnknown_8143F74 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8179CF4 -gUnknown_8179CF4: @ 8179CF4 -.byte 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81440A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144100 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144160 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x4a, 0x00, 0x00, 0x00, 0x52, 0x3c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81441C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x29, 0x3d, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144220 -.byte 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144280 -.byte 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x39, 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81442E0 -.4byte gUnknown_8144320 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x4f, 0x06, 0x00, 0x00, 0x43, 0x29, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144578 -.4byte gUnknown_81445B8 -.4byte gUnknown_8144888 -.byte 0x50, 0x00, 0x00, 0x00, 0x44, 0x1e, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144938 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8179DCC -gUnknown_8179DCC: @ 8179DCC -.byte 0x4e, 0x06, 0x00, 0x00, 0x46, 0x28, 0x00, 0x02 -.4byte gUnknown_8144C8C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x02, 0x00, 0x00, 0x41, 0x28, 0x00, 0x02 -.4byte gUnknown_8144D9C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x02, 0x00, 0x00, 0x3e, 0x26, 0x00, 0x02 -.4byte gUnknown_8144DDC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x02, 0x00, 0x00, 0x3e, 0x2a, 0x00, 0x02 -.4byte gUnknown_8144E0C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x06, 0x00, 0x00, 0x4b, 0x29, 0x02, 0x02 -.4byte gUnknown_8144E3C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x42, 0x21, 0x00, 0x02 -.4byte gUnknown_8144E6C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4f, 0x04, 0x00, 0x00, 0x41, 0x2e, 0x02, 0x02 -.4byte gUnknown_8144E9C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x3e, 0x21, 0x02, 0x02 -.4byte gUnknown_8144ECC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x4c, 0x27, 0x02, 0x02 -.4byte gUnknown_8144EFC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00, 0x4c, 0x25, 0x02, 0x02 -.4byte gUnknown_8144F2C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8179EBC -gUnknown_8179EBC: @ 8179EBC -.byte 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144F98 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8144FF8 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145058 -.byte 0x00, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x52, 0x3c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81450B8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x4b, 0x00, 0x00, 0x00, 0x29, 0x3d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145118 -.byte 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145178 -.byte 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x4d, 0x29, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81451D8 -.4byte gUnknown_8145218 -.byte 0x00, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x3b, 0x2f, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81452E0 -.4byte gUnknown_8145320 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8179F7C -gUnknown_8179F7C: @ 8179F7C -.byte 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145494 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81454F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145554 -.byte 0x00, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x52, 0x3c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81455B4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x4b, 0x00, 0x00, 0x00, 0x29, 0x3d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145614 -.byte 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145674 -.byte 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x4d, 0x29, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81456D4 -.4byte gUnknown_8145714 -.byte 0x00, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x3b, 0x2f, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81457A4 -.4byte gUnknown_81457E4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x50, 0x00, 0x00, 0x00, 0x3b, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145914 -.4byte gUnknown_8145944 -.byte 0x00, 0x00, 0x00, 0x00, 0x4e, 0x03, 0x00, 0x00, 0x39, 0x23, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145AE4 -.4byte gUnknown_8145B14 -.byte 0x00, 0x00, 0x00, 0x00, 0x5f, 0x05, 0x00, 0x00, 0x3d, 0x23, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145C24 -.4byte gUnknown_8145C54 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817A084 -gUnknown_817A084: @ 817A084 -.byte 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145DA0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145E00 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145E60 -.byte 0x00, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x52, 0x3c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145EC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x29, 0x3d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145F20 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145F80 -.byte 0x00, 0x00, 0x00, 0x00, 0x4d, 0x02, 0x00, 0x00, 0x46, 0x2d, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8145FE0 -.4byte gUnknown_8146020 -.byte 0x00, 0x00, 0x00, 0x00, 0x4f, 0x06, 0x00, 0x00, 0x3b, 0x2f, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81460D8 -.4byte gUnknown_8146118 -.byte 0x00, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x39, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8146204 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x5f, 0x00, 0x00, 0x00, 0x3d, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8146288 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817A174 -gUnknown_817A174: @ 817A174 -.byte 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814638C -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81463EC -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814644C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x4a, 0x00, 0x00, 0x00, 0x52, 0x3c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81464AC -.byte 0x00, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x29, 0x3d, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814650C -.byte 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814656C -.byte 0x00, 0x00, 0x00, 0x00, 0x4d, 0x02, 0x00, 0x00, 0x3f, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4f, 0x07, 0x00, 0x00, 0x43, 0x25, 0x02 -warpDungeon 0x00 -.byte 0x00, 0x50, 0x05, 0x00, 0x00, 0x43, 0x29, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817A24C -gUnknown_817A24C: @ 817A24C -.byte 0x00, 0x02, 0x00, 0x00, 0x2e, 0x28, 0x02, 0x02 -.4byte gUnknown_8146704 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x02, 0x00, 0x00, 0x29, 0x28, 0x02, 0x02 -.4byte gUnknown_8147160 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4d, 0x02, 0x00, 0x00, 0x3f, 0x28, 0x00, 0x00 -.4byte gUnknown_8147330 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0x07, 0x00, 0x00, 0x43, 0x25, 0x02, 0x02 -.4byte gUnknown_81474C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x05, 0x00, 0x00, 0x43, 0x29, 0x02, 0x02 -.4byte gUnknown_8147590 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817A2C4 -gUnknown_817A2C4: @ 817A2C4 -.byte 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814765C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81476BC -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814771C -.byte 0x00, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x52, 0x3c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814777C -.byte 0x00, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x29, 0x3d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81477DC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814783C -.byte 0x00, 0x00, 0x00, 0x00, 0x4d, 0x02, 0x00, 0x00, 0x3f, 0x28, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814789C -.byte 0x00, 0x00, 0x00, 0x00, 0x4f, 0x07, 0x00, 0x00, 0x43, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8147968 -.byte 0x00, 0x00, 0x00, 0x00, 0x50, 0x05, 0x00, 0x00, 0x43, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8147A08 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817A39C -gUnknown_817A39C: @ 817A39C -.byte 0x00, 0x02, 0x00, 0x00, 0x05, 0x28, 0x00, 0x02 -.4byte gUnknown_8147AF4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x02, 0x00, 0x00, 0x08, 0x28, 0x00, 0x02 -.4byte gUnknown_8147CF0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817A3CC -gUnknown_817A3CC: @ 817A3CC -.byte 0x00, 0x02, 0x00, 0x00, 0x07, 0x29, 0x00, 0x02 -.4byte gUnknown_8147F8C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x02, 0x00, 0x00, 0x04, 0x27, 0x00, 0x02 -.4byte gUnknown_81481F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817A3FC -gUnknown_817A3FC: @ 817A3FC -.byte 0x00, 0x02, 0x00, 0x00, 0x22, 0x29, 0x00, 0x02 -.4byte gUnknown_81484D4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x02, 0x00, 0x00, 0x22, 0x27, 0x00, 0x02 -.4byte gUnknown_814A970 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x41, 0x27, 0x00, 0x02 -.4byte gUnknown_814AEE0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x03, 0x00, 0x00, 0x3c, 0x29, 0x00, 0x02 -.4byte gUnknown_814B1E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4d, 0x05, 0x00, 0x00, 0x45, 0x2b, 0x00, 0x02 -.4byte gUnknown_814B6A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0x03, 0x00, 0x00, 0x3b, 0x26, 0x00, 0x02 -.4byte gUnknown_814BAD0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x03, 0x00, 0x00, 0x3d, 0x2c, 0x00, 0x02 -.4byte gUnknown_814BFB0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0x46, 0x23, 0x00, 0x02 -.4byte gUnknown_814C4B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4b, 0x05, 0x00, 0x00, 0x47, 0x2f, 0x00, 0x02 -.4byte gUnknown_814C770 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x06, 0x00, 0x00, 0x4d, 0x28, 0x00, 0x02 -.4byte gUnknown_814CA30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x04, 0x00, 0x00, 0x3f, 0x30, 0x00, 0x02 -.4byte gUnknown_814CD40 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46, 0x06, 0x00, 0x00, 0x48, 0x26, 0x00, 0x02 -.4byte gUnknown_814CFE0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x47, 0x06, 0x00, 0x00, 0x48, 0x28, 0x00, 0x02 -.4byte gUnknown_814D270 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817A534 -gUnknown_817A534: @ 817A534 -.byte 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814D52C -.4byte gUnknown_814D54C -.4byte gUnknown_814D5CC -.byte 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814D5FC -.4byte gUnknown_814D61C -.4byte gUnknown_814D69C -.byte 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814D6CC -.4byte gUnknown_814D6EC -.4byte gUnknown_814D76C -.byte 0x4a, 0x00, 0x00, 0x00, 0x52, 0x3c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814D79C -.4byte gUnknown_814D7BC -.4byte gUnknown_814D83C -.byte 0x4b, 0x00, 0x00, 0x00, 0x29, 0x3d, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814D86C -.4byte gUnknown_814D88C -.4byte gUnknown_814D90C -.byte 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_814D93C -.4byte gUnknown_814D95C -.4byte gUnknown_814D9DC - -.global gUnknown_817A5C4 -gUnknown_817A5C4: @ 817A5C4 -.byte 0x00, 0x02, 0x00, 0x00, 0x2b, 0x28, 0x00, 0x02 -.4byte gUnknown_814DC14 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x02, 0x00, 0x00, 0x2b, 0x2a, 0x00, 0x02 -.4byte gUnknown_8150A08 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x02, 0x00, 0x00, 0x28, 0x29, 0x00, 0x02 -.4byte gUnknown_8150CB8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x41, 0x27, 0x02, 0x02 -.4byte gUnknown_8150DE8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x06, 0x00, 0x00, 0x46, 0x27, 0x00, 0x02 -.4byte gUnknown_81513C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4d, 0x04, 0x00, 0x00, 0x41, 0x2c, 0x02, 0x02 -.4byte gUnknown_81516E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x05, 0x00, 0x00, 0x46, 0x2b, 0x00, 0x02 -.4byte gUnknown_8151B48 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x03, 0x00, 0x00, 0x3c, 0x2b, 0x02, 0x02 -.4byte gUnknown_8151E18 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0x02, 0x00, 0x00, 0x2e, 0x27, 0x00, 0x02 -.4byte gUnknown_81521A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x5c, 0x01, 0x00, 0x00, 0x3e, 0x25, 0x00, 0x02 -.4byte gUnknown_81525B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817A6B4 -gUnknown_817A6B4: @ 817A6B4 -.byte 0x37, 0x00, 0x00, 0x00, 0x41, 0x2c, 0x02, 0x00 -.4byte gUnknown_8152988 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817A6CC -gUnknown_817A6CC: @ 817A6CC -.byte 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8152C74 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8152E2C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8152EDC -.byte 0x00, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x52, 0x3c, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153034 -.byte 0x00, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x29, 0x3d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153174 -.byte 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153334 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x4d, 0x05, 0x00, 0x00, 0x46, 0x2d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153430 -.4byte gUnknown_8153470 -.byte 0x00, 0x00, 0x00, 0x00, 0x4f, 0x03, 0x00, 0x00, 0x3b, 0x2f, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81534FC -.4byte gUnknown_815353C -.byte 0x00, 0x00, 0x00, 0x00, 0x55, 0x06, 0x00, 0x00, 0x41, 0x24, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81535E0 -.4byte gUnknown_8153620 -.byte 0x00, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x44, 0x1f, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153768 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817A7BC -gUnknown_817A7BC: @ 817A7BC -.byte 0x00, 0x00, 0x00, 0x00, 0x3d, 0x1e, 0x00, 0x02 -.4byte gUnknown_8153894 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x3d, 0x1e, 0x00, 0x02 -.4byte gUnknown_8153BF4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02 -.4byte gUnknown_8153C34 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153CD4 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02 -.4byte gUnknown_8153DB4 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153E64 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817A81C -gUnknown_817A81C: @ 817A81C -.byte 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153F60 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8153FC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8154020 -.byte 0x00, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x52, 0x3c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8154080 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x4b, 0x00, 0x00, 0x00, 0x29, 0x3d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81540E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8154140 -.byte 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x46, 0x2d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81541A0 -.4byte gUnknown_81541E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x3b, 0x2f, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81542AC -.4byte gUnknown_81542EC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x55, 0x00, 0x00, 0x00, 0x41, 0x24, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815439C -.4byte gUnknown_81543DC -.byte 0x00, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x44, 0x1f, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8154500 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817A90C -gUnknown_817A90C: @ 817A90C -.byte 0x00, 0x02, 0x00, 0x00, 0x26, 0x29, 0x00, 0x02 -.4byte gUnknown_8154794 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x02, 0x00, 0x00, 0x23, 0x29, 0x00, 0x02 -.4byte gUnknown_8156884 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4d, 0x02, 0x00, 0x00, 0x26, 0x27, 0x00, 0x02 -.4byte gUnknown_8156C44 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x06, 0x00, 0x00, 0x4c, 0x28, 0x00, 0x02 -.4byte gUnknown_8156EB4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x02, 0x00, 0x00, 0x3f, 0x28, 0x00, 0x02 -.4byte gUnknown_81570C4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x69, 0x01, 0x00, 0x00, 0x45, 0x23, 0x00, 0x02 -.4byte gUnknown_81575E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6a, 0x03, 0x00, 0x00, 0x43, 0x2d, 0x00, 0x02 -.4byte gUnknown_8157A64 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, 0x01, 0x00, 0x00, 0x40, 0x24, 0x00, 0x02 -.4byte gUnknown_8157EE4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x01, 0x00, 0x00, 0x3d, 0x23, 0x00, 0x02 -.4byte gUnknown_8158324 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x02, 0x00, 0x00, 0x3c, 0x26, 0x00, 0x02 -.4byte gUnknown_8158684 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8a, 0x01, 0x00, 0x00, 0x41, 0x21, 0x00, 0x02 -.4byte gUnknown_8158A44 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x02, 0x00, 0x00, 0x40, 0x2b, 0x00, 0x02 -.4byte gUnknown_8158DA4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x03, 0x00, 0x00, 0x3f, 0x2e, 0x00, 0x02 -.4byte gUnknown_8159104 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x02, 0x00, 0x00, 0x3c, 0x2c, 0x00, 0x02 -.4byte gUnknown_8159464 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8e, 0x02, 0x00, 0x00, 0x43, 0x26, 0x00, 0x02 -.4byte gUnknown_8159804 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x02, 0x00, 0x00, 0x44, 0x29, 0x00, 0x02 -.4byte gUnknown_8159B04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0x03, 0x00, 0x00, 0x46, 0x2f, 0x02, 0x02 -.4byte gUnknown_8159E94 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817AAA4 -gUnknown_817AAA4: @ 817AAA4 -.byte 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815A2A0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815A300 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815A360 -.byte 0x00, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x52, 0x3c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815A3C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x29, 0x3d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815A420 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815A480 -.byte 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x48, 0x2d, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815A4E0 -.4byte gUnknown_815A520 -.byte 0x00, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x3b, 0x2f, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815A620 -.4byte gUnknown_815A660 -.byte 0x00, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x3e, 0x24, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815A714 -.4byte gUnknown_815A754 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x50, 0x00, 0x00, 0x00, 0x44, 0x1f, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_815A810 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817AB94 -gUnknown_817AB94: @ 817AB94 -.byte 0x00, 0x02, 0x00, 0x00, 0x29, 0x29, 0x00, 0x02 -.4byte gUnknown_815AAE0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x02, 0x00, 0x00, 0x29, 0x27, 0x00, 0x02 -.4byte gUnknown_815DBB8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x06, 0x00, 0x00, 0x4c, 0x28, 0x00, 0x02 -.4byte gUnknown_815E298 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x40, 0x1c, 0x02, 0x02 -.4byte gUnknown_815E488 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x06, 0x00, 0x00, 0x48, 0x28, 0x00, 0x02 -.4byte gUnknown_815EAA8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x69, 0x06, 0x00, 0x00, 0x48, 0x25, 0x00, 0x02 -.4byte gUnknown_815EBB8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x05, 0x00, 0x00, 0x48, 0x2b, 0x00, 0x02 -.4byte gUnknown_815EC78 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4d, 0x02, 0x00, 0x00, 0x39, 0x27, 0x00, 0x02 -.4byte gUnknown_815ED38 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0x03, 0x00, 0x00, 0x42, 0x2f, 0x02, 0x02 -.4byte gUnknown_815F118 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x01, 0x00, 0x00, 0x3d, 0x23, 0x00, 0x02 -.4byte gUnknown_815F428 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x02, 0x00, 0x00, 0x3c, 0x26, 0x00, 0x02 -.4byte gUnknown_815F928 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8b, 0x02, 0x00, 0x00, 0x40, 0x2b, 0x00, 0x02 -.4byte gUnknown_815FC58 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x03, 0x00, 0x00, 0x3f, 0x2e, 0x00, 0x02 -.4byte gUnknown_8160158 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x02, 0x00, 0x00, 0x3c, 0x2c, 0x00, 0x02 -.4byte gUnknown_8160588 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x44, 0x23, 0x00, 0x02 -.4byte gUnknown_8160898 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8f, 0x02, 0x00, 0x00, 0x40, 0x25, 0x00, 0x02 -.4byte gUnknown_8160C78 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817AD14 -gUnknown_817AD14: @ 817AD14 -.byte 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161054 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81611F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81612A0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x4a, 0x00, 0x00, 0x00, 0x52, 0x3c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81613B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x29, 0x3d, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81614E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816167C -.byte 0x00, 0x00, 0x00, 0x00, 0x4d, 0x02, 0x00, 0x00, 0x3e, 0x25, 0x02, 0x02 -.4byte gUnknown_8161794 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81617C4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x68, 0x06, 0x00, 0x00, 0x41, 0x25, 0x02, 0x02 -.4byte gUnknown_8161948 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161978 -.byte 0x00, 0x00, 0x00, 0x00, 0x4f, 0x02, 0x00, 0x00, 0x3b, 0x2f, 0x02, 0x02 -.4byte gUnknown_8161A58 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161A88 -.byte 0x00, 0x00, 0x00, 0x00, 0x69, 0x06, 0x00, 0x00, 0x3e, 0x2f, 0x02, 0x02 -.4byte gUnknown_8161C7C -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161CAC -.byte 0x00, 0x00, 0x00, 0x00, 0x55, 0x02, 0x00, 0x00, 0x41, 0x2b, 0x02, 0x02 -.4byte gUnknown_8161D9C -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161DCC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x6a, 0x06, 0x00, 0x00, 0x44, 0x2b, 0x02, 0x02 -.4byte gUnknown_8161F5C -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8161F8C -.byte 0x00, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x44, 0x1f, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816206C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817AE4C -gUnknown_817AE4C: @ 817AE4C -.byte 0x00, 0x00, 0x00, 0x00, 0x3d, 0x1e, 0x00, 0x02 -.4byte gUnknown_8162190 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x3d, 0x1e, 0x00, 0x02 -.4byte gUnknown_81624A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02 -.4byte gUnknown_81624E0 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162580 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02 -.4byte gUnknown_8162660 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162710 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817AEAC -gUnknown_817AEAC: @ 817AEAC -.byte 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816280C -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02 -.4byte gUnknown_81628EC -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816290C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81629BC -.byte 0x00, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x52, 0x3c, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162A6C -.byte 0x00, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x29, 0x3d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162B3C -.byte 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162C3C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x68, 0x00, 0x00, 0x00, 0x41, 0x25, 0x00, 0x02 -.4byte gUnknown_8162CFC -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8162D2C -.byte 0x00, 0x00, 0x00, 0x00, 0x69, 0x03, 0x00, 0x00, 0x3e, 0x2a, 0x00, 0x00 -.4byte gUnknown_8163090 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81630C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x05, 0x00, 0x00, 0x44, 0x29, 0x00, 0x02 -.4byte gUnknown_81632A0 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81632D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x3b, 0x2f, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81634B0 -.4byte gUnknown_81635B0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x55, 0x00, 0x00, 0x00, 0x39, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81636D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x44, 0x1f, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81638C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x45, 0x0e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81639BC -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817AFE4 -gUnknown_817AFE4: @ 817AFE4 -.byte 0x00, 0x00, 0x00, 0x00, 0x3d, 0x1e, 0x00, 0x02 -.4byte gUnknown_8163B24 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x3d, 0x1e, 0x00, 0x02 -.4byte gUnknown_8163CF4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02 -.4byte gUnknown_8163D34 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8163DD4 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02 -.4byte gUnknown_8163EB4 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8163F64 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817B044 -gUnknown_817B044: @ 817B044 -.byte 0x00, 0x02, 0x00, 0x00, 0x2e, 0x27, 0x00, 0x02 -.4byte gUnknown_81641B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x02, 0x00, 0x00, 0x2e, 0x29, 0x00, 0x02 -.4byte gUnknown_8165464 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x04, 0x00, 0x00, 0x52, 0x2a, 0x00, 0x02 -.4byte gUnknown_8165654 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x06, 0x00, 0x00, 0x4e, 0x24, 0x00, 0x02 -.4byte gUnknown_8165794 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x52, 0x26, 0x00, 0x02 -.4byte gUnknown_8165964 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x68, 0x07, 0x00, 0x00, 0x59, 0x25, 0x00, 0x02 -.4byte gUnknown_8165AB4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x69, 0x06, 0x00, 0x00, 0x5a, 0x28, 0x00, 0x02 -.4byte gUnknown_8165C34 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x05, 0x00, 0x00, 0x57, 0x2a, 0x00, 0x02 -.4byte gUnknown_8165D94 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x02, 0x00, 0x00, 0x29, 0x28, 0x02, 0x02 -.4byte gUnknown_8165EA4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x59, 0x02, 0x00, 0x00, 0x28, 0x26, 0x02, 0x02 -.4byte gUnknown_8165F34 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5a, 0x02, 0x00, 0x00, 0x28, 0x2a, 0x02, 0x02 -.4byte gUnknown_8166034 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x03, 0x00, 0x00, 0x38, 0x32, 0x00, 0x02 -.4byte gUnknown_8166134 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, 0x04, 0x00, 0x00, 0x4b, 0x36, 0x00, 0x00 -.4byte gUnknown_81662A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0x04, 0x00, 0x00, 0x43, 0x36, 0x00, 0x02 -.4byte gUnknown_8166474 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x3e, 0x1a, 0x00, 0x00 -.4byte gUnknown_81665D4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x00, 0x00, 0x00, 0x41, 0x18, 0x00, 0x02 -.4byte gUnknown_8166724 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x00, 0x00, 0x00, 0x42, 0x1a, 0x00, 0x00 -.4byte gUnknown_81667F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8d, 0x00, 0x00, 0x00, 0x3c, 0x16, 0x00, 0x02 -.4byte gUnknown_81668B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x44, 0x15, 0x00, 0x02 -.4byte gUnknown_81669D4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02 -.4byte gUnknown_8166B54 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8166B84 -.byte 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02 -.4byte gUnknown_8166BA4 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8166BD4 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817B23C -gUnknown_817B23C: @ 817B23C -.byte 0x00, 0x06, 0x00, 0x00, 0x3f, 0x29, 0x00, 0x02 -.4byte gUnknown_8166C80 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00, 0x3f, 0x27, 0x00, 0x02 -.4byte gUnknown_8167744 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x05, 0x00, 0x00, 0x43, 0x2a, 0x00, 0x02 -.4byte gUnknown_8167814 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x07, 0x00, 0x00, 0x44, 0x24, 0x00, 0x02 -.4byte gUnknown_8167854 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x55, 0x06, 0x00, 0x00, 0x46, 0x26, 0x00, 0x02 -.4byte gUnknown_81678A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x06, 0x00, 0x00, 0x48, 0x25, 0x00, 0x02 -.4byte gUnknown_81678E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x69, 0x06, 0x00, 0x00, 0x48, 0x28, 0x00, 0x02 -.4byte gUnknown_8167924 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x05, 0x00, 0x00, 0x46, 0x2a, 0x00, 0x02 -.4byte gUnknown_8167964 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x58, 0x02, 0x00, 0x00, 0x3b, 0x28, 0x02, 0x02 -.4byte gUnknown_81679A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x02, 0x00, 0x00, 0x3a, 0x26, 0x02, 0x02 -.4byte gUnknown_8167A04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5a, 0x02, 0x00, 0x00, 0x3a, 0x2a, 0x02, 0x02 -.4byte gUnknown_8167A34 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x04, 0x00, 0x00, 0x3c, 0x2c, 0x00, 0x02 -.4byte gUnknown_8167A64 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x87, 0x05, 0x00, 0x00, 0x47, 0x2d, 0x00, 0x02 -.4byte gUnknown_8167AA4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x04, 0x00, 0x00, 0x41, 0x2e, 0x00, 0x02 -.4byte gUnknown_8167AE4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x3e, 0x23, 0x00, 0x02 -.4byte gUnknown_8167B24 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x00, 0x00, 0x00, 0x3f, 0x20, 0x00, 0x02 -.4byte gUnknown_8167B64 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8c, 0x00, 0x00, 0x00, 0x42, 0x22, 0x00, 0x02 -.4byte gUnknown_8167BA4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x01, 0x00, 0x00, 0x3a, 0x22, 0x00, 0x02 -.4byte gUnknown_8167BE4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x07, 0x00, 0x00, 0x46, 0x21, 0x00, 0x02 -.4byte gUnknown_8167C24 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817B404 -gUnknown_817B404: @ 817B404 -.byte 0x00, 0x00, 0x00, 0x00, 0x41, 0x28, 0x00, 0x02 -.4byte gUnknown_8167D40 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817B41C -gUnknown_817B41C: @ 817B41C -.byte 0x22, 0x00, 0x00, 0x00, 0x41, 0x25, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8167DBC -.byte 0x00, 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168208 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81682EC -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81683C4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x4a, 0x00, 0x00, 0x00, 0x52, 0x3c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168494 -.byte 0x00, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x29, 0x3d, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816856C -.byte 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168674 -.byte 0x00, 0x00, 0x00, 0x00, 0x68, 0x06, 0x00, 0x00, 0x48, 0x25, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168798 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x69, 0x06, 0x00, 0x00, 0x48, 0x2c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168824 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x04, 0x00, 0x00, 0x40, 0x30, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81688DC -.byte 0x00, 0x00, 0x00, 0x00, 0x55, 0x06, 0x00, 0x00, 0x46, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81689C4 -.byte 0x00, 0x00, 0x00, 0x00, 0x4d, 0x05, 0x00, 0x00, 0x3b, 0x2f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168A5C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x36, 0x01, 0x00, 0x00, 0x38, 0x2c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168B28 -.byte 0x00, 0x00, 0x00, 0x00, 0x58, 0x01, 0x00, 0x00, 0x3c, 0x22, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168BE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x59, 0x01, 0x00, 0x00, 0x38, 0x23, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168CBC -.byte 0x00, 0x00, 0x00, 0x00, 0x5a, 0x01, 0x00, 0x00, 0x3b, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168D80 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817B59C -gUnknown_817B59C: @ 817B59C -.byte 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168E64 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8168F48 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816901C -.byte 0x00, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x52, 0x3c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81690EC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x4b, 0x00, 0x00, 0x00, 0x29, 0x3d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81691CC -.byte 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81692A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x68, 0x07, 0x00, 0x00, 0x47, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8169384 -.byte 0x00, 0x00, 0x00, 0x00, 0x69, 0x06, 0x00, 0x00, 0x49, 0x25, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816941C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x6a, 0x00, 0x00, 0x00, 0x44, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816949C -.byte 0x00, 0x00, 0x00, 0x00, 0x55, 0x05, 0x00, 0x00, 0x47, 0x2d, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816953C -.byte 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x3a, 0x24, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81695AC -.byte 0x00, 0x00, 0x00, 0x00, 0x59, 0x03, 0x00, 0x00, 0x3b, 0x2e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8169664 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x5a, 0x04, 0x00, 0x00, 0x3e, 0x30, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816972C -.byte 0x00, 0x00, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x00, 0x3d, 0x1c, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81697A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x3e, 0x01, 0x00, 0x00, 0x3b, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8169830 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817B704 -gUnknown_817B704: @ 817B704 -.byte 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81698F8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81699E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8169AC8 -.byte 0x00, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x52, 0x3c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8169BAC -.byte 0x00, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x29, 0x3d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8169CA0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8169DCC -.byte 0x00, 0x00, 0x00, 0x00, 0x68, 0x07, 0x00, 0x00, 0x47, 0x25, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8169EAC -.byte 0x00, 0x00, 0x00, 0x00, 0x69, 0x02, 0x00, 0x00, 0x3a, 0x14, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8169F3C -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x01, 0x00, 0x00, 0x3d, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8169FDC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x55, 0x06, 0x00, 0x00, 0x44, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A084 -.byte 0x00, 0x00, 0x00, 0x00, 0x4d, 0x05, 0x00, 0x00, 0x47, 0x2d, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A134 -.byte 0x00, 0x00, 0x00, 0x00, 0x59, 0x01, 0x00, 0x00, 0x3b, 0x2e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A1B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x5a, 0x05, 0x00, 0x00, 0x3e, 0x30, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A23C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x3d, 0x00, 0x00, 0x00, 0x39, 0x24, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A2C4 -.byte 0x00, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x3c, 0x24, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A344 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817B86C -gUnknown_817B86C: @ 817B86C -.byte 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00 -warpDungeon 0x00 -.byte 0x00 -.byte 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02 -warpDungeon 0x00 -.byte 0x00, 0x4a, 0x00, 0x00, 0x00, 0x52, 0x3c, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x29, 0x3d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02 -warpDungeon 0x00 -.byte 0x00 - -.global gUnknown_817B8FC -gUnknown_817B8FC: @ 817B8FC -.byte 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A4D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A628 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A6D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x52, 0x3c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A7B0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x4b, 0x00, 0x00, 0x00, 0x29, 0x3d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A8A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816A980 -.byte 0x00, 0x00, 0x00, 0x00, 0x55, 0x07, 0x00, 0x00, 0x45, 0x24, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816AA80 -.byte 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x5a, 0x25, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816AB1C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x59, 0x00, 0x00, 0x00, 0x39, 0x21, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816ABB8 -.byte 0x00, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x3d, 0x21, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816AC98 -.byte 0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3a, 0x3d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816AD78 -.byte 0x00, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x3d, 0x3d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816ADF0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x5f, 0x02, 0x00, 0x00, 0x3c, 0x2b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816AE70 -.byte 0x00, 0x00, 0x00, 0x00, 0x4e, 0x06, 0x00, 0x00, 0x40, 0x2b, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816AF9C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817BA4C -gUnknown_817BA4C: @ 817BA4C -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x19, 0x00, 0x02 -.4byte gUnknown_816B150 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02 -.4byte gUnknown_816B424 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816B4D4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02 -.4byte gUnknown_816B620 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816B6F0 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817BA94 -gUnknown_817BA94: @ 817BA94 -.byte 0x7c, 0x00, 0x00, 0x00, 0x3c, 0x0b, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816B7A0 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817BAAC -gUnknown_817BAAC: @ 817BAAC -.byte 0x4d, 0x05, 0x00, 0x00, 0x47, 0x2c, 0x00, 0x02 -.4byte gUnknown_816BC04 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816BC34 -.4byte gUnknown_816C390 - -.global gUnknown_817BAC4 -gUnknown_817BAC4: @ 817BAC4 -.byte 0x58, 0x00, 0x00, 0x00, 0x44, 0x1b, 0x00, 0x02 -.4byte gUnknown_816C510 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816C540 -.4byte gUnknown_816C958 - -.global gUnknown_817BADC -gUnknown_817BADC: @ 817BADC -.byte 0x4d, 0x00, 0x00, 0x00, 0x41, 0x25, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816CA38 -.byte 0x00, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x41, 0x24, 0x00, 0x02 -.4byte gUnknown_816CB70 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816CBA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x29, 0x3d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816CC54 -.byte 0x00, 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816CCB4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816CD14 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x52, 0x3c, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816CD74 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816CDD4 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817BB84 -gUnknown_817BB84: @ 817BB84 -.byte 0x00, 0x02, 0x00, 0x00, 0x46, 0x25, 0x00, 0x02 -.4byte gUnknown_816CF4C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x02, 0x00, 0x00, 0x46, 0x2a, 0x00, 0x02 -.4byte gUnknown_816D2CC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x06, 0x00, 0x00, 0x41, 0x26, 0x00, 0x00 -.4byte gUnknown_816D39C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x41, 0x25, 0x00, 0x00 -.4byte gUnknown_816D48C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0x02, 0x00, 0x00, 0x1d, 0x29, 0x00, 0x00 -.4byte gUnknown_816D56C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817BBFC -gUnknown_817BBFC: @ 817BBFC -.byte 0x73, 0x00, 0x00, 0x00, 0x46, 0x14, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816D78C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817BC14 -gUnknown_817BC14: @ 817BC14 -.byte 0x73, 0x00, 0x00, 0x00, 0x46, 0x14, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_816D8B4 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817BC2C -gUnknown_817BC2C: @ 817BC2C -.byte 0x00, 0x02, 0x00, 0x00, 0x2e, 0x28, 0x00, 0x02 -.4byte gUnknown_816D940 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0x02, 0x00, 0x00, 0x1a, 0x28, 0x00, 0x02 -.4byte gUnknown_816E32C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817BC5C -gUnknown_817BC5C: @ 817BC5C -.byte 0x01, 0x02, 0x00, 0x00, 0x2e, 0x28, 0x00, 0x02 -.4byte gUnknown_816E9F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x02, 0x00, 0x00, 0x37, 0x28, 0x00, 0x02 -.4byte gUnknown_817094C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x07, 0x00, 0x00, 0x43, 0x26, 0x00, 0x00 -.4byte gUnknown_81709AC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0x05, 0x00, 0x00, 0x43, 0x2b, 0x00, 0x00 -.4byte gUnknown_8170D6C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6d, 0x03, 0x00, 0x00, 0x3f, 0x2b, 0x00, 0x00 -.4byte gUnknown_817113C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6e, 0x01, 0x00, 0x00, 0x3f, 0x26, 0x00, 0x00 -.4byte gUnknown_817145C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x02, 0x00, 0x00, 0x2a, 0x2a, 0x00, 0x00 -.4byte gUnknown_817197C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x02, 0x00, 0x00, 0x27, 0x27, 0x00, 0x00 -.4byte gUnknown_8171AAC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817BD1C -gUnknown_817BD1C: @ 817BD1C -.byte 0x01, 0x02, 0x00, 0x00, 0x27, 0x29, 0x00, 0x00 -.4byte gUnknown_8171D48 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x02, 0x00, 0x00, 0x2b, 0x29, 0x00, 0x00 -.4byte gUnknown_8172B68 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46, 0x05, 0x00, 0x00, 0x43, 0x2c, 0x00, 0x00 -.4byte gUnknown_8172D68 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x04, 0x00, 0x00, 0x41, 0x28, 0x00, 0x00 -.4byte gUnknown_8172DE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x48, 0x03, 0x00, 0x00, 0x3f, 0x2c, 0x00, 0x00 -.4byte gUnknown_8173008 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4b, 0x01, 0x00, 0x00, 0x3f, 0x25, 0x00, 0x00 -.4byte gUnknown_81730A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x07, 0x00, 0x00, 0x44, 0x25, 0x00, 0x00 -.4byte gUnknown_8173188 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817BDC4 -gUnknown_817BDC4: @ 817BDC4 -.byte 0x01, 0x03, 0x00, 0x00, 0x3c, 0x2a, 0x00, 0x02 -.4byte gUnknown_8173394 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x03, 0x00, 0x00, 0x3e, 0x2c, 0x00, 0x02 -.4byte gUnknown_8174E1C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46, 0x05, 0x00, 0x00, 0x44, 0x2c, 0x00, 0x02 -.4byte gUnknown_817500C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x04, 0x00, 0x00, 0x41, 0x2e, 0x00, 0x02 -.4byte gUnknown_81750CC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x05, 0x00, 0x00, 0x47, 0x2a, 0x00, 0x02 -.4byte gUnknown_817534C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x79, 0x00, 0x00, 0x00, 0x41, 0x27, 0x00, 0x02 -.4byte gUnknown_81754AC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817BE54 -gUnknown_817BE54: @ 817BE54 -.byte 0x01, 0x02, 0x00, 0x00, 0x3b, 0x26, 0x00, 0x02 -.4byte gUnknown_81757F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x02, 0x00, 0x00, 0x3b, 0x29, 0x00, 0x02 -.4byte gUnknown_8176DCC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x3f, 0x23, 0x00, 0x00 -.4byte gUnknown_817708C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x47, 0x00, 0x00, 0x00, 0x43, 0x23, 0x00, 0x00 -.4byte gUnknown_817725C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x07, 0x00, 0x00, 0x47, 0x25, 0x00, 0x00 -.4byte gUnknown_817742C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x79, 0x06, 0x00, 0x00, 0x45, 0x29, 0x00, 0x00 -.4byte gUnknown_817755C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x02, 0x00, 0x00, 0x3e, 0x29, 0x00, 0x00 -.4byte gUnknown_817785C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817BEFC -gUnknown_817BEFC: @ 817BEFC -.byte 0x4d, 0x00, 0x00, 0x00, 0x47, 0x2c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8177B2C -.byte 0x00, 0x00, 0x00, 0x00, 0x51, 0x04, 0x00, 0x00, 0x3a, 0x2c, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8177DA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x4f, 0x04, 0x00, 0x00, 0x3b, 0x2f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8177E60 -.byte 0x00, 0x00, 0x00, 0x00, 0x55, 0x02, 0x00, 0x00, 0x3d, 0x13, 0x00, 0x02 -.4byte gUnknown_8177FCC -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817803C -.4byte gUnknown_8178340 -.byte 0x46, 0x00, 0x00, 0x00, 0x24, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8178410 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8178564 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x52, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8178690 -.byte 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x61, 0x21, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8178780 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x4b, 0x00, 0x00, 0x00, 0x29, 0x3d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8178870 -.byte 0x00, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x52, 0x3c, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81789BC -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817BFEC -gUnknown_817BFEC: @ 817BFEC -.byte 0x5d, 0x02, 0x00, 0x00, 0x3d, 0x30, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8178B08 -.byte 0x00, 0x00, 0x00, 0x00, 0x5c, 0x06, 0x00, 0x00, 0x41, 0x30, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8178C10 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817C01C -gUnknown_817C01C: @ 817C01C -.byte 0x52, 0x06, 0x00, 0x00, 0x41, 0x30, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8178D0C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817C034 -gUnknown_817C034: @ 817C034 -.byte 0x0f, 0x00, 0x03, 0x02, 0x0d, 0x25, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8138FC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x03, 0x02, 0x44, 0x0a, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81390C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x03, 0x02, 0x72, 0x24, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8139158 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817C07C -gUnknown_817C07C: @ 817C07C -.byte 0x42, 0x00, 0x02, 0x02, 0x73, 0x27, 0x02, 0x02 -.4byte gUnknown_813BFC8 -.4byte gUnknown_813C058 -.4byte gUnknown_813C088 -.byte 0x00, 0x00, 0x00, 0x00, 0x42, 0x00, 0x02, 0x02, 0x73, 0x27, 0x02, 0x02 -.4byte gUnknown_813C0D8 -.4byte gUnknown_813C168 -.4byte gUnknown_813C198 -.byte 0x00, 0x00, 0x00, 0x00, 0x42, 0x00, 0x02, 0x02, 0x73, 0x27, 0x02, 0x02 -.4byte gUnknown_813C1E8 -.4byte gUnknown_813C278 -.4byte gUnknown_813C2A8 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817C0C4 -gUnknown_817C0C4: @ 817C0C4 -.byte 0x00, 0x00, 0x01, 0x01, 0x0f, 0x27, 0x00, 0x02 -.4byte gUnknown_813D31C - -.global gUnknown_817C0D0 -gUnknown_817C0D0: @ 817C0D0 -.byte 0x00, 0x00, 0x01, 0x01, 0x42, 0x28, 0x00, 0x02 -.4byte gUnknown_814104C - -.global gUnknown_817C0DC -gUnknown_817C0DC: @ 817C0DC -.byte 0x00, 0x00, 0x01, 0x01, 0x42, 0x28, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817C0E8 -gUnknown_817C0E8: @ 817C0E8 -.byte 0x00, 0x00, 0x01, 0x01, 0x40, 0x28, 0x02, 0x02 -.4byte gUnknown_8146684 - -.global gUnknown_817C0F4 -gUnknown_817C0F4: @ 817C0F4 -.byte 0x00, 0x00, 0x01, 0x01, 0x0b, 0x28, 0x00, 0x02 -.4byte gUnknown_8147EAC - -.global gUnknown_817C100 -gUnknown_817C100: @ 817C100 -.byte 0x00, 0x00, 0x01, 0x01, 0x2b, 0x2a, 0x00, 0x02 -.4byte gUnknown_8148404 - -.global gUnknown_817C10C -gUnknown_817C10C: @ 817C10C -.byte 0x00, 0x00, 0x01, 0x01, 0x42, 0x2a, 0x00, 0x02 -.4byte gUnknown_814DB44 - -.global gUnknown_817C118 -gUnknown_817C118: @ 817C118 -.byte 0x05, 0x00, 0x01, 0x01 -.byte 0x42, 0x29, 0x00, 0x02 -.4byte gUnknown_8152A68 -.byte 0x05, 0x00, 0x01, 0x01, 0x42, 0x29, 0x00, 0x02 -.4byte gUnknown_8152BA8 - -.global gUnknown_817C130 -gUnknown_817C130: @ 817C130 -.byte 0x00, 0x00, 0x01, 0x01, 0x41, 0x2a, 0x00, 0x02 -.4byte gUnknown_8154684 - -.global gUnknown_817C13C -gUnknown_817C13C: @ 817C13C -.byte 0x00, 0x00, 0x01, 0x01, 0x35, 0x2a, 0x02, 0x02 -.4byte gUnknown_815A9B0 - -.global gUnknown_817C148 -gUnknown_817C148: @ 817C148 -.byte 0x00, 0x00, 0x01, 0x01, 0x54, 0x28, 0x00, 0x02 -.4byte gUnknown_8164138 - -.global gUnknown_817C154 -gUnknown_817C154: @ 817C154 -.byte 0x00, 0x00, 0x01, 0x01, 0x41, 0x28, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817C160 -gUnknown_817C160: @ 817C160 -.byte 0x00, 0x00, 0x01, 0x01, 0x17, 0x22, 0x00, 0x02 -.4byte gUnknown_816A44C - -.global gUnknown_817C16C -gUnknown_817C16C: @ 817C16C -.byte 0x00, 0x00, 0x01, 0x01, 0x45, 0x28, 0x00, 0x02 -.4byte gUnknown_816CEFC - -.global gUnknown_817C178 -gUnknown_817C178: @ 817C178 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x40, 0x2a, 0x00, 0x00 -.4byte gUnknown_816E988 - -.global gUnknown_817C184 -gUnknown_817C184: @ 817C184 -.byte 0x00, 0x00, 0x01, 0x01, 0x41, 0x29, 0x00, 0x00 -.4byte gUnknown_8171CE8 - -.global gUnknown_817C190 -gUnknown_817C190: @ 817C190 -.byte 0x00, 0x00, 0x01, 0x01, 0x41, 0x2c, 0x00, 0x00 -.4byte gUnknown_8173364 - -.global gUnknown_817C19C -gUnknown_817C19C: @ 817C19C -.byte 0x00, 0x00, 0x01, 0x01, 0x40, 0x29, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817C1A8 -gUnknown_817C1A8: @ 817C1A8 -.byte 0x03, 0x0c, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00 -.4byte gUnknown_8138F00 -.byte 0x0f, 0x06, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00 -.4byte gUnknown_8138F3C -.byte 0x03, 0x0c, 0x00, 0x00, 0x75, 0x22, 0x00, 0x00 -.4byte gUnknown_8138F78 -.byte 0x09, 0x03, 0x00, 0x00, 0x3f, 0x57, 0x00, 0x00 -.4byte gUnknown_8138FB4 - -.global gUnknown_817C1D8 -gUnknown_817C1D8: @ 817C1D8 -.byte 0x03, 0x09, 0x00, 0x00 -.byte 0x4b, 0x23, 0x00, 0x00 -.4byte gUnknown_813F58C - -.global gUnknown_817C1E4 -gUnknown_817C1E4: @ 817C1E4 -.byte 0x06, 0x09, 0x00, 0x00, 0x2f, 0x24, 0x00, 0x00 -.4byte gUnknown_81465FC - -.global gUnknown_817C1F0 -gUnknown_817C1F0: @ 817C1F0 -.byte 0x06, 0x09, 0x00, 0x00, 0x47, 0x23, 0x00, 0x00 -.4byte gUnknown_816CE64 - -.global gUnknown_817C1FC -gUnknown_817C1FC: @ 817C1FC -.4byte gUnknown_8138DB4 - -.global gUnknown_817C200 -gUnknown_817C200: @ 817C200 -.4byte gUnknown_8139514 - -.global gUnknown_817C204 -gUnknown_817C204: @ 817C204 -.4byte gUnknown_813A604 - -.global gUnknown_817C208 -gUnknown_817C208: @ 817C208 -.4byte gUnknown_813A9A8 - -.global gUnknown_817C20C -gUnknown_817C20C: @ 817C20C -.4byte gUnknown_813BBE4 - -.global gUnknown_817C210 -gUnknown_817C210: @ 817C210 -.4byte gUnknown_813C7D8 - -.global gUnknown_817C214 -gUnknown_817C214: @ 817C214 -.4byte gUnknown_813D310 - -.global gUnknown_817C218 -gUnknown_817C218: @ 817C218 -.4byte gUnknown_813E128 - -.global gUnknown_817C21C -gUnknown_817C21C: @ 817C21C -.4byte gUnknown_813E874 - -.global gUnknown_817C220 -gUnknown_817C220: @ 817C220 -.4byte gUnknown_813EBD4 - -.global gUnknown_817C224 -gUnknown_817C224: @ 817C224 -.4byte gUnknown_813F0D0 - -.global gUnknown_817C228 -gUnknown_817C228: @ 817C228 -.4byte gUnknown_813F608 - -.global gUnknown_817C22C -gUnknown_817C22C: @ 817C22C -.4byte gUnknown_8141040 - -.global gUnknown_817C230 -gUnknown_817C230: @ 817C230 -.4byte gUnknown_8144094 - -.global gUnknown_817C234 -gUnknown_817C234: @ 817C234 -.4byte gUnknown_8144C80 - -.global gUnknown_817C238 -gUnknown_817C238: @ 817C238 -.4byte gUnknown_8144F8C - -.global gUnknown_817C23C -gUnknown_817C23C: @ 817C23C -.4byte gUnknown_8145488 - -.global gUnknown_817C240 -gUnknown_817C240: @ 817C240 -.4byte gUnknown_8145D94 - -.global gUnknown_817C244 -gUnknown_817C244: @ 817C244 -.4byte gUnknown_8146380 - -.global gUnknown_817C248 -gUnknown_817C248: @ 817C248 -.4byte gUnknown_8146678 - -.global gUnknown_817C24C -gUnknown_817C24C: @ 817C24C -.4byte gUnknown_8147650 - -.global gUnknown_817C250 -gUnknown_817C250: @ 817C250 -.4byte gUnknown_8147AE8 - -.global gUnknown_817C254 -gUnknown_817C254: @ 817C254 -.4byte gUnknown_8147EA0 - -.global gUnknown_817C258 -gUnknown_817C258: @ 817C258 -.4byte gUnknown_81483F8 - -.global gUnknown_817C25C -gUnknown_817C25C: @ 817C25C -.4byte gUnknown_814D520 - -.global gUnknown_817C260 -gUnknown_817C260: @ 817C260 -.4byte gUnknown_814DB38 - -.global gUnknown_817C264 -gUnknown_817C264: @ 817C264 -.4byte gUnknown_8152C68 - -.global gUnknown_817C268 -gUnknown_817C268: @ 817C268 -.4byte gUnknown_8153888 - -.global gUnknown_817C26C -gUnknown_817C26C: @ 817C26C -.4byte gUnknown_8153F54 - -.global gUnknown_817C270 -gUnknown_817C270: @ 817C270 -.4byte gUnknown_8154678 - -.global gUnknown_817C274 -gUnknown_817C274: @ 817C274 -.4byte gUnknown_815A294 - -.global gUnknown_817C278 -gUnknown_817C278: @ 817C278 -.4byte gUnknown_815A9A4 - -.global gUnknown_817C27C -gUnknown_817C27C: @ 817C27C -.4byte gUnknown_8161048 - -.global gUnknown_817C280 -gUnknown_817C280: @ 817C280 -.4byte gUnknown_8162184 - -.global gUnknown_817C284 -gUnknown_817C284: @ 817C284 -.4byte gUnknown_8162800 - -.global gUnknown_817C288 -gUnknown_817C288: @ 817C288 -.4byte gUnknown_8163B18 - -.global gUnknown_817C28C -gUnknown_817C28C: @ 817C28C -.4byte gUnknown_816412C - -.global gUnknown_817C290 -gUnknown_817C290: @ 817C290 -.4byte gUnknown_8166C74 - -.global gUnknown_817C294 -gUnknown_817C294: @ 817C294 -.4byte gUnknown_8167D34 - -.global gUnknown_817C298 -gUnknown_817C298: @ 817C298 -.4byte gUnknown_8167DB0 - -.global gUnknown_817C29C -gUnknown_817C29C: @ 817C29C -.4byte gUnknown_8168E58 - -.global gUnknown_817C2A0 -gUnknown_817C2A0: @ 817C2A0 -.4byte gUnknown_81698EC - -.global gUnknown_817C2A4 -gUnknown_817C2A4: @ 817C2A4 -.4byte gUnknown_816A440 - -.global gUnknown_817C2A8 -gUnknown_817C2A8: @ 817C2A8 -.4byte gUnknown_816A4CC - -.global gUnknown_817C2AC -gUnknown_817C2AC: @ 817C2AC -.4byte gUnknown_816B144 - -.global gUnknown_817C2B0 -gUnknown_817C2B0: @ 817C2B0 -.4byte gUnknown_816CEF0 - -.global gUnknown_817C2B4 -gUnknown_817C2B4: @ 817C2B4 -.4byte gUnknown_816D934 - -.global gUnknown_817C2B8 -gUnknown_817C2B8: @ 817C2B8 -.4byte gUnknown_816E97C - -.global gUnknown_817C2BC -gUnknown_817C2BC: @ 817C2BC -.4byte gUnknown_8171CDC - -.global gUnknown_817C2C0 -gUnknown_817C2C0: @ 817C2C0 -.4byte gUnknown_8173358 - -.global gUnknown_817C2C4 -gUnknown_817C2C4: @ 817C2C4 -.4byte gUnknown_81757EC - -.global gUnknown_817C2C8 -gUnknown_817C2C8: @ 817C2C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_817C034 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_817C1A8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C1FC -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8179214 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8179244 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8179274 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81792A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81792D4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8179304 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817C430 -gUnknown_817C430: @ 817C430 -.byte 0x0e, 0x00, 0x00, 0x00 -.4byte gUnknown_8179334 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C200 - -.global gUnknown_817C458 -gUnknown_817C458: @ 817C458 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C204 - -.global gUnknown_817C480 -gUnknown_817C480: @ 817C480 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8179484 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817C4A8 -gUnknown_817C4A8: @ 817C4A8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817949C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81794B4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C208 -.byte 0x0a, 0x00, 0x00, 0x00 -.4byte gUnknown_81794FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81795EC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8179604 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817C570 -gUnknown_817C570: @ 817C570 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817961C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8179634 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_817C07C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C20C -.byte 0x0a, 0x00, 0x00, 0x00 -.4byte gUnknown_817967C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817976C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8179784 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C210 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81797CC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81797E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817C688 -gUnknown_817C688: @ 817C688 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81797FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C0C4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C214 - -.global gUnknown_817C6B0 -gUnknown_817C6B0: @ 817C6B0 -.byte 0x08, 0x00, 0x00, 0x00 -.4byte gUnknown_817982C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C218 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81798EC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C21C - -.global gUnknown_817C700 -gUnknown_817C700: @ 817C700 -.byte 0x08, 0x00, 0x00, 0x00 -.4byte gUnknown_817991C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C220 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81799DC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C224 -.byte 0x0a, 0x00, 0x00, 0x00 -.4byte gUnknown_8179A0C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C1D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817C778 -gUnknown_817C778: @ 817C778 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8179AFC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C228 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8179B44 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817C7C8 -gUnknown_817C7C8: @ 817C7C8 -.byte 0x0c, 0x00, 0x00, 0x00 -.4byte gUnknown_8179B74 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C0D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C22C -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8179C94 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8179CDC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817C840 -gUnknown_817C840: @ 817C840 -.byte 0x09, 0x00, 0x00, 0x00 -.4byte gUnknown_8179CF4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C230 - -.global gUnknown_817C868 -gUnknown_817C868: @ 817C868 -.byte 0x0a, 0x00, 0x00, 0x00 -.4byte gUnknown_8179DCC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C0DC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C234 - -.global gUnknown_817C890 -gUnknown_817C890: @ 817C890 -.byte 0x08, 0x00, 0x00, 0x00 -.4byte gUnknown_8179EBC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C238 - -.global gUnknown_817C8B8 -gUnknown_817C8B8: @ 817C8B8 -.byte 0x0b, 0x00, 0x00, 0x00 -.4byte gUnknown_8179F7C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C23C - -.global gUnknown_817C8E0 -gUnknown_817C8E0: @ 817C8E0 -.byte 0x0a, 0x00, 0x00, 0x00 -.4byte gUnknown_817A084 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C240 - -.global gUnknown_817C908 -gUnknown_817C908: @ 817C908 -.byte 0x09, 0x00, 0x00, 0x00 -.4byte gUnknown_817A174 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C1E4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C244 - -.global gUnknown_817C930 -gUnknown_817C930: @ 817C930 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_817A24C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C0E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C248 - -.global gUnknown_817C958 -gUnknown_817C958: @ 817C958 -.byte 0x09, 0x00, 0x00, 0x00 -.4byte gUnknown_817A2C4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C24C - -.global gUnknown_817C980 -gUnknown_817C980: @ 817C980 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_817A39C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C250 - -.global gUnknown_817C9A8 -gUnknown_817C9A8: @ 817C9A8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_817A3CC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C0F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C254 - -.global gUnknown_817C9D0 -gUnknown_817C9D0: @ 817C9D0 -.byte 0x0d, 0x00, 0x00, 0x00 -.4byte gUnknown_817A3FC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C100 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C258 - -.global gUnknown_817C9F8 -gUnknown_817C9F8: @ 817C9F8 -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_817A534 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C25C - -.global gUnknown_817CA20 -gUnknown_817CA20: @ 817CA20 -.byte 0x0a, 0x00, 0x00, 0x00 -.4byte gUnknown_817A5C4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C10C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C260 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817A6B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_817C118 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817CA70 -gUnknown_817CA70: @ 817CA70 -.byte 0x0a, 0x00, 0x00, 0x00 -.4byte gUnknown_817A6CC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C264 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_817A7BC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C268 - -.global gUnknown_817CAC0 -gUnknown_817CAC0: @ 817CAC0 -.byte 0x0a, 0x00, 0x00, 0x00 -.4byte gUnknown_817A81C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C26C - -.global gUnknown_817CAE8 -gUnknown_817CAE8: @ 817CAE8 -.byte 0x11, 0x00, 0x00, 0x00 -.4byte gUnknown_817A90C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C130 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C270 - -.global gUnknown_817CB10 -gUnknown_817CB10: @ 817CB10 -.byte 0x0a, 0x00, 0x00, 0x00 -.4byte gUnknown_817AAA4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C274 - -.global gUnknown_817CB38 -gUnknown_817CB38: @ 817CB38 -.byte 0x10, 0x00, 0x00, 0x00 -.4byte gUnknown_817AB94 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C13C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C278 - -.global gUnknown_817CB60 -gUnknown_817CB60: @ 817CB60 -.byte 0x0d, 0x00, 0x00, 0x00 -.4byte gUnknown_817AD14 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C27C -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_817AE4C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C280 - -.global gUnknown_817CBB0 -gUnknown_817CBB0: @ 817CBB0 -.byte 0x0d, 0x00, 0x00, 0x00 -.4byte gUnknown_817AEAC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C284 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_817AFE4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C288 - -.global gUnknown_817CC00 -gUnknown_817CC00: @ 817CC00 -.byte 0x15, 0x00, 0x00, 0x00 -.4byte gUnknown_817B044 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C148 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C28C - -.global gUnknown_817CC28 -gUnknown_817CC28: @ 817CC28 -.byte 0x13, 0x00, 0x00, 0x00 -.4byte gUnknown_817B23C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C154 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C290 - -.global gUnknown_817CC50 -gUnknown_817CC50: @ 817CC50 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817B404 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C294 - -.global gUnknown_817CC78 -gUnknown_817CC78: @ 817CC78 -.byte 0x10, 0x00, 0x00, 0x00 -.4byte gUnknown_817B41C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C298 - -.global gUnknown_817CCA0 -gUnknown_817CCA0: @ 817CCA0 -.byte 0x0f, 0x00, 0x00, 0x00 -.4byte gUnknown_817B59C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C29C - -.global gUnknown_817CCC8 -gUnknown_817CCC8: @ 817CCC8 -.byte 0x0f, 0x00, 0x00, 0x00 -.4byte gUnknown_817B704 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C2A0 - -.global gUnknown_817CCF0 -gUnknown_817CCF0: @ 817CCF0 -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_817B86C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C160 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C2A4 - -.global gUnknown_817CD18 -gUnknown_817CD18: @ 817CD18 -.byte 0x0e, 0x00, 0x00, 0x00 -.4byte gUnknown_817B8FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C2A8 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_817BA4C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C2AC - -.global gUnknown_817CD68 -gUnknown_817CD68: @ 817CD68 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817BA94 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817CD90 -gUnknown_817CD90: @ 817CD90 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817BAAC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817CDB8 -gUnknown_817CDB8: @ 817CDB8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817BAC4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817CDE0 -gUnknown_817CDE0: @ 817CDE0 -.byte 0x07, 0x00, 0x00, 0x00 -.4byte gUnknown_817BADC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C1F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817CE08 -gUnknown_817CE08: @ 817CE08 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_817BB84 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C16C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C2B0 - -.global gUnknown_817CE30 -gUnknown_817CE30: @ 817CE30 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817BBFC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817CE58 -gUnknown_817CE58: @ 817CE58 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817BC14 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_817BC2C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C2B4 - -.global gUnknown_817CEA8 -gUnknown_817CEA8: @ 817CEA8 -.byte 0x08, 0x00, 0x00, 0x00 -.4byte gUnknown_817BC5C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C178 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C2B8 - -.global gUnknown_817CED0 -gUnknown_817CED0: @ 817CED0 -.byte 0x07, 0x00, 0x00, 0x00 -.4byte gUnknown_817BD1C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C184 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C2BC - -.global gUnknown_817CEF8 -gUnknown_817CEF8: @ 817CEF8 -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_817BDC4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C190 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C2C0 - -.global gUnknown_817CF20 -gUnknown_817CF20: @ 817CF20 -.byte 0x07, 0x00, 0x00, 0x00 -.4byte gUnknown_817BE54 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C19C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C2C4 - -.global gUnknown_817CF48 -gUnknown_817CF48: @ 817CF48 -.byte 0x0a, 0x00, 0x00, 0x00 -.4byte gUnknown_817BEFC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817CF70 -gUnknown_817CF70: @ 817CF70 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_817BFEC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817CF98 -gUnknown_817CF98: @ 817CF98 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C01C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817CFC0 -gUnknown_817CFC0: @ 817CFC0 -.byte 0x09, 0x00, 0x00, 0x00 -.4byte gUnknown_817C2C8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C430 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C458 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C480 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_817C4A8 -.byte 0x07, 0x00, 0x00, 0x00 -.4byte gUnknown_817C570 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C688 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_817C6B0 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_817C700 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_817C778 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_817C7C8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C840 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C868 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C890 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C8B8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C8E0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C908 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C930 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C958 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C980 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C9A8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C9D0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817C9F8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_817CA20 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_817CA70 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CAC0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CAE8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CB10 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CB38 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_817CB60 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_817CBB0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CC00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CC28 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CC50 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CC78 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CCA0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CCC8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CCF0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_817CD18 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CD68 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CD90 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CDB8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CDE0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CE08 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CE30 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_817CE58 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CEA8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CED0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CEF8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CF20 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CF48 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CF70 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_817CF98 - -.global gUnknown_817D168 -gUnknown_817D168: @ 817D168 -.byte 0x5a, 0x27, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x1e, 0x27, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x02, 0x27, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x75, 0x27, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x46, 0x27, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x3b, 0x27, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x02, 0x27, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x0c, 0x29, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x0e, 0x27, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x25, 0x22, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x52, 0x22, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x52, 0x3d, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x29, 0x3d, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x0e, 0x29, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x38, 0x2a, 0x00, 0x00 -.byte 0x0c, 0x07, 0x03, 0x02, 0x38, 0x1e, 0x00, 0x00, 0x0c, 0x09, 0x03, 0x02, 0x44, 0x21, 0x00, 0x00, 0x08, 0x0d, 0x03, 0x02, 0x38, 0x2a, 0x00, 0x00, 0x0c, 0x07, 0x03, 0x02, 0x61, 0x25, 0x02, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x61, 0x27, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x5d, 0x25, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x5d, 0x27, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x4c, 0x27, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x4c, 0x25, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x41, 0x17, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x3e, 0x17, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x3a, 0x28, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x53, 0x28, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x65, 0x28, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x38, 0x26, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x56, 0x26, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x62, 0x26, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x38, 0x2a, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x56, 0x2a, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x63, 0x2a, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x31, 0x41, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x38, 0x2a, 0x00, 0x00, 0x0c, 0x07, 0x03, 0x02, 0x38, 0x29, 0x00, 0x00, 0x0b, 0x08, 0x03, 0x02, 0x43, 0x21, 0x00, 0x00 -.byte 0x0c, 0x0d, 0x03, 0x02, 0x38, 0x29, 0x00, 0x00, 0x0b, 0x08, 0x03, 0x02, 0x43, 0x21, 0x00, 0x00, 0x0c, 0x0d, 0x03, 0x02, 0x44, 0x21, 0x00, 0x00, 0x08, 0x0d, 0x03, 0x02, 0x38, 0x2a, 0x00, 0x00 -.byte 0x0c, 0x07, 0x03, 0x02, 0x3a, 0x25, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x3a, 0x29, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x38, 0x26, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x5e, 0x14, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x5e, 0x2b, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x23, 0x3e, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x57, 0x3e, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x1a, 0x28, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x41, 0x2a, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x41, 0x2c, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x3d, 0x2c, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x3b, 0x27, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x3b, 0x29, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x3c, 0x24, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x41, 0x29, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x3d, 0x2a, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x33, 0x27, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x39, 0x27, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x33, 0x29, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x39, 0x29, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x32, 0x28, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x3c, 0x28, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x32, 0x2a, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x3c, 0x2a, 0x02, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x2f, 0x29, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x38, 0x29, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x3f, 0x2c, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x3f, 0x29, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x42, 0x2c, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x42, 0x26, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x3c, 0x27, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x3b, 0x25, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x41, 0x28, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x27, 0x28, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x37, 0x1d, 0x00, 0x00, 0x0b, 0x09, 0x03, 0x02, 0x38, 0x29, 0x00, 0x00 -.byte 0x0b, 0x08, 0x03, 0x02, 0x44, 0x21, 0x00, 0x00, 0x0a, 0x0d, 0x03, 0x02, 0x37, 0x1d, 0x00, 0x00, 0x0b, 0x09, 0x03, 0x02, 0x38, 0x29, 0x00, 0x00, 0x0b, 0x08, 0x03, 0x02, 0x44, 0x21, 0x00, 0x00 -.byte 0x0a, 0x0d, 0x03, 0x02, 0x39, 0x29, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x39, 0x29, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x3c, 0x2b, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x36, 0x29, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x39, 0x2b, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x39, 0x27, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x39, 0x25, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x48, 0x28, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x23, 0x28, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x48, 0x25, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x48, 0x2b, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x43, 0x2d, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x3b, 0x2e, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x37, 0x1d, 0x00, 0x00, 0x0b, 0x09, 0x03, 0x02, 0x38, 0x29, 0x00, 0x00, 0x0b, 0x08, 0x03, 0x02, 0x44, 0x21, 0x00, 0x00 -.byte 0x0a, 0x0d, 0x03, 0x02, 0x35, 0x29, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x43, 0x29, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x35, 0x27, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x40, 0x29, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x43, 0x26, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x40, 0x23, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x40, 0x26, 0x04, 0x02, 0x01, 0x01, 0x02, 0x01, 0x40, 0x15, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x3e, 0x23, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x3a, 0x23, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x3c, 0x23, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x3e, 0x23, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x41, 0x23, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x41, 0x2a, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x3e, 0x2c, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x46, 0x2a, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x41, 0x28, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x3f, 0x29, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x3f, 0x27, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x3b, 0x28, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x3a, 0x26, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x3a, 0x2a, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x44, 0x24, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x46, 0x26, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x43, 0x2a, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x48, 0x25, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x48, 0x28, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x46, 0x2a, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x42, 0x22, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x3e, 0x23, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x3f, 0x20, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x3a, 0x22, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x46, 0x21, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x3c, 0x2c, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x41, 0x2e, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x47, 0x2d, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x3b, 0x22, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x41, 0x14, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x3b, 0x28, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x3b, 0x23, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x3b, 0x2c, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x43, 0x2c, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x43, 0x3b, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x38, 0x29, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x39, 0x26, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x3c, 0x29, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x3c, 0x26, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01 - -.global gUnknown_817D5F8 -gUnknown_817D5F8: @ 817D5F8 -.byte 0x35, 0x00, 0x00, 0x00 -.4byte gUnknown_817CFC0 -.4byte gUnknown_817D168 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_817D60C -gUnknown_817D60C: @ 817D60C -.byte 0xf6, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x08, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x06, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x03, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x04, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x05, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x06, 0x06, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x04, 0x06, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x07, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x08, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x04, 0x09, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x0a, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xea, 0x00, 0x0a, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x06, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x0e, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x06, 0x0f, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x0d, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xea, 0x00, 0x0a, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x0b, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xea, 0x00, 0x0c, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x06, 0x10, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x0e, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xea, 0x00, 0x0d, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x0e, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x11, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xea, 0x00, 0x0f, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x0e, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x12, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x06, 0x13, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x0f, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xea, 0x00, 0x10, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x13, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x14, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x06, 0x15, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x16, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x06, 0x17, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x14, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xea, 0x00, 0x15, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x16, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xea, 0x00, 0x17, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x18, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x19, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x06, 0x1a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x19, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xea, 0x00, 0x1a, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x1b, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xea, 0x00, 0x1b, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x1e, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xea, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x1c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x1d, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xbb, 0x1f, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817DE3C -gUnknown_817DE3C: @ 817DE3C -.string "../data/ground/ground_data_t01p02a_station.c\0" -.align 2, 0 - -.global gUnknown_817DE6C -gUnknown_817DE6C: @ 817DE6C -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817D60C - -.global gUnknown_817DE78 -gUnknown_817DE78: @ 817DE78 -.byte 0xf6, 0x00, 0xac, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817DEA8 -gUnknown_817DEA8: @ 817DEA8 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE78 - -.global gUnknown_817DEB4 -gUnknown_817DEB4: @ 817DEB4 -.byte 0xf6, 0x00, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817DEF4 -gUnknown_817DEF4: @ 817DEF4 -.byte 0xf6, 0x00, 0xbb, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817DF34 -gUnknown_817DF34: @ 817DF34 -.byte 0xf6, 0x00, 0xc2, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0xb4, 0x03, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DFDC -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DFC4 -closeTextBox -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817DFC4 -gUnknown_817DFC4: @ 817DFC4 -.string "{CENTER_ALIGN}Come alone to enter!\0" -.align 2, 0 - -.global gUnknown_817DFDC -gUnknown_817DFDC: @ 817DFDC -.string "{CENTER_ALIGN}The entrance is too narrow.\n" -.string "{CENTER_ALIGN}There is only room for one.\0" -.align 2, 0 - -.global gUnknown_817E018 -gUnknown_817E018: @ 817E018 -.byte 0x65, 0x01, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DF34 - -.global gUnknown_817E024 -gUnknown_817E024: @ 817E024 -.byte 0xf6, 0x00, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817E064 -gUnknown_817E064: @ 817E064 -.byte 0xf6, 0x00, 0xd7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817E0A4 -gUnknown_817E0A4: @ 817E0A4 -.byte 0xf6, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817E0E4 -gUnknown_817E0E4: @ 817E0E4 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817E0A4 - -.global gUnknown_817E0F0 -gUnknown_817E0F0: @ 817E0F0 -.byte 0xf6, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817E130 -gUnknown_817E130: @ 817E130 -.byte 0xf6, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x03, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817E338 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817E318 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817E2E0 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817E294 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817E250 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817E250 -gUnknown_817E250: @ 817E250 -.string " Oh{COMMA} so it{APOSTROPHE}s my level!{WAIT_PRESS}\n" -.string "I get it! I{APOSTROPHE}ll work at leveling up!\0" -.align 2, 0 - -.global gUnknown_817E294 -gUnknown_817E294: @ 817E294 -.string " If you train and raise your\n" -.string "level{COMMA} I think you{APOSTROPHE}ll be able to evolve.\0" -.align 2, 0 - -.global gUnknown_817E2E0 -gUnknown_817E2E0: @ 817E2E0 -.string " I bet you weren{APOSTROPHE}t high\n" -.string "enough in level{COMMA} Metapod.\0" -.align 2, 0 - -.global gUnknown_817E318 -gUnknown_817E318: @ 817E318 -.string " That{APOSTROPHE}s too bad{COMMA} Metapod.\0" -.align 2, 0 - -.global gUnknown_817E338 -gUnknown_817E338: @ 817E338 -.string " I went into the cave{COMMA} but...{WAIT_PRESS}\n" -.string "I couldn{APOSTROPHE}t evolve into Butterfree.\0" -.align 2, 0 - -.global gUnknown_817E380 -gUnknown_817E380: @ 817E380 -.byte 0xf6, 0x00, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817E3C0 -gUnknown_817E3C0: @ 817E3C0 -.byte 0xf6, 0x00, 0x0a, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817E338 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817E318 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817E2E0 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817E294 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817E250 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817E4E0 -gUnknown_817E4E0: @ 817E4E0 -.byte 0xf6, 0x00, 0x1f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817E520 -gUnknown_817E520: @ 817E520 -.byte 0xf6, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817E5A8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817E590 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817E590 -gUnknown_817E590: @ 817E590 -.string " I shall miss them...\0" -.align 2, 0 - -.global gUnknown_817E5A8 -gUnknown_817E5A8: @ 817E5A8 -.string " The Jumpluff appear to\n" -.string "have left on the winds.\0" -.align 2, 0 - -.global gUnknown_817E5D8 -gUnknown_817E5D8: @ 817E5D8 -.byte 0xf6, 0x00, 0x30, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x21, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817E608 -gUnknown_817E608: @ 817E608 -.byte 0xf6, 0x00, 0x36, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0xb3, 0x00, 0x25, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x01, 0x05, 0x00, 0x21, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x02, 0x0b, 0x00 -.byte 0x33, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x03, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x04, 0x0b, 0x00 -.byte 0x33, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x04, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x05, 0x0a, 0x00 -.byte 0x31, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x05, 0x0a, 0x00, 0x31, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x06, 0x0a, 0x00 -.byte 0x31, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb7, 0x04, 0x06, 0x00, 0x40, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817E7E8 -gUnknown_817E7E8: @ 817E7E8 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817E608 - -.global gUnknown_817E7F4 -gUnknown_817E7F4: @ 817E7F4 -.byte 0xf6, 0x00, 0x59, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817E834 -gUnknown_817E834: @ 817E834 -.byte 0xf6, 0x00, 0x60, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xba, 0x00, 0x05, 0x00, 0x21, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817F298 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817F278 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817F240 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817F200 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817F1C8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817F180 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817F128 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817F104 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817F0B0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817F074 -.byte 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817F03C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817F01C -closeTextBox -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x2c, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817EFBC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817EF84 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817EF20 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817EEEC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817EEC0 -.byte 0xe1, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817EE48 -closeTextBox -.byte 0x44, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x05, 0x00, 0x21, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817EE04 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817EF20 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817EEEC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817EDC4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817ED80 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817ED34 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817ED04 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817ECDC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817EC84 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817EC84 -gUnknown_817EC84: @ 817EC84 -.string " Why{COMMA} if I were only a little\n" -.string "younger{COMMA} I might have joined you on your\n" -.string "adventures.\0" -.align 2, 0 - -.global gUnknown_817ECDC -gUnknown_817ECDC: @ 817ECDC -.string " Hohoho.{WAIT_PRESS}\n" -.string "Adventures keep you young.\0" -.align 2, 0 - -.global gUnknown_817ED04 -gUnknown_817ED04: @ 817ED04 -.string " I suppose it wouldn{APOSTROPHE}t hurt\n" -.string "to search there.\0" -.align 2, 0 - -.global gUnknown_817ED34 -gUnknown_817ED34: @ 817ED34 -.string " The Hidden Machine {COLOR_1 GREEN_2}Dive{END_COLOR_TEXT_1}\n" -.string "was apparently found in the {COLOR_1 YELLOW_4}Solar Cave{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_817ED80 -gUnknown_817ED80: @ 817ED80 -.string " All I had was the one\n" -.string "I gave you...{WAIT_PRESS}\n" -.string "Hmm... What should one do?\0" -.align 2, 0 - -.global gUnknown_817EDC4 -gUnknown_817EDC4: @ 817EDC4 -.string " Oh?{WAIT_PRESS}\n" -.string "What happens if you lose the\n" -.string "Hidden Machine {COLOR_1 GREEN_2}Dive{END_COLOR_TEXT_1}?\0" -.align 2, 0 - -.global gUnknown_817EE04 -gUnknown_817EE04: @ 817EE04 -.string " If you were to carry the\n" -.string "Hidden Machine {COLOR_1 GREEN_2}Dive{END_COLOR_TEXT_1} as an item...\0" -.align 2, 0 - -.global gUnknown_817EE48 -gUnknown_817EE48: @ 817EE48 -.string "{CENTER_ALIGN}Beware--you must take the HM {COLOR_1 GREEN_2}Dive{END_COLOR_TEXT_1}{COMMA}\n" -.string "{CENTER_ALIGN}or a team member must learn {COLOR_1 GREEN_2}Dive{END_COLOR_TEXT_1}\n" -.string "{CENTER_ALIGN}as a move for the team to enter!\0" -.align 2, 0 - -.global gUnknown_817EEC0 -gUnknown_817EEC0: @ 817EEC0 -.string "{CENTER_ALIGN}Gained access to\n" -.string "{CENTER_ALIGN}the {COLOR_1 YELLOW_4}Stormy Sea{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_817EEEC -gUnknown_817EEEC: @ 817EEEC -.string " You would be able to enter\n" -.string "the {COLOR_1 YELLOW_4}Stormy Sea{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_817EF20 -gUnknown_817EF20: @ 817EF20 -.string " Or if any team member\n" -.string "wishing to enter the dungeon used that\n" -.string "Hidden Machine to learn {COLOR_1 GREEN_2}Dive{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_817EF84 -gUnknown_817EF84: @ 817EF84 -.string " If you were to carry that\n" -.string "Hidden Machine as an item...\0" -.align 2, 0 - -.global gUnknown_817EFBC -gUnknown_817EFBC: @ 817EFBC -.string " I understand that it is\n" -.string "a very rare item that was found in a place\n" -.string "called the {COLOR_1 YELLOW_4}Solar Cave{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_817F01C -gUnknown_817F01C: @ 817F01C -.string " So be it.{WAIT_PRESS}\n" -.string "You may have this.\0" -.align 2, 0 - -.global gUnknown_817F03C -gUnknown_817F03C: @ 817F03C -.string " Hohoho! Your face tells me\n" -.string "you are desperate to go.\0" -.align 2, 0 - -.global gUnknown_817F074 -gUnknown_817F074: @ 817F074 -.string " Without {COLOR_1 GREEN_2}Dive{END_COLOR_TEXT_1}{COMMA} you cannot\n" -.string "go to the {COLOR_1 YELLOW_4}Stormy Sea{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_817F0B0 -gUnknown_817F0B0: @ 817F0B0 -.string " However...{WAIT_PRESS}\n" -.string "To go beneath the sea{COMMA} a Hidden Machine\n" -.string "named {COLOR_1 GREEN_2}Dive{END_COLOR_TEXT_1} is needed.\0" -.align 2, 0 - -.global gUnknown_817F104 -gUnknown_817F104: @ 817F104 -.string " Hohoho!{WAIT_PRESS}\n" -.string "You look eager to go.\0" -.align 2, 0 - -.global gUnknown_817F128 -gUnknown_817F128: @ 817F128 -.string " The sea is infinitely dark{COMMA}\n" -.string "and its depth unimaginable.\n" -.string "That is what I have heard.\0" -.align 2, 0 - -.global gUnknown_817F180 -gUnknown_817F180: @ 817F180 -.string " There{COMMA} one will find a\n" -.string "dungeon that leads to the bottom of\n" -.string "the sea.\0" -.align 2, 0 - -.global gUnknown_817F1C8 -gUnknown_817F1C8: @ 817F1C8 -.string " It is a place appropriately\n" -.string "named the {COLOR_1 YELLOW_4}Stormy Sea{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_817F200 -gUnknown_817F200: @ 817F200 -.string " It is a sea churned by\n" -.string "torrential storms and violent waves.\0" -.align 2, 0 - -.global gUnknown_817F240 -gUnknown_817F240: @ 817F240 -.string " I have heard of a place that\n" -.string "is far off our coast...\0" -.align 2, 0 - -.global gUnknown_817F278 -gUnknown_817F278: @ 817F278 -.string " I{COMMA} too{COMMA} have heard of it.\0" -.align 2, 0 - -.global gUnknown_817F298 -gUnknown_817F298: @ 817F298 -.string " Ah{COMMA} so you wish to know\n" -.string "about the dungeon in the sea?\0" -.align 2, 0 - -.global gUnknown_817F2D4 -gUnknown_817F2D4: @ 817F2D4 -.byte 0xf6, 0x00, 0xac, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x00, 0x05, 0x00, 0x21, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817F474 -gUnknown_817F474: @ 817F474 -.byte 0xf6, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x21, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817F4A4 -gUnknown_817F4A4: @ 817F4A4 -.byte 0xf6, 0x00, 0xcf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817F4E4 -gUnknown_817F4E4: @ 817F4E4 -.byte 0xf6, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x40, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817F678 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817F640 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817F5E8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817F5A4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817F5A4 -gUnknown_817F5A4: @ 817F5A4 -.string " ...What this actually means{COMMA}\n" -.string "there is no telling now. Hohoho.\0" -.align 2, 0 - -.global gUnknown_817F5E8 -gUnknown_817F5E8: @ 817F5E8 -.string " When the three parts\n" -.string "are gathered in hand...{WAIT_PRESS}\n" -.string "A mirage shall appear to the bearer...\0" -.align 2, 0 - -.global gUnknown_817F640 -gUnknown_817F640: @ 817F640 -.string " Three parts there are{COMMA}\n" -.string "guarded by three disciples.\0" -.align 2, 0 - -.global gUnknown_817F678 -gUnknown_817F678: @ 817F678 -.string " Hohoho.{WAIT_PRESS}\n" -.string "There is an old saying about the {COLOR_1 YELLOW_4}Buried\n" -.string "Relic{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_817F6B8 -gUnknown_817F6B8: @ 817F6B8 -.byte 0xf6, 0x00, 0xe6, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817F758 -gUnknown_817F758: @ 817F758 -.byte 0xf6, 0x00, 0xf3, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x21, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817F788 -gUnknown_817F788: @ 817F788 -.byte 0xf6, 0x00, 0xf9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x1d, 0x00, 0x06, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_817F7B8 -gUnknown_817F7B8: @ 817F7B8 -.byte 0xf6, 0x00, 0xff, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x1d, 0x00, 0x06, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817F7E8 -gUnknown_817F7E8: @ 817F7E8 -.byte 0xf6, 0x00, 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x1d, 0x00, 0x06, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_817F818 -gUnknown_817F818: @ 817F818 -.byte 0x65, 0x01, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817F7E8 - -.global gUnknown_817F824 -gUnknown_817F824: @ 817F824 -.byte 0xf6, 0x00, 0x0d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x00, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817F894 -gUnknown_817F894: @ 817F894 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817F824 - -.global gUnknown_817F8A0 -gUnknown_817F8A0: @ 817F8A0 -.byte 0xf6, 0x00, 0x19, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_817F910 -gUnknown_817F910: @ 817F910 -.byte 0xf6, 0x00, 0x23, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x95, 0x04, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8180080 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8180080 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8180060 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8180048 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8180014 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817FFE4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817FF98 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817FF68 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817FF58 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817FF18 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817FF04 -closeTextBox -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817FEE0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817FEBC -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817FE70 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_817FE70 -gUnknown_817FE70: @ 817FE70 -.string " I don{APOSTROPHE}t know anything about\n" -.string "making wishes come true!{WAIT_PRESS}\n" -.string "I know nothing!\0" -.align 2, 0 - -.global gUnknown_817FEBC -gUnknown_817FEBC: @ 817FEBC -.string " Me too!\n" -.string "I don{APOSTROPHE}t know a thing!\0" -.align 2, 0 - -.global gUnknown_817FEE0 -gUnknown_817FEE0: @ 817FEE0 -.string " I...{WAIT_PRESS}\n" -.string "I don{APOSTROPHE}t know anything!\0" -.align 2, 0 - -.global gUnknown_817FF04 -gUnknown_817FF04: @ 817FF04 -.string " Aiyeeeeeeeeeeeh!\0" -.align 2, 0 - -.global gUnknown_817FF18 -gUnknown_817FF18: @ 817FF18 -.string " Let{APOSTROPHE}s decide on how\n" -.string "we{APOSTROPHE}re going to do this...{WAIT_PRESS} First...\0" -.align 2, 0 - -.global gUnknown_817FF58 -gUnknown_817FF58: @ 817FF58 -.string " I know that!\0" -.align 2, 0 - -.global gUnknown_817FF68 -gUnknown_817FF68: @ 817FF68 -.string " We can{APOSTROPHE}t tell any Pokémon.\n" -.string "Not even Gengar.\0" -.align 2, 0 - -.global gUnknown_817FF98 -gUnknown_817FF98: @ 817FF98 -.string " Listen{COMMA} {ARG_NICKNAME_3}.{WAIT_PRESS}\n" -.string "We must keep this a secret just between\n" -.string "the two of us.\0" -.align 2, 0 - -.global gUnknown_817FFE4 -gUnknown_817FFE4: @ 817FFE4 -.string " Hey{COMMA} now{COMMA} don{APOSTROPHE}t forget about\n" -.string "my wish!\0" -.align 2, 0 - -.global gUnknown_8180014 -gUnknown_8180014: @ 8180014 -.string " My wish...\n" -.string "It will finally come true!{WAIT_PRESS}\n" -.string "Pshehehe!\0" -.align 2, 0 - -.global gUnknown_8180048 -gUnknown_8180048: @ 8180048 -.string " Yesss! Find it we did!\0" -.align 2, 0 - -.global gUnknown_8180060 -gUnknown_8180060: @ 8180060 -.string " ...We{APOSTROPHE}ve found it at last!\0" -.align 2, 0 - -.global gUnknown_8180080 -gUnknown_8180080: @ 8180080 -.string " ........................\0" -.align 2, 0 - -.global gUnknown_818009C -gUnknown_818009C: @ 818009C -.byte 0xf6, 0x00, 0x7f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81800FC -gUnknown_81800FC: @ 81800FC -.byte 0xf6, 0x00, 0x88, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x70, 0x00, 0x00, 0x02, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818034C -gUnknown_818034C: @ 818034C -.byte 0xf6, 0x00, 0xb0, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x70, 0x00, 0x00, 0x02, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81804FC -gUnknown_81804FC: @ 81804FC -.byte 0xf6, 0x00, 0xce, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x1d, 0x00, 0x08, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_818052C -gUnknown_818052C: @ 818052C -.byte 0xf6, 0x00, 0xd4, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x1d, 0x00, 0x08, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_818055C -gUnknown_818055C: @ 818055C -.byte 0xf6, 0x00, 0xda, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x1d, 0x00, 0x08, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_818058C -gUnknown_818058C: @ 818058C -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818055C - -.global gUnknown_8180598 -gUnknown_8180598: @ 8180598 -.byte 0xf6, 0x00, 0xe2, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x00, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0b, 0x00 -.byte 0x33, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8180608 -gUnknown_8180608: @ 8180608 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8180598 - -.global gUnknown_8180614 -gUnknown_8180614: @ 8180614 -.byte 0xf6, 0x00, 0xee, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8180674 -gUnknown_8180674: @ 8180674 -.byte 0xf6, 0x00, 0xf7, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x95, 0x04, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8180D74 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8180D44 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8180D08 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8180CF0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8180CB0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8180C88 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8180C4C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8180C10 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8180BF0 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8180BA4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8180B8C -closeTextBox -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817FEE0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817FEBC -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8180B34 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8180B34 -gUnknown_8180B34: @ 8180B34 -.string " I don{APOSTROPHE}t know anything about\n" -.string "a dungeon that makes wishes come true!{WAIT_PRESS}\n" -.string "I know nothing!\0" -.align 2, 0 - -.global gUnknown_8180B8C -gUnknown_8180B8C: @ 8180B8C -.string " Giyaaaaaaaaaaaaaaaaah!\0" -.align 2, 0 - -.global gUnknown_8180BA4 -gUnknown_8180BA4: @ 8180BA4 -.string " It would be magnificent\n" -.string "if I could meditate for a year without\n" -.string "food〜♪\0" -.align 2, 0 - -.global gUnknown_8180BF0 -gUnknown_8180BF0: @ 8180BF0 -.string " With no one to bother me...\0" -.align 2, 0 - -.global gUnknown_8180C10 -gUnknown_8180C10: @ 8180C10 -.string " My wish is for a place\n" -.string "where I can meditate in peace〜♪\0" -.align 2, 0 - -.global gUnknown_8180C4C -gUnknown_8180C4C: @ 8180C4C -.string " I want bigger jaws so I can\n" -.string "swallow bigger things whole.\0" -.align 2, 0 - -.global gUnknown_8180C88 -gUnknown_8180C88: @ 8180C88 -.string " My wish is for a broader\n" -.string "lower jaw.\0" -.align 2, 0 - -.global gUnknown_8180CB0 -gUnknown_8180CB0: @ 8180CB0 -.string " But of course.\n" -.string "I can{APOSTROPHE}t wait until our wishes\n" -.string "come true〜♪\0" -.align 2, 0 - -.global gUnknown_8180CF0 -gUnknown_8180CF0: @ 8180CF0 -.string " That{APOSTROPHE}s smart{COMMA} {ARG_NICKNAME_2}!\0" -.align 2, 0 - -.global gUnknown_8180D08 -gUnknown_8180D08: @ 8180D08 -.string " Oh{COMMA} I get it.{WAIT_PRESS}\n" -.string "The other one can still go make wishes!\0" -.align 2, 0 - -.global gUnknown_8180D44 -gUnknown_8180D44: @ 8180D44 -.string " If either one of us\n" -.string "falls before the end...\0" -.align 2, 0 - -.global gUnknown_8180D74 -gUnknown_8180D74: @ 8180D74 -.string " {ARG_NICKNAME_3}{COMMA} listen.{WAIT_PRESS}\n" -.string "I{APOSTROPHE}m thinking it is best if only we go\n" -.string "into the dungeon.\0" -.align 2, 0 - -.global gUnknown_8180DC0 -gUnknown_8180DC0: @ 8180DC0 -.byte 0xf6, 0x00, 0x4a, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8180E20 -gUnknown_8180E20: @ 8180E20 -.byte 0xf6, 0x00, 0x53, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x70, 0x00, 0x00, 0x02, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8181010 -gUnknown_8181010: @ 8181010 -.byte 0xf6, 0x00, 0x75, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x70, 0x00, 0x00, 0x02, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81811C0 -gUnknown_81811C0: @ 81811C0 -.byte 0xf6, 0x00, 0x93, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8181200 -gUnknown_8181200: @ 8181200 -.byte 0xf6, 0x00, 0x9a, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x1d, 0x01, 0x09, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8181230 -gUnknown_8181230: @ 8181230 -.byte 0xf6, 0x00, 0xa0, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xba, 0x00, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81812B0 -gUnknown_81812B0: @ 81812B0 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181230 - -.global gUnknown_81812BC -gUnknown_81812BC: @ 81812BC -.byte 0xf6, 0x00, 0xad, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa1, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818131C -gUnknown_818131C: @ 818131C -.byte 0xf6, 0x00, 0xb6, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181680 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181640 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x2e, 0x15, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181638 -closeTextBox -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181610 -.byte 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81815CC -closeTextBox -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181574 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181534 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818151C -closeTextBox -.byte 0xa1, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818151C -gUnknown_818151C: @ 818151C -.string " ...Hmm...\n" -.string "Mutter...\0" -.align 2, 0 - -.global gUnknown_8181534 -gUnknown_8181534: @ 8181534 -.string " I wonder if it{APOSTROPHE}d be better\n" -.string "if I could coil myself tighter...\0" -.align 2, 0 - -.global gUnknown_8181574 -gUnknown_8181574: @ 8181574 -.string " ...Hunh? Wait a second...\n" -.string "Maybe I shouldn{APOSTROPHE}t be wishing for\n" -.string "a bigger lower jaw...?\0" -.align 2, 0 - -.global gUnknown_81815CC -gUnknown_81815CC: @ 81815CC -.string " I{APOSTROPHE}m having a hard time\n" -.string "trying to make up my mind!{WAIT_PRESS}\n" -.string "Get lost!\0" -.align 2, 0 - -.global gUnknown_8181610 -gUnknown_8181610: @ 8181610 -.string " Wh-what are you staring\n" -.string "at{COMMA} you?!\0" -.align 2, 0 - -.global gUnknown_8181638 -gUnknown_8181638: @ 8181638 -.string " Giyah!\0" -.align 2, 0 - -.global gUnknown_8181640 -gUnknown_8181640: @ 8181640 -.string " I hope she gets to the end\n" -.string "and gets my wish to come true...\0" -.align 2, 0 - -.global gUnknown_8181680 -gUnknown_8181680: @ 8181680 -.string " ...I got KO{APOSTROPHE}d in that\n" -.string "dungeon{COMMA} but what about Medicham?\n" -.string "Hope she{APOSTROPHE}s OK...\0" -.align 2, 0 - -.global gUnknown_81816D0 -gUnknown_81816D0: @ 81816D0 -.byte 0xf6, 0x00, 0xdc, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8181730 -gUnknown_8181730: @ 8181730 -.byte 0xf6, 0x00, 0xe5, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x70, 0x00, 0x00, 0x02, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x04, 0x0b, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8181870 -gUnknown_8181870: @ 8181870 -.byte 0xf6, 0x00, 0xfc, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81818A0 -gUnknown_81818A0: @ 81818A0 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181870 - -.global gUnknown_81818AC -gUnknown_81818AC: @ 81818AC -.byte 0xf6, 0x00, 0x04, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81818EC -gUnknown_81818EC: @ 81818EC -.byte 0xf6, 0x00, 0x0b, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81819BC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818196C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818196C -gUnknown_818196C: @ 818196C -.string " It worries me to no\n" -.string "end{COMMA} thinking that children will fall\n" -.string "down into them...\0" -.align 2, 0 - -.global gUnknown_81819BC -gUnknown_81819BC: @ 81819BC -.string " I{APOSTROPHE}ve heard fissures have\n" -.string "opened up in the ground here and there.\n" -.string "They{APOSTROPHE}re trouble for everyone.\0" -.align 2, 0 - -.global gUnknown_8181A20 -gUnknown_8181A20: @ 8181A20 -.byte 0xf6, 0x00, 0x16, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x21, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8181A50 -gUnknown_8181A50: @ 8181A50 -.byte 0xf6, 0x00, 0x1c, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8181A80 -gUnknown_8181A80: @ 8181A80 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181A50 - -.global gUnknown_8181A8C -gUnknown_8181A8C: @ 8181A8C -.byte 0xf6, 0x00, 0x24, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8181ACC -gUnknown_8181ACC: @ 8181ACC -.byte 0xf6, 0x00, 0x2b, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181B78 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181B3C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8181B3C -gUnknown_8181B3C: @ 8181B3C -.string " But never have I seen such\n" -.string "frequent natural disasters...\0" -.align 2, 0 - -.global gUnknown_8181B78 -gUnknown_8181B78: @ 8181B78 -.string " I{APOSTROPHE}ve lived in this pond for\n" -.string "many long years...\0" -.align 2, 0 - -.global gUnknown_8181BAC -gUnknown_8181BAC: @ 8181BAC -.byte 0xf6, 0x00, 0x35, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x21, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8181BDC -gUnknown_8181BDC: @ 8181BDC -.byte 0xf6, 0x00, 0x3b, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8181C0C -gUnknown_8181C0C: @ 8181C0C -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181BDC - -.global gUnknown_8181C18 -gUnknown_8181C18: @ 8181C18 -.byte 0xf6, 0x00, 0x43, 0x04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8181C58 -gUnknown_8181C58: @ 8181C58 -.byte 0xf6, 0x00, 0x4a, 0x04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181CF8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181CC8 -.byte 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8181CC8 -gUnknown_8181CC8: @ 8181CC8 -.string " When I was small...{WAIT_PRESS}\n" -.string "I was tiny...{WAIT_PRESS}\n" -.string "Hohoho.\0" -.align 2, 0 - -.global gUnknown_8181CF8 -gUnknown_8181CF8: @ 8181CF8 -.string " Seeing the innocence of\n" -.string "children at play is a good thing.\n" -.string "Hohoho.\0" -.align 2, 0 - -.global gUnknown_8181D3C -gUnknown_8181D3C: @ 8181D3C -.byte 0xf6, 0x00, 0x54, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x21, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8181D6C -gUnknown_8181D6C: @ 8181D6C -.byte 0xf6, 0x00, 0x5a, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x02, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181E98 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181E80 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181E6C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181E1C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8181E1C -gUnknown_8181E1C: @ 8181E1C -.string " I{APOSTROPHE}m going to call on\n" -.string "{ARG_NICKNAME_3} and go play in the woods!\n" -.string "It{APOSTROPHE}s going to be fun!\0" -.align 2, 0 - -.global gUnknown_8181E6C -gUnknown_8181E6C: @ 8181E6C -.string " His name is {ARG_NICKNAME_3}.\0" -.align 2, 0 - -.global gUnknown_8181E80 -gUnknown_8181E80: @ 8181E80 -.string " I have a new friend!\0" -.align 2, 0 - -.global gUnknown_8181E98 -gUnknown_8181E98: @ 8181E98 -.string " Oh! {ARG_NICKNAME_0} and\n" -.string "{ARG_NICKNAME_2}! Long time no see!\0" -.align 2, 0 - -.global gUnknown_8181EBC -gUnknown_8181EBC: @ 8181EBC -.byte 0xf6, 0x00, 0x68, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8181EEC -gUnknown_8181EEC: @ 8181EEC -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181EBC - -.global gUnknown_8181EF8 -gUnknown_8181EF8: @ 8181EF8 -.byte 0xf6, 0x00, 0x70, 0x04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8181F38 -gUnknown_8181F38: @ 8181F38 -.byte 0xf6, 0x00, 0x77, 0x04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181FF4 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181FB8 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8181FB8 -gUnknown_8181FB8: @ 8181FB8 -.string " Not seeing the children\n" -.string "gives me a twinge of sadness...\0" -.align 2, 0 - -.global gUnknown_8181FF4 -gUnknown_8181FF4: @ 8181FF4 -.string " I{APOSTROPHE}ve not seen {ARG_NICKNAME_2}\n" -.string "or other children lately.\n" -.string "I wonder how they are keeping.\0" -.align 2, 0 - -.global gUnknown_8182044 -gUnknown_8182044: @ 8182044 -.byte 0xf6, 0x00, 0x82, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x21, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8182074 -gUnknown_8182074: @ 8182074 -.byte 0xf6, 0x00, 0x88, 0x04, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81820A4 -gUnknown_81820A4: @ 81820A4 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182074 - -.global gUnknown_81820B0 -gUnknown_81820B0: @ 81820B0 -.byte 0xf6, 0x00, 0x90, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81820F0 -gUnknown_81820F0: @ 81820F0 -.byte 0xf6, 0x00, 0x97, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182458 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81823FC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81823C4 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182364 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81822F8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81822B0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818227C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182240 -.byte 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182200 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8182200 -gUnknown_8182200: @ 8182200 -.string " Perhaps your team will take\n" -.string "on that challenge one day? Hohoho!\0" -.align 2, 0 - -.global gUnknown_8182240 -gUnknown_8182240: @ 8182240 -.string " It has earned its title as\n" -.string "the {COLOR_1 YELLOW_4}Ultimate Dungeon{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_818227C -gUnknown_818227C: @ 818227C -.string " It has never been conquered\n" -.string "by any rescue team...\0" -.align 2, 0 - -.global gUnknown_81822B0 -gUnknown_81822B0: @ 81822B0 -.string " In other words{COMMA} it forces\n" -.string "one to enter in a completely clean state.\0" -.align 2, 0 - -.global gUnknown_81822F8 -gUnknown_81822F8: @ 81822F8 -.string " It starts your level at one...{WAIT_PRESS}\n" -.string "clears all your gained stats...{WAIT_PRESS}\n" -.string "and empties your Toolbox at the start.\0" -.align 2, 0 - -.global gUnknown_8182364 -gUnknown_8182364: @ 8182364 -.string " Incidentally...{WAIT_PRESS}\n" -.string "I have heard of a particularly challenging\n" -.string "dungeon somewhere in our world.\0" -.align 2, 0 - -.global gUnknown_81823C4 -gUnknown_81823C4: @ 81823C4 -.string " I{APOSTROPHE}m also grateful for what\n" -.string "you{APOSTROPHE}ve done. Thank you.\0" -.align 2, 0 - -.global gUnknown_81823FC -gUnknown_81823FC: @ 81823FC -.string " I heard you saved them.{WAIT_PRESS}\n" -.string "Getting through the dungeon must have\n" -.string "been very taxing on you.\0" -.align 2, 0 - -.global gUnknown_8182458 -gUnknown_8182458: @ 8182458 -.string " It{APOSTROPHE}s good to see the\n" -.string "youngsters back.\0" -.align 2, 0 - -.global gUnknown_8182484 -gUnknown_8182484: @ 8182484 -.byte 0xf6, 0x00, 0xab, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x21, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81824B4 -gUnknown_81824B4: @ 81824B4 -.byte 0xf6, 0x00, 0xb1, 0x04, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182540 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182534 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8182534 -gUnknown_8182534: @ 8182534 -.string " Thank you!\0" -.align 2, 0 - -.global gUnknown_8182540 -gUnknown_8182540: @ 8182540 -.string " I can play with {ARG_NICKNAME_2}\n" -.string "again!\0" -.align 2, 0 - -.global gUnknown_818255C -gUnknown_818255C: @ 818255C -.byte 0xf6, 0x00, 0xbc, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81825CC -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81825CC -gUnknown_81825CC: @ 81825CC -.string " {ARG_NICKNAME_0} and\n" -.string "{ARG_NICKNAME_2}{COMMA} thank you!\0" -.align 2, 0 - -.global gUnknown_81825E8 -gUnknown_81825E8: @ 81825E8 -.byte 0xf6, 0x00, 0xc6, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x0c, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8182618 -gUnknown_8182618: @ 8182618 -.byte 0x93, 0x01, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81825E8 - -.global gUnknown_8182624 -gUnknown_8182624: @ 8182624 -.byte 0xf6, 0x00, 0xce, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8182664 -gUnknown_8182664: @ 8182664 -.byte 0xf6, 0x00, 0xd5, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81826D4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81826D4 -gUnknown_81826D4: @ 81826D4 -.string " Seeing children at play is\n" -.string "what I most enjoy now.\0" -.align 2, 0 - -.global gUnknown_8182708 -gUnknown_8182708: @ 8182708 -.byte 0xf6, 0x00, 0xdf, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x21, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8182738 -gUnknown_8182738: @ 8182738 -.byte 0xf6, 0x00, 0xe5, 0x04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8182768 -gUnknown_8182768: @ 8182768 -.byte 0xf6, 0x00, 0xeb, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00 -.byte 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81828B0 -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182898 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818287C -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182864 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182858 -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182858 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8182858 -gUnknown_8182858: @ 8182858 -.string " Ahahaha!\0" -.align 2, 0 - -.global gUnknown_8182864 -gUnknown_8182864: @ 8182864 -.string " Then{COMMA} I use Harden!\0" -.align 2, 0 - -.global gUnknown_818287C -gUnknown_818287C: @ 818287C -.string " OK{COMMA} I use String Shot!\0" -.align 2, 0 - -.global gUnknown_8182898 -gUnknown_8182898: @ 8182898 -.string " Let{APOSTROPHE}s play battle!\0" -.align 2, 0 - -.global gUnknown_81828B0 -gUnknown_81828B0: @ 81828B0 -.string " Yay{COMMA} {ARG_NICKNAME_3}!\n" -.string "What{APOSTROPHE}ll we do next?\0" -.align 2, 0 - -.global gUnknown_81828D4 -gUnknown_81828D4: @ 81828D4 -.byte 0xf6, 0x00, 0xfd, 0x04, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8182904 -gUnknown_8182904: @ 8182904 -.byte 0xf6, 0x00, 0x03, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x36, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81828B0 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182898 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818287C -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182864 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182858 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182858 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81829F4 -gUnknown_81829F4: @ 81829F4 -.byte 0xf6, 0x00, 0x15, 0x05, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8182A24 -gUnknown_8182A24: @ 8182A24 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81829F4 - -.global gUnknown_8182A30 -gUnknown_8182A30: @ 8182A30 -.byte 0xf6, 0x00, 0x1d, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8182A70 -gUnknown_8182A70: @ 8182A70 -.byte 0xf6, 0x00, 0x24, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182C88 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xd5, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182C50 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182C48 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182C44 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182C10 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1d, 0x01, 0x10, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182C08 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182BC0 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8182BC0 -gUnknown_8182BC0: @ 8182BC0 -.string " If you feel the urge to hear\n" -.string "my tale{COMMA} come see me anytime. Hohoho.\0" -.align 2, 0 - -.global gUnknown_8182C08 -gUnknown_8182C08: @ 8182C08 -.string " I see.\0" -.align 2, 0 - -.global gUnknown_8182C10 -gUnknown_8182C10: @ 8182C10 -.string " Hohoho. Fine{COMMA} then.{WAIT_PRESS}\n" -.string "Let me recount the tale.\0" -.align 2, 0 - -.global gUnknown_8182C44 -gUnknown_8182C44: @ 8182C44 -.byte 0x4e, 0x6f, 0x2e, 0x00 - -.global gUnknown_8182C48 -gUnknown_8182C48: @ 8182C48 -.string "Yes.\0" -.align 2, 0 - -.global gUnknown_8182C50 -gUnknown_8182C50: @ 8182C50 -.string " What was that?\n" -.string "You wish to hear the {COLOR_1 GREEN}{ARG_NICKNAME_2} legend{END_COLOR_TEXT_1}?\0" -.align 2, 0 - -.global gUnknown_8182C88 -gUnknown_8182C88: @ 8182C88 -.string " Hohoho.\n" -.string "You wish to hear me tell old folklore?\0" -.align 2, 0 - -.global gUnknown_8182CB8 -gUnknown_8182CB8: @ 8182CB8 -.byte 0xf6, 0x00, 0x3d, 0x05 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x21, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8182CE8 -gUnknown_8182CE8: @ 8182CE8 -.byte 0xf6, 0x00, 0x43, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00 -.byte 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182D78 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182D68 -.byte 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8182D68 -gUnknown_8182D68: @ 8182D68 -.string " It was fun.\0" -.align 2, 0 - -.global gUnknown_8182D78 -gUnknown_8182D78: @ 8182D78 -.string " {ARG_NICKNAME_2} told us\n" -.string "folklore from long ago.\0" -.align 2, 0 - -.global gUnknown_8182DA0 -gUnknown_8182DA0: @ 8182DA0 -.byte 0xf6, 0x00, 0x4e, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182E10 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8182E10 -gUnknown_8182E10: @ 8182E10 -.string " The folklore was fun and\n" -.string "interesting.{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_2} is very wise.\0" -.align 2, 0 - -.global gUnknown_8182E4C -gUnknown_8182E4C: @ 8182E4C -.byte 0xf6, 0x00, 0x58, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8182EAC -gUnknown_8182EAC: @ 8182EAC -.byte 0xf6, 0x00, 0x61, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x00, 0x03, 0x00, 0x09, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x09, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8182F0C -gUnknown_8182F0C: @ 8182F0C -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182EAC - -.global gUnknown_8182F18 -gUnknown_8182F18: @ 8182F18 -.byte 0xf6, 0x00, 0x6c, 0x05 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x04, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x1e, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8183B34 -closeTextBox -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8183AEC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8183A8C -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8183A40 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8183A34 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8183A20 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81839C0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8183968 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8183938 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8183930 -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81838EC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81838C4 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818388C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8183840 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81837F8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81837EC -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81837B8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818378C -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8183758 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818372C -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818370C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81836D0 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd2, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81836A8 -closeTextBox -.byte 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x91, 0x04, 0x01, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x91, 0x04, 0x02, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8183678 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8183648 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8183620 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81835FC -closeTextBox -.byte 0x48, 0x00, 0x78, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x50 -.byte 0x2e, 0x03, 0x03, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8180080 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81835AC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8183574 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8183530 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81834FC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81834B8 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0x44, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81834B8 -gUnknown_81834B8: @ 81834B8 -.string " If you feel the urge to hear\n" -.string "my tale again{COMMA} come see me. Hohoho.\0" -.align 2, 0 - -.global gUnknown_81834FC -gUnknown_81834FC: @ 81834FC -.string " But it is only ancient\n" -.string "folklore{COMMA} nothing more.\0" -.align 2, 0 - -.global gUnknown_8183530 -gUnknown_8183530: @ 8183530 -.string " Certainly some rumors say\n" -.string "that the legend may actually be true...\0" -.align 2, 0 - -.global gUnknown_8183574 -gUnknown_8183574: @ 8183574 -.string " There{APOSTROPHE}s no need to wear\n" -.string "such a serious expression.\0" -.align 2, 0 - -.global gUnknown_81835AC -gUnknown_81835AC: @ 81835AC -.string " Ah-hah!{WAIT_PRESS}\n" -.string "You found it so interesting{COMMA} you{APOSTROPHE}re at\n" -.string "a loss for words? Hohoho.\0" -.align 2, 0 - -.global gUnknown_81835FC -gUnknown_81835FC: @ 81835FC -.string " Well?\n" -.string "Did you find it interesting?\0" -.align 2, 0 - -.global gUnknown_8183620 -gUnknown_8183620: @ 8183620 -.string " ...And that is how the legend\n" -.string "ends.\0" -.align 2, 0 - -.global gUnknown_8183648 -gUnknown_8183648: @ 8183648 -.string " {QUOTE_START}The world{APOSTROPHE}s balance will\n" -.string "be upset...{QUOTE_END}\0" -.align 2, 0 - -.global gUnknown_8183678 -gUnknown_8183678: @ 8183678 -.string " {QUOTE_START}And when the human \n" -.string "becomes a Pokémon...{QUOTE_END}\0" -.align 2, 0 - -.global gUnknown_81836A8 -gUnknown_81836A8: @ 81836A8 -.string " What?!{WAIT_PRESS}\n" -.string "A human turn into a Pokémon?!\0" -.align 2, 0 - -.global gUnknown_81836D0 -gUnknown_81836D0: @ 81836D0 -.string " {QUOTE_START}That human will one day\n" -.string "be reborn as a Pokémon...{QUOTE_END}\0" -.align 2, 0 - -.global gUnknown_818370C -gUnknown_818370C: @ 818370C -.string " And it made this prediction...\0" -.align 2, 0 - -.global gUnknown_818372C -gUnknown_818372C: @ 818372C -.string " {ARG_NICKNAME_2} became\n" -.string "disillusioned with the human...\0" -.align 2, 0 - -.global gUnknown_8183758 -gUnknown_8183758: @ 8183758 -.string " But the human had already\n" -.string "abandoned {ARG_NICKNAME_4} and fled.\0" -.align 2, 0 - -.global gUnknown_818378C -gUnknown_818378C: @ 818378C -.string " {QUOTE_START}Do you wish to save\n" -.string "{ARG_NICKNAME_4}?{QUOTE_END} it asked...\0" -.align 2, 0 - -.global gUnknown_81837B8 -gUnknown_81837B8: @ 81837B8 -.string " Taking pity on {ARG_NICKNAME_4}{COMMA}\n" -.string "{ARG_NICKNAME_2} asked the human this...\0" -.align 2, 0 - -.global gUnknown_81837EC -gUnknown_81837EC: @ 81837EC -.string " Correct.\0" -.align 2, 0 - -.global gUnknown_81837F8 -gUnknown_81837F8: @ 81837F8 -.string " ...OK.{WAIT_PRESS}\n" -.string "But humans... Aren{APOSTROPHE}t there good humans\n" -.string "and bad ones too?\0" -.align 2, 0 - -.global gUnknown_8183840 -gUnknown_8183840: @ 8183840 -.string " ...All right.{WAIT_PRESS}\n" -.string "But humans... Aren{APOSTROPHE}t there good ones and\n" -.string "bad ones too?\0" -.align 2, 0 - -.global gUnknown_818388C -gUnknown_818388C: @ 818388C -.string " There exist strong bonds\n" -.string "between humans and Pokémon.\0" -.align 2, 0 - -.global gUnknown_81838C4 -gUnknown_81838C4: @ 81838C4 -.string " To {ARG_NICKNAME_4}{COMMA} that human\n" -.string "was her partner.\0" -.align 2, 0 - -.global gUnknown_81838EC -gUnknown_81838EC: @ 81838EC -.string " Why would that Pokémon{COMMA}\n" -.string "Gardevoir{COMMA} take the human{APOSTROPHE}s place?\0" -.align 2, 0 - -.global gUnknown_8183930 -gUnknown_8183930: @ 8183930 -.string " Why?\0" -.align 2, 0 - -.global gUnknown_8183938 -gUnknown_8183938: @ 8183938 -.string " And sacrificed herself to\n" -.string "absorb the curse.\0" -.align 2, 0 - -.global gUnknown_8183968 -gUnknown_8183968: @ 8183968 -.string " However{COMMA} just when the\n" -.string "curse was cast{COMMA} a Pokémon named\n" -.string "{ARG_NICKNAME_4} shielded the human...\0" -.align 2, 0 - -.global gUnknown_81839C0 -gUnknown_81839C0: @ 81839C0 -.string " As one might expect{COMMA} the\n" -.string "human that grabbed the tail was subjected\n" -.string "to a thousand-year curse.\0" -.align 2, 0 - -.global gUnknown_8183A20 -gUnknown_8183A20: @ 8183A20 -.string " Yes{COMMA} a human.\0" -.align 2, 0 - -.global gUnknown_8183A34 -gUnknown_8183A34: @ 8183A34 -.string " A human?\0" -.align 2, 0 - -.global gUnknown_8183A40 -gUnknown_8183A40: @ 8183A40 -.string " But there was someone\n" -.string "so foolish as to grab a tail.{WAIT_PRESS}\n" -.string "And it was a human.\0" -.align 2, 0 - -.global gUnknown_8183A8C -gUnknown_8183A8C: @ 8183A8C -.string " It was said that anyone so\n" -.string "foolish as to touch a tail would be cursed\n" -.string "for a thousand years.\0" -.align 2, 0 - -.global gUnknown_8183AEC -gUnknown_8183AEC: @ 8183AEC -.string " Now{COMMA} {ARG_NICKNAME_2} had\n" -.string "many tails{COMMA} all of them imbued with\n" -.string "psychic power...\0" -.align 2, 0 - -.global gUnknown_8183B34 -gUnknown_8183B34: @ 8183B34 -.string " There once lived a Pokémon\n" -.string "by the name of {ARG_NICKNAME_2}.\0" -.align 2, 0 - -.global gUnknown_8183B64 -gUnknown_8183B64: @ 8183B64 -.byte 0xf6, 0x00, 0xc9, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x0d, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd2, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, west -.byte 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, north -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8183C84 -gUnknown_8183C84: @ 8183C84 -.byte 0xf6, 0x00, 0xde, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8183D24 -gUnknown_8183D24: @ 8183D24 -.byte 0xf6, 0x00, 0xeb, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x63, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182C88 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182C50 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182C48 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182C44 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182C10 -.byte 0x1d, 0x01, 0x10, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182C08 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8183E54 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8183E54 -gUnknown_8183E54: @ 8183E54 -.string " If you feel the urge to hear\n" -.string "my tale again{COMMA} come see me anytime.\n" -.string "Hohoho.\0" -.align 2, 0 - -.global gUnknown_8183EA0 -gUnknown_8183EA0: @ 8183EA0 -.byte 0xf6, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x08, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8183F10 -gUnknown_8183F10: @ 8183F10 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8183EA0 - -.global gUnknown_8183F1C -gUnknown_8183F1C: @ 8183F1C -.byte 0xf6, 0x00, 0x0e, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x08, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x0e, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x0e, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8183F8C -gUnknown_8183F8C: @ 8183F8C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8183F1C - -.global gUnknown_8183F98 -gUnknown_8183F98: @ 8183F98 -.byte 0xf6, 0x00, 0x1a, 0x06 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8183A20 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184188 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184130 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8183938 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x03, 0x01, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8183930 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81838EC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184108 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818388C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8184108 -gUnknown_8184108: @ 8184108 -.string " To {ARG_NICKNAME_3}{COMMA} that human\n" -.string "was her partner.\0" -.align 2, 0 - -.global gUnknown_8184130 -gUnknown_8184130: @ 8184130 -.string " However{COMMA} just when the\n" -.string "curse was cast{COMMA} a Pokémon named\n" -.string "{ARG_NICKNAME_3} shielded the human...\0" -.align 2, 0 - -.global gUnknown_8184188 -gUnknown_8184188: @ 8184188 -.string " As one might expect{COMMA} the\n" -.string "human that grabbed the tail was subjected\n" -.string "to a curse of a thousand years.\0" -.align 2, 0 - -.global gUnknown_81841F0 -gUnknown_81841F0: @ 81841F0 -.byte 0xf6, 0x00, 0x37, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8184230 -gUnknown_8184230: @ 8184230 -.byte 0xf6, 0x00, 0x3e, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8184280 -gUnknown_8184280: @ 8184280 -.byte 0xf6, 0x00, 0x46, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81842B0 -gUnknown_81842B0: @ 81842B0 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184280 - -.global gUnknown_81842BC -gUnknown_81842BC: @ 81842BC -.byte 0xf6, 0x00, 0x4e, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 6 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81842FC -gUnknown_81842FC: @ 81842FC -.byte 0xf6, 0x00, 0x55, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0xe9, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818431C -gUnknown_818431C: @ 818431C -.byte 0xf6, 0x00, 0x5a, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xeb, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818435C -gUnknown_818435C: @ 818435C -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818431C - -.global gUnknown_8184368 -gUnknown_8184368: @ 8184368 -.byte 0xf6, 0x00, 0x63, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81843A8 -gUnknown_81843A8: @ 81843A8 -.byte 0xf6, 0x00, 0x6a, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184474 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184418 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8184418 -gUnknown_8184418: @ 8184418 -.string " I got carried away and\n" -.string "recounted that tale...{WAIT_PRESS}\n" -.string "I should{APOSTROPHE}ve left well enough alone...\0" -.align 2, 0 - -.global gUnknown_8184474 -gUnknown_8184474: @ 8184474 -.string " I regret this...{WAIT_PRESS}\n" -.string "How some old folklore I told...{WAIT_PRESS}\n" -.string "could cause such an uproar...\0" -.align 2, 0 - -.global gUnknown_81844C8 -gUnknown_81844C8: @ 81844C8 -.byte 0xf6, 0x00, 0x74, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x21, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81844F8 -gUnknown_81844F8: @ 81844F8 -.byte 0xf6, 0x00, 0x7a, 0x06 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0xb9, 0x00, 0x04, 0x00, 0x1e, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8184568 -gUnknown_8184568: @ 8184568 -.byte 0xf6, 0x00, 0x84, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81845C8 -.byte 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81845C8 -gUnknown_81845C8: @ 81845C8 -.string " I{APOSTROPHE}m so glad {ARG_NICKNAME_0}\n" -.string "isn{APOSTROPHE}t under suspicion anymore.\0" -.align 2, 0 - -.global gUnknown_81845FC -gUnknown_81845FC: @ 81845FC -.byte 0xf6, 0x00, 0x8d, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81846A0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818466C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818466C -gUnknown_818466C: @ 818466C -.string " I hope you keep doing good\n" -.string "with your rescue work!\0" -.align 2, 0 - -.global gUnknown_81846A0 -gUnknown_81846A0: @ 81846A0 -.string " I just knew {ARG_NICKNAME_0}\n" -.string "couldn{APOSTROPHE}t be evil.\0" -.align 2, 0 - -.global gUnknown_81846C8 -gUnknown_81846C8: @ 81846C8 -.byte 0xf6, 0x00, 0x97, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x0c, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8184708 -gUnknown_8184708: @ 8184708 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81846C8 - -.global gUnknown_8184714 -gUnknown_8184714: @ 8184714 -.byte 0xf6, 0x00, 0xa0, 0x06, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8184754 -gUnknown_8184754: @ 8184754 -.byte 0xf6, 0x00, 0xa7, 0x06, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184830 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81847F8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81847D4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81847D4 -gUnknown_81847D4: @ 81847D4 -.string " And many quakes are indeed\n" -.string "coming.\0" -.align 2, 0 - -.global gUnknown_81847F8 -gUnknown_81847F8: @ 81847F8 -.string " My whiskers...{WAIT_PRESS}\n" -.string "They tell me of coming earthquakes.\0" -.align 2, 0 - -.global gUnknown_8184830 -gUnknown_8184830: @ 8184830 -.string " Wroooar!\n" -.string "I can{APOSTROPHE}t relax!\0" -.align 2, 0 - -.global gUnknown_818484C -gUnknown_818484C: @ 818484C -.byte 0xf6, 0x00, 0xb2, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x21, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818487C -gUnknown_818487C: @ 818487C -.byte 0xf6, 0x00, 0xb8, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0xb9, 0x00, 0x04, 0x00, 0x1e, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81848EC -gUnknown_81848EC: @ 81848EC -.byte 0xf6, 0x00, 0xc2, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81849B4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818495C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818495C -gUnknown_818495C: @ 818495C -.string " I was so scared{COMMA} I spat silk\n" -.string "all over the place...{WAIT_PRESS}\n" -.string "It was a mess for everyone...\0" -.align 2, 0 - -.global gUnknown_81849B4 -gUnknown_81849B4: @ 81849B4 -.string " That earthquake really\n" -.string "frightened me...\0" -.align 2, 0 - -.global gUnknown_81849E0 -gUnknown_81849E0: @ 81849E0 -.byte 0xf6, 0x00, 0xcc, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184ACC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184A84 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184A60 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8184A60 -gUnknown_8184A60: @ 8184A60 -.string " Waaah!\n" -.string "Thinking about it is scary!\0" -.align 2, 0 - -.global gUnknown_8184A84 -gUnknown_8184A84: @ 8184A84 -.string " I couldn{APOSTROPHE}t take a step...{WAIT_PRESS}\n" -.string "I was just shaking inside my shell...\0" -.align 2, 0 - -.global gUnknown_8184ACC -gUnknown_8184ACC: @ 8184ACC -.string " I hardened when the quake\n" -.string "hit...\0" -.align 2, 0 - -.global gUnknown_8184AF0 -gUnknown_8184AF0: @ 8184AF0 -.byte 0xf6, 0x00, 0xd7, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8184B30 -gUnknown_8184B30: @ 8184B30 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184AF0 - -.global gUnknown_8184B3C -gUnknown_8184B3C: @ 8184B3C -.byte 0xf6, 0x00, 0xe0, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8184B7C -gUnknown_8184B7C: @ 8184B7C -.byte 0xf6, 0x00, 0xe7, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184830 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81847F8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81847D4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8184BFC -gUnknown_8184BFC: @ 8184BFC -.byte 0xf6, 0x00, 0xf2, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x21, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8184C2C -gUnknown_8184C2C: @ 8184C2C -.byte 0xf6, 0x00, 0xf8, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0xb9, 0x00, 0x04, 0x00, 0x1e, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8184C9C -gUnknown_8184C9C: @ 8184C9C -.byte 0xf6, 0x00, 0x02, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184CFC -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8184CFC -gUnknown_8184CFC: @ 8184CFC -.string " I{APOSTROPHE}m terrified of all the\n" -.string "earthquakes...\0" -.align 2, 0 - -.global gUnknown_8184D28 -gUnknown_8184D28: @ 8184D28 -.byte 0xf6, 0x00, 0x0b, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184D88 -.byte 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8184D88 -gUnknown_8184D88: @ 8184D88 -.string " I haven{APOSTROPHE}t relaxed from\n" -.string "hardening at all...\0" -.align 2, 0 - -.global gUnknown_8184DB8 -gUnknown_8184DB8: @ 8184DB8 -.byte 0xf6, 0x00, 0x14, 0x07 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8184DF8 -gUnknown_8184DF8: @ 8184DF8 -.byte 0x93, 0x01, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184DB8 - -.global gUnknown_8184E04 -gUnknown_8184E04: @ 8184E04 -.byte 0xf6, 0x00, 0x1d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8184E44 -gUnknown_8184E44: @ 8184E44 -.byte 0xf6, 0x00, 0x24, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184F58 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184F00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184EC4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8184EC4 -gUnknown_8184EC4: @ 8184EC4 -.string " It appears I{APOSTROPHE}ve learned\n" -.string "something from you youngsters.\0" -.align 2, 0 - -.global gUnknown_8184F00 -gUnknown_8184F00: @ 8184F00 -.string " I shouldn{APOSTROPHE}t be panicking.{WAIT_PRESS}\n" -.string "I have the ability to sense quakes.\n" -.string "I must remain calm.\0" -.align 2, 0 - -.global gUnknown_8184F58 -gUnknown_8184F58: @ 8184F58 -.string " Your words in the square\n" -.string "struck me to my heart.\0" -.align 2, 0 - -.global gUnknown_8184F8C -gUnknown_8184F8C: @ 8184F8C -.byte 0xf6, 0x00, 0x2f, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x21, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8184FBC -gUnknown_8184FBC: @ 8184FBC -.byte 0xf6, 0x00, 0x35, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0xb9, 0x00, 0x04, 0x00, 0x1e, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818502C -gUnknown_818502C: @ 818502C -.byte 0xf6, 0x00, 0x3f, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x02, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81850E8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81850AC -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81850AC -gUnknown_81850AC: @ 81850AC -.string " We{APOSTROPHE}ll be OK.\n" -.string "We{APOSTROPHE}ll try not to be scared of the quakes!\0" -.align 2, 0 - -.global gUnknown_81850E8 -gUnknown_81850E8: @ 81850E8 -.string " {ARG_NICKNAME_0}!\n" -.string "Please take care!\0" -.align 2, 0 - -.global gUnknown_8185100 -gUnknown_8185100: @ 8185100 -.byte 0xf6, 0x00, 0x4a, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185160 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8185160 -gUnknown_8185160: @ 8185160 -.string " I{APOSTROPHE}ll do my best to harden\n" -.string "myself!\0" -.align 2, 0 - -.global gUnknown_8185188 -gUnknown_8185188: @ 8185188 -.byte 0xf6, 0x00, 0x53, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x0c, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81851C8 -gUnknown_81851C8: @ 81851C8 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185188 - -.global gUnknown_81851D4 -gUnknown_81851D4: @ 81851D4 -.byte 0xf6, 0x00, 0x5c, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8185214 -gUnknown_8185214: @ 8185214 -.byte 0xf6, 0x00, 0x63, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185328 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81852E0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185294 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8185294 -gUnknown_8185294: @ 8185294 -.string " I can feel their resolve...{WAIT_PRESS}\n" -.string "The same feeling...from everyone.\n" -.string "Sniffle...\0" -.align 2, 0 - -.global gUnknown_81852E0 -gUnknown_81852E0: @ 81852E0 -.string " Pokémon have united in\n" -.string "their efforts to rescue Alakazam{APOSTROPHE}s team...\0" -.align 2, 0 - -.global gUnknown_8185328 -gUnknown_8185328: @ 8185328 -.string " Sniffle...\n" -.string "This is so inspiring...\0" -.align 2, 0 - -.global gUnknown_818534C -gUnknown_818534C: @ 818534C -.byte 0xf6, 0x00, 0x6e, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x21, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818537C -gUnknown_818537C: @ 818537C -.byte 0xf6, 0x00, 0x74, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0xb9, 0x00, 0x04, 0x00, 0x1e, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81853EC -gUnknown_81853EC: @ 81853EC -.byte 0xf6, 0x00, 0x7e, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185574 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818553C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185520 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81854CC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818548C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818548C -gUnknown_818548C: @ 818548C -.string " If my information helps\n" -.string "even a little{COMMA} {ARG_NICKNAME_0}{COMMA} I{APOSTROPHE}m happy.\0" -.align 2, 0 - -.global gUnknown_81854CC -gUnknown_81854CC: @ 81854CC -.string " Mom also told me...{WAIT_PRESS}\n" -.string "It is hard going because there are so many\n" -.string "monster houses.\0" -.align 2, 0 - -.global gUnknown_8185520 -gUnknown_8185520: @ 8185520 -.string " But she is doing her best.\0" -.align 2, 0 - -.global gUnknown_818553C -gUnknown_818553C: @ 818553C -.string " Mom is weak to fire{COMMA} so it\n" -.string "isn{APOSTROPHE}t easy for her...\0" -.align 2, 0 - -.global gUnknown_8185574 -gUnknown_8185574: @ 8185574 -.string " My mom has joined other\n" -.string "Pokémon to fight in the {COLOR_1 YELLOW_4}Magma Cavern{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_81855B8 -gUnknown_81855B8: @ 81855B8 -.byte 0xf6, 0x00, 0x8b, 0x07 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185618 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8185618 -gUnknown_8185618: @ 8185618 -.string " I{APOSTROPHE}ve hardened quite a lot!\n" -.string "No earthquake can touch me now!\0" -.align 2, 0 - -.global gUnknown_8185658 -gUnknown_8185658: @ 8185658 -.byte 0xf6, 0x00, 0x94, 0x07 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8185688 -gUnknown_8185688: @ 8185688 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185658 - -.global gUnknown_8185694 -gUnknown_8185694: @ 8185694 -.byte 0xf6, 0x00, 0x9c, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81856D4 -gUnknown_81856D4: @ 81856D4 -.byte 0xf6, 0x00, 0xa3, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81857F4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81857B0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185754 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8185754 -gUnknown_8185754: @ 8185754 -.string " I realize that it is a heavy\n" -.string "burden to bear{COMMA} but...{WAIT_PRESS}\n" -.string "we must count on you to succeed.\0" -.align 2, 0 - -.global gUnknown_81857B0 -gUnknown_81857B0: @ 81857B0 -.string " But there is nothing that\n" -.string "I can do.{WAIT_PRESS}\n" -.string "All our hopes ride with you.\0" -.align 2, 0 - -.global gUnknown_81857F4 -gUnknown_81857F4: @ 81857F4 -.string " A shooting star is on\n" -.string "a collision course...{WAIT_PRESS}\n" -.string "This is indeed a desperate time.\0" -.align 2, 0 - -.global gUnknown_8185844 -gUnknown_8185844: @ 8185844 -.byte 0xf6, 0x00, 0xae, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x21, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8185874 -gUnknown_8185874: @ 8185874 -.byte 0xf6, 0x00, 0xb4, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81858D4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81858D4 -gUnknown_81858D4: @ 81858D4 -.string " I{APOSTROPHE}ll use Harden and wait for\n" -.string "{ARG_NICKNAME_0}{APOSTROPHE}s team to come back!\0" -.align 2, 0 - -.global gUnknown_8185910 -gUnknown_8185910: @ 8185910 -.byte 0xf6, 0x00, 0xbd, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8185950 -gUnknown_8185950: @ 8185950 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185910 - -.global gUnknown_818595C -gUnknown_818595C: @ 818595C -.byte 0xf6, 0x00, 0xc6, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818599C -gUnknown_818599C: @ 818599C -.byte 0xf6, 0x00, 0xcd, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185A50 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185A0C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8185A0C -gUnknown_8185A0C: @ 8185A0C -.string " This journey promises to be\n" -.string "harsh.\n" -.string "I count on your perseverance.\0" -.align 2, 0 - -.global gUnknown_8185A50 -gUnknown_8185A50: @ 8185A50 -.string " I see...\n" -.string "You are finally off.\0" -.align 2, 0 - -.global gUnknown_8185A70 -gUnknown_8185A70: @ 8185A70 -.byte 0xf6, 0x00, 0xd7, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x21, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8185AA0 -gUnknown_8185AA0: @ 8185AA0 -.byte 0xf6, 0x00, 0xdd, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185B94 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185B64 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185B30 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8185B30 -gUnknown_8185B30: @ 8185B30 -.string " I believe in you.\n" -.string "So I{APOSTROPHE}ll be waiting for you.\0" -.align 2, 0 - -.global gUnknown_8185B64 -gUnknown_8185B64: @ 8185B64 -.string " But this is {ARG_NICKNAME_0}\n" -.string "and {ARG_NICKNAME_2}.{WAIT_PRESS}\n" -.string "You can{APOSTROPHE}t fail.\0" -.align 2, 0 - -.global gUnknown_8185B94 -gUnknown_8185B94: @ 8185B94 -.string " You{APOSTROPHE}re soon going...\0" -.align 2, 0 - -.global gUnknown_8185BAC -gUnknown_8185BAC: @ 8185BAC -.byte 0xf6, 0x00, 0xe9, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185C68 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185C1C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8185C1C -gUnknown_8185C1C: @ 8185C1C -.string " You also have my support.{WAIT_PRESS}\n" -.string "Please do your best. And please be careful!\0" -.align 2, 0 - -.global gUnknown_8185C68 -gUnknown_8185C68: @ 8185C68 -.string " Hello{COMMA} I am Caterpie{APOSTROPHE}s\n" -.string "mother. It{APOSTROPHE}s been a while.\0" -.align 2, 0 - -.global gUnknown_8185CA4 -gUnknown_8185CA4: @ 8185CA4 -.byte 0xf6, 0x00, 0xf3, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81858D4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8185D04 -gUnknown_8185D04: @ 8185D04 -.byte 0xf6, 0x00, 0xfc, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8185D44 -gUnknown_8185D44: @ 8185D44 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185D04 - -.global gUnknown_8185D50 -gUnknown_8185D50: @ 8185D50 -.byte 0xf6, 0x00, 0x05, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8185D90 -gUnknown_8185D90: @ 8185D90 -.byte 0xf6, 0x00, 0x0c, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185E80 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185E38 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185E10 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8185E10 -gUnknown_8185E10: @ 8185E10 -.string " The world remains a vast\n" -.string "mystery...\0" -.align 2, 0 - -.global gUnknown_8185E38 -gUnknown_8185E38: @ 8185E38 -.string " In all my long years{COMMA} I{APOSTROPHE}d\n" -.string "not known of any world above the clouds.\0" -.align 2, 0 - -.global gUnknown_8185E80 -gUnknown_8185E80: @ 8185E80 -.string " Ah...{WAIT_PRESS} The {COLOR_1 YELLOW_4}Sky Tower{END_COLOR_TEXT_1}{COMMA}\n" -.string "you say...\0" -.align 2, 0 - -.global gUnknown_8185EAC -gUnknown_8185EAC: @ 8185EAC -.byte 0xf6, 0x00, 0x17, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x21, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8185EDC -gUnknown_8185EDC: @ 8185EDC -.byte 0xf6, 0x00, 0x1d, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185F5C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185B30 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8185F5C -gUnknown_8185F5C: @ 8185F5C -.string " This is {ARG_NICKNAME_0}\n" -.string "and {ARG_NICKNAME_2} after all.{WAIT_PRESS}\n" -.string "You can{APOSTROPHE}t fail.\0" -.align 2, 0 - -.global gUnknown_8185F90 -gUnknown_8185F90: @ 8185F90 -.byte 0xf6, 0x00, 0x28, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185FF0 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8185FF0 -gUnknown_8185FF0: @ 8185FF0 -.string " I believe too.\n" -.string "{ARG_NICKNAME_0}{COMMA} don{APOSTROPHE}t let us down!\0" -.align 2, 0 - -.global gUnknown_818601C -gUnknown_818601C: @ 818601C -.byte 0xf6, 0x00, 0x31, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81860BC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818608C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818608C -gUnknown_818608C: @ 818608C -.string " I wish I could use Harden\n" -.string "up on the clouds...\0" -.align 2, 0 - -.global gUnknown_81860BC -gUnknown_81860BC: @ 81860BC -.string " Oh{COMMA} is that right?\n" -.string "You can climb above the clouds?\0" -.align 2, 0 - -.global gUnknown_81860F4 -gUnknown_81860F4: @ 81860F4 -.byte 0xf6, 0x00, 0x3b, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x08, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xf0 -.byte 0x23, 0x01, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8186174 -gUnknown_8186174: @ 8186174 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81860F4 - -.global gUnknown_8186180 -gUnknown_8186180: @ 8186180 -.byte 0xf6, 0x00, 0x48, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x99, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81861C0 -gUnknown_81861C0: @ 81861C0 -.byte 0xf6, 0x00, 0x4f, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8186200 -gUnknown_8186200: @ 8186200 -.byte 0xf6, 0x00, 0x56, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x44, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x1e, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8186300 -gUnknown_8186300: @ 8186300 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8186200 - -.global gUnknown_818630C -gUnknown_818630C: @ 818630C -.byte 0xf6, 0x00, 0x6b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x02, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x96 -.byte 0x86, 0x00, 0x00, 0x02, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81863EC -gUnknown_81863EC: @ 81863EC -.byte 0xf6, 0x00, 0x7c, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -setFlag 0x07 -setFlag 0x08 -.byte 0x6b, 0x00, 0x00, 0x01, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -setFlag 0x06 -setFlag 0x07 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818787C -closeTextBox -setFlag 0x04 -setFlag 0x06 -setFlag 0x07 -setFlag 0x08 -setFlag 0x09 -setFlag 0x0a -.byte 0x6b, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818784C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8187820 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81877FC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81877D0 -closeTextBox -pause 0x0a -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x0f, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81877BC -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818779C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8187760 -closeTextBox -pause 0x1e -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8187738 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8187700 -closeTextBox -pause 0x0a -.byte 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81876F4 -closeTextBox -pause 0x0a -.byte 0x2e, 0x0d, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2f, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81876D0 -closeTextBox -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81876BC -closeTextBox -pause 0x0a -setFlag 0x06 -setFlag 0x07 -setFlag 0x08 -setFlag 0x09 -setFlag 0x0a -pause 0x05 -rotate 0x04, shortestDir, northwest -pause 0x0f -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81876A0 -closeTextBox -setFlag 0x07 -setFlag 0x08 -setFlag 0x09 -setFlag 0x0b -pause 0x05 -rotate 0x04, shortestDir, north -pause 0x0f -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8187674 -closeTextBox -pause 0x0a -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x0e, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8187640 -closeTextBox -setFlag 0x06 -setFlag 0x07 -setFlag 0x08 -setFlag 0x0a -pause 0x05 -rotate 0x04, shortestDir, northwest -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8187614 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81875E8 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81875A8 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8187568 -closeTextBox -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -setFlag 0x07 -setFlag 0x08 -setFlag 0x0a -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818752C -closeTextBox -pause 0x14 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81874F4 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81874D8 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8187480 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818741C -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81873F4 -closeTextBox -pause 0x0a -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x04, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81873C4 -closeTextBox -pause 0x0a -.byte 0x2e, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2f, 0x00, 0x03, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8187394 -closeTextBox -pause 0x0a -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8187358 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818732C -closeTextBox -pause 0x0a -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818730C -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81872C8 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8187288 -closeTextBox -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -setFlag 0x07 -setFlag 0x08 -setFlag 0x0a -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8187258 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818722C -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8187204 -closeTextBox -pause 0x0a -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81871F8 -closeTextBox -pause 0x0a -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81871D0 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81871D0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81871D0 -closeTextBox -pause 0x0a -setFlag 0x09 -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81871A0 -closeTextBox -pause 0x0a -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8187168 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818712C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818712C -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818712C -gUnknown_818712C: @ 818712C -.string " {ARG_NICKNAME_0}.{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s go to the cave if we{APOSTROPHE}re ready to\n" -.string "evolve.\0" -.align 2, 0 - -.global gUnknown_8187168 -gUnknown_8187168: @ 8187168 -.string " {ARG_NICKNAME_0}.{WAIT_PRESS}\n" -.string "We should go to the cave if we want to\n" -.string "evolve.\0" -.align 2, 0 - -.global gUnknown_81871A0 -gUnknown_81871A0: @ 81871A0 -.string " Yes.{WAIT_PRESS}\n" -.string "But it would depend on the conditions.\0" -.align 2, 0 - -.global gUnknown_81871D0 -gUnknown_81871D0: @ 81871D0 -.string " Can we evolve if we go to\n" -.string "that cave?\0" -.align 2, 0 - -.global gUnknown_81871F8 -gUnknown_81871F8: @ 81871F8 -.string " M-me too!\0" -.align 2, 0 - -.global gUnknown_8187204 -gUnknown_8187204: @ 8187204 -.string " I wish I could be Butterfree\n" -.string "soon...\0" -.align 2, 0 - -.global gUnknown_818722C -gUnknown_818722C: @ 818722C -.string " That makes me want to\n" -.string "evolve even more!\0" -.align 2, 0 - -.global gUnknown_8187258 -gUnknown_8187258: @ 8187258 -.string " Oh! Really?!{WAIT_PRESS}\n" -.string "I...{WAIT_PRESS} I might be stronger?!\0" -.align 2, 0 - -.global gUnknown_8187288 -gUnknown_8187288: @ 8187288 -.string " One{APOSTROPHE}s power and abilities\n" -.string "may be enhanced{COMMA} for example.\0" -.align 2, 0 - -.global gUnknown_81872C8 -gUnknown_81872C8: @ 81872C8 -.string " Appearance isn{APOSTROPHE}t the only\n" -.string "thing that changes through evolution.\0" -.align 2, 0 - -.global gUnknown_818730C -gUnknown_818730C: @ 818730C -.string " Evolution is not a bad\n" -.string "thing.\0" -.align 2, 0 - -.global gUnknown_818732C -gUnknown_818732C: @ 818732C -.string " My cute little face turned\n" -.string "all craggy...\0" -.align 2, 0 - -.global gUnknown_8187358 -gUnknown_8187358: @ 8187358 -.string " W-wait a second.{WAIT_PRESS}\n" -.string "I don{APOSTROPHE}t know if I like this or not...\0" -.align 2, 0 - -.global gUnknown_8187394 -gUnknown_8187394: @ 8187394 -.string " I wish...{WAIT_PRESS}\n" -.string "I want to be Butterfree quickly...\0" -.align 2, 0 - -.global gUnknown_81873C4 -gUnknown_81873C4: @ 81873C4 -.string " So if I evolved{COMMA} I would\n" -.string "become like {ARG_NICKNAME_3}?!\0" -.align 2, 0 - -.global gUnknown_81873F4 -gUnknown_81873F4: @ 81873F4 -.string " And perhaps that cave\n" -.string "became unsealed.\0" -.align 2, 0 - -.global gUnknown_818741C -gUnknown_818741C: @ 818741C -.string " However{COMMA} now that the star\n" -.string "has been destroyed...{WAIT_PRESS}\n" -.string "The world{APOSTROPHE}s balance has been restored...\0" -.align 2, 0 - -.global gUnknown_8187480 -gUnknown_8187480: @ 8187480 -.string " Perhaps evolution could\n" -.string "not take place before because the world{APOSTROPHE}s\n" -.string "balance was askew.\0" -.align 2, 0 - -.global gUnknown_81874D8 -gUnknown_81874D8: @ 81874D8 -.string " This is merely a guess...\0" -.align 2, 0 - -.global gUnknown_81874F4 -gUnknown_81874F4: @ 81874F4 -.string " I suspect that cave is where\n" -.string "evolution can take place.\0" -.align 2, 0 - -.global gUnknown_818752C -gUnknown_818752C: @ 818752C -.string " Oh{COMMA} wow!{WAIT_PRESS}\n" -.string "Your own appearance...{WAIT_PRESS}\n" -.string "That can change?!\0" -.align 2, 0 - -.global gUnknown_8187568 -gUnknown_8187568: @ 8187568 -.string " When a Pokémon undergoes\n" -.string "evolution{COMMA} its appearance changes.\0" -.align 2, 0 - -.global gUnknown_81875A8 -gUnknown_81875A8: @ 81875A8 -.string " Pokémon{COMMA} upon satisfying\n" -.string "certain conditions{COMMA} may evolve.\0" -.align 2, 0 - -.global gUnknown_81875E8 -gUnknown_81875E8: @ 81875E8 -.string " Evolution? Evolved?{WAIT_PRESS}\n" -.string "I don{APOSTROPHE}t follow.\0" -.align 2, 0 - -.global gUnknown_8187614 -gUnknown_8187614: @ 8187614 -.string " Evolution? Evolved?{WAIT_PRESS}\n" -.string "What{APOSTROPHE}s that about?\0" -.align 2, 0 - -.global gUnknown_8187640 -gUnknown_8187640: @ 8187640 -.string " Snubbull underwent\n" -.string "{QUOTE_START}evolution.{QUOTE_END}{WAIT_PRESS}\n" -.string "He evolved.\0" -.align 2, 0 - -.global gUnknown_8187674 -gUnknown_8187674: @ 8187674 -.string " Yup.{WAIT_PRESS}\n" -.string "And I came out looking like this...\0" -.align 2, 0 - -.global gUnknown_81876A0 -gUnknown_81876A0: @ 81876A0 -.string " So you went in there...\0" -.align 2, 0 - -.global gUnknown_81876BC -gUnknown_81876BC: @ 81876BC -.string " See?\n" -.string "Right there.\0" -.align 2, 0 - -.global gUnknown_81876D0 -gUnknown_81876D0: @ 81876D0 -.string " It appeared without me\n" -.string "noticing.\0" -.align 2, 0 - -.global gUnknown_81876F4 -gUnknown_81876F4: @ 81876F4 -.string " What cave?\0" -.align 2, 0 - -.global gUnknown_8187700 -gUnknown_8187700: @ 8187700 -.string " I went into the cave there{COMMA}\n" -.string "and all of a sudden...\0" -.align 2, 0 - -.global gUnknown_8187738 -gUnknown_8187738: @ 8187738 -.string " I don{APOSTROPHE}t really understand{COMMA}\n" -.string "either.\0" -.align 2, 0 - -.global gUnknown_8187760 -gUnknown_8187760: @ 8187760 -.string " But you don{APOSTROPHE}t look anything\n" -.string "like the way you did before!\0" -.align 2, 0 - -.global gUnknown_818779C -gUnknown_818779C: @ 818779C -.string " Whaaaat?!{WAIT_PRESS}\n" -.string "You{APOSTROPHE}re Snubbull?\0" -.align 2, 0 - -.global gUnknown_81877BC -gUnknown_81877BC: @ 81877BC -.string " I{APOSTROPHE}m Snubbull.\0" -.align 2, 0 - -.global gUnknown_81877D0 -gUnknown_81877D0: @ 81877D0 -.string " I heard something strange\n" -.string "happened to him.\0" -.align 2, 0 - -.global gUnknown_81877FC -gUnknown_81877FC: @ 81877FC -.string " Hi{COMMA} {ARG_NICKNAME_4}.\n" -.string "Have you seen Snubbull?\0" -.align 2, 0 - -.global gUnknown_8187820 -gUnknown_8187820: @ 8187820 -.string " I heard something weird\n" -.string "happened to him.\0" -.align 2, 0 - -.global gUnknown_818784C -gUnknown_818784C: @ 818784C -.string " Hey{COMMA} {ARG_NICKNAME_4}?{WAIT_PRESS}\n" -.string "Have you seen Snubbull around?\0" -.align 2, 0 - -.global gUnknown_818787C -gUnknown_818787C: @ 818787C -.string " Hi{COMMA} {ARG_NICKNAME_4}!\0" -.align 2, 0 - -.global gUnknown_8187888 -gUnknown_8187888: @ 8187888 -.byte 0xf6, 0x00, 0x6a, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01 -.byte 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe8, 0x00, 0x26, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8187B78 -gUnknown_8187B78: @ 8187B78 -.byte 0xf6, 0x00, 0x9c, 0x09 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8187D98 -gUnknown_8187D98: @ 8187D98 -.byte 0xf6, 0x00, 0xc1, 0x09 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x6b, 0x00, 0x00, 0x01 -.byte 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8187F58 -gUnknown_8187F58: @ 8187F58 -.byte 0xf6, 0x00, 0xe0, 0x09 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, east -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81880B8 -gUnknown_81880B8: @ 81880B8 -.byte 0xf6, 0x00, 0xf9, 0x09 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, southwest -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0a, shortestDir, southwest -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x0a, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0a, shortestDir, west -.byte 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0a, shortestDir, south -.byte 0x56, 0x00, 0x00, 0x00 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81882A8 -gUnknown_81882A8: @ 81882A8 -.byte 0xf6, 0x00, 0x1b, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x0c, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x91, 0x0c, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188368 -gUnknown_8188368: @ 8188368 -.byte 0xf6, 0x00, 0x2a, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x0c, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81883A8 -gUnknown_81883A8: @ 81883A8 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8188368 - -.global gUnknown_81883B4 -gUnknown_81883B4: @ 81883B4 -.byte 0xf6, 0x00, 0x33, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8188414 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188414 -gUnknown_8188414: @ 8188414 -.string " First I have to evolve like\n" -.string "Metapod!\0" -.align 2, 0 - -.global gUnknown_818843C -gUnknown_818843C: @ 818843C -.byte 0xf6, 0x00, 0x3c, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818849C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818849C -gUnknown_818849C: @ 818849C -.string " Oh{COMMA} I hope I can be\n" -.string "Butterfree soon...\0" -.align 2, 0 - -.global gUnknown_81884C8 -gUnknown_81884C8: @ 81884C8 -.byte 0xf6, 0x00, 0x45, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81874F4 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8188538 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188538 -gUnknown_8188538: @ 8188538 -.string " You should enter that cave\n" -.string "if you wish to evolve.\0" -.align 2, 0 - -.global gUnknown_818856C -gUnknown_818856C: @ 818856C -.byte 0xf6, 0x00, 0x4f, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81885CC -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81885CC -gUnknown_81885CC: @ 81885CC -.string " I might become\n" -.string "stronger!{WAIT_PRESS}\n" -.string "Ooh{COMMA} it{APOSTROPHE}s exciting...\0" -.align 2, 0 - -.global gUnknown_8188604 -gUnknown_8188604: @ 8188604 -.byte 0xf6, 0x00, 0x58, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188644 -gUnknown_8188644: @ 8188644 -.byte 0xf6, 0x00, 0x5f, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81886EC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81886B4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81886B4 -gUnknown_81886B4: @ 81886B4 -.string " If you wish to enter the\n" -.string "cave{COMMA} you must come alone.\0" -.align 2, 0 - -.global gUnknown_81886EC -gUnknown_81886EC: @ 81886EC -.string " That cave{APOSTROPHE}s entrance\n" -.string "appears rather narrow.\n" -.string "Only one may enter at a time{COMMA} it seems.\0" -.align 2, 0 - -.global gUnknown_8188748 -gUnknown_8188748: @ 8188748 -.byte 0xf6, 0x00, 0x69, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817DE3C -.byte 0x21, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188778 -gUnknown_8188778: @ 8188778 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x1c, 0x47, 0x02, 0x02 -.4byte gUnknown_817DEB4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1c, 0x49, 0x02, 0x02 -.4byte gUnknown_817DEF4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81887A8 -gUnknown_81887A8: @ 81887A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x1c, 0x1b, 0x02, 0x02 -.4byte gUnknown_817E024 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1c, 0x19, 0x02, 0x02 -.4byte gUnknown_817E064 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81887D8 -gUnknown_81887D8: @ 81887D8 -.byte 0x36, 0x06, 0x00, 0x00 -.byte 0x23, 0x28, 0x00, 0x02 -.4byte gUnknown_817E0F0 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817E130 -.byte 0x00, 0x00, 0x00, 0x00, 0x5e, 0x02, 0x00, 0x00, 0x1f, 0x28, 0x00, 0x02 -.4byte gUnknown_817E380 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817E3C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x28, 0x21, 0x02, 0x02 -.4byte gUnknown_817E4E0 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817E520 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188820 -gUnknown_8188820: @ 8188820 -.byte 0x62, 0x00, 0x00, 0x00, 0x28, 0x21, 0x02, 0x02 -.4byte gUnknown_817E7F4 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817E834 -.4byte gUnknown_817F2D4 - -.global gUnknown_8188838 -gUnknown_8188838: @ 8188838 -.byte 0x62, 0x00, 0x00, 0x00 -.byte 0x28, 0x21, 0x02, 0x02 -.4byte gUnknown_817F4A4 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817F4E4 -.4byte gUnknown_817F6B8 - -.global gUnknown_8188850 -gUnknown_8188850: @ 8188850 -.byte 0x5d, 0x02, 0x00, 0x00, 0x10, 0x2b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817F788 -.byte 0x00, 0x00, 0x00, 0x00, 0x5c, 0x06, 0x00, 0x00, 0x14, 0x2b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817F7B8 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188880 -gUnknown_8188880: @ 8188880 -.byte 0x00, 0x04, 0x00, 0x00, 0x10, 0x2e, 0x00, 0x02 -.4byte gUnknown_817F910 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x14, 0x2e, 0x00, 0x02 -.4byte gUnknown_818009C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x10, 0x2b, 0x00, 0x02 -.4byte gUnknown_81800FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x14, 0x2b, 0x00, 0x02 -.4byte gUnknown_818034C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81888E0 -gUnknown_81888E0: @ 81888E0 -.byte 0x5d, 0x02, 0x00, 0x00, 0x10, 0x2b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81804FC -.byte 0x00, 0x00, 0x00, 0x00, 0x5c, 0x06, 0x00, 0x00 -.byte 0x14, 0x2b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818052C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188910 -gUnknown_8188910: @ 8188910 -.byte 0x00, 0x02, 0x00, 0x00, 0x10, 0x2e, 0x00, 0x02 -.4byte gUnknown_8180674 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x02, 0x00, 0x00, 0x14, 0x2e, 0x00, 0x02 -.4byte gUnknown_8180DC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x5d, 0x02, 0x00, 0x00, 0x10, 0x2b, 0x00, 0x02 -.4byte gUnknown_8180E20 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x06, 0x00, 0x00 -.byte 0x14, 0x2b, 0x00, 0x02 -.4byte gUnknown_8181010 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188970 -gUnknown_8188970: @ 8188970 -.byte 0x5c, 0x06, 0x00, 0x00, 0x12, 0x2b, 0x00, 0x02 -.4byte gUnknown_81811C0 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181200 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188988 -gUnknown_8188988: @ 8188988 -.byte 0x00, 0x02, 0x00, 0x00, 0x10, 0x2e, 0x00, 0x02 -.4byte gUnknown_818131C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x06, 0x00, 0x00, 0x14, 0x2e, 0x00, 0x02 -.4byte gUnknown_81816D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x02, 0x00, 0x00 -.byte 0x12, 0x2b, 0x00, 0x02 -.4byte gUnknown_8181730 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81889D0 -gUnknown_81889D0: @ 81889D0 -.byte 0x62, 0x00, 0x00, 0x00, 0x1c, 0x14, 0x02, 0x02 -.4byte gUnknown_81818AC -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81818EC -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81889E8 -gUnknown_81889E8: @ 81889E8 -.byte 0x62, 0x00, 0x00, 0x00, 0x1c, 0x14, 0x02, 0x02 -.4byte gUnknown_8181A8C -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181ACC -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188A00 -gUnknown_8188A00: @ 8188A00 -.byte 0x62, 0x00, 0x00, 0x00, 0x1c, 0x14, 0x02, 0x02 -.4byte gUnknown_8181C18 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181C58 -.byte 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00 -.byte 0x22, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181D6C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188A30 -gUnknown_8188A30: @ 8188A30 -.byte 0x62, 0x00, 0x00, 0x00, 0x1c, 0x14, 0x02, 0x02 -.4byte gUnknown_8181EF8 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181F38 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188A48 -gUnknown_8188A48: @ 8188A48 -.byte 0x62, 0x00, 0x00, 0x00, 0x1c, 0x14, 0x02, 0x02 -.4byte gUnknown_81820B0 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81820F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x36, 0x02, 0x00, 0x00, 0x20, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81824B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x5e, 0x06, 0x00, 0x00 -.byte 0x24, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818255C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188A90 -gUnknown_8188A90: @ 8188A90 -.byte 0x62, 0x00, 0x00, 0x00, 0x1c, 0x14, 0x02, 0x02 -.4byte gUnknown_8182624 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182664 -.byte 0x00, 0x00, 0x00, 0x00, 0x36, 0x02, 0x00, 0x00, 0x20, 0x2a, 0x02, 0x02 -.4byte gUnknown_8182738 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182768 -.byte 0x00, 0x00, 0x00, 0x00, 0x5e, 0x06, 0x00, 0x00, 0x24, 0x2a, 0x02, 0x02 -.4byte gUnknown_81828D4 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182904 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188AD8 -gUnknown_8188AD8: @ 8188AD8 -.byte 0x62, 0x00, 0x00, 0x00 -.byte 0x1c, 0x14, 0x02, 0x02 -.4byte gUnknown_8182A30 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182A70 -.byte 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x20, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182CE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x24, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182DA0 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188B20 -gUnknown_8188B20: @ 8188B20 -.byte 0x00, 0x04, 0x00, 0x00, 0x1b, 0x17, 0x00, 0x02 -.4byte gUnknown_8182F18 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x1e, 0x17, 0x00, 0x02 -.4byte gUnknown_8183B64 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x1c, 0x14, 0x02, 0x02 -.4byte gUnknown_8183C84 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8183D24 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188B68 -gUnknown_8188B68: @ 8188B68 -.byte 0x00, 0x04, 0x00, 0x00, 0x1b, 0x17, 0x00, 0x02 -.4byte gUnknown_8183F98 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x1e, 0x17, 0x00, 0x02 -.4byte gUnknown_81841F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00 -.byte 0x1c, 0x14, 0x02, 0x02 -.4byte gUnknown_8184230 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188BB0 -gUnknown_8188BB0: @ 8188BB0 -.byte 0x62, 0x00, 0x00, 0x00, 0x23, 0x1d, 0x02, 0x02 -.4byte gUnknown_81842BC -.4byte gUnknown_81842FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188BC8 -gUnknown_8188BC8: @ 8188BC8 -.byte 0x62, 0x00, 0x00, 0x00, 0x1c, 0x14, 0x02, 0x02 -.4byte gUnknown_8184368 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81843A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x20, 0x2a, 0x02, 0x02 -.4byte gUnknown_81844F8 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184568 -.byte 0x00, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00 -.byte 0x24, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81845FC -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188C10 -gUnknown_8188C10: @ 8188C10 -.byte 0x62, 0x00, 0x00, 0x00, 0x1c, 0x14, 0x02, 0x02 -.4byte gUnknown_8184714 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184754 -.byte 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x20, 0x2a, 0x02, 0x02 -.4byte gUnknown_818487C -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81848EC -.byte 0x00, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x24, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81849E0 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188C58 -gUnknown_8188C58: @ 8188C58 -.byte 0x62, 0x00, 0x00, 0x00 -.byte 0x1c, 0x14, 0x02, 0x02 -.4byte gUnknown_8184B3C -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184B7C -.byte 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x20, 0x2a, 0x02, 0x02 -.4byte gUnknown_8184C2C -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184C9C -.byte 0x00, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x24, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184D28 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188CA0 -gUnknown_8188CA0: @ 8188CA0 -.byte 0x62, 0x00, 0x00, 0x00, 0x1c, 0x14, 0x02, 0x02 -.4byte gUnknown_8184E04 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184E44 -.byte 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00 -.byte 0x20, 0x2a, 0x02, 0x02 -.4byte gUnknown_8184FBC -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818502C -.byte 0x00, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x24, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185100 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188CE8 -gUnknown_8188CE8: @ 8188CE8 -.byte 0x62, 0x00, 0x00, 0x00, 0x1c, 0x14, 0x02, 0x02 -.4byte gUnknown_81851D4 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185214 -.byte 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x20, 0x2a, 0x02, 0x02 -.4byte gUnknown_818537C -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81853EC -.byte 0x00, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00 -.byte 0x24, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81855B8 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188D30 -gUnknown_8188D30: @ 8188D30 -.byte 0x62, 0x00, 0x00, 0x00, 0x1c, 0x14, 0x02, 0x02 -.4byte gUnknown_8185694 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81856D4 -.byte 0x00, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x24, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185874 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188D60 -gUnknown_8188D60: @ 8188D60 -.byte 0x62, 0x00, 0x00, 0x00, 0x1c, 0x14, 0x02, 0x02 -.4byte gUnknown_818595C -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818599C -.byte 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00 -.byte 0x23, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185AA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x1f, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185BAC -.byte 0x00, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x27, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185CA4 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188DC0 -gUnknown_8188DC0: @ 8188DC0 -.byte 0x62, 0x00, 0x00, 0x00, 0x1c, 0x14, 0x02, 0x02 -.4byte gUnknown_8185D50 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185D90 -.byte 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00 -.byte 0x23, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185EDC -.byte 0x00, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x1f, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185F90 -.byte 0x00, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x27, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818601C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188E20 -gUnknown_8188E20: @ 8188E20 -.byte 0x62, 0x00, 0x00, 0x00, 0x1c, 0x14, 0x02, 0x02 -.4byte gUnknown_81861C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188E38 -gUnknown_8188E38: @ 8188E38 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x1e, 0x41, 0x00, 0x02 -.4byte gUnknown_81863EC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00, 0x1b, 0x41, 0x00, 0x02 -.4byte gUnknown_8187888 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x04, 0x00, 0x00, 0x1b, 0x44, 0x00, 0x02 -.4byte gUnknown_8187B78 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x5e, 0x04, 0x00, 0x00, 0x1e, 0x45, 0x00, 0x02 -.4byte gUnknown_8187D98 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x04, 0x00, 0x00 -.byte 0x22, 0x27, 0x00, 0x02 -.4byte gUnknown_8187F58 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x04, 0x00, 0x00, 0x26, 0x27, 0x00, 0x02 -.4byte gUnknown_81880B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x28, 0x21, 0x02, 0x02 -.4byte gUnknown_81882A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188EE0 -gUnknown_8188EE0: @ 8188EE0 -.byte 0x36, 0x03, 0x00, 0x00, 0x21, 0x2c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81883B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x5e, 0x04, 0x00, 0x00 -.byte 0x27, 0x2c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818843C -.byte 0x00, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x22, 0x27, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81884C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x26, 0x27, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818856C -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x28, 0x21, 0x02, 0x02 -.4byte gUnknown_8188604 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8188644 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188F58 -gUnknown_8188F58: @ 8188F58 -.byte 0x04, 0x00, 0x03, 0x01 -.byte 0x28, 0x23, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817E5D8 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188F70 -gUnknown_8188F70: @ 8188F70 -.byte 0x04, 0x00, 0x03, 0x01, 0x28, 0x23, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817F474 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188F88 -gUnknown_8188F88: @ 8188F88 -.byte 0x04, 0x00, 0x03, 0x01, 0x28, 0x23, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_817F758 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188FA0 -gUnknown_8188FA0: @ 8188FA0 -.byte 0x04, 0x00, 0x03, 0x01, 0x1c, 0x15, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181A20 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188FB8 -gUnknown_8188FB8: @ 8188FB8 -.byte 0x04, 0x00, 0x03, 0x01 -.byte 0x1c, 0x15, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181BAC -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188FD0 -gUnknown_8188FD0: @ 8188FD0 -.byte 0x04, 0x00, 0x03, 0x01, 0x1c, 0x15, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8181D3C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8188FE8 -gUnknown_8188FE8: @ 8188FE8 -.byte 0x04, 0x00, 0x03, 0x01, 0x1c, 0x15, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182044 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8189000 -gUnknown_8189000: @ 8189000 -.byte 0x04, 0x00, 0x03, 0x01, 0x1c, 0x15, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182484 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8189018 -gUnknown_8189018: @ 8189018 -.byte 0x04, 0x00, 0x03, 0x01 -.byte 0x1c, 0x15, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182708 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8189030 -gUnknown_8189030: @ 8189030 -.byte 0x04, 0x00, 0x03, 0x01, 0x1c, 0x15, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8182CB8 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8189048 -gUnknown_8189048: @ 8189048 -.byte 0x04, 0x00, 0x03, 0x01, 0x1c, 0x15, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81844C8 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8189060 -gUnknown_8189060: @ 8189060 -.byte 0x04, 0x00, 0x03, 0x01, 0x1c, 0x15, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818484C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8189078 -gUnknown_8189078: @ 8189078 -.byte 0x04, 0x00, 0x03, 0x01 -.byte 0x1c, 0x15, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184BFC -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8189090 -gUnknown_8189090: @ 8189090 -.byte 0x04, 0x00, 0x03, 0x01, 0x1c, 0x15, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8184F8C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81890A8 -gUnknown_81890A8: @ 81890A8 -.byte 0x04, 0x00, 0x03, 0x01, 0x1c, 0x15, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818534C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81890C0 -gUnknown_81890C0: @ 81890C0 -.byte 0x04, 0x00, 0x03, 0x01, 0x1c, 0x15, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185844 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81890D8 -gUnknown_81890D8: @ 81890D8 -.byte 0x04, 0x00, 0x03, 0x01 -.byte 0x1c, 0x15, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185A70 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81890F0 -gUnknown_81890F0: @ 81890F0 -.byte 0x04, 0x00, 0x03, 0x01, 0x1c, 0x15, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8185EAC -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8189108 -gUnknown_8189108: @ 8189108 -.byte 0x04, 0x00, 0x03, 0x01, 0x28, 0x23, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8188748 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8189120 -gUnknown_8189120: @ 8189120 -.byte 0x00, 0x00, 0x01, 0x01, 0x12, 0x2e, 0x00, 0x00 -.4byte gUnknown_817F8A0 - -.global gUnknown_818912C -gUnknown_818912C: @ 818912C -.byte 0x00, 0x00, 0x01, 0x01, 0x12, 0x2e, 0x00, 0x00 -.4byte gUnknown_8180614 - -.global gUnknown_8189138 -gUnknown_8189138: @ 8189138 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x12, 0x2e, 0x00, 0x00 -.4byte gUnknown_81812BC - -.global gUnknown_8189144 -gUnknown_8189144: @ 8189144 -.byte 0x00, 0x00, 0x01, 0x01, 0x1c, 0x16, 0x02, 0x02 -.4byte gUnknown_8182E4C - -.global gUnknown_8189150 -gUnknown_8189150: @ 8189150 -.byte 0x00, 0x00, 0x01, 0x01, 0x1c, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818915C -gUnknown_818915C: @ 818915C -.byte 0x00, 0x00, 0x01, 0x01, 0x1c, 0x28, 0x02, 0x02 -.4byte gUnknown_8186180 - -.global gUnknown_8189168 -gUnknown_8189168: @ 8189168 -.byte 0x00, 0x00, 0x01, 0x01, 0x1c, 0x40, 0x02, 0x02 -.4byte gUnknown_818630C - -.global gUnknown_8189174 -gUnknown_8189174: @ 8189174 -.byte 0x09, 0x03, 0x00, 0x00, 0x18, 0x4b, 0x00, 0x00 -.4byte gUnknown_817DEA8 - -.global gUnknown_8189180 -gUnknown_8189180: @ 8189180 -.byte 0x03, 0x03, 0x00, 0x00, 0x1b, 0x16, 0x00, 0x00 -.4byte gUnknown_817E018 - -.global gUnknown_818918C -gUnknown_818918C: @ 818918C -.byte 0x09, 0x05, 0x00, 0x00, 0x0e, 0x29, 0x00, 0x00 -.4byte gUnknown_817F818 - -.global gUnknown_8189198 -gUnknown_8189198: @ 8189198 -.byte 0x09, 0x05, 0x00, 0x00 -.byte 0x0e, 0x29, 0x00, 0x00 -.4byte gUnknown_818058C - -.global gUnknown_81891A4 -gUnknown_81891A4: @ 81891A4 -.4byte gUnknown_817DE6C - -.global gUnknown_81891A8 -gUnknown_81891A8: @ 81891A8 -.4byte gUnknown_817E0E4 - -.global gUnknown_81891AC -gUnknown_81891AC: @ 81891AC -.4byte gUnknown_817E7E8 - -.global gUnknown_81891B0 -gUnknown_81891B0: @ 81891B0 -.4byte gUnknown_817F894 - -.global gUnknown_81891B4 -gUnknown_81891B4: @ 81891B4 -.4byte gUnknown_8180608 - -.global gUnknown_81891B8 -gUnknown_81891B8: @ 81891B8 -.4byte gUnknown_81812B0 - -.global gUnknown_81891BC -gUnknown_81891BC: @ 81891BC -.4byte gUnknown_81818A0 - -.global gUnknown_81891C0 -gUnknown_81891C0: @ 81891C0 -.4byte gUnknown_8181A80 - -.global gUnknown_81891C4 -gUnknown_81891C4: @ 81891C4 -.4byte gUnknown_8181C0C - -.global gUnknown_81891C8 -gUnknown_81891C8: @ 81891C8 -.4byte gUnknown_8181EEC - -.global gUnknown_81891CC -gUnknown_81891CC: @ 81891CC -.4byte gUnknown_81820A4 - -.global gUnknown_81891D0 -gUnknown_81891D0: @ 81891D0 -.4byte gUnknown_8182618 - -.global gUnknown_81891D4 -gUnknown_81891D4: @ 81891D4 -.4byte gUnknown_8182A24 - -.global gUnknown_81891D8 -gUnknown_81891D8: @ 81891D8 -.4byte gUnknown_8182F0C - -.global gUnknown_81891DC -gUnknown_81891DC: @ 81891DC -.4byte gUnknown_8183F10 - -.global gUnknown_81891E0 -gUnknown_81891E0: @ 81891E0 -.4byte gUnknown_8183F8C - -.global gUnknown_81891E4 -gUnknown_81891E4: @ 81891E4 -.4byte gUnknown_81842B0 - -.global gUnknown_81891E8 -gUnknown_81891E8: @ 81891E8 -.4byte gUnknown_818435C - -.global gUnknown_81891EC -gUnknown_81891EC: @ 81891EC -.4byte gUnknown_8184708 - -.global gUnknown_81891F0 -gUnknown_81891F0: @ 81891F0 -.4byte gUnknown_8184B30 - -.global gUnknown_81891F4 -gUnknown_81891F4: @ 81891F4 -.4byte gUnknown_8184DF8 - -.global gUnknown_81891F8 -gUnknown_81891F8: @ 81891F8 -.4byte gUnknown_81851C8 - -.global gUnknown_81891FC -gUnknown_81891FC: @ 81891FC -.4byte gUnknown_8185688 - -.global gUnknown_8189200 -gUnknown_8189200: @ 8189200 -.4byte gUnknown_8185950 - -.global gUnknown_8189204 -gUnknown_8189204: @ 8189204 -.4byte gUnknown_8185D44 - -.global gUnknown_8189208 -gUnknown_8189208: @ 8189208 -.4byte gUnknown_8186174 - -.global gUnknown_818920C -gUnknown_818920C: @ 818920C -.4byte gUnknown_8186300 - -.global gUnknown_8189210 -gUnknown_8189210: @ 8189210 -.4byte gUnknown_81883A8 - -.global gUnknown_8189214 -gUnknown_8189214: @ 8189214 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189174 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81891A4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8188778 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81887A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189180 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818928C -gUnknown_818928C: @ 818928C -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81887D8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8188F58 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81891A8 - -.global gUnknown_81892B4 -gUnknown_81892B4: @ 81892B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81891AC - -.global gUnknown_81892DC -gUnknown_81892DC: @ 81892DC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8188820 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8188F70 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8189304 -gUnknown_8189304: @ 8189304 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8188838 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8188F88 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818932C -gUnknown_818932C: @ 818932C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8188850 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_818918C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8189354 -gUnknown_8189354: @ 8189354 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8188880 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189120 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81891B0 - -.global gUnknown_818937C -gUnknown_818937C: @ 818937C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81888E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189198 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81893A4 -gUnknown_81893A4: @ 81893A4 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8188910 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_818912C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81891B4 - -.global gUnknown_81893CC -gUnknown_81893CC: @ 81893CC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8188970 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8188988 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189138 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81891B8 - -.global gUnknown_818941C -gUnknown_818941C: @ 818941C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81889D0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8188FA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81891BC - -.global gUnknown_8189444 -gUnknown_8189444: @ 8189444 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81889E8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8188FB8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81891C0 - -.global gUnknown_818946C -gUnknown_818946C: @ 818946C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8188A00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8188FD0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81891C4 - -.global gUnknown_8189494 -gUnknown_8189494: @ 8189494 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8188A30 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8188FE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81891C8 - -.global gUnknown_81894BC -gUnknown_81894BC: @ 81894BC -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8188A48 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189000 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81891CC - -.global gUnknown_81894E4 -gUnknown_81894E4: @ 81894E4 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8188A90 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189018 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81891D0 - -.global gUnknown_818950C -gUnknown_818950C: @ 818950C -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8188AD8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189030 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189144 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81891D4 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8188B20 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81891D8 - -.global gUnknown_818955C -gUnknown_818955C: @ 818955C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81891DC - -.global gUnknown_8189584 -gUnknown_8189584: @ 8189584 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8188B68 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189150 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81891E0 - -.global gUnknown_81895AC -gUnknown_81895AC: @ 81895AC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8188BB0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81891E4 - -.global gUnknown_81895D4 -gUnknown_81895D4: @ 81895D4 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8188BC8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189048 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81891E8 - -.global gUnknown_81895FC -gUnknown_81895FC: @ 81895FC -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8188C10 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189060 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81891EC - -.global gUnknown_8189624 -gUnknown_8189624: @ 8189624 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8188C58 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189078 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81891F0 - -.global gUnknown_818964C -gUnknown_818964C: @ 818964C -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8188CA0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189090 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81891F4 - -.global gUnknown_8189674 -gUnknown_8189674: @ 8189674 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8188CE8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81890A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81891F8 - -.global gUnknown_818969C -gUnknown_818969C: @ 818969C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8188D30 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81890C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81891FC - -.global gUnknown_81896C4 -gUnknown_81896C4: @ 81896C4 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8188D60 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81890D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189200 - -.global gUnknown_81896EC -gUnknown_81896EC: @ 81896EC -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8188DC0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81890F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189204 - -.global gUnknown_8189714 -gUnknown_8189714: @ 8189714 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8188E20 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_818915C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189208 - -.global gUnknown_818973C -gUnknown_818973C: @ 818973C -.byte 0x07, 0x00, 0x00, 0x00 -.4byte gUnknown_8188E38 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189168 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_818920C - -.global gUnknown_8189764 -gUnknown_8189764: @ 8189764 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_8188EE0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189108 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189210 - -.global gUnknown_818978C -gUnknown_818978C: @ 818978C -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8189214 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_818928C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81892B4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81892DC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189304 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_818932C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189354 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_818937C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81893A4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81893CC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_818941C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189444 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_818946C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189494 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81894BC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81894E4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_818950C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_818955C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189584 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81895AC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81895D4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81895FC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189624 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_818964C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189674 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_818969C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81896C4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81896EC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189714 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_818973C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8189764 - -.global gUnknown_8189884 -gUnknown_8189884: @ 8189884 -.byte 0x1c, 0x2b, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x10, 0x30, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x14, 0x30, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01 -.byte 0x1c, 0x30, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1c, 0x3c, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x12, 0x2b, 0x00, 0x02, 0x01, 0x01, 0x01, 0x03, 0x1c, 0x2b, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01 -.byte 0x10, 0x30, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x14, 0x30, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1c, 0x30, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1c, 0x3c, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01 -.byte 0x12, 0x2b, 0x00, 0x02, 0x01, 0x01, 0x01, 0x03, 0x1b, 0x17, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x1e, 0x17, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x1c, 0x09, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00 -.byte 0x1e, 0x31, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x26, 0x2a, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x1b, 0x31, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x22, 0x2a, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00 -.byte 0x1b, 0x33, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x21, 0x2c, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x1e, 0x33, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x27, 0x2c, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00 -.byte 0x1c, 0x30, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x23, 0x2a, 0x02, 0x00, 0x01, 0x01, 0x01, 0x00, 0x1c, 0x18, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00 - -.global gUnknown_8189954 -gUnknown_8189954: @ 8189954 -.byte 0x1f, 0x00, 0x00, 0x00 -.4byte gUnknown_818978C -.4byte gUnknown_8189884 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8189968 -gUnknown_8189968: @ 8189968 -.byte 0xf6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x04, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x02, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x03, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x04, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x05, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x06, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x04, 0x07, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x08, 0x00 -.byte 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x09, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x04, 0x0a, 0x00 -.byte 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x0b, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x0d, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x85, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x0d, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x0f, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x10, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x0d, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x11, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x10, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x0f, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x12, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x11, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x10, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x13, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x12, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x11, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x12, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x14, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x15, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x16, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x17, 0x00 -.byte 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x13, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x14, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x16, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x15, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x16, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x18, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x17, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x19, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x1a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x19, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x18, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x19, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x1a, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x1a, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x1c, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x01, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x1c, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x1d, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x1f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x02, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818A148 -gUnknown_818A148: @ 818A148 -.string "../data/ground/ground_data_t01p03_station.c\0" -.align 2, 0 - -.global gUnknown_818A174 -gUnknown_818A174: @ 818A174 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8189968 - -.global gUnknown_818A180 -gUnknown_818A180: @ 818A180 -.byte 0xf6, 0x00, 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_818A1B0 -gUnknown_818A1B0: @ 818A1B0 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A180 - -.global gUnknown_818A1BC -gUnknown_818A1BC: @ 818A1BC -.byte 0xf6, 0x00, 0xaa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x01, 0x00, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_818A1EC -gUnknown_818A1EC: @ 818A1EC -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A1BC - -.global gUnknown_818A1F8 -gUnknown_818A1F8: @ 818A1F8 -.byte 0xf6, 0x00, 0xb2, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xaf, 0x01, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x01, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x08, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x4b, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_818A358 -gUnknown_818A358: @ 818A358 -.byte 0xf6, 0x00, 0xcb, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0xb3, 0x00, 0x03, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0xe0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0x60, 0x00, 0x00, 0x00 -.byte 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x68, 0x00, 0x00, 0x01 -.byte 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x1e, 0x0a, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x2c, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x2c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x1e, shortestDir, south -.byte 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x2c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818A4F8 -gUnknown_818A4F8: @ 818A4F8 -.byte 0xf6, 0x00, 0xe8, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0xb3, 0x00, 0x03, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0xe0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0x60, 0x00, 0x00, 0x00 -.byte 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x2c, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x1e, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x68, 0x00, 0x00, 0x01 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x2c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x68, 0x00, 0x00, 0x01 -.byte 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x1e, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x2c, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818A6A8 -gUnknown_818A6A8: @ 818A6A8 -.byte 0xf6, 0x00, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818A6E8 -gUnknown_818A6E8: @ 818A6E8 -.byte 0xf6, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818A728 -gUnknown_818A728: @ 818A728 -.byte 0xf6, 0x00, 0x14, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818A768 -gUnknown_818A768: @ 818A768 -.byte 0xf6, 0x00, 0x1b, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818A7A8 -gUnknown_818A7A8: @ 818A7A8 -.byte 0xf6, 0x00, 0x22, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818A7E8 -gUnknown_818A7E8: @ 818A7E8 -.byte 0xf6, 0x00, 0x29, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818A828 -gUnknown_818A828: @ 818A828 -.byte 0xf6, 0x00, 0x30, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818A868 -gUnknown_818A868: @ 818A868 -.byte 0xf6, 0x00, 0x37, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818A8A8 -gUnknown_818A8A8: @ 818A8A8 -.byte 0xf6, 0x00, 0x3e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x0c, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x02, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818A938 -gUnknown_818A938: @ 818A938 -.byte 0x93, 0x01, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A8A8 - -.global gUnknown_818A944 -gUnknown_818A944: @ 818A944 -.byte 0xf6, 0x00, 0x4c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_818A974 -gUnknown_818A974: @ 818A974 -.byte 0xf6, 0x00, 0x52, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A9FC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A9E4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818A9E4 -gUnknown_818A9E4: @ 818A9E4 -.string " We need to do better.\0" -.align 2, 0 - -.global gUnknown_818A9FC -gUnknown_818A9FC: @ 818A9FC -.string " My {COLOR_1 CYAN}Team Hydro{END_COLOR_TEXT_1} is Bronze\n" -.string "Rank.\0" -.align 2, 0 - -.global gUnknown_818AA20 -gUnknown_818AA20: @ 818AA20 -.byte 0xf6, 0x00, 0x5c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818AAD8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818AA90 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818AA90 -gUnknown_818AA90: @ 818AA90 -.string " But we{APOSTROPHE}re actually only\n" -.string "Normal Rank.{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s an embarrassment...\0" -.align 2, 0 - -.global gUnknown_818AAD8 -gUnknown_818AAD8: @ 818AAD8 -.string " Our {COLOR_1 CYAN}Team Rumblerock{END_COLOR_TEXT_1}\n" -.string "is famous for savagery...\0" -.align 2, 0 - -.global gUnknown_818AB0C -gUnknown_818AB0C: @ 818AB0C -.byte 0xf6, 0x00, 0x66, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xbd, 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818AE00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818ADAC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818AD44 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818ACF0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818AC9C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818AC40 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818ABFC -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818ABFC -gUnknown_818ABFC: @ 818ABFC -.string " Not too bad{COMMA} is it?{WAIT_PRESS}\n" -.string "We surprise people with our excellence.\0" -.align 2, 0 - -.global gUnknown_818AC40 -gUnknown_818AC40: @ 818AC40 -.string " Darlings{COMMA} I{APOSTROPHE}ll have you know\n" -.string "that my {COLOR_1 CYAN}Team Constrictor{END_COLOR_TEXT_1} is actually\n" -.string "Silver Rank.\0" -.align 2, 0 - -.global gUnknown_818AC9C -gUnknown_818AC9C: @ 818AC9C -.string " Darlings{COMMA} if you spot rescue\n" -.string "jobs that seem promising{COMMA} you should\n" -.string "try them!\0" -.align 2, 0 - -.global gUnknown_818ACF0 -gUnknown_818ACF0: @ 818ACF0 -.string " Just maybe{COMMA} getting that\n" -.string "Friend Area could be the start of\n" -.string "something enchanting.\0" -.align 2, 0 - -.global gUnknown_818AD44 -gUnknown_818AD44: @ 818AD44 -.string " Well{COMMA} lately there{APOSTROPHE}ve been\n" -.string "rumors about a new Friend Area!{WAIT_PRESS}\n" -.string "The {COLOR_1 UNK_COLOR_5}Sky Blue Plains{END_COLOR_TEXT_1}{COMMA} they say!\0" -.align 2, 0 - -.global gUnknown_818ADAC -gUnknown_818ADAC: @ 818ADAC -.string " Every so often{COMMA} there are\n" -.string "rescue jobs that reward you with a new\n" -.string "Friend Area...\0" -.align 2, 0 - -.global gUnknown_818AE00 -gUnknown_818AE00: @ 818AE00 -.string " Darlings{COMMA} did you know?\0" -.align 2, 0 - -.global gUnknown_818AE1C -gUnknown_818AE1C: @ 818AE1C -.byte 0xf6, 0x00, 0x78, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0xb8, 0x00, 0x0a, 0x00, 0x31, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xba, 0x00, 0x0a, 0x00, 0x31, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x01, 0x0a, 0x00, 0x31, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb7, 0x04, 0x01, 0x00, 0x40, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818AECC -gUnknown_818AECC: @ 818AECC -.byte 0xf6, 0x00, 0x86, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3b, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818B4B8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818B468 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818B3F4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818B39C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818B368 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818B334 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818B2FC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818B2BC -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818B4B8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818B468 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818B248 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818B1DC -closeTextBox -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818B1C0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818B19C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818B170 -.byte 0xa8, 0x00, 0x4a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818B144 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818B10C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818B10C -gUnknown_818B10C: @ 818B10C -.string " I{APOSTROPHE}m bursting with happiness!{WAIT_PRESS}\n" -.string "Oh{COMMA} I am so lucky!\0" -.align 2, 0 - -.global gUnknown_818B144 -gUnknown_818B144: @ 818B144 -.string " Oh{COMMA} my gosh...\n" -.string "I{APOSTROPHE}ve finally met you...\0" -.align 2, 0 - -.global gUnknown_818B170 -gUnknown_818B170: @ 818B170 -.string " You are! You really are!{WAIT_PRESS}\n" -.string "I{APOSTROPHE}m so lucky!\0" -.align 2, 0 - -.global gUnknown_818B19C -gUnknown_818B19C: @ 818B19C -.string " You{APOSTROPHE}re...{WAIT_PRESS}\n" -.string "Maybe...{WAIT_PRESS} Chansey?!\0" -.align 2, 0 - -.global gUnknown_818B1C0 -gUnknown_818B1C0: @ 818B1C0 -.string " Waaaaaaaaaaaaaaaaaaaah!\0" -.align 2, 0 - -.global gUnknown_818B1DC -gUnknown_818B1DC: @ 818B1DC -.string " I wonder what sort of\n" -.string "a Pokémon it is.{WAIT_PRESS} Wouldn{APOSTROPHE}t you like to meet\n" -.string "one{COMMA} even once?{WAIT_PRESS} Wait a second...\0" -.align 2, 0 - -.global gUnknown_818B248 -gUnknown_818B248: @ 818B248 -.string " This is what they say about\n" -.string "Chansey.{WAIT_PRESS} If you are lucky enough to meet\n" -.string "one{COMMA} you will be filled with happiness.\0" -.align 2, 0 - -.global gUnknown_818B2BC -gUnknown_818B2BC: @ 818B2BC -.string " I wish I could meet Chansey\n" -.string "and be filled with happiness...\0" -.align 2, 0 - -.global gUnknown_818B2FC -gUnknown_818B2FC: @ 818B2FC -.string " Oh{COMMA} my gosh!\n" -.string "How wonderful for you!\n" -.string "How I envy you!\0" -.align 2, 0 - -.global gUnknown_818B334 -gUnknown_818B334: @ 818B334 -.string " That is so lucky!\n" -.string "What are the chances of that?\0" -.align 2, 0 - -.global gUnknown_818B368 -gUnknown_818B368: @ 818B368 -.string " ............{WAIT_PRESS}Oh-oh-oh?!{WAIT_PRESS}\n" -.string "You{APOSTROPHE}ve met Chansey?\0" -.align 2, 0 - -.global gUnknown_818B39C -gUnknown_818B39C: @ 818B39C -.string " I wonder what sort of\n" -.string "a Pokémon it is.{WAIT_PRESS}\n" -.string "Wouldn{APOSTROPHE}t you like to meet one{COMMA} even once?\0" -.align 2, 0 - -.global gUnknown_818B3F4 -gUnknown_818B3F4: @ 818B3F4 -.string " This is what they say about\n" -.string "Chansey...{WAIT_PRESS} If you are lucky enough to\n" -.string "meet one{COMMA} you will be filled with happiness.\0" -.align 2, 0 - -.global gUnknown_818B468 -gUnknown_818B468: @ 818B468 -.string " Somewhere in the world\n" -.string "there is an extremely rare Pokémon...{WAIT_PRESS}\n" -.string "named Chansey.\0" -.align 2, 0 - -.global gUnknown_818B4B8 -gUnknown_818B4B8: @ 818B4B8 -.string " Oh{COMMA} hello!\n" -.string "Did you know?\0" -.align 2, 0 - -.global gUnknown_818B4D4 -gUnknown_818B4D4: @ 818B4D4 -.byte 0xf6, 0x00, 0xad, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x01, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0c -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818B624 -gUnknown_818B624: @ 818B624 -.byte 0xf6, 0x00, 0xc6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818B674 -gUnknown_818B674: @ 818B674 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818B624 - -.global gUnknown_818B680 -gUnknown_818B680: @ 818B680 -.byte 0xf6, 0x00, 0xd0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818B710 -gUnknown_818B710: @ 818B710 -.byte 0xf6, 0x00, 0xdc, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BFC8 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BFA4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BF8C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x97, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0xc5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BF80 -closeTextBox -.byte 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BF78 -setFlag 0x08 -.byte 0x91, 0x04, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BF78 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BF78 -setFlag 0x08 -.byte 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BF78 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BF78 -setFlag 0x08 -.byte 0x93, 0x04, 0x0a, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BF70 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BF3C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BF20 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BF00 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BE9C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BE30 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BE0C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BDF0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BDC0 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818BDC0 -gUnknown_818BDC0: @ 818BDC0 -.string " Oh! Of course!{WAIT_PRESS}\n" -.string "Papa{COMMA} you{APOSTROPHE}re so special!\0" -.align 2, 0 - -.global gUnknown_818BDF0 -gUnknown_818BDF0: @ 818BDF0 -.string " What do you take us for?\0" -.align 2, 0 - -.global gUnknown_818BE0C -gUnknown_818BE0C: @ 818BE0C -.string " ..................{WAIT_PRESS}\n" -.string "Of course.\0" -.align 2, 0 - -.global gUnknown_818BE30 -gUnknown_818BE30: @ 818BE30 -.string " That{APOSTROPHE}s why you were gone...{WAIT_PRESS}\n" -.string "Papa{COMMA} did you see all the Pokémon that\n" -.string "aren{APOSTROPHE}t known in these areas?\0" -.align 2, 0 - -.global gUnknown_818BE9C -gUnknown_818BE9C: @ 818BE9C -.string " The world is vast.{WAIT_PRESS}\n" -.string "There are countless Pokémon around the\n" -.string "world that are unknown in these areas.\0" -.align 2, 0 - -.global gUnknown_818BF00 -gUnknown_818BF00: @ 818BF00 -.string " We were traveling the\n" -.string "world.\0" -.align 2, 0 - -.global gUnknown_818BF20 -gUnknown_818BF20: @ 818BF20 -.string " Papa.{WAIT_PRESS}\n" -.string "Where were you?\0" -.align 2, 0 - -.global gUnknown_818BF3C -gUnknown_818BF3C: @ 818BF3C -.string " Our son{COMMA} we{APOSTROPHE}re sorry for\n" -.string "causing you anxiety.\0" -.align 2, 0 - -.global gUnknown_818BF70 -gUnknown_818BF70: @ 818BF70 -.string " Papa!\0" -.align 2, 0 - -.global gUnknown_818BF78 -gUnknown_818BF78: @ 818BF78 -.string " Ha!\0" -.align 2, 0 - -.global gUnknown_818BF80 -gUnknown_818BF80: @ 818BF80 -.string " Get set!\0" -.align 2, 0 - -.global gUnknown_818BF8C -gUnknown_818BF8C: @ 818BF8C -.string " ...Oh!{WAIT_PRESS}\n" -.string "That voice!\0" -.align 2, 0 - -.global gUnknown_818BFA4 -gUnknown_818BFA4: @ 818BFA4 -.string " Our son!{WAIT_PRESS}\n" -.string "Sorry to make you wait!\0" -.align 2, 0 - -.global gUnknown_818BFC8 -gUnknown_818BFC8: @ 818BFC8 -.string " (Papa still hasn{APOSTROPHE}t come\n" -.string "home...)\0" -.align 2, 0 - -.global gUnknown_818BFEC -gUnknown_818BFEC: @ 818BFEC -.byte 0xf6, 0x00, 0x4a, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818C05C -gUnknown_818C05C: @ 818C05C -.byte 0xf6, 0x00, 0x54, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x57, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x54, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xc6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xe6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8b, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xc6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xe6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8b, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CW, south -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_818C4DC -gUnknown_818C4DC: @ 818C4DC -.byte 0xf6, 0x00, 0x9f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -pause 0x0f -.byte 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -setFlag 0x05 -closeThread - -.global gUnknown_818C72C -gUnknown_818C72C: @ 818C72C -.byte 0xf6, 0x00, 0xc7, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x0c, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818C75C -gUnknown_818C75C: @ 818C75C -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818C72C - -.global gUnknown_818C768 -gUnknown_818C768: @ 818C768 -.byte 0xf6, 0x00, 0xcf, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818C7B8 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818C7B8 -gUnknown_818C7B8: @ 818C7B8 -.string " What do you take us for?!{WAIT_PRESS}\n" -.string "...Uh{COMMA} er... Um{COMMA} yes.\0" -.align 2, 0 - -.global gUnknown_818C7F0 -gUnknown_818C7F0: @ 818C7F0 -.byte 0xf6, 0x00, 0xd7, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818C840 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818C840 -gUnknown_818C840: @ 818C840 -.string " My papa is so special!\0" -.align 2, 0 - -.global gUnknown_818C858 -gUnknown_818C858: @ 818C858 -.byte 0xf6, 0x00, 0xdf, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0xb3, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x01, 0x0c, 0x00 -.byte 0x35, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x02, 0x0c, 0x00, 0x35, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x03, 0x0b, 0x00 -.byte 0x33, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x03, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818C978 -gUnknown_818C978: @ 818C978 -.byte 0x93, 0x01, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818C858 - -.global gUnknown_818C984 -gUnknown_818C984: @ 818C984 -.byte 0xf6, 0x00, 0xf6, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x08, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818CA04 -gUnknown_818CA04: @ 818CA04 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818C984 - -.global gUnknown_818CA10 -gUnknown_818CA10: @ 818CA10 -.byte 0xf6, 0x00, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818CA80 -gUnknown_818CA80: @ 818CA80 -.byte 0xf6, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818D1AC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818D18C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x04, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818D17C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, north -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818D170 -closeTextBox -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x04, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818D12C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, north -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818D170 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northeast -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818D100 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818D0C8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, north -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818D170 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818D0AC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818D08C -rotate 0x04, CW, east -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818D074 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818D074 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818D04C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, north -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818D170 -closeTextBox -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818D008 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818CFD0 -.byte 0xe1, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_818CFD0 -gUnknown_818CFD0: @ 818CFD0 -.string "{CENTER_ALIGN}The {COLOR_1 YELLOW_4}Uproar Forest{END_COLOR_TEXT_1} is now\n" -.string "{CENTER_ALIGN}open for exploration!\0" -.align 2, 0 - -.global gUnknown_818D008 -gUnknown_818D008: @ 818D008 -.string "{CENTER_ALIGN}The place where the Mankey gang\n" -.string "{CENTER_ALIGN}is wreaking havoc on others...\0" -.align 2, 0 - -.global gUnknown_818D04C -gUnknown_818D04C: @ 818D04C -.string " Thank you!\n" -.string "We{APOSTROPHE}re counting on you!\0" -.align 2, 0 - -.global gUnknown_818D074 -gUnknown_818D074: @ 818D074 -.string " {ARG_NICKNAME_0}{COMMA} we should go.\0" -.align 2, 0 - -.global gUnknown_818D08C -gUnknown_818D08C: @ 818D08C -.string " Oh{COMMA} no... That is a problem.\0" -.align 2, 0 - -.global gUnknown_818D0AC -gUnknown_818D0AC: @ 818D0AC -.string " Hmm... That is a problem.\0" -.align 2, 0 - -.global gUnknown_818D0C8 -gUnknown_818D0C8: @ 818D0C8 -.string " But they are always angry\n" -.string "and attack anyone they see!\0" -.align 2, 0 - -.global gUnknown_818D100 -gUnknown_818D100: @ 818D100 -.string " We don{APOSTROPHE}t know why they\n" -.string "rampage around...\0" -.align 2, 0 - -.global gUnknown_818D12C -gUnknown_818D12C: @ 818D12C -.string " A bad Mankey gang is going\n" -.string "wild in our forest.\n" -.string "Everyone is upset.\0" -.align 2, 0 - -.global gUnknown_818D170 -gUnknown_818D170: @ 818D170 -.string " Wobbuffet!\0" -.align 2, 0 - -.global gUnknown_818D17C -gUnknown_818D17C: @ 818D17C -.string " Yup{COMMA} yup!\0" -.align 2, 0 - -.global gUnknown_818D18C -gUnknown_818D18C: @ 818D18C -.string " Did you two put up that job?\0" -.align 2, 0 - -.global gUnknown_818D1AC -gUnknown_818D1AC: @ 818D1AC -.string " There was a job posted on\n" -.string "the Bulletin Board which said{COMMA} {QUOTE_START}Punish bad\n" -.string "{COLOR_1 YELLOW_5}Mankey{END_COLOR_TEXT_1}.{QUOTE_END}\0" -.align 2, 0 - -.global gUnknown_818D208 -gUnknown_818D208: @ 818D208 -.byte 0xf6, 0x00, 0x6b, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northwest -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, north -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northwest -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northwest -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, west -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, north -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0xb0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818D328 -gUnknown_818D328: @ 818D328 -.byte 0xf6, 0x00, 0x80, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -.byte 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southwest -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818D3C8 -gUnknown_818D3C8: @ 818D3C8 -.byte 0xf6, 0x00, 0x8d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818D588 -gUnknown_818D588: @ 818D588 -.byte 0xf6, 0x00, 0xac, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818D680 -.byte 0xd9, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818D674 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818D668 -.byte 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x08, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818D668 -gUnknown_818D668: @ 818D668 -.string "*Cancel.\0" -.align 2, 0 - -.global gUnknown_818D674 -gUnknown_818D674: @ 818D674 -.string "Activate.\0" -.align 2, 0 - -.global gUnknown_818D680 -gUnknown_818D680: @ 818D680 -.string "Activate sub-scenario 1-2\n" -.string "{QUOTE_START}Team Flag{QUOTE_END}?\0" -.align 2, 0 - -.global gUnknown_818D6AC -gUnknown_818D6AC: @ 818D6AC -.byte 0xf6, 0x00, 0xbe, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x08, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818D74C -gUnknown_818D74C: @ 818D74C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818D6AC - -.global gUnknown_818D758 -gUnknown_818D758: @ 818D758 -.byte 0xf6, 0x00, 0xcd, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818DEAC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818DE84 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818DE38 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818DE10 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818DDF8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x35, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818DDB8 -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818DD88 -.byte 0x35, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818DD40 -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818DCF0 -.byte 0x35, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818DCAC -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818DC64 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818DBF8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818DBA8 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818DB44 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818DAF8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x32, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818DAB4 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00 -.byte 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818DA78 -.byte 0xe1, 0x00, 0xcd, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_818DA78 -gUnknown_818DA78: @ 818DA78 -.string "{CENTER_ALIGN}The {COLOR_1 YELLOW_4}Howling Forest{END_COLOR_TEXT_1}\n" -.string "{CENTER_ALIGN}is now open for exploration!\0" -.align 2, 0 - -.global gUnknown_818DAB4 -gUnknown_818DAB4: @ 818DAB4 -.string "{CENTER_ALIGN}The forest in which Smeargle\n" -.string "{CENTER_ALIGN}is thought to have gone missing...\0" -.align 2, 0 - -.global gUnknown_818DAF8 -gUnknown_818DAF8: @ 818DAF8 -.string " I don{APOSTROPHE}t really get this...{WAIT_PRESS}\n" -.string "But let{APOSTROPHE}s go rescue this Smeargle anyway!\0" -.align 2, 0 - -.global gUnknown_818DB44 -gUnknown_818DB44: @ 818DB44 -.string " .............{WAIT_PRESS}\n" -.string "He ran away because he didn{APOSTROPHE}t want to\n" -.string "become an adult...{WAIT_PRESS} What{APOSTROPHE}s that about?\0" -.align 2, 0 - -.global gUnknown_818DBA8 -gUnknown_818DBA8: @ 818DBA8 -.string " I don{APOSTROPHE}t really get it{COMMA} but...{WAIT_PRESS}\n" -.string "Well{COMMA} let{APOSTROPHE}s go rescue this Smeargle!\0" -.align 2, 0 - -.global gUnknown_818DBF8 -gUnknown_818DBF8: @ 818DBF8 -.string " .............{WAIT_PRESS}\n" -.string "It says he ran away because he didn{APOSTROPHE}t want\n" -.string "to be an adult...{WAIT_PRESS} What{APOSTROPHE}s up with that?\0" -.align 2, 0 - -.global gUnknown_818DC64 -gUnknown_818DC64: @ 818DC64 -.string "I am lost in the {COLOR_1 YELLOW_4}Howling Forest{END_COLOR_TEXT_1}!{WAIT_PRESS}\n" -.string "Somebody!{WAIT_PRESS} Please save me!{QUOTE_END}\0" -.align 2, 0 - -.global gUnknown_818DCAC -gUnknown_818DCAC: @ 818DCAC -.string "I now find myself in this forest{COMMA} unable to\n" -.string "extricate myself...\0" -.align 2, 0 - -.global gUnknown_818DCF0 -gUnknown_818DCF0: @ 818DCF0 -.string "I fled because I didn{APOSTROPHE}t want to become an\n" -.string "adult.{WAIT_PRESS}\n" -.string "But then I lost my way...\0" -.align 2, 0 - -.global gUnknown_818DD40 -gUnknown_818DD40: @ 818DD40 -.string "Then{COMMA} one day...{WAIT_PRESS}\n" -.string "There was an incident of an unforgivable\n" -.string "nature...\0" -.align 2, 0 - -.global gUnknown_818DD88 -gUnknown_818DD88: @ 818DD88 -.string "I once had aspirations of becoming\n" -.string "an artist.\0" -.align 2, 0 - -.global gUnknown_818DDB8 -gUnknown_818DDB8: @ 818DDB8 -.string "{QUOTE_START}Please allow me to introduce myself.\n" -.string "My name is Smeargle.\0" -.align 2, 0 - -.global gUnknown_818DDF8 -gUnknown_818DDF8: @ 818DDF8 -.string "{CENTER_ALIGN}{ARG_NICKNAME_0} read the letter.\0" -.align 2, 0 - -.global gUnknown_818DE10 -gUnknown_818DE10: @ 818DE10 -.string " What does it say?{WAIT_PRESS}\n" -.string "Can you read it?\0" -.align 2, 0 - -.global gUnknown_818DE38 -gUnknown_818DE38: @ 818DE38 -.string " {QUOTE_START}Smeargle{APOSTROPHE}s desperate plea{COMMA}{QUOTE_END}\n" -.string "huh...?{WAIT_PRESS}\n" -.string "That{APOSTROPHE}s quite the title.\0" -.align 2, 0 - -.global gUnknown_818DE84 -gUnknown_818DE84: @ 818DE84 -.string " What{APOSTROPHE}s it say?{WAIT_PRESS}\n" -.string "Can you read it?\0" -.align 2, 0 - -.global gUnknown_818DEAC -gUnknown_818DEAC: @ 818DEAC -.string " {QUOTE_START}Smeargle{APOSTROPHE}s desperate plea{COMMA}{QUOTE_START}\n" -.string "huh...?{WAIT_PRESS}\n" -.string "That{APOSTROPHE}s some title.\0" -.align 2, 0 - -.global gUnknown_818DEF4 -gUnknown_818DEF4: @ 818DEF4 -.byte 0xf6, 0x00, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_818DFD4 -gUnknown_818DFD4: @ 818DFD4 -.byte 0xf6, 0x00, 0x17, 0x04, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0x54, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 17 -.byte 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818E0A4 -gUnknown_818E0A4: @ 818E0A4 -.byte 0xf6, 0x00, 0x27, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818E210 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818E1D4 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818E1D4 -gUnknown_818E1D4: @ 818E1D4 -.string " If I went{COMMA} I{APOSTROPHE}d only last a\n" -.string "little while... Oh{COMMA} no...\0" -.align 2, 0 - -.global gUnknown_818E210 -gUnknown_818E210: @ 818E210 -.string " Oh{COMMA} no...\n" -.string "Medicham went down...\n" -.string "What should I do...?\0" -.align 2, 0 - -.global gUnknown_818E248 -gUnknown_818E248: @ 818E248 -.byte 0xf6, 0x00, 0x3e, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x70, 0x00, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x04, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x04, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x04, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x04, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x92, 0x04, 0x02, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x92, 0x04, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818E3B8 -gUnknown_818E3B8: @ 818E3B8 -.byte 0xf6, 0x00, 0x58, 0x04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x08, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818E458 -gUnknown_818E458: @ 818E458 -.byte 0x90, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818E3B8 - -.global gUnknown_818E464 -gUnknown_818E464: @ 818E464 -.byte 0xf6, 0x00, 0x67, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818E7C8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818E7B0 -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818E74C -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818E708 -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818E6EC -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818E6C8 -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818E66C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818E628 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0xcd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818E5F4 -.byte 0xe1, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_818E5F4 -gUnknown_818E5F4: @ 818E5F4 -.string "{CENTER_ALIGN}The {COLOR_1 YELLOW_4}Wish Cave{END_COLOR_TEXT_1} is now\n" -.string "{CENTER_ALIGN}open for exploration!\0" -.align 2, 0 - -.global gUnknown_818E628 -gUnknown_818E628: @ 818E628 -.string "{CENTER_ALIGN}The place in which Medicham\n" -.string "{CENTER_ALIGN}is thought to have gone missing...\0" -.align 2, 0 - -.global gUnknown_818E66C -gUnknown_818E66C: @ 818E66C -.string "The reward is a secret〜♪{WAIT_PRESS}\n" -.string "But it{APOSTROPHE}s really very nice--you can be\n" -.string "sure of that〜♪{QUOTE_END}\0" -.align 2, 0 - -.global gUnknown_818E6C8 -gUnknown_818E6C8: @ 818E6C8 -.string "The place is the {COLOR_1 YELLOW_4}Wish Cave{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_818E6EC -gUnknown_818E6EC: @ 818E6EC -.string "Somebody!{WAIT_PRESS}\n" -.string "Please help me!\0" -.align 2, 0 - -.global gUnknown_818E708 -gUnknown_818E708: @ 818E708 -.string "Ekans{COMMA} he was defeated right away.\n" -.string "It makes me want to scream!\0" -.align 2, 0 - -.global gUnknown_818E74C -gUnknown_818E74C: @ 818E74C -.string "We had no trouble entering this dungeon...{WAIT_PRESS}\n" -.string "But it{APOSTROPHE}s horrible here!\n" -.string "It is much too difficult!\0" -.align 2, 0 - -.global gUnknown_818E7B0 -gUnknown_818E7B0: @ 818E7B0 -.string "{QUOTE_START}My name is Medicham.\0" -.align 2, 0 - -.global gUnknown_818E7C8 -gUnknown_818E7C8: @ 818E7C8 -.string "{CENTER_ALIGN}{ARG_NICKNAME_0} read the SOS Mail\n" -.string "{CENTER_ALIGN}apparently sent by Medicham.\0" -.align 2, 0 - -.global gUnknown_818E800 -gUnknown_818E800: @ 818E800 -.byte 0xf6, 0x00, 0x83, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818E840 -gUnknown_818E840: @ 818E840 -.byte 0xf6, 0x00, 0x8a, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818E880 -gUnknown_818E880: @ 818E880 -.byte 0xf6, 0x00, 0x91, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818E8C0 -gUnknown_818E8C0: @ 818E8C0 -.byte 0xf6, 0x00, 0x98, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 17 -.byte 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_818E990 -gUnknown_818E990: @ 818E990 -.byte 0xf6, 0x00, 0xa8, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818E9E0 -gUnknown_818E9E0: @ 818E9E0 -.byte 0xf6, 0x00, 0xb0, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x00, 0x09, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_818EA10 -gUnknown_818EA10: @ 818EA10 -.byte 0xf6, 0x00, 0xb6, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818EA60 -gUnknown_818EA60: @ 818EA60 -.byte 0xf6, 0x00, 0xbe, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x00, 0x09, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_818EA90 -gUnknown_818EA90: @ 818EA90 -.byte 0xf6, 0x00, 0xc4, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x57, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818EAF0 -gUnknown_818EAF0: @ 818EAF0 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818EA90 - -.global gUnknown_818EAFC -gUnknown_818EAFC: @ 818EAFC -.byte 0xf6, 0x00, 0xcf, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -setFlag 0x07 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818F254 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818F24C -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818F248 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x02, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818F228 -closeTextBox -pause 0x2d -.byte 0x2e, 0x15, 0x02, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818F1F4 -closeTextBox -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x02, 0x00, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818F1E4 -closeTextBox -pause 0x0a -.byte 0x93, 0x04, 0x0a, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818F1B0 -closeTextBox -pause 0x0a -.byte 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818F17C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818F158 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818F124 -closeTextBox -pause 0x0a -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818F0DC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818F0A4 -closeTextBox -pause 0x0a -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818F07C -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818F030 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818F00C -closeTextBox -pause 0x0a -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818EFC4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818EFAC -closeTextBox -.byte 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818EFAC -gUnknown_818EFAC: @ 818EFAC -.string " Such a vexing problem!\0" -.align 2, 0 - -.global gUnknown_818EFC4 -gUnknown_818EFC4: @ 818EFC4 -.string " Anyway{COMMA} without Gengar\n" -.string "around{COMMA} {COLOR_1 CYAN}Team Meanies{END_COLOR_TEXT_1} can{APOSTROPHE}t operate.\0" -.align 2, 0 - -.global gUnknown_818F00C -gUnknown_818F00C: @ 818F00C -.string " ...Hmm...{WAIT_PRESS}\n" -.string "Perhaps that is so.\0" -.align 2, 0 - -.global gUnknown_818F030 -gUnknown_818F030: @ 818F030 -.string " The way he sets his mouth.\n" -.string "It{APOSTROPHE}s different just a little at the corners.\0" -.align 2, 0 - -.global gUnknown_818F07C -gUnknown_818F07C: @ 818F07C -.string " No{COMMA} it{APOSTROPHE}s different.{WAIT_PRESS}\n" -.string "I can tell.\0" -.align 2, 0 - -.global gUnknown_818F0A4 -gUnknown_818F0A4: @ 818F0A4 -.string " All I have seen is him\n" -.string "laughing in his usual mean way?\0" -.align 2, 0 - -.global gUnknown_818F0DC -gUnknown_818F0DC: @ 818F0DC -.string " You think so?{WAIT_PRESS}\n" -.string "His expression...\n" -.string "It looks the same as usual{COMMA} no?\0" -.align 2, 0 - -.global gUnknown_818F124 -gUnknown_818F124: @ 818F124 -.string " Yeah... He looks like he has\n" -.string "a lot on his mind...\0" -.align 2, 0 - -.global gUnknown_818F158 -gUnknown_818F158: @ 818F158 -.string " I wonder what{APOSTROPHE}s wrong with\n" -.string "him?\0" -.align 2, 0 - -.global gUnknown_818F17C -gUnknown_818F17C: @ 818F17C -.string " He won{APOSTROPHE}t do anything wicked\n" -.string "with us anymore...\0" -.align 2, 0 - -.global gUnknown_818F1B0 -gUnknown_818F1B0: @ 818F1B0 -.string " Something seems to be\n" -.string "wrong with Gengar lately.\0" -.align 2, 0 - -.global gUnknown_818F1E4 -gUnknown_818F1E4: @ 818F1E4 -.string " ...Oh{COMMA} OK.\0" -.align 2, 0 - -.global gUnknown_818F1F4 -gUnknown_818F1F4: @ 818F1F4 -.string " ..................{WAIT_PRESS}\n" -.string "Oh{COMMA} you{APOSTROPHE}re just joking.\0" -.align 2, 0 - -.global gUnknown_818F228 -gUnknown_818F228: @ 818F228 -.string " Hunh? You did?{WAIT_PRESS}\n" -.string "...Wh-where?\0" -.align 2, 0 - -.global gUnknown_818F248 -gUnknown_818F248: @ 818F248 -.byte 0x4e, 0x6f, 0x2e, 0x00 - -.global gUnknown_818F24C -gUnknown_818F24C: @ 818F24C -.string "Yes.\0" -.align 2, 0 - -.global gUnknown_818F254 -gUnknown_818F254: @ 818F254 -.string " Say{COMMA} sweetie.{WAIT_PRESS}\n" -.string "Have you seen Gengar around?\0" -.align 2, 0 - -.global gUnknown_818F284 -gUnknown_818F284: @ 818F284 -.byte 0xf6, 0x00, 0x26, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818F2E4 -gUnknown_818F2E4: @ 818F2E4 -.byte 0xf6, 0x00, 0x2f, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_818F434 -gUnknown_818F434: @ 818F434 -.byte 0xf6, 0x00, 0x48, 0x05, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5d, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_818F4F4 -gUnknown_818F4F4: @ 818F4F4 -.byte 0xf6, 0x00, 0x57, 0x05, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818EFC4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818EFAC -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818F564 -gUnknown_818F564: @ 818F564 -.byte 0xf6, 0x00, 0x61, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818F1B0 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818F5C4 -gUnknown_818F5C4: @ 818F5C4 -.byte 0xf6, 0x00, 0x6a, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x3c, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x04, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x05, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818F834 -gUnknown_818F834: @ 818F834 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818F5C4 - -.global gUnknown_818F840 -gUnknown_818F840: @ 818F840 -.byte 0xf6, 0x00, 0x97, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818F8E0 -gUnknown_818F8E0: @ 818F8E0 -.byte 0xf6, 0x00, 0xa4, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818F920 -gUnknown_818F920: @ 818F920 -.byte 0xf6, 0x00, 0xab, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_818F9B0 -gUnknown_818F9B0: @ 818F9B0 -.byte 0xf6, 0x00, 0xb7, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818FA00 -gUnknown_818FA00: @ 818FA00 -.byte 0xf6, 0x00, 0xbf, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_818FA50 -gUnknown_818FA50: @ 818FA50 -.byte 0xf6, 0x00, 0xc7, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818FAA0 -gUnknown_818FAA0: @ 818FAA0 -.byte 0xf6, 0x00, 0xcf, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_818FAF0 -gUnknown_818FAF0: @ 818FAF0 -.byte 0xf6, 0x00, 0xd7, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0xa6, 0x00, 0x0d, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818FBE0 -gUnknown_818FBE0: @ 818FBE0 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818FAF0 - -.global gUnknown_818FBEC -gUnknown_818FBEC: @ 818FBEC -.byte 0xf6, 0x00, 0xeb, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -setFlag 0x08 -.byte 0x7a, 0x00, 0x8c, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x96 -setFlag 0x05 -pause 0x3c -.byte 0x4d, 0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x7a, 0x00, 0x3c, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_818FCDC -gUnknown_818FCDC: @ 818FCDC -.byte 0xf6, 0x00, 0xfd, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x50, 0xcc, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819098C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190958 -closeTextBox -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x6b, 0x00, 0x00, 0x01, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81908FC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81908A0 -closeTextBox -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190870 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190844 -closeTextBox -pause 0x0a -.byte 0x8b, 0x14, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819081C -closeTextBox -.byte 0x3c, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -rotate 0x04, shortestDir, northeast -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81907F4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190794 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190720 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81906B0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190668 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819062C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81905F8 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81907F4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81905AC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190720 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190538 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81904E8 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81904B4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819047C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81907F4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819043C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190720 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81903D4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190380 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819034C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190318 -closeTextBox -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81902EC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190278 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190248 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81901D0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190248 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819015C -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819015C -gUnknown_819015C: @ 819015C -.string " Choose the job on the {COLOR_1 CYAN}Job\n" -.string "List{END_COLOR_TEXT_1}...{WAIT_PRESS} Then{COMMA} select {COLOR_1 YELLOW}Take Job{END_COLOR_TEXT_1}.{WAIT_PRESS}\n" -.string "Try to always do that before you leave!\0" -.align 2, 0 - -.global gUnknown_81901D0 -gUnknown_81901D0: @ 81901D0 -.string " Choose the job on the {COLOR_1 CYAN}Job\n" -.string "List{END_COLOR_TEXT_1}...{WAIT_PRESS} Then{COMMA} select {COLOR_1 YELLOW}Take Job{END_COLOR_TEXT_1}.{WAIT_PRESS}\n" -.string "Don{APOSTROPHE}t forget to do that before you leave!\0" -.align 2, 0 - -.global gUnknown_8190248 -gUnknown_8190248: @ 8190248 -.string " And if you want to go on\n" -.string "a rescue mission...\0" -.align 2, 0 - -.global gUnknown_8190278 -gUnknown_8190278: @ 8190278 -.string " Choose the job on the {COLOR_1 CYAN}Job\n" -.string "List{END_COLOR_TEXT_1}...{WAIT_PRESS} Then{COMMA} select {COLOR_1 YELLOW}Take Job{END_COLOR_TEXT_1}.{WAIT_PRESS}\n" -.string "Get in the habit of doing that regularly!\0" -.align 2, 0 - -.global gUnknown_81902EC -gUnknown_81902EC: @ 81902EC -.string " And if you want to take on\n" -.string "a rescue job...\0" -.align 2, 0 - -.global gUnknown_8190318 -gUnknown_8190318: @ 8190318 -.string " I think that will bring\n" -.string "job offers to our Mailbox.\0" -.align 2, 0 - -.global gUnknown_819034C -gUnknown_819034C: @ 819034C -.string " Our team name will get\n" -.string "better known by doing that.\0" -.align 2, 0 - -.global gUnknown_8190380 -gUnknown_8190380: @ 8190380 -.string " Since we{APOSTROPHE}re just starting up{COMMA}\n" -.string "we should handle the jobs that are posted\n" -.string "here.\0" -.align 2, 0 - -.global gUnknown_81903D4 -gUnknown_81903D4: @ 81903D4 -.string " If you don{APOSTROPHE}t select {COLOR_1 YELLOW}Take Job{END_COLOR_TEXT_1}{COMMA}\n" -.string "you can{APOSTROPHE}t do that rescue job even if you go\n" -.string "to the dungeon.\0" -.align 2, 0 - -.global gUnknown_819043C -gUnknown_819043C: @ 819043C -.string " To do a rescue job{COMMA} you first\n" -.string "select it with {COLOR_1 YELLOW}Accept{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_819047C -gUnknown_819047C: @ 819047C -.string " That should pull in job\n" -.string "offers to our Mailbox soon.\0" -.align 2, 0 - -.global gUnknown_81904B4 -gUnknown_81904B4: @ 81904B4 -.string " Doing that should get our\n" -.string "team some recognition.\0" -.align 2, 0 - -.global gUnknown_81904E8 -gUnknown_81904E8: @ 81904E8 -.string " While we{APOSTROPHE}re starting out{COMMA}\n" -.string "we should handle the jobs that are posted\n" -.string "here.\0" -.align 2, 0 - -.global gUnknown_8190538 -gUnknown_8190538: @ 8190538 -.string " If you don{APOSTROPHE}t select {COLOR_1 YELLOW}Take Job{END_COLOR_TEXT_1}{COMMA}\n" -.string "you can{APOSTROPHE}t do that rescue job even if you go\n" -.string "to the dungeon. Be careful!\0" -.align 2, 0 - -.global gUnknown_81905AC -gUnknown_81905AC: @ 81905AC -.string " If you want to do a rescue\n" -.string "job{COMMA} you first select it with {COLOR_1 YELLOW}Accept{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_81905F8 -gUnknown_81905F8: @ 81905F8 -.string " I bet we{APOSTROPHE}ll get job offers\n" -.string "in our Mailbox soon.\0" -.align 2, 0 - -.global gUnknown_819062C -gUnknown_819062C: @ 819062C -.string " Our team{APOSTROPHE}ll become known\n" -.string "after we do some rescue jobs.\0" -.align 2, 0 - -.global gUnknown_8190668 -gUnknown_8190668: @ 8190668 -.string " For the time being{COMMA} we\n" -.string "should just stick with the jobs posted\n" -.string "here.\0" -.align 2, 0 - -.global gUnknown_81906B0 -gUnknown_81906B0: @ 81906B0 -.string " If you don{APOSTROPHE}t select {COLOR_1 YELLOW}Take Job{END_COLOR_TEXT_1}{COMMA}\n" -.string "you won{APOSTROPHE}t be able to do the rescue job even\n" -.string "if you go to the dungeon.\0" -.align 2, 0 - -.global gUnknown_8190720 -gUnknown_8190720: @ 8190720 -.string " Then{COMMA} on the {COLOR_1 CYAN}Job List{END_COLOR_TEXT_1}{COMMA}\n" -.string "choose the job{COMMA} then confirm it with\n" -.string "{COLOR_1 YELLOW}Take Job{END_COLOR_TEXT_1} to go on that rescue mission.\0" -.align 2, 0 - -.global gUnknown_8190794 -gUnknown_8190794: @ 8190794 -.string " If you want to go on a\n" -.string "rescue{COMMA} you first choose the job by\n" -.string "selecting it with {COLOR_1 YELLOW}Accept{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_81907F4 -gUnknown_81907F4: @ 81907F4 -.string " See?\n" -.string "There were jobs listed{COMMA} right?\0" -.align 2, 0 - -.global gUnknown_819081C -gUnknown_819081C: @ 819081C -.string " It lists rescue jobs.\n" -.string "Check it out?\0" -.align 2, 0 - -.global gUnknown_8190844 -gUnknown_8190844: @ 8190844 -.string " See?\n" -.string "Have a look at this Bulletin Board.\0" -.align 2, 0 - -.global gUnknown_8190870 -gUnknown_8190870: @ 8190870 -.string " Take a look at this!\n" -.string "See this Bulletin Board?\0" -.align 2, 0 - -.global gUnknown_81908A0 -gUnknown_81908A0: @ 81908A0 -.string " This is where information\n" -.string "is gathered from Pokémon needing rescue\n" -.string "in various locations.\0" -.align 2, 0 - -.global gUnknown_81908FC -gUnknown_81908FC: @ 81908FC -.string " This is where information\n" -.string "is gathered from Pokémon needing rescue\n" -.string "in all sorts of places.\0" -.align 2, 0 - -.global gUnknown_8190958 -gUnknown_8190958: @ 8190958 -.string " That building is the\n" -.string "{COLOR_1 CYAN}Pelipper Post Office{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_819098C -gUnknown_819098C: @ 819098C -.string " Over there... The\n" -.string "{COLOR_1 CYAN}Pelipper Post Office{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_81909BC -gUnknown_81909BC: @ 81909BC -.byte 0xf6, 0x00, 0x49, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x50, 0xcc, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x8e, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x8b, 0x14, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8190AEC -gUnknown_8190AEC: @ 8190AEC -.byte 0xf6, 0x00, 0x5f, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0x60, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x68, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -rotate 0x1e, shortestDir, west -pause 0x0f -.byte 0x7a, 0x00, 0x78, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8190BEC -gUnknown_8190BEC: @ 8190BEC -.byte 0xf6, 0x00, 0x72, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0x60, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xa0 -.byte 0x7a, 0x00, 0x78, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -rotate 0x1e, shortestDir, south -pause 0x0f -.byte 0x68, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8190CEC -gUnknown_8190CEC: @ 8190CEC -.byte 0xf6, 0x00, 0x85, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8190D0C -gUnknown_8190D0C: @ 8190D0C -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190CEC - -.global gUnknown_8190D18 -gUnknown_8190D18: @ 8190D18 -.byte 0xf6, 0x00, 0x8c, 0x06 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8190D48 -gUnknown_8190D48: @ 8190D48 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190D18 - -.global gUnknown_8190D54 -gUnknown_8190D54: @ 8190D54 -.byte 0xf6, 0x00, 0x94, 0x06, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8190D74 -gUnknown_8190D74: @ 8190D74 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190D54 - -.global gUnknown_8190D80 -gUnknown_8190D80: @ 8190D80 -.byte 0xf6, 0x00, 0x9b, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8190DB0 -gUnknown_8190DB0: @ 8190DB0 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190D80 - -.global gUnknown_8190DBC -gUnknown_8190DBC: @ 8190DBC -.byte 0xf6, 0x00, 0xa3, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190E6C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190E2C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8190E2C -gUnknown_8190E2C: @ 8190E2C -.string " Some Pokémon run rescue\n" -.string "teams because they want the rewards.\0" -.align 2, 0 - -.global gUnknown_8190E6C -gUnknown_8190E6C: @ 8190E6C -.string " Did you know that you get\n" -.string "a reward if you complete a rescue job?\0" -.align 2, 0 - -.global gUnknown_8190EB0 -gUnknown_8190EB0: @ 8190EB0 -.byte 0xf6, 0x00, 0xad, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 1 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8190EF0 -gUnknown_8190EF0: @ 8190EF0 -.byte 0xf6, 0x00, 0xb4, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8190F20 -gUnknown_8190F20: @ 8190F20 -.byte 0xf6, 0x00, 0xba, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8190F60 -gUnknown_8190F60: @ 8190F60 -.byte 0xf6, 0x00, 0xc1, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8190F90 -gUnknown_8190F90: @ 8190F90 -.byte 0xf6, 0x00, 0xc7, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8190FC0 -gUnknown_8190FC0: @ 8190FC0 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190F90 - -.global gUnknown_8190FCC -gUnknown_8190FCC: @ 8190FCC -.byte 0xf6, 0x00, 0xcf, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x02, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819120C -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81911FC -closeTextBox -pause 0x0a -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81911CC -closeTextBox -pause 0x0a -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BE0C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BDF0 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819119C -closeTextBox -setFlag 0x07 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819119C -gUnknown_819119C: @ 819119C -.string " Oh! You have!{WAIT_PRESS}\n" -.string "Papa{COMMA} you{APOSTROPHE}re so special!\0" -.align 2, 0 - -.global gUnknown_81911CC -gUnknown_81911CC: @ 81911CC -.string " Papa?{WAIT_PRESS}\n" -.string "Papa{COMMA} have you ever gone out to sea?\0" -.align 2, 0 - -.global gUnknown_81911FC -gUnknown_81911FC: @ 81911FC -.string " Yes{COMMA} Papa.\0" -.align 2, 0 - -.global gUnknown_819120C -gUnknown_819120C: @ 819120C -.string " What do you think{COMMA} our son?\n" -.string "Isn{APOSTROPHE}t the sea vast?\0" -.align 2, 0 - -.global gUnknown_8191244 -gUnknown_8191244: @ 8191244 -.byte 0xf6, 0x00, 0xef, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81912F4 -gUnknown_81912F4: @ 81912F4 -.byte 0xf6, 0x00, 0xfd, 0x06, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8191324 -gUnknown_8191324: @ 8191324 -.byte 0xf6, 0x00, 0x03, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, north -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81913C4 -gUnknown_81913C4: @ 81913C4 -.byte 0xf6, 0x00, 0x10, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81913F4 -gUnknown_81913F4: @ 81913F4 -.byte 0xf6, 0x00, 0x16, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8191424 -gUnknown_8191424: @ 8191424 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81913F4 - -.global gUnknown_8191430 -gUnknown_8191430: @ 8191430 -.byte 0xf6, 0x00, 0x1e, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 1 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8191470 -gUnknown_8191470: @ 8191470 -.byte 0xf6, 0x00, 0x25, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81914A0 -gUnknown_81914A0: @ 81914A0 -.byte 0xf6, 0x00, 0x2b, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81914E0 -gUnknown_81914E0: @ 81914E0 -.byte 0xf6, 0x00, 0x32, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8191510 -gUnknown_8191510: @ 8191510 -.byte 0xf6, 0x00, 0x38, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8191540 -gUnknown_8191540: @ 8191540 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8191510 - -.global gUnknown_819154C -gUnknown_819154C: @ 819154C -.byte 0xf6, 0x00, 0x40, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x02, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819120C -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81911FC -closeTextBox -pause 0x0a -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81911CC -closeTextBox -pause 0x0a -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BE0C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BDF0 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819119C -closeTextBox -setFlag 0x07 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819171C -gUnknown_819171C: @ 819171C -.byte 0xf6, 0x00, 0x60, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -setFlag 0x05 -closeThread - -.global gUnknown_81917CC -gUnknown_81917CC: @ 81917CC -.byte 0xf6, 0x00, 0x6e, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81917FC -gUnknown_81917FC: @ 81917FC -.byte 0xf6, 0x00, 0x74, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, north -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -closeThread - -.global gUnknown_819189C -gUnknown_819189C: @ 819189C -.byte 0xf6, 0x00, 0x81, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81918CC -gUnknown_81918CC: @ 81918CC -.byte 0xf6, 0x00, 0x87, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0xb8, 0x00, 0x03, 0x00, 0x09, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819195C -gUnknown_819195C: @ 819195C -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81918CC - -.global gUnknown_8191968 -gUnknown_8191968: @ 8191968 -.byte 0xf6, 0x00, 0x95, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00 -.byte 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8191C44 -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8191C14 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x01, 0xff, 0xff, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8191BF4 -.byte 0xd9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818F24C -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818F248 -.byte 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8191BD0 -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8191BA4 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8191B78 -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8191B44 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8191B08 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8191B08 -gUnknown_8191B08: @ 8191B08 -.string " My papa is special!\n" -.string "I{APOSTROPHE}m going to try hard to swim too!\0" -.align 2, 0 - -.global gUnknown_8191B44 -gUnknown_8191B44: @ 8191B44 -.string " But that{APOSTROPHE}s natural.\n" -.string "Swimming isn{APOSTROPHE}t very easy.\0" -.align 2, 0 - -.global gUnknown_8191B78 -gUnknown_8191B78: @ 8191B78 -.string " Oh.\n" -.string "So you can{APOSTROPHE}t swim either{COMMA} {ARG_NICKNAME_0}...\0" -.align 2, 0 - -.global gUnknown_8191BA4 -gUnknown_8191BA4: @ 8191BA4 -.string " OK!\n" -.string "I{APOSTROPHE}m going to try hard to swim too!\0" -.align 2, 0 - -.global gUnknown_8191BD0 -gUnknown_8191BD0: @ 8191BD0 -.string " Oh.\n" -.string "So you can swim too{COMMA} {ARG_NICKNAME_0}...\0" -.align 2, 0 - -.global gUnknown_8191BF4 -gUnknown_8191BF4: @ 8191BF4 -.string " {ARG_NICKNAME_0}.{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_0}{COMMA} can you swim?\0" -.align 2, 0 - -.global gUnknown_8191C14 -gUnknown_8191C14: @ 8191C14 -.string " .........(Does that mean Papa\n" -.string "can swim...?)\0" -.align 2, 0 - -.global gUnknown_8191C44 -gUnknown_8191C44: @ 8191C44 -.string " ............Papa said they{APOSTROPHE}ve\n" -.string "gone to sea before...\0" -.align 2, 0 - -.global gUnknown_8191C7C -gUnknown_8191C7C: @ 8191C7C -.byte 0xf6, 0x00, 0xb2, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x2d, 0x09, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8e, 0x0a, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -setFlag 0x05 -closeThread - -.global gUnknown_8191D1C -gUnknown_8191D1C: @ 8191D1C -.byte 0xf6, 0x00, 0xbf, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819215C -.byte 0xd5, 0x01, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8192114 -.byte 0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818F24C -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818F248 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81920E4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8192080 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819201C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8191FAC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8191F48 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8191F10 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8191EC8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8191E5C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8191E5C -gUnknown_8191E5C: @ 8191E5C -.string " ...Ehe{COMMA} this is what Alakazam\n" -.string "told me.{WAIT_PRESS} I just repeated what he said{COMMA}\n" -.string "so don{APOSTROPHE}t tell anyone else.\0" -.align 2, 0 - -.global gUnknown_8191EC8 -gUnknown_8191EC8: @ 8191EC8 -.string " See?{WAIT_PRESS} If you do that{COMMA} you\n" -.string "can take care of rescue jobs efficiently.\0" -.align 2, 0 - -.global gUnknown_8191F10 -gUnknown_8191F10: @ 8191F10 -.string " That way{COMMA} you can do two\n" -.string "rescue jobs in one outing.\0" -.align 2, 0 - -.global gUnknown_8191F48 -gUnknown_8191F48: @ 8191F48 -.string " You can complete the first\n" -.string "rescue on 5F. Then{COMMA} instead of exiting{COMMA}\n" -.string "go on to the job on 10F.\0" -.align 2, 0 - -.global gUnknown_8191FAC -gUnknown_8191FAC: @ 8191FAC -.string " You can accept these two\n" -.string "jobs{COMMA} then select {COLOR_1 YELLOW}Take Job{END_COLOR_TEXT_1} on both of them\n" -.string "before heading into that dungeon.\0" -.align 2, 0 - -.global gUnknown_819201C -gUnknown_819201C: @ 819201C -.string " For example{COMMA} say there are\n" -.string "two rescue jobs in the same dungeon{COMMA} but\n" -.string "one on 5F and one on 10F.\0" -.align 2, 0 - -.global gUnknown_8192080 -gUnknown_8192080: @ 8192080 -.string " If you choose jobs in the\n" -.string "same dungeon on the {COLOR_1 CYAN}Job List{END_COLOR_TEXT_1}{COMMA} you can\n" -.string "do them at the same time.\0" -.align 2, 0 - -.global gUnknown_81920E4 -gUnknown_81920E4: @ 81920E4 -.string " Oh{COMMA} you already knew?{WAIT_PRESS}\n" -.string "That{APOSTROPHE}s OK{COMMA} then.\0" -.align 2, 0 - -.global gUnknown_8192114 -gUnknown_8192114: @ 8192114 -.string " You can do several rescue\n" -.string "jobs at the same time.\n" -.string "Did you know that?\0" -.align 2, 0 - -.global gUnknown_819215C -gUnknown_819215C: @ 819215C -.string " You know what?\n" -.string "The jobs on the Bulletin Board...\0" -.align 2, 0 - -.global gUnknown_8192190 -gUnknown_8192190: @ 8192190 -.byte 0xf6, 0x00, 0xd6, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81921D0 -gUnknown_81921D0: @ 81921D0 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8192190 - -.global gUnknown_81921DC -gUnknown_81921DC: @ 81921DC -.byte 0xf6, 0x00, 0xdf, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 1 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819221C -gUnknown_819221C: @ 819221C -.byte 0xf6, 0x00, 0xe6, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_819224C -gUnknown_819224C: @ 819224C -.byte 0xf6, 0x00, 0xec, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 1 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819228C -gUnknown_819228C: @ 819228C -.byte 0xf6, 0x00, 0xf3, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81922BC -gUnknown_81922BC: @ 81922BC -.byte 0xf6, 0x00, 0xf9, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81922EC -gUnknown_81922EC: @ 81922EC -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81922BC - -.global gUnknown_81922F8 -gUnknown_81922F8: @ 81922F8 -.byte 0xf6, 0x00, 0x01, 0x08 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00 -.byte 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8192510 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81911FC -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81924F0 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BE0C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818BDF0 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81924B8 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81924B8 -gUnknown_81924B8: @ 81924B8 -.string " Oh! So you can swim!{WAIT_PRESS}\n" -.string "Papa{COMMA} you{APOSTROPHE}re so special!\0" -.align 2, 0 - -.global gUnknown_81924F0 -gUnknown_81924F0: @ 81924F0 -.string " Papa?{WAIT_PRESS}\n" -.string "Papa{COMMA} can you swim?\0" -.align 2, 0 - -.global gUnknown_8192510 -gUnknown_8192510: @ 8192510 -.string " What do you think{COMMA} Son?\n" -.string "Isn{APOSTROPHE}t the sea wonderful?\0" -.align 2, 0 - -.global gUnknown_8192548 -gUnknown_8192548: @ 8192548 -.byte 0xf6, 0x00, 0x20, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81925F8 -gUnknown_81925F8: @ 81925F8 -.byte 0xf6, 0x00, 0x2e, 0x08 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8192628 -gUnknown_8192628: @ 8192628 -.byte 0xf6, 0x00, 0x34, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, north -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81926C8 -gUnknown_81926C8: @ 81926C8 -.byte 0xf6, 0x00, 0x41, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x01, 0xff, 0xff -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81926F8 -gUnknown_81926F8: @ 81926F8 -.byte 0xf6, 0x00, 0x47, 0x08 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8192738 -gUnknown_8192738: @ 8192738 -.byte 0x93, 0x01, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81926F8 - -.global gUnknown_8192744 -gUnknown_8192744: @ 8192744 -.byte 0xf6, 0x00, 0x50, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8192784 -gUnknown_8192784: @ 8192784 -.byte 0xf6, 0x00, 0x57, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81927B4 -gUnknown_81927B4: @ 81927B4 -.byte 0xf6, 0x00, 0x5d, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8192854 -gUnknown_8192854: @ 8192854 -.byte 0xf6, 0x00, 0x6a, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8192884 -gUnknown_8192884: @ 8192884 -.byte 0xf6, 0x00, 0x70, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81928E4 -gUnknown_81928E4: @ 81928E4 -.byte 0xf6, 0x00, 0x79, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x12, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8192934 -gUnknown_8192934: @ 8192934 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81928E4 - -.global gUnknown_8192940 -gUnknown_8192940: @ 8192940 -.byte 0xf6, 0x00, 0x83, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81929A0 -gUnknown_81929A0: @ 81929A0 -.byte 0xf6, 0x00, 0x8c, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8192F64 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81911FC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8192F34 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8192EE8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8192EE0 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x93, 0x04, 0x0a, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8192EE0 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x93, 0x04, 0x0a, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8192EE0 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x93, 0x04, 0x0a, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x2e, 0x03, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8192EE0 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8192EA8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8192E74 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8192E50 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8192E50 -gUnknown_8192E50: @ 8192E50 -.string " OK!{WAIT_PRESS}\n" -.string "Papa{COMMA} you{APOSTROPHE}re so special!\0" -.align 2, 0 - -.global gUnknown_8192E74 -gUnknown_8192E74: @ 8192E74 -.string " What do you...{WAIT_PRESS}\n" -.string "Take us for?!{WAIT_PRESS}\n" -.string "Gasp{COMMA} gasp...\0" -.align 2, 0 - -.global gUnknown_8192EA8 -gUnknown_8192EA8: @ 8192EA8 -.string " ...And that{APOSTROPHE}s sort of how\n" -.string "we swim!{WAIT_PRESS}\n" -.string "Gasp{COMMA} gasp...\0" -.align 2, 0 - -.global gUnknown_8192EE0 -gUnknown_8192EE0: @ 8192EE0 -.string " Hah!\0" -.align 2, 0 - -.global gUnknown_8192EE8 -gUnknown_8192EE8: @ 8192EE8 -.string " ..................{WAIT_PRESS}\n" -.string "Well{COMMA} Son...{WAIT_PRESS}\n" -.string "The three of us cooperate{COMMA} and...\0" -.align 2, 0 - -.global gUnknown_8192F34 -gUnknown_8192F34: @ 8192F34 -.string " Papa?{WAIT_PRESS}\n" -.string "Papa{COMMA} how do you swim in the sea?\0" -.align 2, 0 - -.global gUnknown_8192F64 -gUnknown_8192F64: @ 8192F64 -.string " Well{COMMA} Son{COMMA} doesn{APOSTROPHE}t it feel\n" -.string "good to look out over the sea?\0" -.align 2, 0 - -.global gUnknown_8192FA8 -gUnknown_8192FA8: @ 8192FA8 -.byte 0xf6, 0x00, 0xda, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8193098 -gUnknown_8193098: @ 8193098 -.byte 0xf6, 0x00, 0xec, 0x08 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x57, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xe6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x01, 0xb0, 0xff -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xc6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x16, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x01, 0x50, 0x00, 0xd0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xe6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x01, 0xd0, 0xff -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xc6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x16, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x01, 0x30, 0x00, 0xd0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x91, 0x08, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81934F8 -gUnknown_81934F8: @ 81934F8 -.byte 0xf6, 0x00, 0x35, 0x09 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8193528 -gUnknown_8193528: @ 8193528 -.byte 0xf6, 0x00, 0x3b, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8193668 -gUnknown_8193668: @ 8193668 -.byte 0xf6, 0x00, 0x52, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x01, 0xff, 0xff -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8193698 -gUnknown_8193698: @ 8193698 -.byte 0xf6, 0x00, 0x58, 0x09 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81936D8 -gUnknown_81936D8: @ 81936D8 -.byte 0x93, 0x01, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8193698 - -.global gUnknown_81936E4 -gUnknown_81936E4: @ 81936E4 -.byte 0xf6, 0x00, 0x61, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8193724 -gUnknown_8193724: @ 8193724 -.byte 0xf6, 0x00, 0x68, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8193754 -gUnknown_8193754: @ 8193754 -.byte 0xf6, 0x00, 0x6e, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8193794 -gUnknown_8193794: @ 8193794 -.byte 0xf6, 0x00, 0x75, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81937C4 -gUnknown_81937C4: @ 81937C4 -.byte 0xf6, 0x00, 0x7b, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8193804 -gUnknown_8193804: @ 8193804 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81937C4 - -.global gUnknown_8193810 -gUnknown_8193810: @ 8193810 -.byte 0xf6, 0x00, 0x84, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8193870 -gUnknown_8193870: @ 8193870 -.byte 0xf6, 0x00, 0x8d, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8193E9C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8193E74 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8193E24 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8193DEC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8193DAC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8193D8C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8193D44 -closeTextBox -.byte 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8192EE0 -setFlag 0x06 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x08, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8192EE0 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x93, 0x04, 0x0a, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8192EE0 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x93, 0x04, 0x0a, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x93, 0x04, 0x0a, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x08, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8192EE0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8193D30 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8192E50 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8193D30 -gUnknown_8193D30: @ 8193D30 -.string " Gasp{COMMA} gasp...\0" -.align 2, 0 - -.global gUnknown_8193D44 -gUnknown_8193D44: @ 8193D44 -.string " If we were in charge...{WAIT_PRESS}\n" -.string "This is what we{APOSTROPHE}d do to any earthquake!\0" -.align 2, 0 - -.global gUnknown_8193D8C -gUnknown_8193D8C: @ 8193D8C -.string " What do you...{WAIT_PRESS}\n" -.string "Take us for?!\0" -.align 2, 0 - -.global gUnknown_8193DAC -gUnknown_8193DAC: @ 8193DAC -.string " ........................{WAIT_PRESS}\n" -.string "Of course they don{APOSTROPHE}t scare us.\0" -.align 2, 0 - -.global gUnknown_8193DEC -gUnknown_8193DEC: @ 8193DEC -.string " Papa?{WAIT_PRESS}\n" -.string "Papa{COMMA} aren{APOSTROPHE}t you afraid of earthquakes?\0" -.align 2, 0 - -.global gUnknown_8193E24 -gUnknown_8193E24: @ 8193E24 -.string " Especially when I{APOSTROPHE}m\n" -.string "burrowing. It makes me twitchy because\n" -.string "I get so scared.\0" -.align 2, 0 - -.global gUnknown_8193E74 -gUnknown_8193E74: @ 8193E74 -.string " Yes{COMMA} Papa.{WAIT_PRESS}\n" -.string "They are very scary.\0" -.align 2, 0 - -.global gUnknown_8193E9C -gUnknown_8193E9C: @ 8193E9C -.string " Well{COMMA} our son!\n" -.string "Tell me{COMMA} do the earthquakes frighten you?\0" -.align 2, 0 - -.global gUnknown_8193EDC -gUnknown_8193EDC: @ 8193EDC -.byte 0xf6, 0x00, 0xdc, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8193FCC -gUnknown_8193FCC: @ 8193FCC -.byte 0xf6, 0x00, 0xee, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x57, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x54, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x01, 0xb0, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8b, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xe6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x59, 0x01, 0x50, 0x00, 0xd0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xc6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x01, 0xd0, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xe6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x59, 0x01, 0x30, 0x00, 0xd0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xc6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -rotate 0x08, shortestDir, south -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819442C -gUnknown_819442C: @ 819442C -.byte 0xf6, 0x00, 0x37, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_819445C -gUnknown_819445C: @ 819445C -.byte 0xf6, 0x00, 0x3d, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819458C -gUnknown_819458C: @ 819458C -.byte 0xf6, 0x00, 0x53, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81945BC -gUnknown_81945BC: @ 81945BC -.byte 0xf6, 0x00, 0x59, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb6, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819464C -gUnknown_819464C: @ 819464C -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81945BC - -.global gUnknown_8194658 -gUnknown_8194658: @ 8194658 -.byte 0xf6, 0x00, 0x67, 0x0a -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8194698 -gUnknown_8194698: @ 8194698 -.byte 0xf6, 0x00, 0x6e, 0x0a -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81946C8 -gUnknown_81946C8: @ 81946C8 -.byte 0xf6, 0x00, 0x74, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x1d, 0x01, 0xff, 0xff -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81946F8 -gUnknown_81946F8: @ 81946F8 -.byte 0xf6, 0x00, 0x7a, 0x0a -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8194748 -gUnknown_8194748: @ 8194748 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81946F8 - -.global gUnknown_8194754 -gUnknown_8194754: @ 8194754 -.byte 0xf6, 0x00, 0x84, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81947B4 -gUnknown_81947B4: @ 81947B4 -.byte 0xf6, 0x00, 0x8d, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8194C10 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8194BC8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8194B88 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8194B60 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8194B44 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8194AF0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2b, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8192EE0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8194AE0 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8194AC4 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8194A74 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8194A74 -gUnknown_8194A74: @ 8194A74 -.string " ....................................{WAIT_PRESS}Huh?{WAIT_PRESS}\n" -.string "Papa?{WAIT_PRESS} Where did you go{COMMA} Papa?\0" -.align 2, 0 - -.global gUnknown_8194AC4 -gUnknown_8194AC4: @ 8194AC4 -.string " ........................\0" -.align 2, 0 - -.global gUnknown_8194AE0 -gUnknown_8194AE0: @ 8194AE0 -.string " ............\0" -.align 2, 0 - -.global gUnknown_8194AF0 -gUnknown_8194AF0: @ 8194AF0 -.string " If we were in charge...{WAIT_PRESS}\n" -.string "This is what we{APOSTROPHE}d do to the {COLOR_1 YELLOW_4}Magma\n" -.string "Cavern{END_COLOR_TEXT_1}!{WAIT_PRESS} Hah!\0" -.align 2, 0 - -.global gUnknown_8194B44 -gUnknown_8194B44: @ 8194B44 -.string " What do you take us for?!\0" -.align 2, 0 - -.global gUnknown_8194B60 -gUnknown_8194B60: @ 8194B60 -.string " ........................{WAIT_PRESS}\n" -.string "Of course.\0" -.align 2, 0 - -.global gUnknown_8194B88 -gUnknown_8194B88: @ 8194B88 -.string " Papa?{WAIT_PRESS}\n" -.string "Are you going to the {COLOR_1 YELLOW_4}Magma Cavern{END_COLOR_TEXT_1} too{COMMA}\n" -.string "Papa?\0" -.align 2, 0 - -.global gUnknown_8194BC8 -gUnknown_8194BC8: @ 8194BC8 -.string " Yes{COMMA} Papa.{WAIT_PRESS}\n" -.string "It frightens me so much I don{APOSTROPHE}t know\n" -.string "what to think.\0" -.align 2, 0 - -.global gUnknown_8194C10 -gUnknown_8194C10: @ 8194C10 -.string " Well{COMMA} my son?\n" -.string "Does Groudon frighten you?\0" -.align 2, 0 - -.global gUnknown_8194C3C -gUnknown_8194C3C: @ 8194C3C -.byte 0xf6, 0x00, 0xbc, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8194CAC -gUnknown_8194CAC: @ 8194CAC -.byte 0xf6, 0x00, 0xc6, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -setFlag 0x05 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8194D7C -gUnknown_8194D7C: @ 8194D7C -.byte 0xf6, 0x00, 0xd6, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x04, 0x0a, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -rotate 0x04, shortestDir, east -setFlag 0x05 -closeThread - -.global gUnknown_8194E7C -gUnknown_8194E7C: @ 8194E7C -.byte 0xf6, 0x00, 0xe9, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8194E9C -gUnknown_8194E9C: @ 8194E9C -.byte 0xf6, 0x00, 0xee, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8194ECC -gUnknown_8194ECC: @ 8194ECC -.byte 0xf6, 0x00, 0xf4, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8194F1C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8194F1C -gUnknown_8194F1C: @ 8194F1C -.byte 0x20, 0x3f, 0x00, 0x00 - -.global gUnknown_8194F20 -gUnknown_8194F20: @ 8194F20 -.byte 0xf6, 0x00, 0xfc, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8194F60 -gUnknown_8194F60: @ 8194F60 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8194F20 - -.global gUnknown_8194F6C -gUnknown_8194F6C: @ 8194F6C -.byte 0xf6, 0x00, 0x05, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -closeThread - -.global gUnknown_8194FAC -gUnknown_8194FAC: @ 8194FAC -.byte 0xf6, 0x00, 0x0c, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195188 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195148 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195118 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81950B4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819507C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819507C -gUnknown_819507C: @ 819507C -.string " Oh{COMMA} wow! That{APOSTROPHE}s amazing!{WAIT_PRESS}\n" -.string "Maybe Papa is special!\0" -.align 2, 0 - -.global gUnknown_81950B4 -gUnknown_81950B4: @ 81950B4 -.string " And{COMMA} maybe{COMMA} maybe...{WAIT_PRESS}\n" -.string "Maybe they{APOSTROPHE}ve already won.{WAIT_PRESS}\n" -.string "Maybe they{APOSTROPHE}ve already beaten Groudon!\0" -.align 2, 0 - -.global gUnknown_8195118 -gUnknown_8195118: @ 8195118 -.string " And maybe they{APOSTROPHE}re already\n" -.string "fighting Groudon.\0" -.align 2, 0 - -.global gUnknown_8195148 -gUnknown_8195148: @ 8195148 -.string " Oh!{WAIT_PRESS} Maybe they{APOSTROPHE}ve already\n" -.string "gone to the {COLOR_1 YELLOW_4}Magma Cavern{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_8195188 -gUnknown_8195188: @ 8195188 -.string " Papa hasn{APOSTROPHE}t come back...{WAIT_PRESS}\n" -.string "I wonder where they went?\0" -.align 2, 0 - -.global gUnknown_81951C0 -gUnknown_81951C0: @ 81951C0 -.byte 0xf6, 0x00, 0x1c, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8195240 -gUnknown_8195240: @ 8195240 -.byte 0xf6, 0x00, 0x27, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8195270 -gUnknown_8195270: @ 8195270 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195240 - -.global gUnknown_819527C -gUnknown_819527C: @ 819527C -.byte 0xf6, 0x00, 0x2f, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81952BC -gUnknown_81952BC: @ 81952BC -.byte 0xf6, 0x00, 0x36, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195444 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195410 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81953E0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81953AC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819538C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819538C -gUnknown_819538C: @ 819538C -.string " Sigh...\n" -.string "Where did Papa go...?\0" -.align 2, 0 - -.global gUnknown_81953AC -gUnknown_81953AC: @ 81953AC -.string " ...That{APOSTROPHE}s not possible.\n" -.string "Even Papa can{APOSTROPHE}t fly.\0" -.align 2, 0 - -.global gUnknown_81953E0 -gUnknown_81953E0: @ 81953E0 -.string " And maybe they{APOSTROPHE}ve already\n" -.string "met Rayquaza...\0" -.align 2, 0 - -.global gUnknown_8195410 -gUnknown_8195410: @ 8195410 -.string " Oh!{WAIT_PRESS}\n" -.string "Maybe they{APOSTROPHE}ve already gone to the sky...\0" -.align 2, 0 - -.global gUnknown_8195444 -gUnknown_8195444: @ 8195444 -.string " Papa hasn{APOSTROPHE}t come back yet...\n" -.string "I wonder what happened to them?\0" -.align 2, 0 - -.global gUnknown_8195484 -gUnknown_8195484: @ 8195484 -.byte 0xf6, 0x00, 0x46, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8195504 -gUnknown_8195504: @ 8195504 -.byte 0xf6, 0x00, 0x51, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195598 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195574 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8195574 -gUnknown_8195574: @ 8195574 -.string " You{APOSTROPHE}re our only hope!\n" -.string "Go for it!\0" -.align 2, 0 - -.global gUnknown_8195598 -gUnknown_8195598: @ 8195598 -.string " If that shooting star\n" -.string "crashes{COMMA} it{APOSTROPHE}s going to be terrible!\0" -.align 2, 0 - -.global gUnknown_81955D8 -gUnknown_81955D8: @ 81955D8 -.byte 0xf6, 0x00, 0x5b, 0x0b -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81956A4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195648 -.byte 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8195648 -gUnknown_8195648: @ 8195648 -.string " But I get the feeling that\n" -.string "you can make a difference{COMMA} {ARG_NICKNAME_0}!\n" -.string "Please don{APOSTROPHE}t let us down!\0" -.align 2, 0 - -.global gUnknown_81956A4 -gUnknown_81956A4: @ 81956A4 -.string " Oh my{COMMA} isn{APOSTROPHE}t this awful!\0" -.align 2, 0 - -.global gUnknown_81956C4 -gUnknown_81956C4: @ 81956C4 -.byte 0xf6, 0x00, 0x65, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8195704 -gUnknown_8195704: @ 8195704 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81956C4 - -.global gUnknown_8195710 -gUnknown_8195710: @ 8195710 -.byte 0xf6, 0x00, 0x6e, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8195750 -gUnknown_8195750: @ 8195750 -.byte 0xf6, 0x00, 0x75, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195444 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195410 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81953E0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81953AC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819538C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8195820 -gUnknown_8195820: @ 8195820 -.byte 0xf6, 0x00, 0x85, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81958A0 -gUnknown_81958A0: @ 81958A0 -.byte 0xf6, 0x00, 0x90, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195900 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8195900 -gUnknown_8195900: @ 8195900 -.string " You{APOSTROPHE}re going{COMMA} aren{APOSTROPHE}t you?\n" -.string "Go for it!\0" -.align 2, 0 - -.global gUnknown_819592C -gUnknown_819592C: @ 819592C -.byte 0xf6, 0x00, 0x99, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81959B0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819599C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819599C -gUnknown_819599C: @ 819599C -.string " Please take care.\0" -.align 2, 0 - -.global gUnknown_81959B0 -gUnknown_81959B0: @ 81959B0 -.string " Oh my{COMMA} it{APOSTROPHE}s time to go?\0" -.align 2, 0 - -.global gUnknown_81959D0 -gUnknown_81959D0: @ 81959D0 -.byte 0xf6, 0x00, 0xa3, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8195A10 -gUnknown_8195A10: @ 8195A10 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81959D0 - -.global gUnknown_8195A1C -gUnknown_8195A1C: @ 8195A1C -.byte 0xf6, 0x00, 0xac, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8195A5C -gUnknown_8195A5C: @ 8195A5C -.byte 0xf6, 0x00, 0xb3, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195444 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195410 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81953E0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81953AC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819538C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8195B2C -gUnknown_8195B2C: @ 8195B2C -.byte 0xf6, 0x00, 0xc3, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8195BAC -gUnknown_8195BAC: @ 8195BAC -.byte 0xf6, 0x00, 0xce, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195C0C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8195C0C -gUnknown_8195C0C: @ 8195C0C -.string " You{APOSTROPHE}ll get it done next time!\n" -.string "Go for it!\0" -.align 2, 0 - -.global gUnknown_8195C38 -gUnknown_8195C38: @ 8195C38 -.byte 0xf6, 0x00, 0xd7, 0x0b -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195CD8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195CA8 -.byte 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8195CA8 -gUnknown_8195CA8: @ 8195CA8 -.string " You have my support!\n" -.string "Please don{APOSTROPHE}t fail us!\0" -.align 2, 0 - -.global gUnknown_8195CD8 -gUnknown_8195CD8: @ 8195CD8 -.string " You must make another\n" -.string "challenge.\0" -.align 2, 0 - -.global gUnknown_8195CFC -gUnknown_8195CFC: @ 8195CFC -.byte 0xf6, 0x00, 0xe1, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x08, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xf0 -.byte 0x23, 0x01, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8195D7C -gUnknown_8195D7C: @ 8195D7C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195CFC - -.global gUnknown_8195D88 -gUnknown_8195D88: @ 8195D88 -.byte 0xf6, 0x00, 0xee, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x98, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x99, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8195DC8 -gUnknown_8195DC8: @ 8195DC8 -.byte 0xf6, 0x00, 0xf5, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x0c, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8195DF8 -gUnknown_8195DF8: @ 8195DF8 -.byte 0x93, 0x01, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195DC8 - -.global gUnknown_8195E04 -gUnknown_8195E04: @ 8195E04 -.byte 0xf6, 0x00, 0xfd, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x8b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8195E54 -gUnknown_8195E54: @ 8195E54 -.byte 0xf6, 0x00, 0x05, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8196078 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8196050 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819600C -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195FDC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195FAC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195F64 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819538C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8195F64 -gUnknown_8195F64: @ 8195F64 -.string " ......{WAIT_PRESS}That{APOSTROPHE}s not possible.{WAIT_PRESS}\n" -.string "Papa can{APOSTROPHE}t fly in the first place.\0" -.align 2, 0 - -.global gUnknown_8195FAC -gUnknown_8195FAC: @ 8195FAC -.string " And maybe Rayquaza is\n" -.string "having them as a meal...\0" -.align 2, 0 - -.global gUnknown_8195FDC -gUnknown_8195FDC: @ 8195FDC -.string " Oh!{WAIT_PRESS}\n" -.string "Maybe they got left behind in the sky...\0" -.align 2, 0 - -.global gUnknown_819600C -gUnknown_819600C: @ 819600C -.string " Everyone says they haven{APOSTROPHE}t\n" -.string "seen them...{WAIT_PRESS}\n" -.string "Where did my papa go?\0" -.align 2, 0 - -.global gUnknown_8196050 -gUnknown_8196050: @ 8196050 -.string " But Papa still hasn{APOSTROPHE}t come\n" -.string "back...\0" -.align 2, 0 - -.global gUnknown_8196078 -gUnknown_8196078: @ 8196078 -.string " (Everything returned to\n" -.string "peace...)\0" -.align 2, 0 - -.global gUnknown_819609C -gUnknown_819609C: @ 819609C -.byte 0xf6, 0x00, 0x19, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819614C -gUnknown_819614C: @ 819614C -.byte 0xf6, 0x00, 0x27, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81961F0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81961BC -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81961BC -gUnknown_81961BC: @ 81961BC -.string " I can go on living again\n" -.string "without fear. Thank you!\0" -.align 2, 0 - -.global gUnknown_81961F0 -gUnknown_81961F0: @ 81961F0 -.string " Oh{COMMA} how marvelous{COMMA}\n" -.string "{ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8196210 -gUnknown_8196210: @ 8196210 -.byte 0xf6, 0x00, 0x31, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81962B8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8196280 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196280 -gUnknown_8196280: @ 8196280 -.string " Seriously{COMMA} consider teaming\n" -.string "up with me! Gahahaha!\0" -.align 2, 0 - -.global gUnknown_81962B8 -gUnknown_81962B8: @ 81962B8 -.string " You were flat-out\n" -.string "incredible!\0" -.align 2, 0 - -.global gUnknown_81962D8 -gUnknown_81962D8: @ 81962D8 -.byte 0xf6, 0x00, 0x3b, 0x0c -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8196338 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196338 -gUnknown_8196338: @ 8196338 -.string " Oh{COMMA} darlings{COMMA} you{APOSTROPHE}ve outdone\n" -.string "yourselves{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8196370 -gUnknown_8196370: @ 8196370 -.byte 0xf6, 0x00, 0x44, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81963D0 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81963D0 -gUnknown_81963D0: @ 81963D0 -.string " You fought your way up\n" -.string "a tower of clouds?{WAIT_PRESS} I can{APOSTROPHE}t even imagine\n" -.string "that. Sounds kind of wow!{WAIT_PRESS} Ayup!\0" -.align 2, 0 - -.global gUnknown_8196438 -gUnknown_8196438: @ 8196438 -.byte 0xf6, 0x00, 0x4d, 0x0c -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x08, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81964C8 -gUnknown_81964C8: @ 81964C8 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8196438 - -.global gUnknown_81964D4 -gUnknown_81964D4: @ 81964D4 -.byte 0xf6, 0x00, 0x5b, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A148 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 5 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x80, 0x01, 0x12, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x80, 0x00, 0x00, 0x02, 0x13, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8196574 -gUnknown_8196574: @ 8196574 -.byte 0x38, 0x00, 0x00, 0x00, 0x31, 0x19, 0x02, 0x02 -.4byte gUnknown_818A358 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x59, 0x14, 0x02, 0x02 -.4byte gUnknown_818A4F8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81965A4 -gUnknown_81965A4: @ 81965A4 -.byte 0x00, 0x02, 0x00, 0x00, 0x09, 0x28, 0x02, 0x02 -.4byte gUnknown_818A6A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x02, 0x00, 0x00, 0x06, 0x28, 0x02, 0x02 -.4byte gUnknown_818A6E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81965D4 -gUnknown_81965D4: @ 81965D4 -.byte 0x00, 0x00, 0x00, 0x00, 0x31, 0x25, 0x02, 0x02 -.4byte gUnknown_818A728 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x31, 0x23, 0x02, 0x02 -.4byte gUnknown_818A768 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196604 -gUnknown_8196604: @ 8196604 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x28, 0x02, 0x02 -.4byte gUnknown_818A7A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x17, 0x28, 0x02, 0x02 -.4byte gUnknown_818A7E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196634 -gUnknown_8196634: @ 8196634 -.byte 0x00, 0x04, 0x00, 0x00, 0x25, 0x28, 0x02, 0x02 -.4byte gUnknown_818A828 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x25, 0x2a, 0x02, 0x02 -.4byte gUnknown_818A868 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196664 -gUnknown_8196664: @ 8196664 -.byte 0x44, 0x02, 0x00, 0x00, 0x3f, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A944 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x68, 0x03, 0x00, 0x00, 0x21, 0x29, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A974 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x04, 0x00, 0x00, 0x25, 0x2a, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818AA20 -.byte 0x00, 0x00, 0x00, 0x00, 0x69, 0x05, 0x00, 0x00, 0x29, 0x29, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818AB0C -.byte 0x00, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x1d, 0x21, 0x00, 0x02 -.4byte gUnknown_818AE1C -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818AECC -.4byte gUnknown_818B4D4 - -.global gUnknown_81966DC -gUnknown_81966DC: @ 81966DC -.byte 0x00, 0x02, 0x00, 0x00, 0x3c, 0x22, 0x00, 0x02 -.4byte gUnknown_818B710 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x02, 0x00, 0x00, 0x3c, 0x1f, 0x00, 0x02 -.4byte gUnknown_818BFEC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0x02, 0x00, 0x00, 0x3f, 0x1f, 0x00, 0x02 -.4byte gUnknown_818C05C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x02, 0x00, 0x00, 0x3f, 0x22, 0x00, 0x02 -.4byte gUnknown_818C4DC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819673C -gUnknown_819673C: @ 819673C -.byte 0x42, 0x02, 0x00, 0x00, 0x3f, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818C768 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x02, 0x00, 0x00, 0x3f, 0x22, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818C7F0 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819676C -gUnknown_819676C: @ 819676C -.byte 0x00, 0x04, 0x00, 0x00, 0x17, 0x28, 0x00, 0x02 -.4byte gUnknown_818CA80 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00, 0x1b, 0x28, 0x00, 0x02 -.4byte gUnknown_818D208 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6d, 0x00, 0x00, 0x00, 0x1b, 0x25, 0x00, 0x02 -.4byte gUnknown_818D328 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x17, 0x25, 0x00, 0x02 -.4byte gUnknown_818D3C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81967CC -gUnknown_81967CC: @ 81967CC -.byte 0x7c, 0x00, 0x00, 0x00, 0x1b, 0x25, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818D588 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81967E4 -gUnknown_81967E4: @ 81967E4 -.byte 0x01, 0x04, 0x00, 0x00, 0x23, 0x28, 0x02, 0x02 -.4byte gUnknown_818D758 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x04, 0x00, 0x00, 0x27, 0x28, 0x02, 0x02 -.4byte gUnknown_818DEF4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196814 -gUnknown_8196814: @ 8196814 -.byte 0x5c, 0x04, 0x00, 0x00, 0x27, 0x2e, 0x00, 0x02 -.4byte gUnknown_818DFD4 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818E0A4 -.4byte gUnknown_818E248 - -.global gUnknown_819682C -gUnknown_819682C: @ 819682C -.byte 0x00, 0x04, 0x00, 0x00, 0x25, 0x28, 0x02, 0x02 -.4byte gUnknown_818E464 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x03, 0x00, 0x00, 0x21, 0x29, 0x02, 0x02 -.4byte gUnknown_818E800 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6a, 0x04, 0x00, 0x00, 0x25, 0x2a, 0x02, 0x02 -.4byte gUnknown_818E840 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x69, 0x05, 0x00, 0x00, 0x29, 0x29, 0x02, 0x02 -.4byte gUnknown_818E880 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0x27, 0x2e, 0x00, 0x02 -.4byte gUnknown_818E8C0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81968A4 -gUnknown_81968A4: @ 81968A4 -.byte 0x5d, 0x02, 0x00, 0x00, 0x1a, 0x2f, 0x00, 0x02 -.4byte gUnknown_818E990 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818E9E0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x5c, 0x06, 0x00, 0x00, 0x1e, 0x2f, 0x00, 0x02 -.4byte gUnknown_818EA10 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818EA60 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81968D4 -gUnknown_81968D4: @ 81968D4 -.byte 0x00, 0x00, 0x00, 0x00, 0x1c, 0x2c, 0x00, 0x02 -.4byte gUnknown_818EAFC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1c, 0x2a, 0x00, 0x02 -.4byte gUnknown_818F284 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0x02, 0x00, 0x00, 0x1e, 0x2f, 0x00, 0x02 -.4byte gUnknown_818F2E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x5c, 0x06, 0x00, 0x00, 0x1a, 0x2f, 0x00, 0x02 -.4byte gUnknown_818F434 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196934 -gUnknown_8196934: @ 8196934 -.byte 0x5d, 0x02, 0x00, 0x00, 0x1a, 0x2f, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818F4F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x5c, 0x06, 0x00, 0x00, 0x1e, 0x2f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818F564 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196964 -gUnknown_8196964: @ 8196964 -.byte 0x00, 0x04, 0x00, 0x00, 0x23, 0x2c, 0x00, 0x02 -.4byte gUnknown_818F840 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x04, 0x00, 0x00, 0x28, 0x2c, 0x00, 0x02 -.4byte gUnknown_818F8E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196994 -gUnknown_8196994: @ 8196994 -.byte 0x00, 0x04, 0x00, 0x00, 0x25, 0x2c, 0x02, 0x02 -.4byte gUnknown_818F920 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81969AC -gUnknown_81969AC: @ 81969AC -.byte 0x1e, 0x00, 0x00, 0x00, 0x25, 0x29, 0x02, 0x02 -.4byte gUnknown_818F9B0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81969C4 -gUnknown_81969C4: @ 81969C4 -.byte 0x1f, 0x00, 0x00, 0x00, 0x25, 0x29, 0x02, 0x02 -.4byte gUnknown_818FA00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81969DC -gUnknown_81969DC: @ 81969DC -.byte 0x1e, 0x00, 0x00, 0x00, 0x23, 0x29, 0x00, 0x02 -.4byte gUnknown_818FA50 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x28, 0x29, 0x00, 0x02 -.4byte gUnknown_818FAA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196A0C -gUnknown_8196A0C: @ 8196A0C -.byte 0x00, 0x02, 0x00, 0x00, 0x03, 0x29, 0x00, 0x02 -.4byte gUnknown_818FCDC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x02, 0x00, 0x00, 0x06, 0x27, 0x00, 0x02 -.4byte gUnknown_81909BC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3a, 0x00, 0x00, 0x00, 0x32, 0x1a, 0x00, 0x02 -.4byte gUnknown_8190AEC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x06, 0x00, 0x00, 0x49, 0x15, 0x00, 0x02 -.4byte gUnknown_8190BEC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196A6C -gUnknown_8196A6C: @ 8196A6C -.byte 0x50, 0x04, 0x00, 0x00, 0x28, 0x2a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190DBC -.byte 0x00, 0x00, 0x00, 0x00, 0x42, 0x02, 0x00, 0x00, 0x3f, 0x1f, 0x00, 0x02 -.4byte gUnknown_8190EB0 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190EF0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x02, 0x00, 0x00, 0x3f, 0x22, 0x00, 0x02 -.4byte gUnknown_8190F20 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8190F60 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196AB4 -gUnknown_8196AB4: @ 8196AB4 -.byte 0x00, 0x00, 0x00, 0x00, 0x3d, 0x14, 0x00, 0x02 -.4byte gUnknown_8190FCC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0x02, 0x00, 0x00, 0x3f, 0x1f, 0x00, 0x02 -.4byte gUnknown_8191244 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81912F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x02, 0x00, 0x00, 0x3f, 0x22, 0x00, 0x02 -.4byte gUnknown_8191324 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81913C4 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196AFC -gUnknown_8196AFC: @ 8196AFC -.byte 0x42, 0x02, 0x00, 0x00, 0x3f, 0x1f, 0x00, 0x02 -.4byte gUnknown_8191430 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8191470 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x02, 0x00, 0x00, 0x3f, 0x22, 0x00, 0x02 -.4byte gUnknown_81914A0 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81914E0 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196B2C -gUnknown_8196B2C: @ 8196B2C -.byte 0x00, 0x00, 0x00, 0x00, 0x3d, 0x14, 0x00, 0x02 -.4byte gUnknown_819154C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0x02, 0x00, 0x00, 0x3f, 0x1f, 0x00, 0x02 -.4byte gUnknown_819171C -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81917CC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x02, 0x00, 0x00, 0x3f, 0x22, 0x00, 0x02 -.4byte gUnknown_81917FC -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819189C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196B74 -gUnknown_8196B74: @ 8196B74 -.byte 0x44, 0x02, 0x00, 0x00, 0x3f, 0x22, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8191968 -.4byte gUnknown_8191C7C - -.global gUnknown_8196B8C -gUnknown_8196B8C: @ 8196B8C -.byte 0x50, 0x04, 0x00, 0x00, 0x28, 0x2a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8191D1C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196BA4 -gUnknown_8196BA4: @ 8196BA4 -.byte 0x42, 0x02, 0x00, 0x00, 0x3f, 0x1f, 0x00, 0x02 -.4byte gUnknown_81921DC -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819221C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x02, 0x00, 0x00, 0x3f, 0x22, 0x00, 0x02 -.4byte gUnknown_819224C -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819228C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196BD4 -gUnknown_8196BD4: @ 8196BD4 -.byte 0x00, 0x00, 0x00, 0x00, 0x07, 0x0a, 0x00, 0x02 -.4byte gUnknown_81922F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0x02, 0x00, 0x00, 0x3f, 0x1f, 0x00, 0x02 -.4byte gUnknown_8192548 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81925F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x02, 0x00, 0x00, 0x3f, 0x22, 0x00, 0x02 -.4byte gUnknown_8192628 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81926C8 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196C1C -gUnknown_8196C1C: @ 8196C1C -.byte 0x42, 0x02, 0x00, 0x00, 0x3f, 0x1f, 0x00, 0x02 -.4byte gUnknown_8192744 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8192784 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x02, 0x00, 0x00, 0x3f, 0x22, 0x00, 0x02 -.4byte gUnknown_81927B4 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8192854 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196C4C -gUnknown_8196C4C: @ 8196C4C -.byte 0x04, 0x02, 0x00, 0x00, 0x3c, 0x1f, 0x00, 0x02 -.4byte gUnknown_8192884 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x3c, 0x22, 0x00, 0x02 -.4byte gUnknown_81929A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x02, 0x00, 0x00, 0x3c, 0x1f, 0x00, 0x02 -.4byte gUnknown_8192FA8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0x02, 0x00, 0x00, 0x3f, 0x1f, 0x00, 0x02 -.4byte gUnknown_8193098 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81934F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x02, 0x00, 0x00, 0x3f, 0x22, 0x00, 0x02 -.4byte gUnknown_8193528 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8193668 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196CC4 -gUnknown_8196CC4: @ 8196CC4 -.byte 0x42, 0x02, 0x00, 0x00, 0x3f, 0x1f, 0x00, 0x02 -.4byte gUnknown_81936E4 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8193724 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x02, 0x00, 0x00, 0x3f, 0x22, 0x00, 0x02 -.4byte gUnknown_8193754 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8193794 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196CF4 -gUnknown_8196CF4: @ 8196CF4 -.byte 0x00, 0x02, 0x00, 0x00, 0x3c, 0x22, 0x00, 0x02 -.4byte gUnknown_8193870 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x02, 0x00, 0x00, 0x3c, 0x1f, 0x00, 0x02 -.4byte gUnknown_8193EDC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0x02, 0x00, 0x00, 0x3f, 0x1f, 0x00, 0x02 -.4byte gUnknown_8193FCC -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819442C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x02, 0x00, 0x00, 0x3f, 0x22, 0x00, 0x02 -.4byte gUnknown_819445C -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819458C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196D54 -gUnknown_8196D54: @ 8196D54 -.byte 0x42, 0x02, 0x00, 0x00, 0x3f, 0x1f, 0x00, 0x02 -.4byte gUnknown_8194658 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8194698 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x02, 0x00, 0x00, 0x3f, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81946C8 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196D84 -gUnknown_8196D84: @ 8196D84 -.byte 0x00, 0x02, 0x00, 0x00, 0x3c, 0x22, 0x00, 0x02 -.4byte gUnknown_81947B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x02, 0x00, 0x00, 0x3c, 0x1f, 0x00, 0x02 -.4byte gUnknown_8194C3C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0x02, 0x00, 0x00, 0x3f, 0x1f, 0x00, 0x02 -.4byte gUnknown_8194CAC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x02, 0x00, 0x00, 0x3f, 0x22, 0x00, 0x02 -.4byte gUnknown_8194D7C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196DE4 -gUnknown_8196DE4: @ 8196DE4 -.byte 0x42, 0x02, 0x00, 0x00, 0x3f, 0x1f, 0x00, 0x02 -.4byte gUnknown_8194E7C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x02, 0x00, 0x00, 0x3f, 0x22, 0x00, 0x02 -.4byte gUnknown_8194E9C -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8194ECC -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196E14 -gUnknown_8196E14: @ 8196E14 -.byte 0x44, 0x02, 0x00, 0x00, 0x3f, 0x22, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8194F6C -.4byte gUnknown_8194FAC -.4byte gUnknown_81951C0 - -.global gUnknown_8196E2C -gUnknown_8196E2C: @ 8196E2C -.byte 0x44, 0x02, 0x00, 0x00, 0x3f, 0x22, 0x00, 0x02 -.4byte gUnknown_819527C -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81952BC -.4byte gUnknown_8195484 -.byte 0x50, 0x04, 0x00, 0x00, 0x28, 0x2a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195504 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x4f, 0x00, 0x00, 0x00, 0x1d, 0x21, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81955D8 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196E74 -gUnknown_8196E74: @ 8196E74 -.byte 0x44, 0x02, 0x00, 0x00, 0x3f, 0x22, 0x00, 0x02 -.4byte gUnknown_8195710 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195750 -.4byte gUnknown_8195820 -.byte 0x50, 0x04, 0x00, 0x00, 0x28, 0x2a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81958A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x1d, 0x21, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819592C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196EBC -gUnknown_8196EBC: @ 8196EBC -.byte 0x44, 0x02, 0x00, 0x00, 0x3f, 0x22, 0x00, 0x02 -.4byte gUnknown_8195A1C -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195A5C -.4byte gUnknown_8195B2C -.byte 0x50, 0x04, 0x00, 0x00, 0x28, 0x2a, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195BAC -.byte 0x00, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x1d, 0x21, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195C38 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196F04 -gUnknown_8196F04: @ 8196F04 -.byte 0x44, 0x02, 0x00, 0x00, 0x3f, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8195E04 -.4byte gUnknown_8195E54 -.4byte gUnknown_819609C -.byte 0x4f, 0x00, 0x00, 0x00, 0x1d, 0x21, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819614C -.byte 0x00, 0x00, 0x00, 0x00, 0x68, 0x06, 0x00, 0x00, 0x28, 0x29, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8196210 -.byte 0x00, 0x00, 0x00, 0x00, 0x69, 0x06, 0x00, 0x00, 0x28, 0x2b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81962D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x02, 0x00, 0x00, 0x22, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8196370 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196F7C -gUnknown_8196F7C: @ 8196F7C -.byte 0x37, 0x02, 0x00, 0x00, 0x33, 0x19, 0x00, 0x02 -.4byte gUnknown_81964D4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196F94 -gUnknown_8196F94: @ 8196F94 -.byte 0x0e, 0x00, 0x05, 0x02, 0x25, 0x26, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A1F8 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196FAC -gUnknown_8196FAC: @ 8196FAC -.byte 0x00, 0x00, 0x01, 0x01, 0x38, 0x27, 0x00, 0x00 -.4byte gUnknown_818B680 - -.global gUnknown_8196FB8 -gUnknown_8196FB8: @ 8196FB8 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x19, 0x26, 0x00, 0x02 -.4byte gUnknown_818CA10 - -.global gUnknown_8196FC4 -gUnknown_8196FC4: @ 8196FC4 -.byte 0x00, 0x00, 0x01, 0x01, 0x25, 0x26, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196FD0 -gUnknown_8196FD0: @ 8196FD0 -.byte 0x00, 0x00, 0x01, 0x01, 0x25, 0x26, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196FDC -gUnknown_8196FDC: @ 8196FDC -.byte 0x00, 0x00, 0x01, 0x01, 0x25, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8196FE8 -gUnknown_8196FE8: @ 8196FE8 -.byte 0x00, 0x00, 0x01, 0x01, 0x0f, 0x28, 0x00, 0x02 -.4byte gUnknown_818FBEC - -.global gUnknown_8196FF4 -gUnknown_8196FF4: @ 8196FF4 -.byte 0x00, 0x00, 0x01, 0x01, 0x3d, 0x22, 0x00, 0x00 -.4byte gUnknown_8192940 - -.global gUnknown_8197000 -gUnknown_8197000: @ 8197000 -.byte 0x00, 0x00, 0x01, 0x01, 0x3d, 0x22, 0x00, 0x00 -.4byte gUnknown_8193810 - -.global gUnknown_819700C -gUnknown_819700C: @ 819700C -.byte 0x00, 0x00, 0x01, 0x01, 0x3d, 0x22, 0x00, 0x00 -.4byte gUnknown_8194754 - -.global gUnknown_8197018 -gUnknown_8197018: @ 8197018 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x20, 0x1d, 0x02, 0x02 -.4byte gUnknown_8195D88 - -.global gUnknown_8197024 -gUnknown_8197024: @ 8197024 -.byte 0x00, 0x00, 0x01, 0x01, 0x37, 0x1b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8197030 -gUnknown_8197030: @ 8197030 -.byte 0x03, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_818A1B0 -.byte 0x03, 0x03, 0x00, 0x00, 0x30, 0x1f, 0x00, 0x00 -.4byte gUnknown_818A1EC - -.global gUnknown_8197048 -gUnknown_8197048: @ 8197048 -.4byte gUnknown_818A174 - -.global gUnknown_819704C -gUnknown_819704C: @ 819704C -.4byte gUnknown_818A938 - -.global gUnknown_8197050 -gUnknown_8197050: @ 8197050 -.4byte gUnknown_818B674 - -.global gUnknown_8197054 -gUnknown_8197054: @ 8197054 -.4byte gUnknown_818C75C - -.global gUnknown_8197058 -gUnknown_8197058: @ 8197058 -.4byte gUnknown_818C978 - -.global gUnknown_819705C -gUnknown_819705C: @ 819705C -.4byte gUnknown_818CA04 - -.global gUnknown_8197060 -gUnknown_8197060: @ 8197060 -.4byte gUnknown_818D74C - -.global gUnknown_8197064 -gUnknown_8197064: @ 8197064 -.4byte gUnknown_818E458 - -.global gUnknown_8197068 -gUnknown_8197068: @ 8197068 -.4byte gUnknown_818EAF0 - -.global gUnknown_819706C -gUnknown_819706C: @ 819706C -.4byte gUnknown_818F834 - -.global gUnknown_8197070 -gUnknown_8197070: @ 8197070 -.4byte gUnknown_818FBE0 - -.global gUnknown_8197074 -gUnknown_8197074: @ 8197074 -.4byte gUnknown_8190D0C - -.global gUnknown_8197078 -gUnknown_8197078: @ 8197078 -.4byte gUnknown_8190D48 - -.global gUnknown_819707C -gUnknown_819707C: @ 819707C -.4byte gUnknown_8190D74 - -.global gUnknown_8197080 -gUnknown_8197080: @ 8197080 -.4byte gUnknown_8190DB0 - -.global gUnknown_8197084 -gUnknown_8197084: @ 8197084 -.4byte gUnknown_8190FC0 - -.global gUnknown_8197088 -gUnknown_8197088: @ 8197088 -.4byte gUnknown_8191424 - -.global gUnknown_819708C -gUnknown_819708C: @ 819708C -.4byte gUnknown_8191540 - -.global gUnknown_8197090 -gUnknown_8197090: @ 8197090 -.4byte gUnknown_819195C - -.global gUnknown_8197094 -gUnknown_8197094: @ 8197094 -.4byte gUnknown_81921D0 - -.global gUnknown_8197098 -gUnknown_8197098: @ 8197098 -.4byte gUnknown_81922EC - -.global gUnknown_819709C -gUnknown_819709C: @ 819709C -.4byte gUnknown_8192738 - -.global gUnknown_81970A0 -gUnknown_81970A0: @ 81970A0 -.4byte gUnknown_8192934 - -.global gUnknown_81970A4 -gUnknown_81970A4: @ 81970A4 -.4byte gUnknown_81936D8 - -.global gUnknown_81970A8 -gUnknown_81970A8: @ 81970A8 -.4byte gUnknown_8193804 - -.global gUnknown_81970AC -gUnknown_81970AC: @ 81970AC -.4byte gUnknown_819464C - -.global gUnknown_81970B0 -gUnknown_81970B0: @ 81970B0 -.4byte gUnknown_8194748 - -.global gUnknown_81970B4 -gUnknown_81970B4: @ 81970B4 -.4byte gUnknown_8194F60 - -.global gUnknown_81970B8 -gUnknown_81970B8: @ 81970B8 -.4byte gUnknown_8195270 - -.global gUnknown_81970BC -gUnknown_81970BC: @ 81970BC -.4byte gUnknown_8195704 - -.global gUnknown_81970C0 -gUnknown_81970C0: @ 81970C0 -.4byte gUnknown_8195A10 - -.global gUnknown_81970C4 -gUnknown_81970C4: @ 81970C4 -.4byte gUnknown_8195D7C - -.global gUnknown_81970C8 -gUnknown_81970C8: @ 81970C8 -.4byte gUnknown_8195DF8 - -.global gUnknown_81970CC -gUnknown_81970CC: @ 81970CC -.4byte gUnknown_81964C8 - -.global gUnknown_81970D0 -gUnknown_81970D0: @ 81970D0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8196574 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8196F94 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8197030 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197048 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81965A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81965D4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8196604 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8196634 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8197198 -gUnknown_8197198: @ 8197198 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_8196664 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819704C -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81966DC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8196FAC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197050 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_819673C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197054 - -.global gUnknown_8197210 -gUnknown_8197210: @ 8197210 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197058 - -.global gUnknown_8197238 -gUnknown_8197238: @ 8197238 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_819676C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8196FB8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819705C - -.global gUnknown_8197260 -gUnknown_8197260: @ 8197260 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81967CC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8197288 -gUnknown_8197288: @ 8197288 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81967E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8196FC4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197060 - -.global gUnknown_81972B0 -gUnknown_81972B0: @ 81972B0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8196814 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81972D8 -gUnknown_81972D8: @ 81972D8 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_819682C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8196FD0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197064 - -.global gUnknown_8197300 -gUnknown_8197300: @ 8197300 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81968A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8197328 -gUnknown_8197328: @ 8197328 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81968D4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197068 - -.global gUnknown_8197350 -gUnknown_8197350: @ 8197350 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8196934 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8197378 -gUnknown_8197378: @ 8197378 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8196FDC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819706C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8196964 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8196994 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81969AC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81969C4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81969DC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8197468 -gUnknown_8197468: @ 8197468 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8196A0C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8196FE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197070 - -.global gUnknown_8197490 -gUnknown_8197490: @ 8197490 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197074 - -.global gUnknown_81974B8 -gUnknown_81974B8: @ 81974B8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197078 - -.global gUnknown_81974E0 -gUnknown_81974E0: @ 81974E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819707C - -.global gUnknown_8197508 -gUnknown_8197508: @ 8197508 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8196A6C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197080 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8196AB4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197084 - -.global gUnknown_8197558 -gUnknown_8197558: @ 8197558 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8196AFC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197088 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8196B2C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819708C - -.global gUnknown_81975A8 -gUnknown_81975A8: @ 81975A8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8196B74 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197090 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8196B8C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81975F8 -gUnknown_81975F8: @ 81975F8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8196BA4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197094 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8196BD4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197098 - -.global gUnknown_8197648 -gUnknown_8197648: @ 8197648 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8196C1C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819709C -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_8196C4C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8196FF4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81970A0 - -.global gUnknown_8197698 -gUnknown_8197698: @ 8197698 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8196CC4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81970A4 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8196CF4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197000 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81970A8 - -.global gUnknown_81976E8 -gUnknown_81976E8: @ 81976E8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8196D54 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81970AC -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8196D84 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819700C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81970B0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8196DE4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8197760 -gUnknown_8197760: @ 8197760 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8196E14 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81970B4 - -.global gUnknown_8197788 -gUnknown_8197788: @ 8197788 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8196E2C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81970B8 - -.global gUnknown_81977B0 -gUnknown_81977B0: @ 81977B0 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8196E74 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81970BC - -.global gUnknown_81977D8 -gUnknown_81977D8: @ 81977D8 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8196EBC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81970C0 - -.global gUnknown_8197800 -gUnknown_8197800: @ 8197800 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197018 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81970C4 - -.global gUnknown_8197828 -gUnknown_8197828: @ 8197828 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_8196F04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81970C8 - -.global gUnknown_8197850 -gUnknown_8197850: @ 8197850 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8196F7C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197024 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81970CC - -.global gUnknown_8197878 -gUnknown_8197878: @ 8197878 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81970D0 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8197198 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197210 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197238 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197260 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197288 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81972B0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81972D8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197300 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197328 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197350 -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_8197378 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197468 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197490 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81974B8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81974E0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8197508 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8197558 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81975A8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81975F8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8197648 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8197698 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81976E8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197760 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197788 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81977B0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81977D8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197800 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197828 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8197850 - -.global gUnknown_8197968 -gUnknown_8197968: @ 8197968 -.byte 0x32, 0x1a, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x00, 0x09, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x35, 0x1a, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x58, 0x14, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x3d, 0x21, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x35, 0x27, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x38, 0x24, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x3b, 0x26, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x3c, 0x1d, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x3f, 0x1f, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x32, 0x19, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x25, 0x27, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x24, 0x29, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x27, 0x27, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x16, 0x12, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x35, 0x1a, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x39, 0x1d, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x39, 0x17, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x3f, 0x14, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x4a, 0x0c, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01 - -.global gUnknown_8197A08 -gUnknown_8197A08: @ 8197A08 -.byte 0x1e, 0x00, 0x00, 0x00 -.4byte gUnknown_8197878 -.4byte gUnknown_8197968 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8197A1C -gUnknown_8197A1C: @ 8197A1C -.byte 0xf6, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -.byte 0x08, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xea, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x02, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x03, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x03, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8197BFC -gUnknown_8197BFC: @ 8197BFC -.string "../data/ground/ground_data_t01p04_station.c\0" -.align 2, 0 - -.global gUnknown_8197C28 -gUnknown_8197C28: @ 8197C28 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197A1C - -.global gUnknown_8197C34 -gUnknown_8197C34: @ 8197C34 -.byte 0xf6, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -.byte 0x01, 0x00, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8197C64 -gUnknown_8197C64: @ 8197C64 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197C34 - -.global gUnknown_8197C70 -gUnknown_8197C70: @ 8197C70 -.byte 0xf6, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8197CB0 -gUnknown_8197CB0: @ 8197CB0 -.byte 0xf6, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8197CF0 -gUnknown_8197CF0: @ 8197CF0 -.byte 0xf6, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -.byte 0xb3, 0x00, 0x03, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8197D50 -gUnknown_8197D50: @ 8197D50 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197CF0 - -.global gUnknown_8197D5C -gUnknown_8197D5C: @ 8197D5C -.byte 0xf6, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x05, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x48, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8197E3C -gUnknown_8197E3C: @ 8197E3C -.byte 0xf6, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8197E9C -gUnknown_8197E9C: @ 8197E9C -.byte 0xf6, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x3c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8197EFC -gUnknown_8197EFC: @ 8197EFC -.byte 0xf6, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -.byte 0x21, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8197F2C -gUnknown_8197F2C: @ 8197F2C -.byte 0xf6, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -.byte 0x08, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xea, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8197FDC -gUnknown_8197FDC: @ 8197FDC -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197F2C - -.global gUnknown_8197FE8 -gUnknown_8197FE8: @ 8197FE8 -.byte 0xf6, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -.byte 0x4f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8198098 -gUnknown_8198098: @ 8198098 -.byte 0xf6, 0x00, 0x9c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8198118 -gUnknown_8198118: @ 8198118 -.byte 0xf6, 0x00, 0xa7, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8198178 -gUnknown_8198178: @ 8198178 -.byte 0xf6, 0x00, 0xb0, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -.byte 0x08, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x01, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8198228 -gUnknown_8198228: @ 8198228 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8198178 - -.global gUnknown_8198234 -gUnknown_8198234: @ 8198234 -.byte 0xf6, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x2f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8198480 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8198448 -closeTextBox -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8198480 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8198404 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81983A4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81983A4 -gUnknown_81983A4: @ 81983A4 -.string " Please inform your friend\n" -.string "that{COMMA} regrettably{COMMA} the friend rescue\n" -.string "mission ended in failure.\0" -.align 2, 0 - -.global gUnknown_8198404 -gUnknown_8198404: @ 8198404 -.string " I{APOSTROPHE}m terribly sorry{COMMA} but you\n" -.string "may not go on that rescue again...\0" -.align 2, 0 - -.global gUnknown_8198448 -gUnknown_8198448: @ 8198448 -.string " But that wasn{APOSTROPHE}t the final\n" -.string "chance! Don{APOSTROPHE}t give up!\0" -.align 2, 0 - -.global gUnknown_8198480 -gUnknown_8198480: @ 8198480 -.string " Oh! Welcome back!{WAIT_PRESS}\n" -.string "The rescue...{WAIT_PRESS}went badly{COMMA} I see...\0" -.align 2, 0 - -.global gUnknown_81984BC -gUnknown_81984BC: @ 81984BC -.byte 0xf6, 0x00, 0xda, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819853C -gUnknown_819853C: @ 819853C -.byte 0xf6, 0x00, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -.byte 0x08, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xea, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81985EC -gUnknown_81985EC: @ 81985EC -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819853C - -.global gUnknown_81985F8 -gUnknown_81985F8: @ 81985F8 -.byte 0xf6, 0x00, 0xf5, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00 -.byte 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8198480 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8198448 -closeTextBox -.byte 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8198480 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8198404 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81983A4 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8198768 -gUnknown_8198768: @ 8198768 -.byte 0xf6, 0x00, 0x0f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -.byte 0x4f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81987E8 -gUnknown_81987E8: @ 81987E8 -.byte 0xf6, 0x00, 0x1a, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8198868 -gUnknown_8198868: @ 8198868 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81987E8 - -.global gUnknown_8198874 -gUnknown_8198874: @ 8198874 -.byte 0xf6, 0x00, 0x27, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x6b, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81988F4 -gUnknown_81988F4: @ 81988F4 -.byte 0xf6, 0x00, 0x32, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x54, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x68, 0x00, 0x80, 0x00, 0x20, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x80, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8198A24 -gUnknown_8198A24: @ 8198A24 -.byte 0xf6, 0x00, 0x48, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, west -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8198A84 -gUnknown_8198A84: @ 8198A84 -.byte 0xf6, 0x00, 0x51, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197BFC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8198AE4 -gUnknown_8198AE4: @ 8198AE4 -.byte 0x00, 0x04, 0x00, 0x00, 0x21, 0x2c, 0x00, 0x02 -.4byte gUnknown_8197C70 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x04, 0x00, 0x00, 0x21, 0x2e, 0x00, 0x02 -.4byte gUnknown_8197CB0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8198B14 -gUnknown_8198B14: @ 8198B14 -.byte 0x2f, 0x00, 0x00, 0x00, 0x1f, 0x20, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197D5C -.byte 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x26, 0x20, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197E3C -.byte 0x00, 0x00, 0x00, 0x00, 0x32, 0x06, 0x00, 0x00, 0x31, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197E9C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8198B5C -gUnknown_8198B5C: @ 8198B5C -.byte 0x00, 0x04, 0x00, 0x00, 0x1f, 0x24, 0x00, 0x02 -.4byte gUnknown_8197FE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1f, 0x26, 0x00, 0x02 -.4byte gUnknown_8198098 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x1f, 0x20, 0x00, 0x02 -.4byte gUnknown_8198118 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8198BA4 -gUnknown_8198BA4: @ 8198BA4 -.byte 0x00, 0x04, 0x00, 0x00, 0x1f, 0x24, 0x00, 0x02 -.4byte gUnknown_8198234 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x04, 0x00, 0x00, 0x1f, 0x26, 0x00, 0x02 -.4byte gUnknown_81984BC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8198BD4 -gUnknown_8198BD4: @ 8198BD4 -.byte 0x00, 0x04, 0x00, 0x00, 0x1f, 0x24, 0x00, 0x02 -.4byte gUnknown_81985F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1f, 0x26, 0x00, 0x02 -.4byte gUnknown_8198768 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8198C04 -gUnknown_8198C04: @ 8198C04 -.byte 0x38, 0x00, 0x00, 0x00, 0x1f, 0x20, 0x00, 0x02 -.4byte gUnknown_81988F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x39, 0x00, 0x00, 0x00, 0x26, 0x20, 0x00, 0x02 -.4byte gUnknown_8198A24 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x04, 0x00, 0x00, 0x1f, 0x2f, 0x00, 0x02 -.4byte gUnknown_8198A84 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8198C4C -gUnknown_8198C4C: @ 8198C4C -.byte 0x04, 0x00, 0x03, 0x03, 0x2e, 0x26, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8197EFC -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8198C64 -gUnknown_8198C64: @ 8198C64 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x22, 0x02, 0x02 -.4byte gUnknown_8198874 - -.global gUnknown_8198C70 -gUnknown_8198C70: @ 8198C70 -.byte 0x08, 0x03, 0x00, 0x00, 0x1d, 0x30, 0x00, 0x00 -.4byte gUnknown_8197C64 - -.global gUnknown_8198C7C -gUnknown_8198C7C: @ 8198C7C -.4byte gUnknown_8197C28 - -.global gUnknown_8198C80 -gUnknown_8198C80: @ 8198C80 -.4byte gUnknown_8197D50 - -.global gUnknown_8198C84 -gUnknown_8198C84: @ 8198C84 -.4byte gUnknown_8197FDC - -.global gUnknown_8198C88 -gUnknown_8198C88: @ 8198C88 -.4byte gUnknown_8198228 - -.global gUnknown_8198C8C -gUnknown_8198C8C: @ 8198C8C -.4byte gUnknown_81985EC - -.global gUnknown_8198C90 -gUnknown_8198C90: @ 8198C90 -.4byte gUnknown_8198868 - -.global gUnknown_8198C94 -gUnknown_8198C94: @ 8198C94 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8198C70 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8198C7C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8198AE4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8198CE4 -gUnknown_8198CE4: @ 8198CE4 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8198B14 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8198C4C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8198C80 - -.global gUnknown_8198D0C -gUnknown_8198D0C: @ 8198D0C -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8198B5C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8198C84 - -.global gUnknown_8198D34 -gUnknown_8198D34: @ 8198D34 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8198BA4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8198C88 - -.global gUnknown_8198D5C -gUnknown_8198D5C: @ 8198D5C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8198BD4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8198C8C - -.global gUnknown_8198D84 -gUnknown_8198D84: @ 8198D84 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8198C04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8198C64 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8198C90 - -.global gUnknown_8198DAC -gUnknown_8198DAC: @ 8198DAC -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8198C94 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8198CE4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8198D0C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8198D34 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8198D5C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8198D84 - -.global gUnknown_8198DDC -gUnknown_8198DDC: @ 8198DDC -.byte 0x22, 0x11, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1f, 0x1c, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1f, 0x17, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x21, 0x12, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01 -.byte 0x28, 0x0e, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1f, 0x25, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01 - -.global gUnknown_8198E0C -gUnknown_8198E0C: @ 8198E0C -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_8198DAC -.4byte gUnknown_8198DDC -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8198E20 -gUnknown_8198E20: @ 8198E20 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0x08, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x06, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x03, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x05, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81990C0 -gUnknown_81990C0: @ 81990C0 -.string "../data/ground/ground_data_t01p05_station.c\0" -.align 2, 0 - -.global gUnknown_81990EC -gUnknown_81990EC: @ 81990EC -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8198E20 - -.global gUnknown_81990F8 -gUnknown_81990F8: @ 81990F8 -.byte 0xf6, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8199128 -gUnknown_8199128: @ 8199128 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990F8 - -.global gUnknown_8199134 -gUnknown_8199134: @ 8199134 -.byte 0xf6, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8199174 -gUnknown_8199174: @ 8199174 -.byte 0xf6, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81991B4 -gUnknown_81991B4: @ 81991B4 -.byte 0xf6, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81991F4 -gUnknown_81991F4: @ 81991F4 -.byte 0xf6, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8199234 -gUnknown_8199234: @ 8199234 -.byte 0xf6, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0x21, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x1e, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8199304 -gUnknown_8199304: @ 8199304 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8199234 - -.global gUnknown_8199310 -gUnknown_8199310: @ 8199310 -.byte 0xf6, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0xbb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81993A0 -gUnknown_81993A0: @ 81993A0 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8199310 - -.global gUnknown_81993AC -gUnknown_81993AC: @ 81993AC -.byte 0xf6, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81993DC -gUnknown_81993DC: @ 81993DC -.byte 0xf6, 0x00, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x06, 0x00, 0x1e, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x48, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819947C -gUnknown_819947C: @ 819947C -.byte 0xf6, 0x00, 0x91, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0xe8, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xbb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81994EC -gUnknown_81994EC: @ 81994EC -.byte 0xf6, 0x00, 0x9b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0x21, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_819951C -gUnknown_819951C: @ 819951C -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81994EC - -.global gUnknown_8199528 -gUnknown_8199528: @ 8199528 -.byte 0xf6, 0x00, 0xa3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8199618 -.byte 0x32, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81995DC -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81995A8 -.byte 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81995A8 -gUnknown_81995A8: @ 81995A8 -.string "{CENTER_ALIGN}Under Construction - Keep Out\n" -.string "{CENTER_ALIGN}- Makuhita Dojo -\0" -.align 2, 0 - -.global gUnknown_81995DC -gUnknown_81995DC: @ 81995DC -.string "{CENTER_ALIGN}............!{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}There is a notice posted in the back.\0" -.align 2, 0 - -.global gUnknown_8199618 -gUnknown_8199618: @ 8199618 -.string "{CENTER_ALIGN}There appears to be no one inside.\0" -.align 2, 0 - -.global gUnknown_8199640 -gUnknown_8199640: @ 8199640 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8199528 - -.global gUnknown_819964C -gUnknown_819964C: @ 819964C -.byte 0xf6, 0x00, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0x08, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xea, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81996EC -gUnknown_81996EC: @ 81996EC -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819964C - -.global gUnknown_81996F8 -gUnknown_81996F8: @ 81996F8 -.byte 0xf6, 0x00, 0xbf, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x25, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x2c, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8199848 -gUnknown_8199848: @ 8199848 -.byte 0xf6, 0x00, 0xdb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0x4f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81998C8 -gUnknown_81998C8: @ 81998C8 -.byte 0xf6, 0x00, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0x4f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8199938 -gUnknown_8199938: @ 8199938 -.byte 0xf6, 0x00, 0xf0, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0x08, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x01, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81999D8 -gUnknown_81999D8: @ 81999D8 -.byte 0x92, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8199938 - -.global gUnknown_81999E4 -gUnknown_81999E4: @ 81999E4 -.byte 0xf6, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8199A94 -gUnknown_8199A94: @ 8199A94 -.byte 0xf6, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8199B14 -gUnknown_8199B14: @ 8199B14 -.byte 0xf6, 0x00, 0x18, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8199B84 -gUnknown_8199B84: @ 8199B84 -.byte 0xf6, 0x00, 0x22, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0x08, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8199C24 -gUnknown_8199C24: @ 8199C24 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8199B84 - -.global gUnknown_8199C30 -gUnknown_8199C30: @ 8199C30 -.byte 0xf6, 0x00, 0x31, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8199CE0 -gUnknown_8199CE0: @ 8199CE0 -.byte 0xf6, 0x00, 0x3f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8199D60 -gUnknown_8199D60: @ 8199D60 -.byte 0xf6, 0x00, 0x4a, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8199DD0 -gUnknown_8199DD0: @ 8199DD0 -.byte 0xf6, 0x00, 0x54, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0x08, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8199E70 -gUnknown_8199E70: @ 8199E70 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8199DD0 - -.global gUnknown_8199E7C -gUnknown_8199E7C: @ 8199E7C -.byte 0xf6, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3c, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8199F2C -gUnknown_8199F2C: @ 8199F2C -.byte 0xf6, 0x00, 0x71, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8199FAC -gUnknown_8199FAC: @ 8199FAC -.byte 0xf6, 0x00, 0x7c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81990C0 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819A01C -gUnknown_819A01C: @ 819A01C -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x02 -.4byte gUnknown_8199134 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x02 -.4byte gUnknown_8199174 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819A04C -gUnknown_819A04C: @ 819A04C -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81991B4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x22, 0x1e, 0x02, 0x02 -.4byte gUnknown_81991F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819A07C -gUnknown_819A07C: @ 819A07C -.byte 0x54, 0x00, 0x00, 0x00, 0x1e, 0x1f, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81993AC -.4byte gUnknown_81993DC -.4byte gUnknown_819947C - -.global gUnknown_819A094 -gUnknown_819A094: @ 819A094 -.byte 0x00, 0x06, 0x00, 0x00, 0x22, 0x1f, 0x02, 0x02 -.4byte gUnknown_81996F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x06, 0x00, 0x00, 0x26, 0x1f, 0x02, 0x02 -.4byte gUnknown_8199848 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x02, 0x00, 0x00, 0x1e, 0x1f, 0x00, 0x02 -.4byte gUnknown_81998C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819A0DC -gUnknown_819A0DC: @ 819A0DC -.byte 0x00, 0x06, 0x00, 0x00, 0x22, 0x1f, 0x02, 0x02 -.4byte gUnknown_81999E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x06, 0x00, 0x00, 0x26, 0x1f, 0x02, 0x02 -.4byte gUnknown_8199A94 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x02, 0x00, 0x00, 0x1e, 0x1f, 0x00, 0x02 -.4byte gUnknown_8199B14 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819A124 -gUnknown_819A124: @ 819A124 -.byte 0x00, 0x06, 0x00, 0x00, 0x22, 0x1f, 0x02, 0x02 -.4byte gUnknown_8199C30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x06, 0x00, 0x00, 0x26, 0x1f, 0x02, 0x02 -.4byte gUnknown_8199CE0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x02, 0x00, 0x00, 0x1e, 0x1f, 0x00, 0x02 -.4byte gUnknown_8199D60 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819A16C -gUnknown_819A16C: @ 819A16C -.byte 0x00, 0x06, 0x00, 0x00, 0x22, 0x1f, 0x02, 0x02 -.4byte gUnknown_8199E7C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x06, 0x00, 0x00, 0x26, 0x1f, 0x02, 0x02 -.4byte gUnknown_8199F2C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x54, 0x02, 0x00, 0x00, 0x1e, 0x1f, 0x00, 0x02 -.4byte gUnknown_8199FAC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819A1B4 -gUnknown_819A1B4: @ 819A1B4 -.byte 0x10, 0x06, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00 -.4byte gUnknown_8199128 - -.global gUnknown_819A1C0 -gUnknown_819A1C0: @ 819A1C0 -.byte 0x03, 0x03, 0x00, 0x00, 0x21, 0x1a, 0x00, 0x00 -.4byte gUnknown_8199304 - -.global gUnknown_819A1CC -gUnknown_819A1CC: @ 819A1CC -.byte 0x03, 0x03, 0x00, 0x00, 0x21, 0x1a, 0x00, 0x00 -.4byte gUnknown_819951C - -.global gUnknown_819A1D8 -gUnknown_819A1D8: @ 819A1D8 -.byte 0x03, 0x03, 0x00, 0x00 -.byte 0x21, 0x1a, 0x00, 0x00 -.4byte gUnknown_8199640 - -.global gUnknown_819A1E4 -gUnknown_819A1E4: @ 819A1E4 -.4byte gUnknown_81990EC - -.global gUnknown_819A1E8 -gUnknown_819A1E8: @ 819A1E8 -.4byte gUnknown_81993A0 - -.global gUnknown_819A1EC -gUnknown_819A1EC: @ 819A1EC -.4byte gUnknown_81996EC - -.global gUnknown_819A1F0 -gUnknown_819A1F0: @ 819A1F0 -.4byte gUnknown_81999D8 - -.global gUnknown_819A1F4 -gUnknown_819A1F4: @ 819A1F4 -.4byte gUnknown_8199C24 - -.global gUnknown_819A1F8 -gUnknown_819A1F8: @ 819A1F8 -.4byte gUnknown_8199E70 - -.global gUnknown_819A1FC -gUnknown_819A1FC: @ 819A1FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819A1B4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819A1E4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_819A01C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_819A04C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819A1C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819A29C -gUnknown_819A29C: @ 819A29C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819A07C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819A1CC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819A1E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819A1D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819A2EC -gUnknown_819A2EC: @ 819A2EC -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_819A094 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819A1EC - -.global gUnknown_819A314 -gUnknown_819A314: @ 819A314 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_819A0DC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819A1F0 - -.global gUnknown_819A33C -gUnknown_819A33C: @ 819A33C -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_819A124 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819A1F4 - -.global gUnknown_819A364 -gUnknown_819A364: @ 819A364 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_819A16C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819A1F8 - -.global gUnknown_819A38C -gUnknown_819A38C: @ 819A38C -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_819A1FC -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_819A29C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819A2EC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819A314 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819A33C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819A364 - -.global gUnknown_819A3BC -gUnknown_819A3BC: @ 819A3BC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819A3C4 -gUnknown_819A3C4: @ 819A3C4 -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_819A38C -.4byte gUnknown_819A3BC -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_819A3D8 -gUnknown_819A3D8: @ 819A3D8 -.byte 0xf6, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819A548 -.byte 0x08, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x04, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x01, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819A548 -gUnknown_819A548: @ 819A548 -.string "../data/ground/ground_data_t01p06_station.c\0" -.align 2, 0 - -.global gUnknown_819A574 -gUnknown_819A574: @ 819A574 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819A3D8 - -.global gUnknown_819A580 -gUnknown_819A580: @ 819A580 -.byte 0xf6, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819A548 -.byte 0x01, 0x00, 0xff, 0xff, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_819A5B0 -gUnknown_819A5B0: @ 819A5B0 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819A580 - -.global gUnknown_819A5BC -gUnknown_819A5BC: @ 819A5BC -.byte 0xf6, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819A548 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819A5FC -gUnknown_819A5FC: @ 819A5FC -.byte 0xf6, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819A548 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819A63C -gUnknown_819A63C: @ 819A63C -.byte 0x00, 0x04, 0x00, 0x00, 0x1f, 0x22, 0x02, 0x02 -.4byte gUnknown_819A5BC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1f, 0x24, 0x02, 0x02 -.4byte gUnknown_819A5FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819A66C -gUnknown_819A66C: @ 819A66C -.byte 0x2b, 0x00, 0x00, 0x00, 0x1b, 0x18, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x27, 0x18, 0x02 -warpDungeon 0x00 -.byte 0x00 - -.global gUnknown_819A69C -gUnknown_819A69C: @ 819A69C -.byte 0x09, 0x03, 0x00, 0x00, 0x1b, 0x26, 0x00, 0x00 -.4byte gUnknown_819A5B0 - -.global gUnknown_819A6A8 -gUnknown_819A6A8: @ 819A6A8 -.4byte gUnknown_819A574 - -.global gUnknown_819A6AC -gUnknown_819A6AC: @ 819A6AC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819A69C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819A6A8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_819A63C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819A6FC -gUnknown_819A6FC: @ 819A6FC -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_819A66C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819A724 -gUnknown_819A724: @ 819A724 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_819A6AC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819A6FC - -.global gUnknown_819A734 -gUnknown_819A734: @ 819A734 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819A73C -gUnknown_819A73C: @ 819A73C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_819A724 -.4byte gUnknown_819A734 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_819A750 -gUnknown_819A750: @ 819A750 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819A810 -.byte 0x08, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819A810 -gUnknown_819A810: @ 819A810 -.string "../data/ground/ground_data_t01p07_station.c\0" -.align 2, 0 - -.global gUnknown_819A83C -gUnknown_819A83C: @ 819A83C -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819A750 - -.global gUnknown_819A848 -gUnknown_819A848: @ 819A848 -.byte 0xf6, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819A810 -.byte 0x01, 0x00, 0xff, 0xff -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_819A878 -gUnknown_819A878: @ 819A878 -.byte 0x65, 0x01, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819A848 - -.global gUnknown_819A884 -gUnknown_819A884: @ 819A884 -.byte 0xf6, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819A810 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819A8C4 -gUnknown_819A8C4: @ 819A8C4 -.byte 0xf6, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819A810 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819A904 -gUnknown_819A904: @ 819A904 -.byte 0xf6, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819A810 -.byte 0x08, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819A984 -gUnknown_819A984: @ 819A984 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819A904 - -.global gUnknown_819A990 -gUnknown_819A990: @ 819A990 -.byte 0xf6, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819A810 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819AA10 -gUnknown_819AA10: @ 819AA10 -.byte 0xf6, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819A810 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819AA80 -gUnknown_819AA80: @ 819AA80 -.byte 0xf6, 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819A810 -.byte 0x0f, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819AAD0 -gUnknown_819AAD0: @ 819AAD0 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819AA80 - -.global gUnknown_819AADC -gUnknown_819AADC: @ 819AADC -.byte 0xf6, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819A810 -.byte 0x56, 0x00, 0x00, 0x00, 0xb4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x12, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819AB4C -gUnknown_819AB4C: @ 819AB4C -.byte 0xf6, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819A810 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819ABBC -gUnknown_819ABBC: @ 819ABBC -.byte 0x00, 0x04, 0x00, 0x00, 0x19, 0x1a, 0x02, 0x02 -.4byte gUnknown_819A884 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x19, 0x1c, 0x02, 0x02 -.4byte gUnknown_819A8C4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819ABEC -gUnknown_819ABEC: @ 819ABEC -.byte 0x00, 0x04, 0x00, 0x00, 0x19, 0x15, 0x02, 0x02 -.4byte gUnknown_819AA10 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819AC04 -gUnknown_819AC04: @ 819AC04 -.byte 0x00, 0x04, 0x00, 0x00, 0x19, 0x15, 0x02, 0x02 -.4byte gUnknown_819AB4C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819AC1C -gUnknown_819AC1C: @ 819AC1C -.byte 0x00, 0x00, 0x01, 0x01, 0x19, 0x15, 0x02, 0x02 -.4byte gUnknown_819A990 - -.global gUnknown_819AC28 -gUnknown_819AC28: @ 819AC28 -.byte 0x03, 0x00, 0x01, 0x01, 0x19, 0x15, 0x02, 0x02 -.4byte gUnknown_819AADC - -.global gUnknown_819AC34 -gUnknown_819AC34: @ 819AC34 -.byte 0x09, 0x03, 0x00, 0x00, 0x15, 0x1e, 0x00, 0x00 -.4byte gUnknown_819A878 - -.global gUnknown_819AC40 -gUnknown_819AC40: @ 819AC40 -.4byte gUnknown_819A83C - -.global gUnknown_819AC44 -gUnknown_819AC44: @ 819AC44 -.4byte gUnknown_819A984 - -.global gUnknown_819AC48 -gUnknown_819AC48: @ 819AC48 -.4byte gUnknown_819AAD0 - -.global gUnknown_819AC4C -gUnknown_819AC4C: @ 819AC4C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819AC34 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819AC40 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_819ABBC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819AC9C -gUnknown_819AC9C: @ 819AC9C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819ABEC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819AC1C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819AC44 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819AC04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819AC28 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_819AC48 - -.global gUnknown_819ACEC -gUnknown_819ACEC: @ 819ACEC -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_819AC4C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_819AC9C - -.global gUnknown_819ACFC -gUnknown_819ACFC: @ 819ACFC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819AD04 -gUnknown_819AD04: @ 819AD04 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_819ACEC -.4byte gUnknown_819ACFC -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_819AD18 -gUnknown_819AD18: @ 819AD18 -.byte 0xf6, 0x00, 0x90, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x01, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x03, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x04, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x05, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x06, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x07, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x08, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x09, 0x00 -.byte 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x04, 0x0a, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x0b, 0x00 -.byte 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x0c, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x0d, 0x00 -.byte 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x0f, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x10, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x11, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x7e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x13, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x16, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x12, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x13, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x14, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x12, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x18, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x05, 0x15, 0x00, 0x19, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x86, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x87, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x16, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x17, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x18, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x20, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x91, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x93, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x19, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x1a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x25, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x9a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x1b, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x1c, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x29, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x25, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x1d, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x29, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x29, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xa9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x1f, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x20, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x29, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x21, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x29, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xb5, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x25, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x32, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x22, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x23, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x24, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x25, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x26, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x27, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x38, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x22, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xd5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x23, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xd7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x24, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x25, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xdb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x26, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x25, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x3d, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xdd, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x28, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x29, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x42, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x25, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x40, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x29, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x2a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x46, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xee, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x2b, 0x0c, 0x00 -.byte 0x35, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x2c, 0x0c, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x03, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x59, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x2c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x5d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x2d, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x2e, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x18, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x2f, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x30, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x31, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x2d, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x2e, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x2e, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x2e, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x32, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x32, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x32, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x32, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x32, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x32, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x32, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x32, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x33, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x33, 0x00 -.byte 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x33, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x2e, 0x00 -.byte 0xb2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x34, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x06, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x32, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x34, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x34, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x34, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x16, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x2d, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x2e, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x35, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x35, 0x00 -.byte 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x36, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x36, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x36, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x34, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x37, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x38, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbb, 0x39, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x3a, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x3b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x3c, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x3d, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x3e, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x3f, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x40, 0x00 -.byte 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x41, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x05, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x15, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x3b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x1b, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x21, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x3d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x26, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x2a, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x3f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x2c, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x3f, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x41, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x43, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x07, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819BE98 -gUnknown_819BE98: @ 819BE98 -.string "../data/ground/ground_data_b01p01a_station.c\0" -.align 2, 0 - -.global gUnknown_819BEC8 -gUnknown_819BEC8: @ 819BEC8 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819AD18 - -.global gUnknown_819BED4 -gUnknown_819BED4: @ 819BED4 -.byte 0xf6, 0x00, 0xae, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xb8, 0x00, 0x03, 0x00, 0x04, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x01, 0x16, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819BF44 -gUnknown_819BF44: @ 819BF44 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BED4 - -.global gUnknown_819BF50 -gUnknown_819BF50: @ 819BF50 -.byte 0xf6, 0x00, 0xba, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xb8, 0x00, 0x03, 0x00, 0x04, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbb, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x1e, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x02, 0x16, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb4, 0x06, 0x02, 0x00, 0x20, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819C150 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819C120 -closeTextBox -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819C120 -gUnknown_819C120: @ 819C120 -.string "I{APOSTROPHE}d better leave without telling\n" -.string "the others.\0" -.align 2, 0 - -.global gUnknown_819C150 -gUnknown_819C150: @ 819C150 -.string "This will be a dangerous journey.\0" -.align 2, 0 - -.global gUnknown_819C174 -gUnknown_819C174: @ 819C174 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BF50 - -.global gUnknown_819C180 -gUnknown_819C180: @ 819C180 -.byte 0xf6, 0x00, 0xdc, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xb3, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x01, 0x25, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x25, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x25, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x05, 0x03, 0x00, 0x12, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x1e, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x06, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1d, 0x03, 0x32, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x01, 0x3d, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1d, 0x01, 0x40, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x47, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_819C330 -gUnknown_819C330: @ 819C330 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819C180 - -.global gUnknown_819C33C -gUnknown_819C33C: @ 819C33C -.byte 0xf6, 0x00, 0xfd, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x01, 0x00, 0xff, 0xff, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_819C36C -gUnknown_819C36C: @ 819C36C -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819C33C - -.global gUnknown_819C378 -gUnknown_819C378: @ 819C378 -.byte 0xf6, 0x00, 0x05, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xca, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x01, 0x0a, 0x00 -.byte 0x31, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x21, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819C710 -.byte 0x32, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819C6EC -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x08, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819C6CC -.byte 0x35, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819C6B0 -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819C68C -.byte 0x35, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819C63C -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819C5F4 -.byte 0x35, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819C5D0 -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819C594 -.byte 0x35, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819C558 -closeTextBox -.byte 0xa9, 0x00, 0x0a, 0x00 -.byte 0x31, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819C558 -gUnknown_819C558: @ 819C558 -.string "{CENTER_ALIGN}The Buried Relic is the main\n" -.string "{CENTER_ALIGN}topic in Pokémon Square.\0" -.align 2, 0 - -.global gUnknown_819C594 -gUnknown_819C594: @ 819C594 -.string "{CENTER_ALIGN}And perhaps even Pokémon\n" -.string "{CENTER_ALIGN}that lived in ancient times.\0" -.align 2, 0 - -.global gUnknown_819C5D0 -gUnknown_819C5D0: @ 819C5D0 -.string "{CENTER_ALIGN}There are rumors of treasures...\0" -.align 2, 0 - -.global gUnknown_819C5F4 -gUnknown_819C5F4: @ 819C5F4 -.string "{CENTER_ALIGN}The Buried Relic is thought to date\n" -.string "{CENTER_ALIGN}back beyond recorded history.\0" -.align 2, 0 - -.global gUnknown_819C63C -gUnknown_819C63C: @ 819C63C -.string "{CENTER_ALIGN}Its site had been hidden by the crater\n" -.string "{CENTER_ALIGN}of a meteor strike in ancient times.\0" -.align 2, 0 - -.global gUnknown_819C68C -gUnknown_819C68C: @ 819C68C -.string "{CENTER_ALIGN}Mystery ruin\n" -.string "{CENTER_ALIGN}found underground!\0" -.align 2, 0 - -.global gUnknown_819C6B0 -gUnknown_819C6B0: @ 819C6B0 -.string "{CENTER_ALIGN}Buried Relic Discovered!\0" -.align 2, 0 - -.global gUnknown_819C6CC -gUnknown_819C6CC: @ 819C6CC -.string "{CENTER_ALIGN}\n" -.string "{CENTER_ALIGN}= Extra! =\0" -.align 2, 0 - -.global gUnknown_819C6EC -gUnknown_819C6EC: @ 819C6EC -.string "{CENTER_ALIGN}- Open the Mailbox at the front -\0" -.align 2, 0 - -.global gUnknown_819C710 -gUnknown_819C710: @ 819C710 -.string "{CENTER_ALIGN}There is a warning tag\n" -.string "{CENTER_ALIGN}on the side of the Mailbox.\0" -.align 2, 0 - -.global gUnknown_819C748 -gUnknown_819C748: @ 819C748 -.byte 0xf6, 0x00, 0x27, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819C8D8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00 -.byte 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x02 -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x06, 0x01, 0x00 -.byte 0x20, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819C150 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819C120 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819C8D8 -gUnknown_819C8D8: @ 819C8D8 -.string "\n {LEFT_ARROW} Friend Areas\0" -.align 2, 0 - -.global gUnknown_819C8F4 -gUnknown_819C8F4: @ 819C8F4 -.byte 0xf6, 0x00, 0x43, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xbb, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0xe0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819C974 -gUnknown_819C974: @ 819C974 -.byte 0xf6, 0x00, 0x4e, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xb6, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0xe0, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819C9E4 -gUnknown_819C9E4: @ 819C9E4 -.byte 0xf6, 0x00, 0x58, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xb6, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0xe0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819CA54 -gUnknown_819CA54: @ 819CA54 -.byte 0xf6, 0x00, 0x62, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xb6, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0xe0, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819CAC4 -gUnknown_819CAC4: @ 819CAC4 -.byte 0xf6, 0x00, 0x6c, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819CB04 -gUnknown_819CB04: @ 819CB04 -.byte 0xf6, 0x00, 0x73, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819CB44 -gUnknown_819CB44: @ 819CB44 -.byte 0xf6, 0x00, 0x7a, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819CB84 -gUnknown_819CB84: @ 819CB84 -.byte 0xf6, 0x00, 0x81, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819CBC4 -gUnknown_819CBC4: @ 819CBC4 -.byte 0xf6, 0x00, 0x88, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819CC04 -gUnknown_819CC04: @ 819CC04 -.byte 0xf6, 0x00, 0x8f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819CC44 -gUnknown_819CC44: @ 819CC44 -.byte 0xf6, 0x00, 0x96, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819CC84 -gUnknown_819CC84: @ 819CC84 -.byte 0xf6, 0x00, 0x9d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819CCC4 -gUnknown_819CCC4: @ 819CCC4 -.byte 0xf6, 0x00, 0xa4, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819CD04 -gUnknown_819CD04: @ 819CD04 -.byte 0xf6, 0x00, 0xab, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819CD44 -gUnknown_819CD44: @ 819CD44 -.byte 0xf6, 0x00, 0xb2, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819CD74 -gUnknown_819CD74: @ 819CD74 -.byte 0xf6, 0x00, 0xb8, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819CDA4 -gUnknown_819CDA4: @ 819CDA4 -.byte 0xf6, 0x00, 0xbe, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x2d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DCA0 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DC90 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DC84 -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DC6C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DC60 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DC30 -.byte 0xd9, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DC1C -.byte 0xd9, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DC08 -.byte 0xd9, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DBF4 -.byte 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DBD4 -.byte 0xa6, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DBB4 -.byte 0xa6, 0x00, 0x28, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DB94 -.byte 0xa6, 0x00, 0x28, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DB64 -.byte 0xd9, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DB44 -.byte 0xd9, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DB24 -.byte 0xd9, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DB04 -.byte 0xd9, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DAE4 -.byte 0xd9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DAC4 -.byte 0xd9, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DAA4 -.byte 0xd9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DA84 -.byte 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DA58 -.byte 0xa6, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DA2C -.byte 0xa6, 0x00, 0x27, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DA00 -.byte 0xa6, 0x00, 0x27, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D9D4 -.byte 0xa6, 0x00, 0x27, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D9A8 -.byte 0xa6, 0x00, 0x27, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D97C -.byte 0xa6, 0x00, 0x27, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D94C -.byte 0xd9, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D928 -.byte 0xd9, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D908 -.byte 0xd9, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D8E8 -.byte 0xd9, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D8C8 -.byte 0xd9, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D8A8 -.byte 0xd9, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D888 -.byte 0xd9, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D868 -.byte 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D83C -.byte 0xa6, 0x00, 0x27, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D810 -.byte 0xa6, 0x00, 0x27, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D7E4 -.byte 0xa6, 0x00, 0x27, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D7B8 -.byte 0xa6, 0x00, 0x27, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D78C -.byte 0xa6, 0x00, 0x27, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D760 -.byte 0xa6, 0x00, 0x27, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D94C -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D740 -.byte 0xd9, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D720 -.byte 0xd9, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D700 -.byte 0xd9, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D6E0 -.byte 0xd9, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D6C0 -.byte 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D694 -.byte 0xa6, 0x00, 0x27, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D668 -.byte 0xa6, 0x00, 0x27, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D63C -.byte 0xa6, 0x00, 0x27, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D610 -.byte 0xa6, 0x00, 0x27, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819D5F4 -.byte 0xa8, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x47, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x47, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x47, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_819D5F4 -gUnknown_819D5F4: @ 819D5F4 -.string "Fixtures will be placed.\0" -.align 2, 0 - -.global gUnknown_819D610 -gUnknown_819D610: @ 819D610 -.string "It will be changed to rescue team base 16.\0" -.align 2, 0 - -.global gUnknown_819D63C -gUnknown_819D63C: @ 819D63C -.string "It will be changed to rescue team base 15.\0" -.align 2, 0 - -.global gUnknown_819D668 -gUnknown_819D668: @ 819D668 -.string "It will be changed to rescue team base 14.\0" -.align 2, 0 - -.global gUnknown_819D694 -gUnknown_819D694: @ 819D694 -.string "It will be changed to rescue team base 13.\0" -.align 2, 0 - -.global gUnknown_819D6C0 -gUnknown_819D6C0: @ 819D6C0 -.string "Change to rescue team base 16\0" -.align 2, 0 - -.global gUnknown_819D6E0 -gUnknown_819D6E0: @ 819D6E0 -.string "Change to rescue team base 15\0" -.align 2, 0 - -.global gUnknown_819D700 -gUnknown_819D700: @ 819D700 -.string "Change to rescue team base 14\0" -.align 2, 0 - -.global gUnknown_819D720 -gUnknown_819D720: @ 819D720 -.string "Change to rescue team base 13\0" -.align 2, 0 - -.global gUnknown_819D740 -gUnknown_819D740: @ 819D740 -.string "Change to rescue team base 1 〜\0" -.align 2, 0 - -.global gUnknown_819D760 -gUnknown_819D760: @ 819D760 -.string "It will be changed to rescue team\n" -.string "base 12.\0" -.align 2, 0 - -.global gUnknown_819D78C -gUnknown_819D78C: @ 819D78C -.string "It will be changed to rescue team\n" -.string "base 11.\0" -.align 2, 0 - -.global gUnknown_819D7B8 -gUnknown_819D7B8: @ 819D7B8 -.string "It will be changed to rescue team\n" -.string "base 10.\0" -.align 2, 0 - -.global gUnknown_819D7E4 -gUnknown_819D7E4: @ 819D7E4 -.string "It will be changed to rescue team\n" -.string "base 9.\0" -.align 2, 0 - -.global gUnknown_819D810 -gUnknown_819D810: @ 819D810 -.string "It will be changed to rescue team\n" -.string "base 8.\0" -.align 2, 0 - -.global gUnknown_819D83C -gUnknown_819D83C: @ 819D83C -.string "It will be changed to rescue team\n" -.string "base 7.\0" -.align 2, 0 - -.global gUnknown_819D868 -gUnknown_819D868: @ 819D868 -.string "Change to rescue team base 12\0" -.align 2, 0 - -.global gUnknown_819D888 -gUnknown_819D888: @ 819D888 -.string "Change to rescue team base 11\0" -.align 2, 0 - -.global gUnknown_819D8A8 -gUnknown_819D8A8: @ 819D8A8 -.string "Change to rescue team base 10\0" -.align 2, 0 - -.global gUnknown_819D8C8 -gUnknown_819D8C8: @ 819D8C8 -.string "Change to rescue team base 9\0" -.align 2, 0 - -.global gUnknown_819D8E8 -gUnknown_819D8E8: @ 819D8E8 -.string "Change to rescue team base 8\0" -.align 2, 0 - -.global gUnknown_819D908 -gUnknown_819D908: @ 819D908 -.string "Change to rescue team base 7\0" -.align 2, 0 - -.global gUnknown_819D928 -gUnknown_819D928: @ 819D928 -.string "Change to rescue team base 14 〜\0" -.align 2, 0 - -.global gUnknown_819D94C -gUnknown_819D94C: @ 819D94C -.string "The rescue team base{APOSTROPHE}s type will\n" -.string "be changed.\0" -.align 2, 0 - -.global gUnknown_819D97C -gUnknown_819D97C: @ 819D97C -.string "It will be changed to rescue team\n" -.string "base 6.\0" -.align 2, 0 - -.global gUnknown_819D9A8 -gUnknown_819D9A8: @ 819D9A8 -.string "It will be changed to rescue team\n" -.string "base 5.\0" -.align 2, 0 - -.global gUnknown_819D9D4 -gUnknown_819D9D4: @ 819D9D4 -.string "It will be changed to rescue team\n" -.string "base 4.\0" -.align 2, 0 - -.global gUnknown_819DA00 -gUnknown_819DA00: @ 819DA00 -.string "It will be changed to rescue team\n" -.string "base 3.\0" -.align 2, 0 - -.global gUnknown_819DA2C -gUnknown_819DA2C: @ 819DA2C -.string "It will be changed to rescue team\n" -.string "base 2.\0" -.align 2, 0 - -.global gUnknown_819DA58 -gUnknown_819DA58: @ 819DA58 -.string "It will be changed to rescue team\n" -.string "base 1.\0" -.align 2, 0 - -.global gUnknown_819DA84 -gUnknown_819DA84: @ 819DA84 -.string "Change to rescue team base 6\0" -.align 2, 0 - -.global gUnknown_819DAA4 -gUnknown_819DAA4: @ 819DAA4 -.string "Change to rescue team base 5\0" -.align 2, 0 - -.global gUnknown_819DAC4 -gUnknown_819DAC4: @ 819DAC4 -.string "Change to rescue team base 4\0" -.align 2, 0 - -.global gUnknown_819DAE4 -gUnknown_819DAE4: @ 819DAE4 -.string "Change to rescue team base 3\0" -.align 2, 0 - -.global gUnknown_819DB04 -gUnknown_819DB04: @ 819DB04 -.string "Change to rescue team base 2\0" -.align 2, 0 - -.global gUnknown_819DB24 -gUnknown_819DB24: @ 819DB24 -.string "Change to rescue team base 1\0" -.align 2, 0 - -.global gUnknown_819DB44 -gUnknown_819DB44: @ 819DB44 -.string "Change to rescue team base 7 〜\0" -.align 2, 0 - -.global gUnknown_819DB64 -gUnknown_819DB64: @ 819DB64 -.string "The rescue team base{APOSTROPHE}s type can\n" -.string "be changed.\0" -.align 2, 0 - -.global gUnknown_819DB94 -gUnknown_819DB94: @ 819DB94 -.string "It will be changed to level 3.\0" -.align 2, 0 - -.global gUnknown_819DBB4 -gUnknown_819DBB4: @ 819DBB4 -.string "It will be changed to level 2.\0" -.align 2, 0 - -.global gUnknown_819DBD4 -gUnknown_819DBD4: @ 819DBD4 -.string "It will be changed to level 1.\0" -.align 2, 0 - -.global gUnknown_819DBF4 -gUnknown_819DBF4: @ 819DBF4 -.string "Change to level 3\0" -.align 2, 0 - -.global gUnknown_819DC08 -gUnknown_819DC08: @ 819DC08 -.string "Change to level 2\0" -.align 2, 0 - -.global gUnknown_819DC1C -gUnknown_819DC1C: @ 819DC1C -.string "Change to level 1\0" -.align 2, 0 - -.global gUnknown_819DC30 -gUnknown_819DC30: @ 819DC30 -.string "The rescue team base{APOSTROPHE}s level can\n" -.string "be changed.\0" -.align 2, 0 - -.global gUnknown_819DC60 -gUnknown_819DC60: @ 819DC60 -.string "Farewell\0" -.align 2, 0 - -.global gUnknown_819DC6C -gUnknown_819DC6C: @ 819DC6C -.string "Placement of fixtures\0" -.align 2, 0 - -.global gUnknown_819DC84 -gUnknown_819DC84: @ 819DC84 -.string "Change type\0" -.align 2, 0 - -.global gUnknown_819DC90 -gUnknown_819DC90: @ 819DC90 -.string "Change level\0" -.align 2, 0 - -.global gUnknown_819DCA0 -gUnknown_819DCA0: @ 819DCA0 -.string "The rescue team base can be changed.\0" -.align 2, 0 - -.global gUnknown_819DCC8 -gUnknown_819DCC8: @ 819DCC8 -.byte 0xf6, 0x00, 0x46, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xc4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x01, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x03, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x04, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x05, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x06, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x07, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x08, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x09, 0x00 -.byte 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x04, 0x0a, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x0b, 0x00 -.byte 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x0c, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x0d, 0x00 -.byte 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x0f, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x10, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x11, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x13, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x11, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x16, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x13, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x14, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x18, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x16, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x17, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x18, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x20, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x19, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x1a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x25, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x1b, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x1c, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x29, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x25, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x1d, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x29, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x29, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x1f, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x20, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x29, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x21, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x29, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x32, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x23, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x24, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x25, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x26, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x27, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x38, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x3d, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x28, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x29, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x42, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x40, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x29, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x2a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x46, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x2b, 0x0c, 0x00 -.byte 0x35, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x03, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x2d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x2e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819E758 -gUnknown_819E758: @ 819E758 -.byte 0x93, 0x01, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819DCC8 - -.global gUnknown_819E764 -gUnknown_819E764: @ 819E764 -.byte 0xf6, 0x00, 0xf6, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xe9, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819E784 -gUnknown_819E784: @ 819E784 -.byte 0xf6, 0x00, 0xfb, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xe9, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819E7A4 -gUnknown_819E7A4: @ 819E7A4 -.byte 0xf6, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xe9, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819E7C4 -gUnknown_819E7C4: @ 819E7C4 -.byte 0xf6, 0x00, 0x05, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xe9, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819E7E4 -gUnknown_819E7E4: @ 819E7E4 -.byte 0xf6, 0x00, 0x0a, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x47, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819E8B4 -gUnknown_819E8B4: @ 819E8B4 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819E7E4 - -.global gUnknown_819E8C0 -gUnknown_819E8C0: @ 819E8C0 -.byte 0xf6, 0x00, 0x1c, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819E920 -gUnknown_819E920: @ 819E920 -.byte 0xf6, 0x00, 0x25, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819EAE8 -.byte 0x6b, 0x00, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x91, 0x1e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x68, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x4c, 0x00, 0x00, 0x00, 0xf5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819EAE0 -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x68, 0x00, 0x00, 0x01, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x1e, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819EAE0 -gUnknown_819EAE0: @ 819EAE0 -.string "Clunk!\0" -.align 2, 0 - -.global gUnknown_819EAE8 -gUnknown_819EAE8: @ 819EAE8 -.string "Flap! Flap!\0" -.align 2, 0 - -.global gUnknown_819EAF4 -gUnknown_819EAF4: @ 819EAF4 -.byte 0xf6, 0x00, 0x44, 0x04, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819EAE8 -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819EB44 -gUnknown_819EB44: @ 819EB44 -.byte 0xf6, 0x00, 0x4c, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x53, 0x00, 0x00, 0x00, 0xe0, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 1 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819EB84 -gUnknown_819EB84: @ 819EB84 -.byte 0xf6, 0x00, 0x53, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xeb, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819EBB4 -gUnknown_819EBB4: @ 819EBB4 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819EB84 - -.global gUnknown_819EBC0 -gUnknown_819EBC0: @ 819EBC0 -.byte 0xf6, 0x00, 0x5b, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xb3, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x01, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb9, 0x03, 0x05, 0x00, 0x21, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb9, 0x05, 0x04, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x04, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xba, 0x08, 0x03, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xba, 0x0a, 0x06, 0x00, 0x24, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x0c, 0x07, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xba, 0x0e, 0x08, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x10, 0x09, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xba, 0x12, 0x0a, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x14, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xba, 0x16, 0x0c, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819EEE0 -gUnknown_819EEE0: @ 819EEE0 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819EBC0 - -.global gUnknown_819EEEC -gUnknown_819EEEC: @ 819EEEC -.byte 0xf6, 0x00, 0x9a, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbb, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xea, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xeb, 0x00, 0x08, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819F03C -gUnknown_819F03C: @ 819F03C -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819EEEC - -.global gUnknown_819F048 -gUnknown_819F048: @ 819F048 -.byte 0xf6, 0x00, 0xb4, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819F1B8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819F17C -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819F164 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819F128 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819F128 -gUnknown_819F128: @ 819F128 -.string " We failed yesterday{COMMA}\n" -.string "so let{APOSTROPHE}s try harder this time.\0" -.align 2, 0 - -.global gUnknown_819F164 -gUnknown_819F164: @ 819F164 -.string " Good morning{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_819F17C -gUnknown_819F17C: @ 819F17C -.string " We blew it yesterday{COMMA}\n" -.string "so let{APOSTROPHE}s get it right this time.\0" -.align 2, 0 - -.global gUnknown_819F1B8 -gUnknown_819F1B8: @ 819F1B8 -.string " Morning{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_819F1CC -gUnknown_819F1CC: @ 819F1CC -.byte 0xf6, 0x00, 0xc5, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_819F20C -gUnknown_819F20C: @ 819F20C -.byte 0xf6, 0x00, 0xcc, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -closeThread - -.global gUnknown_819F26C -gUnknown_819F26C: @ 819F26C -.byte 0xf6, 0x00, 0xd5, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x13, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819F39C -gUnknown_819F39C: @ 819F39C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819F26C - -.global gUnknown_819F3A8 -gUnknown_819F3A8: @ 819F3A8 -.byte 0xf6, 0x00, 0xee, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x02, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819F514 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819F500 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819F4B4 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819F498 -closeTextBox -.byte 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_819F498 -gUnknown_819F498: @ 819F498 -.string " OK{COMMA} see you tomorrow!\0" -.align 2, 0 - -.global gUnknown_819F4B4 -gUnknown_819F4B4: @ 819F4B4 -.string " Didn{APOSTROPHE}t we do good today?{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s call it a night and get some rest.\0" -.align 2, 0 - -.global gUnknown_819F500 -gUnknown_819F500: @ 819F500 -.string " See you tomorrow!\0" -.align 2, 0 - -.global gUnknown_819F514 -gUnknown_819F514: @ 819F514 -.string " We did good today.{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s knock off and call it a night.\0" -.align 2, 0 - -.global gUnknown_819F554 -gUnknown_819F554: @ 819F554 -.byte 0xf6, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_819F594 -gUnknown_819F594: @ 819F594 -.byte 0xf6, 0x00, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819F634 -closeTextBox -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_819F634 -gUnknown_819F634: @ 819F634 -.string "That was good work today.\n" -.string "I should get some rest.\0" -.align 2, 0 - -.global gUnknown_819F668 -gUnknown_819F668: @ 819F668 -.byte 0xf6, 0x00, 0x14, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbb, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x04, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x08, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819F7B8 -gUnknown_819F7B8: @ 819F7B8 -.byte 0x92, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819F668 - -.global gUnknown_819F7C4 -gUnknown_819F7C4: @ 819F7C4 -.byte 0xf6, 0x00, 0x2e, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819F164 -closeTextBox -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_819F854 -gUnknown_819F854: @ 819F854 -.byte 0xf6, 0x00, 0x3a, 0x05, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_819F894 -gUnknown_819F894: @ 819F894 -.byte 0xf6, 0x00, 0x41, 0x05, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_819F8F4 -gUnknown_819F8F4: @ 819F8F4 -.byte 0xf6, 0x00, 0x4a, 0x05, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819F9A4 -gUnknown_819F9A4: @ 819F9A4 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819F8F4 - -.global gUnknown_819F9B0 -gUnknown_819F9B0: @ 819F9B0 -.byte 0xf6, 0x00, 0x5a, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819FA40 -gUnknown_819FA40: @ 819FA40 -.byte 0xf6, 0x00, 0x66, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819FAC0 -gUnknown_819FAC0: @ 819FAC0 -.byte 0xf6, 0x00, 0x71, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBC4 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBBC -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBB0 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xa9, 0x00, 0x04, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xae, 0x01, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819FBB0 -gUnknown_819FBB0: @ 819FBB0 -.string "*Not yet.\0" -.align 2, 0 - -.global gUnknown_819FBBC -gUnknown_819FBBC: @ 819FBBC -.string "Yes.\0" -.align 2, 0 - -.global gUnknown_819FBC4 -gUnknown_819FBC4: @ 819FBC4 -.string "Trigger sub-scenario 1-2\n" -.string "{DOUBLE_QUOTE}Team Flag{DOUBLE_QUOTE}?\0" -.align 2, 0 - -.global gUnknown_819FBF0 -gUnknown_819FBF0: @ 819FBF0 -.byte 0xf6, 0x00, 0x84, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xd5, 0x01, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FCD0 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBBC -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBB0 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x1d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_819FCD0 -gUnknown_819FCD0: @ 819FCD0 -.string "Trigger sub-scenario 3\n" -.string "{DOUBLE_QUOTE}Meteor Cave{DOUBLE_QUOTE}?\0" -.align 2, 0 - -.global gUnknown_819FCFC -gUnknown_819FCFC: @ 819FCFC -.byte 0xf6, 0x00, 0x96, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xd5, 0x01, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FDDC -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBBC -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBB0 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xa9, 0x00, 0x07, 0x00, 0x26, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819FDDC -gUnknown_819FDDC: @ 819FDDC -.string "Trigger sub-scenario 4\n" -.string "{DOUBLE_QUOTE}Rainbow Wing{DOUBLE_QUOTE}?\0" -.align 2, 0 - -.global gUnknown_819FE08 -gUnknown_819FE08: @ 819FE08 -.byte 0xf6, 0x00, 0xa8, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FEE8 -.byte 0xd9, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBBC -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBB0 -.byte 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x23, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x32, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_819FEE8 -gUnknown_819FEE8: @ 819FEE8 -.string "Trigger sub-scenario 5\n" -.string "{DOUBLE_QUOTE}The Toughest Pokémon{DOUBLE_QUOTE}?\0" -.align 2, 0 - -.global gUnknown_819FF1C -gUnknown_819FF1C: @ 819FF1C -.byte 0xf6, 0x00, 0xba, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xd5, 0x01, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FFFC -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBBC -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBB0 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x1b, 0x00, 0x38, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_819FFFC -gUnknown_819FFFC: @ 819FFFC -.string "Trigger sub-scenario 6\n" -.string "{DOUBLE_QUOTE}Latios and Latias{DOUBLE_QUOTE}?\0" -.align 2, 0 - -.global gUnknown_81A002C -gUnknown_81A002C: @ 81A002C -.byte 0xf6, 0x00, 0xcc, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xd5, 0x01, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A010C -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBBC -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBB0 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0a, 0x00, 0x31, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xae, 0x01, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A010C -gUnknown_81A010C: @ 81A010C -.string "Trigger sub-scenario 1-2\n" -.string "{DOUBLE_QUOTE}Buried Relic{DOUBLE_QUOTE}?\0" -.align 2, 0 - -.global gUnknown_81A013C -gUnknown_81A013C: @ 81A013C -.byte 0xf6, 0x00, 0xde, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xd5, 0x01, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A021C -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBBC -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBB0 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x46, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x11, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A021C -gUnknown_81A021C: @ 81A021C -.string "Trigger sub-scenario 8\n" -.string "{DOUBLE_QUOTE}Wish Cave{DOUBLE_QUOTE}?\0" -.align 2, 0 - -.global gUnknown_81A0244 -gUnknown_81A0244: @ 81A0244 -.byte 0xf6, 0x00, 0xf0, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A0324 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBBC -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBB0 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x1b, 0x00, 0x56, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A0324 -gUnknown_81A0324: @ 81A0324 -.string "Trigger sub-scenario 9\n" -.string "{DOUBLE_QUOTE}Gengar and Gardevoir{DOUBLE_QUOTE}?\0" -.align 2, 0 - -.global gUnknown_81A0358 -gUnknown_81A0358: @ 81A0358 -.byte 0xf6, 0x00, 0x02, 0x06 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x3b, 0x39, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x78, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x39, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A04EC -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A04BC -.byte 0x39, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A04A8 -closeTextBox -.byte 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A04A8 -gUnknown_81A04A8: @ 81A04A8 -.string "{CENTER_ALIGN}as a rescue team.\0" -.align 2, 0 - -.global gUnknown_81A04BC -gUnknown_81A04BC: @ 81A04BC -.string "{CENTER_ALIGN}{ARG_NICKNAME_0} and {ARG_NICKNAME_1}\n" -.string "{CENTER_ALIGN}began their careers together\0" -.align 2, 0 - -.global gUnknown_81A04EC -gUnknown_81A04EC: @ 81A04EC -.string "{CENTER_ALIGN}And that is how\0" -.align 2, 0 - -.global gUnknown_81A0500 -gUnknown_81A0500: @ 81A0500 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A0358 - -.global gUnknown_81A050C -gUnknown_81A050C: @ 81A050C -.byte 0xf6, 0x00, 0x1d, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x46 -.byte 0x6b, 0x00, 0x00, 0x01, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A05AC -gUnknown_81A05AC: @ 81A05AC -.byte 0xf6, 0x00, 0x2a, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -pause 0x1e -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1E74 -closeTextBox -pause 0x1e -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x2e, 0x15, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1E6C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1E44 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1DFC -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1DCC -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1D8C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1D68 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1D3C -closeTextBox -pause 0x1e -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1D10 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1CB8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1C88 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1C38 -.byte 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1C08 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1BE8 -closeTextBox -pause 0x1e -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, north -.byte 0x2e, 0x0f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1B94 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1B50 -closeTextBox -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1B28 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1AE4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1AA4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1A80 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1A48 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A19F8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A19C4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A199C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1960 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1924 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A18EC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A18B0 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1868 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1838 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1804 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A17C0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1784 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1754 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1710 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A16C0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1690 -.byte 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd8, 0x01, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1640 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A15E4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1584 -.byte 0xd9, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1570 -.byte 0xd9, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1568 -.byte 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -pause 0x04 -.byte 0x0d, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x00, 0x1e, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A154C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1530 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A151C -.byte 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A14DC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A148C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1440 -.byte 0xd8, 0x01, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A13F4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A13BC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1380 -.byte 0xd9, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1570 -.byte 0xd9, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1568 -.byte 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -pause 0x04 -.byte 0x0d, 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1368 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1300 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A12F0 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1298 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1278 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1224 -closeTextBox -pause 0x1e -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A11E0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A11A8 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1170 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A113C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1108 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A10CC -closeTextBox -.byte 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xb0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3b, 0x39, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1094 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1050 -.byte 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A1014 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A0FDC -closeTextBox -pause 10 -rotate 6, shortestDir, south -pause 20 -setFlag 6 -pause 1 -setAnimation 42 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 45 -setFlag 3 -closeThread - -.global gUnknown_81A0FDC -gUnknown_81A0FDC: @ 81A0FDC -.string " Rescue Team\n" -.string "{ARG_TEAM_NAME}{END_COLOR_TEXT_1}!{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s do good starting tomorrow!\0" -.align 2, 0 - -.global gUnknown_81A1014 -gUnknown_81A1014: @ 81A1014 -.string " Rescue Team\n" -.string "{COLOR_1 CYAN}{ARG_TEAM_NAME}{END_COLOR_TEXT_1}!{WAIT_PRESS}\n" -.string "We begin tomorrow! Let{APOSTROPHE}s do it!\0" -.align 2, 0 - -.global gUnknown_81A1050 -gUnknown_81A1050: @ 81A1050 -.string " {COLOR_1 CYAN}{ARG_TEAM_NAME}{END_COLOR_TEXT_1}!{WAIT_PRESS}\n" -.string "I like it! It{APOSTROPHE}s a good name!\n" -.string "It{APOSTROPHE}s perfect for us!\0" -.align 2, 0 - -.global gUnknown_81A1094 -gUnknown_81A1094: @ 81A1094 -.string " {COLOR_1 CYAN}{ARG_TEAM_NAME}{END_COLOR_TEXT_1}!{WAIT_PRESS}\n" -.string "Yeah... That{APOSTROPHE}s a good name! It suits us!\0" -.align 2, 0 - -.global gUnknown_81A10CC -gUnknown_81A10CC: @ 81A10CC -.string " So{COMMA} {ARG_NICKNAME_0}.\n" -.string "What do you think would be a good\n" -.string "name for us?\0" -.align 2, 0 - -.global gUnknown_81A1108 -gUnknown_81A1108: @ 81A1108 -.string " The team name...\n" -.string "Well{COMMA} I don{APOSTROPHE}t have one yet.\0" -.align 2, 0 - -.global gUnknown_81A113C -gUnknown_81A113C: @ 81A113C -.string " Listen{COMMA} {ARG_NICKNAME_0}.\n" -.string "What would be a good name for us?\0" -.align 2, 0 - -.global gUnknown_81A1170 -gUnknown_81A1170: @ 81A1170 -.string " The team{APOSTROPHE}s name is...\n" -.string "I haven{APOSTROPHE}t decided on one.\0" -.align 2, 0 - -.global gUnknown_81A11A8 -gUnknown_81A11A8: @ 81A11A8 -.string " Hey{COMMA} {ARG_NICKNAME_0}.\n" -.string "What do you think would be a good name?\0" -.align 2, 0 - -.global gUnknown_81A11E0 -gUnknown_81A11E0: @ 81A11E0 -.string " The team{APOSTROPHE}s name...\n" -.string "Actually{COMMA} I haven{APOSTROPHE}t thought of one yet.\0" -.align 2, 0 - -.global gUnknown_81A1224 -gUnknown_81A1224: @ 81A1224 -.string " We{APOSTROPHE}re partners in our\n" -.string "rescue team from now on{COMMA} {ARG_NICKNAME_0}!\n" -.string "Glad to have you on board!\0" -.align 2, 0 - -.global gUnknown_81A1278 -gUnknown_81A1278: @ 81A1278 -.string " Perfect! That{APOSTROPHE}s it{COMMA} then!\0" -.align 2, 0 - -.global gUnknown_81A1298 -gUnknown_81A1298: @ 81A1298 -.string " From now on{COMMA} {ARG_NICKNAME_0}{COMMA}\n" -.string "we{APOSTROPHE}re partners in our rescue team!\n" -.string "I{APOSTROPHE}m so glad you joined!\0" -.align 2, 0 - -.global gUnknown_81A12F0 -gUnknown_81A12F0: @ 81A12F0 -.string " OK! Done deal!\0" -.align 2, 0 - -.global gUnknown_81A1300 -gUnknown_81A1300: @ 81A1300 -.string " Starting right now{COMMA} me and\n" -.string "you{COMMA} {ARG_NICKNAME_0}{COMMA} we{APOSTROPHE}re partners in\n" -.string "our rescue team! I{APOSTROPHE}m counting on you!\0" -.align 2, 0 - -.global gUnknown_81A1368 -gUnknown_81A1368: @ 81A1368 -.string " OK! That{APOSTROPHE}s done it!\0" -.align 2, 0 - -.global gUnknown_81A1380 -gUnknown_81A1380: @ 81A1380 -.string " So{COMMA} come on now.\n" -.string "Let{APOSTROPHE}s form a rescue team together.\0" -.align 2, 0 - -.global gUnknown_81A13BC -gUnknown_81A13BC: @ 81A13BC -.string " Please?\n" -.string "Will you please form a rescue team\n" -.string "with me?\0" -.align 2, 0 - -.global gUnknown_81A13F4 -gUnknown_81A13F4: @ 81A13F4 -.string " So come on{COMMA} I{APOSTROPHE}m begging you.\n" -.string "Let{APOSTROPHE}s form a rescue team{COMMA} you and me.\0" -.align 2, 0 - -.global gUnknown_81A1440 -gUnknown_81A1440: @ 81A1440 -.string " {ARG_NICKNAME_0}{COMMA} I{APOSTROPHE}m sure\n" -.string "that the two of us would make a\n" -.string "first-class rescue team.\0" -.align 2, 0 - -.global gUnknown_81A148C -gUnknown_81A148C: @ 81A148C -.string " But{COMMA} {ARG_NICKNAME_0}!\n" -.string "I{APOSTROPHE}m sure that we would make a first-class\n" -.string "rescue team together!\0" -.align 2, 0 - -.global gUnknown_81A14DC -gUnknown_81A14DC: @ 81A14DC -.string " {ARG_NICKNAME_0}{COMMA} I{APOSTROPHE}m positive\n" -.string "we{APOSTROPHE}d make a first-class rescue team!\0" -.align 2, 0 - -.global gUnknown_81A151C -gUnknown_81A151C: @ 81A151C -.string " Huh?! Oh{COMMA} but...\0" -.align 2, 0 - -.global gUnknown_81A1530 -gUnknown_81A1530: @ 81A1530 -.string " Huh?! Oh{COMMA} no{COMMA} please!\0" -.align 2, 0 - -.global gUnknown_81A154C -gUnknown_81A154C: @ 81A154C -.string " Hah? Oh{COMMA} no{COMMA} come on!\0" -.align 2, 0 - -.global gUnknown_81A1568 -gUnknown_81A1568: @ 81A1568 -.string "Refuse.\0" -.align 2, 0 - -.global gUnknown_81A1570 -gUnknown_81A1570: @ 81A1570 -.string "Form a rescue team.\0" -.align 2, 0 - -.global gUnknown_81A1584 -gUnknown_81A1584: @ 81A1584 -.string " {ARG_NICKNAME_0}{COMMA} with you{COMMA}\n" -.string "I think we could even become the world{APOSTROPHE}s\n" -.string "best rescue team. How about it?\0" -.align 2, 0 - -.global gUnknown_81A15E4 -gUnknown_81A15E4: @ 81A15E4 -.string " I think we could become\n" -.string "the world{APOSTROPHE}s number-one rescue team{COMMA}\n" -.string "{ARG_NICKNAME_0}. What do you think?\0" -.align 2, 0 - -.global gUnknown_81A1640 -gUnknown_81A1640: @ 81A1640 -.string " {ARG_NICKNAME_0}{COMMA} I think we{APOSTROPHE}d\n" -.string "make the world{APOSTROPHE}s greatest rescue team.\n" -.string "How about it?\0" -.align 2, 0 - -.global gUnknown_81A1690 -gUnknown_81A1690: @ 81A1690 -.string " Would you like to join me\n" -.string "on a rescue team?\0" -.align 2, 0 - -.global gUnknown_81A16C0 -gUnknown_81A16C0: @ 81A16C0 -.string " So{COMMA} uh...{WAIT_PRESS}\n" -.string "Well{COMMA} I liked how you handled yourself\n" -.string "when we rescued {ARG_NICKNAME_2}.\0" -.align 2, 0 - -.global gUnknown_81A1710 -gUnknown_81A1710: @ 81A1710 -.string " I want to help change things\n" -.string "so all the Pokémon can live in peace.\0" -.align 2, 0 - -.global gUnknown_81A1754 -gUnknown_81A1754: @ 81A1754 -.string " I want to help Pokémon in\n" -.string "these tough times.\0" -.align 2, 0 - -.global gUnknown_81A1784 -gUnknown_81A1784: @ 81A1784 -.string " Because of those disasters{COMMA}\n" -.string "many Pokémon are suffering.\0" -.align 2, 0 - -.global gUnknown_81A17C0 -gUnknown_81A17C0: @ 81A17C0 -.string " For some reason{COMMA} there have\n" -.string "been many natural disasters lately.\0" -.align 2, 0 - -.global gUnknown_81A1804 -gUnknown_81A1804: @ 81A1804 -.string " You know{COMMA} just like the\n" -.string "fissure {ARG_NICKNAME_2} fell into...\0" -.align 2, 0 - -.global gUnknown_81A1838 -gUnknown_81A1838: @ 81A1838 -.string " Would you like to form\n" -.string "a rescue team with me?\0" -.align 2, 0 - -.global gUnknown_81A1868 -gUnknown_81A1868: @ 81A1868 -.string " So{COMMA} um...{WAIT_PRESS}\n" -.string "Well{COMMA} I saw how good you were when\n" -.string "we rescued {ARG_NICKNAME_2}...\0" -.align 2, 0 - -.global gUnknown_81A18B0 -gUnknown_81A18B0: @ 81A18B0 -.string " I want to help make the\n" -.string "world a safer place for Pokémon.\0" -.align 2, 0 - -.global gUnknown_81A18EC -gUnknown_81A18EC: @ 81A18EC -.string " I want to do good.\n" -.string "I want to help Pokémon like that.\0" -.align 2, 0 - -.global gUnknown_81A1924 -gUnknown_81A1924: @ 81A1924 -.string " Many Pokémon are suffering\n" -.string "from these natural disasters.\0" -.align 2, 0 - -.global gUnknown_81A1960 -gUnknown_81A1960: @ 81A1960 -.string " There have been all sorts\n" -.string "of natural disasters recently.\0" -.align 2, 0 - -.global gUnknown_81A199C -gUnknown_81A199C: @ 81A199C -.string " Just like the fissure\n" -.string "{ARG_NICKNAME_2} fell into...\0" -.align 2, 0 - -.global gUnknown_81A19C4 -gUnknown_81A19C4: @ 81A19C4 -.string " How would you like to form\n" -.string "a rescue team with me?\0" -.align 2, 0 - -.global gUnknown_81A19F8 -gUnknown_81A19F8: @ 81A19F8 -.string " And{COMMA} uh...{WAIT_PRESS}\n" -.string "I think you{APOSTROPHE}re capable after seeing\n" -.string "how you did rescuing {ARG_NICKNAME_2}.\0" -.align 2, 0 - -.global gUnknown_81A1A48 -gUnknown_81A1A48: @ 81A1A48 -.string " I want to help make\n" -.string "this a safer place for Pokémon.\0" -.align 2, 0 - -.global gUnknown_81A1A80 -gUnknown_81A1A80: @ 81A1A80 -.string " I want to help Pokémon like\n" -.string "that.\0" -.align 2, 0 - -.global gUnknown_81A1AA4 -gUnknown_81A1AA4: @ 81A1AA4 -.string " A lot of Pokémon out there\n" -.string "are hurting from those disasters.\0" -.align 2, 0 - -.global gUnknown_81A1AE4 -gUnknown_81A1AE4: @ 81A1AE4 -.string " There{APOSTROPHE}ve been other\n" -.string "natural disasters like that all of a sudden.\0" -.align 2, 0 - -.global gUnknown_81A1B28 -gUnknown_81A1B28: @ 81A1B28 -.string " You know that fissure\n" -.string "{ARG_NICKNAME_2} fell into?\0" -.align 2, 0 - -.global gUnknown_81A1B50 -gUnknown_81A1B50: @ 81A1B50 -.string " This is your {COLOR_1 CYAN}Mailbox{END_COLOR_TEXT_1}.{WAIT_PRESS}\n" -.string "They deliver mail from Pokémon here.\0" -.align 2, 0 - -.global gUnknown_81A1B94 -gUnknown_81A1B94: @ 81A1B94 -.string " This is your {COLOR_1 CYAN}Mailbox{END_COLOR_TEXT_1}.{WAIT_PRESS}\n" -.string "This is where you{APOSTROPHE}ll get mail from\n" -.string "other Pokémon.\0" -.align 2, 0 - -.global gUnknown_81A1BE8 -gUnknown_81A1BE8: @ 81A1BE8 -.string " I was sure you would\n" -.string "like it.\0" -.align 2, 0 - -.global gUnknown_81A1C08 -gUnknown_81A1C08: @ 81A1C08 -.string " In fact{COMMA} I was sure that\n" -.string "you{APOSTROPHE}d like it.\0" -.align 2, 0 - -.global gUnknown_81A1C38 -gUnknown_81A1C38: @ 81A1C38 -.string " I thought so.\n" -.string "I thought this would make a good place\n" -.string "for you to live{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81A1C88 -gUnknown_81A1C88: @ 81A1C88 -.string " Oh{COMMA} {ARG_NICKNAME_0}.\n" -.string "You{APOSTROPHE}re impressed{COMMA} aren{APOSTROPHE}t you?\0" -.align 2, 0 - -.global gUnknown_81A1CB8 -gUnknown_81A1CB8: @ 81A1CB8 -.string " I thought you{APOSTROPHE}d like it.\n" -.string "I figured you{APOSTROPHE}d find this an easy place\n" -.string "to live{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81A1D10 -gUnknown_81A1D10: @ 81A1D10 -.string " Oh? {ARG_NICKNAME_0}.\n" -.string "I can tell you{APOSTROPHE}re impressed.\0" -.align 2, 0 - -.global gUnknown_81A1D3C -gUnknown_81A1D3C: @ 81A1D3C -.string "(Maybe I feel that way because I{APOSTROPHE}m\n" -.string "{ARG_POKEMON_0}!)\0" -.align 2, 0 - -.global gUnknown_81A1D68 -gUnknown_81A1D68: @ 81A1D68 -.string "(It doesn{APOSTROPHE}t matter! I{APOSTROPHE}m happy!)\0" -.align 2, 0 - -.global gUnknown_81A1D8C -gUnknown_81A1D8C: @ 81A1D8C -.string "(Maybe this is what it feels like to want\n" -.string "to wag your tail...)\0" -.align 2, 0 - -.global gUnknown_81A1DCC -gUnknown_81A1DCC: @ 81A1DCC -.string "(It might be an instinct thing for\n" -.string "Pokémon...)\0" -.align 2, 0 - -.global gUnknown_81A1DFC -gUnknown_81A1DFC: @ 81A1DFC -.string "(I{APOSTROPHE}m a human being{COMMA} but I like this place.\n" -.string "I feel weirdly happy!)\0" -.align 2, 0 - -.global gUnknown_81A1E44 -gUnknown_81A1E44: @ 81A1E44 -.string "(I can{APOSTROPHE}t explain{COMMA} but I{APOSTROPHE}m happy!)\0" -.align 2, 0 - -.global gUnknown_81A1E6C -gUnknown_81A1E6C: @ 81A1E6C -.string "(Wow!)\0" -.align 2, 0 - -.global gUnknown_81A1E74 -gUnknown_81A1E74: @ 81A1E74 -.string " Well{COMMA} this is the place...\0" -.align 2, 0 - -.global gUnknown_81A1E94 -gUnknown_81A1E94: @ 81A1E94 -.byte 0xf6, 0x00, 0xd9, 0x06, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, west -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, north -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, west -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x99, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xda, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf2, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A20D4 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf2, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A20BC -closeThread -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf2, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A20A4 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A20A4 -gUnknown_81A20A4: @ 81A20A4 -.string "SWITCH MENU RESULT 2\n\0" -.align 2, 0 - -.global gUnknown_81A20BC -gUnknown_81A20BC: @ 81A20BC -.string "SWITCH MENU RESULT 1\n\0" -.align 2, 0 - -.global gUnknown_81A20D4 -gUnknown_81A20D4: @ 81A20D4 -.string "SWITCH MENU RESULT CANCEL\n\0" -.align 2, 0 - -.global gUnknown_81A20F0 -gUnknown_81A20F0: @ 81A20F0 -.byte 0xf6, 0x00, 0xfd, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x48, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81A21B0 -gUnknown_81A21B0: @ 81A21B0 -.byte 0xf6, 0x00, 0x0c, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 42 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81A22B0 -gUnknown_81A22B0: @ 81A22B0 -.byte 0xf6, 0x00, 0x1f, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x13, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A2390 -gUnknown_81A2390: @ 81A2390 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A22B0 - -.global gUnknown_81A239C -gUnknown_81A239C: @ 81A239C -.byte 0xf6, 0x00, 0x32, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A23FC -gUnknown_81A23FC: @ 81A23FC -.byte 0xf6, 0x00, 0x3b, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x03, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x04, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x02, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A39F8 -closeTextBox -setFlag 0x06 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A39A4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A3984 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A3928 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A390C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A38B8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A389C -closeTextBox -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A3854 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A3800 -.byte 0x2e, 0x15, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A37F8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A37F8 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A37E8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A37E8 -.byte 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A37A0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A3758 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A371C -closeTextBox -setFlag 0x06 -setFlag 0x04 -pause 0x3c -.byte 0x6b, 0x00, 0x00, 0x01, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x3b, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A3700 -.byte 0x49, 0x00, 0x00, 0x00, 0xd5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A36C4 -.byte 0xe1, 0x00, 0xd5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A3680 -closeTextBox -pause 0x0a -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A364C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A3614 -closeTextBox -pause 0x0a -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A35E0 -.byte 0x49, 0x00, 0x00, 0x00, 0xd5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A35B0 -.byte 0xe1, 0x00, 0xd5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x49, 0x00, 0x00, 0x00, 0xd5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A358C -.byte 0xe1, 0x00, 0xd5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0xd5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A3550 -.byte 0xe1, 0x00, 0xd5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -pause 0x1e -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A351C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A34F0 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A34A0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A3448 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A33EC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A33A8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A3348 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A32F8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A32A4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A3254 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A3218 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A31D4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A3180 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A3130 -closeTextBox -pause 0x1e -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A30E0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A30A4 -closeTextBox -pause 0x0a -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A3700 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A3084 -closeTextBox -pause 0x1e -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A304C -closeTextBox -pause 0x1e -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A3004 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A2FBC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A2F70 -closeTextBox -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819EAE8 -.byte 0x4c, 0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -rotate 0x04, shortestDir, east -pause 0x3c -closeTextBox -pause 0x0f -setFlag 0x06 -rotate 0x1e, shortestDir, southwest -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A2F5C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A2F3C -closeTextBox -setFlag 0x06 -.byte 0x95, 0x04, 0x0a, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4d, 0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A2F3C -gUnknown_81A2F3C: @ 81A2F3C -.string " Oh?\n" -.string "I wonder what it could be.\0" -.align 2, 0 - -.global gUnknown_81A2F5C -gUnknown_81A2F5C: @ 81A2F5C -.string " Huh? What{APOSTROPHE}s up?\0" -.align 2, 0 - -.global gUnknown_81A2F70 -gUnknown_81A2F70: @ 81A2F70 -.string " Nobody knows about us\n" -.string "since we{APOSTROPHE}re so new a team{COMMA} I guess.\n" -.string "Hahaha...\0" -.align 2, 0 - -.global gUnknown_81A2FBC -gUnknown_81A2FBC: @ 81A2FBC -.string " I guess no one knows us\n" -.string "because we just started this team.\n" -.string "Hahaha...\0" -.align 2, 0 - -.global gUnknown_81A3004 -gUnknown_81A3004: @ 81A3004 -.string " If there were any rescue\n" -.string "jobs{COMMA} we would be getting mail{COMMA} but...\0" -.align 2, 0 - -.global gUnknown_81A304C -gUnknown_81A304C: @ 81A304C -.string " OK{COMMA} so there isn{APOSTROPHE}t any\n" -.string "mail for us after all...\0" -.align 2, 0 - -.global gUnknown_81A3084 -gUnknown_81A3084: @ 81A3084 -.string "{CENTER_ALIGN}But the Mailbox was empty.\0" -.align 2, 0 - -.global gUnknown_81A30A4 -gUnknown_81A30A4: @ 81A30A4 -.string " Anything else?{WAIT_PRESS}\n" -.string "Is there any other mail...?{WAIT_PRESS}\n" -.string "Maybe not?\0" -.align 2, 0 - -.global gUnknown_81A30E0 -gUnknown_81A30E0: @ 81A30E0 -.string " And{COMMA} let{APOSTROPHE}s see...{WAIT_PRESS}\n" -.string "Is there any other mail...?{WAIT_PRESS}\n" -.string "Did we miss anything?\0" -.align 2, 0 - -.global gUnknown_81A3130 -gUnknown_81A3130: @ 81A3130 -.string " I{APOSTROPHE}ll put the {COLOR_1 CYAN}Pokémon News{END_COLOR_TEXT_1}\n" -.string "in the Mailbox.\n" -.string "You should read it later on.\0" -.align 2, 0 - -.global gUnknown_81A3180 -gUnknown_81A3180: @ 81A3180 -.string " And finally{COMMA} a copy of\n" -.string "the {COLOR_1 CYAN}Pokémon News{END_COLOR_TEXT_1}.{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s useful for rescue teams.\0" -.align 2, 0 - -.global gUnknown_81A31D4 -gUnknown_81A31D4: @ 81A31D4 -.string " Items are very useful{COMMA}\n" -.string "so let{APOSTROPHE}s use them on our adventures.\0" -.align 2, 0 - -.global gUnknown_81A3218 -gUnknown_81A3218: @ 81A3218 -.string " Let{APOSTROPHE}s put the stuff\n" -.string "Butterfree gave us in here for now.\0" -.align 2, 0 - -.global gUnknown_81A3254 -gUnknown_81A3254: @ 81A3254 -.string " This is a {COLOR_1 CYAN}Toolbox{END_COLOR_TEXT_1}.{WAIT_PRESS}\n" -.string "You use it for carrying items you find in\n" -.string "dungeons.\0" -.align 2, 0 - -.global gUnknown_81A32A4 -gUnknown_81A32A4: @ 81A32A4 -.string " First off{COMMA}\n" -.string "the {COLOR_1 CYAN}Rescue Team Badge{END_COLOR_TEXT_1}.{WAIT_PRESS}\n" -.string "It shows that we{APOSTROPHE}re a rescue team.\0" -.align 2, 0 - -.global gUnknown_81A32F8 -gUnknown_81A32F8: @ 81A32F8 -.string " I{APOSTROPHE}ll leave the {COLOR_1 CYAN}Pokémon News{END_COLOR_TEXT_1}\n" -.string "in the Mailbox.\n" -.string "You should read it later.\0" -.align 2, 0 - -.global gUnknown_81A3348 -gUnknown_81A3348: @ 81A3348 -.string " And we have here a copy of\n" -.string "the {COLOR_1 CYAN}Pokémon News{END_COLOR_TEXT_1}.{WAIT_PRESS}\n" -.string "It has useful information for rescuers.\0" -.align 2, 0 - -.global gUnknown_81A33A8 -gUnknown_81A33A8: @ 81A33A8 -.string " But items are really useful.\n" -.string "Let{APOSTROPHE}s use them on our adventures.\0" -.align 2, 0 - -.global gUnknown_81A33EC -gUnknown_81A33EC: @ 81A33EC -.string " I{APOSTROPHE}ll put the stuff that\n" -.string "Butterfree gave us in here.\n" -.string "Might as well put it to good use.\0" -.align 2, 0 - -.global gUnknown_81A3448 -gUnknown_81A3448: @ 81A3448 -.string " This {COLOR_1 CYAN}Toolbox{END_COLOR_TEXT_1} too...{WAIT_PRESS}\n" -.string "You can use it for keeping items that you\n" -.string "find in dungeons.\0" -.align 2, 0 - -.global gUnknown_81A34A0 -gUnknown_81A34A0: @ 81A34A0 -.string " This {COLOR_1 CYAN}Rescue Team Badge{END_COLOR_TEXT_1}...{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s proof that you{APOSTROPHE}re in a rescue team.\0" -.align 2, 0 - -.global gUnknown_81A34F0 -gUnknown_81A34F0: @ 81A34F0 -.string " Yes!{WAIT_PRESS}\n" -.string "There are some good things here!\0" -.align 2, 0 - -.global gUnknown_81A351C -gUnknown_81A351C: @ 81A351C -.string " Yeah!{WAIT_PRESS}\n" -.string "There{APOSTROPHE}s all sorts of good stuff in it!\0" -.align 2, 0 - -.global gUnknown_81A3550 -gUnknown_81A3550: @ 81A3550 -.string "{CENTER_ALIGN}There was also an issue of\n" -.string "{CENTER_ALIGN}{COLOR_1 CYAN}Pokémon News{END_COLOR_TEXT_1} inside!\0" -.align 2, 0 - -.global gUnknown_81A358C -gUnknown_81A358C: @ 81A358C -.string "{CENTER_ALIGN}There was a {COLOR_1 CYAN}Toolbox{END_COLOR_TEXT_1} inside!\0" -.align 2, 0 - -.global gUnknown_81A35B0 -gUnknown_81A35B0: @ 81A35B0 -.string "{CENTER_ALIGN}There was\n" -.string "{CENTER_ALIGN}a {COLOR_1 CYAN}Rescue Team Badge{END_COLOR_TEXT_1} inside!\0" -.align 2, 0 - -.global gUnknown_81A35E0 -gUnknown_81A35E0: @ 81A35E0 -.string "{CENTER_ALIGN}{ARG_NICKNAME_1} opened\n" -.string "{CENTER_ALIGN}the {COLOR_1 CYAN}Rescue Team Starter Set{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_81A3614 -gUnknown_81A3614: @ 81A3614 -.string " They always give you one\n" -.string "if you start a rescue team.\0" -.align 2, 0 - -.global gUnknown_81A364C -gUnknown_81A364C: @ 81A364C -.string " You always get one when\n" -.string "you start a rescue team.\0" -.align 2, 0 - -.global gUnknown_81A3680 -gUnknown_81A3680: @ 81A3680 -.string " I knew it{APOSTROPHE}d be there!{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s the {COLOR_1 CYAN}Rescue Team Starter Set{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_81A36C4 -gUnknown_81A36C4: @ 81A36C4 -.string "{CENTER_ALIGN}The Mailbox contained\n" -.string "{CENTER_ALIGN}a {COLOR_1 CYAN}Rescue Team Starter Set{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_81A3700 -gUnknown_81A3700: @ 81A3700 -.string "{CENTER_ALIGN}{ARG_NICKNAME_1} checked the Mailbox.\0" -.align 2, 0 - -.global gUnknown_81A371C -gUnknown_81A371C: @ 81A371C -.string " Oh{COMMA} yeah!{WAIT_PRESS}\n" -.string "Maybe there{APOSTROPHE}s something in the Mailbox...\0" -.align 2, 0 - -.global gUnknown_81A3758 -gUnknown_81A3758: @ 81A3758 -.string " ...But{COMMA} anyway...\n" -.string "We don{APOSTROPHE}t have any job offers yet...\n" -.string "Hahahaha...\0" -.align 2, 0 - -.global gUnknown_81A37A0 -gUnknown_81A37A0: @ 81A37A0 -.string " ...So{COMMA} anyway...\n" -.string "We don{APOSTROPHE}t have any job offers yet...\n" -.string "Hahahaha...\0" -.align 2, 0 - -.global gUnknown_81A37E8 -gUnknown_81A37E8: @ 81A37E8 -.string " ............\0" -.align 2, 0 - -.global gUnknown_81A37F8 -gUnknown_81A37F8: @ 81A37F8 -.string " ......\0" -.align 2, 0 - -.global gUnknown_81A3800 -gUnknown_81A3800: @ 81A3800 -.string " Anyway...{WAIT_PRESS}\n" -.string "Today marks the start of our rescue team!\n" -.string "Let{APOSTROPHE}s always do our best!\0" -.align 2, 0 - -.global gUnknown_81A3854 -gUnknown_81A3854: @ 81A3854 -.string " Anyway...{WAIT_PRESS}\n" -.string "Our rescue team officially begins!\n" -.string "Let{APOSTROPHE}s do this right!\0" -.align 2, 0 - -.global gUnknown_81A389C -gUnknown_81A389C: @ 81A389C -.string " I must have snoozed off.\0" -.align 2, 0 - -.global gUnknown_81A38B8 -gUnknown_81A38B8: @ 81A38B8 -.string " Hahaha{COMMA} sorry!{WAIT_PRESS}\n" -.string "I was so excited{COMMA} I came out here at\n" -.string "dawn to wait for you.\0" -.align 2, 0 - -.global gUnknown_81A390C -gUnknown_81A390C: @ 81A390C -.string " I must have fallen asleep.\0" -.align 2, 0 - -.global gUnknown_81A3928 -gUnknown_81A3928: @ 81A3928 -.string " Ahaha{COMMA} sorry!{WAIT_PRESS}\n" -.string "I was so excited about today{COMMA} I{APOSTROPHE}ve been\n" -.string "waiting here since dawn...\0" -.align 2, 0 - -.global gUnknown_81A3984 -gUnknown_81A3984: @ 81A3984 -.string " I guess I just fell asleep!\0" -.align 2, 0 - -.global gUnknown_81A39A4 -gUnknown_81A39A4: @ 81A39A4 -.string " Hahaha{COMMA} sorry!{WAIT_PRESS}\n" -.string "I was so excited{COMMA} I{APOSTROPHE}ve been waiting out\n" -.string "here since dawn...\0" -.align 2, 0 - -.global gUnknown_81A39F8 -gUnknown_81A39F8: @ 81A39F8 -.string " ...Hunh?! Oh{COMMA} no!\0" -.align 2, 0 - -.global gUnknown_81A3A10 -gUnknown_81A3A10: @ 81A3A10 -.byte 0xf6, 0x00, 0xfb, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 6 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x4c, 0x00, 0x00, 0x00, 0xe2, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x95, 0x04, 0x0a, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x95, 0x04, 0x0a, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x95, 0x04, 0x0a, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, northeast -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x95, 0x04, 0x0a, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, northeast -.byte 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x95, 0x04, 0x0a, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x95, 0x04, 0x0a, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x95, 0x04, 0x0a, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x95, 0x04, 0x0a, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x1e, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0x95, 0x04, 0x0a, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81A3EF0 -gUnknown_81A3EF0: @ 81A3EF0 -.byte 0xf6, 0x00, 0x4c, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x1e, CCW, south -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xf5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819EAE0 -pause 0x3c -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x68, 0x00, 0x00, 0x01, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x1e, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A40B0 -gUnknown_81A40B0: @ 81A40B0 -.byte 0xf6, 0x00, 0x6b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A40E0 -gUnknown_81A40E0: @ 81A40E0 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A40B0 - -.global gUnknown_81A40EC -gUnknown_81A40EC: @ 81A40EC -.byte 0xf6, 0x00, 0x73, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A411C -gUnknown_81A411C: @ 81A411C -.byte 0xf6, 0x00, 0x79, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A423C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4210 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A41FC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A41CC -closeTextBox -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A41CC -gUnknown_81A41CC: @ 81A41CC -.string " {ARG_NICKNAME_0}{COMMA} will you\n" -.string "check the Mailbox{COMMA} please?\0" -.align 2, 0 - -.global gUnknown_81A41FC -gUnknown_81A41FC: @ 81A41FC -.string " Could this be...?\0" -.align 2, 0 - -.global gUnknown_81A4210 -gUnknown_81A4210: @ 81A4210 -.string " {ARG_NICKNAME_0}{COMMA} how about\n" -.string "checking your Mailbox?\0" -.align 2, 0 - -.global gUnknown_81A423C -gUnknown_81A423C: @ 81A423C -.string " Maybe this is it...\0" -.align 2, 0 - -.global gUnknown_81A4254 -gUnknown_81A4254: @ 81A4254 -.byte 0xf6, 0x00, 0x87, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xca, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4334 -closeTextBox -.byte 0x1d, 0x00, 0x14, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819C710 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819C6EC -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A4334 -gUnknown_81A4334: @ 81A4334 -.string "{CENTER_ALIGN}{ARG_NICKNAME_0} checked the Mailbox.\0" -.align 2, 0 - -.global gUnknown_81A4350 -gUnknown_81A4350: @ 81A4350 -.byte 0xf6, 0x00, 0x98, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x1d, 0x01, 0x13, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A4380 -gUnknown_81A4380: @ 81A4380 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4350 - -.global gUnknown_81A438C -gUnknown_81A438C: @ 81A438C -.byte 0xf6, 0x00, 0xa0, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A43EC -gUnknown_81A43EC: @ 81A43EC -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A438C - -.global gUnknown_81A43F8 -gUnknown_81A43F8: @ 81A43F8 -.byte 0xf6, 0x00, 0xab, 0x08 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A44CC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A44A8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A44A8 -gUnknown_81A44A8: @ 81A44A8 -.string " {ARG_NICKNAME_0}{COMMA} please check\n" -.string "the Mailbox.\0" -.align 2, 0 - -.global gUnknown_81A44CC -gUnknown_81A44CC: @ 81A44CC -.string " Hey{COMMA} {ARG_NICKNAME_0}{COMMA} aren{APOSTROPHE}t\n" -.string "you going to check the Mailbox?\0" -.align 2, 0 - -.global gUnknown_81A4504 -gUnknown_81A4504: @ 81A4504 -.byte 0xf6, 0x00, 0xb9, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A4574 -gUnknown_81A4574: @ 81A4574 -.byte 0xf6, 0x00, 0xc3, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xd8, 0x01, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00 -.byte 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A47B4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A479C -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4790 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBB0 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4754 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4714 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A46E4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A46A4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xb8 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A46A4 -gUnknown_81A46A4: @ 81A46A4 -.string " Tell me when you{APOSTROPHE}re\n" -.string "ready.{WAIT_PRESS}\n" -.string "We{APOSTROPHE}ll leave right away then.\0" -.align 2, 0 - -.global gUnknown_81A46E4 -gUnknown_81A46E4: @ 81A46E4 -.string " Oh{COMMA} OK.\n" -.string "I{APOSTROPHE}ll wait until you{APOSTROPHE}re all set.\0" -.align 2, 0 - -.global gUnknown_81A4714 -gUnknown_81A4714: @ 81A4714 -.string " Give me a shout when you{APOSTROPHE}re\n" -.string "ready.\n" -.string "We{APOSTROPHE}ll get going then.\0" -.align 2, 0 - -.global gUnknown_81A4754 -gUnknown_81A4754: @ 81A4754 -.string " Oh{COMMA} all right.\n" -.string "I{APOSTROPHE}ll wait here until you{APOSTROPHE}re ready.\0" -.align 2, 0 - -.global gUnknown_81A4790 -gUnknown_81A4790: @ 81A4790 -.string "All set!\0" -.align 2, 0 - -.global gUnknown_81A479C -gUnknown_81A479C: @ 81A479C -.string " OK!\n" -.string "Are you all ready?\0" -.align 2, 0 - -.global gUnknown_81A47B4 -gUnknown_81A47B4: @ 81A47B4 -.string " Oh{COMMA} hey!\n" -.string "Are you all ready to roll?\0" -.align 2, 0 - -.global gUnknown_81A47DC -gUnknown_81A47DC: @ 81A47DC -.byte 0xf6, 0x00, 0xda, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x1e, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A484C -gUnknown_81A484C: @ 81A484C -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A47DC - -.global gUnknown_81A4858 -gUnknown_81A4858: @ 81A4858 -.byte 0xf6, 0x00, 0xe6, 0x08 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A48C8 -gUnknown_81A48C8: @ 81A48C8 -.byte 0xf6, 0x00, 0xf0, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00 -.byte 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x04, 0x00 -.byte 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x01, 0x00 -.byte 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A5068 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A5030 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x1e, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A5018 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A5008 -.byte 0x35, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4FE4 -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4FAC -.byte 0x35, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4F6C -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4F34 -.byte 0x35, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4EDC -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4E94 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x0f, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x01, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4E68 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4E38 -.byte 0xd9, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4E24 -.byte 0xd9, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4E14 -.byte 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4E08 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4DFC -closeTextBox -.byte 0xd8, 0x01, 0xff, 0xff -.byte 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4DD0 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4DAC -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4E24 -.byte 0xd9, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4E14 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x0c, 0x02, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4D74 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4D48 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 42 -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A4D48 -gUnknown_81A4D48: @ 81A4D48 -.string " That{APOSTROPHE}s the spirit!\n" -.string "Let{APOSTROPHE}s do our best!\0" -.align 2, 0 - -.global gUnknown_81A4D74 -gUnknown_81A4D74: @ 81A4D74 -.string " That{APOSTROPHE}s what I want to hear!\n" -.string "Let{APOSTROPHE}s do this right!\0" -.align 2, 0 - -.global gUnknown_81A4DAC -gUnknown_81A4DAC: @ 81A4DAC -.string " It{APOSTROPHE}s our first job!\n" -.string "Let{APOSTROPHE}s go!\0" -.align 2, 0 - -.global gUnknown_81A4DD0 -gUnknown_81A4DD0: @ 81A4DD0 -.string " It{APOSTROPHE}s our very first job?\n" -.string "Let{APOSTROPHE}s do it!\0" -.align 2, 0 - -.global gUnknown_81A4DFC -gUnknown_81A4DFC: @ 81A4DFC -.string " Huh? Why?\0" -.align 2, 0 - -.global gUnknown_81A4E08 -gUnknown_81A4E08: @ 81A4E08 -.string " Hah? Why?\0" -.align 2, 0 - -.global gUnknown_81A4E14 -gUnknown_81A4E14: @ 81A4E14 -.string "Let{APOSTROPHE}s not go.\0" -.align 2, 0 - -.global gUnknown_81A4E24 -gUnknown_81A4E24: @ 81A4E24 -.string "Yes! Let{APOSTROPHE}s go!\0" -.align 2, 0 - -.global gUnknown_81A4E38 -gUnknown_81A4E38: @ 81A4E38 -.string " What do you think?\n" -.string "Do you think we should go?\0" -.align 2, 0 - -.global gUnknown_81A4E68 -gUnknown_81A4E68: @ 81A4E68 -.string " What do you think?\n" -.string "Should we go for it?\0" -.align 2, 0 - -.global gUnknown_81A4E94 -gUnknown_81A4E94: @ 81A4E94 -.string " PLEASE. WE NEED HELP. BZZ BZZ BZZ.\n" -.string "\n" -.string " FROM MAGNEMITE{APOSTROPHE}S FRIEND{QUOTE_END}\0" -.align 2, 0 - -.global gUnknown_81A4EDC -gUnknown_81A4EDC: @ 81A4EDC -.string " THAT ISN{APOSTROPHE}T ENOUGH TO FORM\n" -.string " A MAGNETON. IT{APOSTROPHE}S NOT COMPLETE\n" -.string " THE WAY IT IS NOW.\0" -.align 2, 0 - -.global gUnknown_81A4F34 -gUnknown_81A4F34: @ 81A4F34 -.string " AND IT STUCK TOGETHER MAGNEMITE\n" -.string " AND MAGNEMITE...\0" -.align 2, 0 - -.global gUnknown_81A4F6C -gUnknown_81A4F6C: @ 81A4F6C -.string " A STRANGE ELECTROMAGNETIC WAVE\n" -.string " FLOWED THROUGH A DUNGEON...\0" -.align 2, 0 - -.global gUnknown_81A4FAC -gUnknown_81A4FAC: @ 81A4FAC -.string " PLEASE. WE NEED YOUR HELP.\n" -.string " MAGNEMITE IS IN TROUBLE.\0" -.align 2, 0 - -.global gUnknown_81A4FE4 -gUnknown_81A4FE4: @ 81A4FE4 -.string " I HEARD ABOUT YOU FROM CATERPIE.\0" -.align 2, 0 - -.global gUnknown_81A5008 -gUnknown_81A5008: @ 81A5008 -.string "{QUOTE_START}BZZ BZZ BZZ!\0" -.align 2, 0 - -.global gUnknown_81A5018 -gUnknown_81A5018: @ 81A5018 -.string "{CENTER_ALIGN}{ARG_NICKNAME_0} read the letter.\0" -.align 2, 0 - -.global gUnknown_81A5030 -gUnknown_81A5030: @ 81A5030 -.string " Maybe it{APOSTROPHE}s a rescue job\n" -.string "offer!{WAIT_PRESS}\n" -.string "What does it say?\0" -.align 2, 0 - -.global gUnknown_81A5068 -gUnknown_81A5068: @ 81A5068 -.string " Maybe it{APOSTROPHE}s a rescue job\n" -.string "request?!{WAIT_PRESS}\n" -.string "Come on{COMMA} what{APOSTROPHE}s it say?\0" -.align 2, 0 - -.global gUnknown_81A50AC -gUnknown_81A50AC: @ 81A50AC -.byte 0xf6, 0x00, 0x3e, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -closeThread - -.global gUnknown_81A512C -gUnknown_81A512C: @ 81A512C -.byte 0xf6, 0x00, 0x49, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 3 -.byte 0x70, 0x00, 0x00, 0x02, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -pause 0x14 -setFlag 0x05 -closeThread - -.global gUnknown_81A51FC -gUnknown_81A51FC: @ 81A51FC -.byte 0xf6, 0x00, 0x59, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 42 -closeThread - -.global gUnknown_81A529C -gUnknown_81A529C: @ 81A529C -.byte 0xf6, 0x00, 0x66, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A536C -gUnknown_81A536C: @ 81A536C -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A529C - -.global gUnknown_81A5378 -gUnknown_81A5378: @ 81A5378 -.byte 0xf6, 0x00, 0x78, 0x09 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x2e, 0x02, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819F1B8 -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A557C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A5540 -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A551C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A54F8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A54F8 -gUnknown_81A54F8: @ 81A54F8 -.string " Let{APOSTROPHE}s try to get it right\n" -.string "today!\0" -.align 2, 0 - -.global gUnknown_81A551C -gUnknown_81A551C: @ 81A551C -.string " Let{APOSTROPHE}s get it done right today!\0" -.align 2, 0 - -.global gUnknown_81A5540 -gUnknown_81A5540: @ 81A5540 -.string " We failed {ARG_NICKNAME_2}{APOSTROPHE}s\n" -.string "rescue badly yesterday{COMMA} didn{APOSTROPHE}t we?\0" -.align 2, 0 - -.global gUnknown_81A557C -gUnknown_81A557C: @ 81A557C -.string " We sure loused up on\n" -.string "{ARG_NICKNAME_2}{APOSTROPHE}s rescue yesterday.\0" -.align 2, 0 - -.global gUnknown_81A55AC -gUnknown_81A55AC: @ 81A55AC -.byte 0xf6, 0x00, 0x94, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x59, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xa0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A564C -gUnknown_81A564C: @ 81A564C -.byte 0xf6, 0x00, 0xa1, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A566C -gUnknown_81A566C: @ 81A566C -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A564C - -.global gUnknown_81A5678 -gUnknown_81A5678: @ 81A5678 -.byte 0xf6, 0x00, 0xa8, 0x09 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A56A8 -gUnknown_81A56A8: @ 81A56A8 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A5678 - -.global gUnknown_81A56B4 -gUnknown_81A56B4: @ 81A56B4 -.byte 0xf6, 0x00, 0xb0, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A590C -closeTextBox -.byte 0x93, 0x08, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A58E0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A58B4 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A588C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A5854 -closeTextBox -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A5854 -gUnknown_81A5854: @ 81A5854 -.string " We have to hurry.\n" -.string "Magnemite{APOSTROPHE}s waiting to be rescued!\0" -.align 2, 0 - -.global gUnknown_81A588C -gUnknown_81A588C: @ 81A588C -.string " Let{APOSTROPHE}s go rescue Magnemite\n" -.string "already!\0" -.align 2, 0 - -.global gUnknown_81A58B4 -gUnknown_81A58B4: @ 81A58B4 -.string " {COLOR_1 YELLOW_4}Thunderwave Cave{END_COLOR_TEXT_1} is \n" -.string "out this way.\0" -.align 2, 0 - -.global gUnknown_81A58E0 -gUnknown_81A58E0: @ 81A58E0 -.string " {COLOR_1 YELLOW_4}Thunderwave Cave{END_COLOR_TEXT_1} is\n" -.string "over this way!\0" -.align 2, 0 - -.global gUnknown_81A590C -gUnknown_81A590C: @ 81A590C -.string " {ARG_NICKNAME_0}!\n" -.string "The dungeon isn{APOSTROPHE}t that way.\0" -.align 2, 0 - -.global gUnknown_81A5930 -gUnknown_81A5930: @ 81A5930 -.byte 0xf6, 0x00, 0xcd, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x95, 0x08, 0x0a, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A5A40 -gUnknown_81A5A40: @ 81A5A40 -.byte 0xf6, 0x00, 0xe1, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A5A70 -gUnknown_81A5A70: @ 81A5A70 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A5A40 - -.global gUnknown_81A5A7C -gUnknown_81A5A7C: @ 81A5A7C -.byte 0xf6, 0x00, 0xe9, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A590C -closeTextBox -.byte 0x93, 0x08, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A58E0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A58B4 -closeTextBox -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A588C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A5854 -closeTextBox -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A5C1C -gUnknown_81A5C1C: @ 81A5C1C -.byte 0xf6, 0x00, 0x06, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x95, 0x08, 0x0a, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A5D2C -gUnknown_81A5D2C: @ 81A5D2C -.byte 0xf6, 0x00, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A5DCC -gUnknown_81A5DCC: @ 81A5DCC -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A5D2C - -.global gUnknown_81A5DD8 -gUnknown_81A5DD8: @ 81A5DD8 -.byte 0xf6, 0x00, 0x29, 0x0a -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A62B4 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A627C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A624C -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6204 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A61EC -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A61B4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6188 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6140 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A611C -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A60CC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A60A0 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6058 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6034 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A5FFC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A5FC8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0a, CW, west -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A5FC8 -gUnknown_81A5FC8: @ 81A5FC8 -.string " Let{APOSTROPHE}s keep up our good work\n" -.string "tomorrow.\n" -.string "See you.\0" -.align 2, 0 - -.global gUnknown_81A5FFC -gUnknown_81A5FFC: @ 81A5FFC -.string " I{APOSTROPHE}m exhausted now.\n" -.string "I{APOSTROPHE}ve got to go get some sleep.\0" -.align 2, 0 - -.global gUnknown_81A6034 -gUnknown_81A6034: @ 81A6034 -.string " I was really tense and\n" -.string "nervous.\0" -.align 2, 0 - -.global gUnknown_81A6058 -gUnknown_81A6058: @ 81A6058 -.string " Actually{COMMA} since this was our\n" -.string "first job as a proper rescue team...\0" -.align 2, 0 - -.global gUnknown_81A60A0 -gUnknown_81A60A0: @ 81A60A0 -.string " Let{APOSTROPHE}s do good again\n" -.string "tomorrow.\n" -.string "See you!\0" -.align 2, 0 - -.global gUnknown_81A60CC -gUnknown_81A60CC: @ 81A60CC -.string " I can{APOSTROPHE}t believe how tired\n" -.string "I am.\n" -.string "I{APOSTROPHE}m going to go home and get some sleep.\0" -.align 2, 0 - -.global gUnknown_81A611C -gUnknown_81A611C: @ 81A611C -.string " I was really{COMMA} really nervous.\0" -.align 2, 0 - -.global gUnknown_81A6140 -gUnknown_81A6140: @ 81A6140 -.string " I need to confess.\n" -.string "Since that was our first job as a rescue\n" -.string "team...\0" -.align 2, 0 - -.global gUnknown_81A6188 -gUnknown_81A6188: @ 81A6188 -.string " Let{APOSTROPHE}s do this again\n" -.string "tomorrow.\n" -.string "See you.\0" -.align 2, 0 - -.global gUnknown_81A61B4 -gUnknown_81A61B4: @ 81A61B4 -.string " I{APOSTROPHE}m wiped out.\n" -.string "I{APOSTROPHE}ll go home and get some sleep.\0" -.align 2, 0 - -.global gUnknown_81A61EC -gUnknown_81A61EC: @ 81A61EC -.string " I was really nervous.\0" -.align 2, 0 - -.global gUnknown_81A6204 -gUnknown_81A6204: @ 81A6204 -.string " I have to admit{COMMA} since\n" -.string "that was our first job as a rescue team...\0" -.align 2, 0 - -.global gUnknown_81A624C -gUnknown_81A624C: @ 81A624C -.string " I{APOSTROPHE}m glad our rescue mission\n" -.string "went well today.\0" -.align 2, 0 - -.global gUnknown_81A627C -gUnknown_81A627C: @ 81A627C -.string " I{APOSTROPHE}m so glad our rescue\n" -.string "mission went so well today.\0" -.align 2, 0 - -.global gUnknown_81A62B4 -gUnknown_81A62B4: @ 81A62B4 -.string " Boy{COMMA} I{APOSTROPHE}m sure glad our\n" -.string "rescue went well today.\0" -.align 2, 0 - -.global gUnknown_81A62E8 -gUnknown_81A62E8: @ 81A62E8 -.byte 0xf6, 0x00, 0x4c, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A6348 -gUnknown_81A6348: @ 81A6348 -.byte 0xf6, 0x00, 0x55, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x0c, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A6378 -gUnknown_81A6378: @ 81A6378 -.byte 0x93, 0x01, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6348 - -.global gUnknown_81A6384 -gUnknown_81A6384: @ 81A6384 -.byte 0xf6, 0x00, 0x5d, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xca, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4334 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6474 -closeTextBox -.byte 0x1d, 0x00, 0x19, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819C710 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819C6EC -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A6474 -gUnknown_81A6474: @ 81A6474 -.string "{CENTER_ALIGN}But there was no mail seeking\n" -.string "{CENTER_ALIGN}help from the rescue team.\0" -.align 2, 0 - -.global gUnknown_81A64B4 -gUnknown_81A64B4: @ 81A64B4 -.byte 0xf6, 0x00, 0x70, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x1d, 0x01, 0x18, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A64E4 -gUnknown_81A64E4: @ 81A64E4 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A64B4 - -.global gUnknown_81A64F0 -gUnknown_81A64F0: @ 81A64F0 -.byte 0xf6, 0x00, 0x78, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A6550 -gUnknown_81A6550: @ 81A6550 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A64F0 - -.global gUnknown_81A655C -gUnknown_81A655C: @ 81A655C -.byte 0xf6, 0x00, 0x83, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A65EC -closeTextBox -.byte 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A65EC -gUnknown_81A65EC: @ 81A65EC -.string "Oops!{WAIT_PRESS}\n" -.string "I{APOSTROPHE}d better check the Mailbox.\0" -.align 2, 0 - -.global gUnknown_81A6614 -gUnknown_81A6614: @ 81A6614 -.byte 0xf6, 0x00, 0x8f, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x84 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A6684 -gUnknown_81A6684: @ 81A6684 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6614 - -.global gUnknown_81A6690 -gUnknown_81A6690: @ 81A6690 -.byte 0xf6, 0x00, 0x9b, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A6700 -gUnknown_81A6700: @ 81A6700 -.byte 0xf6, 0x00, 0xa5, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6F10 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6EE0 -closeTextBox -.byte 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6EB4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6E90 -closeTextBox -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6E50 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6E10 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 5 -.byte 0xdb, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6DF8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6DE8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6DC8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6D9C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6D88 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6D60 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6D48 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6D24 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6CE8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6CA0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6C70 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6C40 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6BE4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6BB8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6B88 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6B30 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6C70 -closeTextBox -.byte 0x48, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x6b, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81A6B30 -gUnknown_81A6B30: @ 81A6B30 -.string " I think if we go to the\n" -.string "{COLOR_1 CYAN}Pelipper{END_COLOR_TEXT_1} {COLOR_1 CYAN}Post Office{END_COLOR_TEXT_1}{COMMA} there{APOSTROPHE}ll be jobs\n" -.string "posted.\0" -.align 2, 0 - -.global gUnknown_81A6B88 -gUnknown_81A6B88: @ 81A6B88 -.string " Well{COMMA} too bad.\n" -.string "Want to go to Pokémon Square?\0" -.align 2, 0 - -.global gUnknown_81A6BB8 -gUnknown_81A6BB8: @ 81A6BB8 -.string " Pokémon Square is over\n" -.string "here.\n" -.string "Let{APOSTROPHE}s go.\0" -.align 2, 0 - -.global gUnknown_81A6BE4 -gUnknown_81A6BE4: @ 81A6BE4 -.string " We should check the\n" -.string "{COLOR_1 CYAN}Pelipper{END_COLOR_TEXT_1} {COLOR_1 CYAN}Post Office{END_COLOR_TEXT_1}.\n" -.string "I think they{APOSTROPHE}ll have jobs posted.\0" -.align 2, 0 - -.global gUnknown_81A6C40 -gUnknown_81A6C40: @ 81A6C40 -.string " Oh{COMMA} well.\n" -.string "We should go to Pokémon Square.\0" -.align 2, 0 - -.global gUnknown_81A6C70 -gUnknown_81A6C70: @ 81A6C70 -.string " Pokémon Square{APOSTROPHE}s over\n" -.string "this way.\n" -.string "Let{APOSTROPHE}s go.\0" -.align 2, 0 - -.global gUnknown_81A6CA0 -gUnknown_81A6CA0: @ 81A6CA0 -.string " I think there will be jobs\n" -.string "posted at the {COLOR_1 CYAN}Pelipper Post Office{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_81A6CE8 -gUnknown_81A6CE8: @ 81A6CE8 -.string " Well{COMMA} no point moping.\n" -.string "Let{APOSTROPHE}s go check Pokémon Square.\0" -.align 2, 0 - -.global gUnknown_81A6D24 -gUnknown_81A6D24: @ 81A6D24 -.string " We{APOSTROPHE}ve only started{COMMA} after\n" -.string "all.\0" -.align 2, 0 - -.global gUnknown_81A6D48 -gUnknown_81A6D48: @ 81A6D48 -.string " Hmm...\n" -.string "I suppose so.\0" -.align 2, 0 - -.global gUnknown_81A6D60 -gUnknown_81A6D60: @ 81A6D60 -.string " After all{COMMA} we{APOSTROPHE}ve only just\n" -.string "begun.\0" -.align 2, 0 - -.global gUnknown_81A6D88 -gUnknown_81A6D88: @ 81A6D88 -.string " Hmm...\n" -.string "I guess so.\0" -.align 2, 0 - -.global gUnknown_81A6D9C -gUnknown_81A6D9C: @ 81A6D9C -.string " After all{COMMA} we only just\n" -.string "started up...\0" -.align 2, 0 - -.global gUnknown_81A6DC8 -gUnknown_81A6DC8: @ 81A6DC8 -.string " Awww...\n" -.string "Well{COMMA} I guess so.\0" -.align 2, 0 - -.global gUnknown_81A6DE8 -gUnknown_81A6DE8: @ 81A6DE8 -.string " Huh?\n" -.string "Empty?!\0" -.align 2, 0 - -.global gUnknown_81A6DF8 -gUnknown_81A6DF8: @ 81A6DF8 -.string " Hah?\n" -.string "It was empty?!\0" -.align 2, 0 - -.global gUnknown_81A6E10 -gUnknown_81A6E10: @ 81A6E10 -.string " ...So{COMMA} was there anything?\n" -.string "Were there any rescue requests?\0" -.align 2, 0 - -.global gUnknown_81A6E50 -gUnknown_81A6E50: @ 81A6E50 -.string " ...So{COMMA} what{APOSTROPHE}s the word?\n" -.string "Were there any rescue jobs for us?\0" -.align 2, 0 - -.global gUnknown_81A6E90 -gUnknown_81A6E90: @ 81A6E90 -.string " Oh!\n" -.string "So{COMMA} you checked the Mailbox.\0" -.align 2, 0 - -.global gUnknown_81A6EB4 -gUnknown_81A6EB4: @ 81A6EB4 -.string " Oh!\n" -.string "You checked the Mailbox{COMMA} did you?\0" -.align 2, 0 - -.global gUnknown_81A6EE0 -gUnknown_81A6EE0: @ 81A6EE0 -.string " Good morning{COMMA} {ARG_NICKNAME_0}!\n" -.string "Aren{APOSTROPHE}t you up early?\0" -.align 2, 0 - -.global gUnknown_81A6F10 -gUnknown_81A6F10: @ 81A6F10 -.string " Morning{COMMA} {ARG_NICKNAME_0}!\n" -.string "You{APOSTROPHE}re up early.\0" -.align 2, 0 - -.global gUnknown_81A6F34 -gUnknown_81A6F34: @ 81A6F34 -.byte 0xf6, 0x00, 0xec, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0xa0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A7064 -gUnknown_81A7064: @ 81A7064 -.byte 0xf6, 0x00, 0x02, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A7134 -gUnknown_81A7134: @ 81A7134 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A7064 - -.global gUnknown_81A7140 -gUnknown_81A7140: @ 81A7140 -.byte 0xf6, 0x00, 0x14, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A7600 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A75E8 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A75D0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A75B8 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A7588 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A7558 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A7550 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A752C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A7500 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A74D4 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A74A4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A7480 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A7480 -gUnknown_81A7480: @ 81A7480 -.string " ...{WAIT_PRESS}Uh{COMMA} OK...{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s go...\0" -.align 2, 0 - -.global gUnknown_81A74A4 -gUnknown_81A74A4: @ 81A74A4 -.string " ...{WAIT_PRESS}I see...{WAIT_PRESS}\n" -.string "I guess we{APOSTROPHE}d better go...\0" -.align 2, 0 - -.global gUnknown_81A74D4 -gUnknown_81A74D4: @ 81A74D4 -.string " Please{COMMA} we need your help!{WAIT_PRESS}\n" -.string "Bye-bye!\0" -.align 2, 0 - -.global gUnknown_81A7500 -gUnknown_81A7500: @ 81A7500 -.string " He was taken to {COLOR_1 YELLOW_4}Mt. Steel{END_COLOR_TEXT_1}{APOSTROPHE}s\n" -.string "summit!\0" -.align 2, 0 - -.global gUnknown_81A752C -gUnknown_81A752C: @ 81A752C -.string " Our child{COMMA} {ARG_NICKNAME_3}{COMMA}\n" -.string "was kidnapped!\0" -.align 2, 0 - -.global gUnknown_81A7550 -gUnknown_81A7550: @ 81A7550 -.string " Yes!\0" -.align 2, 0 - -.global gUnknown_81A7558 -gUnknown_81A7558: @ 81A7558 -.string " You were just asked to go\n" -.string "on a rescue mission?\0" -.align 2, 0 - -.global gUnknown_81A7588 -gUnknown_81A7588: @ 81A7588 -.string " Someone just asked you to\n" -.string "go out on a rescue?\0" -.align 2, 0 - -.global gUnknown_81A75B8 -gUnknown_81A75B8: @ 81A75B8 -.string " ............{WAIT_PRESS}Huh?!\0" -.align 2, 0 - -.global gUnknown_81A75D0 -gUnknown_81A75D0: @ 81A75D0 -.string " ............{WAIT_PRESS}Hah?!\0" -.align 2, 0 - -.global gUnknown_81A75E8 -gUnknown_81A75E8: @ 81A75E8 -.string " Good morning{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_81A7600 -gUnknown_81A7600: @ 81A7600 -.string " Morning{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_81A7614 -gUnknown_81A7614: @ 81A7614 -.byte 0xf6, 0x00, 0x4e, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xa0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A7744 -gUnknown_81A7744: @ 81A7744 -.byte 0xf6, 0x00, 0x64, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x57, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc6, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe6, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A7834 -gUnknown_81A7834: @ 81A7834 -.byte 0xf6, 0x00, 0x76, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A7904 -gUnknown_81A7904: @ 81A7904 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A7834 - -.global gUnknown_81A7910 -gUnknown_81A7910: @ 81A7910 -.byte 0xf6, 0x00, 0x88, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819F1B8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A7A70 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819F164 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A7A20 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A7A20 -gUnknown_81A7A20: @ 81A7A20 -.string " We couldn{APOSTROPHE}t do it yesterday{COMMA}\n" -.string "so let{APOSTROPHE}s be sure to do this rescue today.\0" -.align 2, 0 - -.global gUnknown_81A7A70 -gUnknown_81A7A70: @ 81A7A70 -.string " We blew it yesterday.\n" -.string "Let{APOSTROPHE}s save that little guy today for sure.\0" -.align 2, 0 - -.global gUnknown_81A7AB4 -gUnknown_81A7AB4: @ 81A7AB4 -.byte 0xf6, 0x00, 0x9d, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0xa0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A7B54 -gUnknown_81A7B54: @ 81A7B54 -.byte 0xf6, 0x00, 0xaa, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A7BF4 -gUnknown_81A7BF4: @ 81A7BF4 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A7B54 - -.global gUnknown_81A7C00 -gUnknown_81A7C00: @ 81A7C00 -.byte 0xf6, 0x00, 0xb9, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A7C70 -gUnknown_81A7C70: @ 81A7C70 -.byte 0xf6, 0x00, 0xc3, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x05, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA75C -setFlag 0x06 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA72C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA6F4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA6E8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA6D0 -closeTextBox -.byte 0xdb, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x2e, 0x15, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA698 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA664 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA648 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA61C -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x91, 0x04, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0a, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0a, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0a, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA5F4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA5C8 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA588 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA574 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA568 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA538 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA4E4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x04, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA4B8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA480 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA444 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA424 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA3F0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA3C4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA38C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA360 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA32C -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA2E0 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA2B4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA288 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA270 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA268 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x0b, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA25C -.byte 0x2e, 0x0b, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA250 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x2b, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x2c, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x2c, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x50 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA230 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA218 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA1F8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA1E8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA1B4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA188 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA15C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA148 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA0F8 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA0B4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA08C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA068 -.byte 0xd9, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA04C -.byte 0xd9, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA030 -.byte 0xf4, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x01, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AA004 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9FD8 -.byte 0xd9, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9FC8 -.byte 0xd9, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9FB8 -.byte 0xf4, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x03, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9F7C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9F44 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe7, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9F04 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9EAC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9E4C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9E18 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9DC4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9D80 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9D34 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9CDC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9C8C -closeTextBox -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd8, 0x01, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9C4C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9C04 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9BBC -.byte 0xd9, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9BA8 -.byte 0xd9, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9B9C -.byte 0xf4, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x01, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9B60 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9B38 -.byte 0xd9, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9B20 -.byte 0xd9, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9B0C -.byte 0xf4, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9AD0 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9A9C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9A6C -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9A4C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9A24 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9A10 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A99F0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A99D8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A99A4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9974 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9940 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9918 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A98E8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A98D4 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A98BC -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9874 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x0c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9860 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9808 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A97A0 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9764 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9720 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A96BC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A966C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9634 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A95D8 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9594 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9554 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A94EC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A94A0 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9470 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9438 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9764 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A93F4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9390 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A9338 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A930C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A92C0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81A92C0 -gUnknown_81A92C0: @ 81A92C0 -.string " OK{COMMA} that{APOSTROPHE}s what we{APOSTROPHE}ll do\n" -.string "tomorrow.{WAIT_PRESS}\n" -.string "We{APOSTROPHE}ll go to Pokémon Square.\0" -.align 2, 0 - -.global gUnknown_81A930C -gUnknown_81A930C: @ 81A930C -.string " We may be able to get\n" -.string "some information.\0" -.align 2, 0 - -.global gUnknown_81A9338 -gUnknown_81A9338: @ 81A9338 -.string " It{APOSTROPHE}s next door to \n" -.string "{COLOR_1 CYAN}Felicity Bank{END_COLOR_TEXT_1}.{WAIT_PRESS}\n" -.string "{COLOR_1 YELLOW}Wigglytuff{END_COLOR_TEXT_1} is usually there every day.\0" -.align 2, 0 - -.global gUnknown_81A9390 -gUnknown_81A9390: @ 81A9390 -.string " It wasn{APOSTROPHE}t open the other\n" -.string "day when we went to the square.{WAIT_PRESS}\n" -.string "It should be open tomorrow{COMMA} though.\0" -.align 2, 0 - -.global gUnknown_81A93F4 -gUnknown_81A93F4: @ 81A93F4 -.string " There{APOSTROPHE}s an interesting\n" -.string "place called the {COLOR_1 CYAN}Wigglytuff Club{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_81A9438 -gUnknown_81A9438: @ 81A9438 -.string " So that{APOSTROPHE}s tomorrow.{WAIT_PRESS}\n" -.string "We{APOSTROPHE}ll go to Pokémon Square!\0" -.align 2, 0 - -.global gUnknown_81A9470 -gUnknown_81A9470: @ 81A9470 -.string " We might get some useful\n" -.string "information there.\0" -.align 2, 0 - -.global gUnknown_81A94A0 -gUnknown_81A94A0: @ 81A94A0 -.string " The shop is beside\n" -.string "{COLOR_1 CYAN}Felicity Bank{END_COLOR_TEXT_1}.{WAIT_PRESS}\n" -.string "{COLOR_1 YELLOW}Wigglytuff{END_COLOR_TEXT_1} is usually there.\0" -.align 2, 0 - -.global gUnknown_81A94EC -gUnknown_81A94EC: @ 81A94EC -.string " There wasn{APOSTROPHE}t anyone when\n" -.string "we went to the square the other day.{WAIT_PRESS}\n" -.string "It might be open tomorrow{COMMA} though.\0" -.align 2, 0 - -.global gUnknown_81A9554 -gUnknown_81A9554: @ 81A9554 -.string " There{APOSTROPHE}s an interesting\n" -.string "shop called the {COLOR_1 CYAN}Wigglytuff Club{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_81A9594 -gUnknown_81A9594: @ 81A9594 -.string " Oh{COMMA} I know!{WAIT_PRESS}\n" -.string "We should go out to {COLOR_1 CYAN}Pokémon Square{END_COLOR_TEXT_1}\n" -.string "tomorrow.\0" -.align 2, 0 - -.global gUnknown_81A95D8 -gUnknown_81A95D8: @ 81A95D8 -.string " All right{COMMA} so that{APOSTROPHE}s what\n" -.string "we{APOSTROPHE}ll do tomorrow.{WAIT_PRESS}\n" -.string "We{APOSTROPHE}ll go down to Pokémon Square.\0" -.align 2, 0 - -.global gUnknown_81A9634 -gUnknown_81A9634: @ 81A9634 -.string " We might be able to get\n" -.string "some useful information there.\0" -.align 2, 0 - -.global gUnknown_81A966C -gUnknown_81A966C: @ 81A966C -.string " The shop is next to\n" -.string "{COLOR_1 CYAN}Felicity Bank{END_COLOR_TEXT_1}.{WAIT_PRESS}\n" -.string "Usually{COMMA} {COLOR_1 YELLOW}Wigglytuff{END_COLOR_TEXT_1} is there.\0" -.align 2, 0 - -.global gUnknown_81A96BC -gUnknown_81A96BC: @ 81A96BC -.string " It wasn{APOSTROPHE}t open the other\n" -.string "day when we went to the square.{WAIT_PRESS}\n" -.string "It might be open tomorrow{COMMA} though.\0" -.align 2, 0 - -.global gUnknown_81A9720 -gUnknown_81A9720: @ 81A9720 -.string " There{APOSTROPHE}s this interesting\n" -.string "shop called the {COLOR_1 CYAN}Wigglytuff Club{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_81A9764 -gUnknown_81A9764: @ 81A9764 -.string " I know!{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s go out to {COLOR_1 CYAN}Pokémon Square{END_COLOR_TEXT_1}\n" -.string "tomorrow.\0" -.align 2, 0 - -.global gUnknown_81A97A0 -gUnknown_81A97A0: @ 81A97A0 -.string " It looks like we need to\n" -.string "find places for Pokémon to live if we\n" -.string "want some to join our rescue team...\0" -.align 2, 0 - -.global gUnknown_81A9808 -gUnknown_81A9808: @ 81A9808 -.string " I guess we need somewhere\n" -.string "Pokémon can live if we want them to\n" -.string "join the rescue team...\0" -.align 2, 0 - -.global gUnknown_81A9860 -gUnknown_81A9860: @ 81A9860 -.string " That is too bad.\0" -.align 2, 0 - -.global gUnknown_81A9874 -gUnknown_81A9874: @ 81A9874 -.string " TOO BAD.{WAIT_PRESS}\n" -.string "SORRY{COMMA} BUT WE CAN{APOSTROPHE}T JOIN YOU.{WAIT_PRESS}\n" -.string "SEE YOU! BZZ BZZ BZZ!\0" -.align 2, 0 - -.global gUnknown_81A98BC -gUnknown_81A98BC: @ 81A98BC -.string " OH...\n" -.string "THERE ISN{APOSTROPHE}T...\0" -.align 2, 0 - -.global gUnknown_81A98D4 -gUnknown_81A98D4: @ 81A98D4 -.string " ...Ummm...well...\0" -.align 2, 0 - -.global gUnknown_81A98E8 -gUnknown_81A98E8: @ 81A98E8 -.string " IS THERE ANYWHERE WE\n" -.string "CAN LIVE IN THIS AREA?\0" -.align 2, 0 - -.global gUnknown_81A9918 -gUnknown_81A9918: @ 81A9918 -.string " WE NEED SOMEWHERE TO\n" -.string "LIVE CLOSE BY.\0" -.align 2, 0 - -.global gUnknown_81A9940 -gUnknown_81A9940: @ 81A9940 -.string " ...BUT...IF YOU NEED US\n" -.string "TO RUSH OVER TO RESCUES...\0" -.align 2, 0 - -.global gUnknown_81A9974 -gUnknown_81A9974: @ 81A9974 -.string " RESCUE TEAM...{WAIT_PRESS}\n" -.string "THAT SOUNDS FUN! BZZ BZZ BZZ!\0" -.align 2, 0 - -.global gUnknown_81A99A4 -gUnknown_81A99A4: @ 81A99A4 -.string " Will you join us as members\n" -.string "of our rescue team?\0" -.align 2, 0 - -.global gUnknown_81A99D8 -gUnknown_81A99D8: @ 81A99D8 -.string " So{COMMA} how about it?\0" -.align 2, 0 - -.global gUnknown_81A99F0 -gUnknown_81A99F0: @ 81A99F0 -.string " Will you join our rescue\n" -.string "team?\0" -.align 2, 0 - -.global gUnknown_81A9A10 -gUnknown_81A9A10: @ 81A9A10 -.string " So{COMMA} will you?\0" -.align 2, 0 - -.global gUnknown_81A9A24 -gUnknown_81A9A24: @ 81A9A24 -.string " Join our rescue team!\n" -.string "What do you say?\0" -.align 2, 0 - -.global gUnknown_81A9A4C -gUnknown_81A9A4C: @ 81A9A4C -.string " So{COMMA} come on! How about it?\0" -.align 2, 0 - -.global gUnknown_81A9A6C -gUnknown_81A9A6C: @ 81A9A6C -.string " Aww!\n" -.string "Were you just making fun of me?!\n" -.string "Sheesh!\0" -.align 2, 0 - -.global gUnknown_81A9A9C -gUnknown_81A9A9C: @ 81A9A9C -.string " Now{COMMA} look here!\n" -.string "Were you just making fun of me?!\0" -.align 2, 0 - -.global gUnknown_81A9AD0 -gUnknown_81A9AD0: @ 81A9AD0 -.string " What the...?\n" -.string "What{COMMA} you were just joshing me?!\n" -.string "Sheesh!\0" -.align 2, 0 - -.global gUnknown_81A9B0C -gUnknown_81A9B0C: @ 81A9B0C -.string "I just can{APOSTROPHE}t...\0" -.align 2, 0 - -.global gUnknown_81A9B20 -gUnknown_81A9B20: @ 81A9B20 -.string "Sorry{COMMA} I can{APOSTROPHE}t...\0" -.align 2, 0 - -.global gUnknown_81A9B38 -gUnknown_81A9B38: @ 81A9B38 -.string " Oh{COMMA} really?!{WAIT_PRESS}\n" -.string "...Can you show us?\0" -.align 2, 0 - -.global gUnknown_81A9B60 -gUnknown_81A9B60: @ 81A9B60 -.string " Really? You{APOSTROPHE}re serious?{WAIT_PRESS}\n" -.string "...So how about showing me?\0" -.align 2, 0 - -.global gUnknown_81A9B9C -gUnknown_81A9B9C: @ 81A9B9C -.string "I can fly.\0" -.align 2, 0 - -.global gUnknown_81A9BA8 -gUnknown_81A9BA8: @ 81A9BA8 -.string "My body stretches.\0" -.align 2, 0 - -.global gUnknown_81A9BBC -gUnknown_81A9BBC: @ 81A9BBC -.string " {ARG_NICKNAME_0}{COMMA} do you have\n" -.string "some special ability that would let\n" -.string "you do that?\0" -.align 2, 0 - -.global gUnknown_81A9C04 -gUnknown_81A9C04: @ 81A9C04 -.string " Do you have some special\n" -.string "ability that would make you say that{COMMA}\n" -.string "{ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_81A9C4C -gUnknown_81A9C4C: @ 81A9C4C -.string " {ARG_NICKNAME_0}{COMMA} do you have\n" -.string "a special ability that{APOSTROPHE}d let you do that?\0" -.align 2, 0 - -.global gUnknown_81A9C8C -gUnknown_81A9C8C: @ 81A9C8C -.string " Or{COMMA} {ARG_NICKNAME_0}{COMMA} you{APOSTROPHE}re\n" -.string "saying that you could have done that\n" -.string "rescue by yourself?\0" -.align 2, 0 - -.global gUnknown_81A9CDC -gUnknown_81A9CDC: @ 81A9CDC -.string " If it weren{APOSTROPHE}t for the two\n" -.string "{ARG_NICKNAME_3} that flew Diglett out{COMMA}\n" -.string "we would have been helpless.\0" -.align 2, 0 - -.global gUnknown_81A9D34 -gUnknown_81A9D34: @ 81A9D34 -.string " But{COMMA} you know{COMMA} we couldn{APOSTROPHE}t\n" -.string "have rescued Diglett just by ourselves.\0" -.align 2, 0 - -.global gUnknown_81A9D80 -gUnknown_81A9D80: @ 81A9D80 -.string " Or{COMMA} {ARG_NICKNAME_0}{COMMA} are you\n" -.string "saying that you could have done that\n" -.string "rescue?\0" -.align 2, 0 - -.global gUnknown_81A9DC4 -gUnknown_81A9DC4: @ 81A9DC4 -.string " If it weren{APOSTROPHE}t for the two\n" -.string "{ARG_NICKNAME_3} to fly Diglett out{COMMA} we\n" -.string "would have been stuck.\0" -.align 2, 0 - -.global gUnknown_81A9E18 -gUnknown_81A9E18: @ 81A9E18 -.string " But we couldn{APOSTROPHE}t have\n" -.string "rescued Diglett on our own.\0" -.align 2, 0 - -.global gUnknown_81A9E4C -gUnknown_81A9E4C: @ 81A9E4C -.string " Or{COMMA} are you trying to tell\n" -.string "me that you could{APOSTROPHE}ve pulled off that\n" -.string "rescue yourself{COMMA} {ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_81A9EAC -gUnknown_81A9EAC: @ 81A9EAC -.string " If the {ARG_NICKNAME_3} pair\n" -.string "weren{APOSTROPHE}t there to airlift Diglett out{COMMA}\n" -.string "we would{APOSTROPHE}ve been stuck.\0" -.align 2, 0 - -.global gUnknown_81A9F04 -gUnknown_81A9F04: @ 81A9F04 -.string " But we couldn{APOSTROPHE}t have saved\n" -.string "Diglett by ourselves{COMMA} right?\0" -.align 2, 0 - -.global gUnknown_81A9F44 -gUnknown_81A9F44: @ 81A9F44 -.string " Aww{COMMA} sheesh.\n" -.string "Don{APOSTROPHE}t joke around.\n" -.string "It{APOSTROPHE}s not funny.\0" -.align 2, 0 - -.global gUnknown_81A9F7C -gUnknown_81A9F7C: @ 81A9F7C -.string " Sheesh!\n" -.string "Don{APOSTROPHE}t joke around like that!\n" -.string "It{APOSTROPHE}s not funny!\0" -.align 2, 0 - -.global gUnknown_81A9FB8 -gUnknown_81A9FB8: @ 81A9FB8 -.string "Two is plenty.\0" -.align 2, 0 - -.global gUnknown_81A9FC8 -gUnknown_81A9FC8: @ 81A9FC8 -.string "Just joking!\0" -.align 2, 0 - -.global gUnknown_81A9FD8 -gUnknown_81A9FD8: @ 81A9FD8 -.string " Huh? Why?!\n" -.string "Don{APOSTROPHE}t you want more members?\0" -.align 2, 0 - -.global gUnknown_81AA004 -gUnknown_81AA004: @ 81AA004 -.string " Hah? Why?!\n" -.string "Don{APOSTROPHE}t you want more members?\0" -.align 2, 0 - -.global gUnknown_81AA030 -gUnknown_81AA030: @ 81AA030 -.string "We don{APOSTROPHE}t need any help.\0" -.align 2, 0 - -.global gUnknown_81AA04C -gUnknown_81AA04C: @ 81AA04C -.string "Yes! More members needed!\0" -.align 2, 0 - -.global gUnknown_81AA068 -gUnknown_81AA068: @ 81AA068 -.string " {ARG_NICKNAME_0}{COMMA} don{APOSTROPHE}t you\n" -.string "think so too?\0" -.align 2, 0 - -.global gUnknown_81AA08C -gUnknown_81AA08C: @ 81AA08C -.string " Hey{COMMA} {ARG_NICKNAME_0}.\n" -.string "You think so too{COMMA} right?\0" -.align 2, 0 - -.global gUnknown_81AA0B4 -gUnknown_81AA0B4: @ 81AA0B4 -.string " I thought we would need\n" -.string "more help for doing rescues in the future.\0" -.align 2, 0 - -.global gUnknown_81AA0F8 -gUnknown_81AA0F8: @ 81AA0F8 -.string " Yes.{WAIT_PRESS}\n" -.string "We couldn{APOSTROPHE}t have done the last job\n" -.string "if you weren{APOSTROPHE}t around{COMMA} {ARG_NICKNAME_3}.\0" -.align 2, 0 - -.global gUnknown_81AA148 -gUnknown_81AA148: @ 81AA148 -.string " JOIN YOUR TEAM?\0" -.align 2, 0 - -.global gUnknown_81AA15C -gUnknown_81AA15C: @ 81AA15C -.string " Uh...{WAIT_PRESS}\n" -.string "Would you like to join our team?\0" -.align 2, 0 - -.global gUnknown_81AA188 -gUnknown_81AA188: @ 81AA188 -.string " Um...{WAIT_PRESS}\n" -.string "Would you like to join our team?\0" -.align 2, 0 - -.global gUnknown_81AA1B4 -gUnknown_81AA1B4: @ 81AA1B4 -.string " Listen{COMMA} um...{WAIT_PRESS}\n" -.string "How would you like to join us?\0" -.align 2, 0 - -.global gUnknown_81AA1E8 -gUnknown_81AA1E8: @ 81AA1E8 -.string " WHAT IS IT?\0" -.align 2, 0 - -.global gUnknown_81AA1F8 -gUnknown_81AA1F8: @ 81AA1F8 -.string " Oh{COMMA} wait!\n" -.string "Don{APOSTROPHE}t go away!\0" -.align 2, 0 - -.global gUnknown_81AA218 -gUnknown_81AA218: @ 81AA218 -.string " Wait a sec!\n" -.string "Hold on!\0" -.align 2, 0 - -.global gUnknown_81AA230 -gUnknown_81AA230: @ 81AA230 -.string " WE{APOSTROPHE}LL BE ON OUR WAY\n" -.string "TOO...\0" -.align 2, 0 - -.global gUnknown_81AA250 -gUnknown_81AA250: @ 81AA250 -.string " Farewell!\0" -.align 2, 0 - -.global gUnknown_81AA25C -gUnknown_81AA25C: @ 81AA25C -.string " Thank you.\0" -.align 2, 0 - -.global gUnknown_81AA268 -gUnknown_81AA268: @ 81AA268 -.string " {ARG_NICKNAME_1}.\0" -.align 2, 0 - -.global gUnknown_81AA270 -gUnknown_81AA270: @ 81AA270 -.string " We must be going.\n" -.string "{ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81AA288 -gUnknown_81AA288: @ 81AA288 -.string " I{APOSTROPHE}m impressed.\n" -.string "Sincerely{COMMA} thank you.\0" -.align 2, 0 - -.global gUnknown_81AA2B4 -gUnknown_81AA2B4: @ 81AA2B4 -.string " AFTER ALL{COMMA} POKéMON MUST\n" -.string "HELP EACH OTHER.\0" -.align 2, 0 - -.global gUnknown_81AA2E0 -gUnknown_81AA2E0: @ 81AA2E0 -.string " HOW BOTH OUR EVOLVED\n" -.string "FORMS ARE JOINED TRIOS...{WAIT_PRESS}\n" -.string "I FELT A CERTAIN KINSHIP.\0" -.align 2, 0 - -.global gUnknown_81AA32C -gUnknown_81AA32C: @ 81AA32C -.string " NO{COMMA} NO.{WAIT_PRESS}\n" -.string "IT WAS THE ONLY THING TO DO.{WAIT_PRESS}\n" -.string "AND...\0" -.align 2, 0 - -.global gUnknown_81AA360 -gUnknown_81AA360: @ 81AA360 -.string " Oh{COMMA} how rude of us!\n" -.string "Thank you so much!\0" -.align 2, 0 - -.global gUnknown_81AA38C -gUnknown_81AA38C: @ 81AA38C -.string " This rescue was impossible\n" -.string "for us to do on our own.\0" -.align 2, 0 - -.global gUnknown_81AA3C4 -gUnknown_81AA3C4: @ 81AA3C4 -.string " You should be thanking our\n" -.string "{ARG_NICKNAME_3} friends.\0" -.align 2, 0 - -.global gUnknown_81AA3F0 -gUnknown_81AA3F0: @ 81AA3F0 -.string " We couldn{APOSTROPHE}t have done this\n" -.string "rescue by ourselves.\0" -.align 2, 0 - -.global gUnknown_81AA424 -gUnknown_81AA424: @ 81AA424 -.string " Please thank our\n" -.string "{ARG_NICKNAME_3} friends.\0" -.align 2, 0 - -.global gUnknown_81AA444 -gUnknown_81AA444: @ 81AA444 -.string " We couldn{APOSTROPHE}t have done this\n" -.string "rescue on our own{COMMA} right?\0" -.align 2, 0 - -.global gUnknown_81AA480 -gUnknown_81AA480: @ 81AA480 -.string " If you want to thank\n" -.string "anyone{COMMA} thank our {ARG_NICKNAME_3} friends.\0" -.align 2, 0 - -.global gUnknown_81AA4B8 -gUnknown_81AA4B8: @ 81AA4B8 -.string " Thank you for everything.\n" -.string "You{APOSTROPHE}re heroes.\0" -.align 2, 0 - -.global gUnknown_81AA4E4 -gUnknown_81AA4E4: @ 81AA4E4 -.string " Nope!\n" -.string "It was scary{COMMA} but I{APOSTROPHE}m all right.{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s all thanks to {ARG_NICKNAME_0}{APOSTROPHE}s team.\0" -.align 2, 0 - -.global gUnknown_81AA538 -gUnknown_81AA538: @ 81AA538 -.string " {ARG_NICKNAME_2}!\n" -.string "You had us worried!\n" -.string "You{APOSTROPHE}re not hurt?\0" -.align 2, 0 - -.global gUnknown_81AA568 -gUnknown_81AA568: @ 81AA568 -.string " Oh! Papa!\0" -.align 2, 0 - -.global gUnknown_81AA574 -gUnknown_81AA574: @ 81AA574 -.string " Hello. {ARG_NICKNAME_4} here.\0" -.align 2, 0 - -.global gUnknown_81AA588 -gUnknown_81AA588: @ 81AA588 -.string " ...Whoops! You can{APOSTROPHE}t see us?{WAIT_PRESS}\n" -.string "That{APOSTROPHE}s terribly rude of us!\0" -.align 2, 0 - -.global gUnknown_81AA5C8 -gUnknown_81AA5C8: @ 81AA5C8 -.string " Huh? What was that?{WAIT_PRESS}\n" -.string "Am I hearing voices?\0" -.align 2, 0 - -.global gUnknown_81AA5F4 -gUnknown_81AA5F4: @ 81AA5F4 -.string " Hah? What was that?{WAIT_PRESS}\n" -.string "Who said that?\0" -.align 2, 0 - -.global gUnknown_81AA61C -gUnknown_81AA61C: @ 81AA61C -.string " Oh! You{APOSTROPHE}ve been rescued!\n" -.string "Great! Great!\0" -.align 2, 0 - -.global gUnknown_81AA648 -gUnknown_81AA648: @ 81AA648 -.string " Yes.\n" -.string "Thank you very much.\0" -.align 2, 0 - -.global gUnknown_81AA664 -gUnknown_81AA664: @ 81AA664 -.string " Well{COMMA} you{APOSTROPHE}re safe now.\n" -.string "That{APOSTROPHE}s what counts.\0" -.align 2, 0 - -.global gUnknown_81AA698 -gUnknown_81AA698: @ 81AA698 -.string " Oh{COMMA} well{COMMA} you{APOSTROPHE}re safe now.\n" -.string "Good thing{COMMA} huh?\0" -.align 2, 0 - -.global gUnknown_81AA6D0 -gUnknown_81AA6D0: @ 81AA6D0 -.string " (HE HAS THEM? FEET?)\0" -.align 2, 0 - -.global gUnknown_81AA6E8 -gUnknown_81AA6E8: @ 81AA6E8 -.string " (Feet...?)\0" -.align 2, 0 - -.global gUnknown_81AA6F4 -gUnknown_81AA6F4: @ 81AA6F4 -.string " My feet feel like they{APOSTROPHE}re\n" -.string "still walking on air...\0" -.align 2, 0 - -.global gUnknown_81AA72C -gUnknown_81AA72C: @ 81AA72C -.string " Maybe because I was\n" -.string "somewhere up so high...\0" -.align 2, 0 - -.global gUnknown_81AA75C -gUnknown_81AA75C: @ 81AA75C -.string " Ohhh...\n" -.string "I was very scared.\0" -.align 2, 0 - -.global gUnknown_81AA778 -gUnknown_81AA778: @ 81AA778 -.byte 0xf6, 0x00, 0x4b, 0x0d -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x0a, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x04, 0x01, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x04, 0x02, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe2, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x2c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd8, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, CCW, south -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81AAC28 -gUnknown_81AAC28: @ 81AAC28 -.byte 0xf6, 0x00, 0x99, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0x56, 0x00, 0x00, 0x00 -.byte 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81AADE8 -gUnknown_81AADE8: @ 81AADE8 -.byte 0xf6, 0x00, 0xb8, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xdc, 0x00, 0x0a, 0x00 -.byte 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xdc, 0x00, 0x0a, 0x00 -.byte 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xdc, 0x00, 0x0a, 0x00 -.byte 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe5, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x16, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81AB198 -gUnknown_81AB198: @ 81AB198 -.byte 0xf6, 0x00, 0xf6, 0x0d -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xdc, 0x00, 0x0a, 0x00 -.byte 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xdc, 0x00, 0x0a, 0x00 -.byte 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xdc, 0x00, 0x0a, 0x00 -.byte 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x56, 0x00, 0x00, 0x00 -.byte 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81AB488 -gUnknown_81AB488: @ 81AB488 -.byte 0xf6, 0x00, 0x28, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x57, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xc6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x04, 0x00 -.byte 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81AB648 -gUnknown_81AB648: @ 81AB648 -.byte 0xf6, 0x00, 0x47, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81AB6C8 -gUnknown_81AB6C8: @ 81AB6C8 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AB648 - -.global gUnknown_81AB6D4 -gUnknown_81AB6D4: @ 81AB6D4 -.byte 0xf6, 0x00, 0x54, 0x0e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A7600 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC9CC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC990 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC960 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC944 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC914 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC8F4 -closeTextBox -.byte 0x54, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x10 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC8D0 -closeTextBox -.byte 0xdb, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC8BC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC888 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC870 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC828 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC818 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC7E0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC7D0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC788 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC754 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC728 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC6FC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC6D4 -closeTextBox -.byte 0xdb, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC6C0 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC690 -.byte 0xd4, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC668 -.byte 0xd9, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC654 -.byte 0xd9, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC638 -.byte 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC62C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC62C -.byte 0x2e, 0x15, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC60C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC5A4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC58C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC520 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC4E4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC498 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC480 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC448 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC410 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC3E8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC3A4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC35C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC338 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC30C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC2C8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC2A4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC26C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC228 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC1FC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC1C8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC194 -.byte 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC150 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC10C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC0C8 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xf4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC08C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC03C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AC020 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ABFE4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ABF88 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ABF74 -closeTextBox -.byte 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81ABF74 -gUnknown_81ABF74: @ 81ABF74 -.string " Let{APOSTROPHE}s get going.\0" -.align 2, 0 - -.global gUnknown_81ABF88 -gUnknown_81ABF88: @ 81ABF88 -.string " Do you remember?\n" -.string "We need to get information on how we\n" -.string "can add members to the rescue team.\0" -.align 2, 0 - -.global gUnknown_81ABFE4 -gUnknown_81ABFE4: @ 81ABFE4 -.string " Anyway{COMMA} we were supposed\n" -.string "to go to Pokémon Square today.\0" -.align 2, 0 - -.global gUnknown_81AC020 -gUnknown_81AC020: @ 81AC020 -.string " Let{APOSTROPHE}s roll{COMMA} already.\0" -.align 2, 0 - -.global gUnknown_81AC03C -gUnknown_81AC03C: @ 81AC03C -.string " Remember?\n" -.string "We{APOSTROPHE}re supposed to go ask about how we\n" -.string "can add members to our team.\0" -.align 2, 0 - -.global gUnknown_81AC08C -gUnknown_81AC08C: @ 81AC08C -.string " Anyway{COMMA} I promised we{APOSTROPHE}d\n" -.string "go to Pokémon Square today.\0" -.align 2, 0 - -.global gUnknown_81AC0C8 -gUnknown_81AC0C8: @ 81AC0C8 -.string " Well{COMMA} I hope so!\n" -.string "It sure must be more fun to be here\n" -.string "with me!\0" -.align 2, 0 - -.global gUnknown_81AC10C -gUnknown_81AC10C: @ 81AC10C -.string " Well{COMMA} maybe so.\n" -.string "It must be more fun for you to be\n" -.string "here with me!\0" -.align 2, 0 - -.global gUnknown_81AC150 -gUnknown_81AC150: @ 81AC150 -.string " Well{COMMA} I guess so!\n" -.string "It{APOSTROPHE}s a lot more fun hanging around\n" -.string "with me!\0" -.align 2, 0 - -.global gUnknown_81AC194 -gUnknown_81AC194: @ 81AC194 -.string " Huh? What{APOSTROPHE}s wrong?\n" -.string "Is this a dilemma for you?\0" -.align 2, 0 - -.global gUnknown_81AC1C8 -gUnknown_81AC1C8: @ 81AC1C8 -.string " Huh? What{APOSTROPHE}s the matter?\n" -.string "Having trouble deciding?\0" -.align 2, 0 - -.global gUnknown_81AC1FC -gUnknown_81AC1FC: @ 81AC1FC -.string " Huh? What{APOSTROPHE}s wrong?\n" -.string "You can{APOSTROPHE}t decide?\0" -.align 2, 0 - -.global gUnknown_81AC228 -gUnknown_81AC228: @ 81AC228 -.string " But this is you{COMMA}\n" -.string "{ARG_NICKNAME_0}. I{APOSTROPHE}m sure you were a good\n" -.string "human being.\0" -.align 2, 0 - -.global gUnknown_81AC26C -gUnknown_81AC26C: @ 81AC26C -.string " That{APOSTROPHE}s OK.\n" -.string "There{APOSTROPHE}s no rush to remember anything.\0" -.align 2, 0 - -.global gUnknown_81AC2A4 -gUnknown_81AC2A4: @ 81AC2A4 -.string " Oh{COMMA} wow{COMMA} you{APOSTROPHE}ve forgotten?\0" -.align 2, 0 - -.global gUnknown_81AC2C8 -gUnknown_81AC2C8: @ 81AC2C8 -.string " But{COMMA} {ARG_NICKNAME_0}?\n" -.string "I can{APOSTROPHE}t picture you as anything but\n" -.string "a good human.\0" -.align 2, 0 - -.global gUnknown_81AC30C -gUnknown_81AC30C: @ 81AC30C -.string " It{APOSTROPHE}s OK.\n" -.string "There{APOSTROPHE}s no rush to remember.\0" -.align 2, 0 - -.global gUnknown_81AC338 -gUnknown_81AC338: @ 81AC338 -.string " Oh{COMMA} no{COMMA} you{APOSTROPHE}ve forgotten?\0" -.align 2, 0 - -.global gUnknown_81AC35C -gUnknown_81AC35C: @ 81AC35C -.string " But you know{COMMA}\n" -.string "{ARG_NICKNAME_0}? I{APOSTROPHE}m positive that you\n" -.string "were a good human being.\0" -.align 2, 0 - -.global gUnknown_81AC3A4 -gUnknown_81AC3A4: @ 81AC3A4 -.string " Well{COMMA} that{APOSTROPHE}s all right.\n" -.string "You can take your time remembering.\0" -.align 2, 0 - -.global gUnknown_81AC3E8 -gUnknown_81AC3E8: @ 81AC3E8 -.string " Oh{COMMA} wow.\n" -.string "So you forgot everything?\0" -.align 2, 0 - -.global gUnknown_81AC410 -gUnknown_81AC410: @ 81AC410 -.string "(............{WAIT_PRESS}\n" -.string "Nope. I can{APOSTROPHE}t remember a thing...)\0" -.align 2, 0 - -.global gUnknown_81AC448 -gUnknown_81AC448: @ 81AC448 -.string "(Huh? What was I like when I was\n" -.string "a human{COMMA} anyway...?)\0" -.align 2, 0 - -.global gUnknown_81AC480 -gUnknown_81AC480: @ 81AC480 -.string "(When I was a human...)\0" -.align 2, 0 - -.global gUnknown_81AC498 -gUnknown_81AC498: @ 81AC498 -.string " Anyway{COMMA} when you were\n" -.string "a human{COMMA} what kind of person were you{COMMA}\n" -.string "{ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_81AC4E4 -gUnknown_81AC4E4: @ 81AC4E4 -.string " So{COMMA} tell me.\n" -.string "What sort of a human being were you{COMMA}\n" -.string "{ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_81AC520 -gUnknown_81AC520: @ 81AC520 -.string " Since you were a human to\n" -.string "begin with{COMMA} it{APOSTROPHE}s only natural that you\n" -.string "would want to go back to being one.\0" -.align 2, 0 - -.global gUnknown_81AC58C -gUnknown_81AC58C: @ 81AC58C -.string " Well{COMMA} I suppose so.\0" -.align 2, 0 - -.global gUnknown_81AC5A4 -gUnknown_81AC5A4: @ 81AC5A4 -.string " If you were a human\n" -.string "to begin with{COMMA} it{APOSTROPHE}s only natural that\n" -.string "you{APOSTROPHE}d want to go back to being one.\0" -.align 2, 0 - -.global gUnknown_81AC60C -gUnknown_81AC60C: @ 81AC60C -.string " I guess that{APOSTROPHE}s only natural.\0" -.align 2, 0 - -.global gUnknown_81AC62C -gUnknown_81AC62C: @ 81AC62C -.string " Oh{COMMA} OK.\0" -.align 2, 0 - -.global gUnknown_81AC638 -gUnknown_81AC638: @ 81AC638 -.string "I want to be a human again.\0" -.align 2, 0 - -.global gUnknown_81AC654 -gUnknown_81AC654: @ 81AC654 -.string "I{APOSTROPHE}m not sure...\0" -.align 2, 0 - -.global gUnknown_81AC668 -gUnknown_81AC668: @ 81AC668 -.string "(Do I want to become a human again?)\0" -.align 2, 0 - -.global gUnknown_81AC690 -gUnknown_81AC690: @ 81AC690 -.string "(I haven{APOSTROPHE}t thought about it much{COMMA} but...)\0" -.align 2, 0 - -.global gUnknown_81AC6C0 -gUnknown_81AC6C0: @ 81AC6C0 -.string "(...It{APOSTROPHE}s true...)\0" -.align 2, 0 - -.global gUnknown_81AC6D4 -gUnknown_81AC6D4: @ 81AC6D4 -.string " Do you want to turn back\n" -.string "into a human?\0" -.align 2, 0 - -.global gUnknown_81AC6FC -gUnknown_81AC6FC: @ 81AC6FC -.string " By the way{COMMA} {ARG_NICKNAME_0}.\n" -.string "What do you want to do?\0" -.align 2, 0 - -.global gUnknown_81AC728 -gUnknown_81AC728: @ 81AC728 -.string " Do you want to go back to\n" -.string "being a human?\0" -.align 2, 0 - -.global gUnknown_81AC754 -gUnknown_81AC754: @ 81AC754 -.string " So let me ask you{COMMA}\n" -.string "{ARG_NICKNAME_0}.\n" -.string "What are you thinking?\0" -.align 2, 0 - -.global gUnknown_81AC788 -gUnknown_81AC788: @ 81AC788 -.string " Those dreams have some\n" -.string "connection to how you became a Pokémon{COMMA}\n" -.string "{ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81AC7D0 -gUnknown_81AC7D0: @ 81AC7D0 -.string " So maybe...\0" -.align 2, 0 - -.global gUnknown_81AC7E0 -gUnknown_81AC7E0: @ 81AC7E0 -.string " {ARG_NICKNAME_0}{COMMA} you said\n" -.string "you{APOSTROPHE}re actually a human{COMMA} right?\0" -.align 2, 0 - -.global gUnknown_81AC818 -gUnknown_81AC818: @ 81AC818 -.string " Hmmm{COMMA} OK...\0" -.align 2, 0 - -.global gUnknown_81AC828 -gUnknown_81AC828: @ 81AC828 -.string " Maybe those dreams have\n" -.string "something to do with how you became\n" -.string "a Pokémon?\0" -.align 2, 0 - -.global gUnknown_81AC870 -gUnknown_81AC870: @ 81AC870 -.string " So I was thinking...\0" -.align 2, 0 - -.global gUnknown_81AC888 -gUnknown_81AC888: @ 81AC888 -.string " {ARG_NICKNAME_0}{COMMA} you said\n" -.string "you{APOSTROPHE}re really a human{COMMA} right?\0" -.align 2, 0 - -.global gUnknown_81AC8BC -gUnknown_81AC8BC: @ 81AC8BC -.string " Hmmm{COMMA} uh-huh...\0" -.align 2, 0 - -.global gUnknown_81AC8D0 -gUnknown_81AC8D0: @ 81AC8D0 -.string "{CENTER_ALIGN}{ARG_NICKNAME_0} told {ARG_NICKNAME_1}\n" -.string "{CENTER_ALIGN}about the dreams.\0" -.align 2, 0 - -.global gUnknown_81AC8F4 -gUnknown_81AC8F4: @ 81AC8F4 -.string " What was strange about\n" -.string "them?\0" -.align 2, 0 - -.global gUnknown_81AC914 -gUnknown_81AC914: @ 81AC914 -.string " ...Oh?{WAIT_PRESS}\n" -.string "You{APOSTROPHE}ve been having strange dreams?\0" -.align 2, 0 - -.global gUnknown_81AC944 -gUnknown_81AC944: @ 81AC944 -.string " What sort of weird\n" -.string "dreams?\0" -.align 2, 0 - -.global gUnknown_81AC960 -gUnknown_81AC960: @ 81AC960 -.string " ...Hah?{WAIT_PRESS}\n" -.string "You{APOSTROPHE}ve been having weird dreams?\0" -.align 2, 0 - -.global gUnknown_81AC990 -gUnknown_81AC990: @ 81AC990 -.string " Ahaha!\n" -.string "What{APOSTROPHE}s the matter?\n" -.string "You haven{APOSTROPHE}t woken up yet?\0" -.align 2, 0 - -.global gUnknown_81AC9CC -gUnknown_81AC9CC: @ 81AC9CC -.string " Ahaha!\n" -.string "What{APOSTROPHE}s with that dazed and confused look?\n" -.string "You look half asleep!\0" -.align 2, 0 - -.global gUnknown_81ACA18 -gUnknown_81ACA18: @ 81ACA18 -.byte 0xf6, 0x00, 0xe8, 0x0e -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01 -.byte 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ACB68 -gUnknown_81ACB68: @ 81ACB68 -.byte 0xf6, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x00, 0x3c, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ACC48 -gUnknown_81ACC48: @ 81ACC48 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ACB68 - -.global gUnknown_81ACC54 -gUnknown_81ACC54: @ 81ACC54 -.byte 0xf6, 0x00, 0x13, 0x0f, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x3c, 0x80, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x1d, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ACD04 -gUnknown_81ACD04: @ 81ACD04 -.byte 0xf6, 0x00, 0x21, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AE1DC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AE1B0 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AE174 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AE158 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AE13C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfd, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AE0F4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AE0E0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AE0C8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0x2e, 0x02, 0x04, 0x00, 0x41, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AE0A4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x04, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AE084 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AE054 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AE01C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x2e, 0x03, 0x03, 0x00, 0x41, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AE000 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x04, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADFD4 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADFBC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADF8C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADF78 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADF50 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADF78 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADF2C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADF78 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADF00 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x04, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADEC8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADE9C -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADE34 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x02, 0x04, 0x00, 0x43, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADE08 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADDE8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADDCC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADD88 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADD6C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADD30 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADD18 -closeTextBox -.byte 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x15, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADD0C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADCF8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x15, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADCC8 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADC98 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADC64 -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADC4C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADC34 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x10 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADC18 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADC00 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northeast -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x02, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x02, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADBC8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADBA8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADB78 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADB48 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x15, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADAF0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ADAA4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x9d, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ADAA4 -gUnknown_81ADAA4: @ 81ADAA4 -.string " But those guys...\n" -.string "They{APOSTROPHE}d better not try anything if we\n" -.string "see them again.\0" -.align 2, 0 - -.global gUnknown_81ADAF0 -gUnknown_81ADAF0: @ 81ADAF0 -.string " But those guys...\n" -.string "They{APOSTROPHE}re not getting away with anything\n" -.string "the next time I see them.\0" -.align 2, 0 - -.global gUnknown_81ADB48 -gUnknown_81ADB48: @ 81ADB48 -.string " We can go on rescue\n" -.string "missions again with this.\0" -.align 2, 0 - -.global gUnknown_81ADB78 -gUnknown_81ADB78: @ 81ADB78 -.string " We{APOSTROPHE}re in luck!\n" -.string "Pelipper delivered some mail!\0" -.align 2, 0 - -.global gUnknown_81ADBA8 -gUnknown_81ADBA8: @ 81ADBA8 -.string " We can go back to rescuing.\0" -.align 2, 0 - -.global gUnknown_81ADBC8 -gUnknown_81ADBC8: @ 81ADBC8 -.string " We lucked out!\n" -.string "Pelipper{APOSTROPHE}s brought us some more mail!\0" -.align 2, 0 - -.global gUnknown_81ADC00 -gUnknown_81ADC00: @ 81ADC00 -.string " They took everything!\0" -.align 2, 0 - -.global gUnknown_81ADC18 -gUnknown_81ADC18: @ 81ADC18 -.string " Those guys cleaned us out!\0" -.align 2, 0 - -.global gUnknown_81ADC34 -gUnknown_81ADC34: @ 81ADC34 -.string " Oh{COMMA} no!\n" -.string "It is empty!\0" -.align 2, 0 - -.global gUnknown_81ADC4C -gUnknown_81ADC4C: @ 81ADC4C -.string " Wah!\n" -.string "This is empty!\0" -.align 2, 0 - -.global gUnknown_81ADC64 -gUnknown_81ADC64: @ 81ADC64 -.string " ...They took off.{WAIT_PRESS}\n" -.string "What an unbelievable bunch.\0" -.align 2, 0 - -.global gUnknown_81ADC98 -gUnknown_81ADC98: @ 81ADC98 -.string " ...They{APOSTROPHE}re gone.{WAIT_PRESS}\n" -.string "What a horrible bunch.\0" -.align 2, 0 - -.global gUnknown_81ADCC8 -gUnknown_81ADCC8: @ 81ADCC8 -.string " ...They took off.{WAIT_PRESS}\n" -.string "What a bunch of creeps.\0" -.align 2, 0 - -.global gUnknown_81ADCF8 -gUnknown_81ADCF8: @ 81ADCF8 -.string " Now wait a second!\0" -.align 2, 0 - -.global gUnknown_81ADD0C -gUnknown_81ADD0C: @ 81ADD0C -.string " Hey! Wait!\0" -.align 2, 0 - -.global gUnknown_81ADD18 -gUnknown_81ADD18: @ 81ADD18 -.string " See you around!\n" -.string "Kekeh!\0" -.align 2, 0 - -.global gUnknown_81ADD30 -gUnknown_81ADD30: @ 81ADD30 -.string " The rescue team of evil!\n" -.string "Team {COLOR_1 CYAN}Meanies{END_COLOR_TEXT_1} is who we are!\0" -.align 2, 0 - -.global gUnknown_81ADD6C -gUnknown_81ADD6C: @ 81ADD6C -.string " The world will be ours!\0" -.align 2, 0 - -.global gUnknown_81ADD88 -gUnknown_81ADD88: @ 81ADD88 -.string " That{APOSTROPHE}s why we{APOSTROPHE}re raking in\n" -.string "the cash and adding to our gang!\0" -.align 2, 0 - -.global gUnknown_81ADDCC -gUnknown_81ADDCC: @ 81ADDCC -.string " Kekeh!\n" -.string "You heard right!\0" -.align 2, 0 - -.global gUnknown_81ADDE8 -gUnknown_81ADDE8: @ 81ADDE8 -.string " Wha...{WAIT_PRESS}\n" -.string "World domination?!\0" -.align 2, 0 - -.global gUnknown_81ADE08 -gUnknown_81ADE08: @ 81ADE08 -.string " We have our eyes on\n" -.string "world domination〜♪\0" -.align 2, 0 - -.global gUnknown_81ADE34 -gUnknown_81ADE34: @ 81ADE34 -.string " Wanna know how it works?{WAIT_PRESS}\n" -.string "If we have the cover of a rescue team{COMMA}\n" -.string "we can get away with so much more!\0" -.align 2, 0 - -.global gUnknown_81ADE9C -gUnknown_81ADE9C: @ 81ADE9C -.string " ...But all we ever get up\n" -.string "to is no good.\0" -.align 2, 0 - -.global gUnknown_81ADEC8 -gUnknown_81ADEC8: @ 81ADEC8 -.string " We{APOSTROPHE}re a rescue team too{COMMA}\n" -.string "I{APOSTROPHE}ll have you know〜♪\0" -.align 2, 0 - -.global gUnknown_81ADF00 -gUnknown_81ADF00: @ 81ADF00 -.string " Keh!{WAIT_PRESS}\n" -.string "It doesn{APOSTROPHE}t matter who does it!\0" -.align 2, 0 - -.global gUnknown_81ADF2C -gUnknown_81ADF2C: @ 81ADF2C -.string " Stop!{WAIT_PRESS}\n" -.string "Those were meant for us!\0" -.align 2, 0 - -.global gUnknown_81ADF50 -gUnknown_81ADF50: @ 81ADF50 -.string " Wait a second!{WAIT_PRESS}\n" -.string "Those belong to us!\0" -.align 2, 0 - -.global gUnknown_81ADF78 -gUnknown_81ADF78: @ 81ADF78 -.string " Don{APOSTROPHE}t butt in!\0" -.align 2, 0 - -.global gUnknown_81ADF8C -gUnknown_81ADF8C: @ 81ADF8C -.string " Hey!{WAIT_PRESS}\n" -.string "Those rescue jobs were meant for us!\0" -.align 2, 0 - -.global gUnknown_81ADFBC -gUnknown_81ADFBC: @ 81ADFBC -.string " We{APOSTROPHE}ll have them all.\0" -.align 2, 0 - -.global gUnknown_81ADFD4 -gUnknown_81ADFD4: @ 81ADFD4 -.string " Oo-la-la!\n" -.string "Isn{APOSTROPHE}t that rather tasty〜♪\0" -.align 2, 0 - -.global gUnknown_81AE000 -gUnknown_81AE000: @ 81AE000 -.string " Yessss!\n" -.string "Rescue job offers!\0" -.align 2, 0 - -.global gUnknown_81AE01C -gUnknown_81AE01C: @ 81AE01C -.string " Now wait a second!\n" -.string "What do you think you{APOSTROPHE}re doing?!\0" -.align 2, 0 - -.global gUnknown_81AE054 -gUnknown_81AE054: @ 81AE054 -.string " Whoa{COMMA} hey!\n" -.string "What do you think you{APOSTROPHE}re doing?\0" -.align 2, 0 - -.global gUnknown_81AE084 -gUnknown_81AE084: @ 81AE084 -.string " Kekeh{COMMA} yeah!\n" -.string "Check it out!\0" -.align 2, 0 - -.global gUnknown_81AE0A4 -gUnknown_81AE0A4: @ 81AE0A4 -.string " Oh!{WAIT_PRESS}\n" -.string "Over there. A Mailbox〜♪\0" -.align 2, 0 - -.global gUnknown_81AE0C8 -gUnknown_81AE0C8: @ 81AE0C8 -.string " Who are you people?\0" -.align 2, 0 - -.global gUnknown_81AE0E0 -gUnknown_81AE0E0: @ 81AE0E0 -.string " What{APOSTROPHE}s with you?\0" -.align 2, 0 - -.global gUnknown_81AE0F4 -gUnknown_81AE0F4: @ 81AE0F4 -.string " Keh!\n" -.string "Who{APOSTROPHE}d run a rescue team from a dump\n" -.string "like this? Unbelievable.\0" -.align 2, 0 - -.global gUnknown_81AE13C -gUnknown_81AE13C: @ 81AE13C -.string " Depressing{COMMA} isn{APOSTROPHE}t it.\0" -.align 2, 0 - -.global gUnknown_81AE158 -gUnknown_81AE158: @ 81AE158 -.string " There{APOSTROPHE}s nothing here.\0" -.align 2, 0 - -.global gUnknown_81AE174 -gUnknown_81AE174: @ 81AE174 -.string " Is this the place?\n" -.string "Where that team named {COLOR_1 CYAN}{ARG_TEAM_NAME}{END_COLOR_TEXT_1}\n" -.string "is based?\0" -.align 2, 0 - -.global gUnknown_81AE1B0 -gUnknown_81AE1B0: @ 81AE1B0 -.string " Good morning!\n" -.string "Let{APOSTROPHE}s do good again today!\0" -.align 2, 0 - -.global gUnknown_81AE1DC -gUnknown_81AE1DC: @ 81AE1DC -.string " Morning!\n" -.string "Let{APOSTROPHE}s keep up our good work today!\0" -.align 2, 0 - -.global gUnknown_81AE20C -gUnknown_81AE20C: @ 81AE20C -.byte 0xf6, 0x00, 0x12, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe2, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xca, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -pause 0x0a -.byte 0xe2, 0x00, 0xca, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe2, 0x00, 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x10, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xcf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x6b, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x90, 0x01, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -pause 0x14 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northeast -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, north -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0a, CCW, west -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northeast -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81AE61C -gUnknown_81AE61C: @ 81AE61C -.byte 0xf6, 0x00, 0x56, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8e, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x90, 0x01, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81AE78C -gUnknown_81AE78C: @ 81AE78C -.byte 0xf6, 0x00, 0x70, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x90, 0x01, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xcf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81AE8AC -gUnknown_81AE8AC: @ 81AE8AC -.byte 0xf6, 0x00, 0x85, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xcf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x02, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x01, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81AEA0C -gUnknown_81AEA0C: @ 81AEA0C -.byte 0xf6, 0x00, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819EAE8 -.byte 0x4c, 0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -setFlag 0x05 -closeTextBox -rotate 0x1e, CCW, south -pause 0x0f -.byte 0x68, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4d, 0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -setAnimation 22 -pause 0x14 -.byte 0x4c, 0x00, 0x00, 0x00, 0xf5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AEC3C -pause 0x3c -closeTextBox -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x68, 0x00, 0x00, 0x01, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -rotate 0x1e, CW, west -setFlag 0x06 -.byte 0x6b, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81AEC3C -gUnknown_81AEC3C: @ 81AEC3C -.string "Clunk! Clunk!\0" -.align 2, 0 - -.global gUnknown_81AEC4C -gUnknown_81AEC4C: @ 81AEC4C -.byte 0xf6, 0x00, 0xc4, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x20, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x45, 0x00, 0x3c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81AED3C -gUnknown_81AED3C: @ 81AED3C -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AEC4C - -.global gUnknown_81AED48 -gUnknown_81AED48: @ 81AED48 -.byte 0xf6, 0x00, 0xd8, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x99, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x18, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x20, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x20, 0x80, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81AEE18 -gUnknown_81AEE18: @ 81AEE18 -.byte 0xf6, 0x00, 0xe8, 0x10 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFFF4 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFFF0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFFBC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFFB0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x2e, 0x02, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFF98 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFF84 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0x48, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFF58 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFF38 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFF14 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFF00 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFEE8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFEBC -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFE74 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFE40 -closeTextBox -.byte 0xe4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x10 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFE28 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFDFC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xdb, 0x00, 0x10, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFDC4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFDA4 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFD78 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFD54 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFD0C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFD04 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFCF0 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFCBC -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFC84 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFC5C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFC0C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x0f, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFBE4 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x15, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFBA8 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFB50 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFAFC -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFA9C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFA64 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFA30 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x48, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xdb, 0x00, 0x78, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x2e, 0x15, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFA28 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AF9F8 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AF9B8 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AF9F8 -closeTextBox -.byte 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xdb, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AF994 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AF978 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81AF978 -gUnknown_81AF978: @ 81AF978 -.string " {ARG_NICKNAME_0}!{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s get going!\0" -.align 2, 0 - -.global gUnknown_81AF994 -gUnknown_81AF994: @ 81AF994 -.string " {ARG_NICKNAME_0}!{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s roll{COMMA} and quick!\0" -.align 2, 0 - -.global gUnknown_81AF9B8 -gUnknown_81AF9B8: @ 81AF9B8 -.string " Don{APOSTROPHE}t worry about a thing.\n" -.string "We{APOSTROPHE}ll rescue your friend first.\0" -.align 2, 0 - -.global gUnknown_81AF9F8 -gUnknown_81AF9F8: @ 81AF9F8 -.string " Don{APOSTROPHE}t worry.\n" -.string "We{APOSTROPHE}ll save your friend first.\0" -.align 2, 0 - -.global gUnknown_81AFA28 -gUnknown_81AFA28: @ 81AFA28 -.string " ...\0" -.align 2, 0 - -.global gUnknown_81AFA30 -gUnknown_81AFA30: @ 81AFA30 -.string " Come on{COMMA} move!\n" -.string "Let{APOSTROPHE}s get this done{COMMA} already!\0" -.align 2, 0 - -.global gUnknown_81AFA64 -gUnknown_81AFA64: @ 81AFA64 -.string " That{APOSTROPHE}s the deal{COMMA}\n" -.string "{ARG_NICKNAME_1}.\n" -.string "The first to rescue wins!\0" -.align 2, 0 - -.global gUnknown_81AFA9C -gUnknown_81AFA9C: @ 81AFA9C -.string " When you join us{COMMA} \n" -.string "{ARG_NICKNAME_5}{COMMA} we{APOSTROPHE}ll let you be a big wheel\n" -.string "in Team {COLOR_1 CYAN}Meanies{END_COLOR_TEXT_1}{COMMA} kekekeke!\0" -.align 2, 0 - -.global gUnknown_81AFAFC -gUnknown_81AFAFC: @ 81AFAFC -.string " Oh{COMMA} yeah.{WAIT_PRESS}\n" -.string "You can even join our team.\n" -.string "There{APOSTROPHE}s an offer you can{APOSTROPHE}t refuse.\0" -.align 2, 0 - -.global gUnknown_81AFB50 -gUnknown_81AFB50: @ 81AFB50 -.string " I{APOSTROPHE}m sure we can persuade\n" -.string "your parents to reward us with interest\n" -.string "afterward{COMMA} kekeh!\0" -.align 2, 0 - -.global gUnknown_81AFBA8 -gUnknown_81AFBA8: @ 81AFBA8 -.string " Oh{COMMA} don{APOSTROPHE}t you worry about\n" -.string "that{COMMA} my little friend!\0" -.align 2, 0 - -.global gUnknown_81AFBE4 -gUnknown_81AFBE4: @ 81AFBE4 -.string " But I...{WAIT_PRESS}\n" -.string "I don{APOSTROPHE}t have any money...\0" -.align 2, 0 - -.global gUnknown_81AFC0C -gUnknown_81AFC0C: @ 81AFC0C -.string " How about you give the\n" -.string "reward to the team that brings back your\n" -.string "chum first?\0" -.align 2, 0 - -.global gUnknown_81AFC5C -gUnknown_81AFC5C: @ 81AFC5C -.string " Listen{COMMA} {ARG_NICKNAME_5}.\n" -.string "How about we do this?\0" -.align 2, 0 - -.global gUnknown_81AFC84 -gUnknown_81AFC84: @ 81AFC84 -.string " The guy that does the\n" -.string "rescuing gets to be the hero.\0" -.align 2, 0 - -.global gUnknown_81AFCBC -gUnknown_81AFCBC: @ 81AFCBC -.string " It doesn{APOSTROPHE}t matter who does\n" -.string "the rescuing{COMMA} see?\0" -.align 2, 0 - -.global gUnknown_81AFCF0 -gUnknown_81AFCF0: @ 81AFCF0 -.string " What did you say?!\0" -.align 2, 0 - -.global gUnknown_81AFD04 -gUnknown_81AFD04: @ 81AFD04 -.string " What?!\0" -.align 2, 0 - -.global gUnknown_81AFD0C -gUnknown_81AFD0C: @ 81AFD0C -.string " Keh!\n" -.string "You think you can do this rescue with\n" -.string "your amateur-level skills?\0" -.align 2, 0 - -.global gUnknown_81AFD54 -gUnknown_81AFD54: @ 81AFD54 -.string " Hold on!\n" -.string "{ARG_NICKNAME_5} came to us for help!\0" -.align 2, 0 - -.global gUnknown_81AFD78 -gUnknown_81AFD78: @ 81AFD78 -.string " Wait a second!\n" -.string "{ARG_NICKNAME_5} was asking us to help!\0" -.align 2, 0 - -.global gUnknown_81AFDA4 -gUnknown_81AFDA4: @ 81AFDA4 -.string " Hey!\n" -.string "{ARG_NICKNAME_5} came to us for help!\0" -.align 2, 0 - -.global gUnknown_81AFDC4 -gUnknown_81AFDC4: @ 81AFDC4 -.string " Have no fear!\n" -.string "We{APOSTROPHE}re here to save your chum Metapod.\0" -.align 2, 0 - -.global gUnknown_81AFDFC -gUnknown_81AFDFC: @ 81AFDFC -.string " Hey! What do you think\n" -.string "you{APOSTROPHE}re doing?!\0" -.align 2, 0 - -.global gUnknown_81AFE28 -gUnknown_81AFE28: @ 81AFE28 -.string " Hey! Not you again!\0" -.align 2, 0 - -.global gUnknown_81AFE40 -gUnknown_81AFE40: @ 81AFE40 -.string " Oh{COMMA} I see{COMMA} I see!\n" -.string "That does sound bad!\n" -.string "Kekeke!\0" -.align 2, 0 - -.global gUnknown_81AFE74 -gUnknown_81AFE74: @ 81AFE74 -.string " But Metapod got lost in the\n" -.string "woods...\n" -.string "He{APOSTROPHE}s still lost out there...\0" -.align 2, 0 - -.global gUnknown_81AFEBC -gUnknown_81AFEBC: @ 81AFEBC -.string " I was playing with my\n" -.string "friend Metapod...\0" -.align 2, 0 - -.global gUnknown_81AFEE8 -gUnknown_81AFEE8: @ 81AFEE8 -.string " What{APOSTROPHE}s the matter?\0" -.align 2, 0 - -.global gUnknown_81AFF00 -gUnknown_81AFF00: @ 81AFF00 -.string " What{APOSTROPHE}s wrong?\0" -.align 2, 0 - -.global gUnknown_81AFF14 -gUnknown_81AFF14: @ 81AFF14 -.string " Please!{WAIT_PRESS}\n" -.string "Please help my friend!\0" -.align 2, 0 - -.global gUnknown_81AFF38 -gUnknown_81AFF38: @ 81AFF38 -.string " Oh{COMMA} {ARG_NICKNAME_5}?\n" -.string "How have you been?\0" -.align 2, 0 - -.global gUnknown_81AFF58 -gUnknown_81AFF58: @ 81AFF58 -.string " Oh{COMMA} if it isn{APOSTROPHE}t {ARG_NICKNAME_5}!\n" -.string "Long time no see!\0" -.align 2, 0 - -.global gUnknown_81AFF84 -gUnknown_81AFF84: @ 81AFF84 -.string " Huh?\n" -.string "Who was that?\0" -.align 2, 0 - -.global gUnknown_81AFF98 -gUnknown_81AFF98: @ 81AFF98 -.string " Hunh? Who{APOSTROPHE}s that?\0" -.align 2, 0 - -.global gUnknown_81AFFB0 -gUnknown_81AFFB0: @ 81AFFB0 -.string " {ARG_NICKNAME_0}!\n" -.string "{ARG_NICKNAME_1}!\0" -.align 2, 0 - -.global gUnknown_81AFFBC -gUnknown_81AFFBC: @ 81AFFBC -.string " Good morning{COMMA} {ARG_NICKNAME_0}!\n" -.string "Let{APOSTROPHE}s do good again today!\0" -.align 2, 0 - -.global gUnknown_81AFFF0 -gUnknown_81AFFF0: @ 81AFFF0 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81AFFF4 -gUnknown_81AFFF4: @ 81AFFF4 -.string " Morning{COMMA} {ARG_NICKNAME_0}!\n" -.string "Let{APOSTROPHE}s keep up our good work today!\0" -.align 2, 0 - -.global gUnknown_81B002C -gUnknown_81B002C: @ 81B002C -.byte 0xf6, 0x00, 0xb2, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xfd, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x6a, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -pause 0x05 -.byte 0xe2, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -pause 0x05 -.byte 0xe2, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B02DC -gUnknown_81B02DC: @ 81B02DC -.byte 0xf6, 0x00, 0xe0, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x24, 0x00, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0x08, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -setFlag 0x08 -pause 0x10 -rotate 0x04, shortestDir, southwest -setFlag 0x09 -pause 0x10 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x20 -setFlag 0x05 -pause 0x1c -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B04BC -gUnknown_81B04BC: @ 81B04BC -.byte 0xf6, 0x00, 0x01, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x24, 0x00, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B057C -gUnknown_81B057C: @ 81B057C -.byte 0xf6, 0x00, 0x10, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x24, 0x00, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B063C -gUnknown_81B063C: @ 81B063C -.byte 0xf6, 0x00, 0x1f, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B07AC -gUnknown_81B07AC: @ 81B07AC -.byte 0xf6, 0x00, 0x39, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B07DC -gUnknown_81B07DC: @ 81B07DC -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B07AC - -.global gUnknown_81B07E8 -gUnknown_81B07E8: @ 81B07E8 -.byte 0xf6, 0x00, 0x41, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B0818 -gUnknown_81B0818: @ 81B0818 -.byte 0xf6, 0x00, 0x47, 0x12 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B08E8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B08B8 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B0898 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B0898 -gUnknown_81B0898: @ 81B0898 -.string " Please{COMMA} {ARG_NICKNAME_0}{COMMA}\n" -.string "help us...\0" -.align 2, 0 - -.global gUnknown_81B08B8 -gUnknown_81B08B8: @ 81B08B8 -.string " I don{APOSTROPHE}t want to join those\n" -.string "{COLOR_1 CYAN}Meanies{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_81B08E8 -gUnknown_81B08E8: @ 81B08E8 -.string " ...What should I do?{WAIT_PRESS}\n" -.string "I don{APOSTROPHE}t have any money{COMMA} and...\0" -.align 2, 0 - -.global gUnknown_81B0924 -gUnknown_81B0924: @ 81B0924 -.byte 0xf6, 0x00, 0x52, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B09F4 -gUnknown_81B09F4: @ 81B09F4 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B0924 - -.global gUnknown_81B0A00 -gUnknown_81B0A00: @ 81B0A00 -.byte 0xf6, 0x00, 0x64, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819F1B8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B0B4C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819F164 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B0B00 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B0B00 -gUnknown_81B0B00: @ 81B0B00 -.string " We came up short\n" -.string "yesterday{COMMA} so let{APOSTROPHE}s be sure to do things\n" -.string "right today.\0" -.align 2, 0 - -.global gUnknown_81B0B4C -gUnknown_81B0B4C: @ 81B0B4C -.string " We bungled it yesterday.\n" -.string "We{APOSTROPHE}ve got to get it right today.\0" -.align 2, 0 - -.global gUnknown_81B0B8C -gUnknown_81B0B8C: @ 81B0B8C -.byte 0xf6, 0x00, 0x77, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B0BEC -gUnknown_81B0BEC: @ 81B0BEC -.byte 0xf6, 0x00, 0x80, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x23, 0x01, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B0C8C -gUnknown_81B0C8C: @ 81B0C8C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B0BEC - -.global gUnknown_81B0C98 -gUnknown_81B0C98: @ 81B0C98 -.byte 0xf6, 0x00, 0x8f, 0x12 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x02, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1D7C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1D68 -closeTextBox -.byte 0xdb, 0x00, 0x10, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x02, 0x00 -.byte 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1D48 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1D24 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x2e, 0x03, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1CF8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1CCC -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1C90 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1C58 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1C40 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1C14 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1BE8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1BBC -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1B8C -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1B78 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1B48 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1B08 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1AD4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1A8C -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1A5C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1A8C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00 -.byte 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1A30 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x91, 0x04, 0x02, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1A08 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B19F4 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x91, 0x04, 0x01, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B19D0 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B19AC -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1968 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1934 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B18FC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe8, 0x00, 0x2e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x02, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B18D8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B18B0 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B188C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0a, CW, east -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1840 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B17E8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B179C -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1750 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B1708 -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B1708 -gUnknown_81B1708: @ 81B1708 -.string " That was a tiring day.{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s do some more good tomorrow!\n" -.string "See you!\0" -.align 2, 0 - -.global gUnknown_81B1750 -gUnknown_81B1750: @ 81B1750 -.string " I{APOSTROPHE}m just beat today.\n" -.string "Let{APOSTROPHE}s keep up our good work tomorrow!\n" -.string "See you!\0" -.align 2, 0 - -.global gUnknown_81B179C -gUnknown_81B179C: @ 81B179C -.string " And we got to show\n" -.string "Gengar{APOSTROPHE}s team a thing or two{COMMA} so it{APOSTROPHE}s all\n" -.string "good!\0" -.align 2, 0 - -.global gUnknown_81B17E8 -gUnknown_81B17E8: @ 81B17E8 -.string " Sigh...\n" -.string "Well{COMMA} we ended up working for free{COMMA}\n" -.string "but that was the right thing to do.\0" -.align 2, 0 - -.global gUnknown_81B1840 -gUnknown_81B1840: @ 81B1840 -.string " Sigh...\n" -.string "Well{COMMA} we ended up working for free{COMMA}\n" -.string "but that had to be done.\0" -.align 2, 0 - -.global gUnknown_81B188C -gUnknown_81B188C: @ 81B188C -.string " OK{COMMA} bye!\n" -.string "Be careful going home.\0" -.align 2, 0 - -.global gUnknown_81B18B0 -gUnknown_81B18B0: @ 81B18B0 -.string " See you around.\n" -.string "Take care going home!\0" -.align 2, 0 - -.global gUnknown_81B18D8 -gUnknown_81B18D8: @ 81B18D8 -.string " {ARG_NICKNAME_0} and\n" -.string "{ARG_NICKNAME_1}{COMMA} thank you again!\0" -.align 2, 0 - -.global gUnknown_81B18FC -gUnknown_81B18FC: @ 81B18FC -.string " Let{APOSTROPHE}s work hard and build\n" -.string "our own rescue team base!\0" -.align 2, 0 - -.global gUnknown_81B1934 -gUnknown_81B1934: @ 81B1934 -.string " Let{APOSTROPHE}s be sure to build\n" -.string "our own rescue team base!\0" -.align 2, 0 - -.global gUnknown_81B1968 -gUnknown_81B1968: @ 81B1968 -.string " Let{APOSTROPHE}s make sure we build\n" -.string "ourselves a proper rescue team base!\0" -.align 2, 0 - -.global gUnknown_81B19AC -gUnknown_81B19AC: @ 81B19AC -.string " Haha!\n" -.string "That{APOSTROPHE}s what we{APOSTROPHE}ll do!\0" -.align 2, 0 - -.global gUnknown_81B19D0 -gUnknown_81B19D0: @ 81B19D0 -.string " Haha!\n" -.string "That{APOSTROPHE}s settled{COMMA} then!\0" -.align 2, 0 - -.global gUnknown_81B19F4 -gUnknown_81B19F4: @ 81B19F4 -.string " Me too! Me too!\0" -.align 2, 0 - -.global gUnknown_81B1A08 -gUnknown_81B1A08: @ 81B1A08 -.string " I want to work here when\n" -.string "I grow up!\0" -.align 2, 0 - -.global gUnknown_81B1A30 -gUnknown_81B1A30: @ 81B1A30 -.string " That{APOSTROPHE}s cool!\n" -.string "A rescue team base is cool!\0" -.align 2, 0 - -.global gUnknown_81B1A5C -gUnknown_81B1A5C: @ 81B1A5C -.string " {ARG_NICKNAME_0}{COMMA} we should\n" -.string "do something with this place.\0" -.align 2, 0 - -.global gUnknown_81B1A8C -gUnknown_81B1A8C: @ 81B1A8C -.string " We should make a proper\n" -.string "rescue team base here.\n" -.string "Something impressive.\0" -.align 2, 0 - -.global gUnknown_81B1AD4 -gUnknown_81B1AD4: @ 81B1AD4 -.string " {ARG_NICKNAME_0}{COMMA} why don{APOSTROPHE}t\n" -.string "we do something right here??\0" -.align 2, 0 - -.global gUnknown_81B1B08 -gUnknown_81B1B08: @ 81B1B08 -.string " Why don{APOSTROPHE}t we make\n" -.string "a properly impressive rescue team base?\0" -.align 2, 0 - -.global gUnknown_81B1B48 -gUnknown_81B1B48: @ 81B1B48 -.string " {ARG_NICKNAME_0}{COMMA} how about we\n" -.string "do something right here?\0" -.align 2, 0 - -.global gUnknown_81B1B78 -gUnknown_81B1B78: @ 81B1B78 -.string " I have an idea!\0" -.align 2, 0 - -.global gUnknown_81B1B8C -gUnknown_81B1B8C: @ 81B1B8C -.string " Hahaha!\n" -.string "That would be great!\n" -.string "Chase that dream!\0" -.align 2, 0 - -.global gUnknown_81B1BBC -gUnknown_81B1BBC: @ 81B1BBC -.string " Hahaha!\n" -.string "That{APOSTROPHE}d be awesome!\n" -.string "Go for it!\0" -.align 2, 0 - -.global gUnknown_81B1BE8 -gUnknown_81B1BE8: @ 81B1BE8 -.string " I want to go on rescues\n" -.string "when I grow up!\0" -.align 2, 0 - -.global gUnknown_81B1C14 -gUnknown_81B1C14: @ 81B1C14 -.string " You{APOSTROPHE}re even more cool\n" -.string "than I thought!\0" -.align 2, 0 - -.global gUnknown_81B1C40 -gUnknown_81B1C40: @ 81B1C40 -.string " ............{WAIT_PRESS}\n" -.string "Cool...\0" -.align 2, 0 - -.global gUnknown_81B1C58 -gUnknown_81B1C58: @ 81B1C58 -.string " We{APOSTROPHE}re happy to see that\n" -.string "{ARG_NICKNAME_3} is back safe and sound.\0" -.align 2, 0 - -.global gUnknown_81B1C90 -gUnknown_81B1C90: @ 81B1C90 -.string " It{APOSTROPHE}s just great to see\n" -.string "that {ARG_NICKNAME_3} is back safe and sound.\0" -.align 2, 0 - -.global gUnknown_81B1CCC -gUnknown_81B1CCC: @ 81B1CCC -.string " Oh{COMMA} no{COMMA} no.\n" -.string "We don{APOSTROPHE}t need a reward.\0" -.align 2, 0 - -.global gUnknown_81B1CF8 -gUnknown_81B1CF8: @ 81B1CF8 -.string " It{APOSTROPHE}s OK{COMMA} OK!\n" -.string "We don{APOSTROPHE}t need a reward.\0" -.align 2, 0 - -.global gUnknown_81B1D24 -gUnknown_81B1D24: @ 81B1D24 -.string " But I don{APOSTROPHE}t have any money...\0" -.align 2, 0 - -.global gUnknown_81B1D48 -gUnknown_81B1D48: @ 81B1D48 -.string " And thank you{COMMA}\n" -.string "{ARG_NICKNAME_1} and {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_81B1D68 -gUnknown_81B1D68: @ 81B1D68 -.string " Thank you{COMMA} {ARG_NICKNAME_2}!\0" -.align 2, 0 - -.global gUnknown_81B1D7C -gUnknown_81B1D7C: @ 81B1D7C -.string " This is great!\n" -.string "Welcome back{COMMA} {ARG_NICKNAME_3}!\0" -.align 2, 0 - -.global gUnknown_81B1DA4 -gUnknown_81B1DA4: @ 81B1DA4 -.byte 0xf6, 0x00, 0x44, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northwest -.byte 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0x4d, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, north -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x0a, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81B2054 -gUnknown_81B2054: @ 81B2054 -.byte 0xf6, 0x00, 0x72, 0x13, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5e, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00, 0xc7, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x4d, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southeast -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xca, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x91, 0x04, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x28, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B2384 -gUnknown_81B2384: @ 81B2384 -.byte 0xf6, 0x00, 0xa8, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x28, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B24B4 -gUnknown_81B24B4: @ 81B24B4 -.byte 0xf6, 0x00, 0xbe, 0x13, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B2534 -gUnknown_81B2534: @ 81B2534 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B24B4 - -.global gUnknown_81B2540 -gUnknown_81B2540: @ 81B2540 -.byte 0xf6, 0x00, 0xcb, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B281C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B27E8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B27D8 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B27BC -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B2794 -closeTextBox -.byte 0x2e, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B2760 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B2760 -gUnknown_81B2760: @ 81B2760 -.string " That{APOSTROPHE}s right...{WAIT_PRESS} Huh?{WAIT_PRESS}\n" -.string "Wait{COMMA} aren{APOSTROPHE}t you...\0" -.align 2, 0 - -.global gUnknown_81B2794 -gUnknown_81B2794: @ 81B2794 -.string " Umm... Is rescue team\n" -.string "{COLOR_1 CYAN}{ARG_TEAM_NAME}{END_COLOR_TEXT_1} here?\0" -.align 2, 0 - -.global gUnknown_81B27BC -gUnknown_81B27BC: @ 81B27BC -.string " Huh? Who could that be?\0" -.align 2, 0 - -.global gUnknown_81B27D8 -gUnknown_81B27D8: @ 81B27D8 -.string " Umm... Hello?\0" -.align 2, 0 - -.global gUnknown_81B27E8 -gUnknown_81B27E8: @ 81B27E8 -.string " {ARG_NICKNAME_0}{COMMA} good morning!\n" -.string "Let{APOSTROPHE}s do good again today!\0" -.align 2, 0 - -.global gUnknown_81B281C -gUnknown_81B281C: @ 81B281C -.string " {ARG_NICKNAME_0}{COMMA} morning!\n" -.string "Let{APOSTROPHE}s keep up our good work today!\0" -.align 2, 0 - -.global gUnknown_81B2854 -gUnknown_81B2854: @ 81B2854 -.byte 0xf6, 0x00, 0xf5, 0x13, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, south -.byte 0xdb, 0x00, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0xcc, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B2944 -gUnknown_81B2944: @ 81B2944 -.byte 0xf6, 0x00, 0x07, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B29C4 -gUnknown_81B29C4: @ 81B29C4 -.byte 0xf6, 0x00, 0x12, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x25, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B2AA4 -gUnknown_81B2AA4: @ 81B2AA4 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B29C4 - -.global gUnknown_81B2AB0 -gUnknown_81B2AB0: @ 81B2AB0 -.byte 0xf6, 0x00, 0x25, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B3648 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B3618 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B35E4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B35B8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B3580 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B3548 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B3530 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B34FC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B34E8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B34B8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B347C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B3410 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B33E4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B33B4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B336C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B334C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B3304 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B32E4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B328C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x0c, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x28 -.byte 0x2e, 0x15, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B3238 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B31E8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, south -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B31B8 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B3198 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B3170 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B3158 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B3144 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B3120 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, southeast -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B3104 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B30F0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B30F0 -gUnknown_81B30F0: @ 81B30F0 -.string " Let{APOSTROPHE}s go{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_81B3104 -gUnknown_81B3104: @ 81B3104 -.string " Let{APOSTROPHE}s get to it{COMMA}\n" -.string "{ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_81B3120 -gUnknown_81B3120: @ 81B3120 -.string " No problem!\n" -.string "You can count on us!\0" -.align 2, 0 - -.global gUnknown_81B3144 -gUnknown_81B3144: @ 81B3144 -.string " Leave it to us!\0" -.align 2, 0 - -.global gUnknown_81B3158 -gUnknown_81B3158: @ 81B3158 -.string " R-really?\n" -.string "Thank you!\0" -.align 2, 0 - -.global gUnknown_81B3170 -gUnknown_81B3170: @ 81B3170 -.string " OK{COMMA} then!\n" -.string "We{APOSTROPHE}ll go look for them!\0" -.align 2, 0 - -.global gUnknown_81B3198 -gUnknown_81B3198: @ 81B3198 -.string " OK!\n" -.string "We{APOSTROPHE}ll go look for them!\0" -.align 2, 0 - -.global gUnknown_81B31B8 -gUnknown_81B31B8: @ 81B31B8 -.string " That{APOSTROPHE}s it{COMMA} then!\n" -.string "We{APOSTROPHE}ll go look for them!\0" -.align 2, 0 - -.global gUnknown_81B31E8 -gUnknown_81B31E8: @ 81B31E8 -.string " Oh?{WAIT_PRESS} That{APOSTROPHE}s the spirit{COMMA}\n" -.string "{ARG_NICKNAME_0}.{WAIT_PRESS}\n" -.string "Your expression tells me you{APOSTROPHE}re ready.\0" -.align 2, 0 - -.global gUnknown_81B3238 -gUnknown_81B3238: @ 81B3238 -.string " Oh?{WAIT_PRESS}\n" -.string "That{APOSTROPHE}s the spirit{COMMA} {ARG_NICKNAME_0}.{WAIT_PRESS}\n" -.string "Your look says you won{APOSTROPHE}t need to be asked.\0" -.align 2, 0 - -.global gUnknown_81B328C -gUnknown_81B328C: @ 81B328C -.string " It doesn{APOSTROPHE}t sound like all\n" -.string "that challenging of a rescue mission...{WAIT_PRESS}\n" -.string "It is strange...\0" -.align 2, 0 - -.global gUnknown_81B32E4 -gUnknown_81B32E4: @ 81B32E4 -.string " But {ARG_NICKNAME_3} hasn{APOSTROPHE}t\n" -.string "returned...?\0" -.align 2, 0 - -.global gUnknown_81B3304 -gUnknown_81B3304: @ 81B3304 -.string " It doesn{APOSTROPHE}t sound like that\n" -.string "tough of a rescue...{WAIT_PRESS}\n" -.string "That is weird...\0" -.align 2, 0 - -.global gUnknown_81B334C -gUnknown_81B334C: @ 81B334C -.string " But {ARG_NICKNAME_3} hasn{APOSTROPHE}t\n" -.string "come back...\0" -.align 2, 0 - -.global gUnknown_81B336C -gUnknown_81B336C: @ 81B336C -.string " We thought {ARG_NICKNAME_3}{APOSTROPHE}s\n" -.string "wind would be able to dislodge our friend{COMMA}\n" -.string "but...\0" -.align 2, 0 - -.global gUnknown_81B33B4 -gUnknown_81B33B4: @ 81B33B4 -.string " {ARG_NICKNAME_3}{APOSTROPHE}s leafy fans\n" -.string "can whip up powerful winds.\0" -.align 2, 0 - -.global gUnknown_81B33E4 -gUnknown_81B33E4: @ 81B33E4 -.string " Not even a breeze?{WAIT_PRESS}\n" -.string "That is strange...\0" -.align 2, 0 - -.global gUnknown_81B3410 -gUnknown_81B3410: @ 81B3410 -.string " Even though the skies are\n" -.string "filled with thunderclouds{COMMA} for some\n" -.string "odd reason{COMMA} the winds haven{APOSTROPHE}t blown.\0" -.align 2, 0 - -.global gUnknown_81B347C -gUnknown_81B347C: @ 81B347C -.string " We {ARG_NICKNAME_2} can go\n" -.string "anywhere if we can catch a wind{COMMA} but...\0" -.align 2, 0 - -.global gUnknown_81B34B8 -gUnknown_81B34B8: @ 81B34B8 -.string " Our friend {ARG_NICKNAME_2} got\n" -.string "wedged between some rocks.\0" -.align 2, 0 - -.global gUnknown_81B34E8 -gUnknown_81B34E8: @ 81B34E8 -.string " Are you serious?!\0" -.align 2, 0 - -.global gUnknown_81B34FC -gUnknown_81B34FC: @ 81B34FC -.string " He hasn{APOSTROPHE}t come back yet\n" -.string "from the rescue mission.\0" -.align 2, 0 - -.global gUnknown_81B3530 -gUnknown_81B3530: @ 81B3530 -.string " Yes.{WAIT_PRESS}\n" -.string "But{COMMA} {ARG_NICKNAME_3}...\0" -.align 2, 0 - -.global gUnknown_81B3548 -gUnknown_81B3548: @ 81B3548 -.string " We watched {ARG_NICKNAME_3}\n" -.string "agreeing to take on your rescue job.\0" -.align 2, 0 - -.global gUnknown_81B3580 -gUnknown_81B3580: @ 81B3580 -.string " I remember now!{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_2}{COMMA} we saw you in Pokémon\n" -.string "Square.\0" -.align 2, 0 - -.global gUnknown_81B35B8 -gUnknown_81B35B8: @ 81B35B8 -.string " We saw {ARG_NICKNAME_3}\n" -.string "agreeing to do your rescue job.\0" -.align 2, 0 - -.global gUnknown_81B35E4 -gUnknown_81B35E4: @ 81B35E4 -.string " I remember!{WAIT_PRESS}\n" -.string "You{APOSTROPHE}re the {ARG_NICKNAME_2} in Pokémon\n" -.string "Square.\0" -.align 2, 0 - -.global gUnknown_81B3618 -gUnknown_81B3618: @ 81B3618 -.string " We saw {ARG_NICKNAME_3}{APOSTROPHE}s\n" -.string "team accepting your rescue job.\0" -.align 2, 0 - -.global gUnknown_81B3648 -gUnknown_81B3648: @ 81B3648 -.string " I remember now!{WAIT_PRESS}\n" -.string "You{APOSTROPHE}re the {ARG_NICKNAME_2} in Pokémon\n" -.string "Square.\0" -.align 2, 0 - -.global gUnknown_81B3680 -gUnknown_81B3680: @ 81B3680 -.byte 0xf6, 0x00, 0x95, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CW, northwest -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northwest -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B37F0 -gUnknown_81B37F0: @ 81B37F0 -.byte 0xf6, 0x00, 0xaf, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B38A0 -gUnknown_81B38A0: @ 81B38A0 -.byte 0xf6, 0x00, 0xbd, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B38D0 -gUnknown_81B38D0: @ 81B38D0 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B38A0 - -.global gUnknown_81B38DC -gUnknown_81B38DC: @ 81B38DC -.byte 0xf6, 0x00, 0xc5, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B390C -gUnknown_81B390C: @ 81B390C -.byte 0xf6, 0x00, 0xcb, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B39B4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B397C -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B397C -gUnknown_81B397C: @ 81B397C -.string " I hate to burden you{COMMA}\n" -.string "but you{APOSTROPHE}re our only hope...\0" -.align 2, 0 - -.global gUnknown_81B39B4 -gUnknown_81B39B4: @ 81B39B4 -.string " My friend is stuck in\n" -.string "a place called {COLOR_1 YELLOW_4}Silent Chasm{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_81B39F0 -gUnknown_81B39F0: @ 81B39F0 -.byte 0xf6, 0x00, 0xd5, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B3AC0 -gUnknown_81B3AC0: @ 81B3AC0 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B39F0 - -.global gUnknown_81B3ACC -gUnknown_81B3ACC: @ 81B3ACC -.byte 0xf6, 0x00, 0xe7, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B3BF0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B3BBC -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B3BBC -gUnknown_81B3BBC: @ 81B3BBC -.string " Good morning!{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s do our best like always!\0" -.align 2, 0 - -.global gUnknown_81B3BF0 -gUnknown_81B3BF0: @ 81B3BF0 -.string " Morning!{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s try to get things right today!\0" -.align 2, 0 - -.global gUnknown_81B3C24 -gUnknown_81B3C24: @ 81B3C24 -.byte 0xf6, 0x00, 0xf9, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B3C84 -gUnknown_81B3C84: @ 81B3C84 -.byte 0xf6, 0x00, 0x02, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B3D24 -gUnknown_81B3D24: @ 81B3D24 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B3C84 - -.global gUnknown_81B3D30 -gUnknown_81B3D30: @ 81B3D30 -.byte 0xf6, 0x00, 0x11, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x24, 0x00, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x1e, 0x00, 0x01, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B3DE0 -gUnknown_81B3DE0: @ 81B3DE0 -.byte 0xf6, 0x00, 0x1f, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B56D0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x2e, 0x0f, 0x03, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5698 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5670 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5648 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B563C -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5610 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B55E4 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B55B4 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B557C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5544 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5518 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x48, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5500 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xd2, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B54F8 -closeTextBox -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x40 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, northeast -.byte 0x44, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x10, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B54C0 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B548C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5474 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0x2e, 0x15, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5444 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5408 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B53C0 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5384 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B536C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5324 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0b, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B52F4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B52C8 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B52C8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B52C8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x10, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B52A8 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5264 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B523C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5214 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B51F4 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd8, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B51B0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5178 -.byte 0xd9, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5160 -.byte 0xd9, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5148 -.byte 0xf4, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5118 -.byte 0x2e, 0x15, 0x06, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x00, 0xff, 0xff, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B50F0 -.byte 0xd9, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B50E4 -.byte 0xd9, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5148 -.byte 0xf4, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B50C8 -.byte 0xd5, 0x00, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5090 -.byte 0xd9, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B507C -.byte 0xd9, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5148 -.byte 0xf4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5060 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5044 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5060 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5044 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5060 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5044 -closeTextBox -.byte 0xe7, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 45 -.byte 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5010 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B4FC4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B4F98 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B4F60 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B4F34 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B4EFC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5060 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5044 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5060 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5044 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5060 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5044 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xdb, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x10, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A37F8 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B4ED4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A7550 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x10, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B4E88 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B4E58 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B4E08 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B4DBC -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B4D80 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B4D58 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B4D30 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, east -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B4D04 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B4CEC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B4CD0 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x54, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81B4CD0 -gUnknown_81B4CD0: @ 81B4CD0 -.string " {ARG_NICKNAME_0}!\n" -.string "Let{APOSTROPHE}s do our best!\0" -.align 2, 0 - -.global gUnknown_81B4CEC -gUnknown_81B4CEC: @ 81B4CEC -.string " {ARG_NICKNAME_0}!\n" -.string "Let{APOSTROPHE}s do good!\0" -.align 2, 0 - -.global gUnknown_81B4D04 -gUnknown_81B4D04: @ 81B4D04 -.string " {ARG_NICKNAME_0}!\n" -.string "Let{APOSTROPHE}s give it our best{COMMA} partner!\0" -.align 2, 0 - -.global gUnknown_81B4D30 -gUnknown_81B4D30: @ 81B4D30 -.string " Yes!\n" -.string "I{APOSTROPHE}m getting excited over this!\0" -.align 2, 0 - -.global gUnknown_81B4D58 -gUnknown_81B4D58: @ 81B4D58 -.string " Yes!\n" -.string "I{APOSTROPHE}m getting stoked for this!\0" -.align 2, 0 - -.global gUnknown_81B4D80 -gUnknown_81B4D80: @ 81B4D80 -.string " Our objective is to rescue\n" -.string "Shiftry!\n" -.string "Let us find success!\0" -.align 2, 0 - -.global gUnknown_81B4DBC -gUnknown_81B4DBC: @ 81B4DBC -.string " You should make way for\n" -.string "{COLOR_1 YELLOW_4}Mt. Thunder{END_COLOR_TEXT_1} only when you are fully\n" -.string "prepared.\0" -.align 2, 0 - -.global gUnknown_81B4E08 -gUnknown_81B4E08: @ 81B4E08 -.string " Knowing how strong our\n" -.string "opponent is{COMMA} we have no choice but to\n" -.string "be cautious.\0" -.align 2, 0 - -.global gUnknown_81B4E58 -gUnknown_81B4E58: @ 81B4E58 -.string " We will go when we have\n" -.string "geared up for battle.\0" -.align 2, 0 - -.global gUnknown_81B4E88 -gUnknown_81B4E88: @ 81B4E88 -.string " Our two teams should make\n" -.string "our ways separately through {COLOR_1 YELLOW_4}Mt. Thunder{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_81B4ED4 -gUnknown_81B4ED4: @ 81B4ED4 -.string " Fine.{WAIT_PRESS}\n" -.string "I see that you have courage.\0" -.align 2, 0 - -.global gUnknown_81B4EFC -gUnknown_81B4EFC: @ 81B4EFC -.string " It{APOSTROPHE}s always a fake\n" -.string "stomachache.\n" -.string "It bugs me a little.\0" -.align 2, 0 - -.global gUnknown_81B4F34 -gUnknown_81B4F34: @ 81B4F34 -.string " No problem!{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_0} always does this act.\0" -.align 2, 0 - -.global gUnknown_81B4F60 -gUnknown_81B4F60: @ 81B4F60 -.string " Always faking a\n" -.string "stomachache...\n" -.string "It gets to be annoying.\0" -.align 2, 0 - -.global gUnknown_81B4F98 -gUnknown_81B4F98: @ 81B4F98 -.string " No problem!{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_0} always puts on this act.\0" -.align 2, 0 - -.global gUnknown_81B4FC4 -gUnknown_81B4FC4: @ 81B4FC4 -.string " Always faking these\n" -.string "stomachaches...\n" -.string "It{APOSTROPHE}s a big headache{COMMA} I tell you!\0" -.align 2, 0 - -.global gUnknown_81B5010 -gUnknown_81B5010: @ 81B5010 -.string " No problem!{WAIT_PRESS}\n" -.string "My partner always puts on this act.\0" -.align 2, 0 - -.global gUnknown_81B5044 -gUnknown_81B5044: @ 81B5044 -.string " We want to help Shiftry!\0" -.align 2, 0 - -.global gUnknown_81B5060 -gUnknown_81B5060: @ 81B5060 -.string " We{APOSTROPHE}re a rescue team too!\0" -.align 2, 0 - -.global gUnknown_81B507C -gUnknown_81B507C: @ 81B507C -.string "I{APOSTROPHE}m not scared!\0" -.align 2, 0 - -.global gUnknown_81B5090 -gUnknown_81B5090: @ 81B5090 -.string " It might gobble you up for\n" -.string "a snack!\n" -.string "Can you face that?\0" -.align 2, 0 - -.global gUnknown_81B50C8 -gUnknown_81B50C8: @ 81B50C8 -.string " Zapdos is wickedly tough!\0" -.align 2, 0 - -.global gUnknown_81B50E4 -gUnknown_81B50E4: @ 81B50E4 -.string "No problem!\0" -.align 2, 0 - -.global gUnknown_81B50F0 -gUnknown_81B50F0: @ 81B50F0 -.string " It{APOSTROPHE}ll leave you stunned and\n" -.string "shaking!\0" -.align 2, 0 - -.global gUnknown_81B5118 -gUnknown_81B5118: @ 81B5118 -.string " Have you ever been hit\n" -.string "with an electric blast?\0" -.align 2, 0 - -.global gUnknown_81B5148 -gUnknown_81B5148: @ 81B5148 -.string "Owowow... My stomach!\0" -.align 2, 0 - -.global gUnknown_81B5160 -gUnknown_81B5160: @ 81B5160 -.string "Yup! I{APOSTROPHE}m not scared!\0" -.align 2, 0 - -.global gUnknown_81B5178 -gUnknown_81B5178: @ 81B5178 -.string " Besides{COMMA} Zapdos doesn{APOSTROPHE}t\n" -.string "scare us.{WAIT_PRESS}\n" -.string "Right{COMMA} {ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_81B51B0 -gUnknown_81B51B0: @ 81B51B0 -.string " And we{APOSTROPHE}re not afraid of no\n" -.string "Zapdos!{WAIT_PRESS}\n" -.string "Isn{APOSTROPHE}t that right{COMMA} {ARG_NICKNAME_0}?!\0" -.align 2, 0 - -.global gUnknown_81B51F4 -gUnknown_81B51F4: @ 81B51F4 -.string " Hey!\n" -.string "We{APOSTROPHE}re not that weak!\0" -.align 2, 0 - -.global gUnknown_81B5214 -gUnknown_81B5214: @ 81B5214 -.string " Wait a second!\n" -.string "We{APOSTROPHE}re not that weak!\0" -.align 2, 0 - -.global gUnknown_81B523C -gUnknown_81B523C: @ 81B523C -.string " Hey{COMMA} now!\n" -.string "We{APOSTROPHE}re not that wimpy!\0" -.align 2, 0 - -.global gUnknown_81B5264 -gUnknown_81B5264: @ 81B5264 -.string " Zapdos is powerful.{WAIT_PRESS}\n" -.string "It will be too much for your skill level.\0" -.align 2, 0 - -.global gUnknown_81B52A8 -gUnknown_81B52A8: @ 81B52A8 -.string " What?!{WAIT_PRESS}\n" -.string "That is dangerous!\0" -.align 2, 0 - -.global gUnknown_81B52C8 -gUnknown_81B52C8: @ 81B52C8 -.string " We{APOSTROPHE}ll go too!\n" -.string "We{APOSTROPHE}ll go help Shiftry!\0" -.align 2, 0 - -.global gUnknown_81B52F4 -gUnknown_81B52F4: @ 81B52F4 -.string " I know that.{WAIT_PRESS}\n" -.string "We will need to be cautious.\0" -.align 2, 0 - -.global gUnknown_81B5324 -gUnknown_81B5324: @ 81B5324 -.string " But Zapdos won{APOSTROPHE}t be easy.{WAIT_PRESS}\n" -.string "Its electric attacks are wicked nasty.\0" -.align 2, 0 - -.global gUnknown_81B536C -gUnknown_81B536C: @ 81B536C -.string " Shiftry must be saved.\0" -.align 2, 0 - -.global gUnknown_81B5384 -gUnknown_81B5384: @ 81B5384 -.string " Zapdos is enraged from\n" -.string "having been awoken from its sleep.\0" -.align 2, 0 - -.global gUnknown_81B53C0 -gUnknown_81B53C0: @ 81B53C0 -.string " It must have been caused\n" -.string "by the rash of natural disasters recently.\0" -.align 2, 0 - -.global gUnknown_81B5408 -gUnknown_81B5408: @ 81B5408 -.string " To begin with{COMMA} the absence\n" -.string "of winds there was unnatural.\0" -.align 2, 0 - -.global gUnknown_81B5444 -gUnknown_81B5444: @ 81B5444 -.string " No.{WAIT_PRESS}\n" -.string "Shiftry{APOSTROPHE}s winds were only the trigger.\0" -.align 2, 0 - -.global gUnknown_81B5474 -gUnknown_81B5474: @ 81B5474 -.string " So Shiftry woke it up?\0" -.align 2, 0 - -.global gUnknown_81B548C -gUnknown_81B548C: @ 81B548C -.string " I heard it had been\n" -.string "sleeping for a long time...\0" -.align 2, 0 - -.global gUnknown_81B54C0 -gUnknown_81B54C0: @ 81B54C0 -.string " Zapdos...{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s one of the legendary bird Pokémon.\0" -.align 2, 0 - -.global gUnknown_81B54F8 -gUnknown_81B54F8: @ 81B54F8 -.string " {ARG_NICKNAME_4}!\0" -.align 2, 0 - -.global gUnknown_81B5500 -gUnknown_81B5500: @ 81B5500 -.string " Did you say Zapdos?\0" -.align 2, 0 - -.global gUnknown_81B5518 -gUnknown_81B5518: @ 81B5518 -.string " That monster...{WAIT_PRESS}\n" -.string "It said it was Zapdos...\0" -.align 2, 0 - -.global gUnknown_81B5544 -gUnknown_81B5544: @ 81B5544 -.string " That monster...{WAIT_PRESS}\n" -.string "It said it was Zapdos or something.\0" -.align 2, 0 - -.global gUnknown_81B557C -gUnknown_81B557C: @ 81B557C -.string " And that was when that\n" -.string "monster appeared in the sky.\0" -.align 2, 0 - -.global gUnknown_81B55B4 -gUnknown_81B55B4: @ 81B55B4 -.string " But those winds tore\n" -.string "a thundercloud in two...\0" -.align 2, 0 - -.global gUnknown_81B55E4 -gUnknown_81B55E4: @ 81B55E4 -.string " And released me from\n" -.string "between the rocks.\0" -.align 2, 0 - -.global gUnknown_81B5610 -gUnknown_81B5610: @ 81B5610 -.string " Shiftry whipped up winds\n" -.string "with his fans...\0" -.align 2, 0 - -.global gUnknown_81B563C -gUnknown_81B563C: @ 81B563C -.string " ...Yes...\0" -.align 2, 0 - -.global gUnknown_81B5648 -gUnknown_81B5648: @ 81B5648 -.string " Please tell us.\n" -.string "Exactly what happened?\0" -.align 2, 0 - -.global gUnknown_81B5670 -gUnknown_81B5670: @ 81B5670 -.string " Tell us.\n" -.string "What went down{COMMA} exactly?\0" -.align 2, 0 - -.global gUnknown_81B5698 -gUnknown_81B5698: @ 81B5698 -.string " But even though I{APOSTROPHE}m safe{COMMA}\n" -.string "Shiftry is in trouble...\0" -.align 2, 0 - -.global gUnknown_81B56D0 -gUnknown_81B56D0: @ 81B56D0 -.string " Yay! Saved!\n" -.string "I{APOSTROPHE}m so happy!\0" -.align 2, 0 - -.global gUnknown_81B56F0 -gUnknown_81B56F0: @ 81B56F0 -.byte 0xf6, 0x00, 0x25, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, northeast -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, west -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x10 -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, west -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B59C0 -gUnknown_81B59C0: @ 81B59C0 -.byte 0xf6, 0x00, 0x55, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x91, 0x04, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, east -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, south -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B5B60 -gUnknown_81B5B60: @ 81B5B60 -.byte 0xf6, 0x00, 0x72, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, west -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, east -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, south -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B5C80 -gUnknown_81B5C80: @ 81B5C80 -.byte 0xf6, 0x00, 0x87, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x58, 0x00, 0x01, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southwest -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northeast -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southwest -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B5DA0 -gUnknown_81B5DA0: @ 81B5DA0 -.byte 0xf6, 0x00, 0x9c, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x58, 0x00, 0x01, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CCW, southwest -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southwest -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B5EA0 -gUnknown_81B5EA0: @ 81B5EA0 -.byte 0xf6, 0x00, 0xaf, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x58, 0x00, 0x01, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, west -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B5F60 -gUnknown_81B5F60: @ 81B5F60 -.byte 0xf6, 0x00, 0xbe, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B6030 -gUnknown_81B6030: @ 81B6030 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B5F60 - -.global gUnknown_81B603C -gUnknown_81B603C: @ 81B603C -.byte 0xf6, 0x00, 0xd0, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x02, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B6478 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B644C -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B63F8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B63BC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B634C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B6308 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B62B0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B6268 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B620C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B61DC -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B61DC -gUnknown_81B61DC: @ 81B61DC -.string " But anyway{COMMA} let{APOSTROPHE}s do our\n" -.string "best like always!\0" -.align 2, 0 - -.global gUnknown_81B620C -gUnknown_81B620C: @ 81B620C -.string " What should we do?{WAIT_PRESS}\n" -.string "We can go to {COLOR_1 YELLOW_4}Mt. Thunder{END_COLOR_TEXT_1} right now\n" -.string "or later. It{APOSTROPHE}s up to you.\0" -.align 2, 0 - -.global gUnknown_81B6268 -gUnknown_81B6268: @ 81B6268 -.string " But Alakazam said that we\n" -.string "should be properly prepared before we\n" -.string "try...\0" -.align 2, 0 - -.global gUnknown_81B62B0 -gUnknown_81B62B0: @ 81B62B0 -.string " OK...{WAIT_PRESS}\n" -.string "We should be heading to {COLOR_1 YELLOW_4}Mt. Thunder{END_COLOR_TEXT_1} to\n" -.string "do the Shiftry rescue{COMMA} right?\0" -.align 2, 0 - -.global gUnknown_81B6308 -gUnknown_81B6308: @ 81B6308 -.string " But whatever we do today{COMMA}\n" -.string "let{APOSTROPHE}s give it our best like always!\0" -.align 2, 0 - -.global gUnknown_81B634C -gUnknown_81B634C: @ 81B634C -.string " What do you think?{WAIT_PRESS}\n" -.string "We can go off to {COLOR_1 YELLOW_4}Mt. Thunder{END_COLOR_TEXT_1} right away{COMMA}\n" -.string "or we can put it off. It{APOSTROPHE}s your choice.\0" -.align 2, 0 - -.global gUnknown_81B63BC -gUnknown_81B63BC: @ 81B63BC -.string " But Alakazam said we should\n" -.string "be prepared before going...\0" -.align 2, 0 - -.global gUnknown_81B63F8 -gUnknown_81B63F8: @ 81B63F8 -.string " So now...{WAIT_PRESS}\n" -.string "We{APOSTROPHE}re supposed to be rescuing Shiftry at\n" -.string "{COLOR_1 YELLOW_4}Mt. Thunder{END_COLOR_TEXT_1}{COMMA} right?\0" -.align 2, 0 - -.global gUnknown_81B644C -gUnknown_81B644C: @ 81B644C -.string " Good morning{COMMA} {ARG_NICKNAME_0}!\n" -.string "Did you sleep well?\0" -.align 2, 0 - -.global gUnknown_81B6478 -gUnknown_81B6478: @ 81B6478 -.string " Morning{COMMA} {ARG_NICKNAME_0}!\n" -.string "Get a good night{APOSTROPHE}s sleep?\0" -.align 2, 0 - -.global gUnknown_81B64A8 -gUnknown_81B64A8: @ 81B64A8 -.byte 0xf6, 0x00, 0xee, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x60, 0x00, 0x01 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B6528 -gUnknown_81B6528: @ 81B6528 -.byte 0xf6, 0x00, 0xf9, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B6548 -gUnknown_81B6548: @ 81B6548 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B6528 - -.global gUnknown_81B6554 -gUnknown_81B6554: @ 81B6554 -.byte 0xf6, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B6624 -gUnknown_81B6624: @ 81B6624 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B6554 - -.global gUnknown_81B6630 -gUnknown_81B6630: @ 81B6630 -.byte 0xf6, 0x00, 0x12, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B6720 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B3BBC -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B6720 -gUnknown_81B6720: @ 81B6720 -.string " Morning!{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s keep giving it our best!\0" -.align 2, 0 - -.global gUnknown_81B6750 -gUnknown_81B6750: @ 81B6750 -.byte 0xf6, 0x00, 0x24, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B67B0 -gUnknown_81B67B0: @ 81B67B0 -.byte 0xf6, 0x00, 0x2d, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B6880 -gUnknown_81B6880: @ 81B6880 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B67B0 - -.global gUnknown_81B688C -gUnknown_81B688C: @ 81B688C -.byte 0xf6, 0x00, 0x3f, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0x28, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B690C -gUnknown_81B690C: @ 81B690C -.byte 0xf6, 0x00, 0x4a, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7660 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7634 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B75F8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B75C0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B75A8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B757C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7520 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B74E0 -closeTextBox -pause 0x0a -setFlag 0x04 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x02, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd8, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B74C4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B74A8 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7498 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7478 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7470 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7470 -closeTextBox -.byte 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7470 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7448 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7470 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B741C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7470 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B73F0 -closeTextBox -.byte 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd8, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B73C0 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B738C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7364 -.byte 0xd9, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B734C -.byte 0xd9, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7334 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd8, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7324 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7470 -.byte 0xd9, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B734C -.byte 0xd9, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7334 -.byte 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7300 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B72DC -.byte 0xd9, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B72C4 -.byte 0xd9, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B72A8 -.byte 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7298 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7254 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7224 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7214 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B71C8 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B71A0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7190 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7254 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B71A0 -closeTextBox -.byte 0x2e, 0x02, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7158 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7158 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7158 -closeTextBox -.byte 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7130 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7224 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7104 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B71A0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B70D0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B71A0 -closeTextBox -.byte 0x2e, 0x02, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7158 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7158 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7158 -closeTextBox -.byte 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7080 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B702C -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B702C -gUnknown_81B702C: @ 81B702C -.string " That{APOSTROPHE}s what this is about.\n" -.string "So{COMMA} as always{COMMA} let{APOSTROPHE}s try our best to \n" -.string "do well!\0" -.align 2, 0 - -.global gUnknown_81B7080 -gUnknown_81B7080: @ 81B7080 -.string " That{APOSTROPHE}s what it{APOSTROPHE}s about.\n" -.string "So anyway{COMMA} let{APOSTROPHE}s give it our best as\n" -.string "usual!\0" -.align 2, 0 - -.global gUnknown_81B70D0 -gUnknown_81B70D0: @ 81B70D0 -.string " Someone else?\n" -.string "Come on{COMMA} what do you think I am?\0" -.align 2, 0 - -.global gUnknown_81B7104 -gUnknown_81B7104: @ 81B7104 -.string " For someone else?\n" -.string "Now isn{APOSTROPHE}t that cold?\0" -.align 2, 0 - -.global gUnknown_81B7130 -gUnknown_81B7130: @ 81B7130 -.string " For someone else?\n" -.string "Now that{APOSTROPHE}s cold.\0" -.align 2, 0 - -.global gUnknown_81B7158 -gUnknown_81B7158: @ 81B7158 -.string " I want to do my best\n" -.string "because it{APOSTROPHE}s for you{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81B7190 -gUnknown_81B7190: @ 81B7190 -.string " You said it.\0" -.align 2, 0 - -.global gUnknown_81B71A0 -gUnknown_81B71A0: @ 81B71A0 -.string " We{APOSTROPHE}re friends{COMMA} aren{APOSTROPHE}t we{COMMA}\n" -.string "{ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_81B71C8 -gUnknown_81B71C8: @ 81B71C8 -.string " Because it{APOSTROPHE}s not about me{COMMA}\n" -.string "I can try that much harder to do my best.\0" -.align 2, 0 - -.global gUnknown_81B7214 -gUnknown_81B7214: @ 81B7214 -.string " That{APOSTROPHE}s why.\0" -.align 2, 0 - -.global gUnknown_81B7224 -gUnknown_81B7224: @ 81B7224 -.string " You and me--we{APOSTROPHE}re friends{COMMA}\n" -.string "right{COMMA} {ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_81B7254 -gUnknown_81B7254: @ 81B7254 -.string " It lets me try harder to do\n" -.string "my best because it{APOSTROPHE}s not about me.\0" -.align 2, 0 - -.global gUnknown_81B7298 -gUnknown_81B7298: @ 81B7298 -.string " Well{COMMA} sure.\0" -.align 2, 0 - -.global gUnknown_81B72A8 -gUnknown_81B72A8: @ 81B72A8 -.string "It{APOSTROPHE}s for someone else...\0" -.align 2, 0 - -.global gUnknown_81B72C4 -gUnknown_81B72C4: @ 81B72C4 -.string "It{APOSTROPHE}s not for you...\0" -.align 2, 0 - -.global gUnknown_81B72DC -gUnknown_81B72DC: @ 81B72DC -.string " Why...?{WAIT_PRESS}\n" -.string "What{COMMA} you need to ask?\0" -.align 2, 0 - -.global gUnknown_81B7300 -gUnknown_81B7300: @ 81B7300 -.string " Why...?{WAIT_PRESS}\n" -.string "You need to ask me that?\0" -.align 2, 0 - -.global gUnknown_81B7324 -gUnknown_81B7324: @ 81B7324 -.string " What{APOSTROPHE}s that?\0" -.align 2, 0 - -.global gUnknown_81B7334 -gUnknown_81B7334: @ 81B7334 -.string "Why are you so happy?\0" -.align 2, 0 - -.global gUnknown_81B734C -gUnknown_81B734C: @ 81B734C -.string "Why do you try so hard?\0" -.align 2, 0 - -.global gUnknown_81B7364 -gUnknown_81B7364: @ 81B7364 -.string " What{APOSTROPHE}s the matter?\n" -.string "Go on{COMMA} say it.\0" -.align 2, 0 - -.global gUnknown_81B738C -gUnknown_81B738C: @ 81B738C -.string " What{APOSTROPHE}s wrong?\n" -.string "Don{APOSTROPHE}t you want to talk about it?\0" -.align 2, 0 - -.global gUnknown_81B73C0 -gUnknown_81B73C0: @ 81B73C0 -.string " So what{APOSTROPHE}s the matter?\n" -.string "Get it off your chest.\0" -.align 2, 0 - -.global gUnknown_81B73F0 -gUnknown_81B73F0: @ 81B73F0 -.string " Weren{APOSTROPHE}t you about to ask\n" -.string "me something?\0" -.align 2, 0 - -.global gUnknown_81B741C -gUnknown_81B741C: @ 81B741C -.string " Weren{APOSTROPHE}t you going to ask\n" -.string "me something?\0" -.align 2, 0 - -.global gUnknown_81B7448 -gUnknown_81B7448: @ 81B7448 -.string " Didn{APOSTROPHE}t you want to ask me\n" -.string "something?\0" -.align 2, 0 - -.global gUnknown_81B7470 -gUnknown_81B7470: @ 81B7470 -.string " Huh?\0" -.align 2, 0 - -.global gUnknown_81B7478 -gUnknown_81B7478: @ 81B7478 -.string "It{APOSTROPHE}s OK{COMMA} it{APOSTROPHE}s nothing.\0" -.align 2, 0 - -.global gUnknown_81B7498 -gUnknown_81B7498: @ 81B7498 -.string "Listen{COMMA} {ARG_NICKNAME_1}.\0" -.align 2, 0 - -.global gUnknown_81B74A8 -gUnknown_81B74A8: @ 81B74A8 -.string " Huh? What{APOSTROPHE}s the matter?\0" -.align 2, 0 - -.global gUnknown_81B74C4 -gUnknown_81B74C4: @ 81B74C4 -.string " Huh? What{APOSTROPHE}s up with you?\0" -.align 2, 0 - -.global gUnknown_81B74E0 -gUnknown_81B74E0: @ 81B74E0 -.string " We should go there right\n" -.string "away!\n" -.string "Off to the {COLOR_1 YELLOW_4}Great Canyon{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_81B7520 -gUnknown_81B7520: @ 81B7520 -.string " It turns out that the\n" -.string "{COLOR_1 CYAN}Hill of the Ancients{END_COLOR_TEXT_1} is apparently in\n" -.string "the {COLOR_1 YELLOW_4}Great Canyon{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_81B757C -gUnknown_81B757C: @ 81B757C -.string " Yesterday{COMMA} I did some\n" -.string "checking around.\0" -.align 2, 0 - -.global gUnknown_81B75A8 -gUnknown_81B75A8: @ 81B75A8 -.string " {ARG_NICKNAME_0}{COMMA} good morning!\0" -.align 2, 0 - -.global gUnknown_81B75C0 -gUnknown_81B75C0: @ 81B75C0 -.string " So let{APOSTROPHE}s roll!\n" -.string "Off we go to the {COLOR_1 YELLOW_4}Great Canyon{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_81B75F8 -gUnknown_81B75F8: @ 81B75F8 -.string " The {COLOR_1 CYAN}Hill of the Ancients{END_COLOR_TEXT_1}\n" -.string "is in the {COLOR_1 YELLOW_4}Great Canyon{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_81B7634 -gUnknown_81B7634: @ 81B7634 -.string " I did a little checking\n" -.string "around yesterday.\0" -.align 2, 0 - -.global gUnknown_81B7660 -gUnknown_81B7660: @ 81B7660 -.string " {ARG_NICKNAME_0}{COMMA} morning!\0" -.align 2, 0 - -.global gUnknown_81B7674 -gUnknown_81B7674: @ 81B7674 -.byte 0xf6, 0x00, 0xc1, 0x17, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x2e, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x99, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xcf, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0xcf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B77E4 -gUnknown_81B77E4: @ 81B77E4 -.byte 0xf6, 0x00, 0xdb, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B78B4 -gUnknown_81B78B4: @ 81B78B4 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B77E4 - -.global gUnknown_81B78C0 -gUnknown_81B78C0: @ 81B78C0 -.byte 0xf6, 0x00, 0xed, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A7600 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B79E8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A75E8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B79C0 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B79C0 -gUnknown_81B79C0: @ 81B79C0 -.string " Let{APOSTROPHE}s do our best like we\n" -.string "always do!\0" -.align 2, 0 - -.global gUnknown_81B79E8 -gUnknown_81B79E8: @ 81B79E8 -.string " Like always{COMMA} let{APOSTROPHE}s give\n" -.string "it our best!\0" -.align 2, 0 - -.global gUnknown_81B7A14 -gUnknown_81B7A14: @ 81B7A14 -.byte 0xf6, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B7A74 -gUnknown_81B7A74: @ 81B7A74 -.byte 0xf6, 0x00, 0x09, 0x18, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B7B44 -gUnknown_81B7B44: @ 81B7B44 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7A74 - -.global gUnknown_81B7B50 -gUnknown_81B7B50: @ 81B7B50 -.byte 0xf6, 0x00, 0x1b, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A7600 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9E9C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A75E8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9E50 -closeTextBox -.byte 0x2e, 0x02, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd8, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9E14 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9DCC -.byte 0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBBC -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9DC8 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9D90 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9D28 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9CEC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9C8C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9C58 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9BEC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9B94 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9B30 -closeTextBox -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x2e, 0x02, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9AFC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9AE0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9AC0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9A70 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9A4C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9A1C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9AC0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9A70 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9A08 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B99C4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9984 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9960 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9944 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B98F4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B98A4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9878 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9A08 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9830 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9984 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9800 -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B97C0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9780 -closeTextBox -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9744 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9710 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B96C4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9690 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd5, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B965C -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9650 -.byte 0xd9, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9640 -.byte 0xa5, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B961C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B961C -closeTextBox -.byte 0xa5, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd8, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B95E8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B95B4 -.byte 0xd9, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B95A0 -.byte 0xd9, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9588 -.byte 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 42 -.byte 0xdb, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9544 -closeTextBox -.byte 0x2e, 0x02, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9510 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B94E4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa5, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd8, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B94B0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9474 -.byte 0xd9, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9458 -.byte 0xd9, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9588 -.byte 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B943C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9420 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa5, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd8, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B93FC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B93D8 -.byte 0xd9, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B93CC -.byte 0xd9, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B93C0 -.byte 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B93A0 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B937C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9364 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9358 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9310 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9304 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B92AC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9304 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9258 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9240 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0x2e, 0x02, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd5, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9224 -.byte 0xd9, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9204 -.byte 0xd9, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B91E0 -.byte 0xf4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B91AC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B917C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B913C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9100 -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B90CC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B90A0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x64 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x2e, 0x02, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9084 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9044 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9024 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B8FE4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B90CC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B90A0 -closeTextBox -.byte 0xe7, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x2e, 0x02, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B8FC4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B8FB4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B8F98 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B8F78 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B8F34 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B8EF8 -closeTextBox -.byte 0xe7, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B8EBC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B8E90 -closeTextBox -.byte 0xf4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B8E50 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B8E28 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B8DEC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B8DB4 -closeTextBox -.byte 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B8D84 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B8D6C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B8D30 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B8D6C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B8D84 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B8D6C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81B8D30 -gUnknown_81B8D30: @ 81B8D30 -.string " Well{COMMA} I guess we{APOSTROPHE}ll have to\n" -.string "keep doing what we can.\0" -.align 2, 0 - -.global gUnknown_81B8D6C -gUnknown_81B8D6C: @ 81B8D6C -.string " One thing at a time...\0" -.align 2, 0 - -.global gUnknown_81B8D84 -gUnknown_81B8D84: @ 81B8D84 -.string " I guess we{APOSTROPHE}ll just have to\n" -.string "do what we can.\0" -.align 2, 0 - -.global gUnknown_81B8DB4 -gUnknown_81B8DB4: @ 81B8DB4 -.string " To be honest{COMMA} I don{APOSTROPHE}t know\n" -.string "what we should do...\0" -.align 2, 0 - -.global gUnknown_81B8DEC -gUnknown_81B8DEC: @ 81B8DEC -.string " I can{APOSTROPHE}t imagine what the\n" -.string "world{APOSTROPHE}s balance is about...\0" -.align 2, 0 - -.global gUnknown_81B8E28 -gUnknown_81B8E28: @ 81B8E28 -.string " Honest{COMMA} I don{APOSTROPHE}t know what\n" -.string "to do...\0" -.align 2, 0 - -.global gUnknown_81B8E50 -gUnknown_81B8E50: @ 81B8E50 -.string " I don{APOSTROPHE}t have a clue what\n" -.string "the world{APOSTROPHE}s balance is about...\0" -.align 2, 0 - -.global gUnknown_81B8E90 -gUnknown_81B8E90: @ 81B8E90 -.string " ...OK.{WAIT_PRESS}\n" -.string "I guess so. You wouldn{APOSTROPHE}t know.\0" -.align 2, 0 - -.global gUnknown_81B8EBC -gUnknown_81B8EBC: @ 81B8EBC -.string " ...OK.{WAIT_PRESS}\n" -.string "Yeah{COMMA} I guess so.\n" -.string "It{APOSTROPHE}d be impossible to know.\0" -.align 2, 0 - -.global gUnknown_81B8EF8 -gUnknown_81B8EF8: @ 81B8EF8 -.string " ...But I guess it isn{APOSTROPHE}t\n" -.string "possible to know what it is...\0" -.align 2, 0 - -.global gUnknown_81B8F34 -gUnknown_81B8F34: @ 81B8F34 -.string " ...But{COMMA} yeah{COMMA} I guess it{APOSTROPHE}s\n" -.string "impossible to tell what it is...\0" -.align 2, 0 - -.global gUnknown_81B8F78 -gUnknown_81B8F78: @ 81B8F78 -.string " Don{APOSTROPHE}t joke around like that!\0" -.align 2, 0 - -.global gUnknown_81B8F98 -gUnknown_81B8F98: @ 81B8F98 -.string " Sheesh!\n" -.string "That is so lame!\0" -.align 2, 0 - -.global gUnknown_81B8FB4 -gUnknown_81B8FB4: @ 81B8FB4 -.string " Cut it out!\0" -.align 2, 0 - -.global gUnknown_81B8FC4 -gUnknown_81B8FC4: @ 81B8FC4 -.string " What?!\n" -.string "That{APOSTROPHE}s really lame!\0" -.align 2, 0 - -.global gUnknown_81B8FE4 -gUnknown_81B8FE4: @ 81B8FE4 -.string " If that{APOSTROPHE}s all it took{COMMA}\n" -.string "none of this would be necessary!\0" -.align 2, 0 - -.global gUnknown_81B9024 -gUnknown_81B9024: @ 81B9024 -.string " What are you saying?!\n" -.string "Guts?!\0" -.align 2, 0 - -.global gUnknown_81B9044 -gUnknown_81B9044: @ 81B9044 -.string " If that{APOSTROPHE}s all it took{COMMA} we\n" -.string "wouldn{APOSTROPHE}t be talking about it!\0" -.align 2, 0 - -.global gUnknown_81B9084 -gUnknown_81B9084: @ 81B9084 -.string " What do you mean{COMMA} guts?!\0" -.align 2, 0 - -.global gUnknown_81B90A0 -gUnknown_81B90A0: @ 81B90A0 -.string " So{COMMA} you don{APOSTROPHE}t know either{COMMA}\n" -.string "{ARG_NICKNAME_0}...\0" -.align 2, 0 - -.global gUnknown_81B90CC -gUnknown_81B90CC: @ 81B90CC -.string " So{COMMA} you don{APOSTROPHE}t know anything\n" -.string "at all{COMMA} {ARG_NICKNAME_0}...\0" -.align 2, 0 - -.global gUnknown_81B9100 -gUnknown_81B9100: @ 81B9100 -.string " I wish you{APOSTROPHE}d be more\n" -.string "considerate before making jokes!\0" -.align 2, 0 - -.global gUnknown_81B913C -gUnknown_81B913C: @ 81B913C -.string " What{APOSTROPHE}s wrong with you?!\n" -.string "Saying all these ridiculous things!\0" -.align 2, 0 - -.global gUnknown_81B917C -gUnknown_81B917C: @ 81B917C -.string " Think a little more before\n" -.string "you say anything!\0" -.align 2, 0 - -.global gUnknown_81B91AC -gUnknown_81B91AC: @ 81B91AC -.string " What is it with you?!\n" -.string "Goofing around like that!\0" -.align 2, 0 - -.global gUnknown_81B91E0 -gUnknown_81B91E0: @ 81B91E0 -.string "It{APOSTROPHE}s impossible{COMMA} after all...\0" -.align 2, 0 - -.global gUnknown_81B9204 -gUnknown_81B9204: @ 81B9204 -.string "It appears to be impossible...\0" -.align 2, 0 - -.global gUnknown_81B9224 -gUnknown_81B9224: @ 81B9224 -.string " ........................\0" -.align 2, 0 - -.global gUnknown_81B9240 -gUnknown_81B9240: @ 81B9240 -.string " No way!\n" -.string "Not a chance!\0" -.align 2, 0 - -.global gUnknown_81B9258 -gUnknown_81B9258: @ 81B9258 -.string " Just who we need!{WAIT_PRESS}\n" -.string "You see{COMMA} we{APOSTROPHE}re wondering if you could\n" -.string "carry us to space...\0" -.align 2, 0 - -.global gUnknown_81B92AC -gUnknown_81B92AC: @ 81B92AC -.string " You came at the right time!{WAIT_PRESS}\n" -.string "I was wondering if you could carry us\n" -.string "out to space...\0" -.align 2, 0 - -.global gUnknown_81B9304 -gUnknown_81B9304: @ 81B9304 -.string " Oh! {ARG_NICKNAME_2}!\0" -.align 2, 0 - -.global gUnknown_81B9310 -gUnknown_81B9310: @ 81B9310 -.string " You came at the right time!{WAIT_PRESS}\n" -.string "We want you to carry us out to space...\0" -.align 2, 0 - -.global gUnknown_81B9358 -gUnknown_81B9358: @ 81B9358 -.string " Hey! {ARG_NICKNAME_2}!\0" -.align 2, 0 - -.global gUnknown_81B9364 -gUnknown_81B9364: @ 81B9364 -.string " Huh?!\n" -.string "I can{APOSTROPHE}t fly!\0" -.align 2, 0 - -.global gUnknown_81B937C -gUnknown_81B937C: @ 81B937C -.string " Huh?!\n" -.string "How am I supposed to fly?!\0" -.align 2, 0 - -.global gUnknown_81B93A0 -gUnknown_81B93A0: @ 81B93A0 -.string " Hah?!\n" -.string "No way! I can{APOSTROPHE}t fly!\0" -.align 2, 0 - -.global gUnknown_81B93C0 -gUnknown_81B93C0: @ 81B93C0 -.string "On guts.\0" -.align 2, 0 - -.global gUnknown_81B93CC -gUnknown_81B93CC: @ 81B93CC -.string "Fly there.\0" -.align 2, 0 - -.global gUnknown_81B93D8 -gUnknown_81B93D8: @ 81B93D8 -.string " And how do we go out to\n" -.string "space?!\0" -.align 2, 0 - -.global gUnknown_81B93FC -gUnknown_81B93FC: @ 81B93FC -.string " How are we supposed to do\n" -.string "that?!\0" -.align 2, 0 - -.global gUnknown_81B9420 -gUnknown_81B9420: @ 81B9420 -.string " Huh?!{WAIT_PRESS}\n" -.string "Go out to space?!\0" -.align 2, 0 - -.global gUnknown_81B943C -gUnknown_81B943C: @ 81B943C -.string " Hah?!{WAIT_PRESS}\n" -.string "Go out to space?!\0" -.align 2, 0 - -.global gUnknown_81B9458 -gUnknown_81B9458: @ 81B9458 -.string "If you go{COMMA} you{APOSTROPHE}ll see.\0" -.align 2, 0 - -.global gUnknown_81B9474 -gUnknown_81B9474: @ 81B9474 -.string " OK{COMMA} so where exactly in\n" -.string "space is the world{APOSTROPHE}s balance?\0" -.align 2, 0 - -.global gUnknown_81B94B0 -gUnknown_81B94B0: @ 81B94B0 -.string " So{COMMA} the world{APOSTROPHE}s balance is\n" -.string "where out in space?\0" -.align 2, 0 - -.global gUnknown_81B94E4 -gUnknown_81B94E4: @ 81B94E4 -.string " Hmm...\n" -.string "I{APOSTROPHE}m getting even more confused...\0" -.align 2, 0 - -.global gUnknown_81B9510 -gUnknown_81B9510: @ 81B9510 -.string " Hmm...\n" -.string "I{APOSTROPHE}m getting even more confused here...\0" -.align 2, 0 - -.global gUnknown_81B9544 -gUnknown_81B9544: @ 81B9544 -.string " In space...?{WAIT_PRESS}\n" -.string "Like where the stars and the moon are?\n" -.string "That space?\0" -.align 2, 0 - -.global gUnknown_81B9588 -gUnknown_81B9588: @ 81B9588 -.string "Sorry. I don{APOSTROPHE}t know.\0" -.align 2, 0 - -.global gUnknown_81B95A0 -gUnknown_81B95A0: @ 81B95A0 -.string "It{APOSTROPHE}s in space.\0" -.align 2, 0 - -.global gUnknown_81B95B4 -gUnknown_81B95B4: @ 81B95B4 -.string " Please{COMMA} tell me.\n" -.string "What is the world{APOSTROPHE}s balance?\0" -.align 2, 0 - -.global gUnknown_81B95E8 -gUnknown_81B95E8: @ 81B95E8 -.string " So{COMMA} what is it?\n" -.string "What is the world{APOSTROPHE}s balance?\0" -.align 2, 0 - -.global gUnknown_81B961C -gUnknown_81B961C: @ 81B961C -.string " Oh{COMMA} really?!{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_0}{COMMA} you know?!\0" -.align 2, 0 - -.global gUnknown_81B9640 -gUnknown_81B9640: @ 81B9640 -.string "Don{APOSTROPHE}t know.\0" -.align 2, 0 - -.global gUnknown_81B9650 -gUnknown_81B9650: @ 81B9650 -.string "Of course.\0" -.align 2, 0 - -.global gUnknown_81B965C -gUnknown_81B965C: @ 81B965C -.string " {ARG_NICKNAME_0}{COMMA} do you know?\n" -.string "What the world{APOSTROPHE}s balance is?\0" -.align 2, 0 - -.global gUnknown_81B9690 -gUnknown_81B9690: @ 81B9690 -.string " So{COMMA} uh...\n" -.string "The world{APOSTROPHE}s balance...{WAIT_PRESS}\n" -.string "What is it?\0" -.align 2, 0 - -.global gUnknown_81B96C4 -gUnknown_81B96C4: @ 81B96C4 -.string " I want to do something...{WAIT_PRESS}\n" -.string "But there{APOSTROPHE}s something I don{APOSTROPHE}t understand.\0" -.align 2, 0 - -.global gUnknown_81B9710 -gUnknown_81B9710: @ 81B9710 -.string " Tell me.\n" -.string "The world{APOSTROPHE}s balance...{WAIT_PRESS}\n" -.string "What is that?\0" -.align 2, 0 - -.global gUnknown_81B9744 -gUnknown_81B9744: @ 81B9744 -.string " I want to do something...{WAIT_PRESS}\n" -.string "But I don{APOSTROPHE}t really get it...\0" -.align 2, 0 - -.global gUnknown_81B9780 -gUnknown_81B9780: @ 81B9780 -.string " {ARG_NICKNAME_3} said that the\n" -.string "world will be ruined if nothing is done...\0" -.align 2, 0 - -.global gUnknown_81B97C0 -gUnknown_81B97C0: @ 81B97C0 -.string " {ARG_NICKNAME_3} said the world\n" -.string "will be destroyed if nothing{APOSTROPHE}s done...\0" -.align 2, 0 - -.global gUnknown_81B9800 -gUnknown_81B9800: @ 81B9800 -.string " I{APOSTROPHE}m sorry{COMMA} {ARG_NICKNAME_0}.\n" -.string "I should have realized...\0" -.align 2, 0 - -.global gUnknown_81B9830 -gUnknown_81B9830: @ 81B9830 -.string " I wasn{APOSTROPHE}t thinking.\n" -.string "You should be more worried than I am{COMMA}\n" -.string "{ARG_NICKNAME_0}...\0" -.align 2, 0 - -.global gUnknown_81B9878 -gUnknown_81B9878: @ 81B9878 -.string " Sorry{COMMA} {ARG_NICKNAME_0}.\n" -.string "It was inconsiderate of me.\0" -.align 2, 0 - -.global gUnknown_81B98A4 -gUnknown_81B98A4: @ 81B98A4 -.string " You{APOSTROPHE}re involved in all of\n" -.string "this.\n" -.string "It{APOSTROPHE}s only natural you{APOSTROPHE}d be worried...\0" -.align 2, 0 - -.global gUnknown_81B98F4 -gUnknown_81B98F4: @ 81B98F4 -.string " How stupid of me...\n" -.string "Of course you would be more worried\n" -.string "than I am{COMMA} {ARG_NICKNAME_0}...\0" -.align 2, 0 - -.global gUnknown_81B9944 -gUnknown_81B9944: @ 81B9944 -.string " Oh!\n" -.string "...I understand now.\0" -.align 2, 0 - -.global gUnknown_81B9960 -gUnknown_81B9960: @ 81B9960 -.string " Sorry{COMMA} {ARG_NICKNAME_0}.\n" -.string "I wasn{APOSTROPHE}t thinking.\0" -.align 2, 0 - -.global gUnknown_81B9984 -gUnknown_81B9984: @ 81B9984 -.string " You{APOSTROPHE}re in the middle of this.\n" -.string "Of course you{APOSTROPHE}re worried...\0" -.align 2, 0 - -.global gUnknown_81B99C4 -gUnknown_81B99C4: @ 81B99C4 -.string " On second thought{COMMA} you must\n" -.string "be more worried than I am{COMMA}\n" -.string "{ARG_NICKNAME_0}...\0" -.align 2, 0 - -.global gUnknown_81B9A08 -gUnknown_81B9A08: @ 81B9A08 -.string " Oh!\n" -.string "...I get it.\0" -.align 2, 0 - -.global gUnknown_81B9A1C -gUnknown_81B9A1C: @ 81B9A1C -.string " {ARG_NICKNAME_0}!\n" -.string "Don{APOSTROPHE}t joke around--it{APOSTROPHE}s not funny!\0" -.align 2, 0 - -.global gUnknown_81B9A4C -gUnknown_81B9A4C: @ 81B9A4C -.string " Huh?!\n" -.string "It doesn{APOSTROPHE}t concern you?!\0" -.align 2, 0 - -.global gUnknown_81B9A70 -gUnknown_81B9A70: @ 81B9A70 -.string " And how you became a\n" -.string "Pokémon{COMMA} {ARG_NICKNAME_0}...\n" -.string "That{APOSTROPHE}s all supposed to be related!\0" -.align 2, 0 - -.global gUnknown_81B9AC0 -gUnknown_81B9AC0: @ 81B9AC0 -.string " The world might be\n" -.string "destroyed!\0" -.align 2, 0 - -.global gUnknown_81B9AE0 -gUnknown_81B9AE0: @ 81B9AE0 -.string " {ARG_NICKNAME_0}!\n" -.string "That{APOSTROPHE}s not funny!\0" -.align 2, 0 - -.global gUnknown_81B9AFC -gUnknown_81B9AFC: @ 81B9AFC -.string " Hah?!\n" -.string "It doesn{APOSTROPHE}t have anything to do with you?!\0" -.align 2, 0 - -.global gUnknown_81B9B30 -gUnknown_81B9B30: @ 81B9B30 -.string " And more than anything{COMMA}\n" -.string "he said that the world will be ruined\n" -.string "if the balance isn{APOSTROPHE}t restored...\0" -.align 2, 0 - -.global gUnknown_81B9B94 -gUnknown_81B9B94: @ 81B9B94 -.string " And because of the world{APOSTROPHE}s\n" -.string "upset balance{COMMA} natural disasters have been\n" -.string "occurring...\0" -.align 2, 0 - -.global gUnknown_81B9BEC -gUnknown_81B9BEC: @ 81B9BEC -.string " There{APOSTROPHE}s supposed to be\n" -.string "a link between the world{APOSTROPHE}s balance being\n" -.string "upset and how you became a Pokémon...\0" -.align 2, 0 - -.global gUnknown_81B9C58 -gUnknown_81B9C58: @ 81B9C58 -.string " Yes{COMMA} I guess you would be\n" -.string "concerned too{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81B9C8C -gUnknown_81B9C8C: @ 81B9C8C -.string " And{COMMA} worst of all{COMMA} he said\n" -.string "how our world will be ruined if the\n" -.string "balance isn{APOSTROPHE}t restored.\0" -.align 2, 0 - -.global gUnknown_81B9CEC -gUnknown_81B9CEC: @ 81B9CEC -.string " And how the upset balance\n" -.string "is causing natural disasters...\0" -.align 2, 0 - -.global gUnknown_81B9D28 -gUnknown_81B9D28: @ 81B9D28 -.string " He said that there is a link\n" -.string "between the world{APOSTROPHE}s balance being upset\n" -.string "and how you became a Pokémon...\0" -.align 2, 0 - -.global gUnknown_81B9D90 -gUnknown_81B9D90: @ 81B9D90 -.string " Yeah{COMMA} I guess so.\n" -.string "It would bother you too{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81B9DC8 -gUnknown_81B9DC8: @ 81B9DC8 -.byte 0x4e, 0x6f, 0x2e, 0x00 - -.global gUnknown_81B9DCC -gUnknown_81B9DCC: @ 81B9DCC -.string " What do you think about\n" -.string "what {ARG_NICKNAME_3} said yesterday?{WAIT_PRESS}\n" -.string "Does it bother you?\0" -.align 2, 0 - -.global gUnknown_81B9E14 -gUnknown_81B9E14: @ 81B9E14 -.string " Remember what\n" -.string "{ARG_NICKNAME_3} said yesterday?{WAIT_PRESS}\n" -.string "Does it bother you?\0" -.align 2, 0 - -.global gUnknown_81B9E50 -gUnknown_81B9E50: @ 81B9E50 -.string " Let{APOSTROPHE}s keep on doing good...{WAIT_PRESS}\n" -.string "Actually{COMMA} I want to ask you something.\0" -.align 2, 0 - -.global gUnknown_81B9E9C -gUnknown_81B9E9C: @ 81B9E9C -.string " Let{APOSTROPHE}s keep doing our best...{WAIT_PRESS}\n" -.string "Actually{COMMA} I need to ask you something.\0" -.align 2, 0 - -.global gUnknown_81B9EE8 -gUnknown_81B9EE8: @ 81B9EE8 -.byte 0xf6, 0x00, 0x3c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01 -.byte 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x02, 0x00 -.byte 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xcf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x04, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x04, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x05, 0x00 -.byte 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southwest -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, north -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x2c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xd7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x30, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xd7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BA378 -gUnknown_81BA378: @ 81BA378 -.byte 0xf6, 0x00, 0x8b, 0x19 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819EAE8 -.byte 0x4c, 0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x91, 0x1e, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x68, 0x00, 0x00, 0x01 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x68, 0x00, 0x00, 0x01 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x1e, 0x01, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x6b, 0x00, 0x00, 0x01 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BA5B8 -gUnknown_81BA5B8: @ 81BA5B8 -.byte 0xf6, 0x00, 0xb2, 0x19 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BA658 -gUnknown_81BA658: @ 81BA658 -.byte 0x90, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BA5B8 - -.global gUnknown_81BA664 -gUnknown_81BA664: @ 81BA664 -.byte 0xf6, 0x00, 0xc1, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x61, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAEE0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAEBC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAE84 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAE50 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAE34 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BADF8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BADCC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAE84 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BADA0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAE34 -closeTextBox -.byte 0x48, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, CCW, northeast -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x1e, CCW, west -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x01, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAD90 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAD90 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAD90 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAD64 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAD64 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAD64 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAD44 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAD1C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BACE0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BACB4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAC90 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAC74 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAC40 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAC18 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BABF0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAC74 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BABBC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAB84 -.byte 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAB44 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAB0C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAAD4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x0c, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x96 -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81BAAD4 -gUnknown_81BAAD4: @ 81BAAD4 -.string " OK{COMMA} {ARG_NICKNAME_0}!\n" -.string "Let{APOSTROPHE}s do our best tomorrow like always!\0" -.align 2, 0 - -.global gUnknown_81BAB0C -gUnknown_81BAB0C: @ 81BAB0C -.string " OK{COMMA} {ARG_NICKNAME_0}!\n" -.string "Let{APOSTROPHE}s try our best to do well tomorrow!\0" -.align 2, 0 - -.global gUnknown_81BAB44 -gUnknown_81BAB44: @ 81BAB44 -.string " All right{COMMA} {ARG_NICKNAME_0}!\n" -.string "Let{APOSTROPHE}s get back to doing our best tomorrow!\0" -.align 2, 0 - -.global gUnknown_81BAB84 -gUnknown_81BAB84: @ 81BAB84 -.string " You{APOSTROPHE}re a friend...{WAIT_PRESS}\n" -.string "Like I{APOSTROPHE}d never get again...\0" -.align 2, 0 - -.global gUnknown_81BABBC -gUnknown_81BABBC: @ 81BABBC -.string " Because you{APOSTROPHE}re a friend\n" -.string "like no other{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81BABF0 -gUnknown_81BABF0: @ 81BABF0 -.string " But I{APOSTROPHE}m not going to worry\n" -.string "anymore.\0" -.align 2, 0 - -.global gUnknown_81BAC18 -gUnknown_81BAC18: @ 81BAC18 -.string " You{APOSTROPHE}re an invaluable...{WAIT_PRESS}\n" -.string "friend...\0" -.align 2, 0 - -.global gUnknown_81BAC40 -gUnknown_81BAC40: @ 81BAC40 -.string " Because...\n" -.string "You{APOSTROPHE}re a friend like no other{COMMA}\n" -.string "{ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81BAC74 -gUnknown_81BAC74: @ 81BAC74 -.string " I believe in you{COMMA}\n" -.string "{ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81BAC90 -gUnknown_81BAC90: @ 81BAC90 -.string " I{APOSTROPHE}m not going to worry\n" -.string "anymore.\0" -.align 2, 0 - -.global gUnknown_81BACB4 -gUnknown_81BACB4: @ 81BACB4 -.string " Yes{COMMA} a really important...{WAIT_PRESS}\n" -.string "friend...\0" -.align 2, 0 - -.global gUnknown_81BACE0 -gUnknown_81BACE0: @ 81BACE0 -.string " Because you{APOSTROPHE}re my friend{COMMA}\n" -.string "{ARG_NICKNAME_0}.\n" -.string "An important friend.\0" -.align 2, 0 - -.global gUnknown_81BAD1C -gUnknown_81BAD1C: @ 81BAD1C -.string " I{APOSTROPHE}m going to believe in you{COMMA}\n" -.string "{ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81BAD44 -gUnknown_81BAD44: @ 81BAD44 -.string " But I{APOSTROPHE}ve made up my mind.\0" -.align 2, 0 - -.global gUnknown_81BAD64 -gUnknown_81BAD64: @ 81BAD64 -.string " I started doubting you\n" -.string "a little{COMMA} {ARG_NICKNAME_0}...\0" -.align 2, 0 - -.global gUnknown_81BAD90 -gUnknown_81BAD90: @ 81BAD90 -.string " {ARG_NICKNAME_0}!\n" -.string "Sorry!\0" -.align 2, 0 - -.global gUnknown_81BADA0 -gUnknown_81BADA0: @ 81BADA0 -.string " I{APOSTROPHE}ll go home and try to get\n" -.string "some sleep.\0" -.align 2, 0 - -.global gUnknown_81BADCC -gUnknown_81BADCC: @ 81BADCC -.string " But I just can{APOSTROPHE}t seem to\n" -.string "get motivated.\0" -.align 2, 0 - -.global gUnknown_81BADF8 -gUnknown_81BADF8: @ 81BADF8 -.string " I{APOSTROPHE}m sorry.\n" -.string "For wanting to go home before we{APOSTROPHE}re done.\0" -.align 2, 0 - -.global gUnknown_81BAE34 -gUnknown_81BAE34: @ 81BAE34 -.string " I{APOSTROPHE}ll see you tomorrow.\0" -.align 2, 0 - -.global gUnknown_81BAE50 -gUnknown_81BAE50: @ 81BAE50 -.string " I{APOSTROPHE}m going to call it a day\n" -.string "and get some sleep.\0" -.align 2, 0 - -.global gUnknown_81BAE84 -gUnknown_81BAE84: @ 81BAE84 -.string " I guess it{APOSTROPHE}s because I heard\n" -.string "that story.\n" -.string "Ahahaha...\0" -.align 2, 0 - -.global gUnknown_81BAEBC -gUnknown_81BAEBC: @ 81BAEBC -.string " But I just can{APOSTROPHE}t get into it.\0" -.align 2, 0 - -.global gUnknown_81BAEE0 -gUnknown_81BAEE0: @ 81BAEE0 -.string " I{APOSTROPHE}m sorry.\n" -.string "Sorry for wanting to go home before\n" -.string "getting the job done.\0" -.align 2, 0 - -.global gUnknown_81BAF28 -gUnknown_81BAF28: @ 81BAF28 -.byte 0xf6, 0x00, 0x0b, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0x6b, 0x00, 0x99, 0x00 -.byte 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0x91, 0x04, 0x01, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 3 -.byte 0x70, 0x00, 0x00, 0x02 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x70, 0x00, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01 -.byte 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81BB078 -gUnknown_81BB078: @ 81BB078 -.byte 0xf6, 0x00, 0x23, 0x1a -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BB148 -gUnknown_81BB148: @ 81BB148 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BB078 - -.global gUnknown_81BB154 -gUnknown_81BB154: @ 81BB154 -.byte 0xf6, 0x00, 0x35, 0x1a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A7600 -closeTextBox -.byte 0x2e, 0x02, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BB4A0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BB46C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BB434 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BB3F8 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BB3E8 -.byte 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BB398 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BB374 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BB374 -gUnknown_81BB374: @ 81BB374 -.string " I wonder if something\n" -.string "happened...\0" -.align 2, 0 - -.global gUnknown_81BB398 -gUnknown_81BB398: @ 81BB398 -.string " When I was on the way\n" -.string "here{COMMA} I think there was a commotion at\n" -.string "Pokémon Square.\0" -.align 2, 0 - -.global gUnknown_81BB3E8 -gUnknown_81BB3E8: @ 81BB3E8 -.string " Oh{COMMA} yeah!\0" -.align 2, 0 - -.global gUnknown_81BB3F8 -gUnknown_81BB3F8: @ 81BB3F8 -.string " Well{COMMA} anyway.\n" -.string "As always{COMMA} let{APOSTROPHE}s try to do our best!\0" -.align 2, 0 - -.global gUnknown_81BB434 -gUnknown_81BB434: @ 81BB434 -.string " Well{COMMA} anyway.\n" -.string "Let{APOSTROPHE}s give it our best like always!\0" -.align 2, 0 - -.global gUnknown_81BB46C -gUnknown_81BB46C: @ 81BB46C -.string " ...Oh?{WAIT_PRESS}\n" -.string "You look pale.\n" -.string "Is something the matter?\0" -.align 2, 0 - -.global gUnknown_81BB4A0 -gUnknown_81BB4A0: @ 81BB4A0 -.string " ...Huh?{WAIT_PRESS}\n" -.string "You look pale.\n" -.string "What{APOSTROPHE}s up with you?\0" -.align 2, 0 - -.global gUnknown_81BB4D0 -gUnknown_81BB4D0: @ 81BB4D0 -.byte 0xf6, 0x00, 0x5b, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xa0, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BB5B0 -gUnknown_81BB5B0: @ 81BB5B0 -.byte 0xf6, 0x00, 0x6c, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BB620 -gUnknown_81BB620: @ 81BB620 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BB5B0 - -.global gUnknown_81BB62C -gUnknown_81BB62C: @ 81BB62C -.byte 0xf6, 0x00, 0x78, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0xb3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00, 0xe8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BB6CC -gUnknown_81BB6CC: @ 81BB6CC -.byte 0xf6, 0x00, 0x85, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x57, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x06, 0x00, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x07, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x6a, 0x00, 0x00, 0x03, 0x60, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x48, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x14, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BDDA4 -setAnimation 2 -.byte 0x93, 0x05, 0x02, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BDD70 -closeTextBox -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x0f, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BDD5C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BDD48 -closeTextBox -.byte 0x2e, 0x15, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BDD28 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BDD00 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BDD28 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BDCD0 -closeTextBox -.byte 0xd8, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BDC80 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BDC30 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BDC1C -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BDC0C -closeTextBox -pause 0x04 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BDBF8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BDBE4 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BDBCC -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BDBB4 -closeTextBox -pause 0x04 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BDB70 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BDB2C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BDB14 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BDAD0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BDA88 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BDA6C -closeTextBox -.byte 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BDA40 -closeTextBox -setAnimation 5 -pause 0x3c -.byte 0x54, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD9F4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD9BC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD97C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD934 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD904 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD8B4 -closeTextBox -.byte 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 5 -pause 0x3c -.byte 0x54, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD88C -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD870 -.byte 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD828 -.byte 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD7F0 -closeTextBox -pause 0x2d -setFlag 0x06 -.byte 0x2e, 0x15, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD7E0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD790 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD760 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD750 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD708 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD6DC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD6CC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD684 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD644 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD60C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD604 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD5C8 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD604 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD594 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD604 -closeTextBox -.byte 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x5a -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD58C -closeTextBox -setFlag 0x04 -pause 0x1e -.byte 0xe5, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD548 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD51C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD4E0 -closeTextBox -.byte 0x44, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -setFlag 0x06 -.byte 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD4C8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD4B4 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD498 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD450 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD424 -closeTextBox -setFlag 0x07 -setFlag 0x08 -setFlag 0x09 -pause 0x0f -.byte 0x62, 0x00, 0x80, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x0e, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD404 -closeTextBox -.byte 0xe5, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -pause 0x1e -setFlag 0x08 -setFlag 0x09 -.byte 0x48, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD3E8 -closeTextBox -pause 0x0a -setFlag 0x06 -setAnimation 2 -.byte 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B7470 -closeTextBox -pause 0x1e -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD3BC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD374 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD350 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD33C -closeTextBox -pause 0x0f -setFlag 0x07 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD304 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD2D8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD298 -closeTextBox -pause 0x0f -setFlag 0x07 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD274 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD254 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD228 -closeTextBox -pause 0x1e -.byte 0x2e, 0x15, 0x01, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD220 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD1E4 -closeTextBox -setFlag 0x06 -setFlag 0x07 -pause 0x2d -setFlag 0x08 -pause 0x1e -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -setFlag 0x04 -pause 0x3c -.byte 0x93, 0x0a, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD1DC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD1A4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD184 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD15C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD120 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD0E0 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD1DC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD0AC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD088 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAC90 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD054 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD014 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD1DC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCFDC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD184 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BAC90 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCF9C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCF54 -.byte 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCF14 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCEC4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCE80 -closeTextBox -.byte 0x0c, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x0d, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCE78 -closeTextBox -pause 0x04 -setFlag 0x06 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x0a, 0x0a, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x0e, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCE70 -closeTextBox -pause 0x04 -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCE48 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCE18 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCDE4 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCDC8 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCDA8 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCD88 -closeTextBox -setFlag 0x0a -pause 0x1e -setFlag 0x06 -.byte 0x2e, 0x0f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCD68 -.byte 0xd9, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCD50 -.byte 0xd9, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCD30 -.byte 0xf4, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -setFlag 0x06 -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCCE8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCCC8 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCC90 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCC68 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCC38 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCC68 -setFlag 0x06 -setFlag 0x0a -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCC10 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCBDC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCBB8 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCB88 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCB5C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCB30 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCB88 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCB0C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BCB30 -closeTextBox -pause 0x1e -.byte 0x48, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x78 -setFlag 0x03 -closeThread - -.global gUnknown_81BCB0C -gUnknown_81BCB0C: @ 81BCB0C -.string " But let{APOSTROPHE}s be sure to come\n" -.string "back!\0" -.align 2, 0 - -.global gUnknown_81BCB30 -gUnknown_81BCB30: @ 81BCB30 -.string " And we{APOSTROPHE}ll bring the truth\n" -.string "back with us!\0" -.align 2, 0 - -.global gUnknown_81BCB5C -gUnknown_81BCB5C: @ 81BCB5C -.string " But we{APOSTROPHE}re going to come\n" -.string "back for sure!\0" -.align 2, 0 - -.global gUnknown_81BCB88 -gUnknown_81BCB88: @ 81BCB88 -.string " We{APOSTROPHE}ll have to leave for\n" -.string "the time being...\0" -.align 2, 0 - -.global gUnknown_81BCBB8 -gUnknown_81BCBB8: @ 81BCBB8 -.string " We{APOSTROPHE}re going to find the\n" -.string "truth!\0" -.align 2, 0 - -.global gUnknown_81BCBDC -gUnknown_81BCBDC: @ 81BCBDC -.string " But we{APOSTROPHE}re going to come\n" -.string "back{COMMA} make no mistake!\0" -.align 2, 0 - -.global gUnknown_81BCC10 -gUnknown_81BCC10: @ 81BCC10 -.string " We{APOSTROPHE}ll have to leave here for\n" -.string "now...\0" -.align 2, 0 - -.global gUnknown_81BCC38 -gUnknown_81BCC38: @ 81BCC38 -.string " Yeah!\n" -.string "That{APOSTROPHE}s right!\n" -.string "That{APOSTROPHE}s more like it!\0" -.align 2, 0 - -.global gUnknown_81BCC68 -gUnknown_81BCC68: @ 81BCC68 -.string " That{APOSTROPHE}s what we expect from\n" -.string "our {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_81BCC90 -gUnknown_81BCC90: @ 81BCC90 -.string " Exactly!\n" -.string "That{APOSTROPHE}s the spirit!\n" -.string "That{APOSTROPHE}s more like it!\0" -.align 2, 0 - -.global gUnknown_81BCCC8 -gUnknown_81BCCC8: @ 81BCCC8 -.string " That{APOSTROPHE}s the {ARG_NICKNAME_0} we\n" -.string "all know!\0" -.align 2, 0 - -.global gUnknown_81BCCE8 -gUnknown_81BCCE8: @ 81BCCE8 -.string " That{APOSTROPHE}s right!\n" -.string "That{APOSTROPHE}s the spirit!\n" -.string "That{APOSTROPHE}s what I wanted to hear!\0" -.align 2, 0 - -.global gUnknown_81BCD30 -gUnknown_81BCD30: @ 81BCD30 -.string "I{APOSTROPHE}m over it! No giving up!\0" -.align 2, 0 - -.global gUnknown_81BCD50 -gUnknown_81BCD50: @ 81BCD50 -.string "OK! I won{APOSTROPHE}t give up!\0" -.align 2, 0 - -.global gUnknown_81BCD68 -gUnknown_81BCD68: @ 81BCD68 -.string " So{COMMA} what do you say{COMMA}\n" -.string "{ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_81BCD88 -gUnknown_81BCD88: @ 81BCD88 -.string " I believe in you too{COMMA}\n" -.string "{ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81BCDA8 -gUnknown_81BCDA8: @ 81BCDA8 -.string " You{APOSTROPHE}re a hero to me{COMMA}\n" -.string "{ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81BCDC8 -gUnknown_81BCDC8: @ 81BCDC8 -.string " {ARG_NICKNAME_0}...\n" -.string "Don{APOSTROPHE}t give up.\0" -.align 2, 0 - -.global gUnknown_81BCDE4 -gUnknown_81BCDE4: @ 81BCDE4 -.string " That I would join your\n" -.string "rescue team when I grew up.\0" -.align 2, 0 - -.global gUnknown_81BCE18 -gUnknown_81BCE18: @ 81BCE18 -.string " That we would make a\n" -.string "rescue team base here.\0" -.align 2, 0 - -.global gUnknown_81BCE48 -gUnknown_81BCE48: @ 81BCE48 -.string " {ARG_NICKNAME_0}...\n" -.string "I made a promise{COMMA} remember?\0" -.align 2, 0 - -.global gUnknown_81BCE70 -gUnknown_81BCE70: @ 81BCE70 -.string " {ARG_NICKNAME_5}...\0" -.align 2, 0 - -.global gUnknown_81BCE78 -gUnknown_81BCE78: @ 81BCE78 -.string " {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81BCE80 -gUnknown_81BCE80: @ 81BCE80 -.string " What good will it do if\n" -.string "you don{APOSTROPHE}t believe in yourself{COMMA}\n" -.string "{ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_81BCEC4 -gUnknown_81BCEC4: @ 81BCEC4 -.string " So what are we supposed to\n" -.string "do if you don{APOSTROPHE}t have faith in yourself{COMMA}\n" -.string "{ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_81BCF14 -gUnknown_81BCF14: @ 81BCF14 -.string " So what{APOSTROPHE}s all this about\n" -.string "not believing in yourself{COMMA} {ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_81BCF54 -gUnknown_81BCF54: @ 81BCF54 -.string " Even if we{APOSTROPHE}re attacked\n" -.string "by other rescue teams{COMMA} I won{APOSTROPHE}t be\n" -.string "scared.\0" -.align 2, 0 - -.global gUnknown_81BCF9C -gUnknown_81BCF9C: @ 81BCF9C -.string " Whatever happens{COMMA} I{APOSTROPHE}ll\n" -.string "always have faith in you{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81BCFDC -gUnknown_81BCFDC: @ 81BCFDC -.string " In their own way{COMMA}\n" -.string "{ARG_NICKNAME_2}{APOSTROPHE}s team has faith in you too.\0" -.align 2, 0 - -.global gUnknown_81BD014 -gUnknown_81BD014: @ 81BD014 -.string " Even if other rescue teams\n" -.string "stalk us{COMMA} I won{APOSTROPHE}t be scared.\0" -.align 2, 0 - -.global gUnknown_81BD054 -gUnknown_81BD054: @ 81BD054 -.string " Whatever happens{COMMA} I have\n" -.string "faith in you{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81BD088 -gUnknown_81BD088: @ 81BD088 -.string " I said this before{COMMA} didn{APOSTROPHE}t I?\0" -.align 2, 0 - -.global gUnknown_81BD0AC -gUnknown_81BD0AC: @ 81BD0AC -.string " Did you see?\n" -.string "{ARG_NICKNAME_2}{APOSTROPHE}s team has faith in you too.\0" -.align 2, 0 - -.global gUnknown_81BD0E0 -gUnknown_81BD0E0: @ 81BD0E0 -.string " I won{APOSTROPHE}t be scared{COMMA} even if\n" -.string "other rescue teams attack us.\0" -.align 2, 0 - -.global gUnknown_81BD120 -gUnknown_81BD120: @ 81BD120 -.string " Whatever happens{COMMA} I{APOSTROPHE}ll\n" -.string "always believe in you{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81BD15C -gUnknown_81BD15C: @ 81BD15C -.string " I{APOSTROPHE}m not going to doubt you\n" -.string "anymore.\0" -.align 2, 0 - -.global gUnknown_81BD184 -gUnknown_81BD184: @ 81BD184 -.string " Didn{APOSTROPHE}t I say this before?\0" -.align 2, 0 - -.global gUnknown_81BD1A4 -gUnknown_81BD1A4: @ 81BD1A4 -.string " In their own way{COMMA}\n" -.string "{ARG_NICKNAME_2}{APOSTROPHE}s team believes in you too.\0" -.align 2, 0 - -.global gUnknown_81BD1DC -gUnknown_81BD1DC: @ 81BD1DC -.string " {ARG_NICKNAME_0}...\0" -.align 2, 0 - -.global gUnknown_81BD1E4 -gUnknown_81BD1E4: @ 81BD1E4 -.string " There will be no mercy\n" -.string "the next time we meet.{WAIT_PRESS}\n" -.string "Farewell.\0" -.align 2, 0 - -.global gUnknown_81BD220 -gUnknown_81BD220: @ 81BD220 -.string " {ARG_NICKNAME_2}...\0" -.align 2, 0 - -.global gUnknown_81BD228 -gUnknown_81BD228: @ 81BD228 -.string " You must run till you\n" -.string "uncover the truth.\0" -.align 2, 0 - -.global gUnknown_81BD254 -gUnknown_81BD254: @ 81BD254 -.string " Run{COMMA} run...{WAIT_PRESS}\n" -.string "And survive.\0" -.align 2, 0 - -.global gUnknown_81BD274 -gUnknown_81BD274: @ 81BD274 -.string " Against all odds{COMMA} you must\n" -.string "run.\0" -.align 2, 0 - -.global gUnknown_81BD298 -gUnknown_81BD298: @ 81BD298 -.string " That goes for us too.\n" -.string "We will join the hunt to be rid of you.\0" -.align 2, 0 - -.global gUnknown_81BD2D8 -gUnknown_81BD2D8: @ 81BD2D8 -.string " The trackers will attack\n" -.string "without mercy.\0" -.align 2, 0 - -.global gUnknown_81BD304 -gUnknown_81BD304: @ 81BD304 -.string " Anyone that goes with\n" -.string "{ARG_NICKNAME_0} will be considered an enemy.\0" -.align 2, 0 - -.global gUnknown_81BD33C -gUnknown_81BD33C: @ 81BD33C -.string " And not just you.\0" -.align 2, 0 - -.global gUnknown_81BD350 -gUnknown_81BD350: @ 81BD350 -.string " And attack you without\n" -.string "hesitation.\0" -.align 2, 0 - -.global gUnknown_81BD374 -gUnknown_81BD374: @ 81BD374 -.string " Come tomorrow{COMMA} rescue\n" -.string "teams of all sorts will take up the chase...\0" -.align 2, 0 - -.global gUnknown_81BD3BC -gUnknown_81BD3BC: @ 81BD3BC -.string " Pack your supplies and get\n" -.string "out of here.\0" -.align 2, 0 - -.global gUnknown_81BD3E8 -gUnknown_81BD3E8: @ 81BD3E8 -.string " We will give you tonight.\0" -.align 2, 0 - -.global gUnknown_81BD404 -gUnknown_81BD404: @ 81BD404 -.string " (W-we{APOSTROPHE}re fighting here...?)\0" -.align 2, 0 - -.global gUnknown_81BD424 -gUnknown_81BD424: @ 81BD424 -.string " We will...\n" -.string "Defeat you with all our might!\0" -.align 2, 0 - -.global gUnknown_81BD450 -gUnknown_81BD450: @ 81BD450 -.string " I had hoped it would not\n" -.string "come to this{COMMA} but...{WAIT_PRESS}\n" -.string "It is unfortunate.\0" -.align 2, 0 - -.global gUnknown_81BD498 -gUnknown_81BD498: @ 81BD498 -.string " I was incredulous too...\0" -.align 2, 0 - -.global gUnknown_81BD4B4 -gUnknown_81BD4B4: @ 81BD4B4 -.string " You{APOSTROPHE}re kidding!\0" -.align 2, 0 - -.global gUnknown_81BD4C8 -gUnknown_81BD4C8: @ 81BD4C8 -.string " Wh-what did you say?!\0" -.align 2, 0 - -.global gUnknown_81BD4E0 -gUnknown_81BD4E0: @ 81BD4E0 -.string " And we arrived at a\n" -.string "consensus.{WAIT_PRESS}\n" -.string "We must get rid of you.\0" -.align 2, 0 - -.global gUnknown_81BD51C -gUnknown_81BD51C: @ 81BD51C -.string " On what we must do to\n" -.string "save the world...\0" -.align 2, 0 - -.global gUnknown_81BD548 -gUnknown_81BD548: @ 81BD548 -.string " After that scene in\n" -.string "Pokémon Square...{WAIT_PRESS}\n" -.string "We held a town meeting...\0" -.align 2, 0 - -.global gUnknown_81BD58C -gUnknown_81BD58C: @ 81BD58C -.string " Oh!\0" -.align 2, 0 - -.global gUnknown_81BD594 -gUnknown_81BD594: @ 81BD594 -.string " I...{WAIT_PRESS}\n" -.string "I have faith in you{COMMA} {ARG_NICKNAME_0}.\n" -.string "You know that?\0" -.align 2, 0 - -.global gUnknown_81BD5C8 -gUnknown_81BD5C8: @ 81BD5C8 -.string " I...{WAIT_PRESS}\n" -.string "I believe in you{COMMA} {ARG_NICKNAME_0}.\n" -.string "You know that{COMMA} right?\0" -.align 2, 0 - -.global gUnknown_81BD604 -gUnknown_81BD604: @ 81BD604 -.string " So...\0" -.align 2, 0 - -.global gUnknown_81BD60C -gUnknown_81BD60C: @ 81BD60C -.string " I...{WAIT_PRESS}\n" -.string "You know that I believe in you{COMMA}\n" -.string "{ARG_NICKNAME_0}{COMMA} right?\0" -.align 2, 0 - -.global gUnknown_81BD644 -gUnknown_81BD644: @ 81BD644 -.string " Since it didn{APOSTROPHE}t{COMMA} you don{APOSTROPHE}t\n" -.string "know what really happened.\0" -.align 2, 0 - -.global gUnknown_81BD684 -gUnknown_81BD684: @ 81BD684 -.string " Did your dream make\n" -.string "you remember what you were like as a\n" -.string "human being?\0" -.align 2, 0 - -.global gUnknown_81BD6CC -gUnknown_81BD6CC: @ 81BD6CC -.string " Listen{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81BD6DC -gUnknown_81BD6DC: @ 81BD6DC -.string " So you don{APOSTROPHE}t know what\n" -.string "really happened.\0" -.align 2, 0 - -.global gUnknown_81BD708 -gUnknown_81BD708: @ 81BD708 -.string " You didn{APOSTROPHE}t remember\n" -.string "what you were like as a human being{COMMA}\n" -.string "did you?\0" -.align 2, 0 - -.global gUnknown_81BD750 -gUnknown_81BD750: @ 81BD750 -.string " Listen{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_81BD760 -gUnknown_81BD760: @ 81BD760 -.string " So you don{APOSTROPHE}t know what\n" -.string "actually happened!\0" -.align 2, 0 - -.global gUnknown_81BD790 -gUnknown_81BD790: @ 81BD790 -.string " That doesn{APOSTROPHE}t mean you\n" -.string "remembered what you were like as\n" -.string "a human{COMMA} does it?\0" -.align 2, 0 - -.global gUnknown_81BD7E0 -gUnknown_81BD7E0: @ 81BD7E0 -.string " Hey{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_81BD7F0 -gUnknown_81BD7F0: @ 81BD7F0 -.string " ...So that{APOSTROPHE}s what it is.\n" -.string "That{APOSTROPHE}s what happened...\0" -.align 2, 0 - -.global gUnknown_81BD828 -gUnknown_81BD828: @ 81BD828 -.string " ...And that made you think\n" -.string "that maybe you were that human after\n" -.string "all...\0" -.align 2, 0 - -.global gUnknown_81BD870 -gUnknown_81BD870: @ 81BD870 -.string " And {ARG_NICKNAME_7} appeared\n" -.string "in it?\0" -.align 2, 0 - -.global gUnknown_81BD88C -gUnknown_81BD88C: @ 81BD88C -.string " ............{WAIT_PRESS}Huh?\n" -.string "You had a dream?\0" -.align 2, 0 - -.global gUnknown_81BD8B4 -gUnknown_81BD8B4: @ 81BD8B4 -.string " That doesn{APOSTROPHE}t sound like you\n" -.string "at all{COMMA} {ARG_NICKNAME_0}.{WAIT_PRESS}\n" -.string "Tell me{COMMA} what{APOSTROPHE}s the matter?\0" -.align 2, 0 - -.global gUnknown_81BD904 -gUnknown_81BD904: @ 81BD904 -.string " What{APOSTROPHE}s wrong?!{WAIT_PRESS}\n" -.string "What makes you say that?!\0" -.align 2, 0 - -.global gUnknown_81BD934 -gUnknown_81BD934: @ 81BD934 -.string " ...Huh?!{WAIT_PRESS}\n" -.string "You don{APOSTROPHE}t think you deserve to be on our\n" -.string "rescue team?!\0" -.align 2, 0 - -.global gUnknown_81BD97C -gUnknown_81BD97C: @ 81BD97C -.string " It{APOSTROPHE}s not like you at all{COMMA}\n" -.string "{ARG_NICKNAME_0}!{WAIT_PRESS}\n" -.string "What happened to you?!\0" -.align 2, 0 - -.global gUnknown_81BD9BC -gUnknown_81BD9BC: @ 81BD9BC -.string " What{APOSTROPHE}s wrong with you?!{WAIT_PRESS}\n" -.string "Why are you saying that?!\0" -.align 2, 0 - -.global gUnknown_81BD9F4 -gUnknown_81BD9F4: @ 81BD9F4 -.string " ...Hah?{WAIT_PRESS}\n" -.string "You{APOSTROPHE}re saying you don{APOSTROPHE}t deserve to be on\n" -.string "our rescue team?!\0" -.align 2, 0 - -.global gUnknown_81BDA40 -gUnknown_81BDA40: @ 81BDA40 -.string " Hah? You{APOSTROPHE}re tired?\n" -.string "What are you saying?\0" -.align 2, 0 - -.global gUnknown_81BDA6C -gUnknown_81BDA6C: @ 81BDA6C -.string " Is something the matter?\0" -.align 2, 0 - -.global gUnknown_81BDA88 -gUnknown_81BDA88: @ 81BDA88 -.string " Give up on our rescue\n" -.string "team?{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s not like you to say that{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81BDAD0 -gUnknown_81BDAD0: @ 81BDAD0 -.string " Wh-what{APOSTROPHE}s the matter?\n" -.string "What makes you say that all of a sudden?\0" -.align 2, 0 - -.global gUnknown_81BDB14 -gUnknown_81BDB14: @ 81BDB14 -.string " What{APOSTROPHE}s up with that?\0" -.align 2, 0 - -.global gUnknown_81BDB2C -gUnknown_81BDB2C: @ 81BDB2C -.string " Give up our rescue team?{WAIT_PRESS}\n" -.string "That doesn{APOSTROPHE}t sound like you{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81BDB70 -gUnknown_81BDB70: @ 81BDB70 -.string " Wh-what{APOSTROPHE}s the matter now?\n" -.string "What are you saying all of a sudden?\0" -.align 2, 0 - -.global gUnknown_81BDBB4 -gUnknown_81BDBB4: @ 81BDBB4 -.string "I{APOSTROPHE}m tired of this...\0" -.align 2, 0 - -.global gUnknown_81BDBCC -gUnknown_81BDBCC: @ 81BDBCC -.string "Want to end the team?\0" -.align 2, 0 - -.global gUnknown_81BDBE4 -gUnknown_81BDBE4: @ 81BDBE4 -.string " Huh?\n" -.string "What is it?\0" -.align 2, 0 - -.global gUnknown_81BDBF8 -gUnknown_81BDBF8: @ 81BDBF8 -.string " Hah?\n" -.string "What{APOSTROPHE}s up?\0" -.align 2, 0 - -.global gUnknown_81BDC0C -gUnknown_81BDC0C: @ 81BDC0C -.string "...Hey{COMMA} {ARG_NICKNAME_1}.\0" -.align 2, 0 - -.global gUnknown_81BDC1C -gUnknown_81BDC1C: @ 81BDC1C -.string "...Listen{COMMA} {ARG_NICKNAME_1}.\0" -.align 2, 0 - -.global gUnknown_81BDC30 -gUnknown_81BDC30: @ 81BDC30 -.string " You should have said you{APOSTROPHE}re\n" -.string "not the human that appears in the legend\n" -.string "of {ARG_NICKNAME_6}!\0" -.align 2, 0 - -.global gUnknown_81BDC80 -gUnknown_81BDC80: @ 81BDC80 -.string " Why didn{APOSTROPHE}t you say you{APOSTROPHE}re\n" -.string "not the human that appears in the legend\n" -.string "of {ARG_NICKNAME_6}?\0" -.align 2, 0 - -.global gUnknown_81BDCD0 -gUnknown_81BDCD0: @ 81BDCD0 -.string " Why didn{APOSTROPHE}t you argue that\n" -.string "it{APOSTROPHE}s not you?!\0" -.align 2, 0 - -.global gUnknown_81BDD00 -gUnknown_81BDD00: @ 81BDD00 -.string " Why didn{APOSTROPHE}t you say it{APOSTROPHE}s not\n" -.string "you?!\0" -.align 2, 0 - -.global gUnknown_81BDD28 -gUnknown_81BDD28: @ 81BDD28 -.string " Why didn{APOSTROPHE}t you say anything?\0" -.align 2, 0 - -.global gUnknown_81BDD48 -gUnknown_81BDD48: @ 81BDD48 -.string " But listen{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81BDD5C -gUnknown_81BDD5C: @ 81BDD5C -.string " But{COMMA} hey{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81BDD70 -gUnknown_81BDD70: @ 81BDD70 -.string " I never expected everyone\n" -.string "to attack us like that.\0" -.align 2, 0 - -.global gUnknown_81BDDA4 -gUnknown_81BDDA4: @ 81BDDA4 -.string " Gasp{COMMA} gasp...{WAIT_PRESS}\n" -.string "Wow{COMMA} that was a real shock!\0" -.align 2, 0 - -.global gUnknown_81BDDD8 -gUnknown_81BDDD8: @ 81BDDD8 -.byte 0xf6, 0x00, 0xda, 0x1b -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x57, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0xa0, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x03, 0x60, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, east -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x30, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe8, 0x00, 0x31, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xd0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x4c, 0x00, 0xf8, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x80, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x06, 0x01, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x06, 0x02, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x06, 0x01, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x06, 0x02, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, east -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x0a, 0x0a, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe8, 0x00, 0x25, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81BE318 -gUnknown_81BE318: @ 81BE318 -.byte 0xf6, 0x00, 0x31, 0x1c -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x57, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x64, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0xcc, 0x00, 0x9c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0xcc, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xf1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 12 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x4c, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x99, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BE4F8 -gUnknown_81BE4F8: @ 81BE4F8 -.byte 0xf6, 0x00, 0x52, 0x1c -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x57, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x64, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0xcc, 0x00, 0x9c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x4c, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xf1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 12 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x4c, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x99, 0x00, 0xa0, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BE618 -gUnknown_81BE618: @ 81BE618 -.byte 0xf6, 0x00, 0x67, 0x1c -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x57, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x64, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0xcc, 0x00, 0x9c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x4c, 0x00, 0xf0, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x4c, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x99, 0x00 -.byte 0xa0, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BE728 -gUnknown_81BE728: @ 81BE728 -.byte 0xf6, 0x00, 0x7b, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00 -.byte 0xd8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0xb0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x05, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BE908 -gUnknown_81BE908: @ 81BE908 -.byte 0xf6, 0x00, 0x9c, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BEA48 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x32, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BEA48 -gUnknown_81BEA48: @ 81BEA48 -.string "{CENTER_ALIGN}The next dawn...\0" -.align 2, 0 - -.global gUnknown_81BEA5C -gUnknown_81BEA5C: @ 81BEA5C -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BE908 - -.global gUnknown_81BEA68 -gUnknown_81BEA68: @ 81BEA68 -.byte 0xf6, 0x00, 0xb6, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BEDBC -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BED74 -closeTextBox -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BED5C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BED40 -.byte 0xd9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4790 -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBB0 -.byte 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BED10 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BECD8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BECAC -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BEC78 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0xb8, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81BEC78 -gUnknown_81BEC78: @ 81BEC78 -.string " Tell me when you{APOSTROPHE}re\n" -.string "ready.{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s leave then.\0" -.align 2, 0 - -.global gUnknown_81BECAC -gUnknown_81BECAC: @ 81BECAC -.string " Oh{COMMA} OK.\n" -.string "I{APOSTROPHE}ll wait while you get ready.\0" -.align 2, 0 - -.global gUnknown_81BECD8 -gUnknown_81BECD8: @ 81BECD8 -.string " Tell me when you{APOSTROPHE}re set.{WAIT_PRESS}\n" -.string "We{APOSTROPHE}ll roll out then.\0" -.align 2, 0 - -.global gUnknown_81BED10 -gUnknown_81BED10: @ 81BED10 -.string " All right{COMMA} I{APOSTROPHE}ll wait while\n" -.string "you get ready.\0" -.align 2, 0 - -.global gUnknown_81BED40 -gUnknown_81BED40: @ 81BED40 -.string " Are you ready to leave?\0" -.align 2, 0 - -.global gUnknown_81BED5C -gUnknown_81BED5C: @ 81BED5C -.string " Are you ready to roll?\0" -.align 2, 0 - -.global gUnknown_81BED74 -gUnknown_81BED74: @ 81BED74 -.string " Morning{COMMA} {ARG_NICKNAME_0}!{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s early{COMMA} but of course you{APOSTROPHE}d be up by\n" -.string "now!\0" -.align 2, 0 - -.global gUnknown_81BEDBC -gUnknown_81BEDBC: @ 81BEDBC -.string " Morning{COMMA} {ARG_NICKNAME_0}!\n" -.string "It{APOSTROPHE}s early{COMMA} but I guessed you would be up!\0" -.align 2, 0 - -.global gUnknown_81BEDFC -gUnknown_81BEDFC: @ 81BEDFC -.byte 0xf6, 0x00, 0xdc, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81BEE7C -gUnknown_81BEE7C: @ 81BEE7C -.byte 0xf6, 0x00, 0xe7, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BEEBC -gUnknown_81BEEBC: @ 81BEEBC -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BEE7C - -.global gUnknown_81BEEC8 -gUnknown_81BEEC8: @ 81BEEC8 -.byte 0xf6, 0x00, 0xf0, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BEEF8 -gUnknown_81BEEF8: @ 81BEEF8 -.byte 0xf6, 0x00, 0xf6, 0x1c -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x02, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x01, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BF094 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BF078 -.byte 0xd9, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4790 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBB0 -.byte 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BF048 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BECD8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BECAC -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BEC78 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xb8 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BF048 -gUnknown_81BF048: @ 81BF048 -.string " All right. I{APOSTROPHE}ll wait while\n" -.string "you get ready.\0" -.align 2, 0 - -.global gUnknown_81BF078 -gUnknown_81BF078: @ 81BF078 -.string " Oh!\n" -.string "Are you ready to go?\0" -.align 2, 0 - -.global gUnknown_81BF094 -gUnknown_81BF094: @ 81BF094 -.string " Hey!\n" -.string "You all ready to go?\0" -.align 2, 0 - -.global gUnknown_81BF0B0 -gUnknown_81BF0B0: @ 81BF0B0 -.byte 0xf6, 0x00, 0x0f, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xba, 0x00, 0x03, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x02, 0x32, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BF110 -gUnknown_81BF110: @ 81BF110 -.byte 0x39, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BF0B0 - -.global gUnknown_81BF11C -gUnknown_81BF11C: @ 81BF11C -.byte 0xf6, 0x00, 0x1a, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BF17C -gUnknown_81BF17C: @ 81BF17C -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BF11C - -.global gUnknown_81BF188 -gUnknown_81BF188: @ 81BF188 -.byte 0xf6, 0x00, 0x25, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BF42C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BF3EC -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BF3A4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BF378 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BF350 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BF310 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BF2CC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BF2A8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BF2A8 -gUnknown_81BF2A8: @ 81BF2A8 -.string " But be sure not to wake\n" -.string "anyone up.\0" -.align 2, 0 - -.global gUnknown_81BF2CC -gUnknown_81BF2CC: @ 81BF2CC -.string " It{APOSTROPHE}s still early{COMMA} so I think\n" -.string "everyone will still be asleep...\0" -.align 2, 0 - -.global gUnknown_81BF310 -gUnknown_81BF310: @ 81BF310 -.string " There are other Pokémon in\n" -.string "the square{COMMA} so be really careful.\0" -.align 2, 0 - -.global gUnknown_81BF350 -gUnknown_81BF350: @ 81BF350 -.string " Are you going out to\n" -.string "Pokémon Square?\0" -.align 2, 0 - -.global gUnknown_81BF378 -gUnknown_81BF378: @ 81BF378 -.string " But make sure you don{APOSTROPHE}t\n" -.string "wake anyone up.\0" -.align 2, 0 - -.global gUnknown_81BF3A4 -gUnknown_81BF3A4: @ 81BF3A4 -.string " It{APOSTROPHE}s still early{COMMA} so I think\n" -.string "everyone{APOSTROPHE}s still asleep{COMMA} but...\0" -.align 2, 0 - -.global gUnknown_81BF3EC -gUnknown_81BF3EC: @ 81BF3EC -.string " Be careful if you are.\n" -.string "There are other Pokémon in the square.\0" -.align 2, 0 - -.global gUnknown_81BF42C -gUnknown_81BF42C: @ 81BF42C -.string " Are you going to the\n" -.string "square?\0" -.align 2, 0 - -.global gUnknown_81BF44C -gUnknown_81BF44C: @ 81BF44C -.byte 0xf6, 0x00, 0x3a, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x01, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BF4BC -gUnknown_81BF4BC: @ 81BF4BC -.byte 0xf6, 0x00, 0x44, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xd8, 0x01, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BF094 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BF078 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4790 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBB0 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BED10 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BECD8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BECAC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BEC78 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0xb8 -closeThread - -.global gUnknown_81BF5EC -gUnknown_81BF5EC: @ 81BF5EC -.byte 0xf6, 0x00, 0x5b, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BF63C -gUnknown_81BF63C: @ 81BF63C -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BF5EC - -.global gUnknown_81BF648 -gUnknown_81BF648: @ 81BF648 -.byte 0xf6, 0x00, 0x65, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x0b, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BF6E8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BF6E8 -gUnknown_81BF6E8: @ 81BF6E8 -.string " Huh?\n" -.string "Are you ready to leave?\0" -.align 2, 0 - -.global gUnknown_81BF708 -gUnknown_81BF708: @ 81BF708 -.byte 0xf6, 0x00, 0x72, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81BF778 -gUnknown_81BF778: @ 81BF778 -.byte 0xf6, 0x00, 0x7c, 0x1d -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BF7C8 -gUnknown_81BF7C8: @ 81BF7C8 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BF778 - -.global gUnknown_81BF7D4 -gUnknown_81BF7D4: @ 81BF7D4 -.byte 0xf6, 0x00, 0x86, 0x1d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFE70 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFE4C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFE28 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFE4C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFE08 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFE4C -.byte 0xb4, 0x06, 0x01, 0x00, 0x20, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFDE0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFDAC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFD64 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFD2C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFCF0 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFCB8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFC8C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFC58 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFC18 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFBF0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFBA8 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFB74 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFB30 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFAF8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFAD4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x44, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFAB4 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFA94 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81BFA94 -gUnknown_81BFA94: @ 81BFA94 -.string "(Like {ARG_NICKNAME_2} said that time...)\0" -.align 2, 0 - -.global gUnknown_81BFAB4 -gUnknown_81BFAB4: @ 81BFAB4 -.string "(...Yes. We have to escape.)\0" -.align 2, 0 - -.global gUnknown_81BFAD4 -gUnknown_81BFAD4: @ 81BFAD4 -.string " We have to get away at\n" -.string "all cost.\0" -.align 2, 0 - -.global gUnknown_81BFAF8 -gUnknown_81BFAF8: @ 81BFAF8 -.string " We have to get away from\n" -.string "the rescue teams hunting us.\0" -.align 2, 0 - -.global gUnknown_81BFB30 -gUnknown_81BFB30: @ 81BFB30 -.string " We have to keep running\n" -.string "because we can{APOSTROPHE}t afford to be caught.\0" -.align 2, 0 - -.global gUnknown_81BFB74 -gUnknown_81BFB74: @ 81BFB74 -.string " We have to run from the\n" -.string "rescue teams stalking us.\0" -.align 2, 0 - -.global gUnknown_81BFBA8 -gUnknown_81BFBA8: @ 81BFBA8 -.string " We{APOSTROPHE}ve got to run and keep\n" -.string "running from the rescue teams chasing us.\0" -.align 2, 0 - -.global gUnknown_81BFBF0 -gUnknown_81BFBF0: @ 81BFBF0 -.string " You know what we have\n" -.string "to do{COMMA} right?\0" -.align 2, 0 - -.global gUnknown_81BFC18 -gUnknown_81BFC18: @ 81BFC18 -.string " Let{APOSTROPHE}s not tell them...{WAIT_PRESS}\n" -.string "We{APOSTROPHE}ll just leave by ourselves.\0" -.align 2, 0 - -.global gUnknown_81BFC58 -gUnknown_81BFC58: @ 81BFC58 -.string " I don{APOSTROPHE}t want to get our team\n" -.string "members involved...\0" -.align 2, 0 - -.global gUnknown_81BFC8C -gUnknown_81BFC8C: @ 81BFC8C -.string " This is going to be a\n" -.string "dangerous trip...\0" -.align 2, 0 - -.global gUnknown_81BFCB8 -gUnknown_81BFCB8: @ 81BFCB8 -.string " Let{APOSTROPHE}s not tell them...{WAIT_PRESS}\n" -.string "We should go by ourselves.\0" -.align 2, 0 - -.global gUnknown_81BFCF0 -gUnknown_81BFCF0: @ 81BFCF0 -.string " I don{APOSTROPHE}t want to get our team\n" -.string "members involved in this...\0" -.align 2, 0 - -.global gUnknown_81BFD2C -gUnknown_81BFD2C: @ 81BFD2C -.string " I{APOSTROPHE}m sure that this will be a\n" -.string "dangerous journey...\0" -.align 2, 0 - -.global gUnknown_81BFD64 -gUnknown_81BFD64: @ 81BFD64 -.string " Let{APOSTROPHE}s not tell our friends...{WAIT_PRESS}\n" -.string "And we{APOSTROPHE}ll go{COMMA} just you and me.\0" -.align 2, 0 - -.global gUnknown_81BFDAC -gUnknown_81BFDAC: @ 81BFDAC -.string " I want to keep our team\n" -.string "members out of all this...\0" -.align 2, 0 - -.global gUnknown_81BFDE0 -gUnknown_81BFDE0: @ 81BFDE0 -.string " This is going to be one\n" -.string "rough trip...\0" -.align 2, 0 - -.global gUnknown_81BFE08 -gUnknown_81BFE08: @ 81BFE08 -.string " Yup.\n" -.string "Looks like we{APOSTROPHE}re ready.\0" -.align 2, 0 - -.global gUnknown_81BFE28 -gUnknown_81BFE28: @ 81BFE28 -.string " Yup.\n" -.string "I guess we{APOSTROPHE}re ready to go.\0" -.align 2, 0 - -.global gUnknown_81BFE4C -gUnknown_81BFE4C: @ 81BFE4C -.string " From now on{COMMA} we{APOSTROPHE}re\n" -.string "fugitives.\0" -.align 2, 0 - -.global gUnknown_81BFE70 -gUnknown_81BFE70: @ 81BFE70 -.string " Yep!\n" -.string "Looks like we{APOSTROPHE}re all set.\0" -.align 2, 0 - -.global gUnknown_81BFE94 -gUnknown_81BFE94: @ 81BFE94 -.byte 0xf6, 0x00, 0xb7, 0x1d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BFEE4 -gUnknown_81BFEE4: @ 81BFEE4 -.byte 0xf6, 0x00, 0xbf, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x0e, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x0e, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81BFF64 -gUnknown_81BFF64: @ 81BFF64 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BFEE4 - -.global gUnknown_81BFF70 -gUnknown_81BFF70: @ 81BFF70 -.byte 0xf6, 0x00, 0xcc, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x59, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x03, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD274 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD254 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD228 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C0040 -gUnknown_81C0040: @ 81C0040 -.byte 0xf6, 0x00, 0xdd, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81C0090 -gUnknown_81C0090: @ 81C0090 -.byte 0xf6, 0x00, 0xe5, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 5 -.byte 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81C00F0 -gUnknown_81C00F0: @ 81C00F0 -.byte 0xf6, 0x00, 0xee, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81C0130 -gUnknown_81C0130: @ 81C0130 -.byte 0xf6, 0x00, 0xf5, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81C0170 -gUnknown_81C0170: @ 81C0170 -.byte 0xf6, 0x00, 0xfc, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C01F0 -gUnknown_81C01F0: @ 81C01F0 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C0170 - -.global gUnknown_81C01FC -gUnknown_81C01FC: @ 81C01FC -.byte 0xf6, 0x00, 0x09, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x50, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0x28, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0x18, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0xf0, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0xa0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C02FC -gUnknown_81C02FC: @ 81C02FC -.byte 0xf6, 0x00, 0x1c, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C1304 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C12C8 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C1290 -closeTextBox -pause 0x1e -.byte 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C1278 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C1260 -closeTextBox -pause 0x14 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C1258 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, south -pause 0x0f -setFlag 0x04 -setFlag 0x07 -setFlag 0x08 -setFlag 0x0b -setFlag 0x0c -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x86, 0x00, 0x00, 0x01, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, south -pause 0x0f -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C123C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C1220 -closeTextBox -setFlag 0x04 -setFlag 0x07 -setFlag 0x08 -setFlag 0x0b -setFlag 0x0c -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C1200 -closeTextBox -pause 0x0f -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C11DC -closeTextBox -pause 0x0f -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C11D0 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -setFlag 0x07 -setFlag 0x08 -setFlag 0x0b -setFlag 0x0c -.byte 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xc6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -setFlag 0x07 -setFlag 0x08 -setFlag 0x0b -setFlag 0x0c -rotate 0x04, 0x0b, southeast -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C11A8 -closeTextBox -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C1188 -closeTextBox -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C1178 -closeTextBox -pause 0x1e -setFlag 0x0a -pause 0x0a -setFlag 0x06 -setFlag 0x07 -setFlag 0x0b -rotate 0x04, CCW, east -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, southwest -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C114C -closeTextBox -setFlag 0x04 -setFlag 0x07 -setFlag 0x08 -setFlag 0x09 -setFlag 0x0b -setFlag 0x0c -setFlag 0x06 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x86, 0x00, 0x00, 0x01, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, north -pause 0x1e -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C112C -closeTextBox -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C10F4 -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C10BC -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C10A0 -.byte 0x35, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C105C -closeTextBox -.byte 0x2e, 0x0f, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C1048 -closeTextBox -.byte 0x2e, 0x15, 0x01, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C1024 -closeTextBox -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C0FF8 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C0FE0 -closeTextBox -rotate 0x04, 0x0b, northeast -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C0FD8 -closeTextBox -pause 0x1e -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C0FB8 -closeTextBox -pause 0x1e -setFlag 0x04 -setFlag 0x06 -setFlag 0x07 -setFlag 0x08 -setFlag 0x09 -setFlag 0x0b -setFlag 0x0c -.byte 0x89, 0xe0, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, north -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C0FA8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C0F88 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C0F64 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C0F50 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C0F28 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C0F0C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C0F50 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C0EE4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C0ECC -closeTextBox -setFlag 0x04 -setFlag 0x06 -.byte 0x23, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0x78, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -closeThread - -.global gUnknown_81C0ECC -gUnknown_81C0ECC: @ 81C0ECC -.string " Take care until then!\0" -.align 2, 0 - -.global gUnknown_81C0EE4 -gUnknown_81C0EE4: @ 81C0EE4 -.string " We{APOSTROPHE}ll be back!\n" -.string "That{APOSTROPHE}s for sure!\0" -.align 2, 0 - -.global gUnknown_81C0F0C -gUnknown_81C0F0C: @ 81C0F0C -.string " Until then{COMMA} take care!\0" -.align 2, 0 - -.global gUnknown_81C0F28 -gUnknown_81C0F28: @ 81C0F28 -.string " We{APOSTROPHE}ll be back!\n" -.string "That{APOSTROPHE}s for certain!\0" -.align 2, 0 - -.global gUnknown_81C0F50 -gUnknown_81C0F50: @ 81C0F50 -.string " Yup! Thank you!\0" -.align 2, 0 - -.global gUnknown_81C0F64 -gUnknown_81C0F64: @ 81C0F64 -.string " Until then{COMMA} you guys be\n" -.string "good!\0" -.align 2, 0 - -.global gUnknown_81C0F88 -gUnknown_81C0F88: @ 81C0F88 -.string " We{APOSTROPHE}ll be back!\n" -.string "Count on it!\0" -.align 2, 0 - -.global gUnknown_81C0FA8 -gUnknown_81C0FA8: @ 81C0FA8 -.string " OK! Thanks!\0" -.align 2, 0 - -.global gUnknown_81C0FB8 -gUnknown_81C0FB8: @ 81C0FB8 -.string " {ARG_NICKNAME_0}!\n" -.string "Let{APOSTROPHE}s go! Hit the road!\0" -.align 2, 0 - -.global gUnknown_81C0FD8 -gUnknown_81C0FD8: @ 81C0FD8 -.string " Yup.\0" -.align 2, 0 - -.global gUnknown_81C0FE0 -gUnknown_81C0FE0: @ 81C0FE0 -.string " You have to go!\n" -.string "Hurry!\0" -.align 2, 0 - -.global gUnknown_81C0FF8 -gUnknown_81C0FF8: @ 81C0FF8 -.string " The other Pokémon will\n" -.string "be waking up soon.\0" -.align 2, 0 - -.global gUnknown_81C1024 -gUnknown_81C1024: @ 81C1024 -.string " Sniff...\n" -.string "Everyone{COMMA} thank you!\0" -.align 2, 0 - -.global gUnknown_81C1048 -gUnknown_81C1048: @ 81C1048 -.string " Even Pelipper...\0" -.align 2, 0 - -.global gUnknown_81C105C -gUnknown_81C105C: @ 81C105C -.string " - The wandering postal carrier{COMMA}\n" -.string " Pelipper -{QUOTE_END}\0" -.align 2, 0 - -.global gUnknown_81C10A0 -gUnknown_81C10A0: @ 81C10A0 -.string " I{APOSTROPHE}ll always be waiting.\0" -.align 2, 0 - -.global gUnknown_81C10BC -gUnknown_81C10BC: @ 81C10BC -.string " Until the day I can deliver mail\n" -.string " to you again...\0" -.align 2, 0 - -.global gUnknown_81C10F4 -gUnknown_81C10F4: @ 81C10F4 -.string "{QUOTE_START}Take care!\n" -.string " It{APOSTROPHE}s farewell{COMMA} but only for now.\0" -.align 2, 0 - -.global gUnknown_81C112C -gUnknown_81C112C: @ 81C112C -.string "{CENTER_ALIGN}{ARG_NICKNAME_0} began reading the letter.\0" -.align 2, 0 - -.global gUnknown_81C114C -gUnknown_81C114C: @ 81C114C -.string " It{APOSTROPHE}s a letter.\n" -.string "{ARG_NICKNAME_0}{COMMA} can you read it?\0" -.align 2, 0 - -.global gUnknown_81C1178 -gUnknown_81C1178: @ 81C1178 -.string " Everyone...\0" -.align 2, 0 - -.global gUnknown_81C1188 -gUnknown_81C1188: @ 81C1188 -.string " I wanted to send you off\n" -.string "too.\0" -.align 2, 0 - -.global gUnknown_81C11A8 -gUnknown_81C11A8: @ 81C11A8 -.string " Good morning.\n" -.string "It{APOSTROPHE}s me{COMMA} Diglett.\0" -.align 2, 0 - -.global gUnknown_81C11D0 -gUnknown_81C11D0: @ 81C11D0 -.string " M-me too!\0" -.align 2, 0 - -.global gUnknown_81C11DC -gUnknown_81C11DC: @ 81C11DC -.string " We wanted to see you off{COMMA}\n" -.string "{ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81C1200 -gUnknown_81C1200: @ 81C1200 -.string " Wow{COMMA} I{APOSTROPHE}m glad!\n" -.string "We made it!\0" -.align 2, 0 - -.global gUnknown_81C1220 -gUnknown_81C1220: @ 81C1220 -.string " Oh{COMMA} and even Jumpluff!\0" -.align 2, 0 - -.global gUnknown_81C123C -gUnknown_81C123C: @ 81C123C -.string " Caterpie! And Metapod too!\0" -.align 2, 0 - -.global gUnknown_81C1258 -gUnknown_81C1258: @ 81C1258 -.string " {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_81C1260 -gUnknown_81C1260: @ 81C1260 -.string " OK!\n" -.string "Let{APOSTROPHE}s get going!\0" -.align 2, 0 - -.global gUnknown_81C1278 -gUnknown_81C1278: @ 81C1278 -.string " OK!\n" -.string "Let{APOSTROPHE}s roll out!\0" -.align 2, 0 - -.global gUnknown_81C1290 -gUnknown_81C1290: @ 81C1290 -.string "(Even if it means going to the edge\n" -.string "of this world...)\0" -.align 2, 0 - -.global gUnknown_81C12C8 -gUnknown_81C12C8: @ 81C12C8 -.string "(Until I discover that truth{COMMA} I have to\n" -.string "run and survive.)\0" -.align 2, 0 - -.global gUnknown_81C1304 -gUnknown_81C1304: @ 81C1304 -.string "(Yes...\n" -.string "Who am I?)\0" -.align 2, 0 - -.global gUnknown_81C1318 -gUnknown_81C1318: @ 81C1318 -.byte 0xf6, 0x00, 0xea, 0x1e -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x5e, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0c -.byte 0xe8, 0x00, 0x21, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x0a, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x0a, 0x0b, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00 -.byte 0xfc, 0xff, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x04, 0x0b, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x19 -.byte 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01 -.byte 0xf8, 0xff, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0xe0, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, north -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x78, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81C1678 -gUnknown_81C1678: @ 81C1678 -.byte 0xf6, 0x00, 0x23, 0x1f -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x40, 0x80, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01 -.byte 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe8, 0x00, 0x2e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, northeast -.byte 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x16, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, northwest -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, west -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01 -.byte 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, west -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, south -.byte 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0b, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C18F8 -.byte 0x31, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81C18F8 -gUnknown_81C18F8: @ 81C18F8 -.string " Take care!\0" -.align 2, 0 - -.global gUnknown_81C1904 -gUnknown_81C1904: @ 81C1904 -.byte 0xf6, 0x00, 0x4e, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x40, 0x80, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81C1A94 -gUnknown_81C1A94: @ 81C1A94 -.byte 0xf6, 0x00, 0x6a, 0x1f, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819EAE8 -.byte 0x4c, 0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x91, 0x1e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x68, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xf5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819EAE0 -pause 0x3c -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x01, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x1e, CW, west -.byte 0x6b, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C1D74 -gUnknown_81C1D74: @ 81C1D74 -.byte 0xf6, 0x00, 0x9b, 0x1f, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x40, 0x80, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01, 0x37, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0c -.byte 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x19 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x6e -.byte 0x2b, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00 -.byte 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0b, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C1FD4 -.byte 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81C1FD4 -gUnknown_81C1FD4: @ 81C1FD4 -.string " We{APOSTROPHE}ll be waiting for both\n" -.string "of you to return!\0" -.align 2, 0 - -.global gUnknown_81C2004 -gUnknown_81C2004: @ 81C2004 -.byte 0xf6, 0x00, 0xc4, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x40, 0x80, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81C2174 -gUnknown_81C2174: @ 81C2174 -.byte 0xf6, 0x00, 0xde, 0x1f, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northwest -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, south -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C22C4 -gUnknown_81C22C4: @ 81C22C4 -.byte 0xf6, 0x00, 0xf6, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C23B4 -gUnknown_81C23B4: @ 81C23B4 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C22C4 - -.global gUnknown_81C23C0 -gUnknown_81C23C0: @ 81C23C0 -.byte 0xf6, 0x00, 0x0a, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C2828 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C27FC -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C27C8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C2790 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819EAE8 -.byte 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, southwest -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x93, 0x04, 0x0b, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C2764 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C2734 -.byte 0x2e, 0x15, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C26F8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C26C0 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C26C0 -gUnknown_81C26C0: @ 81C26C0 -.string " Let{APOSTROPHE}s try to do our best like\n" -.string "we always did{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_81C26F8 -gUnknown_81C26F8: @ 81C26F8 -.string " Let{APOSTROPHE}s give it our best like\n" -.string "we always used to{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_81C2734 -gUnknown_81C2734: @ 81C2734 -.string " And look{COMMA} {ARG_NICKNAME_2} is\n" -.string "bringing us mail already.\0" -.align 2, 0 - -.global gUnknown_81C2764 -gUnknown_81C2764: @ 81C2764 -.string " {ARG_NICKNAME_2}{APOSTROPHE}s brought us\n" -.string "mail already{COMMA} too.\0" -.align 2, 0 - -.global gUnknown_81C2790 -gUnknown_81C2790: @ 81C2790 -.string " All right!\n" -.string "We{APOSTROPHE}ll get right back into doing\n" -.string "rescues.\0" -.align 2, 0 - -.global gUnknown_81C27C8 -gUnknown_81C27C8: @ 81C27C8 -.string " OK{COMMA} we{APOSTROPHE}re back in the\n" -.string "rescue team business!\0" -.align 2, 0 - -.global gUnknown_81C27FC -gUnknown_81C27FC: @ 81C27FC -.string " Good morning{COMMA} {ARG_NICKNAME_0}.\n" -.string "Did you sleep well?\0" -.align 2, 0 - -.global gUnknown_81C2828 -gUnknown_81C2828: @ 81C2828 -.string " Morning{COMMA} {ARG_NICKNAME_0}.\n" -.string "Get a good night{APOSTROPHE}s sleep?\0" -.align 2, 0 - -.global gUnknown_81C2858 -gUnknown_81C2858: @ 81C2858 -.byte 0xf6, 0x00, 0x3f, 0x20 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01 -.byte 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00 -.byte 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C2958 -gUnknown_81C2958: @ 81C2958 -.byte 0xf6, 0x00, 0x52, 0x20 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x1e, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x68, 0x00, 0x00, 0x01 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x16, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xf5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AEC3C -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x68, 0x00, 0x00, 0x01 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x1e, 0x01, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00 -.byte 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C2B28 -gUnknown_81C2B28: @ 81C2B28 -.byte 0xf6, 0x00, 0x72, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xeb, 0x00, 0x04, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C2B58 -gUnknown_81C2B58: @ 81C2B58 -.byte 0x93, 0x01, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C2B28 - -.global gUnknown_81C2B64 -gUnknown_81C2B64: @ 81C2B64 -.byte 0xf6, 0x00, 0x7a, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C2C44 -gUnknown_81C2C44: @ 81C2C44 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C2B64 - -.global gUnknown_81C2C50 -gUnknown_81C2C50: @ 81C2C50 -.byte 0xf6, 0x00, 0x8d, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x02, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A75E8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C35C0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C358C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xcf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3560 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3518 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C34E8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3498 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3448 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3418 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C33D4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3560 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3380 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3350 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3304 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C32C4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C328C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3254 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3228 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C31D4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C34E8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3190 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3154 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C311C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C30D8 -closeTextBox -.byte 0x2e, 0x15, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C30B4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3080 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C304C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C301C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C2FF0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C301C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C2FF0 -gUnknown_81C2FF0: @ 81C2FF0 -.string " We have to do what we can\n" -.string "for our part.\0" -.align 2, 0 - -.global gUnknown_81C301C -gUnknown_81C301C: @ 81C301C -.string " So let{APOSTROPHE}s do our best with\n" -.string "the rescue team!\0" -.align 2, 0 - -.global gUnknown_81C304C -gUnknown_81C304C: @ 81C304C -.string " We{APOSTROPHE}ll just have to keep on\n" -.string "doing what we can do.\0" -.align 2, 0 - -.global gUnknown_81C3080 -gUnknown_81C3080: @ 81C3080 -.string " So let{APOSTROPHE}s give it our best\n" -.string "for our rescue team!\0" -.align 2, 0 - -.global gUnknown_81C30B4 -gUnknown_81C30B4: @ 81C30B4 -.string " We{APOSTROPHE}ve got to do what we\n" -.string "can do.\0" -.align 2, 0 - -.global gUnknown_81C30D8 -gUnknown_81C30D8: @ 81C30D8 -.string " We don{APOSTROPHE}t have any choice.\n" -.string "We have to wait for them to come back.\0" -.align 2, 0 - -.global gUnknown_81C311C -gUnknown_81C311C: @ 81C311C -.string " Anyway{COMMA} we agreed to let\n" -.string "Alakazam deal with Groudon.\0" -.align 2, 0 - -.global gUnknown_81C3154 -gUnknown_81C3154: @ 81C3154 -.string " But Alakazam{APOSTROPHE}s team is\n" -.string "tough too.\n" -.string "They should be fine.\0" -.align 2, 0 - -.global gUnknown_81C3190 -gUnknown_81C3190: @ 81C3190 -.string " They say that Groudon is\n" -.string "powerful.\n" -.string "That has me a little worried.\0" -.align 2, 0 - -.global gUnknown_81C31D4 -gUnknown_81C31D4: @ 81C31D4 -.string " {ARG_NICKNAME_0}{COMMA} you{APOSTROPHE}re\n" -.string "worried about the same thing I am.\n" -.string "I should{APOSTROPHE}ve guessed{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81C3228 -gUnknown_81C3228: @ 81C3228 -.string " Oh{COMMA} I get it!{WAIT_PRESS}\n" -.string "That earthquake earlier!\0" -.align 2, 0 - -.global gUnknown_81C3254 -gUnknown_81C3254: @ 81C3254 -.string " So we{APOSTROPHE}ll just have to wait\n" -.string "for them to come back.\0" -.align 2, 0 - -.global gUnknown_81C328C -gUnknown_81C328C: @ 81C328C -.string " Anyway{COMMA} we agreed to let\n" -.string "Alakazam handle Groudon.\0" -.align 2, 0 - -.global gUnknown_81C32C4 -gUnknown_81C32C4: @ 81C32C4 -.string " But Alakazam{APOSTROPHE}s team is also\n" -.string "very strong.\n" -.string "They must be OK.\0" -.align 2, 0 - -.global gUnknown_81C3304 -gUnknown_81C3304: @ 81C3304 -.string " People say that Groudon is\n" -.string "very powerful{COMMA} so I am a little worried...\0" -.align 2, 0 - -.global gUnknown_81C3350 -gUnknown_81C3350: @ 81C3350 -.string " Alakazam{APOSTROPHE}s team still hasn{APOSTROPHE}t\n" -.string "come back...\0" -.align 2, 0 - -.global gUnknown_81C3380 -gUnknown_81C3380: @ 81C3380 -.string " {ARG_NICKNAME_0}{COMMA} you{APOSTROPHE}re\n" -.string "worried about the same thing I am.\n" -.string "I should have guessed{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81C33D4 -gUnknown_81C33D4: @ 81C33D4 -.string " So we can{APOSTROPHE}t do much of\n" -.string "anything but wait for them to come back.\0" -.align 2, 0 - -.global gUnknown_81C3418 -gUnknown_81C3418: @ 81C3418 -.string " Well{COMMA} we did leave Groudon\n" -.string "up to Alakazam...\0" -.align 2, 0 - -.global gUnknown_81C3448 -gUnknown_81C3448: @ 81C3448 -.string " But{COMMA} then again{COMMA} Alakazam{APOSTROPHE}s\n" -.string "bunch is tough{COMMA} too.\n" -.string "They should be OK...\0" -.align 2, 0 - -.global gUnknown_81C3498 -gUnknown_81C3498: @ 81C3498 -.string " And they say Groudon is\n" -.string "wickedly strong{COMMA} so yeah{COMMA} it is a bit\n" -.string "worrying...\0" -.align 2, 0 - -.global gUnknown_81C34E8 -gUnknown_81C34E8: @ 81C34E8 -.string " Alakazam{APOSTROPHE}s team hasn{APOSTROPHE}t come\n" -.string "back yet...\0" -.align 2, 0 - -.global gUnknown_81C3518 -gUnknown_81C3518: @ 81C3518 -.string " {ARG_NICKNAME_0}{COMMA} you{APOSTROPHE}re\n" -.string "worried the same way I am.\n" -.string "I should{APOSTROPHE}ve known{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81C3560 -gUnknown_81C3560: @ 81C3560 -.string " Oh{COMMA} right!{WAIT_PRESS}\n" -.string "That earthquake earlier!\0" -.align 2, 0 - -.global gUnknown_81C358C -gUnknown_81C358C: @ 81C358C -.string " ...Huh? What{APOSTROPHE}s the matter?\n" -.string "Is something wrong?\0" -.align 2, 0 - -.global gUnknown_81C35C0 -gUnknown_81C35C0: @ 81C35C0 -.string " ...Hunh? What{APOSTROPHE}s up?\n" -.string "Is something wrong?\0" -.align 2, 0 - -.global gUnknown_81C35EC -gUnknown_81C35EC: @ 81C35EC -.byte 0xf6, 0x00, 0xca, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C36AC -gUnknown_81C36AC: @ 81C36AC -.byte 0xf6, 0x00, 0xd9, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C372C -gUnknown_81C372C: @ 81C372C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C36AC - -.global gUnknown_81C3738 -gUnknown_81C3738: @ 81C3738 -.byte 0xf6, 0x00, 0xe6, 0x20 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x20, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C37C8 -gUnknown_81C37C8: @ 81C37C8 -.byte 0xf6, 0x00, 0xf2, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x02, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3DD4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3DA4 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3D60 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3D38 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3D10 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3CC8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x0c, 0x01, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3CC0 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xcf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3CA4 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3C80 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3C44 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3C28 -closeTextBox -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3BEC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3BBC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0b, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C3BA8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xdb, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x20, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x60, 0x00, 0x02 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C3BA8 -gUnknown_81C3BA8: @ 81C3BA8 -.string " {ARG_NICKNAME_0}{COMMA} let{APOSTROPHE}s go!\0" -.align 2, 0 - -.global gUnknown_81C3BBC -gUnknown_81C3BBC: @ 81C3BBC -.string " He{APOSTROPHE}s getting the other rescue\n" -.string "teams to come.\0" -.align 2, 0 - -.global gUnknown_81C3BEC -gUnknown_81C3BEC: @ 81C3BEC -.string " I{APOSTROPHE}m not really sure...\n" -.string "Shiftry{APOSTROPHE}s calling everyone out.\0" -.align 2, 0 - -.global gUnknown_81C3C28 -gUnknown_81C3C28: @ 81C3C28 -.string " Is there something wrong?\0" -.align 2, 0 - -.global gUnknown_81C3C44 -gUnknown_81C3C44: @ 81C3C44 -.string " We need you at the square!\n" -.string "Everyone{APOSTROPHE}s gathering there.\0" -.align 2, 0 - -.global gUnknown_81C3C80 -gUnknown_81C3C80: @ 81C3C80 -.string " Oh{COMMA} {ARG_NICKNAME_2}.{WAIT_PRESS}\n" -.string "What{APOSTROPHE}s the matter?\0" -.align 2, 0 - -.global gUnknown_81C3CA4 -gUnknown_81C3CA4: @ 81C3CA4 -.string " Hey{COMMA} {ARG_NICKNAME_2}.{WAIT_PRESS}\n" -.string "What{APOSTROPHE}s up?\0" -.align 2, 0 - -.global gUnknown_81C3CC0 -gUnknown_81C3CC0: @ 81C3CC0 -.string " Hey!\0" -.align 2, 0 - -.global gUnknown_81C3CC8 -gUnknown_81C3CC8: @ 81C3CC8 -.string " It{APOSTROPHE}s hard to get decent sleep\n" -.string "when there are so many earthquakes.\0" -.align 2, 0 - -.global gUnknown_81C3D10 -gUnknown_81C3D10: @ 81C3D10 -.string " Did you notice the\n" -.string "earthquake earlier?\0" -.align 2, 0 - -.global gUnknown_81C3D38 -gUnknown_81C3D38: @ 81C3D38 -.string " Oh{COMMA} hi!\n" -.string "You{APOSTROPHE}re up early{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81C3D60 -gUnknown_81C3D60: @ 81C3D60 -.string " There{APOSTROPHE}ve been so many...\n" -.string "I can{APOSTROPHE}t get a decent night{APOSTROPHE}s sleep.\0" -.align 2, 0 - -.global gUnknown_81C3DA4 -gUnknown_81C3DA4: @ 81C3DA4 -.string " There was another\n" -.string "earthquake earlier{COMMA} right?\0" -.align 2, 0 - -.global gUnknown_81C3DD4 -gUnknown_81C3DD4: @ 81C3DD4 -.string " Oh{COMMA} already awake{COMMA}\n" -.string "{ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_81C3DF4 -gUnknown_81C3DF4: @ 81C3DF4 -.byte 0xf6, 0x00, 0x3b, 0x21, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, south -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x20, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x60, 0x00, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81C3F14 -gUnknown_81C3F14: @ 81C3F14 -.byte 0xf6, 0x00, 0x50, 0x21, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x41, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x40, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x60, 0x00, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81C4014 -gUnknown_81C4014: @ 81C4014 -.byte 0xf6, 0x00, 0x63, 0x21, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C40F4 -gUnknown_81C40F4: @ 81C40F4 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4014 - -.global gUnknown_81C4100 -gUnknown_81C4100: @ 81C4100 -.byte 0xf6, 0x00, 0x76, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C440C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C43D0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4398 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4358 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4324 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C42E8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4298 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4324 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4260 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C4260 -gUnknown_81C4260: @ 81C4260 -.string " We{APOSTROPHE}ll keep doing the best we\n" -.string "can in our rescue work.\0" -.align 2, 0 - -.global gUnknown_81C4298 -gUnknown_81C4298: @ 81C4298 -.string " I wish we could have gone\n" -.string "too{COMMA} but there{APOSTROPHE}s nothing we can do about\n" -.string "that.\0" -.align 2, 0 - -.global gUnknown_81C42E8 -gUnknown_81C42E8: @ 81C42E8 -.string " And we{APOSTROPHE}ll keep doing the best\n" -.string "we can in our rescue work.\0" -.align 2, 0 - -.global gUnknown_81C4324 -gUnknown_81C4324: @ 81C4324 -.string " {ARG_NICKNAME_2}{APOSTROPHE}s team can\n" -.string "take care of things underground.\0" -.align 2, 0 - -.global gUnknown_81C4358 -gUnknown_81C4358: @ 81C4358 -.string " I wish we could have gone\n" -.string "too{COMMA} but that can{APOSTROPHE}t be helped.\0" -.align 2, 0 - -.global gUnknown_81C4398 -gUnknown_81C4398: @ 81C4398 -.string " We{APOSTROPHE}ll keep giving it our\n" -.string "best in our rescue work.\0" -.align 2, 0 - -.global gUnknown_81C43D0 -gUnknown_81C43D0: @ 81C43D0 -.string " We{APOSTROPHE}ll let {ARG_NICKNAME_2}{APOSTROPHE}s\n" -.string "team take care of things underground.\0" -.align 2, 0 - -.global gUnknown_81C440C -gUnknown_81C440C: @ 81C440C -.string " I wish we could{APOSTROPHE}ve gone too{COMMA}\n" -.string "but that{APOSTROPHE}s just too bad.\0" -.align 2, 0 - -.global gUnknown_81C444C -gUnknown_81C444C: @ 81C444C -.byte 0xf6, 0x00, 0x90, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C44AC -gUnknown_81C44AC: @ 81C44AC -.byte 0xf6, 0x00, 0x99, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x3d, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C458C -gUnknown_81C458C: @ 81C458C -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C44AC - -.global gUnknown_81C4598 -gUnknown_81C4598: @ 81C4598 -.byte 0xf6, 0x00, 0xac, 0x21 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C45D8 -gUnknown_81C45D8: @ 81C45D8 -.byte 0xf6, 0x00, 0xb3, 0x21 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4964 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4920 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C48C4 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C489C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4870 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4840 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C47F4 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C47A8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4774 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4748 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C4748 -gUnknown_81C4748: @ 81C4748 -.string " Let me know when you{APOSTROPHE}re\n" -.string "all ready to go.\0" -.align 2, 0 - -.global gUnknown_81C4774 -gUnknown_81C4774: @ 81C4774 -.string " Let{APOSTROPHE}s spend today getting\n" -.string "ready for the dungeon.\0" -.align 2, 0 - -.global gUnknown_81C47A8 -gUnknown_81C47A8: @ 81C47A8 -.string " We{APOSTROPHE}re not leaving until\n" -.string "tomorrow{COMMA} but I{APOSTROPHE}m jumpy with anticipation.\0" -.align 2, 0 - -.global gUnknown_81C47F4 -gUnknown_81C47F4: @ 81C47F4 -.string " But now{COMMA} we{APOSTROPHE}re getting the\n" -.string "chance to go to the underground dungeon.\0" -.align 2, 0 - -.global gUnknown_81C4840 -gUnknown_81C4840: @ 81C4840 -.string " We were held up by that\n" -.string "trouble with {ARG_NICKNAME_2}...\0" -.align 2, 0 - -.global gUnknown_81C4870 -gUnknown_81C4870: @ 81C4870 -.string " Let me know when you{APOSTROPHE}re\n" -.string "ready to roll.\0" -.align 2, 0 - -.global gUnknown_81C489C -gUnknown_81C489C: @ 81C489C -.string " We should spend today\n" -.string "getting ready.\0" -.align 2, 0 - -.global gUnknown_81C48C4 -gUnknown_81C48C4: @ 81C48C4 -.string " I know we{APOSTROPHE}re not leaving\n" -.string "till tomorrow{COMMA} but I{APOSTROPHE}m{COMMA} like{COMMA} buzzing with\n" -.string "excitement.\0" -.align 2, 0 - -.global gUnknown_81C4920 -gUnknown_81C4920: @ 81C4920 -.string " But now{COMMA} we{APOSTROPHE}re finally\n" -.string "going off to the underground dungeon.\0" -.align 2, 0 - -.global gUnknown_81C4964 -gUnknown_81C4964: @ 81C4964 -.string " We got held up by the\n" -.string "trouble we had with {ARG_NICKNAME_2}.\0" -.align 2, 0 - -.global gUnknown_81C4994 -gUnknown_81C4994: @ 81C4994 -.byte 0xf6, 0x00, 0xce, 0x21, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C49F4 -gUnknown_81C49F4: @ 81C49F4 -.byte 0xf6, 0x00, 0xd7, 0x21, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C4A34 -gUnknown_81C4A34: @ 81C4A34 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C49F4 - -.global gUnknown_81C4A40 -gUnknown_81C4A40: @ 81C4A40 -.byte 0xf6, 0x00, 0xe0, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C4A70 -gUnknown_81C4A70: @ 81C4A70 -.byte 0xf6, 0x00, 0xe6, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xd8, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A47B4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A479C -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4790 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBB0 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4754 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4D30 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A46E4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4D10 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4CF8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4CC8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4CAC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4C9C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4C70 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4C50 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x1b, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81C4C50 -gUnknown_81C4C50: @ 81C4C50 -.string " And we{APOSTROPHE}ll set out tomorrow!\0" -.align 2, 0 - -.global gUnknown_81C4C70 -gUnknown_81C4C70: @ 81C4C70 -.string " We should both get\n" -.string "a good night{APOSTROPHE}s sleep.\0" -.align 2, 0 - -.global gUnknown_81C4C9C -gUnknown_81C4C9C: @ 81C4C9C -.string " OK!\n" -.string "All set!\0" -.align 2, 0 - -.global gUnknown_81C4CAC -gUnknown_81C4CAC: @ 81C4CAC -.string " We{APOSTROPHE}ll roll out tomorrow!\0" -.align 2, 0 - -.global gUnknown_81C4CC8 -gUnknown_81C4CC8: @ 81C4CC8 -.string " We should get a good night{APOSTROPHE}s\n" -.string "sleep{COMMA} then.\0" -.align 2, 0 - -.global gUnknown_81C4CF8 -gUnknown_81C4CF8: @ 81C4CF8 -.string " All right!\n" -.string "All set!\0" -.align 2, 0 - -.global gUnknown_81C4D10 -gUnknown_81C4D10: @ 81C4D10 -.string " Tell me when you{APOSTROPHE}re\n" -.string "ready.\0" -.align 2, 0 - -.global gUnknown_81C4D30 -gUnknown_81C4D30: @ 81C4D30 -.string " Give me a shout when you{APOSTROPHE}re\n" -.string "ready.\0" -.align 2, 0 - -.global gUnknown_81C4D58 -gUnknown_81C4D58: @ 81C4D58 -.byte 0xf6, 0x00, 0x08, 0x22 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C4DA8 -gUnknown_81C4DA8: @ 81C4DA8 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4D58 - -.global gUnknown_81C4DB4 -gUnknown_81C4DB4: @ 81C4DB4 -.byte 0xf6, 0x00, 0x12, 0x22, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BF6E8 -closeTextBox -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C4E54 -gUnknown_81C4E54: @ 81C4E54 -.byte 0xf6, 0x00, 0x1f, 0x22, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C4EC4 -gUnknown_81C4EC4: @ 81C4EC4 -.byte 0xf6, 0x00, 0x29, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C4F94 -gUnknown_81C4F94: @ 81C4F94 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4EC4 - -.global gUnknown_81C4FA0 -gUnknown_81C4FA0: @ 81C4FA0 -.byte 0xf6, 0x00, 0x3b, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x40, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x30, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C5060 -gUnknown_81C5060: @ 81C5060 -.byte 0xf6, 0x00, 0x4a, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x02, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B6478 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B644C -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C5500 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C54C0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x48, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x89, 0x40, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x2e, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C54AC -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C546C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C5438 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C5400 -closeTextBox -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C53F8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C53F0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C53BC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C5390 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xcf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x48, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C5390 -gUnknown_81C5390: @ 81C5390 -.string " Are you asleep still?\n" -.string "Let{APOSTROPHE}s get going!\0" -.align 2, 0 - -.global gUnknown_81C53BC -gUnknown_81C53BC: @ 81C53BC -.string " What{COMMA} are you stunned?\n" -.string "Let{APOSTROPHE}s go{COMMA} already!\0" -.align 2, 0 - -.global gUnknown_81C53F0 -gUnknown_81C53F0: @ 81C53F0 -.string " Hello!\0" -.align 2, 0 - -.global gUnknown_81C53F8 -gUnknown_81C53F8: @ 81C53F8 -.string " Hey.\0" -.align 2, 0 - -.global gUnknown_81C5400 -gUnknown_81C5400: @ 81C5400 -.string "(Will she tell me if we rescue Alakazam{APOSTROPHE}s\n" -.string "team...?)\0" -.align 2, 0 - -.global gUnknown_81C5438 -gUnknown_81C5438: @ 81C5438 -.string "(Is going underground the adventure\n" -.string "she meant...?)\0" -.align 2, 0 - -.global gUnknown_81C546C -gUnknown_81C546C: @ 81C546C -.string "(She will tell me everything when this\n" -.string "adventure is over...)\0" -.align 2, 0 - -.global gUnknown_81C54AC -gUnknown_81C54AC: @ 81C54AC -.string "(Gardevoir said...)\0" -.align 2, 0 - -.global gUnknown_81C54C0 -gUnknown_81C54C0: @ 81C54C0 -.string " OK{COMMA} this is it!{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s do our best and save {ARG_NICKNAME_2}{APOSTROPHE}s\n" -.string "team!\0" -.align 2, 0 - -.global gUnknown_81C5500 -gUnknown_81C5500: @ 81C5500 -.string " This is it!{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s give it our best and rescue\n" -.string "{ARG_NICKNAME_2}!\0" -.align 2, 0 - -.global gUnknown_81C5538 -gUnknown_81C5538: @ 81C5538 -.byte 0xf6, 0x00, 0x83, 0x22 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0xa0, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x20, 0x00, 0x01 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C55D8 -gUnknown_81C55D8: @ 81C55D8 -.byte 0xf6, 0x00, 0x90, 0x22 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C56A8 -gUnknown_81C56A8: @ 81C56A8 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C55D8 - -.global gUnknown_81C56B4 -gUnknown_81C56B4: @ 81C56B4 -.byte 0xf6, 0x00, 0xa2, 0x22, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C5A24 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C59F0 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C5994 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C5944 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C58FC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C58A0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C5868 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C5824 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C5824 -gUnknown_81C5824: @ 81C5824 -.string " We might be able to get\n" -.string "some information if we go to the square.\0" -.align 2, 0 - -.global gUnknown_81C5868 -gUnknown_81C5868: @ 81C5868 -.string " Other rescue teams should\n" -.string "have gone underground too.\0" -.align 2, 0 - -.global gUnknown_81C58A0 -gUnknown_81C58A0: @ 81C58A0 -.string " But we knew that it would\n" -.string "be a very challenging dungeon.\n" -.string "We shouldn{APOSTROPHE}t be discouraged.\0" -.align 2, 0 - -.global gUnknown_81C58FC -gUnknown_81C58FC: @ 81C58FC -.string " We should go to the square.\n" -.string "We might be able to get some information.\0" -.align 2, 0 - -.global gUnknown_81C5944 -gUnknown_81C5944: @ 81C5944 -.string " Other rescue teams should\n" -.string "be trying to get through the underground\n" -.string "dungeon.\0" -.align 2, 0 - -.global gUnknown_81C5994 -gUnknown_81C5994: @ 81C5994 -.string " But we knew that it would\n" -.string "be a tough dungeon.\n" -.string "We don{APOSTROPHE}t need to get down on ourselves.\0" -.align 2, 0 - -.global gUnknown_81C59F0 -gUnknown_81C59F0: @ 81C59F0 -.string " ............{WAIT_PRESS}\n" -.string "We didn{APOSTROPHE}t do very well{COMMA} did we?\0" -.align 2, 0 - -.global gUnknown_81C5A24 -gUnknown_81C5A24: @ 81C5A24 -.string " ............{WAIT_PRESS}\n" -.string "We didn{APOSTROPHE}t do well{COMMA} did we?\0" -.align 2, 0 - -.global gUnknown_81C5A54 -gUnknown_81C5A54: @ 81C5A54 -.byte 0xf6, 0x00, 0xbd, 0x22, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C5AB4 -gUnknown_81C5AB4: @ 81C5AB4 -.byte 0xf6, 0x00, 0xc6, 0x22, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C5AD4 -gUnknown_81C5AD4: @ 81C5AD4 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C5AB4 - -.global gUnknown_81C5AE0 -gUnknown_81C5AE0: @ 81C5AE0 -.byte 0xf6, 0x00, 0xcd, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C5B30 -gUnknown_81C5B30: @ 81C5B30 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C5AE0 - -.global gUnknown_81C5B3C -gUnknown_81C5B3C: @ 81C5B3C -.byte 0xf6, 0x00, 0xd7, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C5BCC -closeTextBox -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C5BCC -gUnknown_81C5BCC: @ 81C5BCC -.string "Whoops.\n" -.string "I{APOSTROPHE}d better get packed to leave.\0" -.align 2, 0 - -.global gUnknown_81C5BF8 -gUnknown_81C5BF8: @ 81C5BF8 -.byte 0xf6, 0x00, 0xe3, 0x22 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C5CC8 -gUnknown_81C5CC8: @ 81C5CC8 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C5BF8 - -.global gUnknown_81C5CD4 -gUnknown_81C5CD4: @ 81C5CD4 -.byte 0xf6, 0x00, 0xf5, 0x22, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C5E8C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C5E54 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C5E30 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C5DF4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C5DF4 -gUnknown_81C5DF4: @ 81C5DF4 -.string " This is it!{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s go{COMMA} {ARG_NICKNAME_0}!\n" -.string "We{APOSTROPHE}re off to the sky!\0" -.align 2, 0 - -.global gUnknown_81C5E30 -gUnknown_81C5E30: @ 81C5E30 -.string " Good morning!\n" -.string "Did you sleep well?\0" -.align 2, 0 - -.global gUnknown_81C5E54 -gUnknown_81C5E54: @ 81C5E54 -.string " This is it!{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s roll{COMMA} {ARG_NICKNAME_0}!\n" -.string "To the sky we go!\0" -.align 2, 0 - -.global gUnknown_81C5E8C -gUnknown_81C5E8C: @ 81C5E8C -.string " Morning!\n" -.string "Get a good night{APOSTROPHE}s sleep?\0" -.align 2, 0 - -.global gUnknown_81C5EB4 -gUnknown_81C5EB4: @ 81C5EB4 -.byte 0xf6, 0x00, 0x0b, 0x23, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x60, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C5F44 -gUnknown_81C5F44: @ 81C5F44 -.byte 0xf6, 0x00, 0x17, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xeb, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C5F74 -gUnknown_81C5F74: @ 81C5F74 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C5F44 - -.global gUnknown_81C5F80 -gUnknown_81C5F80: @ 81C5F80 -.byte 0xf6, 0x00, 0x1f, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C6050 -gUnknown_81C6050: @ 81C6050 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C5F80 - -.global gUnknown_81C605C -gUnknown_81C605C: @ 81C605C -.byte 0xf6, 0x00, 0x31, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C63D8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C638C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C6360 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C6344 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C6320 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C6310 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C62D0 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C62A0 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C6344 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C6278 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C6310 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C623C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C620C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C6344 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C6278 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C620C -gUnknown_81C620C: @ 81C620C -.string " The {COLOR_1 YELLOW_4}Sky Tower{END_COLOR_TEXT_1} is also very\n" -.string "challenging...\0" -.align 2, 0 - -.global gUnknown_81C623C -gUnknown_81C623C: @ 81C623C -.string " That falling star is coming\n" -.string "closer and closer even now...\0" -.align 2, 0 - -.global gUnknown_81C6278 -gUnknown_81C6278: @ 81C6278 -.string " Let{APOSTROPHE}s keep doing our best{COMMA}\n" -.string "{ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_81C62A0 -gUnknown_81C62A0: @ 81C62A0 -.string " The {COLOR_1 YELLOW_4}Sky Tower{END_COLOR_TEXT_1} is incredibly\n" -.string "harsh too...\0" -.align 2, 0 - -.global gUnknown_81C62D0 -gUnknown_81C62D0: @ 81C62D0 -.string " Even now{COMMA} that falling star\n" -.string "is getting closer and closer...\0" -.align 2, 0 - -.global gUnknown_81C6310 -gUnknown_81C6310: @ 81C6310 -.string " Good morning!\0" -.align 2, 0 - -.global gUnknown_81C6320 -gUnknown_81C6320: @ 81C6320 -.string " Let{APOSTROPHE}s give it our best{COMMA}\n" -.string "{ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_81C6344 -gUnknown_81C6344: @ 81C6344 -.string " But I{APOSTROPHE}m not giving up!\0" -.align 2, 0 - -.global gUnknown_81C6360 -gUnknown_81C6360: @ 81C6360 -.string " The {COLOR_1 YELLOW_4}Sky Tower{END_COLOR_TEXT_1} is one harsh\n" -.string "place...\0" -.align 2, 0 - -.global gUnknown_81C638C -gUnknown_81C638C: @ 81C638C -.string " Even while we do this{COMMA}\n" -.string "that falling star is coming closer and\n" -.string "closer...\0" -.align 2, 0 - -.global gUnknown_81C63D8 -gUnknown_81C63D8: @ 81C63D8 -.string " Morning!\0" -.align 2, 0 - -.global gUnknown_81C63E4 -gUnknown_81C63E4: @ 81C63E4 -.byte 0xf6, 0x00, 0x4f, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C6444 -gUnknown_81C6444: @ 81C6444 -.byte 0xf6, 0x00, 0x58, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x0d, 0x00, 0x1e, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x0d, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x0d, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C6514 -gUnknown_81C6514: @ 81C6514 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C6444 - -.global gUnknown_81C6520 -gUnknown_81C6520: @ 81C6520 -.byte 0xf6, 0x00, 0x6a, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x30, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C65E0 -gUnknown_81C65E0: @ 81C65E0 -.byte 0xf6, 0x00, 0x79, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x96 -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x11 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x50 -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x11 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x38, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0f -.byte 0xe4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x78, 0x4c, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x64 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x8c -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xe4, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0f -.byte 0xe4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C68E0 -gUnknown_81C68E0: @ 81C68E0 -.byte 0xf6, 0x00, 0xac, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x0a, shortestDir, south -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x12 -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x89, 0x28, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x28, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C6A20 -gUnknown_81C6A20: @ 81C6A20 -.byte 0xf6, 0x00, 0xc3, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xe3, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C6A60 -gUnknown_81C6A60: @ 81C6A60 -.byte 0xf6, 0x00, 0xca, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, south -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x10, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C6BE0 -gUnknown_81C6BE0: @ 81C6BE0 -.byte 0xf6, 0x00, 0xe5, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, north -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x28 -.byte 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C6DC0 -gUnknown_81C6DC0: @ 81C6DC0 -.byte 0xf6, 0x00, 0x06, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x91, 0x0c, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xdb, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C6FC0 -gUnknown_81C6FC0: @ 81C6FC0 -.byte 0xf6, 0x00, 0x29, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, shortestDir, southwest -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x91, 0x04, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x28 -.byte 0x91, 0x04, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x28 -.byte 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81C7170 -gUnknown_81C7170: @ 81C7170 -.byte 0xf6, 0x00, 0x47, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x19 -.byte 0x91, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x89, 0x20, 0x80, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C72A0 -gUnknown_81C72A0: @ 81C72A0 -.byte 0xf6, 0x00, 0x5d, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xcc, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C73E0 -gUnknown_81C73E0: @ 81C73E0 -.byte 0xf6, 0x00, 0x74, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, south -.byte 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81C7630 -gUnknown_81C7630: @ 81C7630 -.byte 0xf6, 0x00, 0x9c, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x08, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x32 -.byte 0x6b, 0x00, 0x00, 0x01, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C77C0 -gUnknown_81C77C0: @ 81C77C0 -.byte 0xf6, 0x00, 0xb8, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x06, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x46 -.byte 0x89, 0x28, 0x80, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, south -.byte 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x10, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x08, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C7940 -gUnknown_81C7940: @ 81C7940 -.byte 0xf6, 0x00, 0xd3, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, southeast -.byte 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, shortestDir, northeast -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, shortestDir, southeast -.byte 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x89, 0x08, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, shortestDir, northeast -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81C7B10 -gUnknown_81C7B10: @ 81C7B10 -.byte 0xf6, 0x00, 0xf3, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, shortestDir, west -.byte 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x0c, 0x00, 0x01, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81C7CB0 -gUnknown_81C7CB0: @ 81C7CB0 -.byte 0xf6, 0x00, 0x10, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x59, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x03, 0x00, 0xb7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xe4, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0f -.byte 0xe4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x03, 0x00, 0x80, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x03, 0x00, 0x81, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xe4, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0f -.byte 0xe4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x56, 0x00, 0x00, 0x00, 0xaa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe4, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0xa7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C8040 -gUnknown_81C8040: @ 81C8040 -.byte 0xf6, 0x00, 0x4c, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C80B0 -gUnknown_81C80B0: @ 81C80B0 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C8040 - -.global gUnknown_81C80BC -gUnknown_81C80BC: @ 81C80BC -.byte 0xf6, 0x00, 0x58, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x30, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C817C -gUnknown_81C817C: @ 81C817C -.byte 0xf6, 0x00, 0x67, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -setFlag 0x06 -.byte 0x89, 0x15, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C1258 -closeTextBox -setFlag 0x04 -.byte 0x89, 0x18, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -setFlag 0x07 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x0f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C8550 -closeTextBox -pause 0x0a -setFlag 0x06 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C8518 -closeTextBox -pause 0x0a -.byte 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C84F0 -closeTextBox -pause 0x0a -.byte 0x2e, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C84CC -closeTextBox -pause 0x0a -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C84AC -closeTextBox -setFlag 0x04 -setFlag 0x06 -setFlag 0x07 -setFlag 0x08 -pause 0x0a -.byte 0x89, 0x50, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0x50, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -closeThread - -.global gUnknown_81C84AC -gUnknown_81C84AC: @ 81C84AC -.string " {ARG_NICKNAME_0}!\n" -.string "Let{APOSTROPHE}s go to the square!\0" -.align 2, 0 - -.global gUnknown_81C84CC -gUnknown_81C84CC: @ 81C84CC -.string " He looks completely\n" -.string "different...\0" -.align 2, 0 - -.global gUnknown_81C84F0 -gUnknown_81C84F0: @ 81C84F0 -.string " Snubbull is weird...?{WAIT_PRESS}\n" -.string "Weird{COMMA} how?\0" -.align 2, 0 - -.global gUnknown_81C8518 -gUnknown_81C8518: @ 81C8518 -.string " It{APOSTROPHE}s Snubbull!{WAIT_PRESS}\n" -.string "There{APOSTROPHE}s something weird going on!\0" -.align 2, 0 - -.global gUnknown_81C8550 -gUnknown_81C8550: @ 81C8550 -.string " Oh{COMMA} hi{COMMA} {ARG_NICKNAME_2} and\n" -.string "{ARG_NICKNAME_3}.{WAIT_PRESS}\n" -.string "What{APOSTROPHE}s the matter?\0" -.align 2, 0 - -.global gUnknown_81C8584 -gUnknown_81C8584: @ 81C8584 -.byte 0xf6, 0x00, 0xa3, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x18, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x48, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x50, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81C86F4 -gUnknown_81C86F4: @ 81C86F4 -.byte 0xf6, 0x00, 0xbd, 0x25, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x40, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x89, 0x40, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x68, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C8804 -gUnknown_81C8804: @ 81C8804 -.byte 0xf6, 0x00, 0xd1, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x48, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x89, 0x38, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x68, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C88E4 -gUnknown_81C88E4: @ 81C88E4 -.byte 0xf6, 0x00, 0xe2, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xeb, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C8914 -gUnknown_81C8914: @ 81C8914 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C88E4 - -.global gUnknown_81C8920 -gUnknown_81C8920: @ 81C8920 -.byte 0xf6, 0x00, 0xea, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x1b, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81C8990 -gUnknown_81C8990: @ 81C8990 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C8920 - -.global gUnknown_81C899C -gUnknown_81C899C: @ 81C899C -.byte 0xf6, 0x00, 0xf6, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C8BFC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C8BAC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C8B84 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C8B40 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C8B1C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C8ACC -closeTextBox -pause 0x1e -setFlag 0x03 -closeThread - -.global gUnknown_81C8ACC -gUnknown_81C8ACC: @ 81C8ACC -.string " There{APOSTROPHE}s something I wanted\n" -.string "to talk over with you before we go to\n" -.string "a dungeon.\0" -.align 2, 0 - -.global gUnknown_81C8B1C -gUnknown_81C8B1C: @ 81C8B1C -.string " Oh{COMMA} yeah{COMMA} {ARG_NICKNAME_0}!\n" -.string "Wait a second!\0" -.align 2, 0 - -.global gUnknown_81C8B40 -gUnknown_81C8B40: @ 81C8B40 -.string " There{APOSTROPHE}s something I wanted\n" -.string "to discuss before we go to a dungeon.\0" -.align 2, 0 - -.global gUnknown_81C8B84 -gUnknown_81C8B84: @ 81C8B84 -.string " Oh{COMMA} yeah{COMMA} {ARG_NICKNAME_0}!\n" -.string "Hold on a second!\0" -.align 2, 0 - -.global gUnknown_81C8BAC -gUnknown_81C8BAC: @ 81C8BAC -.string " There{APOSTROPHE}s something I wanted\n" -.string "to bounce off you before we go to any\n" -.string "dungeon.\0" -.align 2, 0 - -.global gUnknown_81C8BFC -gUnknown_81C8BFC: @ 81C8BFC -.string " Oh{COMMA} yeah{COMMA} {ARG_NICKNAME_0}!\n" -.string "Hang on a second!\0" -.align 2, 0 - -.global gUnknown_81C8C24 -gUnknown_81C8C24: @ 81C8C24 -.byte 0xf6, 0x00, 0x0d, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C8CA4 -gUnknown_81C8CA4: @ 81C8CA4 -.byte 0xf6, 0x00, 0x18, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x04, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C8D84 -gUnknown_81C8D84: @ 81C8D84 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C8CA4 - -.global gUnknown_81C8D90 -gUnknown_81C8D90: @ 81C8D90 -.byte 0xf6, 0x00, 0x2b, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CA3CC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CA370 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CA330 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CA308 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CA2C4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CA264 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CA220 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CA1BC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CA184 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CA13C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CA0F0 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CA0D8 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CA090 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CA038 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9FE0 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9F74 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CA184 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9F24 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9EF0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9ED8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9E80 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9E28 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9DE0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9D8C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd5, 0x01, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9D2C -.byte 0xd8, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9D2C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9CC8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9C64 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBBC -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9DC8 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4E08 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9C00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9BB4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4DFC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9B58 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9AFC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4DFC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9AA0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9A44 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x01, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C99E4 -.byte 0xd8, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C99E4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C997C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C997C -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBBC -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9DC8 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x0c, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9948 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C98E0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C98A4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9850 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9818 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C97C8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9750 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C96F8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C96D4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9688 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C961C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C95B0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9540 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C94E8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C94D4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9484 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C9414 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C93B0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81C93B0 -gUnknown_81C93B0: @ 81C93B0 -.string " We should always choose\n" -.string "the team leader in its Friend Area\n" -.string "before sending the team to any dungeon.\0" -.align 2, 0 - -.global gUnknown_81C9414 -gUnknown_81C9414: @ 81C9414 -.string " Anyway...{WAIT_PRESS} To choose the\n" -.string "leader of a dungeon-bound team...{WAIT_PRESS}\n" -.string "In a Friend Area{COMMA} use...{WAIT_PRESS} {COLOR_1 YELLOW}Make Leader{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_81C9484 -gUnknown_81C9484: @ 81C9484 -.string " We should make it so\n" -.string "a team leader can go into a dungeon\n" -.string "alone if it wants.\0" -.align 2, 0 - -.global gUnknown_81C94D4 -gUnknown_81C94D4: @ 81C94D4 -.string " One more thing.\0" -.align 2, 0 - -.global gUnknown_81C94E8 -gUnknown_81C94E8: @ 81C94E8 -.string " That will make the Pokémon\n" -.string "the team leader.\n" -.string "We should do that before every dungeon.\0" -.align 2, 0 - -.global gUnknown_81C9540 -gUnknown_81C9540: @ 81C9540 -.string " In its Friend Area{COMMA} face the\n" -.string "team member you want as the leader{COMMA}\n" -.string "then select {COLOR_1 YELLOW}Make Leader{END_COLOR_TEXT_1} on the menu.\0" -.align 2, 0 - -.global gUnknown_81C95B0 -gUnknown_81C95B0: @ 81C95B0 -.string " Let{APOSTROPHE}s get in the habit of\n" -.string "going out to Friend Areas and picking\n" -.string "a leader before leaving for a dungeon.\0" -.align 2, 0 - -.global gUnknown_81C961C -gUnknown_81C961C: @ 81C961C -.string " Don{APOSTROPHE}t forget!{WAIT_PRESS} To pick a\n" -.string "leader{COMMA}{WAIT_PRESS} go to them in their Friend Area...{WAIT_PRESS}\n" -.string "and select {COLOR_1 YELLOW}Make Leader{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_81C9688 -gUnknown_81C9688: @ 81C9688 -.string " Let{APOSTROPHE}s also make it so\n" -.string "the leader can go to dungeons alone\n" -.string "if it wants.\0" -.align 2, 0 - -.global gUnknown_81C96D4 -gUnknown_81C96D4: @ 81C96D4 -.string " Oh{COMMA} there{APOSTROPHE}s one more thing.\0" -.align 2, 0 - -.global gUnknown_81C96F8 -gUnknown_81C96F8: @ 81C96F8 -.string " That Pokémon will be the\n" -.string "team leader from then on.\n" -.string "We should do that before dungeons.\0" -.align 2, 0 - -.global gUnknown_81C9750 -gUnknown_81C9750: @ 81C9750 -.string " In its Friend Area{COMMA} face the\n" -.string "team member you want to make the leader{COMMA}\n" -.string "then select {COLOR_1 YELLOW}Make Leader{END_COLOR_TEXT_1} on the menu.\0" -.align 2, 0 - -.global gUnknown_81C97C8 -gUnknown_81C97C8: @ 81C97C8 -.string " I think this is how we\n" -.string "should pick the leader of a team going\n" -.string "into a dungeon.\0" -.align 2, 0 - -.global gUnknown_81C9818 -gUnknown_81C9818: @ 81C9818 -.string " This is how we should\n" -.string "pick a rescue team{APOSTROPHE}s leader.\0" -.align 2, 0 - -.global gUnknown_81C9850 -gUnknown_81C9850: @ 81C9850 -.string " OK! New rule!{WAIT_PRESS}\n" -.string "We can now freely pick the Pokémon that\n" -.string "are going into dungeons.\0" -.align 2, 0 - -.global gUnknown_81C98A4 -gUnknown_81C98A4: @ 81C98A4 -.string " Yup{COMMA} that{APOSTROPHE}s right!{WAIT_PRESS}\n" -.string "I thought you{APOSTROPHE}d agree{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_81C98E0 -gUnknown_81C98E0: @ 81C98E0 -.string " OK! That{APOSTROPHE}s settled!{WAIT_PRESS}\n" -.string "We{APOSTROPHE}ll make it so we can choose the\n" -.string "Pokémon going into dungeons from now on.\0" -.align 2, 0 - -.global gUnknown_81C9948 -gUnknown_81C9948: @ 81C9948 -.string " Yeah{COMMA} that{APOSTROPHE}s right!{WAIT_PRESS}\n" -.string "You think so too{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_81C997C -gUnknown_81C997C: @ 81C997C -.string " Right{COMMA} {ARG_NICKNAME_0}?{WAIT_PRESS}\n" -.string "You agree that it{APOSTROPHE}d be better if we could\n" -.string "freely choose team leaders and members?\0" -.align 2, 0 - -.global gUnknown_81C99E4 -gUnknown_81C99E4: @ 81C99E4 -.string " Right{COMMA} {ARG_NICKNAME_0}?{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s better to be able to change leaders\n" -.string "and members in any way{COMMA} agreed?\0" -.align 2, 0 - -.global gUnknown_81C9A44 -gUnknown_81C9A44: @ 81C9A44 -.string " Don{APOSTROPHE}t you think it would be\n" -.string "better if different types of Pokémon\n" -.string "went in instead of us?\0" -.align 2, 0 - -.global gUnknown_81C9AA0 -gUnknown_81C9AA0: @ 81C9AA0 -.string " Even up to now{COMMA} we{APOSTROPHE}ve\n" -.string "faced tight situations where we had\n" -.string "type disadvantages{COMMA} right?\0" -.align 2, 0 - -.global gUnknown_81C9AFC -gUnknown_81C9AFC: @ 81C9AFC -.string " It would be a lot more\n" -.string "effective to go with different types\n" -.string "of Pokémon{COMMA} wouldn{APOSTROPHE}t it?\0" -.align 2, 0 - -.global gUnknown_81C9B58 -gUnknown_81C9B58: @ 81C9B58 -.string " Even up to now{COMMA} we had\n" -.string "difficulties against opponents that\n" -.string "had type advantages over us.\0" -.align 2, 0 - -.global gUnknown_81C9BB4 -gUnknown_81C9BB4: @ 81C9BB4 -.string " In times like that{COMMA} it{APOSTROPHE}s\n" -.string "better to go with different types of\n" -.string "Pokémon.\0" -.align 2, 0 - -.global gUnknown_81C9C00 -gUnknown_81C9C00: @ 81C9C00 -.string " Even up to now{COMMA} we had\n" -.string "some tough times against enemies\n" -.string "that could hit our weak points{COMMA} right?\0" -.align 2, 0 - -.global gUnknown_81C9C64 -gUnknown_81C9C64: @ 81C9C64 -.string " Do you like the idea?{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_0}{COMMA} do you think it{APOSTROPHE}d be good to\n" -.string "be able to freely choose leaders?\0" -.align 2, 0 - -.global gUnknown_81C9CC8 -gUnknown_81C9CC8: @ 81C9CC8 -.string " Do you like the idea?{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_0}{COMMA} do you think it{APOSTROPHE}d be good\n" -.string "to be able to freely choose leaders?\0" -.align 2, 0 - -.global gUnknown_81C9D2C -gUnknown_81C9D2C: @ 81C9D2C -.string " What do you say?{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_0}{COMMA} do you think it would be\n" -.string "good if we could make anyone the leader?\0" -.align 2, 0 - -.global gUnknown_81C9D8C -gUnknown_81C9D8C: @ 81C9D8C -.string " But that will let us handle\n" -.string "rescues better by having more Pokémon\n" -.string "types available.\0" -.align 2, 0 - -.global gUnknown_81C9DE0 -gUnknown_81C9DE0: @ 81C9DE0 -.string " That might mean we won{APOSTROPHE}t\n" -.string "be going on rescues to certain dungeons...\0" -.align 2, 0 - -.global gUnknown_81C9E28 -gUnknown_81C9E28: @ 81C9E28 -.string " How about we change things\n" -.string "so we can pick the leader and members\n" -.string "to go into dungeons?\0" -.align 2, 0 - -.global gUnknown_81C9E80 -gUnknown_81C9E80: @ 81C9E80 -.string " Instead of us running things\n" -.string "all the time{COMMA} we should let the team as\n" -.string "a whole do it.\0" -.align 2, 0 - -.global gUnknown_81C9ED8 -gUnknown_81C9ED8: @ 81C9ED8 -.string " So{COMMA} I have an idea.\0" -.align 2, 0 - -.global gUnknown_81C9EF0 -gUnknown_81C9EF0: @ 81C9EF0 -.string " I think some of them will\n" -.string "be tough even for us.\0" -.align 2, 0 - -.global gUnknown_81C9F24 -gUnknown_81C9F24: @ 81C9F24 -.string " But I think we{APOSTROPHE}ll be seeing\n" -.string "all sorts of different dungeons from\n" -.string "now on...\0" -.align 2, 0 - -.global gUnknown_81C9F74 -gUnknown_81C9F74: @ 81C9F74 -.string " But I think that will let us\n" -.string "mount rescues with Pokémon of different\n" -.string "types. It will make the team better.\0" -.align 2, 0 - -.global gUnknown_81C9FE0 -gUnknown_81C9FE0: @ 81C9FE0 -.string " I think there will even be\n" -.string "times we don{APOSTROPHE}t go on rescues{COMMA} depending\n" -.string "on the dungeon.\0" -.align 2, 0 - -.global gUnknown_81CA038 -gUnknown_81CA038: @ 81CA038 -.string " How about we make it\n" -.string "possible to pick different leaders and\n" -.string "members for rescue teams?\0" -.align 2, 0 - -.global gUnknown_81CA090 -gUnknown_81CA090: @ 81CA090 -.string " Instead of just us{COMMA} we\n" -.string "should be delegating more to the whole\n" -.string "team.\0" -.align 2, 0 - -.global gUnknown_81CA0D8 -gUnknown_81CA0D8: @ 81CA0D8 -.string " So{COMMA} this is my idea.\0" -.align 2, 0 - -.global gUnknown_81CA0F0 -gUnknown_81CA0F0: @ 81CA0F0 -.string " With just us{COMMA} I think there\n" -.string "will be times when we find it tough going.\0" -.align 2, 0 - -.global gUnknown_81CA13C -gUnknown_81CA13C: @ 81CA13C -.string " But from now on{COMMA} I expect\n" -.string "to be seeing different types of dungeons.\0" -.align 2, 0 - -.global gUnknown_81CA184 -gUnknown_81CA184: @ 81CA184 -.string " You know how we always\n" -.string "go to dungeons together{COMMA} {ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_81CA1BC -gUnknown_81CA1BC: @ 81CA1BC -.string " But that way{COMMA} we could have\n" -.string "different types of Pokémon go in.\n" -.string "I think that{APOSTROPHE}d be good for us.\0" -.align 2, 0 - -.global gUnknown_81CA220 -gUnknown_81CA220: @ 81CA220 -.string " Depending on the dungeon{COMMA}\n" -.string "we might not even get to go anymore...\0" -.align 2, 0 - -.global gUnknown_81CA264 -gUnknown_81CA264: @ 81CA264 -.string " For instance{COMMA} how about\n" -.string "picking different rescue team leaders\n" -.string "and members to go to dungeons?\0" -.align 2, 0 - -.global gUnknown_81CA2C4 -gUnknown_81CA2C4: @ 81CA2C4 -.string " Instead of just us two{COMMA}\n" -.string "we should let our team members do more.\0" -.align 2, 0 - -.global gUnknown_81CA308 -gUnknown_81CA308: @ 81CA308 -.string " So{COMMA} this is what I was\n" -.string "thinking...\0" -.align 2, 0 - -.global gUnknown_81CA330 -gUnknown_81CA330: @ 81CA330 -.string " With just us two{COMMA} I think\n" -.string "we might have some tough times.\0" -.align 2, 0 - -.global gUnknown_81CA370 -gUnknown_81CA370: @ 81CA370 -.string " But I think we{APOSTROPHE}re going to\n" -.string "be facing even more different types of\n" -.string "dungeons from now on.\0" -.align 2, 0 - -.global gUnknown_81CA3CC -gUnknown_81CA3CC: @ 81CA3CC -.string " You know how we always\n" -.string "went into dungeons{COMMA} me and you{COMMA}\n" -.string "{ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_81CA410 -gUnknown_81CA410: @ 81CA410 -.byte 0xf6, 0x00, 0x93, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81CA470 -gUnknown_81CA470: @ 81CA470 -.byte 0xf6, 0x00, 0x9c, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81CA500 -gUnknown_81CA500: @ 81CA500 -.byte 0xf6, 0x00, 0xa8, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81CA580 -gUnknown_81CA580: @ 81CA580 -.byte 0xf6, 0x00, 0xb3, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x1d, 0x00, 0x4a, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81CA5B0 -gUnknown_81CA5B0: @ 81CA5B0 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CA580 - -.global gUnknown_81CA5BC -gUnknown_81CA5BC: @ 81CA5BC -.byte 0xf6, 0x00, 0xbb, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x11, 0x00, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x1b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81CA61C -gUnknown_81CA61C: @ 81CA61C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CA5BC - -.global gUnknown_81CA628 -gUnknown_81CA628: @ 81CA628 -.byte 0xf6, 0x00, 0xc6, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xe3, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81CA698 -gUnknown_81CA698: @ 81CA698 -.byte 0xf6, 0x00, 0xd0, 0x26 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x02, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CB168 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xdb, 0x00, 0x2d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CB140 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x03, 0x03, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x03, 0x00 -.byte 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CB134 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0x2e, 0x03, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CB0E8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x03, 0x00 -.byte 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CB134 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CB0B8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00 -.byte 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CB0A8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CB080 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CB134 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, north -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CB05C -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CB020 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CAFD8 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CAFA8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CAF6C -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CAF00 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CAED4 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CAE98 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CAE44 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CAE04 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CADC0 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CAD68 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81CAD68 -gUnknown_81CAD68: @ 81CAD68 -.string " Only one thing to do.{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s go check the Pelipper Post Office{APOSTROPHE}s\n" -.string "Bulletin Board.\0" -.align 2, 0 - -.global gUnknown_81CADC0 -gUnknown_81CADC0: @ 81CADC0 -.string " So{COMMA} they may have a help-\n" -.string "wanted notice on the Bulletin Board.\0" -.align 2, 0 - -.global gUnknown_81CAE04 -gUnknown_81CAE04: @ 81CAE04 -.string " Maybe Wynaut and his\n" -.string "friend have a problem on their hands...\0" -.align 2, 0 - -.global gUnknown_81CAE44 -gUnknown_81CAE44: @ 81CAE44 -.string " I think he wanted us to look\n" -.string "at the Bulletin Board at the Pelipper Post\n" -.string "Office.\0" -.align 2, 0 - -.global gUnknown_81CAE98 -gUnknown_81CAE98: @ 81CAE98 -.string " That little Pokémon...{WAIT_PRESS}\n" -.string "Did the boy say he was Wynaut?\0" -.align 2, 0 - -.global gUnknown_81CAED4 -gUnknown_81CAED4: @ 81CAED4 -.string " What was that?\n" -.string "What was that all about?\0" -.align 2, 0 - -.global gUnknown_81CAF00 -gUnknown_81CAF00: @ 81CAF00 -.string " There{APOSTROPHE}s only one way to\n" -.string "find out.{WAIT_PRESS} Let{APOSTROPHE}s go to the Pelipper Post\n" -.string "Office and check the Bulletin Board.\0" -.align 2, 0 - -.global gUnknown_81CAF6C -gUnknown_81CAF6C: @ 81CAF6C -.string " And they put up a rescue\n" -.string "job notice on the Bulletin Board.\0" -.align 2, 0 - -.global gUnknown_81CAFA8 -gUnknown_81CAFA8: @ 81CAFA8 -.string " Maybe those two have a\n" -.string "problem or something...\0" -.align 2, 0 - -.global gUnknown_81CAFD8 -gUnknown_81CAFD8: @ 81CAFD8 -.string " He wanted us to check the\n" -.string "Bulletin Board at the Pelipper Post Office.\0" -.align 2, 0 - -.global gUnknown_81CB020 -gUnknown_81CB020: @ 81CB020 -.string " That little Pokémon...{WAIT_PRESS}\n" -.string "What was the boy called? Wynaut?\0" -.align 2, 0 - -.global gUnknown_81CB05C -gUnknown_81CB05C: @ 81CB05C -.string " What was that?\n" -.string "What just happened?\0" -.align 2, 0 - -.global gUnknown_81CB080 -gUnknown_81CB080: @ 81CB080 -.string " Please help me.{WAIT_PRESS}\n" -.string "I have to go now.\0" -.align 2, 0 - -.global gUnknown_81CB0A8 -gUnknown_81CB0A8: @ 81CB0A8 -.string " Wobbuffet!!!{WAIT_PRESS}\0" -.align 2, 0 - -.global gUnknown_81CB0B8 -gUnknown_81CB0B8: @ 81CB0B8 -.string " Please look at it for me.\n" -.string "Please{COMMA} please.\0" -.align 2, 0 - -.global gUnknown_81CB0E8 -gUnknown_81CB0E8: @ 81CB0E8 -.string " We have a notice on the\n" -.string "Bulletin Board outside the Pelipper Post\n" -.string "Office.\0" -.align 2, 0 - -.global gUnknown_81CB134 -gUnknown_81CB134: @ 81CB134 -.string " Wobbuffet!\0" -.align 2, 0 - -.global gUnknown_81CB140 -gUnknown_81CB140: @ 81CB140 -.string " Um...{WAIT_PRESS}\n" -.string "I{APOSTROPHE}m Wynaut{COMMA} and this is...\0" -.align 2, 0 - -.global gUnknown_81CB168 -gUnknown_81CB168: @ 81CB168 -.string " Uh...{WAIT_PRESS} Um...\0" -.align 2, 0 - -.global gUnknown_81CB178 -gUnknown_81CB178: @ 81CB178 -.byte 0xf6, 0x00, 0x42, 0x27 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01 -.byte 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, east -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, east -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, southeast -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, east -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, southeast -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, east -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, southeast -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, east -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, south -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, south -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81CB3A8 -gUnknown_81CB3A8: @ 81CB3A8 -.byte 0xf6, 0x00, 0x68, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x01, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01 -.byte 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x54, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81CB508 -gUnknown_81CB508: @ 81CB508 -.byte 0xf6, 0x00, 0x81, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01 -.byte 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, southwest -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81CB768 -gUnknown_81CB768: @ 81CB768 -.byte 0xf6, 0x00, 0xaa, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81CB7F8 -gUnknown_81CB7F8: @ 81CB7F8 -.byte 0x90, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CB768 - -.global gUnknown_81CB804 -gUnknown_81CB804: @ 81CB804 -.byte 0xf6, 0x00, 0xb8, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81CB8B4 -gUnknown_81CB8B4: @ 81CB8B4 -.byte 0xf6, 0x00, 0xc6, 0x27, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x03, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE894 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE858 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE80C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE7E0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE7AC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CB134 -closeTextBox -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE784 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE76C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0xcb, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE728 -.byte 0xe1, 0x00, 0xcb, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE6F4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE6C0 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE6A4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CB134 -closeTextBox -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE65C -closeTextBox -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE630 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE60C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE5E4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE5B8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE58C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE60C -setFlag 0x06 -.byte 0x2e, 0x15, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE548 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE504 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE4B4 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x04, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE4A4 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x91, 0x08, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x2e, 0x0f, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE488 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE47C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE468 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE440 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE42C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE404 -closeTextBox -.byte 0x44, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x2e, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE3EC -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x08, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE3C0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE384 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE36C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CW, south -.byte 0x54, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE354 -.byte 0x2e, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE344 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE320 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE314 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE314 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE2FC -.byte 0x2e, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE2E4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE2D0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE2B8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE284 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CB134 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE268 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE2D0 -closeTextBox -.byte 0x45, 0x00, 0x1e, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southeast -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x2e, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE234 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE200 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE1D8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE188 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE154 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE124 -setFlag 0x09 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE0F4 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE0A0 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE044 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE020 -.byte 0xd5, 0x01, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDFE8 -.byte 0xd9, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBBC -.byte 0xd9, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9DC8 -.byte 0xf4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDFC0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDFA4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDF8C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0xe5, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 41 -.byte 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x5b, 0x01, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 5 -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDF5C -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDF4C -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDF30 -closeTextBox -.byte 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x8b, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x62, 0x00, 0x00, 0x02, 0xf0, 0xff, 0xff, 0xff -.byte 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x54, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x54, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x05, 0x08, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDF1C -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDF08 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x00, 0x1e, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDEE8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDEB4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDE5C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE020 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDE28 -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x01, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDFE8 -.byte 0xd9, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBBC -.byte 0xd9, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9DC8 -.byte 0xf4, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x2e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x03, 0x00, 0xfe, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x2e, 0x15, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDDE4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDDA0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDD78 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDD48 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDD1C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDCF8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDC9C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDC7C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDC38 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDC7C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDBE4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDBD0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDBA8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDB4C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDB38 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDB0C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDAA0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDA88 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE2FC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CE2E4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDA74 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDA54 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDA3C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CD9F4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CD9C0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x07, 0x00, 0x41, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CD9A4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CD974 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe5, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CD960 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00, 0x41, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CB134 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CD91C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CD90C -closeTextBox -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CD8EC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CD8CC -closeTextBox -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CD8C4 -closeTextBox -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CD8C4 -closeTextBox -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0x91, 0x04, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 42 -.byte 0xdb, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81CD8C4 -gUnknown_81CD8C4: @ 81CD8C4 -.string " OK!\0" -.align 2, 0 - -.global gUnknown_81CD8CC -gUnknown_81CD8CC: @ 81CD8CC -.string " OK!{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s get a move on!\0" -.align 2, 0 - -.global gUnknown_81CD8EC -gUnknown_81CD8EC: @ 81CD8EC -.string " Sniff...\n" -.string "Thanks{COMMA} everyone!\0" -.align 2, 0 - -.global gUnknown_81CD90C -gUnknown_81CD90C: @ 81CD90C -.string " Wobbuffet!!!\0" -.align 2, 0 - -.global gUnknown_81CD91C -gUnknown_81CD91C: @ 81CD91C -.string " I felt bad because we only\n" -.string "had a peeled Chestnut for your reward.\0" -.align 2, 0 - -.global gUnknown_81CD960 -gUnknown_81CD960: @ 81CD960 -.string " I{APOSTROPHE}ll help too!\0" -.align 2, 0 - -.global gUnknown_81CD974 -gUnknown_81CD974: @ 81CD974 -.string " I{APOSTROPHE}ll spit silk for gluing\n" -.string "things together!\0" -.align 2, 0 - -.global gUnknown_81CD9A4 -gUnknown_81CD9A4: @ 81CD9A4 -.string " Me too!\n" -.string "I{APOSTROPHE}ll help too!\0" -.align 2, 0 - -.global gUnknown_81CD9C0 -gUnknown_81CD9C0: @ 81CD9C0 -.string " ...In return...{WAIT_PRESS}\n" -.string "Hand over that peeled Chestnut.\0" -.align 2, 0 - -.global gUnknown_81CD9F4 -gUnknown_81CD9F4: @ 81CD9F4 -.string " We{APOSTROPHE}ll carry in the materials\n" -.string "and get the place built. Double-quick!\0" -.align 2, 0 - -.global gUnknown_81CDA3C -gUnknown_81CDA3C: @ 81CDA3C -.string " Yeah.\n" -.string "Leave it to us!\0" -.align 2, 0 - -.global gUnknown_81CDA54 -gUnknown_81CDA54: @ 81CDA54 -.string " Really?{WAIT_PRESS}\n" -.string "You{APOSTROPHE}ll help us?\0" -.align 2, 0 - -.global gUnknown_81CDA74 -gUnknown_81CDA74: @ 81CDA74 -.string " OK.\n" -.string "We{APOSTROPHE}ll help!\0" -.align 2, 0 - -.global gUnknown_81CDA88 -gUnknown_81CDA88: @ 81CDA88 -.string " How does that sound?\0" -.align 2, 0 - -.global gUnknown_81CDAA0 -gUnknown_81CDAA0: @ 81CDAA0 -.string " If you would help us with\n" -.string "the building of our rescue team base{COMMA}\n" -.string "we could give you this peeled Chestnut!\0" -.align 2, 0 - -.global gUnknown_81CDB0C -gUnknown_81CDB0C: @ 81CDB0C -.string " That{APOSTROPHE}s right!{WAIT_PRESS}\n" -.string "Our rescue team base!\0" -.align 2, 0 - -.global gUnknown_81CDB38 -gUnknown_81CDB38: @ 81CDB38 -.string " What do you say?\0" -.align 2, 0 - -.global gUnknown_81CDB4C -gUnknown_81CDB4C: @ 81CDB4C -.string " If you{APOSTROPHE}d help us build our\n" -.string "rescue team base{COMMA} we could give you this\n" -.string "peeled Chestnut!\0" -.align 2, 0 - -.global gUnknown_81CDBA8 -gUnknown_81CDBA8: @ 81CDBA8 -.string " You got it!{WAIT_PRESS}\n" -.string "Our rescue team base!\0" -.align 2, 0 - -.global gUnknown_81CDBD0 -gUnknown_81CDBD0: @ 81CDBD0 -.string " Rescue team base?\0" -.align 2, 0 - -.global gUnknown_81CDBE4 -gUnknown_81CDBE4: @ 81CDBE4 -.string " We were going to make\n" -.string "our rescue team base something more\n" -.string "impressive than this.\0" -.align 2, 0 - -.global gUnknown_81CDC38 -gUnknown_81CDC38: @ 81CDC38 -.string " You see{COMMA} we want to make\n" -.string "this rescue team base more impressive.\0" -.align 2, 0 - -.global gUnknown_81CDC7C -gUnknown_81CDC7C: @ 81CDC7C -.string " OK!\n" -.string "This is what we{APOSTROPHE}ll do!\0" -.align 2, 0 - -.global gUnknown_81CDC9C -gUnknown_81CDC9C: @ 81CDC9C -.string " We{APOSTROPHE}re aiming to rebuild\n" -.string "our rescue team base so it will be more\n" -.string "impressive than this.\0" -.align 2, 0 - -.global gUnknown_81CDCF8 -gUnknown_81CDCF8: @ 81CDCF8 -.string " OK!\n" -.string "Then this is what we{APOSTROPHE}ll do!\0" -.align 2, 0 - -.global gUnknown_81CDD1C -gUnknown_81CDD1C: @ 81CDD1C -.string " But if it{APOSTROPHE}s for that\n" -.string "peeled Chestnut...\0" -.align 2, 0 - -.global gUnknown_81CDD48 -gUnknown_81CDD48: @ 81CDD48 -.string " We have muscles...{WAIT_PRESS}\n" -.string "But we don{APOSTROPHE}t like work.\0" -.align 2, 0 - -.global gUnknown_81CDD78 -gUnknown_81CDD78: @ 81CDD78 -.string " Physical labor?\n" -.string "You mean muscle work?\0" -.align 2, 0 - -.global gUnknown_81CDDA0 -gUnknown_81CDDA0: @ 81CDDA0 -.string " I know!{WAIT_PRESS}\n" -.string "Listen{COMMA} {ARG_NICKNAME_4} gang{COMMA} how are you\n" -.string "with physical labor?\0" -.align 2, 0 - -.global gUnknown_81CDDE4 -gUnknown_81CDDE4: @ 81CDDE4 -.string " I know!{WAIT_PRESS}\n" -.string "Hey{COMMA} {ARG_NICKNAME_4} gang{COMMA} how are you guys\n" -.string "with physical labor?\0" -.align 2, 0 - -.global gUnknown_81CDE28 -gUnknown_81CDE28: @ 81CDE28 -.string " The {ARG_NICKNAME_4} are saying\n" -.string "they{APOSTROPHE}ll do anything we want.\0" -.align 2, 0 - -.global gUnknown_81CDE5C -gUnknown_81CDE5C: @ 81CDE5C -.string " Please?\n" -.string "We{APOSTROPHE}ll do anything you want if you{APOSTROPHE}ll just\n" -.string "give us your peeled Chestnut...\0" -.align 2, 0 - -.global gUnknown_81CDEB4 -gUnknown_81CDEB4: @ 81CDEB4 -.string " You have to understand.\n" -.string "We love peeled Chestnuts.\0" -.align 2, 0 - -.global gUnknown_81CDEE8 -gUnknown_81CDEE8: @ 81CDEE8 -.string " ...Maybe we can{APOSTROPHE}t do this...\0" -.align 2, 0 - -.global gUnknown_81CDF08 -gUnknown_81CDF08: @ 81CDF08 -.string " ...W-we lost...\0" -.align 2, 0 - -.global gUnknown_81CDF1C -gUnknown_81CDF1C: @ 81CDF1C -.string " Ow{COMMA} ow{COMMA} ow...\0" -.align 2, 0 - -.global gUnknown_81CDF30 -gUnknown_81CDF30: @ 81CDF30 -.string "{CENTER_ALIGN}The {ARG_NICKNAME_4} gang was weak.\0" -.align 2, 0 - -.global gUnknown_81CDF4C -gUnknown_81CDF4C: @ 81CDF4C -.string "{CENTER_ALIGN}However...\0" -.align 2, 0 - -.global gUnknown_81CDF5C -gUnknown_81CDF5C: @ 81CDF5C -.string "{CENTER_ALIGN}{ARG_NICKNAME_0} was suddenly attacked\n" -.string "{CENTER_ALIGN}by the {ARG_NICKNAME_4} gang!\0" -.align 2, 0 - -.global gUnknown_81CDF8C -gUnknown_81CDF8C: @ 81CDF8C -.string " Mukkeeeeeh!\n" -.string "Get them!\0" -.align 2, 0 - -.global gUnknown_81CDFA4 -gUnknown_81CDFA4: @ 81CDFA4 -.string " Who do you think you are?!\0" -.align 2, 0 - -.global gUnknown_81CDFC0 -gUnknown_81CDFC0: @ 81CDFC0 -.string " What?!\n" -.string "You won{APOSTROPHE}t give it up for us?!\0" -.align 2, 0 - -.global gUnknown_81CDFE8 -gUnknown_81CDFE8: @ 81CDFE8 -.string " Should we give our peeled\n" -.string "Chestnut to the {ARG_NICKNAME_4} gang?\0" -.align 2, 0 - -.global gUnknown_81CE020 -gUnknown_81CE020: @ 81CE020 -.string " Hmmm...\n" -.string "{ARG_NICKNAME_0}{COMMA} what do you think?\0" -.align 2, 0 - -.global gUnknown_81CE044 -gUnknown_81CE044: @ 81CE044 -.string " That{APOSTROPHE}s why we{APOSTROPHE}re asking.\n" -.string "Give us that peeled Chestnut.{WAIT_PRESS}\n" -.string "We{APOSTROPHE}ll do whatever you want.\0" -.align 2, 0 - -.global gUnknown_81CE0A0 -gUnknown_81CE0A0: @ 81CE0A0 -.string " Trying to peel that spiky\n" -.string "shell... It hurts.{WAIT_PRESS}\n" -.string "And we end up losing our tempers!\0" -.align 2, 0 - -.global gUnknown_81CE0F4 -gUnknown_81CE0F4: @ 81CE0F4 -.string " You know how Chestnuts\n" -.string "have that spiky shell?\0" -.align 2, 0 - -.global gUnknown_81CE124 -gUnknown_81CE124: @ 81CE124 -.string " Can{APOSTROPHE}t you just get Chestnuts\n" -.string "by yourselves?\0" -.align 2, 0 - -.global gUnknown_81CE154 -gUnknown_81CE154: @ 81CE154 -.string " Why don{APOSTROPHE}t you just go get\n" -.string "Chestnuts on your own?\0" -.align 2, 0 - -.global gUnknown_81CE188 -gUnknown_81CE188: @ 81CE188 -.string " Like{COMMA} we love them so much{COMMA}\n" -.string "we can{APOSTROPHE}t think of a life without Chestnuts!\0" -.align 2, 0 - -.global gUnknown_81CE1D8 -gUnknown_81CE1D8: @ 81CE1D8 -.string " We{COMMA} uh...{WAIT_PRESS}\n" -.string "Love peeled Chestnuts!\0" -.align 2, 0 - -.global gUnknown_81CE200 -gUnknown_81CE200: @ 81CE200 -.string " That peeled Chestnut you\n" -.string "have...{WAIT_PRESS}\n" -.string "Can we have it?\0" -.align 2, 0 - -.global gUnknown_81CE234 -gUnknown_81CE234: @ 81CE234 -.string " ...Uh{COMMA} listen.{WAIT_PRESS}\n" -.string "You got something we want...\0" -.align 2, 0 - -.global gUnknown_81CE268 -gUnknown_81CE268: @ 81CE268 -.string " What is this all about?\0" -.align 2, 0 - -.global gUnknown_81CE284 -gUnknown_81CE284: @ 81CE284 -.string " They look like...{WAIT_PRESS}\n" -.string "They{APOSTROPHE}re having a discussion.\0" -.align 2, 0 - -.global gUnknown_81CE2B8 -gUnknown_81CE2B8: @ 81CE2B8 -.string " What are they doing?\0" -.align 2, 0 - -.global gUnknown_81CE2D0 -gUnknown_81CE2D0: @ 81CE2D0 -.string " What{APOSTROPHE}s going on?\0" -.align 2, 0 - -.global gUnknown_81CE2E4 -gUnknown_81CE2E4: @ 81CE2E4 -.string " Mutter{COMMA} mutter...\0" -.align 2, 0 - -.global gUnknown_81CE2FC -gUnknown_81CE2FC: @ 81CE2FC -.string " Whisper{COMMA} whisper...\0" -.align 2, 0 - -.global gUnknown_81CE314 -gUnknown_81CE314: @ 81CE314 -.string " Wh-what?\0" -.align 2, 0 - -.global gUnknown_81CE320 -gUnknown_81CE320: @ 81CE320 -.string " It is!\n" -.string "It{APOSTROPHE}s a peeled Chestnut!\0" -.align 2, 0 - -.global gUnknown_81CE344 -gUnknown_81CE344: @ 81CE344 -.string " Ch-Chestnut!\0" -.align 2, 0 - -.global gUnknown_81CE354 -gUnknown_81CE354: @ 81CE354 -.string " Whoa!\n" -.string "L-look at that!\0" -.align 2, 0 - -.global gUnknown_81CE36C -gUnknown_81CE36C: @ 81CE36C -.string " Mukkeeeeh!\n" -.string "Crush them!\0" -.align 2, 0 - -.global gUnknown_81CE384 -gUnknown_81CE384: @ 81CE384 -.string " We{APOSTROPHE}re not gonna lose this\n" -.string "time!\n" -.string "We{APOSTROPHE}ll pulverize you!\0" -.align 2, 0 - -.global gUnknown_81CE3C0 -gUnknown_81CE3C0: @ 81CE3C0 -.string " You got lucky!\n" -.string "You don{APOSTROPHE}t mess with us!\0" -.align 2, 0 - -.global gUnknown_81CE3EC -gUnknown_81CE3EC: @ 81CE3EC -.string " That{APOSTROPHE}s right{COMMA} you!\0" -.align 2, 0 - -.global gUnknown_81CE404 -gUnknown_81CE404: @ 81CE404 -.string " Did they chase us here to\n" -.string "get us back?\0" -.align 2, 0 - -.global gUnknown_81CE42C -gUnknown_81CE42C: @ 81CE42C -.string " That {ARG_NICKNAME_4} gang...\0" -.align 2, 0 - -.global gUnknown_81CE440 -gUnknown_81CE440: @ 81CE440 -.string " Did they follow us here\n" -.string "for revenge?\0" -.align 2, 0 - -.global gUnknown_81CE468 -gUnknown_81CE468: @ 81CE468 -.string " Did those goons...\0" -.align 2, 0 - -.global gUnknown_81CE47C -gUnknown_81CE47C: @ 81CE47C -.string " Wobbuffet?\0" -.align 2, 0 - -.global gUnknown_81CE488 -gUnknown_81CE488: @ 81CE488 -.string " Aww{COMMA} no{COMMA} the {ARG_NICKNAME_4}\n" -.string "gang!\0" -.align 2, 0 - -.global gUnknown_81CE4A4 -gUnknown_81CE4A4: @ 81CE4A4 -.string " Hey{COMMA} you!\0" -.align 2, 0 - -.global gUnknown_81CE4B4 -gUnknown_81CE4B4: @ 81CE4B4 -.string " I think they{APOSTROPHE}re great!\n" -.string "Hahahaha!\n" -.string "(A little money would have been nice...)\0" -.align 2, 0 - -.global gUnknown_81CE504 -gUnknown_81CE504: @ 81CE504 -.string " I love them! Hahahaha!\n" -.string "(Some money would have been nice{COMMA} but...)\0" -.align 2, 0 - -.global gUnknown_81CE548 -gUnknown_81CE548: @ 81CE548 -.string " I like them! Hahahaha!\n" -.string "(Though I wish we did get some money...)\0" -.align 2, 0 - -.global gUnknown_81CE58C -gUnknown_81CE58C: @ 81CE58C -.string " Um... No. No...{WAIT_PRESS}\n" -.string "We{APOSTROPHE}re fine with this.\0" -.align 2, 0 - -.global gUnknown_81CE5B8 -gUnknown_81CE5B8: @ 81CE5B8 -.string " I mean{COMMA} peeled Chestnuts\n" -.string "are tasty...\0" -.align 2, 0 - -.global gUnknown_81CE5E4 -gUnknown_81CE5E4: @ 81CE5E4 -.string " Uh... No{COMMA} no...{WAIT_PRESS}\n" -.string "We{APOSTROPHE}re not upset.\0" -.align 2, 0 - -.global gUnknown_81CE60C -gUnknown_81CE60C: @ 81CE60C -.string " Peeled Chestnuts are\n" -.string "delicious...\0" -.align 2, 0 - -.global gUnknown_81CE630 -gUnknown_81CE630: @ 81CE630 -.string " Uh... No{COMMA} no...{WAIT_PRESS}\n" -.string "We{APOSTROPHE}re OK with this.\0" -.align 2, 0 - -.global gUnknown_81CE65C -gUnknown_81CE65C: @ 81CE65C -.string " So we can only give you\n" -.string "a Chestnut as our reward.{WAIT_PRESS}\n" -.string "Are you unhappy?\0" -.align 2, 0 - -.global gUnknown_81CE6A4 -gUnknown_81CE6A4: @ 81CE6A4 -.string " Don{APOSTROPHE}t have any money.\0" -.align 2, 0 - -.global gUnknown_81CE6C0 -gUnknown_81CE6C0: @ 81CE6C0 -.string " Yes. It{APOSTROPHE}s a peeled Chestnut.{WAIT_PRESS}\n" -.string "You see{COMMA} we...\0" -.align 2, 0 - -.global gUnknown_81CE6F4 -gUnknown_81CE6F4: @ 81CE6F4 -.string " ..................{WAIT_PRESS}\n" -.string "This...{WAIT_PRESS}\n" -.string "A peeled Chestnut?\0" -.align 2, 0 - -.global gUnknown_81CE728 -gUnknown_81CE728: @ 81CE728 -.string "{CENTER_ALIGN}{ARG_NICKNAME_0}{APOSTROPHE}s team received\n" -.string "{CENTER_ALIGN}a peeled {COLOR_1 GREEN}Chestnut{END_COLOR_TEXT_1} as their reward.\0" -.align 2, 0 - -.global gUnknown_81CE76C -gUnknown_81CE76C: @ 81CE76C -.string " This is our thanks.\0" -.align 2, 0 - -.global gUnknown_81CE784 -gUnknown_81CE784: @ 81CE784 -.string " Yes{COMMA} we{APOSTROPHE}re filled with\n" -.string "gratitude!\0" -.align 2, 0 - -.global gUnknown_81CE7AC -gUnknown_81CE7AC: @ 81CE7AC -.string " Everyone{COMMA} thank you for\n" -.string "everything{COMMA} really.\0" -.align 2, 0 - -.global gUnknown_81CE7E0 -gUnknown_81CE7E0: @ 81CE7E0 -.string " That should teach them not\n" -.string "to be so wild.\0" -.align 2, 0 - -.global gUnknown_81CE80C -gUnknown_81CE80C: @ 81CE80C -.string " Like we promised{COMMA} we\n" -.string "showed the {ARG_NICKNAME_4} gang they\n" -.string "shouldn{APOSTROPHE}t monkey around.\0" -.align 2, 0 - -.global gUnknown_81CE858 -gUnknown_81CE858: @ 81CE858 -.string " I{APOSTROPHE}m hoping that they{APOSTROPHE}ll\n" -.string "smarten up and settle down.\0" -.align 2, 0 - -.global gUnknown_81CE894 -gUnknown_81CE894: @ 81CE894 -.string " Just like we promised{COMMA}\n" -.string "we punished that gang of {ARG_NICKNAME_4}.\0" -.align 2, 0 - -.global gUnknown_81CE8CC -gUnknown_81CE8CC: @ 81CE8CC -.byte 0xf6, 0x00, 0xe8, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northwest -.byte 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -rotate 0x08, CCW, south -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CW, southwest -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x02, CCW, south -setAnimation 41 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe2, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x02, CW, southwest -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -setFlag 0x05 -closeThread - -.global gUnknown_81CEA9C -gUnknown_81CEA9C: @ 81CEA9C -.byte 0xf6, 0x00, 0x08, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -pause 0x1e -setAnimation 2 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0x10, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x10, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -pause 0x1e -setAnimation 2 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x61, 0x00, 0x00, 0x02, 0x28, 0x01, 0x00, 0x00, 0x38, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 9 -pause 0x1e -setAnimation 2 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 5 -pause 0x14 -setAnimation 2 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x02, 0x01, 0x00, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CW, southwest -pause 0x14 -rotate 0x08, CCW, southeast -pause 0x14 -rotate 0x08, CW, south -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -pause 0x1e -setAnimation 2 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -pause 0x1e -setAnimation 2 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -closeThread - -.global gUnknown_81CEE3C -gUnknown_81CEE3C: @ 81CEE3C -.byte 0xf6, 0x00, 0x45, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x61, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x38, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 9 -pause 0x1e -setAnimation 2 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 5 -pause 0x14 -setAnimation 2 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x02, 0x01, 0x00, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CW, southwest -pause 0x14 -rotate 0x08, CCW, southeast -pause 0x14 -rotate 0x08, CW, south -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -closeThread - -.global gUnknown_81CF1AC -gUnknown_81CF1AC: @ 81CF1AC -.byte 0xf6, 0x00, 0x7f, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northeast -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, north -.byte 0x6b, 0x00, 0x00, 0x01, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x63, 0x00, 0x40, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CCW, south -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CW, north -setFlag 0x05 -rotate 0x08, CW, northeast -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CCW, north -closeThread - -.global gUnknown_81CF33C -gUnknown_81CF33C: @ 81CF33C -.byte 0xf6, 0x00, 0x9b, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xca, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x63, 0x00, 0x40, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, northeast -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, north -closeThread - -.global gUnknown_81CF49C -gUnknown_81CF49C: @ 81CF49C -.byte 0xf6, 0x00, 0xb4, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x63, 0x00, 0x40, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, northwest -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, north -closeThread - -.global gUnknown_81CF60C -gUnknown_81CF60C: @ 81CF60C -.byte 0xf6, 0x00, 0xce, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 5 -.byte 0x54, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x01, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 17 -.byte 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81CF72C -gUnknown_81CF72C: @ 81CF72C -.byte 0xf6, 0x00, 0xe3, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x57, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, south -pause 0x01 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 41 -pause 0x01 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x01, 0x00, 0x00, 0x48, 0x01, 0x00, 0x00, 0x68, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8b, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 5 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x62, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -setAnimation 41 -pause 0x1e -setAnimation 12 -.byte 0x62, 0x00, 0x00, 0x0a, 0xf0, 0xff, 0xff, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -setAnimation 2 -pause 0x01 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -setFlag 0x05 -closeThread - -.global gUnknown_81CF94C -gUnknown_81CF94C: @ 81CF94C -.byte 0xf6, 0x00, 0x08, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd8, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x5b, 0x01, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 5 -pause 0x28 -.byte 0x63, 0x00, 0x00, 0x01, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -pause 0x05 -.byte 0x63, 0x00, 0x00, 0x01, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -closeThread - -.global gUnknown_81CFACC -gUnknown_81CFACC: @ 81CFACC -.byte 0xf6, 0x00, 0x23, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xca, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x5b, 0x01, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x01, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81CFBEC -gUnknown_81CFBEC: @ 81CFBEC -.byte 0xf6, 0x00, 0x38, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8b, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x01, 0x00, 0x00, 0x30, 0x01, 0x00, 0x00, 0x80, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 5 -pause 0x0a -.byte 0x62, 0x00, 0x00, 0x02, 0x10, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -pause 0x28 -.byte 0x4c, 0x00, 0x00, 0x00, 0xf1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -pause 0x01 -.byte 0x63, 0x00, 0x00, 0x01, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81CFD9C -gUnknown_81CFD9C: @ 81CFD9C -.byte 0xf6, 0x00, 0x56, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, south -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, south -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -setAnimation 42 -closeThread - -.global gUnknown_81CFF1C -gUnknown_81CFF1C: @ 81CFF1C -.byte 0xf6, 0x00, 0x71, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CCW, south -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CW, north -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, south -closeThread - -.global gUnknown_81CFFDC -gUnknown_81CFFDC: @ 81CFFDC -.byte 0xf6, 0x00, 0x80, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, northeast -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, north -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CCW, south -closeThread - -.global gUnknown_81D009C -gUnknown_81D009C: @ 81D009C -.byte 0xf6, 0x00, 0x8f, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, northwest -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, north -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, CCW, north -setFlag 0x05 -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CW, south -closeThread - -.global gUnknown_81D018C -gUnknown_81D018C: @ 81D018C -.byte 0xf6, 0x00, 0xa1, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D0334 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D02FC -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D02E4 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D02CC -closeTextBox -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x45, 0x00, 0x3c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D02CC -gUnknown_81D02CC: @ 81D02CC -.string "{CENTER_ALIGN}Several days later...\0" -.align 2, 0 - -.global gUnknown_81D02E4 -gUnknown_81D02E4: @ 81D02E4 -.string "{CENTER_ALIGN}{ARG_NICKNAME_0}{APOSTROPHE}s team\n" -.string "{CENTER_ALIGN}{ARG_TEAM_NAME}.\0" -.align 2, 0 - -.global gUnknown_81D02FC -gUnknown_81D02FC: @ 81D02FC -.string "{CENTER_ALIGN}Construction work began on\n" -.string "{CENTER_ALIGN}the rescue team base of\0" -.align 2, 0 - -.global gUnknown_81D0334 -gUnknown_81D0334: @ 81D0334 -.string "{CENTER_ALIGN}And so...\0" -.align 2, 0 - -.global gUnknown_81D0340 -gUnknown_81D0340: @ 81D0340 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D018C - -.global gUnknown_81D034C -gUnknown_81D034C: @ 81D034C -.byte 0xf6, 0x00, 0xbb, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x86, 0x00, 0x00, 0x02, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D041C -gUnknown_81D041C: @ 81D041C -.byte 0xf6, 0x00, 0xcb, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x0d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x0f, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -setFlag 0x06 -rotate 0x04, CCW, west -.byte 0x2e, 0x02, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1188 -closeTextBox -pause 0x0a -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x03, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CB134 -closeTextBox -setFlag 0x08 -pause 0x0a -.byte 0x2e, 0x15, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D116C -closeTextBox -pause 0x0a -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CB134 -closeTextBox -setFlag 0x08 -pause 0x0a -setFlag 0x06 -setFlag 0x07 -setFlag 0x0c -rotate 0x04, CW, northeast -setFlag 0x08 -pause 0x50 -setFlag 0x0c -.byte 0x34, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1148 -setFlag 0x06 -rotate 0x04, CCW, north -setFlag 0x07 -setFlag 0x08 -.byte 0x34, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1120 -closeTextBox -pause 0x0a -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CB134 -closeTextBox -setFlag 0x08 -pause 0x0a -setFlag 0x06 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D10D8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1088 -closeTextBox -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1074 -closeTextBox -rotate 0x04, CCW, southwest -setFlag 0x07 -setFlag 0x08 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -pause 0x14 -setFlag 0x07 -setFlag 0x08 -setFlag 0x0c -pause 0x01 -.byte 0x53, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1058 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFEE8 -closeTextBox -pause 0x0a -setFlag 0x0c -.byte 0x34, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D103C -closeTextBox -pause 0x0a -setFlag 0x09 -setFlag 0x0a -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0b, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2f, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D102C -closeTextBox -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00, 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -setFlag 0x07 -setFlag 0x08 -setFlag 0x0c -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81AFD04 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D0FE8 -closeTextBox -pause 0x0a -.byte 0x2e, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D0FAC -closeTextBox -pause 0x0a -.byte 0x2e, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D0F6C -closeTextBox -pause 0x1e -.byte 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D0F48 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D0F30 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D0EE8 -closeTextBox -pause 0x0a -setFlag 0x06 -rotate 0x04, CW, northwest -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D0ED4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D0E7C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D0E2C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D0E10 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D0DBC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D0D6C -closeTextBox -pause 0x1e -setFlag 0x03 -closeThread - -.global gUnknown_81D0D6C -gUnknown_81D0D6C: @ 81D0D6C -.string " I guess we{APOSTROPHE}ll have to give\n" -.string "the {ARG_NICKNAME_4} gang any peeled\n" -.string "Chestnuts that we find.\0" -.align 2, 0 - -.global gUnknown_81D0DBC -gUnknown_81D0DBC: @ 81D0DBC -.string " I don{APOSTROPHE}t think the\n" -.string "{ARG_NICKNAME_4} gang will work unless\n" -.string "we get them another peeled Chestnut.\0" -.align 2, 0 - -.global gUnknown_81D0E10 -gUnknown_81D0E10: @ 81D0E10 -.string " We have a problem{COMMA}\n" -.string "{ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81D0E2C -gUnknown_81D0E2C: @ 81D0E2C -.string " I guess we have to find\n" -.string "more peeled Chestnuts and give them to\n" -.string "the {ARG_NICKNAME_4} gang.\0" -.align 2, 0 - -.global gUnknown_81D0E7C -gUnknown_81D0E7C: @ 81D0E7C -.string " It looks like the\n" -.string "{ARG_NICKNAME_4} gang won{APOSTROPHE}t work unless\n" -.string "we get them another peeled Chestnut.\0" -.align 2, 0 - -.global gUnknown_81D0ED4 -gUnknown_81D0ED4: @ 81D0ED4 -.string " Problem{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81D0EE8 -gUnknown_81D0EE8: @ 81D0EE8 -.string " We just can{APOSTROPHE}t be bothered.\n" -.string "We need peeled Chestnuts to motivate us.\0" -.align 2, 0 - -.global gUnknown_81D0F30 -gUnknown_81D0F30: @ 81D0F30 -.string " ...What is this about?\0" -.align 2, 0 - -.global gUnknown_81D0F48 -gUnknown_81D0F48: @ 81D0F48 -.string " ...What is it with these\n" -.string "guys...?\0" -.align 2, 0 - -.global gUnknown_81D0F6C -gUnknown_81D0F6C: @ 81D0F6C -.string " We might change our minds\n" -.string "if you get us more peeled Chestnuts.\0" -.align 2, 0 - -.global gUnknown_81D0FAC -gUnknown_81D0FAC: @ 81D0FAC -.string " Yeah{COMMA} that{APOSTROPHE}s right.\n" -.string "I don{APOSTROPHE}t wanna do this anymore.\0" -.align 2, 0 - -.global gUnknown_81D0FE8 -gUnknown_81D0FE8: @ 81D0FE8 -.string " This work{APOSTROPHE}s too boring!{WAIT_PRESS}\n" -.string "How do you expect us to keep going?\0" -.align 2, 0 - -.global gUnknown_81D102C -gUnknown_81D102C: @ 81D102C -.string " Don{APOSTROPHE}t wanna.\0" -.align 2, 0 - -.global gUnknown_81D103C -gUnknown_81D103C: @ 81D103C -.string " We need to keep working.\0" -.align 2, 0 - -.global gUnknown_81D1058 -gUnknown_81D1058: @ 81D1058 -.string " What{APOSTROPHE}s up with you guys?\0" -.align 2, 0 - -.global gUnknown_81D1074 -gUnknown_81D1074: @ 81D1074 -.string " Look!\n" -.string "Over there!\0" -.align 2, 0 - -.global gUnknown_81D1088 -gUnknown_81D1088: @ 81D1088 -.string " That{APOSTROPHE}s true.{WAIT_PRESS} But we{APOSTROPHE}re\n" -.string "getting close{COMMA} right{COMMA} {ARG_NICKNAME_4} gang?{WAIT_PRESS}\n" -.string "...{WAIT_PRESS}Huh?\0" -.align 2, 0 - -.global gUnknown_81D10D8 -gUnknown_81D10D8: @ 81D10D8 -.string " Yeah...{WAIT_PRESS} But we{APOSTROPHE}re getting\n" -.string "close{COMMA} right{COMMA} {ARG_NICKNAME_4} gang?{WAIT_PRESS}\n" -.string "...{WAIT_PRESS}Hah?\0" -.align 2, 0 - -.global gUnknown_81D1120 -gUnknown_81D1120: @ 81D1120 -.string " We still have difficult\n" -.string "things to do.\0" -.align 2, 0 - -.global gUnknown_81D1148 -gUnknown_81D1148: @ 81D1148 -.string " But there{APOSTROPHE}s still lots to do.\0" -.align 2, 0 - -.global gUnknown_81D116C -gUnknown_81D116C: @ 81D116C -.string " We owe everyone for this.\0" -.align 2, 0 - -.global gUnknown_81D1188 -gUnknown_81D1188: @ 81D1188 -.string " Whew...{WAIT_PRESS}\n" -.string "Our base is coming along quickly.\0" -.align 2, 0 - -.global gUnknown_81D11B8 -gUnknown_81D11B8: @ 81D11B8 -.byte 0xf6, 0x00, 0x6c, 0x2c -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northeast -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, north -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe8, 0x00, 0x21, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01 -.byte 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, southeast -.byte 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D1408 -gUnknown_81D1408: @ 81D1408 -.byte 0xf6, 0x00, 0x94, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southeast -.byte 0x54, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x10, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01 -.byte 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01 -.byte 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81D1578 -gUnknown_81D1578: @ 81D1578 -.byte 0xf6, 0x00, 0xae, 0x2c -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, east -.byte 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, east -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southwest -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01 -.byte 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x71, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01 -.byte 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81D17F8 -gUnknown_81D17F8: @ 81D17F8 -.byte 0xf6, 0x00, 0xd9, 0x2c -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 6 -.byte 0x2d, 0x07, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, east -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D1888 -gUnknown_81D1888: @ 81D1888 -.byte 0xf6, 0x00, 0xe5, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x01, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, east -.byte 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81D1918 -gUnknown_81D1918: @ 81D1918 -.byte 0xf6, 0x00, 0xf1, 0x2c -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 6 -.byte 0x2d, 0x07, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, east -.byte 0xe3, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81D1998 -gUnknown_81D1998: @ 81D1998 -.byte 0xf6, 0x00, 0xfc, 0x2c -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x02, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01 -.byte 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southwest -.byte 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xcc, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01 -.byte 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D1B28 -gUnknown_81D1B28: @ 81D1B28 -.byte 0xf6, 0x00, 0x18, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xb3, 0x00, 0x25, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x01, 0x04, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D1BB8 -gUnknown_81D1BB8: @ 81D1BB8 -.byte 0x93, 0x01, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1B28 - -.global gUnknown_81D1BC4 -gUnknown_81D1BC4: @ 81D1BC4 -.byte 0xf6, 0x00, 0x26, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D1BF4 -gUnknown_81D1BF4: @ 81D1BF4 -.byte 0xf6, 0x00, 0x2c, 0x2d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xbf, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1DC8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1DA8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1D90 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1D34 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1CD4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81D1CD4 -gUnknown_81D1CD4: @ 81D1CD4 -.string " We see peeled {COLOR_1 GREEN_2}Chestnuts{END_COLOR_TEXT_1}\n" -.string "sometimes in {COLOR_1 YELLOW_4}Uproar Forest{END_COLOR_TEXT_1}.\n" -.string "We want them out of the shell.\0" -.align 2, 0 - -.global gUnknown_81D1D34 -gUnknown_81D1D34: @ 81D1D34 -.string " If you want us to renovate\n" -.string "your rescue team base{COMMA} bring us \n" -.string "a Chestnut. A peeled one!\0" -.align 2, 0 - -.global gUnknown_81D1D90 -gUnknown_81D1D90: @ 81D1D90 -.string " Then we can{APOSTROPHE}t work!\0" -.align 2, 0 - -.global gUnknown_81D1DA8 -gUnknown_81D1DA8: @ 81D1DA8 -.string " What?!\n" -.string "You don{APOSTROPHE}t have any?!\0" -.align 2, 0 - -.global gUnknown_81D1DC8 -gUnknown_81D1DC8: @ 81D1DC8 -.string " Hunh?\n" -.string "Did you bring us a peeled Chestnut?\0" -.align 2, 0 - -.global gUnknown_81D1DF4 -gUnknown_81D1DF4: @ 81D1DF4 -.byte 0xf6, 0x00, 0x3e, 0x2d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D1E24 -gUnknown_81D1E24: @ 81D1E24 -.byte 0xf6, 0x00, 0x44, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1DC8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1DA8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1D90 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1D34 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1F04 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D1F04 -gUnknown_81D1F04: @ 81D1F04 -.string " We see {COLOR_1 GREEN_2}Chestnuts{END_COLOR_TEXT_1}\n" -.string "sometimes in {COLOR_1 YELLOW_4}Uproar Forest{END_COLOR_TEXT_1}.\n" -.string "We want them out of the shell.\0" -.align 2, 0 - -.global gUnknown_81D1F5C -gUnknown_81D1F5C: @ 81D1F5C -.byte 0xf6, 0x00, 0x56, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D1F8C -gUnknown_81D1F8C: @ 81D1F8C -.byte 0xf6, 0x00, 0x5c, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xbf, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1DC8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1DA8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1D90 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1D34 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1F04 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81D206C -gUnknown_81D206C: @ 81D206C -.byte 0xf6, 0x00, 0x6e, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D208C -gUnknown_81D208C: @ 81D208C -.byte 0xf6, 0x00, 0x73, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D20EC -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D20EC -gUnknown_81D20EC: @ 81D20EC -.string " We{APOSTROPHE}re going to work hard!\n" -.string "We{APOSTROPHE}ll finish the rescue team base!\0" -.align 2, 0 - -.global gUnknown_81D2130 -gUnknown_81D2130: @ 81D2130 -.byte 0xf6, 0x00, 0x7c, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CB134 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D21F0 -gUnknown_81D21F0: @ 81D21F0 -.byte 0xf6, 0x00, 0x8b, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D22C0 -gUnknown_81D22C0: @ 81D22C0 -.byte 0xf6, 0x00, 0x9b, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D22F0 -gUnknown_81D22F0: @ 81D22F0 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D22C0 - -.global gUnknown_81D22FC -gUnknown_81D22FC: @ 81D22FC -.byte 0xf6, 0x00, 0xa3, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D23BC -gUnknown_81D23BC: @ 81D23BC -.byte 0xf6, 0x00, 0xb2, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x01, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe5, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe5, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe5, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0b, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D3058 -closeTextBox -pause 0x0a -.byte 0x2e, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2f, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D302C -closeTextBox -pause 0x0a -.byte 0x2e, 0x0b, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x01, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D2FF4 -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D2FEC -.byte 0xd9, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D2FDC -.byte 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x0c, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x2e, 0x0b, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDFC0 -closeTextBox -pause 0x0a -.byte 0x2e, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDFA4 -closeTextBox -pause 0x0a -.byte 0x2e, 0x0b, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2f, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDF8C -closeTextBox -setFlag 0x07 -setFlag 0x08 -setFlag 0x09 -.byte 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D2FAC -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDF4C -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D2F90 -closeTextBox -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe5, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x0b, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDF1C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CDF08 -closeTextBox -.byte 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x45, 0x00, 0x1e, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -pause 0x0a -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D2F4C -closeTextBox -pause 0x1e -.byte 0x0c, 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x0b, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D2F30 -closeTextBox -setFlag 0x07 -setFlag 0x08 -setFlag 0x09 -pause 0x01 -.byte 0xe5, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe5, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D2EF4 -closeTextBox -pause 0x0a -.byte 0x2e, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D2EB4 -closeTextBox -setFlag 0x07 -setFlag 0x08 -setFlag 0x09 -pause 0x01 -.byte 0xe5, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe5, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0b, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D2E78 -closeTextBox -pause 0x0a -.byte 0x2e, 0x0b, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2f, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D2E20 -closeTextBox -.byte 0xaa, 0x00, 0x04, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x41, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x07, 0x04, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D0334 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D2DD4 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D2D90 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D2D7C -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D2D3C -closeTextBox -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x1b, 0x00, 0x05, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81D2D3C -gUnknown_81D2D3C: @ 81D2D3C -.string "{CENTER_ALIGN}The rescue team base{APOSTROPHE}s completion\n" -.string "{CENTER_ALIGN}moved a little closer.\0" -.align 2, 0 - -.global gUnknown_81D2D7C -gUnknown_81D2D7C: @ 81D2D7C -.string "{CENTER_ALIGN}As a result...\0" -.align 2, 0 - -.global gUnknown_81D2D90 -gUnknown_81D2D90: @ 81D2D90 -.string "{CENTER_ALIGN}And returned to work on\n" -.string "{CENTER_ALIGN}the rescue team base{APOSTROPHE}s renovation.\0" -.align 2, 0 - -.global gUnknown_81D2DD4 -gUnknown_81D2DD4: @ 81D2DD4 -.string "{CENTER_ALIGN}Supplied with another peeled Chestnut{COMMA}\n" -.string "{CENTER_ALIGN}the {ARG_NICKNAME_2} gang got motivated...\0" -.align 2, 0 - -.global gUnknown_81D2E20 -gUnknown_81D2E20: @ 81D2E20 -.string " We{APOSTROPHE}ll carry in the materials\n" -.string "and get the place built. Double-quick!{WAIT_PRESS}\n" -.string "You just wait!\0" -.align 2, 0 - -.global gUnknown_81D2E78 -gUnknown_81D2E78: @ 81D2E78 -.string " We{APOSTROPHE}ll get hustling on\n" -.string "renovating your rescue team base!\0" -.align 2, 0 - -.global gUnknown_81D2EB4 -gUnknown_81D2EB4: @ 81D2EB4 -.string " Why don{APOSTROPHE}t you quit lounging\n" -.string "around yourself?!\n" -.string "Get moving!\0" -.align 2, 0 - -.global gUnknown_81D2EF4 -gUnknown_81D2EF4: @ 81D2EF4 -.string " All right{COMMA} you layabouts!\n" -.string "Get it together! Chop{COMMA} chop!\0" -.align 2, 0 - -.global gUnknown_81D2F30 -gUnknown_81D2F30: @ 81D2F30 -.string " Yes!\n" -.string "A peeled Chestnut!\0" -.align 2, 0 - -.global gUnknown_81D2F4C -gUnknown_81D2F4C: @ 81D2F4C -.string "{CENTER_ALIGN}{ARG_NICKNAME_0} peeled the spiny shell\n" -.string "{CENTER_ALIGN}and handed the peeled Chestnut over.\0" -.align 2, 0 - -.global gUnknown_81D2F90 -gUnknown_81D2F90: @ 81D2F90 -.string "{CENTER_ALIGN}The {ARG_NICKNAME_2} gang was weak.\0" -.align 2, 0 - -.global gUnknown_81D2FAC -gUnknown_81D2FAC: @ 81D2FAC -.string "{CENTER_ALIGN}{ARG_NICKNAME_0} was suddenly attacked\n" -.string "{CENTER_ALIGN}by the {ARG_NICKNAME_2} gang!\0" -.align 2, 0 - -.global gUnknown_81D2FDC -gUnknown_81D2FDC: @ 81D2FDC -.string "Don{APOSTROPHE}t give.\0" -.align 2, 0 - -.global gUnknown_81D2FEC -gUnknown_81D2FEC: @ 81D2FEC -.string "Give.\0" -.align 2, 0 - -.global gUnknown_81D2FF4 -gUnknown_81D2FF4: @ 81D2FF4 -.string " Come on{COMMA} give it to us!\n" -.string "We{APOSTROPHE}ll work hard for it.\0" -.align 2, 0 - -.global gUnknown_81D302C -gUnknown_81D302C: @ 81D302C -.string " Oh!\n" -.string "A Chestnut!\n" -.string "We want a peeled Chestnut!\0" -.align 2, 0 - -.global gUnknown_81D3058 -gUnknown_81D3058: @ 81D3058 -.string " Huh?\n" -.string "Did you bring us a peeled Chestnut?\0" -.align 2, 0 - -.global gUnknown_81D3084 -gUnknown_81D3084: @ 81D3084 -.byte 0xf6, 0x00, 0x51, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D3104 -gUnknown_81D3104: @ 81D3104 -.byte 0xf6, 0x00, 0x5c, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D3164 -gUnknown_81D3164: @ 81D3164 -.byte 0xf6, 0x00, 0x65, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D31C4 -gUnknown_81D31C4: @ 81D31C4 -.byte 0xf6, 0x00, 0x6e, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D3224 -gUnknown_81D3224: @ 81D3224 -.byte 0xf6, 0x00, 0x77, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6f, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x04, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81D3314 -gUnknown_81D3314: @ 81D3314 -.byte 0xf6, 0x00, 0x89, 0x2e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6f, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x04, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D33E4 -gUnknown_81D33E4: @ 81D33E4 -.byte 0xf6, 0x00, 0x99, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6f, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 8 -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, west -.byte 0x91, 0x04, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81D34B4 -gUnknown_81D34B4: @ 81D34B4 -.byte 0xf6, 0x00, 0xa9, 0x2e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D35A4 -gUnknown_81D35A4: @ 81D35A4 -.byte 0xf6, 0x00, 0xbb, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, south -.byte 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81D3694 -gUnknown_81D3694: @ 81D3694 -.byte 0xf6, 0x00, 0xcd, 0x2e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, west -.byte 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81D3774 -gUnknown_81D3774: @ 81D3774 -.byte 0xf6, 0x00, 0xde, 0x2e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D0334 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D3B2C -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D2D90 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D3B18 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D3AF0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2d, 0x09, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D3AA4 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D3A80 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D3A3C -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D39F0 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D39D8 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D3994 -closeTextBox -.byte 0x11, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D3994 -gUnknown_81D3994: @ 81D3994 -.string "{CENTER_ALIGN}The chaotic renovation of\n" -.string "{CENTER_ALIGN}the rescue team base came to an end.\0" -.align 2, 0 - -.global gUnknown_81D39D8 -gUnknown_81D39D8: @ 81D39D8 -.string "{CENTER_ALIGN}And that is how...\0" -.align 2, 0 - -.global gUnknown_81D39F0 -gUnknown_81D39F0: @ 81D39F0 -.string "{CENTER_ALIGN}In return for more peeled Chestnuts{COMMA}\n" -.string "{CENTER_ALIGN}they returned to their forest.\0" -.align 2, 0 - -.global gUnknown_81D3A3C -gUnknown_81D3A3C: @ 81D3A3C -.string "{CENTER_ALIGN}As for the {ARG_NICKNAME_4} gang{COMMA} they\n" -.string "{CENTER_ALIGN}promised to keep from rampaging...\0" -.align 2, 0 - -.global gUnknown_81D3A80 -gUnknown_81D3A80: @ 81D3A80 -.string "{CENTER_ALIGN}The rescue team base was saved.\0" -.align 2, 0 - -.global gUnknown_81D3AA4 -gUnknown_81D3AA4: @ 81D3AA4 -.string "{CENTER_ALIGN}As a result of everyone{APOSTROPHE}s desperate\n" -.string "{CENTER_ALIGN}efforts to stop the {ARG_NICKNAME_0} gang...\0" -.align 2, 0 - -.global gUnknown_81D3AF0 -gUnknown_81D3AF0: @ 81D3AF0 -.string "{CENTER_ALIGN}The rescue team base was completed!\0" -.align 2, 0 - -.global gUnknown_81D3B18 -gUnknown_81D3B18: @ 81D3B18 -.string "{CENTER_ALIGN}And finally...\0" -.align 2, 0 - -.global gUnknown_81D3B2C -gUnknown_81D3B2C: @ 81D3B2C -.string "{CENTER_ALIGN}Supplied with another peeled Chestnut{COMMA}\n" -.string "{CENTER_ALIGN}the {ARG_NICKNAME_0} gang got motivated...\0" -.align 2, 0 - -.global gUnknown_81D3B78 -gUnknown_81D3B78: @ 81D3B78 -.byte 0x90, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D3774 - -.global gUnknown_81D3B84 -gUnknown_81D3B84: @ 81D3B84 -.byte 0xf6, 0x00, 0x07, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x77, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x45, 0x00, 0x78, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D3CC4 -gUnknown_81D3CC4: @ 81D3CC4 -.byte 0xf6, 0x00, 0x1e, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D4CEC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D4CB0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x08, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D4C90 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D4C68 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D4C4C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D4C68 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D4C2C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D4C68 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CCW, north -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D4BD0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D4B68 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x08, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D4B34 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D4B04 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D4AE8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x08, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D4ABC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81CB134 -closeTextBox -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0a, CW, south -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0a, CCW, southeast -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0a, CW, south -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0a, CCW, southeast -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D4A98 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0b, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x04, 0x00, 0xfd, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D4A60 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe5, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, west -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D4A34 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D49E8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D49C4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D498C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D4960 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D494C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D4914 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D48D8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x10, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x04, 0x00, 0xfd, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A37E8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9224 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D48B0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe5, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D48A0 -closeTextBox -.byte 0xa5, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x03, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D4894 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D485C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D4834 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x6a, 0x00, 0x80, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 9 -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81D4834 -gUnknown_81D4834: @ 81D4834 -.string " Waah! What are you doing?!\n" -.string "Stop that!\0" -.align 2, 0 - -.global gUnknown_81D485C -gUnknown_81D485C: @ 81D485C -.string " Whoa{COMMA} whoa{COMMA} whoa!\n" -.string "What are you doing?!\n" -.string "Stop that!\0" -.align 2, 0 - -.global gUnknown_81D4894 -gUnknown_81D4894: @ 81D4894 -.string " Wh-what?!\0" -.align 2, 0 - -.global gUnknown_81D48A0 -gUnknown_81D48A0: @ 81D48A0 -.string " Ukkeeeeeeeeh!\0" -.align 2, 0 - -.global gUnknown_81D48B0 -gUnknown_81D48B0: @ 81D48B0 -.string " ....................................\0" -.align 2, 0 - -.global gUnknown_81D48D8 -gUnknown_81D48D8: @ 81D48D8 -.string " To our {ARG_NICKNAME_4} gang!{WAIT_PRESS}\n" -.string "Sincerely{COMMA} thank you for everything!\0" -.align 2, 0 - -.global gUnknown_81D4914 -gUnknown_81D4914: @ 81D4914 -.string " We{APOSTROPHE}re finished with work\n" -.string "on our rescue team base.\0" -.align 2, 0 - -.global gUnknown_81D494C -gUnknown_81D494C: @ 81D494C -.string " Hahaha!\n" -.string "Of course!\0" -.align 2, 0 - -.global gUnknown_81D4960 -gUnknown_81D4960: @ 81D4960 -.string " To our {ARG_NICKNAME_4} gang!{WAIT_PRESS}\n" -.string "Thanks for everything!\0" -.align 2, 0 - -.global gUnknown_81D498C -gUnknown_81D498C: @ 81D498C -.string " We don{APOSTROPHE}t need to keep\n" -.string "working on the base anymore.\0" -.align 2, 0 - -.global gUnknown_81D49C4 -gUnknown_81D49C4: @ 81D49C4 -.string " Hahaha!\n" -.string "Well{COMMA} what do you think?\0" -.align 2, 0 - -.global gUnknown_81D49E8 -gUnknown_81D49E8: @ 81D49E8 -.string " Does that maybe mean...{WAIT_PRESS}\n" -.string "You won{APOSTROPHE}t bring us peeled Chestnuts\n" -.string "anymore?\0" -.align 2, 0 - -.global gUnknown_81D4A34 -gUnknown_81D4A34: @ 81D4A34 -.string " If this rescue team base is\n" -.string "finished...\0" -.align 2, 0 - -.global gUnknown_81D4A60 -gUnknown_81D4A60: @ 81D4A60 -.string " Say{COMMA} there.{WAIT_PRESS}\n" -.string "There{APOSTROPHE}s something I want to ask...\0" -.align 2, 0 - -.global gUnknown_81D4A98 -gUnknown_81D4A98: @ 81D4A98 -.string " Sniff... Everyone...{WAIT_PRESS}\n" -.string "Thank you!\0" -.align 2, 0 - -.global gUnknown_81D4ABC -gUnknown_81D4ABC: @ 81D4ABC -.string " It was very hard{COMMA} but it\n" -.string "was worth it!\0" -.align 2, 0 - -.global gUnknown_81D4AE8 -gUnknown_81D4AE8: @ 81D4AE8 -.string " We all worked very hard!\0" -.align 2, 0 - -.global gUnknown_81D4B04 -gUnknown_81D4B04: @ 81D4B04 -.string " Its resemblance to you\n" -.string "is a nice touch{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_81D4B34 -gUnknown_81D4B34: @ 81D4B34 -.string " The way it looks like you\n" -.string "is a nice touch{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_81D4B68 -gUnknown_81D4B68: @ 81D4B68 -.string " Sniff... It{APOSTROPHE}s so cool.{WAIT_PRESS}\n" -.string "Every time I take a look at our rescue\n" -.string "team base{COMMA} I only see coolness.\0" -.align 2, 0 - -.global gUnknown_81D4BD0 -gUnknown_81D4BD0: @ 81D4BD0 -.string " Sniff... This is so cool.{WAIT_PRESS}\n" -.string "I can stare at it forever! Our rescue team\n" -.string "base is so cool.\0" -.align 2, 0 - -.global gUnknown_81D4C2C -gUnknown_81D4C2C: @ 81D4C2C -.string " {ARG_NICKNAME_0}!\n" -.string "It{APOSTROPHE}s ready! Finally!\0" -.align 2, 0 - -.global gUnknown_81D4C4C -gUnknown_81D4C4C: @ 81D4C4C -.string " {ARG_NICKNAME_0}!\n" -.string "It{APOSTROPHE}s finally ready!\0" -.align 2, 0 - -.global gUnknown_81D4C68 -gUnknown_81D4C68: @ 81D4C68 -.string " Our... {COLOR_1 CYAN}{ARG_TEAM_NAME}{END_COLOR_TEXT_1}{APOSTROPHE}s\n" -.string "rescue team base!\0" -.align 2, 0 - -.global gUnknown_81D4C90 -gUnknown_81D4C90: @ 81D4C90 -.string " {ARG_NICKNAME_0}!\n" -.string "It{APOSTROPHE}s finally finished!\0" -.align 2, 0 - -.global gUnknown_81D4CB0 -gUnknown_81D4CB0: @ 81D4CB0 -.string " Sniff...{WAIT_PRESS}\n" -.string "Finally...{WAIT_PRESS}\n" -.string "This day has finally arrived...\0" -.align 2, 0 - -.global gUnknown_81D4CEC -gUnknown_81D4CEC: @ 81D4CEC -.string " Sniff...{WAIT_PRESS}\n" -.string "Finally...{WAIT_PRESS}\n" -.string "This day has finally come...\0" -.align 2, 0 - -.global gUnknown_81D4D24 -gUnknown_81D4D24: @ 81D4D24 -.byte 0xf6, 0x00, 0xe1, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CW, north -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CCW, west -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x0a, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x91, 0x0a, 0x02, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x91, 0x0a, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x91, 0x0a, 0x01, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x06, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x01, 0xf0, 0xff, 0xff, 0xff -.byte 0xc0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x79, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, north -.byte 0x54, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xdb, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 40 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81D5054 -gUnknown_81D5054: @ 81D5054 -.byte 0xf6, 0x00, 0x17, 0x30, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, west -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x46 -.byte 0x6b, 0x00, 0x00, 0x01, 0x7e, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D5184 -gUnknown_81D5184: @ 81D5184 -.byte 0xf6, 0x00, 0x2d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northwest -.byte 0x54, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x08, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x02, 0xe0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0xc8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0x54, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81D52F4 -gUnknown_81D52F4: @ 81D52F4 -.byte 0xf6, 0x00, 0x47, 0x30, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, east -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd8, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd8, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00, 0xbe, 0x02, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x18 -.byte 0x4c, 0x00, 0x00, 0x00, 0x62, 0x02, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0x62, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x01, 0x00, 0x39, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 12 -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xbe, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xdb, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x62, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0x62, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x64, 0x00, 0xbe, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x64, 0x00, 0x62, 0x02, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D5644 -gUnknown_81D5644: @ 81D5644 -.byte 0xf6, 0x00, 0x7f, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0x6b, 0x00, 0x00, 0x02, 0x7c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x01, 0x00, 0x39, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 12 -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 9 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81D5854 -gUnknown_81D5854: @ 81D5854 -.byte 0xf6, 0x00, 0xa3, 0x30, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, east -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, north -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x7d, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x01, 0x00, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xdb, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 12 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x54, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D5A84 -gUnknown_81D5A84: @ 81D5A84 -.byte 0xf6, 0x00, 0xc9, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northeast -.byte 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x91, 0x08, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x06, 0x0a, 0x00, 0x72, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x50 -.byte 0x6b, 0x00, 0xcc, 0x00, 0x7f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81D5B94 -gUnknown_81D5B94: @ 81D5B94 -.byte 0xf6, 0x00, 0xdd, 0x30, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D5C34 -gUnknown_81D5C34: @ 81D5C34 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D5B94 - -.global gUnknown_81D5C40 -gUnknown_81D5C40: @ 81D5C40 -.byte 0xf6, 0x00, 0xec, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x8c, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0xa8, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x48, 0x00, 0x01, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D5D20 -gUnknown_81D5D20: @ 81D5D20 -.byte 0xf6, 0x00, 0xfd, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D7618 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northeast -.byte 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D75E4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D7598 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D7550 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D750C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D7500 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BD58C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D74E8 -closeTextBox -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0x2e, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D74B0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0x2e, 0x03, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D748C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D7470 -pause 0x14 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northeast -.byte 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D744C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D7428 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D740C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D73CC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D738C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D7384 -pause 0x14 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D732C -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D7304 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D72DC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x2e, 0x02, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D72BC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0x91, 0x04, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D725C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D7208 -closeTextBox -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D71DC -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northeast -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D717C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D715C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D7138 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D7108 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D70B8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D7084 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D7054 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D7020 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D6FE8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D6FD0 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southeast -.byte 0x2e, 0x15, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D6F9C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D6F60 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D6F4C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D6F18 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D6EF8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D6EE0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D6EB8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D6E94 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D6E48 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3b, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x10, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D6E28 -.byte 0xe1, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x3b, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd3, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D6E10 -.byte 0xd9, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D6E08 -.byte 0xd9, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D6E04 -.byte 0xf4, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3b, 0x1f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x04, 0x00, 0x20, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D6DBC -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x04, 0x00, 0x20, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D6D6C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D6D14 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D6CF0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81D6CF0 -gUnknown_81D6CF0: @ 81D6CF0 -.string " Please speak with me\n" -.string "again then.\0" -.align 2, 0 - -.global gUnknown_81D6D14 -gUnknown_81D6D14: @ 81D6D14 -.string " I could join your rescue\n" -.string "team if there were room for me in the\n" -.string "{COLOR_1 GREEN}Sky Blue Plains{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_81D6D6C -gUnknown_81D6D6C: @ 81D6D6C -.string " ...But wait! I see that\n" -.string "my Friend Area is full...{WAIT_PRESS}\n" -.string "This is most unfortunate.\0" -.align 2, 0 - -.global gUnknown_81D6DBC -gUnknown_81D6DBC: @ 81D6DBC -.string " I will find my own place\n" -.string "in the {COLOR_1 GREEN}Sky Blue Plains{END_COLOR_TEXT_1}.\n" -.string "Until then...\0" -.align 2, 0 - -.global gUnknown_81D6E04 -gUnknown_81D6E04: @ 81D6E04 -.byte 0x4e, 0x6f, 0x00, 0x00 - -.global gUnknown_81D6E08 -gUnknown_81D6E08: @ 81D6E08 -.string "*Yes\0" -.align 2, 0 - -.global gUnknown_81D6E10 -gUnknown_81D6E10: @ 81D6E10 -.string "Give a nickname to {ARG_NICKNAME_2}?\0" -.align 2, 0 - -.global gUnknown_81D6E28 -gUnknown_81D6E28: @ 81D6E28 -.string "{CENTER_ALIGN}{ARG_NICKNAME_2} joined the rescue team!\0" -.align 2, 0 - -.global gUnknown_81D6E48 -gUnknown_81D6E48: @ 81D6E48 -.string " If you wish to alter the\n" -.string "flag{APOSTROPHE}s design{COMMA} you must tell me{COMMA} please.\0" -.align 2, 0 - -.global gUnknown_81D6E94 -gUnknown_81D6E94: @ 81D6E94 -.string " I could perhaps redesign\n" -.string "the flag?\0" -.align 2, 0 - -.global gUnknown_81D6EB8 -gUnknown_81D6EB8: @ 81D6EB8 -.string " Observe{COMMA} the design of that\n" -.string "flag.\0" -.align 2, 0 - -.global gUnknown_81D6EE0 -gUnknown_81D6EE0: @ 81D6EE0 -.string " Ah{COMMA} how about that?\0" -.align 2, 0 - -.global gUnknown_81D6EF8 -gUnknown_81D6EF8: @ 81D6EF8 -.string " For example...{WAIT_PRESS}\n" -.string "Let me see...\0" -.align 2, 0 - -.global gUnknown_81D6F18 -gUnknown_81D6F18: @ 81D6F18 -.string " One thing I am good at is\n" -.string "drawing and painting.\0" -.align 2, 0 - -.global gUnknown_81D6F4C -gUnknown_81D6F4C: @ 81D6F4C -.string " Yes!\n" -.string "Thank you!\0" -.align 2, 0 - -.global gUnknown_81D6F60 -gUnknown_81D6F60: @ 81D6F60 -.string " You{APOSTROPHE}re on the team now!{WAIT_PRESS}\n" -.string "We expect your best{COMMA} {ARG_NICKNAME_2}!\0" -.align 2, 0 - -.global gUnknown_81D6F9C -gUnknown_81D6F9C: @ 81D6F9C -.string " Welcome to the team!{WAIT_PRESS}\n" -.string "We expect your best{COMMA} {ARG_NICKNAME_2}!\0" -.align 2, 0 - -.global gUnknown_81D6FD0 -gUnknown_81D6FD0: @ 81D6FD0 -.string " But{COMMA} that{APOSTROPHE}s OK.\0" -.align 2, 0 - -.global gUnknown_81D6FE8 -gUnknown_81D6FE8: @ 81D6FE8 -.string " Oh{COMMA} wow...\n" -.string "That{APOSTROPHE}s one pushy way of getting a job.\0" -.align 2, 0 - -.global gUnknown_81D7020 -gUnknown_81D7020: @ 81D7020 -.string " We wish you luck in your new career\n" -.string "as a rescuer.\0" -.align 2, 0 - -.global gUnknown_81D7054 -gUnknown_81D7054: @ 81D7054 -.string " We will inform our elders of your\n" -.string "decision.\0" -.align 2, 0 - -.global gUnknown_81D7084 -gUnknown_81D7084: @ 81D7084 -.string " Is... Is that so?\n" -.string "Then there is nothing we can do.\0" -.align 2, 0 - -.global gUnknown_81D70B8 -gUnknown_81D70B8: @ 81D70B8 -.string " So...\n" -.string "I won{APOSTROPHE}t return to the pack!{WAIT_PRESS}\n" -.string "This is where I will dedicate myself!\0" -.align 2, 0 - -.global gUnknown_81D7108 -gUnknown_81D7108: @ 81D7108 -.string " I will participate in your\n" -.string "rescue activities!\0" -.align 2, 0 - -.global gUnknown_81D7138 -gUnknown_81D7138: @ 81D7138 -.string " I shall join {ARG_NICKNAME_0}{APOSTROPHE}s\n" -.string "rescue team!\0" -.align 2, 0 - -.global gUnknown_81D715C -gUnknown_81D715C: @ 81D715C -.string " ...I know!{WAIT_PRESS}\n" -.string "I have decided!\0" -.align 2, 0 - -.global gUnknown_81D717C -gUnknown_81D717C: @ 81D717C -.string " I have dreams of creating\n" -.string "great art{COMMA} so I have certain standards\n" -.string "for design that I swear by.\0" -.align 2, 0 - -.global gUnknown_81D71DC -gUnknown_81D71DC: @ 81D71DC -.string " I can{APOSTROPHE}t live with anything\n" -.string "so tasteless.\0" -.align 2, 0 - -.global gUnknown_81D7208 -gUnknown_81D7208: @ 81D7208 -.string " They do that by taking the\n" -.string "front paw...{WAIT_PRESS}\n" -.string "and pushing doooooowwnn on the back...\0" -.align 2, 0 - -.global gUnknown_81D725C -gUnknown_81D725C: @ 81D725C -.string " When we reach a certain age{COMMA} they\n" -.string "mark our backs with paw prints to show\n" -.string "we are grown-ups.\0" -.align 2, 0 - -.global gUnknown_81D72BC -gUnknown_81D72BC: @ 81D72BC -.string " It is a custom among us {ARG_POKEMON_2}.\0" -.align 2, 0 - -.global gUnknown_81D72DC -gUnknown_81D72DC: @ 81D72DC -.string " What was that?{WAIT_PRESS}\n" -.string "What grown-up ritual?\0" -.align 2, 0 - -.global gUnknown_81D7304 -gUnknown_81D7304: @ 81D7304 -.string " What is that?{WAIT_PRESS}\n" -.string "This grown-up ritual?\0" -.align 2, 0 - -.global gUnknown_81D732C -gUnknown_81D732C: @ 81D732C -.string " If I have to get that\n" -.string "paw print on my back...{WAIT_PRESS}\n" -.string "I{APOSTROPHE}d rather not become a grown-up!\0" -.align 2, 0 - -.global gUnknown_81D7384 -gUnknown_81D7384: @ 81D7384 -.string " N-no!\0" -.align 2, 0 - -.global gUnknown_81D738C -gUnknown_81D738C: @ 81D738C -.string " Quit fighting this.\n" -.string "Have the paw print applied without a fuss.\0" -.align 2, 0 - -.global gUnknown_81D73CC -gUnknown_81D73CC: @ 81D73CC -.string " Now{COMMA} come with us.{WAIT_PRESS}\n" -.string "The grown-up ritual is ready for you.\0" -.align 2, 0 - -.global gUnknown_81D740C -gUnknown_81D740C: @ 81D740C -.string " They{APOSTROPHE}re...{WAIT_PRESS}\n" -.string "My friends.\0" -.align 2, 0 - -.global gUnknown_81D7428 -gUnknown_81D7428: @ 81D7428 -.string " Hey{COMMA} {ARG_NICKNAME_2}.{WAIT_PRESS}\n" -.string "What do they want?\0" -.align 2, 0 - -.global gUnknown_81D744C -gUnknown_81D744C: @ 81D744C -.string " Hey{COMMA} {ARG_NICKNAME_2}.{WAIT_PRESS}\n" -.string "Who are those guys?\0" -.align 2, 0 - -.global gUnknown_81D7470 -gUnknown_81D7470: @ 81D7470 -.string " More {ARG_NICKNAME_2}?{WAIT_PRESS}\n" -.string "Two of them...\0" -.align 2, 0 - -.global gUnknown_81D748C -gUnknown_81D748C: @ 81D748C -.string " More {ARG_NICKNAME_2}?{WAIT_PRESS}\n" -.string "Two of them{COMMA} even...\0" -.align 2, 0 - -.global gUnknown_81D74B0 -gUnknown_81D74B0: @ 81D74B0 -.string " Yeah{COMMA} I see him.\n" -.string "We{APOSTROPHE}ve got to get him back quick!\0" -.align 2, 0 - -.global gUnknown_81D74E8 -gUnknown_81D74E8: @ 81D74E8 -.string " Look{COMMA} there he is!\0" -.align 2, 0 - -.global gUnknown_81D7500 -gUnknown_81D7500: @ 81D7500 -.string " That is...\0" -.align 2, 0 - -.global gUnknown_81D750C -gUnknown_81D750C: @ 81D750C -.string " Your letter said something\n" -.string "about not wanting to become an adult...\0" -.align 2, 0 - -.global gUnknown_81D7550 -gUnknown_81D7550: @ 81D7550 -.string " No problem{COMMA} {ARG_NICKNAME_2}.{WAIT_PRESS}\n" -.string "But what made you run away in the first\n" -.string "place?\0" -.align 2, 0 - -.global gUnknown_81D7598 -gUnknown_81D7598: @ 81D7598 -.string " Your letter said something\n" -.string "about not wanting to be a grown-up{COMMA} but...\0" -.align 2, 0 - -.global gUnknown_81D75E4 -gUnknown_81D75E4: @ 81D75E4 -.string " That{APOSTROPHE}s cool{COMMA} {ARG_NICKNAME_2}.{WAIT_PRESS}\n" -.string "But why{APOSTROPHE}d you run away?\0" -.align 2, 0 - -.global gUnknown_81D7618 -gUnknown_81D7618: @ 81D7618 -.string " Thank you so much.\n" -.string "You saved me from great peril.\0" -.align 2, 0 - -.global gUnknown_81D764C -gUnknown_81D764C: @ 81D764C -.byte 0xf6, 0x00, 0x0d, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northwest -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northwest -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northwest -pause 0x14 -rotate 0x04, CCW, south -pause 0x0a -rotate 0x04, CW, northwest -pause 0x14 -rotate 0x04, CCW, south -.byte 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe2, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southwest -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southwest -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northwest -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -rotate 0x04, CCW, south -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, west -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southwest -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, north -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x90, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northwest -closeThread - -.global gUnknown_81D797C -gUnknown_81D797C: @ 81D797C -.byte 0xf6, 0x00, 0x43, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southeast -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe2, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6a, 0x00, 0x00, 0x02, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x02, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, north -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0x62, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southeast -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -rotate 0x08, CW, southwest -pause 0x1e -rotate 0x08, CCW, southeast -pause 0x1e -rotate 0x08, CW, south -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe2, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southwest -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southeast -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, north -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -rotate 0x04, CCW, northwest -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x02, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D7DCC -gUnknown_81D7DCC: @ 81D7DCC -.byte 0xf6, 0x00, 0x8b, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xe0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southeast -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xa8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northeast -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, north -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -.byte 0x62, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -setAnimation 5 -pause 0x1e -setAnimation 2 -.byte 0x62, 0x00, 0x00, 0x01, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -rotate 0x04, CCW, north -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northeast -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D7FBC -gUnknown_81D7FBC: @ 81D7FBC -.byte 0xf6, 0x00, 0xad, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northwest -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x98, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northwest -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, north -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, west -pause 0x1e -.byte 0x62, 0x00, 0x00, 0x01, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 5 -pause 0x23 -setAnimation 2 -.byte 0x62, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -rotate 0x04, CW, north -pause 0x0a -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northwest -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D81EC -gUnknown_81D81EC: @ 81D81EC -.byte 0xf6, 0x00, 0xd3, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81D825C -gUnknown_81D825C: @ 81D825C -.byte 0xf6, 0x00, 0xdd, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x51, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D829C -gUnknown_81D829C: @ 81D829C -.byte 0xf6, 0x00, 0xe4, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -setFlag 0x06 -.byte 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D8584 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D8554 -closeTextBox -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D852C -.byte 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D84E8 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D84B4 -setFlag 0x06 -.byte 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D846C -closeTextBox -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xba, 0x01, 0x05, 0x00, 0x21, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x05, 0x00, 0x21, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D846C -gUnknown_81D846C: @ 81D846C -.string " But that Lombre--he lives\n" -.string "in water! How very pathetic!\n" -.string "Pshehehehehe!\0" -.align 2, 0 - -.global gUnknown_81D84B4 -gUnknown_81D84B4: @ 81D84B4 -.string " I have heard that Lombre\n" -.string "almost drowned at sea!\0" -.align 2, 0 - -.global gUnknown_81D84E8 -gUnknown_81D84E8: @ 81D84E8 -.string " You see{COMMA} I have heard about\n" -.string "Lombre{APOSTROPHE}s tale.\n" -.string "It is too funny.\0" -.align 2, 0 - -.global gUnknown_81D852C -gUnknown_81D852C: @ 81D852C -.string " Oh{COMMA} long time no see.\n" -.string "You are well?\0" -.align 2, 0 - -.global gUnknown_81D8554 -gUnknown_81D8554: @ 81D8554 -.string " That Lombre... He amuses\n" -.string "me so!\n" -.string "Pshehehehehe!\0" -.align 2, 0 - -.global gUnknown_81D8584 -gUnknown_81D8584: @ 81D8584 -.string " Pshehehehehe!\0" -.align 2, 0 - -.global gUnknown_81D8594 -gUnknown_81D8594: @ 81D8594 -.byte 0xf6, 0x00, 0x05, 0x33, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D86B4 -gUnknown_81D86B4: @ 81D86B4 -.byte 0xf6, 0x00, 0x1a, 0x33, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D87B4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D87B4 -gUnknown_81D87B4: @ 81D87B4 -.string "{CENTER_ALIGN}The next morning...\0" -.align 2, 0 - -.global gUnknown_81D87CC -gUnknown_81D87CC: @ 81D87CC -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D86B4 - -.global gUnknown_81D87D8 -gUnknown_81D87D8: @ 81D87D8 -.byte 0xf6, 0x00, 0x2f, 0x33 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9B7C -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9B5C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9B30 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9B30 -setFlag 0x06 -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9AF4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9AB4 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9A74 -closeTextBox -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x93, 0x04, 0x0a, 0x00 -.byte 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0b, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9A68 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9A60 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9A2C -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D99E0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D99C8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D99B8 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D999C -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9960 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9950 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D991C -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9900 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D98C8 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9898 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D988C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe5, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9860 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x00, 0x01, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D984C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9818 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D97E0 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D978C -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D977C -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9770 -closeTextBox -.byte 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x93, 0x04, 0x0a, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9740 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x0d, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D971C -.byte 0x2e, 0x0d, 0x03, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D96E4 -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D96B0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9670 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9634 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9620 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D95C8 -.byte 0x2e, 0x15, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9598 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9540 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9508 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D94E0 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9490 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D945C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9430 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D93FC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D93E4 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D93AC -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9374 -closeTextBox -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x47, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D9338 -.byte 0xe1, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81D9338 -gUnknown_81D9338: @ 81D9338 -.string "{CENTER_ALIGN}The rescue team gained\n" -.string "{CENTER_ALIGN}access to the {COLOR_1 YELLOW_4}Meteor Cave{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_81D9374 -gUnknown_81D9374: @ 81D9374 -.string " {ARG_NICKNAME_0}.\n" -.string "Want to go investigate?{WAIT_PRESS}\n" -.string "The {COLOR_1 YELLOW_4}Meteor Cave{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_81D93AC -gUnknown_81D93AC: @ 81D93AC -.string " {ARG_NICKNAME_0}.\n" -.string "We should go investigate.{WAIT_PRESS}\n" -.string "The {COLOR_1 YELLOW_4}Meteor Cave{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_81D93E4 -gUnknown_81D93E4: @ 81D93E4 -.string " Perhaps that is so...\0" -.align 2, 0 - -.global gUnknown_81D93FC -gUnknown_81D93FC: @ 81D93FC -.string " You mean...{WAIT_PRESS}\n" -.string "They came from that falling star?\0" -.align 2, 0 - -.global gUnknown_81D9430 -gUnknown_81D9430: @ 81D9430 -.string " Perhaps...\n" -.string "Of this world they may not be.\0" -.align 2, 0 - -.global gUnknown_81D945C -gUnknown_81D945C: @ 81D945C -.string " If there were things that\n" -.string "survived the crash...\0" -.align 2, 0 - -.global gUnknown_81D9490 -gUnknown_81D9490: @ 81D9490 -.string " However...{WAIT_PRESS}\n" -.string "That cavern. The collision that caused \n" -.string "it had to be enormous.\0" -.align 2, 0 - -.global gUnknown_81D94E0 -gUnknown_81D94E0: @ 81D94E0 -.string " ...I draw a blank.{WAIT_PRESS}\n" -.string "I do not know...\0" -.align 2, 0 - -.global gUnknown_81D9508 -gUnknown_81D9508: @ 81D9508 -.string " {ARG_NICKNAME_2}{COMMA} do you have\n" -.string "any idea what are in that place?\0" -.align 2, 0 - -.global gUnknown_81D9540 -gUnknown_81D9540: @ 81D9540 -.string " There were downright\n" -.string "bizarre things in there that I{APOSTROPHE}m not\n" -.string "sure were even Pokémon.\0" -.align 2, 0 - -.global gUnknown_81D9598 -gUnknown_81D9598: @ 81D9598 -.string " I{APOSTROPHE}ve never seen anything\n" -.string "like it before...\0" -.align 2, 0 - -.global gUnknown_81D95C8 -gUnknown_81D95C8: @ 81D95C8 -.string " Hey{COMMA} you{COMMA} {ARG_NICKNAME_1}.{WAIT_PRESS}\n" -.string "If you were to see that dungeon{COMMA} you{APOSTROPHE}d be\n" -.string "intimidated too!\0" -.align 2, 0 - -.global gUnknown_81D9620 -gUnknown_81D9620: @ 81D9620 -.string " What{APOSTROPHE}s that?!\0" -.align 2, 0 - -.global gUnknown_81D9634 -gUnknown_81D9634: @ 81D9634 -.string " Hahaha!\n" -.string "Surprise{COMMA} surprise!\n" -.string "{ARG_NICKNAME_3}{APOSTROPHE}s kind of cowardly!\0" -.align 2, 0 - -.global gUnknown_81D9670 -gUnknown_81D9670: @ 81D9670 -.string " Ahaha!\n" -.string "Who would{APOSTROPHE}ve thought it?\n" -.string "{ARG_NICKNAME_3}{APOSTROPHE}s kind of cowardly!\0" -.align 2, 0 - -.global gUnknown_81D96B0 -gUnknown_81D96B0: @ 81D96B0 -.string " It freaked me out.\n" -.string "I couldn{APOSTROPHE}t stay there long...\0" -.align 2, 0 - -.global gUnknown_81D96E4 -gUnknown_81D96E4: @ 81D96E4 -.string " But the place was crawling\n" -.string "with these weird things...\0" -.align 2, 0 - -.global gUnknown_81D971C -gUnknown_81D971C: @ 81D971C -.string " Uh{COMMA} yeah...{WAIT_PRESS}\n" -.string "Just a little...\0" -.align 2, 0 - -.global gUnknown_81D9740 -gUnknown_81D9740: @ 81D9740 -.string " Did you explore inside the\n" -.string "{COLOR_1 YELLOW_4}Meteor Cave{END_COLOR_TEXT_1}?\0" -.align 2, 0 - -.global gUnknown_81D9770 -gUnknown_81D9770: @ 81D9770 -.string " Um{COMMA} {ARG_NICKNAME_3}.\0" -.align 2, 0 - -.global gUnknown_81D977C -gUnknown_81D977C: @ 81D977C -.string " Say{COMMA} {ARG_NICKNAME_3}.\0" -.align 2, 0 - -.global gUnknown_81D978C -gUnknown_81D978C: @ 81D978C -.string " One tumbled to earth.\n" -.string "It fell into a mountain{COMMA} and made the\n" -.string "cavern you speak of.\0" -.align 2, 0 - -.global gUnknown_81D97E0 -gUnknown_81D97E0: @ 81D97E0 -.string " Its pieces broken{COMMA} they\n" -.string "scattered across the skies.\0" -.align 2, 0 - -.global gUnknown_81D9818 -gUnknown_81D9818: @ 81D9818 -.string " It was when Rayquaza\n" -.string "destroyed the falling star...\0" -.align 2, 0 - -.global gUnknown_81D984C -gUnknown_81D984C: @ 81D984C -.string " {COLOR_1 YELLOW_4}Meteor Cave{END_COLOR_TEXT_1}?\0" -.align 2, 0 - -.global gUnknown_81D9860 -gUnknown_81D9860: @ 81D9860 -.string " I shall call it...{WAIT_PRESS}\n" -.string "The {COLOR_1 YELLOW_4}Meteor Cave{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_81D988C -gUnknown_81D988C: @ 81D988C -.string " Kwaaaah!\0" -.align 2, 0 - -.global gUnknown_81D9898 -gUnknown_81D9898: @ 81D9898 -.string " So{COMMA} I figured {ARG_NICKNAME_2}\n" -.string "would know something...\0" -.align 2, 0 - -.global gUnknown_81D98C8 -gUnknown_81D98C8: @ 81D98C8 -.string " There wasn{APOSTROPHE}t anything like\n" -.string "that there before{COMMA} hey?\0" -.align 2, 0 - -.global gUnknown_81D9900 -gUnknown_81D9900: @ 81D9900 -.string " There{APOSTROPHE}s a gigantic cave!\0" -.align 2, 0 - -.global gUnknown_81D991C -gUnknown_81D991C: @ 81D991C -.string " Well{COMMA} to the northeast of\n" -.string "{COLOR_1 YELLOW_4}Mt. Thunder{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_81D9950 -gUnknown_81D9950: @ 81D9950 -.string " What is it?\0" -.align 2, 0 - -.global gUnknown_81D9960 -gUnknown_81D9960: @ 81D9960 -.string " Didn{APOSTROPHE}t know you{APOSTROPHE}d be here.\n" -.string "You had me looking{COMMA} {ARG_NICKNAME_2}.\0" -.align 2, 0 - -.global gUnknown_81D999C -gUnknown_81D999C: @ 81D999C -.string " Oh{COMMA} hey!\n" -.string "There you are!\0" -.align 2, 0 - -.global gUnknown_81D99B8 -gUnknown_81D99B8: @ 81D99B8 -.string " Hey{COMMA} {ARG_NICKNAME_2}!\0" -.align 2, 0 - -.global gUnknown_81D99C8 -gUnknown_81D99C8: @ 81D99C8 -.string " Oh...\n" -.string "Is that all...\0" -.align 2, 0 - -.global gUnknown_81D99E0 -gUnknown_81D99E0: @ 81D99E0 -.string " I come here only because\n" -.string "it is on the way...\n" -.string "This is not very important.\0" -.align 2, 0 - -.global gUnknown_81D9A2C -gUnknown_81D9A2C: @ 81D9A2C -.string " Shopping in Pokémon\n" -.string "Square is what I came to do.\0" -.align 2, 0 - -.global gUnknown_81D9A60 -gUnknown_81D9A60: @ 81D9A60 -.string " Wrong!\0" -.align 2, 0 - -.global gUnknown_81D9A68 -gUnknown_81D9A68: @ 81D9A68 -.string " Kwaaaaaah!\0" -.align 2, 0 - -.global gUnknown_81D9A74 -gUnknown_81D9A74: @ 81D9A74 -.string " {ARG_NICKNAME_2}{COMMA} you must be\n" -.string "intrigued by our achievements!\n" -.string "Hahahaha!\0" -.align 2, 0 - -.global gUnknown_81D9AB4 -gUnknown_81D9AB4: @ 81D9AB4 -.string " {ARG_NICKNAME_2}{COMMA} you must be\n" -.string "interested in our achievements!\n" -.string "Hahahaha!\0" -.align 2, 0 - -.global gUnknown_81D9AF4 -gUnknown_81D9AF4: @ 81D9AF4 -.string " {ARG_NICKNAME_2}{COMMA} you must be\n" -.string "interested in our adventures!\n" -.string "Hahahaha!\0" -.align 2, 0 - -.global gUnknown_81D9B30 -gUnknown_81D9B30: @ 81D9B30 -.string " After everything that\n" -.string "we went through...\0" -.align 2, 0 - -.global gUnknown_81D9B5C -gUnknown_81D9B5C: @ 81D9B5C -.string " After all that{APOSTROPHE}s happened...\0" -.align 2, 0 - -.global gUnknown_81D9B7C -gUnknown_81D9B7C: @ 81D9B7C -.string " Hi{COMMA} {ARG_NICKNAME_2}{COMMA} long time!{WAIT_PRESS}\n" -.string "You{APOSTROPHE}re here to visit us?\0" -.align 2, 0 - -.global gUnknown_81D9BB4 -gUnknown_81D9BB4: @ 81D9BB4 -.byte 0xf6, 0x00, 0xfa, 0x33, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x61, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81D9E14 -gUnknown_81D9E14: @ 81D9E14 -.byte 0xf6, 0x00, 0x23, 0x34, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xda, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 9 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xda, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DA054 -gUnknown_81DA054: @ 81DA054 -.byte 0xf6, 0x00, 0x4a, 0x34, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x84, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 4 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DA204 -gUnknown_81DA204: @ 81DA204 -.byte 0xf6, 0x00, 0x68, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DA284 -gUnknown_81DA284: @ 81DA284 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DA204 - -.global gUnknown_81DA290 -gUnknown_81DA290: @ 81DA290 -.byte 0xf6, 0x00, 0x75, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DA310 -gUnknown_81DA310: @ 81DA310 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DA290 - -.global gUnknown_81DA31C -gUnknown_81DA31C: @ 81DA31C -.byte 0xf6, 0x00, 0x82, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x02, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x00, 0x00, 0x00, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x08, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x02, 0x01, 0x00, 0x39, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DA3BC -gUnknown_81DA3BC: @ 81DA3BC -.byte 0xf6, 0x00, 0x8f, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x97, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DA87C -.byte 0x6a, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -closeTextBox -.byte 0x2e, 0x02, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DA868 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DA844 -closeTextBox -rotate 0x04, CCW, southeast -.byte 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DA824 -pause 0x14 -.byte 0x4d, 0x00, 0x00, 0x00, 0xfc, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0x0b, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northeast -rotate 0x04, CW, southeast -.byte 0xb4, 0x02, 0x02, 0x00, 0x39, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -pause 0x1e -setAnimation 2 -pause 0x1e -.byte 0x6a, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, west -.byte 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x07, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DA7F8 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DA7C4 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DA780 -closeTextBox -pause 0x1e -rotate 0x04, CCW, south -.byte 0x2e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DA754 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DA71C -closeTextBox -pause 0x0a -.byte 0x6a, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x6a, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81DA71C -gUnknown_81DA71C: @ 81DA71C -.string "It{APOSTROPHE}s still early.\n" -.string "I{APOSTROPHE}ll catch a little more sleep...\0" -.align 2, 0 - -.global gUnknown_81DA754 -gUnknown_81DA754: @ 81DA754 -.string "............{WAIT_PRESS}\n" -.string "Yawwwwwn...\n" -.string "Still sleepy...\0" -.align 2, 0 - -.global gUnknown_81DA780 -gUnknown_81DA780: @ 81DA780 -.string "It seemed to be going...\n" -.string "Toward the mountain range in the north?\0" -.align 2, 0 - -.global gUnknown_81DA7C4 -gUnknown_81DA7C4: @ 81DA7C4 -.string "Something huge flew by at an incredible\n" -.string "speed...\0" -.align 2, 0 - -.global gUnknown_81DA7F8 -gUnknown_81DA7F8: @ 81DA7F8 -.string "Wh-what was that...?{WAIT_PRESS}\n" -.string "What just happened?\0" -.align 2, 0 - -.global gUnknown_81DA824 -gUnknown_81DA824: @ 81DA824 -.string "Whoooooooooooooooooooooooshhh!\0" -.align 2, 0 - -.global gUnknown_81DA844 -gUnknown_81DA844: @ 81DA844 -.string "...Something{APOSTROPHE}s coming closer?!\0" -.align 2, 0 - -.global gUnknown_81DA868 -gUnknown_81DA868: @ 81DA868 -.string "...This sound...\0" -.align 2, 0 - -.global gUnknown_81DA87C -gUnknown_81DA87C: @ 81DA87C -.string "Whooooooosh!\0" -.align 2, 0 - -.global gUnknown_81DA88C -gUnknown_81DA88C: @ 81DA88C -.byte 0xf6, 0x00, 0xc9, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x14, 0x88, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0x6a, 0x00, 0x00, 0x14, 0x88, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DA91C -gUnknown_81DA91C: @ 81DA91C -.byte 0xf6, 0x00, 0xd5, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DA9BC -gUnknown_81DA9BC: @ 81DA9BC -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DA91C - -.global gUnknown_81DA9C8 -gUnknown_81DA9C8: @ 81DA9C8 -.byte 0xf6, 0x00, 0xe4, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x03, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DB1D8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x0e, 0x02, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DB198 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DB168 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x2e, 0x15, 0x02, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DB12C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DB0FC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DB0C4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DB090 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DB054 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x2e, 0x15, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DB00C -.byte 0x2e, 0x15, 0x02, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DAFC8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x2c, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x91, 0x08, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DAF78 -.byte 0x2e, 0x15, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DAF48 -.byte 0x2e, 0x15, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DAF14 -.byte 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DAEBC -.byte 0x2e, 0x15, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DAE88 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DAE88 -gUnknown_81DAE88: @ 81DAE88 -.string " For me{COMMA} it was impossible.\n" -.string "But you must try〜♪\0" -.align 2, 0 - -.global gUnknown_81DAEBC -gUnknown_81DAEBC: @ 81DAEBC -.string " However...{WAIT_PRESS}\n" -.string "If you lose that {COLOR_1 GREEN_2}Wish Stone{END_COLOR_TEXT_1} on\n" -.string "the way{COMMA} the wish cannot come true.\0" -.align 2, 0 - -.global gUnknown_81DAF14 -gUnknown_81DAF14: @ 81DAF14 -.string " You see〜♪\n" -.string "A rich reward{COMMA} won{APOSTROPHE}t you agree?\0" -.align 2, 0 - -.global gUnknown_81DAF48 -gUnknown_81DAF48: @ 81DAF48 -.string " Wonder of wonders!{WAIT_PRESS}\n" -.string "A wish--it comes true!\0" -.align 2, 0 - -.global gUnknown_81DAF78 -gUnknown_81DAF78: @ 81DAF78 -.string " They say if you take that\n" -.string "stone to the {COLOR_1 YELLOW_4}Wish Cave{END_COLOR_TEXT_1}...\n" -.string "To its very depths...\0" -.align 2, 0 - -.global gUnknown_81DAFC8 -gUnknown_81DAFC8: @ 81DAFC8 -.string " But I will give it to you.{WAIT_PRESS}\n" -.string "Here! Your reward for my rescue〜♪\0" -.align 2, 0 - -.global gUnknown_81DB00C -gUnknown_81DB00C: @ 81DB00C -.string " At first{COMMA} I made an SOS Call\n" -.string "because I did not want to lose this...\0" -.align 2, 0 - -.global gUnknown_81DB054 -gUnknown_81DB054: @ 81DB054 -.string " Kiiih!\n" -.string "I never want to go again!\n" -.string "Such a terrible place!\0" -.align 2, 0 - -.global gUnknown_81DB090 -gUnknown_81DB090: @ 81DB090 -.string " But it was very hard in\n" -.string "there--most terribly so!\0" -.align 2, 0 - -.global gUnknown_81DB0C4 -gUnknown_81DB0C4: @ 81DB0C4 -.string " They say it makes a wish\n" -.string "come true. So{COMMA} I went...\0" -.align 2, 0 - -.global gUnknown_81DB0FC -gUnknown_81DB0FC: @ 81DB0FC -.string " ...But that dungeon...\n" -.string "What is it about it?\0" -.align 2, 0 - -.global gUnknown_81DB12C -gUnknown_81DB12C: @ 81DB12C -.string " Ow{COMMA} ow{COMMA} ow...{WAIT_PRESS}\n" -.string "My body--it hurts all over even now...\0" -.align 2, 0 - -.global gUnknown_81DB168 -gUnknown_81DB168: @ 81DB168 -.string " Thank you for saving me.{WAIT_PRESS}\n" -.string "I appreciate it〜♪\0" -.align 2, 0 - -.global gUnknown_81DB198 -gUnknown_81DB198: @ 81DB198 -.string " I{APOSTROPHE}m so sorry{COMMA} {ARG_NICKNAME_3}.{WAIT_PRESS}\n" -.string "That dungeon--it was too much for me.\0" -.align 2, 0 - -.global gUnknown_81DB1D8 -gUnknown_81DB1D8: @ 81DB1D8 -.string " {ARG_NICKNAME_2}!{WAIT_PRESS}\n" -.string "You{APOSTROPHE}re safe! Yesssss!\0" -.align 2, 0 - -.global gUnknown_81DB1F8 -gUnknown_81DB1F8: @ 81DB1F8 -.byte 0xf6, 0x00, 0x37, 0x35 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x02, 0x00 -.byte 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x02, 0x00 -.byte 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xe0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DB3D8 -gUnknown_81DB3D8: @ 81DB3D8 -.byte 0xf6, 0x00, 0x58, 0x35 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DB468 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DAF48 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DAF14 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DAEBC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DAE88 -.byte 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DB468 -gUnknown_81DB468: @ 81DB468 -.string " They say if you take that\n" -.string "Wish Stone to the Wish Cave...\n" -.string "To its very depths...\0" -.align 2, 0 - -.global gUnknown_81DB4B8 -gUnknown_81DB4B8: @ 81DB4B8 -.byte 0xf6, 0x00, 0x65, 0x35 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DB5E8 -gUnknown_81DB5E8: @ 81DB5E8 -.byte 0xf6, 0x00, 0x7b, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DB684 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DB648 -.byte 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DB648 -gUnknown_81DB648: @ 81DB648 -.string " Well{COMMA} just give it a try\n" -.string "and make that wish come true!\0" -.align 2, 0 - -.global gUnknown_81DB684 -gUnknown_81DB684: @ 81DB684 -.string " I give up too.\n" -.string "I{APOSTROPHE}ll live with my weak chin.\0" -.align 2, 0 - -.global gUnknown_81DB6B4 -gUnknown_81DB6B4: @ 81DB6B4 -.byte 0xf6, 0x00, 0x85, 0x35, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DB734 -gUnknown_81DB734: @ 81DB734 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DB6B4 - -.global gUnknown_81DB740 -gUnknown_81DB740: @ 81DB740 -.byte 0xf6, 0x00, 0x92, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DBA60 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DBA28 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DBA00 -.byte 0x49, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DB9E0 -.byte 0xe1, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3b, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DB9D4 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DB9A8 -.byte 0x49, 0x00, 0x00, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3b, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd3, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D6E10 -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DB9A0 -.byte 0xd9, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9DC8 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x2c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DB9A0 -gUnknown_81DB9A0: @ 81DB9A0 -.string "*Yes.\0" -.align 2, 0 - -.global gUnknown_81DB9A8 -gUnknown_81DB9A8: @ 81DB9A8 -.string "{CENTER_ALIGN}The Friend Area\n" -.string "{CENTER_ALIGN}{COLOR_1 UNK_COLOR_5}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1} was obtained!\0" -.align 2, 0 - -.global gUnknown_81DB9D4 -gUnknown_81DB9D4: @ 81DB9D4 -.string "{CENTER_ALIGN}And more!\0" -.align 2, 0 - -.global gUnknown_81DB9E0 -gUnknown_81DB9E0: @ 81DB9E0 -.string "{CENTER_ALIGN}{ARG_NICKNAME_2} joined\n" -.string "{CENTER_ALIGN}the rescue team!\0" -.align 2, 0 - -.global gUnknown_81DBA00 -gUnknown_81DBA00: @ 81DBA00 -.string "{CENTER_ALIGN}The latest recruit to\n" -.string "{CENTER_ALIGN}Team {COLOR_1 CYAN}{ARG_TEAM_NAME}{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_81DBA28 -gUnknown_81DBA28: @ 81DBA28 -.string " From now on{COMMA} {ARG_NICKNAME_2}\n" -.string "is our friend!{WAIT_PRESS}\n" -.string "Glad to meet you!\0" -.align 2, 0 - -.global gUnknown_81DBA60 -gUnknown_81DBA60: @ 81DBA60 -.string " {ARG_NICKNAME_2} is our newest\n" -.string "friend!{WAIT_PRESS}\n" -.string "Glad to have you with us!\0" -.align 2, 0 - -.global gUnknown_81DBA98 -gUnknown_81DBA98: @ 81DBA98 -.byte 0xf6, 0x00, 0xbd, 0x35 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81DBAD8 -gUnknown_81DBAD8: @ 81DBAD8 -.byte 0xf6, 0x00, 0xc4, 0x35 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81DBB18 -gUnknown_81DBB18: @ 81DBB18 -.byte 0xf6, 0x00, 0xcb, 0x35 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x57, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DBC08 -gUnknown_81DBC08: @ 81DBC08 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DBB18 - -.global gUnknown_81DBC14 -gUnknown_81DBC14: @ 81DBC14 -.byte 0xf6, 0x00, 0xdf, 0x35, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC404 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC3BC -.byte 0x2e, 0x15, 0x02, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC378 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC340 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC318 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC2C8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC2A0 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC258 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC218 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBBC -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9DC8 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC1EC -closeTextBox -.byte 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x43, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC1C8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC194 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC160 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x0c, 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC120 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC258 -.byte 0xd5, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC0E0 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBBC -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9DC8 -.byte 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC0B0 -.byte 0xe1, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC07C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC038 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DBFF4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DBFF4 -gUnknown_81DBFF4: @ 81DBFF4 -.string " I{APOSTROPHE}ll only tag along when you\n" -.string "go off to {COLOR_1 YELLOW_4}Mt. Freeze{END_COLOR_TEXT_1}. Keke!\0" -.align 2, 0 - -.global gUnknown_81DC038 -gUnknown_81DC038: @ 81DC038 -.string " I{APOSTROPHE}m not about to tag along\n" -.string "if you{APOSTROPHE}re going to other dungeons.\0" -.align 2, 0 - -.global gUnknown_81DC07C -gUnknown_81DC07C: @ 81DC07C -.string " The only place I want to go\n" -.string "is {COLOR_1 YELLOW_4}Mt. Freeze{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_81DC0B0 -gUnknown_81DC0B0: @ 81DC0B0 -.string "{CENTER_ALIGN}{ARG_NICKNAME_2} can now tag\n" -.string "{CENTER_ALIGN}along with the rescue team!\0" -.align 2, 0 - -.global gUnknown_81DC0E0 -gUnknown_81DC0E0: @ 81DC0E0 -.string " That{APOSTROPHE}s why I{APOSTROPHE}m asking you.{WAIT_PRESS}\n" -.string "Take me up {COLOR_1 YELLOW_4}Mt. Freeze{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_81DC120 -gUnknown_81DC120: @ 81DC120 -.string " ............{WAIT_PRESS}\n" -.string "I{APOSTROPHE}d like to say that{COMMA} but I need your help.\0" -.align 2, 0 - -.global gUnknown_81DC160 -gUnknown_81DC160: @ 81DC160 -.string " Who needs your help?\n" -.string "I{APOSTROPHE}ll be seeing you around!\0" -.align 2, 0 - -.global gUnknown_81DC194 -gUnknown_81DC194: @ 81DC194 -.string " I{APOSTROPHE}m the fool here for even\n" -.string "believing in you lot.\0" -.align 2, 0 - -.global gUnknown_81DC1C8 -gUnknown_81DC1C8: @ 81DC1C8 -.string " Keh!\n" -.string "Yeah{COMMA} I saw that coming!\0" -.align 2, 0 - -.global gUnknown_81DC1EC -gUnknown_81DC1EC: @ 81DC1EC -.string " Keke! That{APOSTROPHE}s settled!\n" -.string "You have my trust!\0" -.align 2, 0 - -.global gUnknown_81DC218 -gUnknown_81DC218: @ 81DC218 -.string " That{APOSTROPHE}s why I{APOSTROPHE}m asking you.{WAIT_PRESS}\n" -.string "Take me up {COLOR_1 YELLOW_4}Mt. Freeze{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_81DC258 -gUnknown_81DC258: @ 81DC258 -.string " I{APOSTROPHE}ve got to see Ninetales.\n" -.string "I{APOSTROPHE}m prepared to do whatever it takes.\0" -.align 2, 0 - -.global gUnknown_81DC2A0 -gUnknown_81DC2A0: @ 81DC2A0 -.string " Ninetales is up on\n" -.string "{COLOR_1 YELLOW_4}Mt. Freeze{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_81DC2C8 -gUnknown_81DC2C8: @ 81DC2C8 -.string " I tried going up over and\n" -.string "over{COMMA} but...{WAIT_PRESS} Keh...\n" -.string "It{APOSTROPHE}s steep and harsh...\0" -.align 2, 0 - -.global gUnknown_81DC318 -gUnknown_81DC318: @ 81DC318 -.string " Can you take me up\n" -.string "{COLOR_1 YELLOW_4}Mt. Freeze{END_COLOR_TEXT_1}?\0" -.align 2, 0 - -.global gUnknown_81DC340 -gUnknown_81DC340: @ 81DC340 -.string " It irks me to say this{COMMA} but...{WAIT_PRESS}\n" -.string "I need your help.\0" -.align 2, 0 - -.global gUnknown_81DC378 -gUnknown_81DC378: @ 81DC378 -.string " ...Tchah!{WAIT_PRESS}\n" -.string "But that{APOSTROPHE}s not what I came here to say.\n" -.string "Not today.\0" -.align 2, 0 - -.global gUnknown_81DC3BC -gUnknown_81DC3BC: @ 81DC3BC -.string " Like always{COMMA} slow to rise{COMMA}\n" -.string "aren{APOSTROPHE}t you{COMMA} Team {COLOR_1 CYAN}{ARG_TEAM_NAME}{END_COLOR_TEXT_1}! Kekeke!\0" -.align 2, 0 - -.global gUnknown_81DC404 -gUnknown_81DC404: @ 81DC404 -.string " Kekeh!\n" -.string "Late riser!\0" -.align 2, 0 - -.global gUnknown_81DC418 -gUnknown_81DC418: @ 81DC418 -.byte 0xf6, 0x00, 0x23, 0x36 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81DC458 -gUnknown_81DC458: @ 81DC458 -.byte 0xf6, 0x00, 0x2a, 0x36 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81DC4D8 -gUnknown_81DC4D8: @ 81DC4D8 -.byte 0xf6, 0x00, 0x35, 0x36 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x30, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x06, shortestDir, north -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x18, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DC588 -gUnknown_81DC588: @ 81DC588 -.byte 0xf6, 0x00, 0x43, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC07C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC038 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DBFF4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DC618 -gUnknown_81DC618: @ 81DC618 -.byte 0xf6, 0x00, 0x4f, 0x36 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DC6B8 -gUnknown_81DC6B8: @ 81DC6B8 -.byte 0x90, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC618 - -.global gUnknown_81DC6C4 -gUnknown_81DC6C4: @ 81DC6C4 -.byte 0xf6, 0x00, 0x5e, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x0f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC80C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC7DC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC784 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DC784 -gUnknown_81DC784: @ 81DC784 -.string " That sounds like another\n" -.string "challenging place{COMMA} so I{APOSTROPHE}ll need your\n" -.string "help still! Keke!\0" -.align 2, 0 - -.global gUnknown_81DC7DC -gUnknown_81DC7DC: @ 81DC7DC -.string " Next{COMMA} we go to that\n" -.string "{COLOR_1 YELLOW_4}Murky Cave{END_COLOR_TEXT_1} place...\0" -.align 2, 0 - -.global gUnknown_81DC80C -gUnknown_81DC80C: @ 81DC80C -.string " Keke!\n" -.string "You did good today.\0" -.align 2, 0 - -.global gUnknown_81DC828 -gUnknown_81DC828: @ 81DC828 -.byte 0xf6, 0x00, 0x6e, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DC878 -gUnknown_81DC878: @ 81DC878 -.byte 0xf6, 0x00, 0x76, 0x36 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC908 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DAF48 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DAF14 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DAEBC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DAE88 -.byte 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DC908 -gUnknown_81DC908: @ 81DC908 -.string " They say{COMMA} if you take that\n" -.string "Wish Stone to the Wish Cave...\n" -.string "To its very depths...\0" -.align 2, 0 - -.global gUnknown_81DC95C -gUnknown_81DC95C: @ 81DC95C -.byte 0xf6, 0x00, 0x83, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DCA3C -gUnknown_81DCA3C: @ 81DCA3C -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC95C - -.global gUnknown_81DCA48 -gUnknown_81DCA48: @ 81DCA48 -.byte 0xf6, 0x00, 0x96, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC404 -.byte 0xd5, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DD0D0 -.byte 0xd9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBBC -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9DC8 -.byte 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DD09C -.byte 0x2e, 0x15, 0x02, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DD064 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DD044 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x15, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DD000 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DCFCC -closeTextBox -.byte 0xe7, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00 -.byte 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DCFB4 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DCF9C -closeTextBox -.byte 0x0c, 0x02, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DCF64 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DCF14 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DCEF8 -.byte 0x2e, 0x15, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x00, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DCEA8 -.byte 0xd9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBBC -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B9DC8 -.byte 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x47, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC0B0 -.byte 0xe1, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DCE70 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC038 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DCE28 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DCE28 -gUnknown_81DCE28: @ 81DCE28 -.string " I{APOSTROPHE}ll only tag along when you\n" -.string "go off to the {COLOR_1 YELLOW_4}Murky Cave{END_COLOR_TEXT_1}. Keke!\0" -.align 2, 0 - -.global gUnknown_81DCE70 -gUnknown_81DCE70: @ 81DCE70 -.string " The only place I want to go\n" -.string "is the {COLOR_1 YELLOW_4}Murky Cave{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_81DCEA8 -gUnknown_81DCEA8: @ 81DCEA8 -.string " It doesn{APOSTROPHE}t matter.\n" -.string "I just need your help.{WAIT_PRESS}\n" -.string "Take me to the {COLOR_1 YELLOW_4}Murky Cave{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_81DCEF8 -gUnknown_81DCEF8: @ 81DCEF8 -.string " When I get there{COMMA} I...\0" -.align 2, 0 - -.global gUnknown_81DCF14 -gUnknown_81DCF14: @ 81DCF14 -.string " I have to go to the\n" -.string "{COLOR_1 YELLOW_4}Murky Cave{END_COLOR_TEXT_1}.\n" -.string "I{APOSTROPHE}m prepared to do whatever it takes.\0" -.align 2, 0 - -.global gUnknown_81DCF64 -gUnknown_81DCF64: @ 81DCF64 -.string " ............{WAIT_PRESS}\n" -.string "I thought that{COMMA} but I need your help.\0" -.align 2, 0 - -.global gUnknown_81DCF9C -gUnknown_81DCF9C: @ 81DCF9C -.string " See you around!\n" -.string "Keke!\0" -.align 2, 0 - -.global gUnknown_81DCFB4 -gUnknown_81DCFB4: @ 81DCFB4 -.string " Keh!\n" -.string "Is that right.\0" -.align 2, 0 - -.global gUnknown_81DCFCC -gUnknown_81DCFCC: @ 81DCFCC -.string " ...OK{COMMA} go there for me!\n" -.string "To the {COLOR_1 YELLOW_4}Murky Cave{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_81DD000 -gUnknown_81DD000: @ 81DD000 -.string " ...Nah{COMMA} that{APOSTROPHE}s not important.{WAIT_PRESS}\n" -.string "I just feel like going! Keke!\0" -.align 2, 0 - -.global gUnknown_81DD044 -gUnknown_81DD044: @ 81DD044 -.string " For my sake{COMMA} Gardevoir...\0" -.align 2, 0 - -.global gUnknown_81DD064 -gUnknown_81DD064: @ 81DD064 -.string " Gardevoir{APOSTROPHE}s physical form...\n" -.string "That{APOSTROPHE}s where it is.\0" -.align 2, 0 - -.global gUnknown_81DD09C -gUnknown_81DD09C: @ 81DD09C -.string " Keke! Then{COMMA} we{APOSTROPHE}ll go!\n" -.string "To the {COLOR_1 YELLOW_4}Murky Cave{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_81DD0D0 -gUnknown_81DD0D0: @ 81DD0D0 -.string " It{APOSTROPHE}s the {COLOR_1 YELLOW_4}Murky Cave{END_COLOR_TEXT_1} next.{WAIT_PRESS}\n" -.string "I{APOSTROPHE}ll need your help for that.\0" -.align 2, 0 - -.global gUnknown_81DD114 -gUnknown_81DD114: @ 81DD114 -.byte 0xf6, 0x00, 0xda, 0x36, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81DD154 -gUnknown_81DD154: @ 81DD154 -.byte 0xf6, 0x00, 0xe1, 0x36, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0x91, 0x04, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DD224 -gUnknown_81DD224: @ 81DD224 -.byte 0xf6, 0x00, 0xf1, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x30, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0x91, 0x06, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x89, 0x18, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81DD2D4 -gUnknown_81DD2D4: @ 81DD2D4 -.byte 0xf6, 0x00, 0xff, 0x36, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DCE70 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC038 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DCE28 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DD364 -gUnknown_81DD364: @ 81DD364 -.byte 0xf6, 0x00, 0x0b, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DD404 -gUnknown_81DD404: @ 81DD404 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DD364 - -.global gUnknown_81DD410 -gUnknown_81DD410: @ 81DD410 -.byte 0xf6, 0x00, 0x1a, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DD994 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DD92C -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DD90C -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DD8E4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x03, 0x02, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DD8BC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DD888 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DD874 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x2c, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DD86C -closeTextBox -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DD854 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DD840 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DD810 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DD808 -.byte 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DD7E0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x03, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DD7B0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81DD7B0 -gUnknown_81DD7B0: @ 81DD7B0 -.string " My name is {ARG_NICKNAME_3}.{WAIT_PRESS}\n" -.string "I am also glad to meet you.\0" -.align 2, 0 - -.global gUnknown_81DD7E0 -gUnknown_81DD7E0: @ 81DD7E0 -.string " The name{APOSTROPHE}s {ARG_NICKNAME_2}.{WAIT_PRESS}\n" -.string "Glad to meet you.\0" -.align 2, 0 - -.global gUnknown_81DD808 -gUnknown_81DD808: @ 81DD808 -.string " Keh!\0" -.align 2, 0 - -.global gUnknown_81DD810 -gUnknown_81DD810: @ 81DD810 -.string " Your name...{WAIT_PRESS}\n" -.string "Please{COMMA} what is your name?\0" -.align 2, 0 - -.global gUnknown_81DD840 -gUnknown_81DD840: @ 81DD840 -.string " What is it now?\0" -.align 2, 0 - -.global gUnknown_81DD854 -gUnknown_81DD854: @ 81DD854 -.string " Oh{COMMA} wait{COMMA} please!\0" -.align 2, 0 - -.global gUnknown_81DD86C -gUnknown_81DD86C: @ 81DD86C -.string " Adios.\0" -.align 2, 0 - -.global gUnknown_81DD874 -gUnknown_81DD874: @ 81DD874 -.string " This is my thanks.\0" -.align 2, 0 - -.global gUnknown_81DD888 -gUnknown_81DD888: @ 81DD888 -.string " Hey{COMMA} {ARG_NICKNAME_0}.\n" -.string "Thanks for getting me through this.\0" -.align 2, 0 - -.global gUnknown_81DD8BC -gUnknown_81DD8BC: @ 81DD8BC -.string " ............{WAIT_PRESS}\n" -.string "Good for you{COMMA} {ARG_NICKNAME_3}.\0" -.align 2, 0 - -.global gUnknown_81DD8E4 -gUnknown_81DD8E4: @ 81DD8E4 -.string " Thank you so very much for\n" -.string "saving me.\0" -.align 2, 0 - -.global gUnknown_81DD90C -gUnknown_81DD90C: @ 81DD90C -.string " From the bottom of my\n" -.string "heart...\0" -.align 2, 0 - -.global gUnknown_81DD92C -gUnknown_81DD92C: @ 81DD92C -.string " You did this for me{COMMA} even\n" -.string "though I had never met you before...{WAIT_PRESS}\n" -.string "I have no idea how to thank you...\0" -.align 2, 0 - -.global gUnknown_81DD994 -gUnknown_81DD994: @ 81DD994 -.string " Thank you so much...{WAIT_PRESS}\n" -.string "My curse has been lifted.\0" -.align 2, 0 - -.global gUnknown_81DD9C8 -gUnknown_81DD9C8: @ 81DD9C8 -.byte 0xf6, 0x00, 0x60, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x18, 0x00, 0x01 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x28, 0x80, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDAD8 -gUnknown_81DDAD8: @ 81DDAD8 -.byte 0xf6, 0x00, 0x74, 0x37 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819BE98 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDB58 -gUnknown_81DDB58: @ 81DDB58 -.byte 0x00, 0x06, 0x00, 0x00 -.byte 0x3d, 0x2b, 0x00, 0x02 -.4byte gUnknown_819CAC4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x06, 0x00, 0x00, 0x40, 0x2b, 0x00, 0x02 -.4byte gUnknown_819CB04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDB88 -gUnknown_81DDB88: @ 81DDB88 -.byte 0x00, 0x02, 0x00, 0x00, 0x08, 0x2e, 0x00, 0x00 -.4byte gUnknown_819CB44 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x02, 0x00, 0x00, 0x05, 0x2e, 0x00, 0x00 -.4byte gUnknown_819CB84 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDBB8 -gUnknown_81DDBB8: @ 81DDBB8 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x22, 0x3e, 0x02, 0x02 -.4byte gUnknown_819CBC4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x22, 0x40, 0x02, 0x02 -.4byte gUnknown_819CC04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDBE8 -gUnknown_81DDBE8: @ 81DDBE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1d, 0x02, 0x02 -.4byte gUnknown_819CC44 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x22, 0x1b, 0x02, 0x02 -.4byte gUnknown_819CC84 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDC18 -gUnknown_81DDC18: @ 81DDC18 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x22, 0x26, 0x02, 0x02 -.4byte gUnknown_819CCC4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x22, 0x28, 0x02, 0x02 -.4byte gUnknown_819CD04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDC48 -gUnknown_81DDC48: @ 81DDC48 -.byte 0x00, 0x04, 0x00, 0x00, 0x22, 0x26, 0x02, 0x02 -.4byte gUnknown_819CD44 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x22, 0x28, 0x02, 0x02 -.4byte gUnknown_819CD74 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDC78 -gUnknown_81DDC78: @ 81DDC78 -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x3f, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819CDA4 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDC90 -gUnknown_81DDC90: @ 81DDC90 -.byte 0x0a, 0x00, 0x00, 0x00, 0x1e, 0x31, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819E764 -.byte 0x00, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x1e, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819E784 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x1b, 0x31, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819E7A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00 -.byte 0x1b, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819E7C4 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDCF0 -gUnknown_81DDCF0: @ 81DDCF0 -.byte 0x37, 0x04, 0x00, 0x00, 0x36, 0x23, 0x02, 0x02 -.4byte gUnknown_819E920 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDD08 -gUnknown_81DDD08: @ 81DDD08 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_819F048 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_819F1CC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDD38 -gUnknown_81DDD38: @ 81DDD38 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_819F20C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDD50 -gUnknown_81DDD50: @ 81DDD50 -.byte 0x00, 0x02, 0x00, 0x00, 0x20, 0x2c, 0x00, 0x02 -.4byte gUnknown_819F3A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x06, 0x00, 0x00, 0x25, 0x2c, 0x00, 0x02 -.4byte gUnknown_819F554 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDD80 -gUnknown_81DDD80: @ 81DDD80 -.byte 0x00, 0x04, 0x00, 0x00, 0x22, 0x2c, 0x02, 0x02 -.4byte gUnknown_819F594 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDD98 -gUnknown_81DDD98: @ 81DDD98 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_819F7C4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_819F854 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDDC8 -gUnknown_81DDDC8: @ 81DDDC8 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_819F894 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDDE0 -gUnknown_81DDDE0: @ 81DDDE0 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_819F9B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_819FA40 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDE10 -gUnknown_81DDE10: @ 81DDE10 -.byte 0x7c, 0x00, 0x00, 0x00, 0x1b, 0x25, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FAC0 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDE28 -gUnknown_81DDE28: @ 81DDE28 -.byte 0x86, 0x00, 0x00, 0x00, 0x2e, 0x27, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FBF0 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDE40 -gUnknown_81DDE40: @ 81DDE40 -.byte 0x73, 0x00, 0x00, 0x00, 0x31, 0x27, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FCFC -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDE58 -gUnknown_81DDE58: @ 81DDE58 -.byte 0x78, 0x00, 0x00, 0x00 -.byte 0x34, 0x27, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FE08 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDE70 -gUnknown_81DDE70: @ 81DDE70 -.byte 0x46, 0x00, 0x00, 0x00, 0x37, 0x27, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819FF1C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDE88 -gUnknown_81DDE88: @ 81DDE88 -.byte 0x80, 0x00, 0x00, 0x00, 0x3a, 0x27, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A002C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDEA0 -gUnknown_81DDEA0: @ 81DDEA0 -.byte 0x7b, 0x00, 0x00, 0x00, 0x3d, 0x27, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A013C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDEB8 -gUnknown_81DDEB8: @ 81DDEB8 -.byte 0x52, 0x00, 0x00, 0x00 -.byte 0x40, 0x27, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A0244 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDED0 -gUnknown_81DDED0: @ 81DDED0 -.byte 0x00, 0x04, 0x00, 0x00, 0x22, 0x2e, 0x02, 0x02 -.4byte gUnknown_81A05AC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x25, 0x2e, 0x02, 0x02 -.4byte gUnknown_81A1E94 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDF00 -gUnknown_81DDF00: @ 81DDF00 -.byte 0x22, 0x00, 0x00, 0x00, 0x22, 0x23, 0x02, 0x02 -.4byte gUnknown_81A20F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDF18 -gUnknown_81DDF18: @ 81DDF18 -.byte 0x22, 0x00, 0x00, 0x00 -.byte 0x22, 0x23, 0x02, 0x02 -.4byte gUnknown_81A21B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDF30 -gUnknown_81DDF30: @ 81DDF30 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81A23FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x22, 0x1f, 0x02, 0x02 -.4byte gUnknown_81A3A10 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x37, 0x04, 0x00, 0x00, 0x36, 0x23, 0x02, 0x02 -.4byte gUnknown_81A3EF0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDF78 -gUnknown_81DDF78: @ 81DDF78 -.byte 0x22, 0x04, 0x00, 0x00 -.byte 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81A40EC -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A411C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDF90 -gUnknown_81DDF90: @ 81DDF90 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81A43F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81A4504 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4574 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDFC0 -gUnknown_81DDFC0: @ 81DDFC0 -.byte 0x00, 0x04, 0x00, 0x00, 0x1f, 0x24, 0x02, 0x02 -.4byte gUnknown_81A48C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00 -.byte 0x22, 0x26, 0x00, 0x02 -.4byte gUnknown_81A50AC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DDFF0 -gUnknown_81DDFF0: @ 81DDFF0 -.byte 0x22, 0x00, 0x00, 0x00, 0x22, 0x22, 0x02, 0x02 -.4byte gUnknown_81A512C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE008 -gUnknown_81DE008: @ 81DE008 -.byte 0x22, 0x00, 0x00, 0x00, 0x22, 0x22, 0x02, 0x02 -.4byte gUnknown_81A51FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE020 -gUnknown_81DE020: @ 81DE020 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81A5378 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00 -.byte 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81A55AC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE050 -gUnknown_81DE050: @ 81DE050 -.byte 0x00, 0x02, 0x00, 0x00, 0x05, 0x28, 0x00, 0x02 -.4byte gUnknown_81A56B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x02, 0x00, 0x00, 0x08, 0x28, 0x00, 0x02 -.4byte gUnknown_81A5930 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE080 -gUnknown_81DE080: @ 81DE080 -.byte 0x00, 0x02, 0x00, 0x00, 0x05, 0x28, 0x00, 0x02 -.4byte gUnknown_81A5A7C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x02, 0x00, 0x00 -.byte 0x08, 0x28, 0x00, 0x02 -.4byte gUnknown_81A5C1C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE0B0 -gUnknown_81DE0B0: @ 81DE0B0 -.byte 0x00, 0x02, 0x00, 0x00, 0x20, 0x2c, 0x02, 0x02 -.4byte gUnknown_81A5DD8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00, 0x25, 0x2c, 0x02, 0x02 -.4byte gUnknown_81A62E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE0E0 -gUnknown_81DE0E0: @ 81DE0E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81A655C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE0F8 -gUnknown_81DE0F8: @ 81DE0F8 -.byte 0x00, 0x02, 0x00, 0x00 -.byte 0x1f, 0x24, 0x02, 0x02 -.4byte gUnknown_81A6700 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00, 0x22, 0x32, 0x02, 0x02 -.4byte gUnknown_81A6F34 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE128 -gUnknown_81DE128: @ 81DE128 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81A7140 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81A7614 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE158 -gUnknown_81DE158: @ 81DE158 -.byte 0x42, 0x00, 0x00, 0x00 -.byte 0x22, 0x1e, 0x02, 0x02 -.4byte gUnknown_81A7744 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE170 -gUnknown_81DE170: @ 81DE170 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81A7910 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81A7AB4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE1A0 -gUnknown_81DE1A0: @ 81DE1A0 -.byte 0x00, 0x04, 0x00, 0x00, 0x20, 0x2c, 0x02, 0x02 -.4byte gUnknown_81A7C70 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00 -.byte 0x24, 0x2c, 0x02, 0x02 -.4byte gUnknown_81AA778 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x20, 0x28, 0x02, 0x02 -.4byte gUnknown_81AAC28 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x24, 0x28, 0x02, 0x02 -.4byte gUnknown_81AADE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x22, 0x26, 0x02, 0x02 -.4byte gUnknown_81AB198 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE218 -gUnknown_81DE218: @ 81DE218 -.byte 0x42, 0x00, 0x00, 0x00 -.byte 0x22, 0x2a, 0x02, 0x02 -.4byte gUnknown_81AB488 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE230 -gUnknown_81DE230: @ 81DE230 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81AB6D4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x22, 0x2d, 0x02, 0x02 -.4byte gUnknown_81ACA18 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE260 -gUnknown_81DE260: @ 81DE260 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81ACD04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00 -.byte 0x22, 0x2d, 0x02, 0x02 -.4byte gUnknown_81AE20C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x04, 0x00, 0x00, 0x22, 0x2d, 0x02, 0x02 -.4byte gUnknown_81AE61C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0x25, 0x2d, 0x02, 0x02 -.4byte gUnknown_81AE78C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x5d, 0x04, 0x00, 0x00, 0x1f, 0x2d, 0x02, 0x02 -.4byte gUnknown_81AE8AC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x37, 0x06, 0x00, 0x00 -.byte 0x36, 0x1f, 0x02, 0x02 -.4byte gUnknown_81AEA0C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE2F0 -gUnknown_81DE2F0: @ 81DE2F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81AEE18 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00, 0x22, 0x2d, 0x02, 0x02 -.4byte gUnknown_81B002C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x5b, 0x02, 0x00, 0x00, 0x22, 0x31, 0x02, 0x02 -.4byte gUnknown_81B02DC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x02, 0x00, 0x00 -.byte 0x25, 0x31, 0x02, 0x02 -.4byte gUnknown_81B04BC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0x02, 0x00, 0x00, 0x1f, 0x31, 0x02, 0x02 -.4byte gUnknown_81B057C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x02, 0x00, 0x00, 0x22, 0x32, 0x02, 0x02 -.4byte gUnknown_81B063C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE380 -gUnknown_81DE380: @ 81DE380 -.byte 0x36, 0x04, 0x00, 0x00, 0x22, 0x23, 0x02, 0x02 -.4byte gUnknown_81B07E8 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B0818 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE398 -gUnknown_81DE398: @ 81DE398 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81B0A00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81B0B8C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE3C8 -gUnknown_81DE3C8: @ 81DE3C8 -.byte 0x00, 0x04, 0x00, 0x00, 0x20, 0x2c, 0x00, 0x02 -.4byte gUnknown_81B0C98 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x24, 0x2c, 0x00, 0x02 -.4byte gUnknown_81B1DA4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00 -.byte 0x20, 0x28, 0x00, 0x02 -.4byte gUnknown_81B2054 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x24, 0x28, 0x00, 0x02 -.4byte gUnknown_81B2384 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE428 -gUnknown_81DE428: @ 81DE428 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81B2540 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE440 -gUnknown_81DE440: @ 81DE440 -.byte 0x22, 0x06, 0x00, 0x00, 0x22, 0x2b, 0x02, 0x02 -.4byte gUnknown_81B2854 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE458 -gUnknown_81DE458: @ 81DE458 -.byte 0x4e, 0x04, 0x00, 0x00 -.byte 0x22, 0x2b, 0x02, 0x02 -.4byte gUnknown_81B2944 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE470 -gUnknown_81DE470: @ 81DE470 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81B2AB0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x07, 0x00, 0x00, 0x25, 0x1e, 0x02, 0x02 -.4byte gUnknown_81B3680 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4e, 0x04, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81B37F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE4B8 -gUnknown_81DE4B8: @ 81DE4B8 -.byte 0x4e, 0x04, 0x00, 0x00 -.byte 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81B38DC -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81B390C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE4D0 -gUnknown_81DE4D0: @ 81DE4D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81B3ACC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81B3C24 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE500 -gUnknown_81DE500: @ 81DE500 -.byte 0x00, 0x04, 0x00, 0x00, 0x21, 0x2d, 0x02, 0x02 -.4byte gUnknown_81B3DE0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00 -.byte 0x24, 0x2d, 0x02, 0x02 -.4byte gUnknown_81B56F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x21, 0x29, 0x02, 0x02 -.4byte gUnknown_81B59C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x24, 0x29, 0x02, 0x02 -.4byte gUnknown_81B5B60 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x58, 0x06, 0x00, 0x00, 0x34, 0x2b, 0x02, 0x02 -.4byte gUnknown_81B5C80 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5a, 0x06, 0x00, 0x00 -.byte 0x36, 0x29, 0x02, 0x02 -.4byte gUnknown_81B5DA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x06, 0x00, 0x00, 0x36, 0x2d, 0x02, 0x02 -.4byte gUnknown_81B5EA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE5A8 -gUnknown_81DE5A8: @ 81DE5A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81B603C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00, 0x22, 0x2c, 0x02, 0x02 -.4byte gUnknown_81B64A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE5D8 -gUnknown_81DE5D8: @ 81DE5D8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81B6630 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81B6750 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE608 -gUnknown_81DE608: @ 81DE608 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81B690C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00, 0x22, 0x2d, 0x02, 0x02 -.4byte gUnknown_81B7674 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE638 -gUnknown_81DE638: @ 81DE638 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81B78C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81B7A14 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE668 -gUnknown_81DE668: @ 81DE668 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81B7B50 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00, 0x22, 0x2d, 0x02, 0x02 -.4byte gUnknown_81B9EE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE698 -gUnknown_81DE698: @ 81DE698 -.byte 0x37, 0x00, 0x00, 0x00 -.byte 0x36, 0x1f, 0x00, 0x02 -.4byte gUnknown_81BA378 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE6B0 -gUnknown_81DE6B0: @ 81DE6B0 -.byte 0x00, 0x02, 0x00, 0x00, 0x20, 0x2c, 0x02, 0x02 -.4byte gUnknown_81BA664 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00, 0x24, 0x2c, 0x02, 0x02 -.4byte gUnknown_81BAF28 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE6E0 -gUnknown_81DE6E0: @ 81DE6E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81BB154 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00 -.byte 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81BB4D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE710 -gUnknown_81DE710: @ 81DE710 -.byte 0x00, 0x02, 0x00, 0x00, 0x22, 0x2b, 0x00, 0x02 -.4byte gUnknown_81BB6CC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00, 0x26, 0x2b, 0x00, 0x02 -.4byte gUnknown_81BDDD8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE740 -gUnknown_81DE740: @ 81DE740 -.byte 0x58, 0x06, 0x00, 0x00, 0x2a, 0x2b, 0x00, 0x02 -.4byte gUnknown_81BE318 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x06, 0x00, 0x00 -.byte 0x2b, 0x2d, 0x00, 0x02 -.4byte gUnknown_81BE4F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5a, 0x06, 0x00, 0x00, 0x2b, 0x29, 0x00, 0x02 -.4byte gUnknown_81BE618 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE788 -gUnknown_81DE788: @ 81DE788 -.byte 0x36, 0x06, 0x00, 0x00, 0x2a, 0x2b, 0x00, 0x02 -.4byte gUnknown_81BE728 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE7A0 -gUnknown_81DE7A0: @ 81DE7A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81BEA68 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00 -.byte 0x22, 0x2c, 0x02, 0x02 -.4byte gUnknown_81BEDFC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE7D0 -gUnknown_81DE7D0: @ 81DE7D0 -.byte 0x22, 0x04, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81BEEC8 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BEEF8 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE7E8 -gUnknown_81DE7E8: @ 81DE7E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81BF188 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81BF44C -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81BF4BC -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE818 -gUnknown_81DE818: @ 81DE818 -.byte 0x00, 0x02, 0x00, 0x00 -.byte 0x05, 0x28, 0x00, 0x02 -.4byte gUnknown_81BF648 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81BF708 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE848 -gUnknown_81DE848: @ 81DE848 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81BF7D4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81BFE94 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE878 -gUnknown_81DE878: @ 81DE878 -.byte 0x00, 0x02, 0x00, 0x00 -.byte 0x22, 0x2b, 0x00, 0x02 -.4byte gUnknown_81BFF70 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x00, 0x00, 0x25, 0x29, 0x00, 0x02 -.4byte gUnknown_81C0040 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x06, 0x00, 0x00, 0x29, 0x2b, 0x00, 0x02 -.4byte gUnknown_81C0090 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x59, 0x06, 0x00, 0x00, 0x2a, 0x2e, 0x00, 0x02 -.4byte gUnknown_81C00F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5a, 0x06, 0x00, 0x00 -.byte 0x2a, 0x28, 0x00, 0x02 -.4byte gUnknown_81C0130 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE8F0 -gUnknown_81DE8F0: @ 81DE8F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81C02FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81C1318 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x36, 0x04, 0x00, 0x00, 0x25, 0x2d, 0x00, 0x02 -.4byte gUnknown_81C1678 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5e, 0x04, 0x00, 0x00 -.byte 0x21, 0x2d, 0x00, 0x02 -.4byte gUnknown_81C1904 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0x36, 0x23, 0x02, 0x02 -.4byte gUnknown_81C1A94 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0x04, 0x00, 0x00, 0x22, 0x2f, 0x00, 0x02 -.4byte gUnknown_81C1D74 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x5f, 0x04, 0x00, 0x00, 0x24, 0x2f, 0x00, 0x02 -.4byte gUnknown_81C2004 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE998 -gUnknown_81DE998: @ 81DE998 -.byte 0x44, 0x00, 0x00, 0x00 -.byte 0x27, 0x21, 0x00, 0x02 -.4byte gUnknown_81C2174 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE9B0 -gUnknown_81DE9B0: @ 81DE9B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81C23C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00, 0x22, 0x2d, 0x02, 0x02 -.4byte gUnknown_81C2858 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE9E0 -gUnknown_81DE9E0: @ 81DE9E0 -.byte 0x37, 0x04, 0x00, 0x00, 0x36, 0x21, 0x02, 0x02 -.4byte gUnknown_81C2958 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DE9F8 -gUnknown_81DE9F8: @ 81DE9F8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81C2C50 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81C35EC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DEA28 -gUnknown_81DEA28: @ 81DEA28 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81C37C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81C3DF4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DEA58 -gUnknown_81DEA58: @ 81DEA58 -.byte 0x4d, 0x04, 0x00, 0x00 -.byte 0x34, 0x29, 0x02, 0x02 -.4byte gUnknown_81C3F14 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DEA70 -gUnknown_81DEA70: @ 81DEA70 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81C4100 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81C444C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DEAA0 -gUnknown_81DEAA0: @ 81DEAA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81C45D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00 -.byte 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81C4994 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DEAD0 -gUnknown_81DEAD0: @ 81DEAD0 -.byte 0x22, 0x04, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81C4A40 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81C4A70 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DEAE8 -gUnknown_81DEAE8: @ 81DEAE8 -.byte 0x00, 0x02, 0x00, 0x00, 0x05, 0x28, 0x00, 0x02 -.4byte gUnknown_81C4DB4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81C4E54 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DEB18 -gUnknown_81DEB18: @ 81DEB18 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81C5060 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81C5538 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DEB48 -gUnknown_81DEB48: @ 81DEB48 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81C56B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81C5A54 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DEB78 -gUnknown_81DEB78: @ 81DEB78 -.byte 0x00, 0x02, 0x00, 0x00 -.byte 0x05, 0x28, 0x00, 0x02 -.4byte gUnknown_81C5B3C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DEB90 -gUnknown_81DEB90: @ 81DEB90 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81C5CD4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00, 0x22, 0x2c, 0x02, 0x02 -.4byte gUnknown_81C5EB4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DEBC0 -gUnknown_81DEBC0: @ 81DEBC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81C605C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00 -.byte 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81C63E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DEBF0 -gUnknown_81DEBF0: @ 81DEBF0 -.byte 0x00, 0x04, 0x00, 0x00, 0x22, 0x33, 0x02, 0x02 -.4byte gUnknown_81C65E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x22, 0x24, 0x02, 0x00 -.4byte gUnknown_81C68E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x36, 0x03, 0x00, 0x00, 0x20, 0x26, 0x02, 0x02 -.4byte gUnknown_81C6A60 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5e, 0x05, 0x00, 0x00 -.byte 0x24, 0x27, 0x02, 0x00 -.4byte gUnknown_81C6BE0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0x05, 0x00, 0x00, 0x26, 0x2b, 0x02, 0x02 -.4byte gUnknown_81C6DC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x05, 0x00, 0x00, 0x28, 0x2a, 0x02, 0x02 -.4byte gUnknown_81C6FC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x50, 0x05, 0x00, 0x00, 0x19, 0x2b, 0x02, 0x02 -.4byte gUnknown_81C7170 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00 -.byte 0x1c, 0x27, 0x02, 0x02 -.4byte gUnknown_81C72A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x06, 0x00, 0x00, 0x26, 0x24, 0x00, 0x02 -.4byte gUnknown_81C73E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x02, 0x00, 0x00, 0x2c, 0x2a, 0x00, 0x02 -.4byte gUnknown_81C7630 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x58, 0x06, 0x00, 0x00, 0x22, 0x29, 0x02, 0x02 -.4byte gUnknown_81C77C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00 -.byte 0x1e, 0x2c, 0x02, 0x02 -.4byte gUnknown_81C7940 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5a, 0x01, 0x00, 0x00, 0x26, 0x2e, 0x02, 0x02 -.4byte gUnknown_81C7B10 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DED28 -gUnknown_81DED28: @ 81DED28 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81C817C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x22, 0x1a, 0x02, 0x02 -.4byte gUnknown_81C8584 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x04, 0x00, 0x00 -.byte 0x22, 0x2b, 0x02, 0x02 -.4byte gUnknown_81C86F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5e, 0x04, 0x00, 0x00, 0x25, 0x2d, 0x02, 0x00 -.4byte gUnknown_81C8804 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DED88 -gUnknown_81DED88: @ 81DED88 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x3e, 0x02, 0x02 -.4byte gUnknown_81C899C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x22, 0x40, 0x02, 0x02 -.4byte gUnknown_81C8C24 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DEDB8 -gUnknown_81DEDB8: @ 81DEDB8 -.byte 0x00, 0x06, 0x00, 0x00 -.byte 0x25, 0x29, 0x00, 0x02 -.4byte gUnknown_81C8D90 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x02, 0x00, 0x00, 0x20, 0x29, 0x00, 0x02 -.4byte gUnknown_81CA410 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DEDE8 -gUnknown_81DEDE8: @ 81DEDE8 -.byte 0x07, 0x02, 0x00, 0x00, 0x20, 0x29, 0x00, 0x02 -.4byte gUnknown_81CA470 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DEE00 -gUnknown_81DEE00: @ 81DEE00 -.byte 0x07, 0x02, 0x00, 0x00, 0x20, 0x29, 0x00, 0x02 -.4byte gUnknown_81CA500 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DEE18 -gUnknown_81DEE18: @ 81DEE18 -.byte 0x00, 0x06, 0x00, 0x00 -.byte 0x22, 0x2e, 0x02, 0x00 -.4byte gUnknown_81CA698 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x06, 0x00, 0x00, 0x22, 0x2b, 0x02, 0x00 -.4byte gUnknown_81CB178 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x06, 0x00, 0x00, 0x39, 0x2a, 0x02, 0x02 -.4byte gUnknown_81CB3A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6e, 0x06, 0x00, 0x00, 0x3c, 0x2b, 0x02, 0x00 -.4byte gUnknown_81CB508 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DEE78 -gUnknown_81DEE78: @ 81DEE78 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x20, 0x2c, 0x02, 0x02 -.4byte gUnknown_81CB8B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x24, 0x2c, 0x02, 0x02 -.4byte gUnknown_81CE8CC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x24, 0x28, 0x02, 0x02 -.4byte gUnknown_81CEA9C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x20, 0x28, 0x02, 0x02 -.4byte gUnknown_81CEE3C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x04, 0x00, 0x00 -.byte 0x22, 0x39, 0x02, 0x02 -.4byte gUnknown_81CF1AC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x71, 0x04, 0x00, 0x00, 0x20, 0x3c, 0x02, 0x02 -.4byte gUnknown_81CF33C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x04, 0x00, 0x00, 0x24, 0x3c, 0x02, 0x02 -.4byte gUnknown_81CF49C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x35, 0x2c, 0x02, 0x02 -.4byte gUnknown_81CF60C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DEF38 -gUnknown_81DEF38: @ 81DEF38 -.byte 0x22, 0x04, 0x00, 0x00 -.byte 0x24, 0x2c, 0x02, 0x02 -.4byte gUnknown_81CF72C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x04, 0x00, 0x00, 0x22, 0x30, 0x02, 0x02 -.4byte gUnknown_81CF94C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x71, 0x04, 0x00, 0x00, 0x20, 0x32, 0x02, 0x02 -.4byte gUnknown_81CFACC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x72, 0x04, 0x00, 0x00, 0x24, 0x32, 0x02, 0x02 -.4byte gUnknown_81CFBEC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DEF98 -gUnknown_81DEF98: @ 81DEF98 -.byte 0x22, 0x04, 0x00, 0x00 -.byte 0x24, 0x2c, 0x02, 0x02 -.4byte gUnknown_81CFD9C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x04, 0x00, 0x00, 0x22, 0x30, 0x02, 0x02 -.4byte gUnknown_81CFF1C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x71, 0x04, 0x00, 0x00, 0x20, 0x32, 0x02, 0x02 -.4byte gUnknown_81CFFDC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x72, 0x04, 0x00, 0x00, 0x24, 0x32, 0x02, 0x02 -.4byte gUnknown_81D009C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DEFF8 -gUnknown_81DEFF8: @ 81DEFF8 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x25, 0x20, 0x02, 0x02 -.4byte gUnknown_81D041C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x23, 0x20, 0x00, 0x02 -.4byte gUnknown_81D11B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x04, 0x00, 0x00, 0x20, 0x1f, 0x02, 0x02 -.4byte gUnknown_81D1408 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6e, 0x03, 0x00, 0x00, 0x1d, 0x1e, 0x02, 0x02 -.4byte gUnknown_81D1578 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00 -.byte 0x18, 0x2d, 0x02, 0x00 -.4byte gUnknown_81D17F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x18, 0x2a, 0x02, 0x02 -.4byte gUnknown_81D1888 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x1b, 0x2b, 0x02, 0x00 -.4byte gUnknown_81D1918 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x36, 0x05, 0x00, 0x00, 0x27, 0x1e, 0x02, 0x02 -.4byte gUnknown_81D1998 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF0B8 -gUnknown_81DF0B8: @ 81DF0B8 -.byte 0x70, 0x00, 0x00, 0x00 -.byte 0x17, 0x2b, 0x02, 0x00 -.4byte gUnknown_81D1BC4 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1BF4 -.byte 0x00, 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x18, 0x27, 0x02, 0x02 -.4byte gUnknown_81D1DF4 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1E24 -.byte 0x00, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x1b, 0x29, 0x02, 0x00 -.4byte gUnknown_81D1F5C -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D1F8C -.byte 0x00, 0x00, 0x00, 0x00, 0x6d, 0x02, 0x00, 0x00, 0x1d, 0x22, 0x02, 0x02 -.4byte gUnknown_81D206C -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D208C -.byte 0x00, 0x00, 0x00, 0x00, 0x6e, 0x06, 0x00, 0x00 -.byte 0x2b, 0x16, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D2130 -.4byte gUnknown_81D21F0 - -.global gUnknown_81DF130 -gUnknown_81DF130: @ 81DF130 -.byte 0x00, 0x04, 0x00, 0x00, 0x20, 0x2c, 0x02, 0x02 -.4byte gUnknown_81D23BC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x24, 0x2c, 0x02, 0x02 -.4byte gUnknown_81D3084 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x17, 0x2a, 0x02, 0x02 -.4byte gUnknown_81D3104 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00 -.byte 0x18, 0x27, 0x02, 0x02 -.4byte gUnknown_81D3164 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x1b, 0x28, 0x02, 0x02 -.4byte gUnknown_81D31C4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF1A8 -gUnknown_81DF1A8: @ 81DF1A8 -.byte 0x70, 0x04, 0x00, 0x00, 0x17, 0x2a, 0x02, 0x02 -.4byte gUnknown_81D3224 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x71, 0x04, 0x00, 0x00, 0x18, 0x27, 0x02, 0x02 -.4byte gUnknown_81D3314 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x04, 0x00, 0x00 -.byte 0x1b, 0x28, 0x02, 0x02 -.4byte gUnknown_81D33E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF1F0 -gUnknown_81DF1F0: @ 81DF1F0 -.byte 0x70, 0x04, 0x00, 0x00, 0x16, 0x2a, 0x02, 0x02 -.4byte gUnknown_81D34B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x71, 0x04, 0x00, 0x00, 0x18, 0x27, 0x02, 0x02 -.4byte gUnknown_81D35A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x72, 0x04, 0x00, 0x00, 0x1b, 0x28, 0x02, 0x02 -.4byte gUnknown_81D3694 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF238 -gUnknown_81DF238: @ 81DF238 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x22, 0x2b, 0x02, 0x02 -.4byte gUnknown_81D3CC4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x26, 0x2b, 0x02, 0x02 -.4byte gUnknown_81D4D24 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x04, 0x00, 0x00, 0x25, 0x2f, 0x02, 0x02 -.4byte gUnknown_81D5054 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6e, 0x04, 0x00, 0x00, 0x28, 0x2e, 0x02, 0x02 -.4byte gUnknown_81D5184 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x04, 0x00, 0x00 -.byte 0x1f, 0x2c, 0x02, 0x02 -.4byte gUnknown_81D52F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x71, 0x04, 0x00, 0x00, 0x1c, 0x2c, 0x02, 0x02 -.4byte gUnknown_81D5644 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x04, 0x00, 0x00, 0x1e, 0x2e, 0x02, 0x02 -.4byte gUnknown_81D5854 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x36, 0x04, 0x00, 0x00, 0x22, 0x2e, 0x02, 0x02 -.4byte gUnknown_81D5A84 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF2F8 -gUnknown_81DF2F8: @ 81DF2F8 -.byte 0x01, 0x04, 0x00, 0x00 -.byte 0x20, 0x2c, 0x02, 0x02 -.4byte gUnknown_81D5D20 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x24, 0x2c, 0x02, 0x02 -.4byte gUnknown_81D764C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x22, 0x2a, 0x02, 0x02 -.4byte gUnknown_81D797C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x7e, 0x04, 0x00, 0x00, 0x20, 0x3f, 0x02, 0x02 -.4byte gUnknown_81D7DCC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0x04, 0x00, 0x00 -.byte 0x24, 0x3f, 0x02, 0x02 -.4byte gUnknown_81D7FBC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF370 -gUnknown_81DF370: @ 81DF370 -.byte 0x7c, 0x00, 0x00, 0x00, 0x19, 0x18, 0x02, 0x02 -.4byte gUnknown_81D81EC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF388 -gUnknown_81DF388: @ 81DF388 -.byte 0x5d, 0x00, 0x00, 0x00, 0x3f, 0x2d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81D825C -.4byte gUnknown_81D829C -.4byte gUnknown_81D8594 - -.global gUnknown_81DF3A0 -gUnknown_81DF3A0: @ 81DF3A0 -.byte 0x01, 0x04, 0x00, 0x00, 0x20, 0x2c, 0x02, 0x02 -.4byte gUnknown_81D87D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00 -.byte 0x24, 0x2c, 0x02, 0x02 -.4byte gUnknown_81D9BB4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x22, 0x28, 0x02, 0x02 -.4byte gUnknown_81D9E14 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x06, 0x00, 0x00, 0x34, 0x2a, 0x02, 0x02 -.4byte gUnknown_81DA054 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF400 -gUnknown_81DF400: @ 81DF400 -.byte 0x21, 0x00, 0x00, 0x00, 0x22, 0x1b, 0x02, 0x02 -.4byte gUnknown_81DA3BC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x79, 0x06, 0x00, 0x00 -.byte 0x36, 0x28, 0x02, 0x02 -.4byte gUnknown_81DA88C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF430 -gUnknown_81DF430: @ 81DF430 -.byte 0x00, 0x04, 0x00, 0x00, 0x22, 0x2c, 0x02, 0x02 -.4byte gUnknown_81DA9C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x1f, 0x28, 0x02, 0x02 -.4byte gUnknown_81DB1F8 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DB3D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x25, 0x28, 0x02, 0x02 -.4byte gUnknown_81DB4B8 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DB5E8 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF478 -gUnknown_81DF478: @ 81DF478 -.byte 0x21, 0x04, 0x00, 0x00 -.byte 0x25, 0x2c, 0x00, 0x02 -.4byte gUnknown_81DB740 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x20, 0x2c, 0x00, 0x02 -.4byte gUnknown_81DBA98 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x22, 0x28, 0x02, 0x02 -.4byte gUnknown_81DBAD8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF4C0 -gUnknown_81DF4C0: @ 81DF4C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81DBC14 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF4D8 -gUnknown_81DF4D8: @ 81DF4D8 -.byte 0x5b, 0x04, 0x00, 0x00 -.byte 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81DC418 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF4F0 -gUnknown_81DF4F0: @ 81DF4F0 -.byte 0x5b, 0x04, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81DC458 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF508 -gUnknown_81DF508: @ 81DF508 -.byte 0x5b, 0x04, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81DC4D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF520 -gUnknown_81DF520: @ 81DF520 -.byte 0x5b, 0x00, 0x00, 0x00, 0x19, 0x29, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC588 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF538 -gUnknown_81DF538: @ 81DF538 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x22, 0x2c, 0x02, 0x02 -.4byte gUnknown_81DC6C4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x22, 0x28, 0x02, 0x02 -.4byte gUnknown_81DC828 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DC878 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF568 -gUnknown_81DF568: @ 81DF568 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x1c, 0x02, 0x02 -.4byte gUnknown_81DCA48 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x5b, 0x04, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81DD114 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF598 -gUnknown_81DF598: @ 81DF598 -.byte 0x5b, 0x04, 0x00, 0x00 -.byte 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81DD154 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF5B0 -gUnknown_81DF5B0: @ 81DF5B0 -.byte 0x5b, 0x04, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_81DD224 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF5C8 -gUnknown_81DF5C8: @ 81DF5C8 -.byte 0x5b, 0x00, 0x00, 0x00, 0x19, 0x29, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81DD2D4 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF5E0 -gUnknown_81DF5E0: @ 81DF5E0 -.byte 0x00, 0x04, 0x00, 0x00, 0x1f, 0x2c, 0x02, 0x02 -.4byte gUnknown_81DD410 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x04, 0x00, 0x00 -.byte 0x25, 0x2c, 0x02, 0x02 -.4byte gUnknown_81DD9C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x22, 0x28, 0x02, 0x02 -.4byte gUnknown_81DDAD8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF628 -gUnknown_81DF628: @ 81DF628 -.byte 0x0d, 0x00, 0x03, 0x04, 0x1f, 0x22, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819C378 -.byte 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x04, 0x03, 0x1b, 0x10, 0x00 -warpDungeon 0x00 -.byte 0x00, 0x0f, 0x00, 0x03, 0x02 -.byte 0x08, 0x2a, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_819C748 -.byte 0x00, 0x00, 0x00, 0x00, 0x41, 0x00, 0x02, 0x02, 0x32, 0x21, 0x00, 0x00 -.4byte gUnknown_819C8F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x02, 0x02, 0x36, 0x22, 0x00, 0x00 -.4byte gUnknown_819C974 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x02, 0x02, 0x3f, 0x20, 0x00, 0x00 -.4byte gUnknown_819C9E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x02, 0x02 -.byte 0x3b, 0x22, 0x00, 0x00 -.4byte gUnknown_819CA54 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF6D0 -gUnknown_81DF6D0: @ 81DF6D0 -.byte 0x40, 0x00, 0x02, 0x02, 0x3b, 0x22, 0x00, 0x00 -.4byte gUnknown_819EB44 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF6E8 -gUnknown_81DF6E8: @ 81DF6E8 -.byte 0x0d, 0x00, 0x03, 0x04, 0x1f, 0x22, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A4254 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF700 -gUnknown_81DF700: @ 81DF700 -.byte 0x0d, 0x00, 0x03, 0x04, 0x1f, 0x22, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81A6384 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF718 -gUnknown_81DF718: @ 81DF718 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x22, 0x23, 0x02, 0x02 -.4byte gUnknown_819E8C0 - -.global gUnknown_81DF724 -gUnknown_81DF724: @ 81DF724 -.byte 0x02, 0x04, 0x01, 0x01, 0x36, 0x23, 0x02, 0x02 -.4byte gUnknown_819EAF4 - -.global gUnknown_81DF730 -gUnknown_81DF730: @ 81DF730 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF73C -gUnknown_81DF73C: @ 81DF73C -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF748 -gUnknown_81DF748: @ 81DF748 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF754 -gUnknown_81DF754: @ 81DF754 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x26, 0x02, 0x02 -.4byte gUnknown_81A050C - -.global gUnknown_81DF760 -gUnknown_81DF760: @ 81DF760 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02 -.4byte gUnknown_81A239C - -.global gUnknown_81DF76C -gUnknown_81DF76C: @ 81DF76C -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x24, 0x00, 0x02 -.4byte gUnknown_81A4858 - -.global gUnknown_81DF778 -gUnknown_81DF778: @ 81DF778 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x22, 0x1e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF784 -gUnknown_81DF784: @ 81DF784 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF790 -gUnknown_81DF790: @ 81DF790 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x24, 0x02, 0x02 -.4byte gUnknown_81A6690 - -.global gUnknown_81DF79C -gUnknown_81DF79C: @ 81DF79C -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF7A8 -gUnknown_81DF7A8: @ 81DF7A8 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF7B4 -gUnknown_81DF7B4: @ 81DF7B4 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x2a, 0x02, 0x02 -.4byte gUnknown_81A7C00 - -.global gUnknown_81DF7C0 -gUnknown_81DF7C0: @ 81DF7C0 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF7CC -gUnknown_81DF7CC: @ 81DF7CC -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1f, 0x02, 0x02 -.4byte gUnknown_81ACC54 - -.global gUnknown_81DF7D8 -gUnknown_81DF7D8: @ 81DF7D8 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x22, 0x1e, 0x02, 0x02 -.4byte gUnknown_81AED48 - -.global gUnknown_81DF7E4 -gUnknown_81DF7E4: @ 81DF7E4 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF7F0 -gUnknown_81DF7F0: @ 81DF7F0 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF7FC -gUnknown_81DF7FC: @ 81DF7FC -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF808 -gUnknown_81DF808: @ 81DF808 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF814 -gUnknown_81DF814: @ 81DF814 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF820 -gUnknown_81DF820: @ 81DF820 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x2b, 0x02, 0x02 -.4byte gUnknown_81B3D30 - -.global gUnknown_81DF82C -gUnknown_81DF82C: @ 81DF82C -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF838 -gUnknown_81DF838: @ 81DF838 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x22, 0x1e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF844 -gUnknown_81DF844: @ 81DF844 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02 -.4byte gUnknown_81B688C - -.global gUnknown_81DF850 -gUnknown_81DF850: @ 81DF850 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF85C -gUnknown_81DF85C: @ 81DF85C -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF868 -gUnknown_81DF868: @ 81DF868 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF874 -gUnknown_81DF874: @ 81DF874 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF880 -gUnknown_81DF880: @ 81DF880 -.byte 0x00, 0x00, 0x01, 0x01, 0x24, 0x2c, 0x02, 0x02 -.4byte gUnknown_81BB62C - -.global gUnknown_81DF88C -gUnknown_81DF88C: @ 81DF88C -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF898 -gUnknown_81DF898: @ 81DF898 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x27, 0x2c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF8A4 -gUnknown_81DF8A4: @ 81DF8A4 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02 -.4byte gUnknown_81C01FC - -.global gUnknown_81DF8B0 -gUnknown_81DF8B0: @ 81DF8B0 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1f, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF8BC -gUnknown_81DF8BC: @ 81DF8BC -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF8C8 -gUnknown_81DF8C8: @ 81DF8C8 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02 -.4byte gUnknown_81C3738 - -.global gUnknown_81DF8D4 -gUnknown_81DF8D4: @ 81DF8D4 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF8E0 -gUnknown_81DF8E0: @ 81DF8E0 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02 -.4byte gUnknown_81C4598 - -.global gUnknown_81DF8EC -gUnknown_81DF8EC: @ 81DF8EC -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02 -.4byte gUnknown_81C4FA0 - -.global gUnknown_81DF8F8 -gUnknown_81DF8F8: @ 81DF8F8 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x22, 0x1e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF904 -gUnknown_81DF904: @ 81DF904 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF910 -gUnknown_81DF910: @ 81DF910 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF91C -gUnknown_81DF91C: @ 81DF91C -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x16, 0x02, 0x02 -.4byte gUnknown_81C6520 -.byte 0x05, 0x00, 0x01, 0x01, 0x22, 0x25, 0x02, 0x02 -.4byte gUnknown_81C6A20 -.byte 0x04, 0x00, 0x01, 0x01, 0x22, 0x33, 0x02, 0x02 -.4byte gUnknown_81C7CB0 - -.global gUnknown_81DF940 -gUnknown_81DF940: @ 81DF940 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02 -.4byte gUnknown_81C80BC - -.global gUnknown_81DF94C -gUnknown_81DF94C: @ 81DF94C -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x29, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF958 -gUnknown_81DF958: @ 81DF958 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x22, 0x2d, 0x02, 0x02 -.4byte gUnknown_81CA628 - -.global gUnknown_81DF964 -gUnknown_81DF964: @ 81DF964 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x2a, 0x02, 0x02 -.4byte gUnknown_81CB804 - -.global gUnknown_81DF970 -gUnknown_81DF970: @ 81DF970 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x08, 0x02, 0x02 -.4byte gUnknown_81D034C - -.global gUnknown_81DF97C -gUnknown_81DF97C: @ 81DF97C -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x2a, 0x02, 0x02 -.4byte gUnknown_81D22FC - -.global gUnknown_81DF988 -gUnknown_81DF988: @ 81DF988 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x30, 0x02, 0x02 -.4byte gUnknown_81D3B84 - -.global gUnknown_81DF994 -gUnknown_81DF994: @ 81DF994 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x2b, 0x02, 0x02 -.4byte gUnknown_81D5C40 - -.global gUnknown_81DF9A0 -gUnknown_81DF9A0: @ 81DF9A0 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF9AC -gUnknown_81DF9AC: @ 81DF9AC -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF9B8 -gUnknown_81DF9B8: @ 81DF9B8 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x22, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x01, 0x01, 0x31, 0x28, 0x00, 0x02 -.4byte gUnknown_81DA31C - -.global gUnknown_81DF9D0 -gUnknown_81DF9D0: @ 81DF9D0 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF9DC -gUnknown_81DF9DC: @ 81DF9DC -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF9E8 -gUnknown_81DF9E8: @ 81DF9E8 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DF9F4 -gUnknown_81DF9F4: @ 81DF9F4 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x2a, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DFA00 -gUnknown_81DFA00: @ 81DFA00 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DFA0C -gUnknown_81DFA0C: @ 81DFA0C -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x2a, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DFA18 -gUnknown_81DFA18: @ 81DFA18 -.byte 0x03, 0x0c, 0x00, 0x00 -.byte 0x42, 0x25, 0x00, 0x00 -.4byte gUnknown_819BF44 -.byte 0x03, 0x0c, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00 -.4byte gUnknown_819C174 -.byte 0x17, 0x03, 0x00, 0x00, 0x18, 0x42, 0x00, 0x00 -.4byte gUnknown_819C330 -.byte 0x03, 0x03, 0x00, 0x00, 0x21, 0x18, 0x00, 0x00 -.4byte gUnknown_819C36C - -.global gUnknown_81DFA48 -gUnknown_81DFA48: @ 81DFA48 -.byte 0x0f, 0x03, 0x00, 0x00, 0x1b, 0x27, 0x00, 0x00 -.4byte gUnknown_81A4380 - -.global gUnknown_81DFA54 -gUnknown_81DFA54: @ 81DFA54 -.byte 0x0f, 0x03, 0x00, 0x00, 0x1b, 0x27, 0x00, 0x00 -.4byte gUnknown_81A64E4 - -.global gUnknown_81DFA60 -gUnknown_81DFA60: @ 81DFA60 -.byte 0x09, 0x03, 0x00, 0x00, 0x1e, 0x24, 0x00, 0x00 -.4byte gUnknown_81BF110 - -.global gUnknown_81DFA6C -gUnknown_81DFA6C: @ 81DFA6C -.byte 0x0f, 0x03, 0x00, 0x00, 0x1b, 0x27, 0x00, 0x00 -.4byte gUnknown_81CA5B0 - -.global gUnknown_81DFA78 -gUnknown_81DFA78: @ 81DFA78 -.4byte gUnknown_819BEC8 - -.global gUnknown_81DFA7C -gUnknown_81DFA7C: @ 81DFA7C -.4byte gUnknown_819E758 - -.global gUnknown_81DFA80 -gUnknown_81DFA80: @ 81DFA80 -.4byte gUnknown_819E8B4 - -.global gUnknown_81DFA84 -gUnknown_81DFA84: @ 81DFA84 -.4byte gUnknown_819EBB4 - -.global gUnknown_81DFA88 -gUnknown_81DFA88: @ 81DFA88 -.4byte gUnknown_819EEE0 - -.global gUnknown_81DFA8C -gUnknown_81DFA8C: @ 81DFA8C -.4byte gUnknown_819F03C - -.global gUnknown_81DFA90 -gUnknown_81DFA90: @ 81DFA90 -.4byte gUnknown_819F39C - -.global gUnknown_81DFA94 -gUnknown_81DFA94: @ 81DFA94 -.4byte gUnknown_819F7B8 - -.global gUnknown_81DFA98 -gUnknown_81DFA98: @ 81DFA98 -.4byte gUnknown_819F9A4 - -.global gUnknown_81DFA9C -gUnknown_81DFA9C: @ 81DFA9C -.4byte gUnknown_81A0500 - -.global gUnknown_81DFAA0 -gUnknown_81DFAA0: @ 81DFAA0 -.4byte gUnknown_81A2390 - -.global gUnknown_81DFAA4 -gUnknown_81DFAA4: @ 81DFAA4 -.4byte gUnknown_81A40E0 - -.global gUnknown_81DFAA8 -gUnknown_81DFAA8: @ 81DFAA8 -.4byte gUnknown_81A43EC - -.global gUnknown_81DFAAC -gUnknown_81DFAAC: @ 81DFAAC -.4byte gUnknown_81A484C - -.global gUnknown_81DFAB0 -gUnknown_81DFAB0: @ 81DFAB0 -.4byte gUnknown_81A536C - -.global gUnknown_81DFAB4 -gUnknown_81DFAB4: @ 81DFAB4 -.4byte gUnknown_81A566C - -.global gUnknown_81DFAB8 -gUnknown_81DFAB8: @ 81DFAB8 -.4byte gUnknown_81A56A8 - -.global gUnknown_81DFABC -gUnknown_81DFABC: @ 81DFABC -.4byte gUnknown_81A5A70 - -.global gUnknown_81DFAC0 -gUnknown_81DFAC0: @ 81DFAC0 -.4byte gUnknown_81A5DCC - -.global gUnknown_81DFAC4 -gUnknown_81DFAC4: @ 81DFAC4 -.4byte gUnknown_81A6378 - -.global gUnknown_81DFAC8 -gUnknown_81DFAC8: @ 81DFAC8 -.4byte gUnknown_81A6550 - -.global gUnknown_81DFACC -gUnknown_81DFACC: @ 81DFACC -.4byte gUnknown_81A6684 - -.global gUnknown_81DFAD0 -gUnknown_81DFAD0: @ 81DFAD0 -.4byte gUnknown_81A7134 - -.global gUnknown_81DFAD4 -gUnknown_81DFAD4: @ 81DFAD4 -.4byte gUnknown_81A7904 - -.global gUnknown_81DFAD8 -gUnknown_81DFAD8: @ 81DFAD8 -.4byte gUnknown_81A7BF4 - -.global gUnknown_81DFADC -gUnknown_81DFADC: @ 81DFADC -.4byte gUnknown_81AB6C8 - -.global gUnknown_81DFAE0 -gUnknown_81DFAE0: @ 81DFAE0 -.4byte gUnknown_81ACC48 - -.global gUnknown_81DFAE4 -gUnknown_81DFAE4: @ 81DFAE4 -.4byte gUnknown_81AED3C - -.global gUnknown_81DFAE8 -gUnknown_81DFAE8: @ 81DFAE8 -.4byte gUnknown_81B07DC - -.global gUnknown_81DFAEC -gUnknown_81DFAEC: @ 81DFAEC -.4byte gUnknown_81B09F4 - -.global gUnknown_81DFAF0 -gUnknown_81DFAF0: @ 81DFAF0 -.4byte gUnknown_81B0C8C - -.global gUnknown_81DFAF4 -gUnknown_81DFAF4: @ 81DFAF4 -.4byte gUnknown_81B2534 - -.global gUnknown_81DFAF8 -gUnknown_81DFAF8: @ 81DFAF8 -.4byte gUnknown_81B2AA4 - -.global gUnknown_81DFAFC -gUnknown_81DFAFC: @ 81DFAFC -.4byte gUnknown_81B38D0 - -.global gUnknown_81DFB00 -gUnknown_81DFB00: @ 81DFB00 -.4byte gUnknown_81B3AC0 - -.global gUnknown_81DFB04 -gUnknown_81DFB04: @ 81DFB04 -.4byte gUnknown_81B3D24 - -.global gUnknown_81DFB08 -gUnknown_81DFB08: @ 81DFB08 -.4byte gUnknown_81B6030 - -.global gUnknown_81DFB0C -gUnknown_81DFB0C: @ 81DFB0C -.4byte gUnknown_81B6548 - -.global gUnknown_81DFB10 -gUnknown_81DFB10: @ 81DFB10 -.4byte gUnknown_81B6624 - -.global gUnknown_81DFB14 -gUnknown_81DFB14: @ 81DFB14 -.4byte gUnknown_81B6880 - -.global gUnknown_81DFB18 -gUnknown_81DFB18: @ 81DFB18 -.4byte gUnknown_81B78B4 - -.global gUnknown_81DFB1C -gUnknown_81DFB1C: @ 81DFB1C -.4byte gUnknown_81B7B44 - -.global gUnknown_81DFB20 -gUnknown_81DFB20: @ 81DFB20 -.4byte gUnknown_81BA658 - -.global gUnknown_81DFB24 -gUnknown_81DFB24: @ 81DFB24 -.4byte gUnknown_81BB148 - -.global gUnknown_81DFB28 -gUnknown_81DFB28: @ 81DFB28 -.4byte gUnknown_81BB620 - -.global gUnknown_81DFB2C -gUnknown_81DFB2C: @ 81DFB2C -.4byte gUnknown_81BEA5C - -.global gUnknown_81DFB30 -gUnknown_81DFB30: @ 81DFB30 -.4byte gUnknown_81BEEBC - -.global gUnknown_81DFB34 -gUnknown_81DFB34: @ 81DFB34 -.4byte gUnknown_81BF17C - -.global gUnknown_81DFB38 -gUnknown_81DFB38: @ 81DFB38 -.4byte gUnknown_81BF63C - -.global gUnknown_81DFB3C -gUnknown_81DFB3C: @ 81DFB3C -.4byte gUnknown_81BF7C8 - -.global gUnknown_81DFB40 -gUnknown_81DFB40: @ 81DFB40 -.4byte gUnknown_81BFF64 - -.global gUnknown_81DFB44 -gUnknown_81DFB44: @ 81DFB44 -.4byte gUnknown_81C01F0 - -.global gUnknown_81DFB48 -gUnknown_81DFB48: @ 81DFB48 -.4byte gUnknown_81C23B4 - -.global gUnknown_81DFB4C -gUnknown_81DFB4C: @ 81DFB4C -.4byte gUnknown_81C2B58 - -.global gUnknown_81DFB50 -gUnknown_81DFB50: @ 81DFB50 -.4byte gUnknown_81C2C44 - -.global gUnknown_81DFB54 -gUnknown_81DFB54: @ 81DFB54 -.4byte gUnknown_81C372C - -.global gUnknown_81DFB58 -gUnknown_81DFB58: @ 81DFB58 -.4byte gUnknown_81C40F4 - -.global gUnknown_81DFB5C -gUnknown_81DFB5C: @ 81DFB5C -.4byte gUnknown_81C458C - -.global gUnknown_81DFB60 -gUnknown_81DFB60: @ 81DFB60 -.4byte gUnknown_81C4A34 - -.global gUnknown_81DFB64 -gUnknown_81DFB64: @ 81DFB64 -.4byte gUnknown_81C4DA8 - -.global gUnknown_81DFB68 -gUnknown_81DFB68: @ 81DFB68 -.4byte gUnknown_81C4F94 - -.global gUnknown_81DFB6C -gUnknown_81DFB6C: @ 81DFB6C -.4byte gUnknown_81C56A8 - -.global gUnknown_81DFB70 -gUnknown_81DFB70: @ 81DFB70 -.4byte gUnknown_81C5AD4 - -.global gUnknown_81DFB74 -gUnknown_81DFB74: @ 81DFB74 -.4byte gUnknown_81C5B30 - -.global gUnknown_81DFB78 -gUnknown_81DFB78: @ 81DFB78 -.4byte gUnknown_81C5CC8 - -.global gUnknown_81DFB7C -gUnknown_81DFB7C: @ 81DFB7C -.4byte gUnknown_81C5F74 - -.global gUnknown_81DFB80 -gUnknown_81DFB80: @ 81DFB80 -.4byte gUnknown_81C6050 - -.global gUnknown_81DFB84 -gUnknown_81DFB84: @ 81DFB84 -.4byte gUnknown_81C6514 - -.global gUnknown_81DFB88 -gUnknown_81DFB88: @ 81DFB88 -.4byte gUnknown_81C80B0 - -.global gUnknown_81DFB8C -gUnknown_81DFB8C: @ 81DFB8C -.4byte gUnknown_81C8914 - -.global gUnknown_81DFB90 -gUnknown_81DFB90: @ 81DFB90 -.4byte gUnknown_81C8990 - -.global gUnknown_81DFB94 -gUnknown_81DFB94: @ 81DFB94 -.4byte gUnknown_81C8D84 - -.global gUnknown_81DFB98 -gUnknown_81DFB98: @ 81DFB98 -.4byte gUnknown_81CA61C - -.global gUnknown_81DFB9C -gUnknown_81DFB9C: @ 81DFB9C -.4byte gUnknown_81CB7F8 - -.global gUnknown_81DFBA0 -gUnknown_81DFBA0: @ 81DFBA0 -.4byte gUnknown_81D0340 - -.global gUnknown_81DFBA4 -gUnknown_81DFBA4: @ 81DFBA4 -.4byte gUnknown_81D1BB8 - -.global gUnknown_81DFBA8 -gUnknown_81DFBA8: @ 81DFBA8 -.4byte gUnknown_81D22F0 - -.global gUnknown_81DFBAC -gUnknown_81DFBAC: @ 81DFBAC -.4byte gUnknown_81D3B78 - -.global gUnknown_81DFBB0 -gUnknown_81DFBB0: @ 81DFBB0 -.4byte gUnknown_81D5C34 - -.global gUnknown_81DFBB4 -gUnknown_81DFBB4: @ 81DFBB4 -.4byte gUnknown_81D87CC - -.global gUnknown_81DFBB8 -gUnknown_81DFBB8: @ 81DFBB8 -.4byte gUnknown_81DA284 - -.global gUnknown_81DFBBC -gUnknown_81DFBBC: @ 81DFBBC -.4byte gUnknown_81DA310 - -.global gUnknown_81DFBC0 -gUnknown_81DFBC0: @ 81DFBC0 -.4byte gUnknown_81DA9BC - -.global gUnknown_81DFBC4 -gUnknown_81DFBC4: @ 81DFBC4 -.4byte gUnknown_81DB734 - -.global gUnknown_81DFBC8 -gUnknown_81DFBC8: @ 81DFBC8 -.4byte gUnknown_81DBC08 - -.global gUnknown_81DFBCC -gUnknown_81DFBCC: @ 81DFBCC -.4byte gUnknown_81DC6B8 - -.global gUnknown_81DFBD0 -gUnknown_81DFBD0: @ 81DFBD0 -.4byte gUnknown_81DCA3C - -.global gUnknown_81DFBD4 -gUnknown_81DFBD4: @ 81DFBD4 -.4byte gUnknown_81DD404 - -.global gUnknown_81DFBD8 -gUnknown_81DFBD8: @ 81DFBD8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF628 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFA18 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFA78 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDB58 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDB88 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDBB8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDBE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDC18 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDC48 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDC78 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DFD18 -gUnknown_81DFD18: @ 81DFD18 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFA7C -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDC90 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DFD68 -gUnknown_81DFD68: @ 81DFD68 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF718 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFA80 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDCF0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF724 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF6D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DFDE0 -gUnknown_81DFDE0: @ 81DFDE0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFA84 - -.global gUnknown_81DFE08 -gUnknown_81DFE08: @ 81DFE08 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFA88 - -.global gUnknown_81DFE30 -gUnknown_81DFE30: @ 81DFE30 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDD08 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF730 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFA8C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDD38 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DFE80 -gUnknown_81DFE80: @ 81DFE80 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF73C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFA90 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDD50 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDD80 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DFEF8 -gUnknown_81DFEF8: @ 81DFEF8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDD98 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF748 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFA94 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDDC8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DFF48 -gUnknown_81DFF48: @ 81DFF48 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDDE0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFA98 - -.global gUnknown_81DFF70 -gUnknown_81DFF70: @ 81DFF70 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDE10 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DFF98 -gUnknown_81DFF98: @ 81DFF98 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDE28 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DFFC0 -gUnknown_81DFFC0: @ 81DFFC0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDE40 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81DFFE8 -gUnknown_81DFFE8: @ 81DFFE8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDE58 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E0010 -gUnknown_81E0010: @ 81E0010 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDE70 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E0038 -gUnknown_81E0038: @ 81E0038 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDE88 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E0060 -gUnknown_81E0060: @ 81E0060 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDEA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E0088 -gUnknown_81E0088: @ 81E0088 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDEB8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E00B0 -gUnknown_81E00B0: @ 81E00B0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDED0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF754 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFA9C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDF00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDF18 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E0150 -gUnknown_81E0150: @ 81E0150 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDF30 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF760 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFAA0 - -.global gUnknown_81E0178 -gUnknown_81E0178: @ 81E0178 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDF78 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF6E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFA48 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFAA4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDF90 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFAA8 - -.global gUnknown_81E01C8 -gUnknown_81E01C8: @ 81E01C8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDFC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF76C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFAAC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DDFF0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE008 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E0240 -gUnknown_81E0240: @ 81E0240 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE020 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF778 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFAB0 - -.global gUnknown_81E0268 -gUnknown_81E0268: @ 81E0268 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFAB4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE050 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFAB8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE080 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFABC - -.global gUnknown_81E02E0 -gUnknown_81E02E0: @ 81E02E0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE0B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF784 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFAC0 - -.global gUnknown_81E0308 -gUnknown_81E0308: @ 81E0308 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF700 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFA54 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFAC4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE0E0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFAC8 - -.global gUnknown_81E0358 -gUnknown_81E0358: @ 81E0358 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE0F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF790 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFACC - -.global gUnknown_81E0380 -gUnknown_81E0380: @ 81E0380 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE128 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF79C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFAD0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE158 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E03D0 -gUnknown_81E03D0: @ 81E03D0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE170 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF7A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFAD4 - -.global gUnknown_81E03F8 -gUnknown_81E03F8: @ 81E03F8 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE1A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF7B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFAD8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE218 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E0448 -gUnknown_81E0448: @ 81E0448 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE230 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF7C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFADC - -.global gUnknown_81E0470 -gUnknown_81E0470: @ 81E0470 -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE260 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF7CC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFAE0 - -.global gUnknown_81E0498 -gUnknown_81E0498: @ 81E0498 -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE2F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF7D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFAE4 - -.global gUnknown_81E04C0 -gUnknown_81E04C0: @ 81E04C0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE380 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFAE8 - -.global gUnknown_81E04E8 -gUnknown_81E04E8: @ 81E04E8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE398 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF7E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFAEC - -.global gUnknown_81E0510 -gUnknown_81E0510: @ 81E0510 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE3C8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF7F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFAF0 - -.global gUnknown_81E0538 -gUnknown_81E0538: @ 81E0538 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE428 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF7FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFAF4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE440 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE458 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E05B0 -gUnknown_81E05B0: @ 81E05B0 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE470 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF808 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFAF8 - -.global gUnknown_81E05D8 -gUnknown_81E05D8: @ 81E05D8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE4B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFAFC - -.global gUnknown_81E0600 -gUnknown_81E0600: @ 81E0600 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE4D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF814 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB00 - -.global gUnknown_81E0628 -gUnknown_81E0628: @ 81E0628 -.byte 0x07, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE500 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF820 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB04 - -.global gUnknown_81E0650 -gUnknown_81E0650: @ 81E0650 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE5A8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF82C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB08 - -.global gUnknown_81E0678 -gUnknown_81E0678: @ 81E0678 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB0C - -.global gUnknown_81E06A0 -gUnknown_81E06A0: @ 81E06A0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE5D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF838 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB10 - -.global gUnknown_81E06C8 -gUnknown_81E06C8: @ 81E06C8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE608 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF844 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB14 - -.global gUnknown_81E06F0 -gUnknown_81E06F0: @ 81E06F0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE638 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF850 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB18 - -.global gUnknown_81E0718 -gUnknown_81E0718: @ 81E0718 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE668 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF85C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB1C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE698 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E0768 -gUnknown_81E0768: @ 81E0768 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE6B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF868 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB20 - -.global gUnknown_81E0790 -gUnknown_81E0790: @ 81E0790 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE6E0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF874 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB24 - -.global gUnknown_81E07B8 -gUnknown_81E07B8: @ 81E07B8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE710 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF880 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB28 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE740 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE788 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E0830 -gUnknown_81E0830: @ 81E0830 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE7A0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF88C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB2C - -.global gUnknown_81E0858 -gUnknown_81E0858: @ 81E0858 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE7D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFA60 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE7E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB34 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE818 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB38 - -.global gUnknown_81E08F8 -gUnknown_81E08F8: @ 81E08F8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE848 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB3C - -.global gUnknown_81E0920 -gUnknown_81E0920: @ 81E0920 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE878 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF898 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB40 - -.global gUnknown_81E0948 -gUnknown_81E0948: @ 81E0948 -.byte 0x07, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE8F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF8A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB44 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE998 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E09C0 -gUnknown_81E09C0: @ 81E09C0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE9B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF8B0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB48 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE9E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E0A10 -gUnknown_81E0A10: @ 81E0A10 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB4C - -.global gUnknown_81E0A38 -gUnknown_81E0A38: @ 81E0A38 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DE9F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF8BC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB50 - -.global gUnknown_81E0A60 -gUnknown_81E0A60: @ 81E0A60 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DEA28 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF8C8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB54 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DEA58 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E0AB0 -gUnknown_81E0AB0: @ 81E0AB0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DEA70 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF8D4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB58 - -.global gUnknown_81E0AD8 -gUnknown_81E0AD8: @ 81E0AD8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DEAA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF8E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB5C - -.global gUnknown_81E0B00 -gUnknown_81E0B00: @ 81E0B00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DEAD0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB60 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DEAE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB64 - -.global gUnknown_81E0B50 -gUnknown_81E0B50: @ 81E0B50 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DEB18 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF8EC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB68 - -.global gUnknown_81E0B78 -gUnknown_81E0B78: @ 81E0B78 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DEB48 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF8F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB6C - -.global gUnknown_81E0BA0 -gUnknown_81E0BA0: @ 81E0BA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB70 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DEB78 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB74 - -.global gUnknown_81E0BF0 -gUnknown_81E0BF0: @ 81E0BF0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DEB90 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF904 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB78 - -.global gUnknown_81E0C18 -gUnknown_81E0C18: @ 81E0C18 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB7C - -.global gUnknown_81E0C40 -gUnknown_81E0C40: @ 81E0C40 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DEBC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF910 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB80 - -.global gUnknown_81E0C68 -gUnknown_81E0C68: @ 81E0C68 -.byte 0x0d, 0x00, 0x00, 0x00 -.4byte gUnknown_81DEBF0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF91C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB84 - -.global gUnknown_81E0C90 -gUnknown_81E0C90: @ 81E0C90 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81DED28 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF940 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB88 - -.global gUnknown_81E0CB8 -gUnknown_81E0CB8: @ 81E0CB8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB8C - -.global gUnknown_81E0CE0 -gUnknown_81E0CE0: @ 81E0CE0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DED88 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB90 - -.global gUnknown_81E0D08 -gUnknown_81E0D08: @ 81E0D08 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DEDB8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF94C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB94 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DEDE8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DEE00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E0D80 -gUnknown_81E0D80: @ 81E0D80 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFA6C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E0DA8 -gUnknown_81E0DA8: @ 81E0DA8 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81DEE18 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF958 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB98 - -.global gUnknown_81E0DD0 -gUnknown_81E0DD0: @ 81E0DD0 -.byte 0x08, 0x00, 0x00, 0x00 -.4byte gUnknown_81DEE78 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF964 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFB9C -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81DEF38 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81DEF98 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E0E48 -gUnknown_81E0E48: @ 81E0E48 -.byte 0x08, 0x00, 0x00, 0x00 -.4byte gUnknown_81DEFF8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF970 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFBA0 - -.global gUnknown_81E0E70 -gUnknown_81E0E70: @ 81E0E70 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF0B8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFBA4 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF130 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF97C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFBA8 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF1A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF1F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E0F10 -gUnknown_81E0F10: @ 81E0F10 -.byte 0x08, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF238 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF988 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFBAC - -.global gUnknown_81E0F38 -gUnknown_81E0F38: @ 81E0F38 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF2F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF994 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFBB0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF370 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E0F88 -gUnknown_81E0F88: @ 81E0F88 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF388 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E0FB0 -gUnknown_81E0FB0: @ 81E0FB0 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF3A0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF9A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFBB4 - -.global gUnknown_81E0FD8 -gUnknown_81E0FD8: @ 81E0FD8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF9AC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFBB8 - -.global gUnknown_81E1000 -gUnknown_81E1000: @ 81E1000 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF400 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF9B8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFBBC - -.global gUnknown_81E1028 -gUnknown_81E1028: @ 81E1028 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF430 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF9D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFBC0 - -.global gUnknown_81E1050 -gUnknown_81E1050: @ 81E1050 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF478 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF9DC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFBC4 - -.global gUnknown_81E1078 -gUnknown_81E1078: @ 81E1078 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF4C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF9E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFBC8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF4D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF4F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF508 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E1118 -gUnknown_81E1118: @ 81E1118 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF520 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E1140 -gUnknown_81E1140: @ 81E1140 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF538 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF9F4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFBCC - -.global gUnknown_81E1168 -gUnknown_81E1168: @ 81E1168 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF568 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFA00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFBD0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF598 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF5B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E11E0 -gUnknown_81E11E0: @ 81E11E0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF5C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E1208 -gUnknown_81E1208: @ 81E1208 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81DF5E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFA0C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFBD4 - -.global gUnknown_81E1230 -gUnknown_81E1230: @ 81E1230 -.byte 0x08, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFBD8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFD18 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFD68 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFDE0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFE08 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFE30 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFE80 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFEF8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFF48 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFF70 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFF98 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFFC0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81DFFE8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0010 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0038 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0060 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0088 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81E00B0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0150 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0178 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81E01C8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0240 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0268 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E02E0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0308 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0358 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0380 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E03D0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81E03F8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0448 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0470 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0498 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E04C0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E04E8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0510 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0538 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E05B0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E05D8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0600 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0628 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0650 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0678 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E06A0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E06C8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E06F0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0718 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0768 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0790 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81E07B8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0830 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0858 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E08F8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0920 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0948 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81E09C0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0A10 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0A38 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0A60 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0AB0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0AD8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0B00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0B50 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0B78 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0BA0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0BF0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0C18 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0C40 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0C68 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0C90 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0CB8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0CE0 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0D08 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0D80 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0DA8 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0DD0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0E48 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0E70 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0F10 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0F38 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0F88 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0FB0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E0FD8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1000 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1028 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1050 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1078 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1118 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1140 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1168 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E11E0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1208 - -.global gUnknown_81E1510 -gUnknown_81E1510: @ 81E1510 -.byte 0x1f, 0x24, 0x06, 0x02, 0x01, 0x01, 0x01, 0x00, 0x1f, 0x22, 0x02, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x1f, 0x24, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x1f, 0x23, 0x02, 0x00, 0x01, 0x01, 0x02, 0x01, 0x10, 0x23, 0x02, 0x00, 0x01, 0x01, 0x02, 0x01, 0x22, 0x17, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x22, 0x24, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x26, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x25, 0x26, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x25, 0x23, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x22, 0x23, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x22, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x24, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1f, 0x24, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x22, 0x20, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1f, 0x22, 0x00, 0x02, 0x01, 0x01, 0x01, 0x03, 0x22, 0x22, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x22, 0x42, 0x02, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x0f, 0x2e, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x26, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x32, 0x2a, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x32, 0x2a, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x26, 0x2f, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x2f, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x37, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x2f, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x22, 0x20, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x2d, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1f, 0x22, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x24, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x22, 0x27, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x23, 0x02, 0x00, 0x01, 0x01, 0x02, 0x01, 0x22, 0x36, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x25, 0x27, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x25, 0x25, 0x02, 0x00, 0x01, 0x01, 0x02, 0x01, 0x25, 0x36, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1f, 0x27, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1f, 0x25, 0x02, 0x00 -.byte 0x01, 0x01, 0x02, 0x01, 0x1f, 0x36, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x23, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x33, 0x28, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x24, 0x2e, 0x04, 0x00 -.byte 0x01, 0x01, 0x02, 0x01, 0x01, 0x2e, 0x00, 0x04, 0x01, 0x01, 0x02, 0x01, 0x22, 0x20, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x25, 0x1e, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x22, 0x20, 0x02, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x22, 0x20, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x22, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x21, 0x2b, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x19, 0x2b, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x0c, 0x2b, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x20, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x25, 0x20, 0x00, 0x00, 0x01, 0x01, 0x02, 0x01, 0x24, 0x23, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x22, 0x23, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x21, 0x25, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x25, 0x25, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1f, 0x24, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x22, 0x22, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x26, 0x23, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x23, 0x24, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x23, 0x26, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x22, 0x20, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x25, 0x20, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x23, 0x29, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x23, 0x24, 0x02, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x22, 0x2a, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x22, 0x2b, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x22, 0x29, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x26, 0x29, 0x02, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x28, 0x2a, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x21, 0x2d, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x1f, 0x29, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x22, 0x27, 0x02, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x25, 0x1f, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x22, 0x2d, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x2a, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x2a, 0x2b, 0x02, 0x00 -.byte 0x01, 0x01, 0x02, 0x01, 0x26, 0x2e, 0x02, 0x00, 0x01, 0x01, 0x02, 0x01, 0x22, 0x41, 0x02, 0x00, 0x01, 0x01, 0x02, 0x01, 0x26, 0x2a, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x3f, 0x02, 0x00 -.byte 0x01, 0x01, 0x02, 0x01, 0x26, 0x2f, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x3b, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x2f, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x24, 0x29, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x20, 0x29, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x30, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x2d, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1c, 0x2a, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x20, 0x32, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x20, 0x2f, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x24, 0x32, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x24, 0x2f, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x29, 0x2c, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x24, 0x28, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x28, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1c, 0x2d, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x1c, 0x2c, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x24, 0x30, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x28, 0x2c, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x27, 0x2e, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x22, 0x1e, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x18, 0x2b, 0x02, 0x00, 0x01, 0x01, 0x02, 0x01, 0x1d, 0x2b, 0x02, 0x00, 0x01, 0x01, 0x02, 0x01, 0x25, 0x2b, 0x02, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x20, 0x2d, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x23, 0x28, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1e, 0x2b, 0x02, 0x00, 0x01, 0x01, 0x02, 0x01, 0x24, 0x1f, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x24, 0x29, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x2b, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x1e, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x24, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x21, 0x26, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x1f, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x26, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x20, 0x28, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x22, 0x2c, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x17, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x1f, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x1d, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x24, 0x20, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x1b, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x22, 0x02, 0x00, 0x01, 0x01, 0x02, 0x01, 0x2a, 0x16, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x24, 0x1e, 0x02, 0x00, 0x01, 0x01, 0x02, 0x01, 0x24, 0x1e, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x3c, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x22, 0x1e, 0x02, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x19, 0x1d, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x30, 0x29, 0x00, 0x00, 0x11, 0x07, 0x03, 0x02, 0x28, 0x2a, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x25, 0x28, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01 - -.global gUnknown_81E1940 -gUnknown_81E1940: @ 81E1940 -.byte 0x5c, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1230 -.4byte gUnknown_81E1510 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81E1954 -gUnknown_81E1954: @ 81E1954 -.byte 0xf6, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x01, 0x00, 0x12, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x01, 0x10, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x2d, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x01, 0x2e, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x06, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x08, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x08, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x09, 0x00, 0x0a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0a, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0b, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0b, 0x00, 0x0a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0b, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x06, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x06, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x06, 0x00, 0x0e, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x07, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x08, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x07, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E1D74 -gUnknown_81E1D74: @ 81E1D74 -.string "../data/ground/ground_data_b01p02a_station.c\0" -.align 2, 0 - -.global gUnknown_81E1DA4 -gUnknown_81E1DA4: @ 81E1DA4 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1954 - -.global gUnknown_81E1DB0 -gUnknown_81E1DB0: @ 81E1DB0 -.byte 0xf6, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x01, 0x00, 0xff, 0xff, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E1DE0 -gUnknown_81E1DE0: @ 81E1DE0 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1DB0 - -.global gUnknown_81E1DEC -gUnknown_81E1DEC: @ 81E1DEC -.byte 0xf6, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.4byte gUnknown_81E1EBC -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xe8, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E1EBC -gUnknown_81E1EBC: @ 81E1EBC -.string "Would you like to save your adventure?\0" -.align 2, 0 - -.global gUnknown_81E1EE4 -gUnknown_81E1EE4: @ 81E1EE4 -.byte 0x39, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1DEC - -.global gUnknown_81E1EF0 -gUnknown_81E1EF0: @ 81E1EF0 -.byte 0xf6, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xb4, 0x05, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E1F40 -gUnknown_81E1F40: @ 81E1F40 -.byte 0xf6, 0x00, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xca, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81E20D0 -gUnknown_81E20D0: @ 81E20D0 -.byte 0xf6, 0x00, 0x93, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E2110 -gUnknown_81E2110: @ 81E2110 -.byte 0xf6, 0x00, 0x9a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E2150 -gUnknown_81E2150: @ 81E2150 -.byte 0xf6, 0x00, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E2190 -gUnknown_81E2190: @ 81E2190 -.byte 0xf6, 0x00, 0xa8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E21D0 -gUnknown_81E21D0: @ 81E21D0 -.byte 0xf6, 0x00, 0xaf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x44 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E2220 -gUnknown_81E2220: @ 81E2220 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E21D0 - -.global gUnknown_81E222C -gUnknown_81E222C: @ 81E222C -.byte 0xf6, 0x00, 0xb9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -setAnimation 2 -.byte 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81E226C -gUnknown_81E226C: @ 81E226C -.byte 0xf6, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -setAnimation 2 -.byte 0x5f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81E22AC -gUnknown_81E22AC: @ 81E22AC -.byte 0xf6, 0x00, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E230C -gUnknown_81E230C: @ 81E230C -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E22AC - -.global gUnknown_81E2318 -gUnknown_81E2318: @ 81E2318 -.byte 0xf6, 0x00, 0xd2, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -setAnimation 2 -.byte 0x5e, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E2368 -gUnknown_81E2368: @ 81E2368 -.byte 0xf6, 0x00, 0xda, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E23B8 -gUnknown_81E23B8: @ 81E23B8 -.byte 0xf6, 0x00, 0xe2, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x0d, 0x00 -.byte 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x0d, 0x00 -.byte 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E2438 -gUnknown_81E2438: @ 81E2438 -.byte 0x90, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E23B8 - -.global gUnknown_81E2444 -gUnknown_81E2444: @ 81E2444 -.byte 0xf6, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E24A4 -gUnknown_81E24A4: @ 81E24A4 -.byte 0xf6, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x06, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E25E4 -gUnknown_81E25E4: @ 81E25E4 -.string "{CENTER_ALIGN}The next morning...\0" -.align 2, 0 - -.global gUnknown_81E25FC -gUnknown_81E25FC: @ 81E25FC -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E24A4 - -.global gUnknown_81E2608 -gUnknown_81E2608: @ 81E2608 -.byte 0xf6, 0x00, 0x11, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E2688 -gUnknown_81E2688: @ 81E2688 -.byte 0xf6, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x06, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E2758 -gUnknown_81E2758: @ 81E2758 -.byte 0x92, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E2688 - -.global gUnknown_81E2764 -gUnknown_81E2764: @ 81E2764 -.byte 0xf6, 0x00, 0x2e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E27E4 -gUnknown_81E27E4: @ 81E27E4 -.byte 0xf6, 0x00, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E2874 -gUnknown_81E2874: @ 81E2874 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E27E4 - -.global gUnknown_81E2880 -gUnknown_81E2880: @ 81E2880 -.byte 0xf6, 0x00, 0x47, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E29C0 -gUnknown_81E29C0: @ 81E29C0 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E2880 - -.global gUnknown_81E29CC -gUnknown_81E29CC: @ 81E29CC -.byte 0xf6, 0x00, 0x60, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E2A4C -gUnknown_81E2A4C: @ 81E2A4C -.byte 0xf6, 0x00, 0x6b, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E2B0C -gUnknown_81E2B0C: @ 81E2B0C -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E2A4C - -.global gUnknown_81E2B18 -gUnknown_81E2B18: @ 81E2B18 -.byte 0xf6, 0x00, 0x7c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E2B98 -gUnknown_81E2B98: @ 81E2B98 -.byte 0xf6, 0x00, 0x87, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x06, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E2C68 -gUnknown_81E2C68: @ 81E2C68 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E2B98 - -.global gUnknown_81E2C74 -gUnknown_81E2C74: @ 81E2C74 -.byte 0xf6, 0x00, 0x99, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -setAnimation 6 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E2D14 -gUnknown_81E2D14: @ 81E2D14 -.byte 0xf6, 0x00, 0xa6, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x12, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E2E54 -gUnknown_81E2E54: @ 81E2E54 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E2D14 - -.global gUnknown_81E2E60 -gUnknown_81E2E60: @ 81E2E60 -.byte 0xf6, 0x00, 0xbf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E2EC0 -gUnknown_81E2EC0: @ 81E2EC0 -.byte 0xf6, 0x00, 0xc8, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E4470 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E4458 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E4424 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E4458 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E43FC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E4458 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E43FC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E43D8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E43C4 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E438C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E4360 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E432C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E4304 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E42F8 -.byte 0x2e, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x03, 0x02, 0x00, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E42E0 -.byte 0x2d, 0x09, 0x02, 0x00, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E42CC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E4284 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E4240 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x2e, 0x03, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E422C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E4208 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E41AC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E4144 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E411C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E4100 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E40BC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E4070 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E4040 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3FE4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3FBC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3F94 -.byte 0xe1, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xe8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x0f, 0x01, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3F84 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x91, 0x04, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3F60 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3F50 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3F2C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3ED0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x01, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3E8C -setFlag 0x07 -.byte 0x14, 0x02, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3E54 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3DFC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3DCC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3D88 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x01, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southeast -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3D4C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3D0C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3CD8 -closeTextBox -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3C88 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3C50 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3C18 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3BE0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3BAC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3B78 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3B3C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3BE0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E3B10 -closeTextBox -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81E3B10 -gUnknown_81E3B10: @ 81E3B10 -.string " We should go!\n" -.string "To the {COLOR_1 YELLOW_4}Great Canyon{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_81E3B3C -gUnknown_81E3B3C: @ 81E3B3C -.string " I think Xatu is the one to\n" -.string "ask for something like this.\0" -.align 2, 0 - -.global gUnknown_81E3B78 -gUnknown_81E3B78: @ 81E3B78 -.string " But the mirage Pokémon\n" -.string "does interest you{COMMA} right?\0" -.align 2, 0 - -.global gUnknown_81E3BAC -gUnknown_81E3BAC: @ 81E3BAC -.string " We should go out there.\n" -.string "To the {COLOR_1 YELLOW_4}Great Canyon{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_81E3BE0 -gUnknown_81E3BE0: @ 81E3BE0 -.string " Xatu should be at the peak\n" -.string "of the {COLOR_1 YELLOW_4}Great Canyon{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_81E3C18 -gUnknown_81E3C18: @ 81E3C18 -.string " For something like this{COMMA}\n" -.string "Xatu{APOSTROPHE}d be the one to ask.\0" -.align 2, 0 - -.global gUnknown_81E3C50 -gUnknown_81E3C50: @ 81E3C50 -.string " But you are interested in\n" -.string "the mirage Pokémon{COMMA} right?\0" -.align 2, 0 - -.global gUnknown_81E3C88 -gUnknown_81E3C88: @ 81E3C88 -.string " {COLOR_1 GREEN}Clear Wing{END_COLOR_TEXT_1}{COMMA} huh...{WAIT_PRESS}\n" -.string "I don{APOSTROPHE}t have a clue what this is all about...\0" -.align 2, 0 - -.global gUnknown_81E3CD8 -gUnknown_81E3CD8: @ 81E3CD8 -.string " Oh{COMMA} no.\n" -.string "When I walk{COMMA} I always totter.{WAIT_PRESS}\n" -.string "Bye.\0" -.align 2, 0 - -.global gUnknown_81E3D0C -gUnknown_81E3D0C: @ 81E3D0C -.string " Wait{COMMA} are you OK?{WAIT_PRESS}\n" -.string "You{APOSTROPHE}re still unsteady on your feet.\0" -.align 2, 0 - -.global gUnknown_81E3D4C -gUnknown_81E3D4C: @ 81E3D4C -.string " Hey{COMMA} are you OK?{WAIT_PRESS}\n" -.string "You still look wobbly on your feet.\0" -.align 2, 0 - -.global gUnknown_81E3D88 -gUnknown_81E3D88: @ 81E3D88 -.string " ...Sniff...\n" -.string "It{APOSTROPHE}s very disappointing{COMMA} but I{APOSTROPHE}m giving up...\0" -.align 2, 0 - -.global gUnknown_81E3DCC -gUnknown_81E3DCC: @ 81E3DCC -.string " But I couldn{APOSTROPHE}t learn anything\n" -.string "beyond that.\0" -.align 2, 0 - -.global gUnknown_81E3DFC -gUnknown_81E3DFC: @ 81E3DFC -.string " But after checking around{COMMA}\n" -.string "it appears to be related to the mirage\n" -.string "Pokémon somehow.\0" -.align 2, 0 - -.global gUnknown_81E3E54 -gUnknown_81E3E54: @ 81E3E54 -.string " At first I thought it\n" -.string "was just pretty to look at...\0" -.align 2, 0 - -.global gUnknown_81E3E8C -gUnknown_81E3E8C: @ 81E3E8C -.string " See? Depending on the light{COMMA}\n" -.string "it takes on many different colors.\0" -.align 2, 0 - -.global gUnknown_81E3ED0 -gUnknown_81E3ED0: @ 81E3ED0 -.string " It{APOSTROPHE}s a wing of some sort.\n" -.string "It{APOSTROPHE}s transparent{COMMA} but...{WAIT_PRESS}\n" -.string "If you hold it up like this...\0" -.align 2, 0 - -.global gUnknown_81E3F2C -gUnknown_81E3F2C: @ 81E3F2C -.string " Yes.{WAIT_PRESS}\n" -.string "I found it on my travels.\0" -.align 2, 0 - -.global gUnknown_81E3F50 -gUnknown_81E3F50: @ 81E3F50 -.string " Clear Wing?\0" -.align 2, 0 - -.global gUnknown_81E3F60 -gUnknown_81E3F60: @ 81E3F60 -.string " It{APOSTROPHE}s a...{WAIT_PRESS}\n" -.string "{COLOR_1 GREEN_2}Clear Wing{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_81E3F84 -gUnknown_81E3F84: @ 81E3F84 -.string " What is this?\0" -.align 2, 0 - -.global gUnknown_81E3F94 -gUnknown_81E3F94: @ 81E3F94 -.string "{CENTER_ALIGN}{ARG_NICKNAME_1} received something\n" -.string "{CENTER_ALIGN}from {ARG_NICKNAME_2}.\0" -.align 2, 0 - -.global gUnknown_81E3FBC -gUnknown_81E3FBC: @ 81E3FBC -.string " ...Please{COMMA} I want you to\n" -.string "have this.\0" -.align 2, 0 - -.global gUnknown_81E3FE4 -gUnknown_81E3FE4: @ 81E3FE4 -.string " If I push myself any\n" -.string "further{COMMA} I will collapse again.\n" -.string "It{APOSTROPHE}s not good for my health...\0" -.align 2, 0 - -.global gUnknown_81E4040 -gUnknown_81E4040: @ 81E4040 -.string " But I...{WAIT_PRESS}\n" -.string "I{APOSTROPHE}ve reached my physical limit...\0" -.align 2, 0 - -.global gUnknown_81E4070 -gUnknown_81E4070: @ 81E4070 -.string " Wait a second!{WAIT_PRESS}\n" -.string "Are you sure you won{APOSTROPHE}t regret giving up\n" -.string "that easily?\0" -.align 2, 0 - -.global gUnknown_81E40BC -gUnknown_81E40BC: @ 81E40BC -.string " Hold up a second!{WAIT_PRESS}\n" -.string "Are you sure you want to give up that\n" -.string "easily?\0" -.align 2, 0 - -.global gUnknown_81E4100 -gUnknown_81E4100: @ 81E4100 -.string " I{APOSTROPHE}m simply worn out...\0" -.align 2, 0 - -.global gUnknown_81E411C -gUnknown_81E411C: @ 81E411C -.string " I...{WAIT_PRESS}\n" -.string "I{APOSTROPHE}m giving up on my quest...\0" -.align 2, 0 - -.global gUnknown_81E4144 -gUnknown_81E4144: @ 81E4144 -.string " But I{APOSTROPHE}ve had no luck...{WAIT_PRESS}\n" -.string "Finally{COMMA} I became dizzy from fatigue...{WAIT_PRESS}\n" -.string "And I must have passed out.\0" -.align 2, 0 - -.global gUnknown_81E41AC -gUnknown_81E41AC: @ 81E41AC -.string " Ever since then{COMMA} I{APOSTROPHE}ve been\n" -.string "traveling all over in hopes of seeing\n" -.string "the mirage Pokémon...\0" -.align 2, 0 - -.global gUnknown_81E4208 -gUnknown_81E4208: @ 81E4208 -.string " Yes! That!{WAIT_PRESS}\n" -.string "Isn{APOSTROPHE}t it exciting?\0" -.align 2, 0 - -.global gUnknown_81E422C -gUnknown_81E422C: @ 81E422C -.string " A mirage Pokémon?\0" -.align 2, 0 - -.global gUnknown_81E4240 -gUnknown_81E4240: @ 81E4240 -.string " It was on my travels that\n" -.string "I heard rumors of a mirage Pokémon...\0" -.align 2, 0 - -.global gUnknown_81E4284 -gUnknown_81E4284: @ 81E4284 -.string " I{APOSTROPHE}ve been traveling all over\n" -.string "seeing the sights and other Pokémon.\0" -.align 2, 0 - -.global gUnknown_81E42CC -gUnknown_81E42CC: @ 81E42CC -.string " I like to travel.\0" -.align 2, 0 - -.global gUnknown_81E42E0 -gUnknown_81E42E0: @ 81E42E0 -.string " I{APOSTROPHE}m named Spinda.\0" -.align 2, 0 - -.global gUnknown_81E42F8 -gUnknown_81E42F8: @ 81E42F8 -.string " Y-yes...\0" -.align 2, 0 - -.global gUnknown_81E4304 -gUnknown_81E4304: @ 81E4304 -.string " Rather than that...{WAIT_PRESS}\n" -.string "What happened?\0" -.align 2, 0 - -.global gUnknown_81E432C -gUnknown_81E432C: @ 81E432C -.string " Hahaha{COMMA} it{APOSTROPHE}s OK.\n" -.string "There{APOSTROPHE}s no need for thanks.\0" -.align 2, 0 - -.global gUnknown_81E4360 -gUnknown_81E4360: @ 81E4360 -.string " But forget that...{WAIT_PRESS}\n" -.string "What happened to you?\0" -.align 2, 0 - -.global gUnknown_81E438C -gUnknown_81E438C: @ 81E438C -.string " Hahaha{COMMA} don{APOSTROPHE}t worry about it.\n" -.string "No need for thanks.\0" -.align 2, 0 - -.global gUnknown_81E43C4 -gUnknown_81E43C4: @ 81E43C4 -.string " Th-thank you...\0" -.align 2, 0 - -.global gUnknown_81E43D8 -gUnknown_81E43D8: @ 81E43D8 -.string " Oh!\n" -.string "...Did you maybe rescue me?\0" -.align 2, 0 - -.global gUnknown_81E43FC -gUnknown_81E43FC: @ 81E43FC -.string " It{APOSTROPHE}s also our rescue team{APOSTROPHE}s\n" -.string "base.\0" -.align 2, 0 - -.global gUnknown_81E4424 -gUnknown_81E4424: @ 81E4424 -.string " It also happens to be our\n" -.string "rescue team{APOSTROPHE}s base.\0" -.align 2, 0 - -.global gUnknown_81E4458 -gUnknown_81E4458: @ 81E4458 -.string " It{APOSTROPHE}s {ARG_NICKNAME_0}{APOSTROPHE}s house.\0" -.align 2, 0 - -.global gUnknown_81E4470 -gUnknown_81E4470: @ 81E4470 -.string " Wh-where...?\0" -.align 2, 0 - -.global gUnknown_81E4480 -gUnknown_81E4480: @ 81E4480 -.byte 0xf6, 0x00, 0xa1, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northwest -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, north -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0xe8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, north -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northwest -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southwest -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southeast -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E4720 -gUnknown_81E4720: @ 81E4720 -.byte 0xf6, 0x00, 0xce, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x54, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x2c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xfe, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 5 -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 7 -.byte 0x0f, 0x02, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southeast -.byte 0x54, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x6a, 0x00, 0x00, 0x01, 0xe0, 0xff, 0xff, 0xff, 0x10, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x6a, 0x00, 0x00, 0x01, 0xe0, 0xff, 0xff, 0xff, 0x18, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x6a, 0x00, 0x00, 0x01, 0xf0, 0xff, 0xff, 0xff, 0x10, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E4E10 -gUnknown_81E4E10: @ 81E4E10 -.byte 0xf6, 0x00, 0x40, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x56, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E4E40 -gUnknown_81E4E40: @ 81E4E40 -.byte 0xf6, 0x00, 0x46, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x58, 0x01, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x20, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E4ED0 -gUnknown_81E4ED0: @ 81E4ED0 -.byte 0xf6, 0x00, 0x52, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x56, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E4F00 -gUnknown_81E4F00: @ 81E4F00 -.byte 0xf6, 0x00, 0x58, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5044 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5000 -closeTextBox -.byte 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E5000 -gUnknown_81E5000: @ 81E5000 -.string "{CENTER_ALIGN}A time so early in the morning\n" -.string "{CENTER_ALIGN}that everyone is still in bed...\0" -.align 2, 0 - -.global gUnknown_81E5044 -gUnknown_81E5044: @ 81E5044 -.string "{CENTER_ALIGN}No...\n" -.string "{CENTER_ALIGN}Morning{COMMA} but only by time...\0" -.align 2, 0 - -.global gUnknown_81E5070 -gUnknown_81E5070: @ 81E5070 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E4F00 - -.global gUnknown_81E507C -gUnknown_81E507C: @ 81E507C -.byte 0xf6, 0x00, 0x6e, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E52B4 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E52A4 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5288 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00, 0xfc, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x97, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E526C -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -rotate 0x04, CW, south -.byte 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -pause 0x0a -.byte 0x2e, 0x02, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5254 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E522C -closeTextBox -.byte 0x6a, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x6a, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81E522C -gUnknown_81E522C: @ 81E522C -.string "What...{WAIT_PRESS}\n" -.string "What{APOSTROPHE}s happening outside?!\0" -.align 2, 0 - -.global gUnknown_81E5254 -gUnknown_81E5254: @ 81E5254 -.string "Wha...{WAIT_PRESS} What is it?!\0" -.align 2, 0 - -.global gUnknown_81E526C -gUnknown_81E526C: @ 81E526C -.string "Gggwwooooooooooooaahhhhh!\0" -.align 2, 0 - -.global gUnknown_81E5288 -gUnknown_81E5288: @ 81E5288 -.string "........................\0" -.align 2, 0 - -.global gUnknown_81E52A4 -gUnknown_81E52A4: @ 81E52A4 -.string "............\0" -.align 2, 0 - -.global gUnknown_81E52B4 -gUnknown_81E52B4: @ 81E52B4 -.string "......\0" -.align 2, 0 - -.global gUnknown_81E52BC -gUnknown_81E52BC: @ 81E52BC -.byte 0xf6, 0x00, 0x8d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5500 -closeTextBox -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x01, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E54E8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E54D8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E54B4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E54E8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E54D8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E548C -closeTextBox -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E548C -gUnknown_81E548C: @ 81E548C -.string " {ARG_NICKNAME_0}{COMMA} wake up!\n" -.string "Come on{COMMA} wake up!\0" -.align 2, 0 - -.global gUnknown_81E54B4 -gUnknown_81E54B4: @ 81E54B4 -.string " ...{ARG_NICKNAME_0}{COMMA} wake up!\n" -.string "Get up already!\0" -.align 2, 0 - -.global gUnknown_81E54D8 -gUnknown_81E54D8: @ 81E54D8 -.string " Hey{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81E54E8 -gUnknown_81E54E8: @ 81E54E8 -.string " ............{WAIT_PRESS}\n" -.string "Hey...\0" -.align 2, 0 - -.global gUnknown_81E5500 -gUnknown_81E5500: @ 81E5500 -.string "{CENTER_ALIGN}Several hours later...\0" -.align 2, 0 - -.global gUnknown_81E551C -gUnknown_81E551C: @ 81E551C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E52BC - -.global gUnknown_81E5528 -gUnknown_81E5528: @ 81E5528 -.byte 0xf6, 0x00, 0xb0, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E56F8 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E56BC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E56A0 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5688 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5650 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5638 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x6a, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81E5638 -gUnknown_81E5638: @ 81E5638 -.string " Let{APOSTROPHE}s take a look!\0" -.align 2, 0 - -.global gUnknown_81E5650 -gUnknown_81E5650: @ 81E5650 -.string " There{APOSTROPHE}s some sort of a\n" -.string "commotion down at the square.\0" -.align 2, 0 - -.global gUnknown_81E5688 -gUnknown_81E5688: @ 81E5688 -.string " {ARG_NICKNAME_0}{COMMA} are you\n" -.string "awake?\0" -.align 2, 0 - -.global gUnknown_81E56A0 -gUnknown_81E56A0: @ 81E56A0 -.string " Let{APOSTROPHE}s go check it out!\0" -.align 2, 0 - -.global gUnknown_81E56BC -gUnknown_81E56BC: @ 81E56BC -.string " Sounds like there{APOSTROPHE}s a big\n" -.string "ruckus going on at the square.\0" -.align 2, 0 - -.global gUnknown_81E56F8 -gUnknown_81E56F8: @ 81E56F8 -.string " You{APOSTROPHE}re finally awake{COMMA}\n" -.string "{ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_81E5718 -gUnknown_81E5718: @ 81E5718 -.byte 0xf6, 0x00, 0xc5, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81E5778 -gUnknown_81E5778: @ 81E5778 -.byte 0xf6, 0x00, 0xce, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E5878 -gUnknown_81E5878: @ 81E5878 -.byte 0x90, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5778 - -.global gUnknown_81E5884 -gUnknown_81E5884: @ 81E5884 -.byte 0xf6, 0x00, 0xe3, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x20, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6278 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6260 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6238 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6260 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E61F8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E61B8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6178 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6140 -.byte 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E60FC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E60C4 -.byte 0x2e, 0x15, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6064 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5FFC -.byte 0xd8, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5FD0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5FA4 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5F9C -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5F98 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc7, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5F80 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5F68 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5F38 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5EF4 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5EC0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5E8C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5FD0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5FA4 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5F9C -.byte 0xd9, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5F98 -.byte 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5E48 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5E0C -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5DF4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5DC4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x3b, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E5DC4 -gUnknown_81E5DC4: @ 81E5DC4 -.string " I{APOSTROPHE}ll let {ARG_NICKNAME_2} know\n" -.string "he hasn{APOSTROPHE}t been accepted.\0" -.align 2, 0 - -.global gUnknown_81E5DF4 -gUnknown_81E5DF4: @ 81E5DF4 -.string " I{APOSTROPHE}ll go tell {ARG_NICKNAME_2} no.\0" -.align 2, 0 - -.global gUnknown_81E5E0C -gUnknown_81E5E0C: @ 81E5E0C -.string " OK...\n" -.string "It{APOSTROPHE}s disappointing{COMMA} but it can{APOSTROPHE}t be helped.\0" -.align 2, 0 - -.global gUnknown_81E5E48 -gUnknown_81E5E48: @ 81E5E48 -.string " All right...\n" -.string "It{APOSTROPHE}s disappointing{COMMA} but that{APOSTROPHE}s the way\n" -.string "it goes.\0" -.align 2, 0 - -.global gUnknown_81E5E8C -gUnknown_81E5E8C: @ 81E5E8C -.string " Let me make sure.{WAIT_PRESS}\n" -.string "And I won{APOSTROPHE}t ask you again.\0" -.align 2, 0 - -.global gUnknown_81E5EC0 -gUnknown_81E5EC0: @ 81E5EC0 -.string " Let me ask you again.{WAIT_PRESS}\n" -.string "But this is the last time.\0" -.align 2, 0 - -.global gUnknown_81E5EF4 -gUnknown_81E5EF4: @ 81E5EF4 -.string " Huh?! You{APOSTROPHE}re sure of that?\n" -.string "That Pokémon volunteered to join...\0" -.align 2, 0 - -.global gUnknown_81E5F38 -gUnknown_81E5F38: @ 81E5F38 -.string " Hah?! Are you sure?\n" -.string "That Pokémon came to us...\0" -.align 2, 0 - -.global gUnknown_81E5F68 -gUnknown_81E5F68: @ 81E5F68 -.string " Great!\n" -.string "That{APOSTROPHE}s that!\0" -.align 2, 0 - -.global gUnknown_81E5F80 -gUnknown_81E5F80: @ 81E5F80 -.string " OK! That{APOSTROPHE}s settled!\0" -.align 2, 0 - -.global gUnknown_81E5F98 -gUnknown_81E5F98: @ 81E5F98 -.byte 0x4e, 0x6f, 0x2e, 0x00 - -.global gUnknown_81E5F9C -gUnknown_81E5F9C: @ 81E5F9C -.string "Yes.\0" -.align 2, 0 - -.global gUnknown_81E5FA4 -gUnknown_81E5FA4: @ 81E5FA4 -.string " What should we do?\n" -.string "Should we let {ARG_NICKNAME_2} join?\0" -.align 2, 0 - -.global gUnknown_81E5FD0 -gUnknown_81E5FD0: @ 81E5FD0 -.string " What do you think?\n" -.string "Should we let {ARG_NICKNAME_2} join?\0" -.align 2, 0 - -.global gUnknown_81E5FFC -gUnknown_81E5FFC: @ 81E5FFC -.string " ...But since it{APOSTROPHE}s here{COMMA} it\n" -.string "decided that it must be for a good reason.\n" -.string "And so it wants to join us!\0" -.align 2, 0 - -.global gUnknown_81E6064 -gUnknown_81E6064: @ 81E6064 -.string " ...But since it{APOSTROPHE}s here{COMMA} it\n" -.string "figures it must be for a good reason{COMMA}\n" -.string "so it wants to join us!\0" -.align 2, 0 - -.global gUnknown_81E60C4 -gUnknown_81E60C4: @ 81E60C4 -.string " It doesn{APOSTROPHE}t seem to know\n" -.string "why it would end up here.\0" -.align 2, 0 - -.global gUnknown_81E60FC -gUnknown_81E60FC: @ 81E60FC -.string " It doesn{APOSTROPHE}t seem to have any\n" -.string "idea why it would even end up here.\0" -.align 2, 0 - -.global gUnknown_81E6140 -gUnknown_81E6140: @ 81E6140 -.string " It says it was blown here\n" -.string "by a sudden gust of wind!\0" -.align 2, 0 - -.global gUnknown_81E6178 -gUnknown_81E6178: @ 81E6178 -.string " I saw {ARG_NICKNAME_2} outside\n" -.string "looking stunned{COMMA} so I introduced myself.\0" -.align 2, 0 - -.global gUnknown_81E61B8 -gUnknown_81E61B8: @ 81E61B8 -.string " It turns out that it was\n" -.string "suddenly blown here by gusting winds!\0" -.align 2, 0 - -.global gUnknown_81E61F8 -gUnknown_81E61F8: @ 81E61F8 -.string " I saw {ARG_NICKNAME_2} outside\n" -.string "looking dazed{COMMA} so I went and said hello.\0" -.align 2, 0 - -.global gUnknown_81E6238 -gUnknown_81E6238: @ 81E6238 -.string " Listen{COMMA} {ARG_NICKNAME_0}!\n" -.string "I{APOSTROPHE}ve got great news!\0" -.align 2, 0 - -.global gUnknown_81E6260 -gUnknown_81E6260: @ 81E6260 -.string " {ARG_NICKNAME_2} wants to\n" -.string "join us!\0" -.align 2, 0 - -.global gUnknown_81E6278 -gUnknown_81E6278: @ 81E6278 -.string " Hey{COMMA} {ARG_NICKNAME_0}!\n" -.string "Great news!\0" -.align 2, 0 - -.global gUnknown_81E6294 -gUnknown_81E6294: @ 81E6294 -.byte 0xf6, 0x00, 0x3d, 0x04, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81E6474 -gUnknown_81E6474: @ 81E6474 -.byte 0xf6, 0x00, 0x5e, 0x04, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E6574 -gUnknown_81E6574: @ 81E6574 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6474 - -.global gUnknown_81E6580 -gUnknown_81E6580: @ 81E6580 -.byte 0xf6, 0x00, 0x73, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6278 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6DA8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6238 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6DA8 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6D64 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6D24 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6CE0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6CA4 -.byte 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6C60 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6C28 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6BF0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6B8C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6B58 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6AFC -.byte 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6A8C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6A3C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E69C8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6978 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6954 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E692C -closeTextBox -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6900 -.byte 0x49, 0x00, 0x00, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe1, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3b, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E6900 -gUnknown_81E6900: @ 81E6900 -.string "{CENTER_ALIGN}Team {COLOR_1 CYAN}{ARG_TEAM_NAME}{END_COLOR_TEXT_1}{APOSTROPHE}s\n" -.string "{CENTER_ALIGN}rescue rank went up!\0" -.align 2, 0 - -.global gUnknown_81E692C -gUnknown_81E692C: @ 81E692C -.string " If it{APOSTROPHE}s a gift{COMMA} we have\n" -.string "to accept!\0" -.align 2, 0 - -.global gUnknown_81E6954 -gUnknown_81E6954: @ 81E6954 -.string " I{APOSTROPHE}ve never said no to a gift!\0" -.align 2, 0 - -.global gUnknown_81E6978 -gUnknown_81E6978: @ 81E6978 -.string " It{APOSTROPHE}s awesome!{WAIT_PRESS}\n" -.string "I guess it{APOSTROPHE}s kind of unfair{COMMA} but...{WAIT_PRESS}\n" -.string "Well{COMMA} anyway!\0" -.align 2, 0 - -.global gUnknown_81E69C8 -gUnknown_81E69C8: @ 81E69C8 -.string " But since he ended up here{COMMA}\n" -.string "he thinks it must be for a good reason.\n" -.string "We{APOSTROPHE}re getting that new rescue rank crest!\0" -.align 2, 0 - -.global gUnknown_81E6A3C -gUnknown_81E6A3C: @ 81E6A3C -.string " Isn{APOSTROPHE}t that awesome?!{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s kind of unfair{COMMA} but...{WAIT_PRESS}\n" -.string "Well{COMMA} so what?\0" -.align 2, 0 - -.global gUnknown_81E6A8C -gUnknown_81E6A8C: @ 81E6A8C -.string " But since he ended up here{COMMA}\n" -.string "he figures it must be for a good reason.\n" -.string "We{APOSTROPHE}re getting the rescue rank crest!\0" -.align 2, 0 - -.global gUnknown_81E6AFC -gUnknown_81E6AFC: @ 81E6AFC -.string " He was supposed to take\n" -.string "them their new crest showing that\n" -.string "they{APOSTROPHE}d gone up in rescue rank.\0" -.align 2, 0 - -.global gUnknown_81E6B58 -gUnknown_81E6B58: @ 81E6B58 -.string " Pelipper was on his way to\n" -.string "another rescue team.\0" -.align 2, 0 - -.global gUnknown_81E6B8C -gUnknown_81E6B8C: @ 81E6B8C -.string " He was on his way to\n" -.string "a different rescue team with a crest\n" -.string "used to signify a higher rescue rank.\0" -.align 2, 0 - -.global gUnknown_81E6BF0 -gUnknown_81E6BF0: @ 81E6BF0 -.string " See{COMMA} Pelipper was supposed\n" -.string "to be making a delivery.\0" -.align 2, 0 - -.global gUnknown_81E6C28 -gUnknown_81E6C28: @ 81E6C28 -.string " He doesn{APOSTROPHE}t seem to know\n" -.string "why he would end up here.\0" -.align 2, 0 - -.global gUnknown_81E6C60 -gUnknown_81E6C60: @ 81E6C60 -.string " He doesn{APOSTROPHE}t seem to have any\n" -.string "idea why he would even end up here.\0" -.align 2, 0 - -.global gUnknown_81E6CA4 -gUnknown_81E6CA4: @ 81E6CA4 -.string " Pelipper says he was blown\n" -.string "here by a sudden gust of wind!\0" -.align 2, 0 - -.global gUnknown_81E6CE0 -gUnknown_81E6CE0: @ 81E6CE0 -.string " I saw Pelipper outside\n" -.string "looking stunned{COMMA} so I chatted with him.\0" -.align 2, 0 - -.global gUnknown_81E6D24 -gUnknown_81E6D24: @ 81E6D24 -.string " It turns out{COMMA} he was\n" -.string "suddenly blown here by gusting winds!\0" -.align 2, 0 - -.global gUnknown_81E6D64 -gUnknown_81E6D64: @ 81E6D64 -.string " I saw Pelipper outside\n" -.string "looking dazed{COMMA} so I went and said hello.\0" -.align 2, 0 - -.global gUnknown_81E6DA8 -gUnknown_81E6DA8: @ 81E6DA8 -.string " Team {COLOR_1 CYAN}{ARG_TEAM_NAME}{END_COLOR_TEXT_1}{APOSTROPHE}s\n" -.string "rescue rank went up!\0" -.align 2, 0 - -.global gUnknown_81E6DD0 -gUnknown_81E6DD0: @ 81E6DD0 -.byte 0xf6, 0x00, 0xb0, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E6EC0 -gUnknown_81E6EC0: @ 81E6EC0 -.byte 0xf6, 0x00, 0xc2, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -closeTextBox -.byte 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E6FC0 -gUnknown_81E6FC0: @ 81E6FC0 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6EC0 - -.global gUnknown_81E6FCC -gUnknown_81E6FCC: @ 81E6FCC -.byte 0xf6, 0x00, 0xd7, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6278 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E7304 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E72C8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E72B0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E6238 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E727C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E7240 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E7224 -closeTextBox -setFlag 0x06 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E71F8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E71BC -closeTextBox -pause 0x0f -.byte 0x3c, 0x2b, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -pause 0x3c -setFlag 0x03 -closeThread - -.global gUnknown_81E71BC -gUnknown_81E71BC: @ 81E71BC -.string " If they{APOSTROPHE}re in a giving mood{COMMA}\n" -.string "we shouldn{APOSTROPHE}t refuse!\0" -.align 2, 0 - -.global gUnknown_81E71F8 -gUnknown_81E71F8: @ 81E71F8 -.string " I never turn down\n" -.string "someone{APOSTROPHE}s generosity!\0" -.align 2, 0 - -.global gUnknown_81E7224 -gUnknown_81E7224: @ 81E7224 -.string " But why worry about it?\0" -.align 2, 0 - -.global gUnknown_81E7240 -gUnknown_81E7240: @ 81E7240 -.string " I don{APOSTROPHE}t have the foggiest\n" -.string "notion why they{APOSTROPHE}d send it...\0" -.align 2, 0 - -.global gUnknown_81E727C -gUnknown_81E727C: @ 81E727C -.string " The Rescue Organization\n" -.string "sent us some reward money!\0" -.align 2, 0 - -.global gUnknown_81E72B0 -gUnknown_81E72B0: @ 81E72B0 -.string " Who am I to complain?\0" -.align 2, 0 - -.global gUnknown_81E72C8 -gUnknown_81E72C8: @ 81E72C8 -.string " I don{APOSTROPHE}t have a clue why\n" -.string "they{APOSTROPHE}d send us this{COMMA} but...\0" -.align 2, 0 - -.global gUnknown_81E7304 -gUnknown_81E7304: @ 81E7304 -.string " The Rescue Organization\n" -.string "sent us a cash reward!\0" -.align 2, 0 - -.global gUnknown_81E7334 -gUnknown_81E7334: @ 81E7334 -.byte 0xf6, 0x00, 0xf9, 0x04, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E7424 -gUnknown_81E7424: @ 81E7424 -.byte 0xf6, 0x00, 0x0b, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x10, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E7554 -gUnknown_81E7554: @ 81E7554 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E7424 - -.global gUnknown_81E7560 -gUnknown_81E7560: @ 81E7560 -.byte 0xf6, 0x00, 0x24, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E77A8 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E7784 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E7754 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E7718 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E5288 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E76EC -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E76C0 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E76C0 -gUnknown_81E76C0: @ 81E76C0 -.string "Not feeling well...{WAIT_PRESS}\n" -.string "I need more sleep...\0" -.align 2, 0 - -.global gUnknown_81E76EC -gUnknown_81E76EC: @ 81E76EC -.string "............{WAIT_PRESS}\n" -.string "I feel groggy and sleepy...\0" -.align 2, 0 - -.global gUnknown_81E7718 -gUnknown_81E7718: @ 81E7718 -.string "............{WAIT_PRESS}\n" -.string "Hmm... I don{APOSTROPHE}t understand this at all...\0" -.align 2, 0 - -.global gUnknown_81E7754 -gUnknown_81E7754: @ 81E7754 -.string "But why would I be transformed\n" -.string "into a Pokémon?\0" -.align 2, 0 - -.global gUnknown_81E7784 -gUnknown_81E7784: @ 81E7784 -.string "The way I look...\n" -.string "I{APOSTROPHE}m still {ARG_POKEMON_0}.\0" -.align 2, 0 - -.global gUnknown_81E77A8 -gUnknown_81E77A8: @ 81E77A8 -.string "...I{APOSTROPHE}m still the same.\0" -.align 2, 0 - -.global gUnknown_81E77C4 -gUnknown_81E77C4: @ 81E77C4 -.byte 0xf6, 0x00, 0x3e, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E77F4 -gUnknown_81E77F4: @ 81E77F4 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E77C4 - -.global gUnknown_81E7800 -gUnknown_81E7800: @ 81E7800 -.byte 0xf6, 0x00, 0x46, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E7898 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E7880 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E7880 -gUnknown_81E7880: @ 81E7880 -.string "I{APOSTROPHE}ll rest in bed...\0" -.align 2, 0 - -.global gUnknown_81E7898 -gUnknown_81E7898: @ 81E7898 -.string "Now{COMMA} I only want to sleep...\0" -.align 2, 0 - -.global gUnknown_81E78B8 -gUnknown_81E78B8: @ 81E78B8 -.byte 0x65, 0x01, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E7800 - -.global gUnknown_81E78C4 -gUnknown_81E78C4: @ 81E78C4 -.byte 0xf6, 0x00, 0x54, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff -.4byte gUnknown_81E1EBC -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -triggerCutscene 0x7d -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E79A4 -gUnknown_81E79A4: @ 81E79A4 -.byte 0x39, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E78C4 - -.global gUnknown_81E79B0 -gUnknown_81E79B0: @ 81E79B0 -.byte 0xf6, 0x00, 0x67, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E7A80 -gUnknown_81E7A80: @ 81E7A80 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E79B0 - -.global gUnknown_81E7A8C -gUnknown_81E7A8C: @ 81E7A8C -.byte 0xf6, 0x00, 0x79, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E7B0C -gUnknown_81E7B0C: @ 81E7B0C -.byte 0xf6, 0x00, 0x84, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E7BDC -gUnknown_81E7BDC: @ 81E7BDC -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E7B0C - -.global gUnknown_81E7BE8 -gUnknown_81E7BE8: @ 81E7BE8 -.byte 0xf6, 0x00, 0x96, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E7E08 -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E7DE4 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E7DBC -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E7E08 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E7D7C -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E7D48 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E7D18 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E7D18 -gUnknown_81E7D18: @ 81E7D18 -.string "I wonder what {ARG_NICKNAME_1} is doing?{WAIT_PRESS}\n" -.string "I should go out.\0" -.align 2, 0 - -.global gUnknown_81E7D48 -gUnknown_81E7D48: @ 81E7D48 -.string "We made a promise to form a rescue\n" -.string "team together...\0" -.align 2, 0 - -.global gUnknown_81E7D7C -gUnknown_81E7D7C: @ 81E7D7C -.string "Oh{COMMA} that{APOSTROPHE}s right.{WAIT_PRESS} That Pokémon...{WAIT_PRESS}\n" -.string "I think it was {ARG_NICKNAME_1}?\0" -.align 2, 0 - -.global gUnknown_81E7DBC -gUnknown_81E7DBC: @ 81E7DBC -.string "I still look like a Pokémon{COMMA} but...\0" -.align 2, 0 - -.global gUnknown_81E7DE4 -gUnknown_81E7DE4: @ 81E7DE4 -.string "Oof...{WAIT_PRESS}\n" -.string "I{APOSTROPHE}m feeling refreshed!\0" -.align 2, 0 - -.global gUnknown_81E7E08 -gUnknown_81E7E08: @ 81E7E08 -.string "..................\0" -.align 2, 0 - -.global gUnknown_81E7E1C -gUnknown_81E7E1C: @ 81E7E1C -.byte 0xf6, 0x00, 0xad, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E7F2C -gUnknown_81E7F2C: @ 81E7F2C -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E7E1C - -.global gUnknown_81E7F38 -gUnknown_81E7F38: @ 81E7F38 -.byte 0xf6, 0x00, 0xc3, 0x05 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E7FB8 -gUnknown_81E7FB8: @ 81E7FB8 -.byte 0xf6, 0x00, 0xce, 0x05 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E8088 -gUnknown_81E8088: @ 81E8088 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E7FB8 - -.global gUnknown_81E8094 -gUnknown_81E8094: @ 81E8094 -.byte 0xf6, 0x00, 0xe0, 0x05, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E8248 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E820C -.byte 0x2e, 0x15, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E81DC -.byte 0x2e, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E81A4 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E81A4 -gUnknown_81E81A4: @ 81E81A4 -.string "I wonder if I have any mail?\n" -.string "Better check the Mailbox.\0" -.align 2, 0 - -.global gUnknown_81E81DC -gUnknown_81E81DC: @ 81E81DC -.string "Oh{COMMA} well.\n" -.string "Today{APOSTROPHE}s another day of rescues!\0" -.align 2, 0 - -.global gUnknown_81E820C -gUnknown_81E820C: @ 81E820C -.string "But I can{APOSTROPHE}t quite remember what that\n" -.string "dream was about...\0" -.align 2, 0 - -.global gUnknown_81E8248 -gUnknown_81E8248: @ 81E8248 -.string "I think I dreamt something...\0" -.align 2, 0 - -.global gUnknown_81E8268 -gUnknown_81E8268: @ 81E8268 -.byte 0xf6, 0x00, 0xf5, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -.byte 0x25, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E8388 -gUnknown_81E8388: @ 81E8388 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E8268 - -.global gUnknown_81E8394 -gUnknown_81E8394: @ 81E8394 -.byte 0xf6, 0x00, 0x0c, 0x06, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x04, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E8AB8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x04, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x04, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x04, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E8A88 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x04, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x04, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x04, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x04, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E8A48 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x00, 0x3c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E8A1C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E89F4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E89D4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E899C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E8964 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E8928 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E88FC -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E88C4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E8898 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x32 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E52A4 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E8858 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E8834 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E8834 -gUnknown_81E8834: @ 81E8834 -.string "It{APOSTROPHE}s too bad. I{APOSTROPHE}d better go.\0" -.align 2, 0 - -.global gUnknown_81E8858 -gUnknown_81E8858: @ 81E8858 -.string "...That was so sudden{COMMA} there was no time\n" -.string "to even say no...\0" -.align 2, 0 - -.global gUnknown_81E8898 -gUnknown_81E8898: @ 81E8898 -.string " Please{COMMA} we need your help!{WAIT_PRESS}\n" -.string "We must go!\0" -.align 2, 0 - -.global gUnknown_81E88C4 -gUnknown_81E88C4: @ 81E88C4 -.string " It{APOSTROPHE}s a vilely vicious ruffian!\n" -.string "Please do be careful.\0" -.align 2, 0 - -.global gUnknown_81E88FC -gUnknown_81E88FC: @ 81E88FC -.string " {ARG_NICKNAME_3} was abducted\n" -.string "by a Pokémon named {ARG_NICKNAME_4}.\0" -.align 2, 0 - -.global gUnknown_81E8928 -gUnknown_81E8928: @ 81E8928 -.string " That is why we must call\n" -.string "upon you for your help{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_81E8964 -gUnknown_81E8964: @ 81E8964 -.string " We couldn{APOSTROPHE}t possibly climb\n" -.string "somewhere so high up...\0" -.align 2, 0 - -.global gUnknown_81E899C -gUnknown_81E899C: @ 81E899C -.string " He was whisked away to\n" -.string "the peak of a tall mountain.\0" -.align 2, 0 - -.global gUnknown_81E89D4 -gUnknown_81E89D4: @ 81E89D4 -.string " Our child {ARG_NICKNAME_3} was\n" -.string "attacked...\0" -.align 2, 0 - -.global gUnknown_81E89F4 -gUnknown_81E89F4: @ 81E89F4 -.string " Last night{COMMA} during the\n" -.string "earthquake...\0" -.align 2, 0 - -.global gUnknown_81E8A1C -gUnknown_81E8A1C: @ 81E8A1C -.string " We{APOSTROPHE}re pleased to meet you.\n" -.string "We are {ARG_NICKNAME_2}.\0" -.align 2, 0 - -.global gUnknown_81E8A48 -gUnknown_81E8A48: @ 81E8A48 -.string " ...Oh! You can{APOSTROPHE}t see us{COMMA} of course!{WAIT_PRESS}\n" -.string "How very rude of us!\0" -.align 2, 0 - -.global gUnknown_81E8A88 -gUnknown_81E8A88: @ 81E8A88 -.string " Hello? Uhh...\n" -.string "You are {ARG_NICKNAME_0}...{WAIT_PRESS} Aren{APOSTROPHE}t you?\0" -.align 2, 0 - -.global gUnknown_81E8AB8 -gUnknown_81E8AB8: @ 81E8AB8 -.string " Uhh... Hello?\0" -.align 2, 0 - -.global gUnknown_81E8AC8 -gUnknown_81E8AC8: @ 81E8AC8 -.byte 0xf6, 0x00, 0x5c, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x57, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xc6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xdb, 0x00, 0x2d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0a, CCW, north -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x30, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe8, 0x00, 0x31, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x08 -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xe6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0x57, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E8C38 -gUnknown_81E8C38: @ 81E8C38 -.byte 0xf6, 0x00, 0x76, 0x06 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -.byte 0x25, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E8D48 -gUnknown_81E8D48: @ 81E8D48 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E8C38 - -.global gUnknown_81E8D54 -gUnknown_81E8D54: @ 81E8D54 -.byte 0xf6, 0x00, 0x8c, 0x06, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E8DE4 -gUnknown_81E8DE4: @ 81E8DE4 -.byte 0xf6, 0x00, 0x98, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E8F24 -gUnknown_81E8F24: @ 81E8F24 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E8DE4 - -.global gUnknown_81E8F30 -gUnknown_81E8F30: @ 81E8F30 -.byte 0xf6, 0x00, 0xb1, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E8FB0 -gUnknown_81E8FB0: @ 81E8FB0 -.byte 0xf6, 0x00, 0xbc, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -closeTextBox -.byte 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E90F0 -gUnknown_81E90F0: @ 81E90F0 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E8FB0 - -.global gUnknown_81E90FC -gUnknown_81E90FC: @ 81E90FC -.byte 0xf6, 0x00, 0xd5, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E917C -gUnknown_81E917C: @ 81E917C -.byte 0xf6, 0x00, 0xe0, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -closeTextBox -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E92BC -gUnknown_81E92BC: @ 81E92BC -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E917C - -.global gUnknown_81E92C8 -gUnknown_81E92C8: @ 81E92C8 -.byte 0xf6, 0x00, 0xf9, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E9348 -gUnknown_81E9348: @ 81E9348 -.byte 0xf6, 0x00, 0x04, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xa6, 0x00, 0x0d, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E9408 -gUnknown_81E9408: @ 81E9408 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E9348 - -.global gUnknown_81E9414 -gUnknown_81E9414: @ 81E9414 -.byte 0xf6, 0x00, 0x15, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E9494 -gUnknown_81E9494: @ 81E9494 -.byte 0xf6, 0x00, 0x20, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -closeTextBox -.byte 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E95D4 -gUnknown_81E95D4: @ 81E95D4 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E9494 - -.global gUnknown_81E95E0 -gUnknown_81E95E0: @ 81E95E0 -.byte 0xf6, 0x00, 0x39, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E9660 -gUnknown_81E9660: @ 81E9660 -.byte 0xf6, 0x00, 0x44, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E9720 -gUnknown_81E9720: @ 81E9720 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E9660 - -.global gUnknown_81E972C -gUnknown_81E972C: @ 81E972C -.byte 0xf6, 0x00, 0x55, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E97AC -gUnknown_81E97AC: @ 81E97AC -.byte 0xf6, 0x00, 0x60, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -closeTextBox -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E98EC -gUnknown_81E98EC: @ 81E98EC -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E97AC - -.global gUnknown_81E98F8 -gUnknown_81E98F8: @ 81E98F8 -.byte 0xf6, 0x00, 0x79, 0x07 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E9978 -gUnknown_81E9978: @ 81E9978 -.byte 0xf6, 0x00, 0x84, 0x07 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E9A38 -gUnknown_81E9A38: @ 81E9A38 -.byte 0x92, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E9978 - -.global gUnknown_81E9A44 -gUnknown_81E9A44: @ 81E9A44 -.byte 0xf6, 0x00, 0x95, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E9AC4 -gUnknown_81E9AC4: @ 81E9AC4 -.byte 0xf6, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E9C04 -gUnknown_81E9C04: @ 81E9C04 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E9AC4 - -.global gUnknown_81E9C10 -gUnknown_81E9C10: @ 81E9C10 -.byte 0xf6, 0x00, 0xb9, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E9C90 -gUnknown_81E9C90: @ 81E9C90 -.byte 0xf6, 0x00, 0xc4, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E9D50 -gUnknown_81E9D50: @ 81E9D50 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E9C90 - -.global gUnknown_81E9D5C -gUnknown_81E9D5C: @ 81E9D5C -.byte 0xf6, 0x00, 0xd5, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E9DDC -gUnknown_81E9DDC: @ 81E9DDC -.byte 0xf6, 0x00, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -closeTextBox -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E9F1C -gUnknown_81E9F1C: @ 81E9F1C -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E9DDC - -.global gUnknown_81E9F28 -gUnknown_81E9F28: @ 81E9F28 -.byte 0xf6, 0x00, 0xf9, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81E9FA8 -gUnknown_81E9FA8: @ 81E9FA8 -.byte 0xf6, 0x00, 0x04, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x47, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -closeTextBox -.byte 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EA088 -gUnknown_81EA088: @ 81EA088 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E9FA8 - -.global gUnknown_81EA094 -gUnknown_81EA094: @ 81EA094 -.byte 0xf6, 0x00, 0x17, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EA2B0 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EA264 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EA230 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd0, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EA21C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EA210 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EA1F4 -closeTextBox -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81EA1F4 -gUnknown_81EA1F4: @ 81EA1F4 -.string "Yesterday{COMMA} {ARG_NICKNAME_3} said...\0" -.align 2, 0 - -.global gUnknown_81EA210 -gUnknown_81EA210: @ 81EA210 -.string "It was {ARG_NICKNAME_2}!\0" -.align 2, 0 - -.global gUnknown_81EA21C -gUnknown_81EA21C: @ 81EA21C -.string "That{APOSTROPHE}s it!{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_2}!\0" -.align 2, 0 - -.global gUnknown_81EA230 -gUnknown_81EA230: @ 81EA230 -.string "I think I finally learned who that\n" -.string "Pokémon was...\0" -.align 2, 0 - -.global gUnknown_81EA264 -gUnknown_81EA264: @ 81EA264 -.string "It{APOSTROPHE}s the dream I always have{COMMA} but it was\n" -.string "clearer than it was before...\0" -.align 2, 0 - -.global gUnknown_81EA2B0 -gUnknown_81EA2B0: @ 81EA2B0 -.string "............{WAIT_PRESS}\n" -.string "What a strange dream...\0" -.align 2, 0 - -.global gUnknown_81EA2D8 -gUnknown_81EA2D8: @ 81EA2D8 -.byte 0xf6, 0x00, 0x31, 0x08 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EA3B8 -gUnknown_81EA3B8: @ 81EA3B8 -.byte 0x92, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EA2D8 - -.global gUnknown_81EA3C4 -gUnknown_81EA3C4: @ 81EA3C4 -.byte 0xf6, 0x00, 0x44, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x22, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E7E08 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EA588 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EA554 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EA514 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EA4E4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EA4E4 -gUnknown_81EA4E4: @ 81EA4E4 -.string "Maybe that{APOSTROPHE}s why I turned into\n" -.string "a Pokémon...\0" -.align 2, 0 - -.global gUnknown_81EA514 -gUnknown_81EA514: @ 81EA514 -.string "Maybe I was the one that abandoned\n" -.string "{ARG_NICKNAME_2} when she was cursed...\0" -.align 2, 0 - -.global gUnknown_81EA554 -gUnknown_81EA554: @ 81EA554 -.string "Maybe I was the human who was\n" -.string "{ARG_NICKNAME_2}{APOSTROPHE}s partner...\0" -.align 2, 0 - -.global gUnknown_81EA588 -gUnknown_81EA588: @ 81EA588 -.string "Maybe...{WAIT_PRESS}\n" -.string "Maybe{COMMA} I...\0" -.align 2, 0 - -.global gUnknown_81EA5A4 -gUnknown_81EA5A4: @ 81EA5A4 -.byte 0xf6, 0x00, 0x5a, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EA6E4 -gUnknown_81EA6E4: @ 81EA6E4 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EA5A4 - -.global gUnknown_81EA6F0 -gUnknown_81EA6F0: @ 81EA6F0 -.byte 0xf6, 0x00, 0x73, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EA770 -gUnknown_81EA770: @ 81EA770 -.byte 0xf6, 0x00, 0x7e, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EA850 -gUnknown_81EA850: @ 81EA850 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EA770 - -.global gUnknown_81EA85C -gUnknown_81EA85C: @ 81EA85C -.byte 0xf6, 0x00, 0x91, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EAA1C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EA9F8 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EA9B4 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00, 0xd0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EA98C -closeTextBox -pause 0x1e -setFlag 0x03 -closeThread - -.global gUnknown_81EA98C -gUnknown_81EA98C: @ 81EA98C -.string "That{APOSTROPHE}s it!{WAIT_PRESS}\n" -.string "She did say something!\0" -.align 2, 0 - -.global gUnknown_81EA9B4 -gUnknown_81EA9B4: @ 81EA9B4 -.string "I think I spoke with Gardevoir...{WAIT_PRESS}\n" -.string "She said something important...\0" -.align 2, 0 - -.global gUnknown_81EA9F8 -gUnknown_81EA9F8: @ 81EA9F8 -.string "I think I had that dream again...\0" -.align 2, 0 - -.global gUnknown_81EAA1C -gUnknown_81EAA1C: @ 81EAA1C -.string "............{WAIT_PRESS}\n" -.string "There was an earthquake...{WAIT_PRESS}\n" -.string "Wasn{APOSTROPHE}t there...?\0" -.align 2, 0 - -.global gUnknown_81EAA5C -gUnknown_81EAA5C: @ 81EAA5C -.byte 0xf6, 0x00, 0xa8, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EAB3C -gUnknown_81EAB3C: @ 81EAB3C -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EAA5C - -.global gUnknown_81EAB48 -gUnknown_81EAB48: @ 81EAB48 -.byte 0xf6, 0x00, 0xbb, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd2, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EAC70 -.byte 0x2e, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EAC28 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EAC28 -gUnknown_81EAC28: @ 81EAC28 -.string "She also said something about a role...{WAIT_PRESS}\n" -.string "What did she mean by that?\0" -.align 2, 0 - -.global gUnknown_81EAC70 -gUnknown_81EAC70: @ 81EAC70 -.string "{ARG_NICKNAME_2} knows!{WAIT_PRESS}\n" -.string "She knows why I became a Pokémon.\0" -.align 2, 0 - -.global gUnknown_81EACA0 -gUnknown_81EACA0: @ 81EACA0 -.byte 0xf6, 0x00, 0xcd, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EADD0 -gUnknown_81EADD0: @ 81EADD0 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EACA0 - -.global gUnknown_81EADDC -gUnknown_81EADDC: @ 81EADDC -.byte 0xf6, 0x00, 0xe5, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00, 0xc5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x97, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EAFF0 -closeTextBox -pause 0x78 -.byte 0x4e, 0x00, 0x3c, 0x00, 0xc5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EAFC4 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EAF8C -closeTextBox -.byte 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EAF8C -gUnknown_81EAF8C: @ 81EAF8C -.string ".......There{APOSTROPHE}ve been a lot of earthquakes\n" -.string "lately...\0" -.align 2, 0 - -.global gUnknown_81EAFC4 -gUnknown_81EAFC4: @ 81EAFC4 -.string "............{WAIT_PRESS}\n" -.string "I guess it settled down...\0" -.align 2, 0 - -.global gUnknown_81EAFF0 -gUnknown_81EAFF0: @ 81EAFF0 -.string "Oh{COMMA} wow{COMMA} another earthquake...\0" -.align 2, 0 - -.global gUnknown_81EB014 -gUnknown_81EB014: @ 81EB014 -.byte 0xf6, 0x00, 0x04, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EB0F4 -gUnknown_81EB0F4: @ 81EB0F4 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EB014 - -.global gUnknown_81EB100 -gUnknown_81EB100: @ 81EB100 -.byte 0xf6, 0x00, 0x17, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00, 0xc5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x97, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EB44C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0x4e, 0x00, 0x3c, 0x00, 0xc5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EB420 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EB3F8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EB3C8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EB398 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EB370 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x50, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81EB370 -gUnknown_81EB370: @ 81EB370 -.string " Let{APOSTROPHE}s go to the square right\n" -.string "now!\0" -.align 2, 0 - -.global gUnknown_81EB398 -gUnknown_81EB398: @ 81EB398 -.string " A lot of Pokémon have\n" -.string "already gathered there.\0" -.align 2, 0 - -.global gUnknown_81EB3C8 -gUnknown_81EB3C8: @ 81EB3C8 -.string " {ARG_NICKNAME_0}!\n" -.string "There{APOSTROPHE}s a commotion down at the square!\0" -.align 2, 0 - -.global gUnknown_81EB3F8 -gUnknown_81EB3F8: @ 81EB3F8 -.string "I wonder when they{APOSTROPHE}ll settle down...\0" -.align 2, 0 - -.global gUnknown_81EB420 -gUnknown_81EB420: @ 81EB420 -.string "There{APOSTROPHE}ve been so many quakes lately...\0" -.align 2, 0 - -.global gUnknown_81EB44C -gUnknown_81EB44C: @ 81EB44C -.string "Oh? Another earthquake...\0" -.align 2, 0 - -.global gUnknown_81EB468 -gUnknown_81EB468: @ 81EB468 -.byte 0xf6, 0x00, 0x43, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x30, 0x00, 0x02 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x30, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EB528 -gUnknown_81EB528: @ 81EB528 -.byte 0xf6, 0x00, 0x52, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EB668 -gUnknown_81EB668: @ 81EB668 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EB528 - -.global gUnknown_81EB674 -gUnknown_81EB674: @ 81EB674 -.byte 0xf6, 0x00, 0x6b, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EB6F4 -gUnknown_81EB6F4: @ 81EB6F4 -.byte 0xf6, 0x00, 0x76, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EB824 -gUnknown_81EB824: @ 81EB824 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EB6F4 - -.global gUnknown_81EB830 -gUnknown_81EB830: @ 81EB830 -.byte 0xf6, 0x00, 0x8e, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EB8B0 -gUnknown_81EB8B0: @ 81EB8B0 -.byte 0xf6, 0x00, 0x99, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x48, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x0d, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x5a, 0x00, 0xe4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x0d, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EB950 -gUnknown_81EB950: @ 81EB950 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EB8B0 - -.global gUnknown_81EB95C -gUnknown_81EB95C: @ 81EB95C -.byte 0xf6, 0x00, 0xa8, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EBCC4 -.byte 0x2e, 0x02, 0x01, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EBC70 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EBC28 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EBC10 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EBBD0 -closeTextBox -pause 0x5a -.byte 0x4c, 0x00, 0x00, 0x00, 0xd0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EBBB0 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00, 0xe4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EBB7C -closeTextBox -setFlag 0x07 -pause 0x5a -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -setFlag 0x03 -closeThread - -.global gUnknown_81EBB7C -gUnknown_81EBB7C: @ 81EBB7C -.string " What? What is that light?{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s coming closer?\0" -.align 2, 0 - -.global gUnknown_81EBBB0 -gUnknown_81EBBB0: @ 81EBBB0 -.string " Hm?!{WAIT_PRESS}\n" -.string "Something{APOSTROPHE}s coming!\0" -.align 2, 0 - -.global gUnknown_81EBBD0 -gUnknown_81EBBD0: @ 81EBBD0 -.string " I{APOSTROPHE}ll expose what{APOSTROPHE}s in your\n" -.string "heart with Dream Eater! Kekeke!\0" -.align 2, 0 - -.global gUnknown_81EBC10 -gUnknown_81EBC10: @ 81EBC10 -.string " I{APOSTROPHE}ll expose you yet!\0" -.align 2, 0 - -.global gUnknown_81EBC28 -gUnknown_81EBC28: @ 81EBC28 -.string " But who cares?\n" -.string "Someone like that{APOSTROPHE}s sure to be some\n" -.string "lowlife. Keke!\0" -.align 2, 0 - -.global gUnknown_81EBC70 -gUnknown_81EBC70: @ 81EBC70 -.string " But who would{APOSTROPHE}ve thought\n" -.string "you were also human before...{WAIT_PRESS}\n" -.string "Didn{APOSTROPHE}t expect that.\0" -.align 2, 0 - -.global gUnknown_81EBCC4 -gUnknown_81EBCC4: @ 81EBCC4 -.string " How do you like Dream\n" -.string "Eater?{WAIT_PRESS}\n" -.string "Horrible{COMMA} isn{APOSTROPHE}t it? Keke!\0" -.align 2, 0 - -.global gUnknown_81EBD04 -gUnknown_81EBD04: @ 81EBD04 -.byte 0xf6, 0x00, 0xcf, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x06, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x06, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x06, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x0c, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x40, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81EBE54 -gUnknown_81EBE54: @ 81EBE54 -.byte 0xf6, 0x00, 0xe7, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x0a, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0x00, 0x66, 0x00, 0xd0, 0xff, 0xff, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0x00, 0x4c, 0x00, 0xb8, 0xff, 0xff, 0xff -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EBEE4 -gUnknown_81EBEE4: @ 81EBEE4 -.byte 0xf6, 0x00, 0xf3, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E25E4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EC024 -gUnknown_81EC024: @ 81EC024 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EBEE4 - -.global gUnknown_81EC030 -gUnknown_81EC030: @ 81EC030 -.byte 0xf6, 0x00, 0x0c, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EC0B0 -gUnknown_81EC0B0: @ 81EC0B0 -.byte 0xf6, 0x00, 0x17, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EC170 -gUnknown_81EC170: @ 81EC170 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EC0B0 - -.global gUnknown_81EC17C -gUnknown_81EC17C: @ 81EC17C -.byte 0xf6, 0x00, 0x28, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EC1FC -gUnknown_81EC1FC: @ 81EC1FC -.byte 0xf6, 0x00, 0x33, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x02, 0x00, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3b, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EC560 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EC53C -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EC50C -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EC4D0 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EC490 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EC460 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EC438 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EC41C -closeTextBox -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x39, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EC41C -gUnknown_81EC41C: @ 81EC41C -.string "{CENTER_ALIGN}Several mornings later...\0" -.align 2, 0 - -.global gUnknown_81EC438 -gUnknown_81EC438: @ 81EC438 -.string "{CENTER_ALIGN}continued as if nothing had changed.\0" -.align 2, 0 - -.global gUnknown_81EC460 -gUnknown_81EC460: @ 81EC460 -.string "{CENTER_ALIGN}Needless to say{COMMA}\n" -.string "{CENTER_ALIGN}{ARG_TEAM_NAME}{APOSTROPHE}s rescue activities\0" -.align 2, 0 - -.global gUnknown_81EC490 -gUnknown_81EC490: @ 81EC490 -.string "{CENTER_ALIGN}Natural disasters still occurred{COMMA}\n" -.string "{CENTER_ALIGN}but much less often.\0" -.align 2, 0 - -.global gUnknown_81EC4D0 -gUnknown_81EC4D0: @ 81EC4D0 -.string "{CENTER_ALIGN}But that did not put an end\n" -.string "{CENTER_ALIGN}to the natural calamities.\0" -.align 2, 0 - -.global gUnknown_81EC50C -gUnknown_81EC50C: @ 81EC50C -.string "{CENTER_ALIGN}and peace returned to\n" -.string "{CENTER_ALIGN}the world of Pokémon.\0" -.align 2, 0 - -.global gUnknown_81EC53C -gUnknown_81EC53C: @ 81EC53C -.string "{CENTER_ALIGN}the falling star was destroyed...\0" -.align 2, 0 - -.global gUnknown_81EC560 -gUnknown_81EC560: @ 81EC560 -.string "{CENTER_ALIGN}Due to {ARG_NICKNAME_0} and\n" -.string "{CENTER_ALIGN}{ARG_NICKNAME_1}{APOSTROPHE}s heroic actions...\0" -.align 2, 0 - -.global gUnknown_81EC590 -gUnknown_81EC590: @ 81EC590 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EC1FC - -.global gUnknown_81EC59C -gUnknown_81EC59C: @ 81EC59C -.byte 0xf6, 0x00, 0x5a, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EC928 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EC8FC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EC8C0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EC874 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EC83C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EC810 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EC7E0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EC7A8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EC760 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EC72C -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EC72C -gUnknown_81EC72C: @ 81EC72C -.string " {ARG_NICKNAME_0}!{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s keep on doing our best as always!\0" -.align 2, 0 - -.global gUnknown_81EC760 -gUnknown_81EC760: @ 81EC760 -.string " Even though it{APOSTROPHE}s peaceful\n" -.string "again{COMMA} many Pokémon still need our help.\0" -.align 2, 0 - -.global gUnknown_81EC7A8 -gUnknown_81EC7A8: @ 81EC7A8 -.string " The Bulletin Board was still\n" -.string "covered with rescue jobs.\0" -.align 2, 0 - -.global gUnknown_81EC7E0 -gUnknown_81EC7E0: @ 81EC7E0 -.string " I went by the Pelipper Post\n" -.string "Office earlier.\0" -.align 2, 0 - -.global gUnknown_81EC810 -gUnknown_81EC810: @ 81EC810 -.string " Good morning{COMMA} {ARG_NICKNAME_0}!\n" -.string "Did you just wake up?\0" -.align 2, 0 - -.global gUnknown_81EC83C -gUnknown_81EC83C: @ 81EC83C -.string " {ARG_NICKNAME_0}!{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s keep on giving it our best like\n" -.string "always!\0" -.align 2, 0 - -.global gUnknown_81EC874 -gUnknown_81EC874: @ 81EC874 -.string " Even though it{APOSTROPHE}s peaceful\n" -.string "again{COMMA} lots of Pokémon still need helping.\0" -.align 2, 0 - -.global gUnknown_81EC8C0 -gUnknown_81EC8C0: @ 81EC8C0 -.string " There were still rescue jobs\n" -.string "posted on the Bulletin Board.\0" -.align 2, 0 - -.global gUnknown_81EC8FC -gUnknown_81EC8FC: @ 81EC8FC -.string " I just went by the Pelipper\n" -.string "Post Office.\0" -.align 2, 0 - -.global gUnknown_81EC928 -gUnknown_81EC928: @ 81EC928 -.string " Morning{COMMA} {ARG_NICKNAME_0}!\n" -.string "Did you just get up?\0" -.align 2, 0 - -.global gUnknown_81EC950 -gUnknown_81EC950: @ 81EC950 -.byte 0xf6, 0x00, 0x76, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x60, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EC9E0 -gUnknown_81EC9E0: @ 81EC9E0 -.byte 0xf6, 0x00, 0x82, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ECA10 -gUnknown_81ECA10: @ 81ECA10 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EC9E0 - -.global gUnknown_81ECA1C -gUnknown_81ECA1C: @ 81ECA1C -.byte 0xf6, 0x00, 0x8a, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0x01, 0x00, 0xff, 0xff, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_81ECA4C -gUnknown_81ECA4C: @ 81ECA4C -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ECA1C - -.global gUnknown_81ECA58 -gUnknown_81ECA58: @ 81ECA58 -.byte 0xf6, 0x00, 0x92, 0x0a -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.4byte gUnknown_81ECB08 -.byte 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x0e, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ECB08 -gUnknown_81ECB08: @ 81ECB08 -.string "Would you like to save the game?\0" -.align 2, 0 - -.global gUnknown_81ECB2C -gUnknown_81ECB2C: @ 81ECB2C -.byte 0x39, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ECA58 - -.global gUnknown_81ECB38 -gUnknown_81ECB38: @ 81ECB38 -.byte 0xf6, 0x00, 0xa2, 0x0a -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ECBF8 -gUnknown_81ECBF8: @ 81ECBF8 -.byte 0x92, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ECB38 - -.global gUnknown_81ECC04 -gUnknown_81ECC04: @ 81ECC04 -.byte 0xf6, 0x00, 0xb3, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ECDBC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ECD80 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ECD68 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81ECD34 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ECD34 -gUnknown_81ECD34: @ 81ECD34 -.string " Let{APOSTROPHE}s keep doing our best\n" -.string "for our rescue team!\0" -.align 2, 0 - -.global gUnknown_81ECD68 -gUnknown_81ECD68: @ 81ECD68 -.string " Good morning{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_81ECD80 -gUnknown_81ECD80: @ 81ECD80 -.string " Let{APOSTROPHE}s keep on giving it our\n" -.string "best for our rescue team!\0" -.align 2, 0 - -.global gUnknown_81ECDBC -gUnknown_81ECDBC: @ 81ECDBC -.string " Morning{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_81ECDD0 -gUnknown_81ECDD0: @ 81ECDD0 -.byte 0xf6, 0x00, 0xc9, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1D74 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x60, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ECE60 -gUnknown_81ECE60: @ 81ECE60 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x2c, 0x00, 0x02 -.4byte gUnknown_81E20D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x1e, 0x2e, 0x00, 0x02 -.4byte gUnknown_81E2110 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ECE90 -gUnknown_81ECE90: @ 81ECE90 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E2150 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1e, 0x23, 0x00, 0x02 -.4byte gUnknown_81E2190 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ECEC0 -gUnknown_81ECEC0: @ 81ECEC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E222C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x1e, 0x23, 0x00, 0x02 -.4byte gUnknown_81E226C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ECEF0 -gUnknown_81ECEF0: @ 81ECEF0 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E2318 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1e, 0x23, 0x00, 0x02 -.4byte gUnknown_81E2368 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ECF20 -gUnknown_81ECF20: @ 81ECF20 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E2444 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ECF38 -gUnknown_81ECF38: @ 81ECF38 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E2608 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ECF50 -gUnknown_81ECF50: @ 81ECF50 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E2764 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ECF68 -gUnknown_81ECF68: @ 81ECF68 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E29CC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ECF80 -gUnknown_81ECF80: @ 81ECF80 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E2B18 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ECF98 -gUnknown_81ECF98: @ 81ECF98 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E2C74 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ECFB0 -gUnknown_81ECFB0: @ 81ECFB0 -.byte 0x01, 0x04, 0x00, 0x00, 0x1c, 0x22, 0x00, 0x02 -.4byte gUnknown_81E2EC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x20, 0x22, 0x00, 0x02 -.4byte gUnknown_81E4480 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E4720 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ECFF8 -gUnknown_81ECFF8: @ 81ECFF8 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x1c, 0x22, 0x00, 0x02 -.4byte gUnknown_81E4E40 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED010 -gUnknown_81ED010: @ 81ED010 -.byte 0x01, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E507C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED028 -gUnknown_81ED028: @ 81ED028 -.byte 0x01, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E5528 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x1e, 0x22, 0x00, 0x02 -.4byte gUnknown_81E5718 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED058 -gUnknown_81ED058: @ 81ED058 -.byte 0x01, 0x00, 0x00, 0x00 -.byte 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E5884 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x1e, 0x30, 0x00, 0x00 -.4byte gUnknown_81E6294 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED088 -gUnknown_81ED088: @ 81ED088 -.byte 0x01, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E6580 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x1e, 0x30, 0x00, 0x00 -.4byte gUnknown_81E6DD0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED0B8 -gUnknown_81ED0B8: @ 81ED0B8 -.byte 0x01, 0x00, 0x00, 0x00 -.byte 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E6FCC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x1e, 0x30, 0x00, 0x00 -.4byte gUnknown_81E7334 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED0E8 -gUnknown_81ED0E8: @ 81ED0E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E7560 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED100 -gUnknown_81ED100: @ 81ED100 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E7A8C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED118 -gUnknown_81ED118: @ 81ED118 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E7BE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED130 -gUnknown_81ED130: @ 81ED130 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E7F38 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED148 -gUnknown_81ED148: @ 81ED148 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E8094 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED160 -gUnknown_81ED160: @ 81ED160 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E8394 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED178 -gUnknown_81ED178: @ 81ED178 -.byte 0x42, 0x00, 0x00, 0x00 -.byte 0x1e, 0x23, 0x00, 0x02 -.4byte gUnknown_81E8AC8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED190 -gUnknown_81ED190: @ 81ED190 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E8D54 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED1A8 -gUnknown_81ED1A8: @ 81ED1A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E8F30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED1C0 -gUnknown_81ED1C0: @ 81ED1C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E90FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED1D8 -gUnknown_81ED1D8: @ 81ED1D8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E92C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED1F0 -gUnknown_81ED1F0: @ 81ED1F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E9414 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED208 -gUnknown_81ED208: @ 81ED208 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E95E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED220 -gUnknown_81ED220: @ 81ED220 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E972C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED238 -gUnknown_81ED238: @ 81ED238 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E98F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED250 -gUnknown_81ED250: @ 81ED250 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E9A44 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED268 -gUnknown_81ED268: @ 81ED268 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E9C10 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED280 -gUnknown_81ED280: @ 81ED280 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E9D5C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED298 -gUnknown_81ED298: @ 81ED298 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81E9F28 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED2B0 -gUnknown_81ED2B0: @ 81ED2B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81EA094 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED2C8 -gUnknown_81ED2C8: @ 81ED2C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81EA3C4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED2E0 -gUnknown_81ED2E0: @ 81ED2E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81EA6F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED2F8 -gUnknown_81ED2F8: @ 81ED2F8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81EA85C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED310 -gUnknown_81ED310: @ 81ED310 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81EAB48 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED328 -gUnknown_81ED328: @ 81ED328 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81EADDC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED340 -gUnknown_81ED340: @ 81ED340 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81EB100 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED358 -gUnknown_81ED358: @ 81ED358 -.byte 0x22, 0x04, 0x00, 0x00 -.byte 0x1e, 0x30, 0x00, 0x02 -.4byte gUnknown_81EB468 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED370 -gUnknown_81ED370: @ 81ED370 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81EB674 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED388 -gUnknown_81ED388: @ 81ED388 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81EB830 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED3A0 -gUnknown_81ED3A0: @ 81ED3A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81EB95C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x04, 0x00, 0x00 -.byte 0x1e, 0x23, 0x00, 0x02 -.4byte gUnknown_81EBD04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED3D0 -gUnknown_81ED3D0: @ 81ED3D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81EC030 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED3E8 -gUnknown_81ED3E8: @ 81ED3E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81EC17C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED400 -gUnknown_81ED400: @ 81ED400 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81EC59C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00 -.byte 0x1e, 0x2f, 0x00, 0x02 -.4byte gUnknown_81EC950 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED430 -gUnknown_81ED430: @ 81ED430 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_81ECC04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x00, 0x00, 0x1e, 0x2f, 0x00, 0x02 -.4byte gUnknown_81ECDD0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED460 -gUnknown_81ED460: @ 81ED460 -.byte 0x11, 0x00, 0x08, 0x08, 0x14, 0x1d, 0x00, 0x00 -.4byte gUnknown_81E1EF0 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81E1F40 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED478 -gUnknown_81ED478: @ 81ED478 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED484 -gUnknown_81ED484: @ 81ED484 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED490 -gUnknown_81ED490: @ 81ED490 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED49C -gUnknown_81ED49C: @ 81ED49C -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED4A8 -gUnknown_81ED4A8: @ 81ED4A8 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED4B4 -gUnknown_81ED4B4: @ 81ED4B4 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED4C0 -gUnknown_81ED4C0: @ 81ED4C0 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x20, 0x00, 0x02 -.4byte gUnknown_81E2E60 - -.global gUnknown_81ED4CC -gUnknown_81ED4CC: @ 81ED4CC -.byte 0x05, 0x00, 0x01, 0x01, 0x1e, 0x1e, 0x00, 0x02 -.4byte gUnknown_81E4E10 - -.global gUnknown_81ED4D8 -gUnknown_81ED4D8: @ 81ED4D8 -.byte 0x05, 0x00, 0x01, 0x01 -.byte 0x1c, 0x1b, 0x02, 0x02 -.4byte gUnknown_81E4ED0 - -.global gUnknown_81ED4E4 -gUnknown_81ED4E4: @ 81ED4E4 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED4F0 -gUnknown_81ED4F0: @ 81ED4F0 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED4FC -gUnknown_81ED4FC: @ 81ED4FC -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED508 -gUnknown_81ED508: @ 81ED508 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED514 -gUnknown_81ED514: @ 81ED514 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED520 -gUnknown_81ED520: @ 81ED520 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED52C -gUnknown_81ED52C: @ 81ED52C -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED538 -gUnknown_81ED538: @ 81ED538 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED544 -gUnknown_81ED544: @ 81ED544 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED550 -gUnknown_81ED550: @ 81ED550 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED55C -gUnknown_81ED55C: @ 81ED55C -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED568 -gUnknown_81ED568: @ 81ED568 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED574 -gUnknown_81ED574: @ 81ED574 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED580 -gUnknown_81ED580: @ 81ED580 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED58C -gUnknown_81ED58C: @ 81ED58C -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED598 -gUnknown_81ED598: @ 81ED598 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED5A4 -gUnknown_81ED5A4: @ 81ED5A4 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED5B0 -gUnknown_81ED5B0: @ 81ED5B0 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED5BC -gUnknown_81ED5BC: @ 81ED5BC -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED5C8 -gUnknown_81ED5C8: @ 81ED5C8 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED5D4 -gUnknown_81ED5D4: @ 81ED5D4 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED5E0 -gUnknown_81ED5E0: @ 81ED5E0 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED5EC -gUnknown_81ED5EC: @ 81ED5EC -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED5F8 -gUnknown_81ED5F8: @ 81ED5F8 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED604 -gUnknown_81ED604: @ 81ED604 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED610 -gUnknown_81ED610: @ 81ED610 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED61C -gUnknown_81ED61C: @ 81ED61C -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED628 -gUnknown_81ED628: @ 81ED628 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED634 -gUnknown_81ED634: @ 81ED634 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED640 -gUnknown_81ED640: @ 81ED640 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED64C -gUnknown_81ED64C: @ 81ED64C -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED658 -gUnknown_81ED658: @ 81ED658 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED664 -gUnknown_81ED664: @ 81ED664 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x01, 0x2d, 0x11, 0x00, 0x02 -.4byte gUnknown_81EBE54 - -.global gUnknown_81ED67C -gUnknown_81ED67C: @ 81ED67C -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED688 -gUnknown_81ED688: @ 81ED688 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED694 -gUnknown_81ED694: @ 81ED694 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED6A0 -gUnknown_81ED6A0: @ 81ED6A0 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED6AC -gUnknown_81ED6AC: @ 81ED6AC -.byte 0x06, 0x03, 0x00, 0x00, 0x1b, 0x30, 0x00, 0x00 -.4byte gUnknown_81E1DE0 -.byte 0x06, 0x03, 0x00, 0x00 -.byte 0x1b, 0x1c, 0x00, 0x00 -.4byte gUnknown_81E1EE4 - -.global gUnknown_81ED6C4 -gUnknown_81ED6C4: @ 81ED6C4 -.byte 0x06, 0x03, 0x00, 0x00, 0x1b, 0x30, 0x00, 0x00 -.4byte gUnknown_81E78B8 -.byte 0x06, 0x03, 0x00, 0x00, 0x1b, 0x1c, 0x00, 0x00 -.4byte gUnknown_81E79A4 - -.global gUnknown_81ED6DC -gUnknown_81ED6DC: @ 81ED6DC -.byte 0x06, 0x03, 0x00, 0x00, 0x1b, 0x30, 0x00, 0x00 -.4byte gUnknown_81ECA4C -.byte 0x06, 0x03, 0x00, 0x00, 0x1b, 0x1c, 0x00, 0x00 -.4byte gUnknown_81ECB2C - -.global gUnknown_81ED6F4 -gUnknown_81ED6F4: @ 81ED6F4 -.4byte gUnknown_81E1DA4 - -.global gUnknown_81ED6F8 -gUnknown_81ED6F8: @ 81ED6F8 -.4byte gUnknown_81E2220 - -.global gUnknown_81ED6FC -gUnknown_81ED6FC: @ 81ED6FC -.4byte gUnknown_81E230C - -.global gUnknown_81ED700 -gUnknown_81ED700: @ 81ED700 -.4byte gUnknown_81E2438 - -.global gUnknown_81ED704 -gUnknown_81ED704: @ 81ED704 -.4byte gUnknown_81E25FC - -.global gUnknown_81ED708 -gUnknown_81ED708: @ 81ED708 -.4byte gUnknown_81E2758 - -.global gUnknown_81ED70C -gUnknown_81ED70C: @ 81ED70C -.4byte gUnknown_81E2874 - -.global gUnknown_81ED710 -gUnknown_81ED710: @ 81ED710 -.4byte gUnknown_81E29C0 - -.global gUnknown_81ED714 -gUnknown_81ED714: @ 81ED714 -.4byte gUnknown_81E2B0C - -.global gUnknown_81ED718 -gUnknown_81ED718: @ 81ED718 -.4byte gUnknown_81E2C68 - -.global gUnknown_81ED71C -gUnknown_81ED71C: @ 81ED71C -.4byte gUnknown_81E2E54 - -.global gUnknown_81ED720 -gUnknown_81ED720: @ 81ED720 -.4byte gUnknown_81E5070 - -.global gUnknown_81ED724 -gUnknown_81ED724: @ 81ED724 -.4byte gUnknown_81E551C - -.global gUnknown_81ED728 -gUnknown_81ED728: @ 81ED728 -.4byte gUnknown_81E5878 - -.global gUnknown_81ED72C -gUnknown_81ED72C: @ 81ED72C -.4byte gUnknown_81E6574 - -.global gUnknown_81ED730 -gUnknown_81ED730: @ 81ED730 -.4byte gUnknown_81E6FC0 - -.global gUnknown_81ED734 -gUnknown_81ED734: @ 81ED734 -.4byte gUnknown_81E7554 - -.global gUnknown_81ED738 -gUnknown_81ED738: @ 81ED738 -.4byte gUnknown_81E77F4 - -.global gUnknown_81ED73C -gUnknown_81ED73C: @ 81ED73C -.4byte gUnknown_81E7A80 - -.global gUnknown_81ED740 -gUnknown_81ED740: @ 81ED740 -.4byte gUnknown_81E7BDC - -.global gUnknown_81ED744 -gUnknown_81ED744: @ 81ED744 -.4byte gUnknown_81E7F2C - -.global gUnknown_81ED748 -gUnknown_81ED748: @ 81ED748 -.4byte gUnknown_81E8088 - -.global gUnknown_81ED74C -gUnknown_81ED74C: @ 81ED74C -.4byte gUnknown_81E8388 - -.global gUnknown_81ED750 -gUnknown_81ED750: @ 81ED750 -.4byte gUnknown_81E8D48 - -.global gUnknown_81ED754 -gUnknown_81ED754: @ 81ED754 -.4byte gUnknown_81E8F24 - -.global gUnknown_81ED758 -gUnknown_81ED758: @ 81ED758 -.4byte gUnknown_81E90F0 - -.global gUnknown_81ED75C -gUnknown_81ED75C: @ 81ED75C -.4byte gUnknown_81E92BC - -.global gUnknown_81ED760 -gUnknown_81ED760: @ 81ED760 -.4byte gUnknown_81E9408 - -.global gUnknown_81ED764 -gUnknown_81ED764: @ 81ED764 -.4byte gUnknown_81E95D4 - -.global gUnknown_81ED768 -gUnknown_81ED768: @ 81ED768 -.4byte gUnknown_81E9720 - -.global gUnknown_81ED76C -gUnknown_81ED76C: @ 81ED76C -.4byte gUnknown_81E98EC - -.global gUnknown_81ED770 -gUnknown_81ED770: @ 81ED770 -.4byte gUnknown_81E9A38 - -.global gUnknown_81ED774 -gUnknown_81ED774: @ 81ED774 -.4byte gUnknown_81E9C04 - -.global gUnknown_81ED778 -gUnknown_81ED778: @ 81ED778 -.4byte gUnknown_81E9D50 - -.global gUnknown_81ED77C -gUnknown_81ED77C: @ 81ED77C -.4byte gUnknown_81E9F1C - -.global gUnknown_81ED780 -gUnknown_81ED780: @ 81ED780 -.4byte gUnknown_81EA088 - -.global gUnknown_81ED784 -gUnknown_81ED784: @ 81ED784 -.4byte gUnknown_81EA3B8 - -.global gUnknown_81ED788 -gUnknown_81ED788: @ 81ED788 -.4byte gUnknown_81EA6E4 - -.global gUnknown_81ED78C -gUnknown_81ED78C: @ 81ED78C -.4byte gUnknown_81EA850 - -.global gUnknown_81ED790 -gUnknown_81ED790: @ 81ED790 -.4byte gUnknown_81EAB3C - -.global gUnknown_81ED794 -gUnknown_81ED794: @ 81ED794 -.4byte gUnknown_81EADD0 - -.global gUnknown_81ED798 -gUnknown_81ED798: @ 81ED798 -.4byte gUnknown_81EB0F4 - -.global gUnknown_81ED79C -gUnknown_81ED79C: @ 81ED79C -.4byte gUnknown_81EB668 - -.global gUnknown_81ED7A0 -gUnknown_81ED7A0: @ 81ED7A0 -.4byte gUnknown_81EB824 - -.global gUnknown_81ED7A4 -gUnknown_81ED7A4: @ 81ED7A4 -.4byte gUnknown_81EB950 - -.global gUnknown_81ED7A8 -gUnknown_81ED7A8: @ 81ED7A8 -.4byte gUnknown_81EC024 - -.global gUnknown_81ED7AC -gUnknown_81ED7AC: @ 81ED7AC -.4byte gUnknown_81EC170 - -.global gUnknown_81ED7B0 -gUnknown_81ED7B0: @ 81ED7B0 -.4byte gUnknown_81EC590 - -.global gUnknown_81ED7B4 -gUnknown_81ED7B4: @ 81ED7B4 -.4byte gUnknown_81ECA10 - -.global gUnknown_81ED7B8 -gUnknown_81ED7B8: @ 81ED7B8 -.4byte gUnknown_81ECBF8 - -.global gUnknown_81ED7BC -gUnknown_81ED7BC: @ 81ED7BC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED460 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED6AC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED6F4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81ECE60 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81ECE90 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81ED834 -gUnknown_81ED834: @ 81ED834 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81ECEC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED6F8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81ECEF0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED6FC - -.global gUnknown_81ED884 -gUnknown_81ED884: @ 81ED884 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ECF20 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED478 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED700 - -.global gUnknown_81ED8AC -gUnknown_81ED8AC: @ 81ED8AC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ECF38 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED484 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED704 - -.global gUnknown_81ED8D4 -gUnknown_81ED8D4: @ 81ED8D4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ECF50 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED490 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED708 - -.global gUnknown_81ED8FC -gUnknown_81ED8FC: @ 81ED8FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED70C - -.global gUnknown_81ED924 -gUnknown_81ED924: @ 81ED924 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ECF68 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED49C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED710 - -.global gUnknown_81ED94C -gUnknown_81ED94C: @ 81ED94C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ECF80 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED4A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED714 - -.global gUnknown_81ED974 -gUnknown_81ED974: @ 81ED974 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ECF98 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED4B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED718 - -.global gUnknown_81ED99C -gUnknown_81ED99C: @ 81ED99C -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81ECFB0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED4C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED71C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ECFF8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED4CC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED4D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EDA14 -gUnknown_81EDA14: @ 81EDA14 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED010 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED4E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED720 - -.global gUnknown_81EDA3C -gUnknown_81EDA3C: @ 81EDA3C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED028 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED4F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED724 - -.global gUnknown_81EDA64 -gUnknown_81EDA64: @ 81EDA64 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED058 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED4FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED728 - -.global gUnknown_81EDA8C -gUnknown_81EDA8C: @ 81EDA8C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED088 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED508 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED72C - -.global gUnknown_81EDAB4 -gUnknown_81EDAB4: @ 81EDAB4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED0B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED514 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED730 - -.global gUnknown_81EDADC -gUnknown_81EDADC: @ 81EDADC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED0E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED520 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED734 - -.global gUnknown_81EDB04 -gUnknown_81EDB04: @ 81EDB04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED6C4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED738 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED100 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED52C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED73C - -.global gUnknown_81EDB54 -gUnknown_81EDB54: @ 81EDB54 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED118 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED538 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED740 - -.global gUnknown_81EDB7C -gUnknown_81EDB7C: @ 81EDB7C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED130 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED544 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED744 - -.global gUnknown_81EDBA4 -gUnknown_81EDBA4: @ 81EDBA4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED148 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED550 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED748 - -.global gUnknown_81EDBCC -gUnknown_81EDBCC: @ 81EDBCC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED160 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED55C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED74C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED178 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EDC1C -gUnknown_81EDC1C: @ 81EDC1C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED190 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED568 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED750 - -.global gUnknown_81EDC44 -gUnknown_81EDC44: @ 81EDC44 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED1A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED574 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED754 - -.global gUnknown_81EDC6C -gUnknown_81EDC6C: @ 81EDC6C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED1C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED580 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED758 - -.global gUnknown_81EDC94 -gUnknown_81EDC94: @ 81EDC94 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED1D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED58C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED75C - -.global gUnknown_81EDCBC -gUnknown_81EDCBC: @ 81EDCBC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED1F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED598 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED760 - -.global gUnknown_81EDCE4 -gUnknown_81EDCE4: @ 81EDCE4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED208 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED5A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED764 - -.global gUnknown_81EDD0C -gUnknown_81EDD0C: @ 81EDD0C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED220 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED5B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED768 - -.global gUnknown_81EDD34 -gUnknown_81EDD34: @ 81EDD34 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED238 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED5BC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED76C - -.global gUnknown_81EDD5C -gUnknown_81EDD5C: @ 81EDD5C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED250 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED5C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED770 - -.global gUnknown_81EDD84 -gUnknown_81EDD84: @ 81EDD84 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED268 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED5D4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED774 - -.global gUnknown_81EDDAC -gUnknown_81EDDAC: @ 81EDDAC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED280 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED5E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED778 - -.global gUnknown_81EDDD4 -gUnknown_81EDDD4: @ 81EDDD4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED298 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED5EC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED77C - -.global gUnknown_81EDDFC -gUnknown_81EDDFC: @ 81EDDFC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED2B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED5F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED780 - -.global gUnknown_81EDE24 -gUnknown_81EDE24: @ 81EDE24 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED2C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED604 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED784 - -.global gUnknown_81EDE4C -gUnknown_81EDE4C: @ 81EDE4C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED2E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED610 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED788 - -.global gUnknown_81EDE74 -gUnknown_81EDE74: @ 81EDE74 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED2F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED61C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED78C - -.global gUnknown_81EDE9C -gUnknown_81EDE9C: @ 81EDE9C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED310 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED628 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED790 - -.global gUnknown_81EDEC4 -gUnknown_81EDEC4: @ 81EDEC4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED328 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED634 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED794 - -.global gUnknown_81EDEEC -gUnknown_81EDEEC: @ 81EDEEC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED340 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED640 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED798 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED358 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EDF3C -gUnknown_81EDF3C: @ 81EDF3C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED370 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED64C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED79C - -.global gUnknown_81EDF64 -gUnknown_81EDF64: @ 81EDF64 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED388 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED658 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED7A0 - -.global gUnknown_81EDF8C -gUnknown_81EDF8C: @ 81EDF8C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED3A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED664 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED7A4 - -.global gUnknown_81EDFB4 -gUnknown_81EDFB4: @ 81EDFB4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED3D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED67C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED7A8 - -.global gUnknown_81EDFDC -gUnknown_81EDFDC: @ 81EDFDC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED3E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED688 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED7AC - -.global gUnknown_81EE004 -gUnknown_81EE004: @ 81EE004 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED400 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED694 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED7B0 - -.global gUnknown_81EE02C -gUnknown_81EE02C: @ 81EE02C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED6DC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED7B4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED430 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED6A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED7B8 - -.global gUnknown_81EE07C -gUnknown_81EE07C: @ 81EE07C -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED7BC -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED834 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED884 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED8AC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED8D4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED8FC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED924 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED94C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED974 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81ED99C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDA14 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDA3C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDA64 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDA8C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDAB4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDADC -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDB04 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDB54 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDB7C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDBA4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDBCC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDC1C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDC44 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDC6C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDC94 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDCBC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDCE4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDD0C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDD34 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDD5C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDD84 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDDAC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDDD4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDDFC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDE24 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDE4C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDE74 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDE9C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDEC4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDEEC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDF3C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDF64 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDF8C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDFB4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EDFDC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE004 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE02C - -.global gUnknown_81EE1F4 -gUnknown_81EE1F4: @ 81EE1F4 -.byte 0x11, 0x1a, 0x00, 0x02, 0x01, 0x01, 0x01, 0x03 -.byte 0x1e, 0x23, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1e, 0x23, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1e, 0x23, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01 - -.global gUnknown_81EE214 -gUnknown_81EE214: @ 81EE214 -.byte 0x2f, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE07C -.4byte gUnknown_81EE1F4 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81EE228 -gUnknown_81EE228: @ 81EE228 -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE3C8 -gUnknown_81EE3C8: @ 81EE3C8 -.string "../data/ground/ground_data_h01p01_station.c\0" -.align 2, 0 - -.global gUnknown_81EE3F4 -gUnknown_81EE3F4: @ 81EE3F4 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE228 - -.global gUnknown_81EE400 -gUnknown_81EE400: @ 81EE400 -.byte 0xf6, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE440 -gUnknown_81EE440: @ 81EE440 -.byte 0xf6, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE480 -gUnknown_81EE480: @ 81EE480 -.byte 0xf6, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE4C0 -gUnknown_81EE4C0: @ 81EE4C0 -.byte 0xf6, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE500 -gUnknown_81EE500: @ 81EE500 -.byte 0xf6, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE530 -gUnknown_81EE530: @ 81EE530 -.byte 0xf6, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE560 -gUnknown_81EE560: @ 81EE560 -.byte 0xf6, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE590 -gUnknown_81EE590: @ 81EE590 -.byte 0xf6, 0x00, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE5B0 -gUnknown_81EE5B0: @ 81EE5B0 -.byte 0xf6, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE5E0 -gUnknown_81EE5E0: @ 81EE5E0 -.byte 0xf6, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE600 -gUnknown_81EE600: @ 81EE600 -.byte 0xf6, 0x00, 0x71, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE630 -gUnknown_81EE630: @ 81EE630 -.byte 0xf6, 0x00, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE650 -gUnknown_81EE650: @ 81EE650 -.byte 0xf6, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE680 -gUnknown_81EE680: @ 81EE680 -.byte 0xf6, 0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE6A0 -gUnknown_81EE6A0: @ 81EE6A0 -.byte 0xf6, 0x00, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE6D0 -gUnknown_81EE6D0: @ 81EE6D0 -.byte 0xf6, 0x00, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE6F0 -gUnknown_81EE6F0: @ 81EE6F0 -.byte 0xf6, 0x00, 0x92, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE720 -gUnknown_81EE720: @ 81EE720 -.byte 0xf6, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE740 -gUnknown_81EE740: @ 81EE740 -.byte 0xf6, 0x00, 0x9d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE770 -gUnknown_81EE770: @ 81EE770 -.byte 0xf6, 0x00, 0xa3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE790 -gUnknown_81EE790: @ 81EE790 -.byte 0xf6, 0x00, 0xa8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0x51, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE7C0 -gUnknown_81EE7C0: @ 81EE7C0 -.byte 0xf6, 0x00, 0xae, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE7E0 -gUnknown_81EE7E0: @ 81EE7E0 -.byte 0xf6, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0x51, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE810 -gUnknown_81EE810: @ 81EE810 -.byte 0xf6, 0x00, 0xb9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE3C8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE830 -gUnknown_81EE830: @ 81EE830 -.byte 0x00, 0x04, 0x00, 0x00, 0x1c, 0x18, 0x02, 0x02 -.4byte gUnknown_81EE400 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1c, 0x1a, 0x02, 0x02 -.4byte gUnknown_81EE440 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE860 -gUnknown_81EE860: @ 81EE860 -.byte 0x00, 0x04, 0x00, 0x00, 0x1c, 0x18, 0x02, 0x02 -.4byte gUnknown_81EE480 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x1c, 0x1a, 0x02, 0x02 -.4byte gUnknown_81EE4C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE890 -gUnknown_81EE890: @ 81EE890 -.byte 0x00, 0x00, 0x00, 0x00, 0x1c, 0x18, 0x02, 0x02 -.4byte gUnknown_81EE500 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1c, 0x1a, 0x02, 0x02 -.4byte gUnknown_81EE530 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE8C0 -gUnknown_81EE8C0: @ 81EE8C0 -.byte 0x0e, 0x00, 0x00, 0x00, 0x15, 0x15, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE560 -.4byte gUnknown_81EE590 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x24, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE5B0 -.4byte gUnknown_81EE5E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x0a, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE600 -.4byte gUnknown_81EE630 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x2f, 0x15, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE650 -.4byte gUnknown_81EE680 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x10, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE6A0 -.4byte gUnknown_81EE6D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00 -.byte 0x29, 0x19, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE6F0 -.4byte gUnknown_81EE720 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1c, 0x14, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE740 -.4byte gUnknown_81EE770 -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x17, 0x10, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE790 -.4byte gUnknown_81EE7C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x22, 0x10, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE7E0 -.4byte gUnknown_81EE810 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EE998 -gUnknown_81EE998: @ 81EE998 -.byte 0x3a, 0x01, 0x00, 0x00 -.byte 0x00, 0x1d, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3a, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81EE9B0 -gUnknown_81EE9B0: @ 81EE9B0 -.4byte gUnknown_81EE3F4 - -.global gUnknown_81EE9B4 -gUnknown_81EE9B4: @ 81EE9B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE998 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE9B0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE830 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE860 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE890 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EEA7C -gUnknown_81EEA7C: @ 81EEA7C -.byte 0x09, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE8C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EEAA4 -gUnknown_81EEAA4: @ 81EEAA4 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81EE9B4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EEA7C - -.global gUnknown_81EEAB4 -gUnknown_81EEAB4: @ 81EEAB4 -.byte 0x13, 0x13, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x20, 0x13, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x07, 0x13, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x2c, 0x13, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0d, 0x15, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x26, 0x15, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x19, 0x10, 0x02, 0x00, 0x06, 0x06, 0x03, 0x02, 0x13, 0x0d, 0x02, 0x00, 0x06, 0x06, 0x03, 0x02, 0x20, 0x0d, 0x02, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81EEAFC -gUnknown_81EEAFC: @ 81EEAFC -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81EEAA4 -.4byte gUnknown_81EEAB4 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81EEB10 -gUnknown_81EEB10: @ 81EEB10 -.byte 0xf6, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -.byte 0x08, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EED60 -gUnknown_81EED60: @ 81EED60 -.string "../data/ground/ground_data_h01p02_station.c\0" -.align 2, 0 - -.global gUnknown_81EED8C -gUnknown_81EED8C: @ 81EED8C -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EEB10 - -.global gUnknown_81EED98 -gUnknown_81EED98: @ 81EED98 -.byte 0xf6, 0x00, 0x3e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EEDD8 -gUnknown_81EEDD8: @ 81EEDD8 -.byte 0xf6, 0x00, 0x45, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EEE18 -gUnknown_81EEE18: @ 81EEE18 -.byte 0xf6, 0x00, 0x4c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EEE58 -gUnknown_81EEE58: @ 81EEE58 -.byte 0xf6, 0x00, 0x53, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EEE98 -gUnknown_81EEE98: @ 81EEE98 -.byte 0xf6, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EEEC8 -gUnknown_81EEEC8: @ 81EEEC8 -.byte 0xf6, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -.byte 0xe8, 0x00, 0x52, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EEEF8 -gUnknown_81EEEF8: @ 81EEEF8 -.byte 0xf6, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EEF28 -gUnknown_81EEF28: @ 81EEF28 -.byte 0xf6, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EEF48 -gUnknown_81EEF48: @ 81EEF48 -.byte 0xf6, 0x00, 0x71, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -.byte 0x51, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EEF78 -gUnknown_81EEF78: @ 81EEF78 -.byte 0xf6, 0x00, 0x77, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EEF98 -gUnknown_81EEF98: @ 81EEF98 -.byte 0xf6, 0x00, 0x7c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EEFC8 -gUnknown_81EEFC8: @ 81EEFC8 -.byte 0xf6, 0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EEFE8 -gUnknown_81EEFE8: @ 81EEFE8 -.byte 0xf6, 0x00, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -.byte 0x51, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF018 -gUnknown_81EF018: @ 81EF018 -.byte 0xf6, 0x00, 0x8d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF038 -gUnknown_81EF038: @ 81EF038 -.byte 0xf6, 0x00, 0x92, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF068 -gUnknown_81EF068: @ 81EF068 -.byte 0xf6, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF088 -gUnknown_81EF088: @ 81EF088 -.byte 0xf6, 0x00, 0x9d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -.byte 0x51, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF0B8 -gUnknown_81EF0B8: @ 81EF0B8 -.byte 0xf6, 0x00, 0xa3, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF0D8 -gUnknown_81EF0D8: @ 81EF0D8 -.byte 0xf6, 0x00, 0xa8, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -.byte 0x51, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF108 -gUnknown_81EF108: @ 81EF108 -.byte 0xf6, 0x00, 0xae, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF128 -gUnknown_81EF128: @ 81EF128 -.byte 0xf6, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -.byte 0x51, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF158 -gUnknown_81EF158: @ 81EF158 -.byte 0xf6, 0x00, 0xb9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF178 -gUnknown_81EF178: @ 81EF178 -.byte 0xf6, 0x00, 0xbe, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -.byte 0x51, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF1A8 -gUnknown_81EF1A8: @ 81EF1A8 -.byte 0xf6, 0x00, 0xc4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF1C8 -gUnknown_81EF1C8: @ 81EF1C8 -.byte 0xf6, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -.byte 0x51, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF1F8 -gUnknown_81EF1F8: @ 81EF1F8 -.byte 0xf6, 0x00, 0xcf, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EED60 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF218 -gUnknown_81EF218: @ 81EF218 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x24, 0x23, 0x02, 0x02 -.4byte gUnknown_81EED98 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x24, 0x26, 0x02, 0x02 -.4byte gUnknown_81EEDD8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF248 -gUnknown_81EF248: @ 81EF248 -.byte 0x00, 0x04, 0x00, 0x00, 0x24, 0x26, 0x02, 0x02 -.4byte gUnknown_81EEE18 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x24, 0x23, 0x02, 0x02 -.4byte gUnknown_81EEE58 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF278 -gUnknown_81EF278: @ 81EF278 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x24, 0x26, 0x02, 0x02 -.4byte gUnknown_81EEE98 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x24, 0x23, 0x02, 0x02 -.4byte gUnknown_81EEEC8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF2A8 -gUnknown_81EF2A8: @ 81EF2A8 -.byte 0x0e, 0x00, 0x00, 0x00, 0x24, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EEEF8 -.4byte gUnknown_81EEF28 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x2d, 0x1b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EEF48 -.4byte gUnknown_81EEF78 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0x1c, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EEF98 -.4byte gUnknown_81EEFC8 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x34, 0x17, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EEFE8 -.4byte gUnknown_81EF018 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x14, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF038 -.4byte gUnknown_81EF068 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x2e, 0x13, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF088 -.4byte gUnknown_81EF0B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00 -.byte 0x0c, 0x20, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF0D8 -.4byte gUnknown_81EF108 -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x28, 0x10, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF128 -.4byte gUnknown_81EF158 -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x23, 0x17, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF178 -.4byte gUnknown_81EF1A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF1C8 -.4byte gUnknown_81EF1F8 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF398 -gUnknown_81EF398: @ 81EF398 -.byte 0x01, 0x2a, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x01, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81EF3C8 -gUnknown_81EF3C8: @ 81EF3C8 -.4byte gUnknown_81EED8C - -.global gUnknown_81EF3CC -gUnknown_81EF3CC: @ 81EF3CC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF398 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF3C8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF218 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF248 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF278 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF494 -gUnknown_81EF494: @ 81EF494 -.byte 0x0a, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF2A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF4BC -gUnknown_81EF4BC: @ 81EF4BC -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF3CC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF494 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF4D4 -gUnknown_81EF4D4: @ 81EF4D4 -.byte 0x21, 0x1a, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x2a, 0x18, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x19, 0x1c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x31, 0x14, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x11, 0x1c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x25, 0x0e, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x15, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x20, 0x14, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x09, 0x1d, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x2b, 0x11, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81EF524 -gUnknown_81EF524: @ 81EF524 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF4BC -.4byte gUnknown_81EF4D4 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81EF538 -gUnknown_81EF538: @ 81EF538 -.byte 0xf6, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF788 -.byte 0x08, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF788 -gUnknown_81EF788: @ 81EF788 -.string "../data/ground/ground_data_h01p03_station.c\0" -.align 2, 0 - -.global gUnknown_81EF7B4 -gUnknown_81EF7B4: @ 81EF7B4 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF538 - -.global gUnknown_81EF7C0 -gUnknown_81EF7C0: @ 81EF7C0 -.byte 0xf6, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF788 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF800 -gUnknown_81EF800: @ 81EF800 -.byte 0xf6, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF788 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF840 -gUnknown_81EF840: @ 81EF840 -.byte 0xf6, 0x00, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF788 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF880 -gUnknown_81EF880: @ 81EF880 -.byte 0xf6, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF788 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF8C0 -gUnknown_81EF8C0: @ 81EF8C0 -.byte 0xf6, 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF788 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF8F0 -gUnknown_81EF8F0: @ 81EF8F0 -.byte 0xf6, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF788 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF920 -gUnknown_81EF920: @ 81EF920 -.byte 0xf6, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF788 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF950 -gUnknown_81EF950: @ 81EF950 -.byte 0xf6, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF788 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF970 -gUnknown_81EF970: @ 81EF970 -.byte 0xf6, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF788 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF9A0 -gUnknown_81EF9A0: @ 81EF9A0 -.byte 0xf6, 0x00, 0x71, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF788 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF9C0 -gUnknown_81EF9C0: @ 81EF9C0 -.byte 0xf6, 0x00, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF788 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EF9F0 -gUnknown_81EF9F0: @ 81EF9F0 -.byte 0xf6, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF788 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EFA10 -gUnknown_81EFA10: @ 81EFA10 -.byte 0xf6, 0x00, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF788 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EFA40 -gUnknown_81EFA40: @ 81EFA40 -.byte 0xf6, 0x00, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF788 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EFA60 -gUnknown_81EFA60: @ 81EFA60 -.byte 0x00, 0x04, 0x00, 0x00, 0x21, 0x07, 0x02, 0x02 -.4byte gUnknown_81EF7C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x21, 0x03, 0x02, 0x02 -.4byte gUnknown_81EF800 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EFA90 -gUnknown_81EFA90: @ 81EFA90 -.byte 0x00, 0x04, 0x00, 0x00, 0x21, 0x07, 0x02, 0x02 -.4byte gUnknown_81EF840 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x21, 0x03, 0x02, 0x02 -.4byte gUnknown_81EF880 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EFAC0 -gUnknown_81EFAC0: @ 81EFAC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x21, 0x07, 0x02, 0x02 -.4byte gUnknown_81EF8C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x21, 0x03, 0x02, 0x02 -.4byte gUnknown_81EF8F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EFAF0 -gUnknown_81EFAF0: @ 81EFAF0 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1b, 0x10, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF920 -.4byte gUnknown_81EF950 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x1d, 0x19, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF970 -.4byte gUnknown_81EF9A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x12, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EF9C0 -.4byte gUnknown_81EF9F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00 -.byte 0x31, 0x21, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFA10 -.4byte gUnknown_81EFA40 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EFB50 -gUnknown_81EFB50: @ 81EFB50 -.byte 0x42, 0x03, 0x00, 0x00, 0x00, 0x2a, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x2d, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x42, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81EFB80 -gUnknown_81EFB80: @ 81EFB80 -.4byte gUnknown_81EF7B4 - -.global gUnknown_81EFB84 -gUnknown_81EFB84: @ 81EFB84 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFB50 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFB80 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFA60 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFA90 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFAC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EFC4C -gUnknown_81EFC4C: @ 81EFC4C -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFAF0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EFC74 -gUnknown_81EFC74: @ 81EFC74 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFB84 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFC4C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EFC8C -gUnknown_81EFC8C: @ 81EFC8C -.byte 0x0f, 0x1d, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x2e, 0x1e, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x1a, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x18, 0x0d, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81EFCAC -gUnknown_81EFCAC: @ 81EFCAC -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFC74 -.4byte gUnknown_81EFC8C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81EFCC0 -gUnknown_81EFCC0: @ 81EFCC0 -.byte 0xf6, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0x08, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EFF10 -gUnknown_81EFF10: @ 81EFF10 -.string "../data/ground/ground_data_h02p01_station.c\0" -.align 2, 0 - -.global gUnknown_81EFF3C -gUnknown_81EFF3C: @ 81EFF3C -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFCC0 - -.global gUnknown_81EFF48 -gUnknown_81EFF48: @ 81EFF48 -.byte 0xf6, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EFF88 -gUnknown_81EFF88: @ 81EFF88 -.byte 0xf6, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81EFFC8 -gUnknown_81EFFC8: @ 81EFFC8 -.byte 0xf6, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0008 -gUnknown_81F0008: @ 81F0008 -.byte 0xf6, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0048 -gUnknown_81F0048: @ 81F0048 -.byte 0xf6, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0xe8, 0x00, 0x51, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0078 -gUnknown_81F0078: @ 81F0078 -.byte 0xf6, 0x00, 0x62, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F00A8 -gUnknown_81F00A8: @ 81F00A8 -.byte 0xf6, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0x51, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F00D8 -gUnknown_81F00D8: @ 81F00D8 -.byte 0xf6, 0x00, 0x6e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F00F8 -gUnknown_81F00F8: @ 81F00F8 -.byte 0xf6, 0x00, 0x73, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0128 -gUnknown_81F0128: @ 81F0128 -.byte 0xf6, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0148 -gUnknown_81F0148: @ 81F0148 -.byte 0xf6, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0x51, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0178 -gUnknown_81F0178: @ 81F0178 -.byte 0xf6, 0x00, 0x84, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0198 -gUnknown_81F0198: @ 81F0198 -.byte 0xf6, 0x00, 0x89, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0x51, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F01C8 -gUnknown_81F01C8: @ 81F01C8 -.byte 0xf6, 0x00, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F01E8 -gUnknown_81F01E8: @ 81F01E8 -.byte 0xf6, 0x00, 0x94, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0x51, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0218 -gUnknown_81F0218: @ 81F0218 -.byte 0xf6, 0x00, 0x9a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0238 -gUnknown_81F0238: @ 81F0238 -.byte 0xf6, 0x00, 0x9f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0x51, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0268 -gUnknown_81F0268: @ 81F0268 -.byte 0xf6, 0x00, 0xa5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0288 -gUnknown_81F0288: @ 81F0288 -.byte 0xf6, 0x00, 0xaa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0x51, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F02B8 -gUnknown_81F02B8: @ 81F02B8 -.byte 0xf6, 0x00, 0xb0, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F02D8 -gUnknown_81F02D8: @ 81F02D8 -.byte 0xf6, 0x00, 0xb5, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0308 -gUnknown_81F0308: @ 81F0308 -.byte 0xf6, 0x00, 0xbb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0328 -gUnknown_81F0328: @ 81F0328 -.byte 0xf6, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0x51, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0358 -gUnknown_81F0358: @ 81F0358 -.byte 0xf6, 0x00, 0xc6, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0378 -gUnknown_81F0378: @ 81F0378 -.byte 0xf6, 0x00, 0xcb, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F03A8 -gUnknown_81F03A8: @ 81F03A8 -.byte 0xf6, 0x00, 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F03C8 -gUnknown_81F03C8: @ 81F03C8 -.byte 0xf6, 0x00, 0xd6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0x51, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F03F8 -gUnknown_81F03F8: @ 81F03F8 -.byte 0xf6, 0x00, 0xdc, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0418 -gUnknown_81F0418: @ 81F0418 -.byte 0xf6, 0x00, 0xe1, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0448 -gUnknown_81F0448: @ 81F0448 -.byte 0xf6, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81EFF10 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0468 -gUnknown_81F0468: @ 81F0468 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81EFF48 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_81EFF88 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0498 -gUnknown_81F0498: @ 81F0498 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81EFFC8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_81F0008 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F04C8 -gUnknown_81F04C8: @ 81F04C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81F0048 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_81F0078 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F04F8 -gUnknown_81F04F8: @ 81F04F8 -.byte 0x0e, 0x00, 0x00, 0x00 -.byte 0x1a, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F00A8 -.4byte gUnknown_81F00D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x20, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F00F8 -.4byte gUnknown_81F0128 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x12, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0148 -.4byte gUnknown_81F0178 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x29, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0198 -.4byte gUnknown_81F01C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00 -.byte 0x10, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F01E8 -.4byte gUnknown_81F0218 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x2c, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0238 -.4byte gUnknown_81F0268 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x09, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0288 -.4byte gUnknown_81F02B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x33, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F02D8 -.4byte gUnknown_81F0308 -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00 -.byte 0x11, 0x0d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0328 -.4byte gUnknown_81F0358 -.byte 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x2a, 0x0d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0378 -.4byte gUnknown_81F03A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x19, 0x0c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F03C8 -.4byte gUnknown_81F03F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x23, 0x0c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0418 -.4byte gUnknown_81F0448 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0618 -gUnknown_81F0618: @ 81F0618 -.byte 0x3c, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81F0648 -gUnknown_81F0648: @ 81F0648 -.4byte gUnknown_81EFF3C - -.global gUnknown_81F064C -gUnknown_81F064C: @ 81F064C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0618 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0648 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0468 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0498 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F04C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0714 -gUnknown_81F0714: @ 81F0714 -.byte 0x0c, 0x00, 0x00, 0x00 -.4byte gUnknown_81F04F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F073C -gUnknown_81F073C: @ 81F073C -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81F064C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0714 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0754 -gUnknown_81F0754: @ 81F0754 -.byte 0x20, 0x09, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x06, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x16, 0x09, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1e, 0x1b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x28, 0x0b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x0e, 0x0b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x30, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x29, 0x13, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0d, 0x13, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x26, 0x1b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0f, 0x1b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x17, 0x1b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81F07B4 -gUnknown_81F07B4: @ 81F07B4 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81F073C -.4byte gUnknown_81F0754 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81F07C8 -gUnknown_81F07C8: @ 81F07C8 -.byte 0xf6, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0A18 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0x6d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0A18 -gUnknown_81F0A18: @ 81F0A18 -.string "../data/ground/ground_data_h02p02_station.c\0" -.align 2, 0 - -.global gUnknown_81F0A44 -gUnknown_81F0A44: @ 81F0A44 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F07C8 - -.global gUnknown_81F0A50 -gUnknown_81F0A50: @ 81F0A50 -.byte 0xf6, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0A18 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0A90 -gUnknown_81F0A90: @ 81F0A90 -.byte 0xf6, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0A18 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0AD0 -gUnknown_81F0AD0: @ 81F0AD0 -.byte 0xf6, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0A18 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0B10 -gUnknown_81F0B10: @ 81F0B10 -.byte 0xf6, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0A18 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0B50 -gUnknown_81F0B50: @ 81F0B50 -.byte 0xf6, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0A18 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0B80 -gUnknown_81F0B80: @ 81F0B80 -.byte 0xf6, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0A18 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0BB0 -gUnknown_81F0BB0: @ 81F0BB0 -.byte 0xf6, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0A18 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0BE0 -gUnknown_81F0BE0: @ 81F0BE0 -.byte 0xf6, 0x00, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0A18 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0C00 -gUnknown_81F0C00: @ 81F0C00 -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x1e, 0x02, 0x02 -.4byte gUnknown_81F0A50 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x1d, 0x21, 0x02, 0x02 -.4byte gUnknown_81F0A90 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0C30 -gUnknown_81F0C30: @ 81F0C30 -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x1e, 0x02, 0x02 -.4byte gUnknown_81F0AD0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1d, 0x21, 0x02, 0x02 -.4byte gUnknown_81F0B10 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0C60 -gUnknown_81F0C60: @ 81F0C60 -.byte 0x00, 0x00, 0x00, 0x00, 0x1d, 0x1e, 0x02, 0x02 -.4byte gUnknown_81F0B50 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x1d, 0x21, 0x02, 0x02 -.4byte gUnknown_81F0B80 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0C90 -gUnknown_81F0C90: @ 81F0C90 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1c, 0x0f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0BB0 -.4byte gUnknown_81F0BE0 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0CA8 -gUnknown_81F0CA8: @ 81F0CA8 -.byte 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x39, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x27, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81F0CD8 -gUnknown_81F0CD8: @ 81F0CD8 -.4byte gUnknown_81F0A44 - -.global gUnknown_81F0CDC -gUnknown_81F0CDC: @ 81F0CDC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0CA8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0CD8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0C00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0C30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0C60 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0DA4 -gUnknown_81F0DA4: @ 81F0DA4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0C90 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0DCC -gUnknown_81F0DCC: @ 81F0DCC -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0CDC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0DA4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F0DE4 -gUnknown_81F0DE4: @ 81F0DE4 -.byte 0x17, 0x0c, 0x00, 0x00, 0x0a, 0x07, 0x03, 0x02 - -.global gUnknown_81F0DEC -gUnknown_81F0DEC: @ 81F0DEC -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0DCC -.4byte gUnknown_81F0DE4 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81F0E00 -gUnknown_81F0E00: @ 81F0E00 -.byte 0xf6, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1050 -.byte 0x08, 0x00, 0x00, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1050 -gUnknown_81F1050: @ 81F1050 -.string "../data/ground/ground_data_h02p03_station.c\0" -.align 2, 0 - -.global gUnknown_81F107C -gUnknown_81F107C: @ 81F107C -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F0E00 - -.global gUnknown_81F1088 -gUnknown_81F1088: @ 81F1088 -.byte 0xf6, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1050 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F10C8 -gUnknown_81F10C8: @ 81F10C8 -.byte 0xf6, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1050 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1108 -gUnknown_81F1108: @ 81F1108 -.byte 0xf6, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1050 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1148 -gUnknown_81F1148: @ 81F1148 -.byte 0xf6, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1050 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1188 -gUnknown_81F1188: @ 81F1188 -.byte 0xf6, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1050 -.byte 0xe8, 0x00, 0x51, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F11B8 -gUnknown_81F11B8: @ 81F11B8 -.byte 0xf6, 0x00, 0x57, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1050 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F11E8 -gUnknown_81F11E8: @ 81F11E8 -.byte 0xf6, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1050 -.byte 0x51, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1218 -gUnknown_81F1218: @ 81F1218 -.byte 0xf6, 0x00, 0x63, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1050 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1238 -gUnknown_81F1238: @ 81F1238 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x17, 0x21, 0x02, 0x02 -.4byte gUnknown_81F1088 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x17, 0x25, 0x02, 0x02 -.4byte gUnknown_81F10C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1268 -gUnknown_81F1268: @ 81F1268 -.byte 0x00, 0x04, 0x00, 0x00, 0x17, 0x21, 0x02, 0x02 -.4byte gUnknown_81F1108 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x17, 0x25, 0x02, 0x02 -.4byte gUnknown_81F1148 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1298 -gUnknown_81F1298: @ 81F1298 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x17, 0x21, 0x02, 0x02 -.4byte gUnknown_81F1188 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x17, 0x25, 0x02, 0x02 -.4byte gUnknown_81F11B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F12C8 -gUnknown_81F12C8: @ 81F12C8 -.byte 0x0e, 0x00, 0x00, 0x00, 0x16, 0x0d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F11E8 -.4byte gUnknown_81F1218 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F12E0 -gUnknown_81F12E0: @ 81F12E0 -.byte 0x2d, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x2a, 0x00, 0x00 -.byte 0x2a, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x2d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81F1310 -gUnknown_81F1310: @ 81F1310 -.4byte gUnknown_81F107C - -.global gUnknown_81F1314 -gUnknown_81F1314: @ 81F1314 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81F12E0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1310 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1238 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1268 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1298 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F13DC -gUnknown_81F13DC: @ 81F13DC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F12C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1404 -gUnknown_81F1404: @ 81F1404 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1314 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F13DC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F141C -gUnknown_81F141C: @ 81F141C -.byte 0x13, 0x0a, 0x00, 0x00, 0x07, 0x07, 0x03, 0x02 - -.global gUnknown_81F1424 -gUnknown_81F1424: @ 81F1424 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1404 -.4byte gUnknown_81F141C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81F1438 -gUnknown_81F1438: @ 81F1438 -.byte 0xf6, 0x00, 0x10, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1688 -.byte 0x08, 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1688 -gUnknown_81F1688: @ 81F1688 -.string "../data/ground/ground_data_h03p01_station.c\0" -.align 2, 0 - -.global gUnknown_81F16B4 -gUnknown_81F16B4: @ 81F16B4 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1438 - -.global gUnknown_81F16C0 -gUnknown_81F16C0: @ 81F16C0 -.byte 0xf6, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1688 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1700 -gUnknown_81F1700: @ 81F1700 -.byte 0xf6, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1688 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1740 -gUnknown_81F1740: @ 81F1740 -.byte 0xf6, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1688 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1780 -gUnknown_81F1780: @ 81F1780 -.byte 0xf6, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1688 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F17C0 -gUnknown_81F17C0: @ 81F17C0 -.byte 0xf6, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1688 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F17F0 -gUnknown_81F17F0: @ 81F17F0 -.byte 0xf6, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1688 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1820 -gUnknown_81F1820: @ 81F1820 -.byte 0xf6, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1688 -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1850 -gUnknown_81F1850: @ 81F1850 -.byte 0xf6, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1688 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1870 -gUnknown_81F1870: @ 81F1870 -.byte 0xf6, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1688 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F18A0 -gUnknown_81F18A0: @ 81F18A0 -.byte 0xf6, 0x00, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1688 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F18C0 -gUnknown_81F18C0: @ 81F18C0 -.byte 0xf6, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1688 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F18F0 -gUnknown_81F18F0: @ 81F18F0 -.byte 0xf6, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1688 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1910 -gUnknown_81F1910: @ 81F1910 -.byte 0xf6, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1688 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1940 -gUnknown_81F1940: @ 81F1940 -.byte 0xf6, 0x00, 0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1688 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1960 -gUnknown_81F1960: @ 81F1960 -.byte 0xf6, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1688 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1990 -gUnknown_81F1990: @ 81F1990 -.byte 0xf6, 0x00, 0x94, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1688 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F19B0 -gUnknown_81F19B0: @ 81F19B0 -.byte 0xf6, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1688 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F19E0 -gUnknown_81F19E0: @ 81F19E0 -.byte 0xf6, 0x00, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1688 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1A00 -gUnknown_81F1A00: @ 81F1A00 -.byte 0x00, 0x04, 0x00, 0x00, 0x21, 0x15, 0x02, 0x02 -.4byte gUnknown_81F16C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x21, 0x18, 0x02, 0x02 -.4byte gUnknown_81F1700 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1A30 -gUnknown_81F1A30: @ 81F1A30 -.byte 0x00, 0x04, 0x00, 0x00, 0x21, 0x15, 0x02, 0x02 -.4byte gUnknown_81F1740 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x21, 0x18, 0x02, 0x02 -.4byte gUnknown_81F1780 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1A60 -gUnknown_81F1A60: @ 81F1A60 -.byte 0x00, 0x00, 0x00, 0x00, 0x21, 0x15, 0x02, 0x02 -.4byte gUnknown_81F17C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x21, 0x18, 0x02, 0x02 -.4byte gUnknown_81F17F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1A90 -gUnknown_81F1A90: @ 81F1A90 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1f, 0x0f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1820 -.4byte gUnknown_81F1850 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x2a, 0x14, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1870 -.4byte gUnknown_81F18A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x29, 0x0d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F18C0 -.4byte gUnknown_81F18F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00 -.byte 0x18, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1910 -.4byte gUnknown_81F1940 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x33, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1960 -.4byte gUnknown_81F1990 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x11, 0x11, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F19B0 -.4byte gUnknown_81F19E0 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1B20 -gUnknown_81F1B20: @ 81F1B20 -.byte 0x45, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x45, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81F1B50 -gUnknown_81F1B50: @ 81F1B50 -.4byte gUnknown_81F16B4 - -.global gUnknown_81F1B54 -gUnknown_81F1B54: @ 81F1B54 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1B20 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1B50 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1A00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1A30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1A60 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1C1C -gUnknown_81F1C1C: @ 81F1C1C -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1A90 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1C44 -gUnknown_81F1C44: @ 81F1C44 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1B54 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1C1C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1C5C -gUnknown_81F1C5C: @ 81F1C5C -.byte 0x0e, 0x0f, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x30, 0x0f, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x15, 0x09, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x26, 0x0b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x27, 0x11, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1c, 0x0c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81F1C8C -gUnknown_81F1C8C: @ 81F1C8C -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1C44 -.4byte gUnknown_81F1C5C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81F1CA0 -gUnknown_81F1CA0: @ 81F1CA0 -.byte 0xf6, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0x08, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1EF0 -gUnknown_81F1EF0: @ 81F1EF0 -.string "../data/ground/ground_data_h04p01_station.c\0" -.align 2, 0 - -.global gUnknown_81F1F1C -gUnknown_81F1F1C: @ 81F1F1C -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1CA0 - -.global gUnknown_81F1F28 -gUnknown_81F1F28: @ 81F1F28 -.byte 0xf6, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1F68 -gUnknown_81F1F68: @ 81F1F68 -.byte 0xf6, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1FA8 -gUnknown_81F1FA8: @ 81F1FA8 -.byte 0xf6, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F1FE8 -gUnknown_81F1FE8: @ 81F1FE8 -.byte 0xf6, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2028 -gUnknown_81F2028: @ 81F2028 -.byte 0xf6, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0xe8, 0x00, 0x51, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2058 -gUnknown_81F2058: @ 81F2058 -.byte 0xf6, 0x00, 0x62, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2088 -gUnknown_81F2088: @ 81F2088 -.byte 0xf6, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0x51, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F20B8 -gUnknown_81F20B8: @ 81F20B8 -.byte 0xf6, 0x00, 0x6e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F20D8 -gUnknown_81F20D8: @ 81F20D8 -.byte 0xf6, 0x00, 0x73, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0x51, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2108 -gUnknown_81F2108: @ 81F2108 -.byte 0xf6, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2128 -gUnknown_81F2128: @ 81F2128 -.byte 0xf6, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0x51, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2158 -gUnknown_81F2158: @ 81F2158 -.byte 0xf6, 0x00, 0x84, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2178 -gUnknown_81F2178: @ 81F2178 -.byte 0xf6, 0x00, 0x89, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0x51, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F21A8 -gUnknown_81F21A8: @ 81F21A8 -.byte 0xf6, 0x00, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F21C8 -gUnknown_81F21C8: @ 81F21C8 -.byte 0xf6, 0x00, 0x94, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0x51, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F21F8 -gUnknown_81F21F8: @ 81F21F8 -.byte 0xf6, 0x00, 0x9a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2218 -gUnknown_81F2218: @ 81F2218 -.byte 0xf6, 0x00, 0x9f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0x51, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2248 -gUnknown_81F2248: @ 81F2248 -.byte 0xf6, 0x00, 0xa5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2268 -gUnknown_81F2268: @ 81F2268 -.byte 0xf6, 0x00, 0xaa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0x51, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2298 -gUnknown_81F2298: @ 81F2298 -.byte 0xf6, 0x00, 0xb0, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F22B8 -gUnknown_81F22B8: @ 81F22B8 -.byte 0xf6, 0x00, 0xb5, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F22E8 -gUnknown_81F22E8: @ 81F22E8 -.byte 0xf6, 0x00, 0xbb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2308 -gUnknown_81F2308: @ 81F2308 -.byte 0xf6, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0x51, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2338 -gUnknown_81F2338: @ 81F2338 -.byte 0xf6, 0x00, 0xc6, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2358 -gUnknown_81F2358: @ 81F2358 -.byte 0xf6, 0x00, 0xcb, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2388 -gUnknown_81F2388: @ 81F2388 -.byte 0xf6, 0x00, 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F23A8 -gUnknown_81F23A8: @ 81F23A8 -.byte 0xf6, 0x00, 0xd6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0x51, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F23D8 -gUnknown_81F23D8: @ 81F23D8 -.byte 0xf6, 0x00, 0xdc, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F23F8 -gUnknown_81F23F8: @ 81F23F8 -.byte 0xf6, 0x00, 0xe1, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2428 -gUnknown_81F2428: @ 81F2428 -.byte 0xf6, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F1EF0 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2448 -gUnknown_81F2448: @ 81F2448 -.byte 0x00, 0x04, 0x00, 0x00, 0x20, 0x23, 0x02, 0x02 -.4byte gUnknown_81F1F28 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x20, 0x26, 0x02, 0x02 -.4byte gUnknown_81F1F68 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2478 -gUnknown_81F2478: @ 81F2478 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x20, 0x23, 0x02, 0x02 -.4byte gUnknown_81F1FA8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x20, 0x26, 0x02, 0x02 -.4byte gUnknown_81F1FE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F24A8 -gUnknown_81F24A8: @ 81F24A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x20, 0x23, 0x02, 0x02 -.4byte gUnknown_81F2028 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x20, 0x26, 0x02, 0x02 -.4byte gUnknown_81F2058 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F24D8 -gUnknown_81F24D8: @ 81F24D8 -.byte 0x0e, 0x00, 0x00, 0x00 -.byte 0x0c, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2088 -.4byte gUnknown_81F20B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x33, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F20D8 -.4byte gUnknown_81F2108 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x1b, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2128 -.4byte gUnknown_81F2158 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x23, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2178 -.4byte gUnknown_81F21A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00 -.byte 0x18, 0x19, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F21C8 -.4byte gUnknown_81F21F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x1f, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2218 -.4byte gUnknown_81F2248 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x25, 0x19, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2268 -.4byte gUnknown_81F2298 -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x1c, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F22B8 -.4byte gUnknown_81F22E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00 -.byte 0x22, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2308 -.4byte gUnknown_81F2338 -.byte 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x28, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2358 -.4byte gUnknown_81F2388 -.byte 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x16, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F23A8 -.4byte gUnknown_81F23D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x26, 0x0d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F23F8 -.4byte gUnknown_81F2428 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F25F8 -gUnknown_81F25F8: @ 81F25F8 -.byte 0x3f, 0x01, 0x00, 0x00 -.byte 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81F2604 -gUnknown_81F2604: @ 81F2604 -.4byte gUnknown_81F1F1C - -.global gUnknown_81F2608 -gUnknown_81F2608: @ 81F2608 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F25F8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2604 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2448 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2478 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F24A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F26D0 -gUnknown_81F26D0: @ 81F26D0 -.byte 0x0c, 0x00, 0x00, 0x00 -.4byte gUnknown_81F24D8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F26F8 -gUnknown_81F26F8: @ 81F26F8 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2608 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F26D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2710 -gUnknown_81F2710: @ 81F2710 -.byte 0x19, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x24, 0x0a, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x13, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x25, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1f, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x23, 0x16, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x14, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1c, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x20, 0x1c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x18, 0x1c, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x30, 0x0f, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x09, 0x15, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81F2770 -gUnknown_81F2770: @ 81F2770 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81F26F8 -.4byte gUnknown_81F2710 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81F2784 -gUnknown_81F2784: @ 81F2784 -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -.byte 0x08, 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F29D4 -gUnknown_81F29D4: @ 81F29D4 -.string "../data/ground/ground_data_h04p02_station.c\0" -.align 2, 0 - -.global gUnknown_81F2A00 -gUnknown_81F2A00: @ 81F2A00 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2784 - -.global gUnknown_81F2A0C -gUnknown_81F2A0C: @ 81F2A0C -.byte 0xf6, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2A4C -gUnknown_81F2A4C: @ 81F2A4C -.byte 0xf6, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2A8C -gUnknown_81F2A8C: @ 81F2A8C -.byte 0xf6, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2ACC -gUnknown_81F2ACC: @ 81F2ACC -.byte 0xf6, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2B0C -gUnknown_81F2B0C: @ 81F2B0C -.byte 0xf6, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2B3C -gUnknown_81F2B3C: @ 81F2B3C -.byte 0xf6, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2B6C -gUnknown_81F2B6C: @ 81F2B6C -.byte 0xf6, 0x00, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -.byte 0x51, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2B9C -gUnknown_81F2B9C: @ 81F2B9C -.byte 0xf6, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2BBC -gUnknown_81F2BBC: @ 81F2BBC -.byte 0xf6, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -.byte 0x51, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2BEC -gUnknown_81F2BEC: @ 81F2BEC -.byte 0xf6, 0x00, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2C0C -gUnknown_81F2C0C: @ 81F2C0C -.byte 0xf6, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2C3C -gUnknown_81F2C3C: @ 81F2C3C -.byte 0xf6, 0x00, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2C5C -gUnknown_81F2C5C: @ 81F2C5C -.byte 0xf6, 0x00, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2C8C -gUnknown_81F2C8C: @ 81F2C8C -.byte 0xf6, 0x00, 0x8c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2CAC -gUnknown_81F2CAC: @ 81F2CAC -.byte 0xf6, 0x00, 0x91, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2CDC -gUnknown_81F2CDC: @ 81F2CDC -.byte 0xf6, 0x00, 0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2CFC -gUnknown_81F2CFC: @ 81F2CFC -.byte 0xf6, 0x00, 0x9c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2D2C -gUnknown_81F2D2C: @ 81F2D2C -.byte 0xf6, 0x00, 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2D4C -gUnknown_81F2D4C: @ 81F2D4C -.byte 0xf6, 0x00, 0xa7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2D7C -gUnknown_81F2D7C: @ 81F2D7C -.byte 0xf6, 0x00, 0xad, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2D9C -gUnknown_81F2D9C: @ 81F2D9C -.byte 0xf6, 0x00, 0xb2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2DCC -gUnknown_81F2DCC: @ 81F2DCC -.byte 0xf6, 0x00, 0xb8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2DEC -gUnknown_81F2DEC: @ 81F2DEC -.byte 0xf6, 0x00, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2E1C -gUnknown_81F2E1C: @ 81F2E1C -.byte 0xf6, 0x00, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F29D4 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2E3C -gUnknown_81F2E3C: @ 81F2E3C -.byte 0x00, 0x04, 0x00, 0x00, 0x0c, 0x23, 0x02, 0x02 -.4byte gUnknown_81F2A0C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x0c, 0x26, 0x02, 0x02 -.4byte gUnknown_81F2A4C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2E6C -gUnknown_81F2E6C: @ 81F2E6C -.byte 0x00, 0x04, 0x00, 0x00, 0x0c, 0x23, 0x02, 0x02 -.4byte gUnknown_81F2A8C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x0c, 0x26, 0x02, 0x02 -.4byte gUnknown_81F2ACC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2E9C -gUnknown_81F2E9C: @ 81F2E9C -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x23, 0x02, 0x02 -.4byte gUnknown_81F2B0C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x0c, 0x26, 0x02, 0x02 -.4byte gUnknown_81F2B3C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2ECC -gUnknown_81F2ECC: @ 81F2ECC -.byte 0x0e, 0x00, 0x00, 0x00, 0x0c, 0x1c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2B6C -.4byte gUnknown_81F2B9C -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x15, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2BBC -.4byte gUnknown_81F2BEC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x06, 0x17, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2C0C -.4byte gUnknown_81F2C3C -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x1e, 0x21, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2C5C -.4byte gUnknown_81F2C8C -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x22, 0x0f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2CAC -.4byte gUnknown_81F2CDC -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x28, 0x0c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2CFC -.4byte gUnknown_81F2D2C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x14, 0x00, 0x00, 0x00, 0x1f, 0x08, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2D4C -.4byte gUnknown_81F2D7C -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x2d, 0x0f, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2D9C -.4byte gUnknown_81F2DCC -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x32, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2DEC -.4byte gUnknown_81F2E1C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F2FA4 -gUnknown_81F2FA4: @ 81F2FA4 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81F2FBC -gUnknown_81F2FBC: @ 81F2FBC -.4byte gUnknown_81F2A00 - -.global gUnknown_81F2FC0 -gUnknown_81F2FC0: @ 81F2FC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2FA4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2FBC -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2E3C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2E6C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2E9C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F3088 -gUnknown_81F3088: @ 81F3088 -.byte 0x09, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2ECC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F30B0 -gUnknown_81F30B0: @ 81F30B0 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81F2FC0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3088 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F30C8 -gUnknown_81F30C8: @ 81F30C8 -.byte 0x2f, 0x13, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x2b, 0x0d, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1d, 0x06, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x25, 0x09, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1f, 0x0c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1b, 0x1f, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x03, 0x16, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x12, 0x1a, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x09, 0x1a, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81F3110 -gUnknown_81F3110: @ 81F3110 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81F30B0 -.4byte gUnknown_81F30C8 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81F3124 -gUnknown_81F3124: @ 81F3124 -.byte 0xf6, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3374 -.byte 0x08, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F3374 -gUnknown_81F3374: @ 81F3374 -.string "../data/ground/ground_data_h05p01_station.c\0" -.align 2, 0 - -.global gUnknown_81F33A0 -gUnknown_81F33A0: @ 81F33A0 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3124 - -.global gUnknown_81F33AC -gUnknown_81F33AC: @ 81F33AC -.byte 0xf6, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3374 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F33EC -gUnknown_81F33EC: @ 81F33EC -.byte 0xf6, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3374 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F342C -gUnknown_81F342C: @ 81F342C -.byte 0xf6, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3374 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F346C -gUnknown_81F346C: @ 81F346C -.byte 0xf6, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3374 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F34AC -gUnknown_81F34AC: @ 81F34AC -.byte 0xf6, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3374 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F34DC -gUnknown_81F34DC: @ 81F34DC -.byte 0xf6, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3374 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F350C -gUnknown_81F350C: @ 81F350C -.byte 0xf6, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3374 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F353C -gUnknown_81F353C: @ 81F353C -.byte 0xf6, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3374 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F355C -gUnknown_81F355C: @ 81F355C -.byte 0xf6, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3374 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F358C -gUnknown_81F358C: @ 81F358C -.byte 0xf6, 0x00, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3374 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F35AC -gUnknown_81F35AC: @ 81F35AC -.byte 0xf6, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3374 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F35DC -gUnknown_81F35DC: @ 81F35DC -.byte 0xf6, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3374 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F35FC -gUnknown_81F35FC: @ 81F35FC -.byte 0xf6, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3374 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F362C -gUnknown_81F362C: @ 81F362C -.byte 0xf6, 0x00, 0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3374 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F364C -gUnknown_81F364C: @ 81F364C -.byte 0xf6, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3374 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F367C -gUnknown_81F367C: @ 81F367C -.byte 0xf6, 0x00, 0x94, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3374 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F369C -gUnknown_81F369C: @ 81F369C -.byte 0xf6, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3374 -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F36CC -gUnknown_81F36CC: @ 81F36CC -.byte 0xf6, 0x00, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3374 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F36EC -gUnknown_81F36EC: @ 81F36EC -.byte 0x00, 0x04, 0x00, 0x00, 0x23, 0x23, 0x02, 0x02 -.4byte gUnknown_81F33AC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x20, 0x26, 0x02, 0x02 -.4byte gUnknown_81F33EC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F371C -gUnknown_81F371C: @ 81F371C -.byte 0x00, 0x04, 0x00, 0x00, 0x23, 0x23, 0x02, 0x02 -.4byte gUnknown_81F342C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x20, 0x26, 0x02, 0x02 -.4byte gUnknown_81F346C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F374C -gUnknown_81F374C: @ 81F374C -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x23, 0x02, 0x02 -.4byte gUnknown_81F34AC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x20, 0x26, 0x02, 0x02 -.4byte gUnknown_81F34DC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F377C -gUnknown_81F377C: @ 81F377C -.byte 0x0e, 0x00, 0x00, 0x00, 0x2b, 0x20, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F350C -.4byte gUnknown_81F353C -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x18, 0x19, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F355C -.4byte gUnknown_81F358C -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x26, 0x1a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F35AC -.4byte gUnknown_81F35DC -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x11, 0x10, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F35FC -.4byte gUnknown_81F362C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x12, 0x00, 0x00, 0x00, 0x11, 0x19, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F364C -.4byte gUnknown_81F367C -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x1b, 0x0e, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F369C -.4byte gUnknown_81F36CC -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F380C -gUnknown_81F380C: @ 81F380C -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81F3818 -gUnknown_81F3818: @ 81F3818 -.4byte gUnknown_81F33A0 - -.global gUnknown_81F381C -gUnknown_81F381C: @ 81F381C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F380C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3818 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F36EC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F371C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F374C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F38E4 -gUnknown_81F38E4: @ 81F38E4 -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_81F377C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F390C -gUnknown_81F390C: @ 81F390C -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81F381C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F38E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F3924 -gUnknown_81F3924: @ 81F3924 -.byte 0x28, 0x1e, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x15, 0x17, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x23, 0x18, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x0e, 0x0e, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0d, 0x17, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x18, 0x0c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81F3954 -gUnknown_81F3954: @ 81F3954 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81F390C -.4byte gUnknown_81F3924 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81F3968 -gUnknown_81F3968: @ 81F3968 -.byte 0xf6, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3BB8 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F3BB8 -gUnknown_81F3BB8: @ 81F3BB8 -.string "../data/ground/ground_data_h05p02_station.c\0" -.align 2, 0 - -.global gUnknown_81F3BE4 -gUnknown_81F3BE4: @ 81F3BE4 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3968 - -.global gUnknown_81F3BF0 -gUnknown_81F3BF0: @ 81F3BF0 -.byte 0xf6, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3BB8 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F3C30 -gUnknown_81F3C30: @ 81F3C30 -.byte 0xf6, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3BB8 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F3C70 -gUnknown_81F3C70: @ 81F3C70 -.byte 0xf6, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3BB8 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F3CB0 -gUnknown_81F3CB0: @ 81F3CB0 -.byte 0xf6, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3BB8 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F3CF0 -gUnknown_81F3CF0: @ 81F3CF0 -.byte 0xf6, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3BB8 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F3D20 -gUnknown_81F3D20: @ 81F3D20 -.byte 0xf6, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3BB8 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F3D50 -gUnknown_81F3D50: @ 81F3D50 -.byte 0xf6, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3BB8 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F3D80 -gUnknown_81F3D80: @ 81F3D80 -.byte 0xf6, 0x00, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3BB8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F3DA0 -gUnknown_81F3DA0: @ 81F3DA0 -.byte 0x00, 0x04, 0x00, 0x00, 0x1c, 0x20, 0x02, 0x02 -.4byte gUnknown_81F3BF0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x1c, 0x23, 0x02, 0x02 -.4byte gUnknown_81F3C30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F3DD0 -gUnknown_81F3DD0: @ 81F3DD0 -.byte 0x00, 0x04, 0x00, 0x00, 0x1c, 0x20, 0x02, 0x02 -.4byte gUnknown_81F3C70 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1c, 0x23, 0x02, 0x02 -.4byte gUnknown_81F3CB0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F3E00 -gUnknown_81F3E00: @ 81F3E00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1c, 0x20, 0x02, 0x02 -.4byte gUnknown_81F3CF0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x1c, 0x23, 0x02, 0x02 -.4byte gUnknown_81F3D20 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F3E30 -gUnknown_81F3E30: @ 81F3E30 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1c, 0x0e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3D50 -.4byte gUnknown_81F3D80 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F3E48 -gUnknown_81F3E48: @ 81F3E48 -.byte 0x39, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x39, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x27, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81F3E78 -gUnknown_81F3E78: @ 81F3E78 -.4byte gUnknown_81F3BE4 - -.global gUnknown_81F3E7C -gUnknown_81F3E7C: @ 81F3E7C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3E48 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3E78 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3DA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3DD0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3E00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F3F44 -gUnknown_81F3F44: @ 81F3F44 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3E30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F3F6C -gUnknown_81F3F6C: @ 81F3F6C -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3E7C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3F44 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F3F84 -gUnknown_81F3F84: @ 81F3F84 -.byte 0x18, 0x0c, 0x00, 0x00, 0x09, 0x05, 0x03, 0x02 - -.global gUnknown_81F3F8C -gUnknown_81F3F8C: @ 81F3F8C -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3F6C -.4byte gUnknown_81F3F84 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81F3FA0 -gUnknown_81F3FA0: @ 81F3FA0 -.byte 0xf6, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0x08, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F41F0 -gUnknown_81F41F0: @ 81F41F0 -.string "../data/ground/ground_data_h06p01_station.c\0" -.align 2, 0 - -.global gUnknown_81F421C -gUnknown_81F421C: @ 81F421C -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F3FA0 - -.global gUnknown_81F4228 -gUnknown_81F4228: @ 81F4228 -.byte 0xf6, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4268 -gUnknown_81F4268: @ 81F4268 -.byte 0xf6, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F42A8 -gUnknown_81F42A8: @ 81F42A8 -.byte 0xf6, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F42E8 -gUnknown_81F42E8: @ 81F42E8 -.byte 0xf6, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4328 -gUnknown_81F4328: @ 81F4328 -.byte 0xf6, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0xe8, 0x00, 0x51, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4358 -gUnknown_81F4358: @ 81F4358 -.byte 0xf6, 0x00, 0x63, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4388 -gUnknown_81F4388: @ 81F4388 -.byte 0xf6, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0x51, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F43B8 -gUnknown_81F43B8: @ 81F43B8 -.byte 0xf6, 0x00, 0x6f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F43D8 -gUnknown_81F43D8: @ 81F43D8 -.byte 0xf6, 0x00, 0x74, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0x51, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4408 -gUnknown_81F4408: @ 81F4408 -.byte 0xf6, 0x00, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4428 -gUnknown_81F4428: @ 81F4428 -.byte 0xf6, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0x51, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4458 -gUnknown_81F4458: @ 81F4458 -.byte 0xf6, 0x00, 0x85, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4478 -gUnknown_81F4478: @ 81F4478 -.byte 0xf6, 0x00, 0x8a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0x51, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F44A8 -gUnknown_81F44A8: @ 81F44A8 -.byte 0xf6, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F44C8 -gUnknown_81F44C8: @ 81F44C8 -.byte 0xf6, 0x00, 0x95, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0x51, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F44F8 -gUnknown_81F44F8: @ 81F44F8 -.byte 0xf6, 0x00, 0x9b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4518 -gUnknown_81F4518: @ 81F4518 -.byte 0xf6, 0x00, 0xa0, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0x51, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4548 -gUnknown_81F4548: @ 81F4548 -.byte 0xf6, 0x00, 0xa6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4568 -gUnknown_81F4568: @ 81F4568 -.byte 0xf6, 0x00, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0x51, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4598 -gUnknown_81F4598: @ 81F4598 -.byte 0xf6, 0x00, 0xb1, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F45B8 -gUnknown_81F45B8: @ 81F45B8 -.byte 0xf6, 0x00, 0xb6, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F45E8 -gUnknown_81F45E8: @ 81F45E8 -.byte 0xf6, 0x00, 0xbc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4608 -gUnknown_81F4608: @ 81F4608 -.byte 0xf6, 0x00, 0xc1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0x51, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4638 -gUnknown_81F4638: @ 81F4638 -.byte 0xf6, 0x00, 0xc7, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4658 -gUnknown_81F4658: @ 81F4658 -.byte 0xf6, 0x00, 0xcc, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4688 -gUnknown_81F4688: @ 81F4688 -.byte 0xf6, 0x00, 0xd2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F46A8 -gUnknown_81F46A8: @ 81F46A8 -.byte 0xf6, 0x00, 0xd7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0x51, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F46D8 -gUnknown_81F46D8: @ 81F46D8 -.byte 0xf6, 0x00, 0xdd, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F46F8 -gUnknown_81F46F8: @ 81F46F8 -.byte 0xf6, 0x00, 0xe2, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4728 -gUnknown_81F4728: @ 81F4728 -.byte 0xf6, 0x00, 0xe8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4748 -gUnknown_81F4748: @ 81F4748 -.byte 0xf6, 0x00, 0xed, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0x51, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4778 -gUnknown_81F4778: @ 81F4778 -.byte 0xf6, 0x00, 0xf3, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F41F0 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4798 -gUnknown_81F4798: @ 81F4798 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_81F4228 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_81F4268 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F47C8 -gUnknown_81F47C8: @ 81F47C8 -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_81F42A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_81F42E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F47F8 -gUnknown_81F47F8: @ 81F47F8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_81F4328 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_81F4358 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4828 -gUnknown_81F4828: @ 81F4828 -.byte 0x0e, 0x00, 0x00, 0x00, 0x12, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4388 -.4byte gUnknown_81F43B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x28, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F43D8 -.4byte gUnknown_81F4408 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0x0c, 0x25, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4428 -.4byte gUnknown_81F4458 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x2e, 0x25, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4478 -.4byte gUnknown_81F44A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x07, 0x20, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F44C8 -.4byte gUnknown_81F44F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x33, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4518 -.4byte gUnknown_81F4548 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00 -.byte 0x0f, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4568 -.4byte gUnknown_81F4598 -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x2a, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F45B8 -.4byte gUnknown_81F45E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x09, 0x15, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4608 -.4byte gUnknown_81F4638 -.byte 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x30, 0x15, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4658 -.4byte gUnknown_81F4688 -.byte 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00 -.byte 0x11, 0x11, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F46A8 -.4byte gUnknown_81F46D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x25, 0x11, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F46F8 -.4byte gUnknown_81F4728 -.byte 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1c, 0x10, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4748 -.4byte gUnknown_81F4778 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4960 -gUnknown_81F4960: @ 81F4960 -.byte 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x39, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81F4990 -gUnknown_81F4990: @ 81F4990 -.4byte gUnknown_81F421C - -.global gUnknown_81F4994 -gUnknown_81F4994: @ 81F4994 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4960 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4990 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4798 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F47C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F47F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4A5C -gUnknown_81F4A5C: @ 81F4A5C -.byte 0x0d, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4828 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4A84 -gUnknown_81F4A84: @ 81F4A84 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4994 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4A5C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4A9C -gUnknown_81F4A9C: @ 81F4A9C -.byte 0x19, 0x0d, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x23, 0x0f, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0e, 0x0f, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x2d, 0x13, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x06, 0x13, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x27, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0c, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x30, 0x1c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x03, 0x1c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x2a, 0x21, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x09, 0x21, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x24, 0x1c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x0f, 0x1c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81F4B04 -gUnknown_81F4B04: @ 81F4B04 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4A84 -.4byte gUnknown_81F4A9C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81F4B18 -gUnknown_81F4B18: @ 81F4B18 -.byte 0xf6, 0x00, 0x16, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0x08, 0x00, 0x00, 0x00, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4D68 -gUnknown_81F4D68: @ 81F4D68 -.string "../data/ground/ground_data_h06p02_station.c\0" -.align 2, 0 - -.global gUnknown_81F4D94 -gUnknown_81F4D94: @ 81F4D94 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4B18 - -.global gUnknown_81F4DA0 -gUnknown_81F4DA0: @ 81F4DA0 -.byte 0xf6, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4DE0 -gUnknown_81F4DE0: @ 81F4DE0 -.byte 0xf6, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4E20 -gUnknown_81F4E20: @ 81F4E20 -.byte 0xf6, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4E60 -gUnknown_81F4E60: @ 81F4E60 -.byte 0xf6, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4EA0 -gUnknown_81F4EA0: @ 81F4EA0 -.byte 0xf6, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4ED0 -gUnknown_81F4ED0: @ 81F4ED0 -.byte 0xf6, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4F00 -gUnknown_81F4F00: @ 81F4F00 -.byte 0xf6, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0x51, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4F30 -gUnknown_81F4F30: @ 81F4F30 -.byte 0xf6, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4F50 -gUnknown_81F4F50: @ 81F4F50 -.byte 0xf6, 0x00, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0x51, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4F80 -gUnknown_81F4F80: @ 81F4F80 -.byte 0xf6, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4FA0 -gUnknown_81F4FA0: @ 81F4FA0 -.byte 0xf6, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0x51, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4FD0 -gUnknown_81F4FD0: @ 81F4FD0 -.byte 0xf6, 0x00, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F4FF0 -gUnknown_81F4FF0: @ 81F4FF0 -.byte 0xf6, 0x00, 0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0x51, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5020 -gUnknown_81F5020: @ 81F5020 -.byte 0xf6, 0x00, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5040 -gUnknown_81F5040: @ 81F5040 -.byte 0xf6, 0x00, 0x94, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0x51, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5070 -gUnknown_81F5070: @ 81F5070 -.byte 0xf6, 0x00, 0x9a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5090 -gUnknown_81F5090: @ 81F5090 -.byte 0xf6, 0x00, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F50C0 -gUnknown_81F50C0: @ 81F50C0 -.byte 0xf6, 0x00, 0xa5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F50E0 -gUnknown_81F50E0: @ 81F50E0 -.byte 0xf6, 0x00, 0xaa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5110 -gUnknown_81F5110: @ 81F5110 -.byte 0xf6, 0x00, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5130 -gUnknown_81F5130: @ 81F5130 -.byte 0xf6, 0x00, 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5160 -gUnknown_81F5160: @ 81F5160 -.byte 0xf6, 0x00, 0xbb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5180 -gUnknown_81F5180: @ 81F5180 -.byte 0xf6, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F51B0 -gUnknown_81F51B0: @ 81F51B0 -.byte 0xf6, 0x00, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F51D0 -gUnknown_81F51D0: @ 81F51D0 -.byte 0xf6, 0x00, 0xcb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5200 -gUnknown_81F5200: @ 81F5200 -.byte 0xf6, 0x00, 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5220 -gUnknown_81F5220: @ 81F5220 -.byte 0xf6, 0x00, 0xd6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5250 -gUnknown_81F5250: @ 81F5250 -.byte 0xf6, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5270 -gUnknown_81F5270: @ 81F5270 -.byte 0xf6, 0x00, 0xe1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F52A0 -gUnknown_81F52A0: @ 81F52A0 -.byte 0xf6, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F52C0 -gUnknown_81F52C0: @ 81F52C0 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81F4DA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_81F4DE0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F52F0 -gUnknown_81F52F0: @ 81F52F0 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81F4E20 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_81F4E60 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5320 -gUnknown_81F5320: @ 81F5320 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81F4EA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_81F4ED0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5350 -gUnknown_81F5350: @ 81F5350 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1e, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4F00 -.4byte gUnknown_81F4F30 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x14, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4F50 -.4byte gUnknown_81F4F80 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x28, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4FA0 -.4byte gUnknown_81F4FD0 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00 -.byte 0x0d, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F4FF0 -.4byte gUnknown_81F5020 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x2f, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5040 -.4byte gUnknown_81F5070 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x0b, 0x1b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5090 -.4byte gUnknown_81F50C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x32, 0x1b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F50E0 -.4byte gUnknown_81F5110 -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00 -.byte 0x14, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5130 -.4byte gUnknown_81F5160 -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x28, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5180 -.4byte gUnknown_81F51B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x1e, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F51D0 -.4byte gUnknown_81F5200 -.byte 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x1a, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5220 -.4byte gUnknown_81F5250 -.byte 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00 -.byte 0x22, 0x13, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5270 -.4byte gUnknown_81F52A0 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5470 -gUnknown_81F5470: @ 81F5470 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81F54A0 -gUnknown_81F54A0: @ 81F54A0 -.4byte gUnknown_81F4D94 - -.global gUnknown_81F54A4 -gUnknown_81F54A4: @ 81F54A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5470 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F54A0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F52C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F52F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5320 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F556C -gUnknown_81F556C: @ 81F556C -.byte 0x0c, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5350 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5594 -gUnknown_81F5594: @ 81F5594 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81F54A4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F556C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F55AC -gUnknown_81F55AC: @ 81F55AC -.byte 0x1f, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x17, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x1b, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x25, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x11, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x2f, 0x18, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x08, 0x18, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x2c, 0x20, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0a, 0x20, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x25, 0x1c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x11, 0x1c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1b, 0x1c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81F560C -gUnknown_81F560C: @ 81F560C -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5594 -.4byte gUnknown_81F55AC -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81F5620 -gUnknown_81F5620: @ 81F5620 -.byte 0xf6, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0x08, 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5870 -gUnknown_81F5870: @ 81F5870 -.string "../data/ground/ground_data_h06p03_station.c\0" -.align 2, 0 - -.global gUnknown_81F589C -gUnknown_81F589C: @ 81F589C -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5620 - -.global gUnknown_81F58A8 -gUnknown_81F58A8: @ 81F58A8 -.byte 0xf6, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F58E8 -gUnknown_81F58E8: @ 81F58E8 -.byte 0xf6, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5928 -gUnknown_81F5928: @ 81F5928 -.byte 0xf6, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5968 -gUnknown_81F5968: @ 81F5968 -.byte 0xf6, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F59A8 -gUnknown_81F59A8: @ 81F59A8 -.byte 0xf6, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0xe8, 0x00, 0x51, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F59D8 -gUnknown_81F59D8: @ 81F59D8 -.byte 0xf6, 0x00, 0x63, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5A08 -gUnknown_81F5A08: @ 81F5A08 -.byte 0xf6, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0x51, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5A38 -gUnknown_81F5A38: @ 81F5A38 -.byte 0xf6, 0x00, 0x6f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5A58 -gUnknown_81F5A58: @ 81F5A58 -.byte 0xf6, 0x00, 0x74, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0x51, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5A88 -gUnknown_81F5A88: @ 81F5A88 -.byte 0xf6, 0x00, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5AA8 -gUnknown_81F5AA8: @ 81F5AA8 -.byte 0xf6, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0x51, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5AD8 -gUnknown_81F5AD8: @ 81F5AD8 -.byte 0xf6, 0x00, 0x85, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5AF8 -gUnknown_81F5AF8: @ 81F5AF8 -.byte 0xf6, 0x00, 0x8a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0x51, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5B28 -gUnknown_81F5B28: @ 81F5B28 -.byte 0xf6, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5B48 -gUnknown_81F5B48: @ 81F5B48 -.byte 0xf6, 0x00, 0x95, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0x51, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5B78 -gUnknown_81F5B78: @ 81F5B78 -.byte 0xf6, 0x00, 0x9b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5B98 -gUnknown_81F5B98: @ 81F5B98 -.byte 0xf6, 0x00, 0xa0, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0x51, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5BC8 -gUnknown_81F5BC8: @ 81F5BC8 -.byte 0xf6, 0x00, 0xa6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5BE8 -gUnknown_81F5BE8: @ 81F5BE8 -.byte 0xf6, 0x00, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0x51, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5C18 -gUnknown_81F5C18: @ 81F5C18 -.byte 0xf6, 0x00, 0xb1, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5C38 -gUnknown_81F5C38: @ 81F5C38 -.byte 0xf6, 0x00, 0xb6, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5C68 -gUnknown_81F5C68: @ 81F5C68 -.byte 0xf6, 0x00, 0xbc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5C88 -gUnknown_81F5C88: @ 81F5C88 -.byte 0xf6, 0x00, 0xc1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0x51, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5CB8 -gUnknown_81F5CB8: @ 81F5CB8 -.byte 0xf6, 0x00, 0xc7, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5CD8 -gUnknown_81F5CD8: @ 81F5CD8 -.byte 0xf6, 0x00, 0xcc, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5D08 -gUnknown_81F5D08: @ 81F5D08 -.byte 0xf6, 0x00, 0xd2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5D28 -gUnknown_81F5D28: @ 81F5D28 -.byte 0xf6, 0x00, 0xd7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0x51, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5D58 -gUnknown_81F5D58: @ 81F5D58 -.byte 0xf6, 0x00, 0xdd, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5D78 -gUnknown_81F5D78: @ 81F5D78 -.byte 0xf6, 0x00, 0xe2, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5DA8 -gUnknown_81F5DA8: @ 81F5DA8 -.byte 0xf6, 0x00, 0xe8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5DC8 -gUnknown_81F5DC8: @ 81F5DC8 -.byte 0xf6, 0x00, 0xed, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0x51, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5DF8 -gUnknown_81F5DF8: @ 81F5DF8 -.byte 0xf6, 0x00, 0xf3, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5870 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5E18 -gUnknown_81F5E18: @ 81F5E18 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x19, 0x23, 0x02, 0x02 -.4byte gUnknown_81F58A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x19, 0x26, 0x02, 0x02 -.4byte gUnknown_81F58E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5E48 -gUnknown_81F5E48: @ 81F5E48 -.byte 0x00, 0x04, 0x00, 0x00, 0x19, 0x23, 0x02, 0x02 -.4byte gUnknown_81F5928 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x19, 0x26, 0x02, 0x02 -.4byte gUnknown_81F5968 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5E78 -gUnknown_81F5E78: @ 81F5E78 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x19, 0x23, 0x02, 0x02 -.4byte gUnknown_81F59A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x19, 0x26, 0x02, 0x02 -.4byte gUnknown_81F59D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5EA8 -gUnknown_81F5EA8: @ 81F5EA8 -.byte 0x0e, 0x00, 0x00, 0x00, 0x12, 0x1c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5A08 -.4byte gUnknown_81F5A38 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x21, 0x1c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5A58 -.4byte gUnknown_81F5A88 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0x0e, 0x21, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5AA8 -.4byte gUnknown_81F5AD8 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x24, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5AF8 -.4byte gUnknown_81F5B28 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x07, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5B48 -.4byte gUnknown_81F5B78 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x2c, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5B98 -.4byte gUnknown_81F5BC8 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00 -.byte 0x0f, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5BE8 -.4byte gUnknown_81F5C18 -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x24, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5C38 -.4byte gUnknown_81F5C68 -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x15, 0x14, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5C88 -.4byte gUnknown_81F5CB8 -.byte 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x1e, 0x13, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5CD8 -.4byte gUnknown_81F5D08 -.byte 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00 -.byte 0x0c, 0x11, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5D28 -.4byte gUnknown_81F5D58 -.byte 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x28, 0x11, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5D78 -.4byte gUnknown_81F5DA8 -.byte 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x19, 0x0e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5DC8 -.4byte gUnknown_81F5DF8 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F5FE0 -gUnknown_81F5FE0: @ 81F5FE0 -.byte 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x39, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81F6010 -gUnknown_81F6010: @ 81F6010 -.4byte gUnknown_81F589C - -.global gUnknown_81F6014 -gUnknown_81F6014: @ 81F6014 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5FE0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F6010 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5E18 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5E48 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5E78 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F60DC -gUnknown_81F60DC: @ 81F60DC -.byte 0x0d, 0x00, 0x00, 0x00 -.4byte gUnknown_81F5EA8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6104 -gUnknown_81F6104: @ 81F6104 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81F6014 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F60DC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F611C -gUnknown_81F611C: @ 81F611C -.byte 0x16, 0x0b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x24, 0x0e, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x09, 0x0e, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1b, 0x11, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x12, 0x11, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x21, 0x14, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0c, 0x14, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x28, 0x1b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x05, 0x1b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x21, 0x20, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0c, 0x20, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1e, 0x1a, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x0f, 0x1a, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81F6184 -gUnknown_81F6184: @ 81F6184 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81F6104 -.4byte gUnknown_81F611C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81F6198 -gUnknown_81F6198: @ 81F6198 -.byte 0xf6, 0x00, 0x19, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0x08, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F63E8 -gUnknown_81F63E8: @ 81F63E8 -.string "../data/ground/ground_data_h06p04_station.c\0" -.align 2, 0 - -.global gUnknown_81F6414 -gUnknown_81F6414: @ 81F6414 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F6198 - -.global gUnknown_81F6420 -gUnknown_81F6420: @ 81F6420 -.byte 0xf6, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6460 -gUnknown_81F6460: @ 81F6460 -.byte 0xf6, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F64A0 -gUnknown_81F64A0: @ 81F64A0 -.byte 0xf6, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F64E0 -gUnknown_81F64E0: @ 81F64E0 -.byte 0xf6, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6520 -gUnknown_81F6520: @ 81F6520 -.byte 0xf6, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6550 -gUnknown_81F6550: @ 81F6550 -.byte 0xf6, 0x00, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6580 -gUnknown_81F6580: @ 81F6580 -.byte 0xf6, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0x51, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F65B0 -gUnknown_81F65B0: @ 81F65B0 -.byte 0xf6, 0x00, 0x71, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F65D0 -gUnknown_81F65D0: @ 81F65D0 -.byte 0xf6, 0x00, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0x51, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6600 -gUnknown_81F6600: @ 81F6600 -.byte 0xf6, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6620 -gUnknown_81F6620: @ 81F6620 -.byte 0xf6, 0x00, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0x51, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6650 -gUnknown_81F6650: @ 81F6650 -.byte 0xf6, 0x00, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6670 -gUnknown_81F6670: @ 81F6670 -.byte 0xf6, 0x00, 0x8c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0x51, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F66A0 -gUnknown_81F66A0: @ 81F66A0 -.byte 0xf6, 0x00, 0x92, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F66C0 -gUnknown_81F66C0: @ 81F66C0 -.byte 0xf6, 0x00, 0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0x51, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F66F0 -gUnknown_81F66F0: @ 81F66F0 -.byte 0xf6, 0x00, 0x9d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6710 -gUnknown_81F6710: @ 81F6710 -.byte 0xf6, 0x00, 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0x51, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6740 -gUnknown_81F6740: @ 81F6740 -.byte 0xf6, 0x00, 0xa8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6760 -gUnknown_81F6760: @ 81F6760 -.byte 0xf6, 0x00, 0xad, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0x51, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6790 -gUnknown_81F6790: @ 81F6790 -.byte 0xf6, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F67B0 -gUnknown_81F67B0: @ 81F67B0 -.byte 0xf6, 0x00, 0xb8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0x51, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F67E0 -gUnknown_81F67E0: @ 81F67E0 -.byte 0xf6, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6800 -gUnknown_81F6800: @ 81F6800 -.byte 0xf6, 0x00, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6830 -gUnknown_81F6830: @ 81F6830 -.byte 0xf6, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6850 -gUnknown_81F6850: @ 81F6850 -.byte 0xf6, 0x00, 0xce, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6880 -gUnknown_81F6880: @ 81F6880 -.byte 0xf6, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F68A0 -gUnknown_81F68A0: @ 81F68A0 -.byte 0xf6, 0x00, 0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F68D0 -gUnknown_81F68D0: @ 81F68D0 -.byte 0xf6, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F68F0 -gUnknown_81F68F0: @ 81F68F0 -.byte 0xf6, 0x00, 0xe4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6920 -gUnknown_81F6920: @ 81F6920 -.byte 0xf6, 0x00, 0xea, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6940 -gUnknown_81F6940: @ 81F6940 -.byte 0xf6, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6970 -gUnknown_81F6970: @ 81F6970 -.byte 0xf6, 0x00, 0xf5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6990 -gUnknown_81F6990: @ 81F6990 -.byte 0xf6, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F69C0 -gUnknown_81F69C0: @ 81F69C0 -.byte 0xf6, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F69E0 -gUnknown_81F69E0: @ 81F69E0 -.byte 0xf6, 0x00, 0x05, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6A10 -gUnknown_81F6A10: @ 81F6A10 -.byte 0xf6, 0x00, 0x0b, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F63E8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6A30 -gUnknown_81F6A30: @ 81F6A30 -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x22, 0x02, 0x02 -.4byte gUnknown_81F6420 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_81F6460 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6A60 -gUnknown_81F6A60: @ 81F6A60 -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x22, 0x02, 0x02 -.4byte gUnknown_81F64A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_81F64E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6A90 -gUnknown_81F6A90: @ 81F6A90 -.byte 0x00, 0x00, 0x00, 0x00, 0x1d, 0x22, 0x02, 0x02 -.4byte gUnknown_81F6520 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_81F6550 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6AC0 -gUnknown_81F6AC0: @ 81F6AC0 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1d, 0x1b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F6580 -.4byte gUnknown_81F65B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x12, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F65D0 -.4byte gUnknown_81F6600 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x26, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F6620 -.4byte gUnknown_81F6650 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x0f, 0x23, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F6670 -.4byte gUnknown_81F66A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x29, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F66C0 -.4byte gUnknown_81F66F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00 -.byte 0x0a, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F6710 -.4byte gUnknown_81F6740 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x30, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F6760 -.4byte gUnknown_81F6790 -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x14, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F67B0 -.4byte gUnknown_81F67E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x25, 0x17, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F6800 -.4byte gUnknown_81F6830 -.byte 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00 -.byte 0x1d, 0x15, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F6850 -.4byte gUnknown_81F6880 -.byte 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x2b, 0x15, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F68A0 -.4byte gUnknown_81F68D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x0b, 0x15, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F68F0 -.4byte gUnknown_81F6920 -.byte 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1d, 0x10, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F6940 -.4byte gUnknown_81F6970 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00 -.byte 0x14, 0x0e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F6990 -.4byte gUnknown_81F69C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x27, 0x0e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F69E0 -.4byte gUnknown_81F6A10 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6C28 -gUnknown_81F6C28: @ 81F6C28 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81F6C58 -gUnknown_81F6C58: @ 81F6C58 -.4byte gUnknown_81F6414 - -.global gUnknown_81F6C5C -gUnknown_81F6C5C: @ 81F6C5C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81F6C28 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F6C58 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F6A30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F6A60 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F6A90 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6D24 -gUnknown_81F6D24: @ 81F6D24 -.byte 0x0f, 0x00, 0x00, 0x00 -.4byte gUnknown_81F6AC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6D4C -gUnknown_81F6D4C: @ 81F6D4C -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81F6C5C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F6D24 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F6D64 -gUnknown_81F6D64: @ 81F6D64 -.byte 0x24, 0x0b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1a, 0x0d, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x11, 0x0c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x28, 0x11, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x08, 0x14, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1a, 0x13, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x22, 0x14, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x12, 0x14, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x2c, 0x1b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x07, 0x1b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x26, 0x21, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x0d, 0x21, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x23, 0x1b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x10, 0x1b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1a, 0x19, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81F6DDC -gUnknown_81F6DDC: @ 81F6DDC -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81F6D4C -.4byte gUnknown_81F6D64 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81F6DF0 -gUnknown_81F6DF0: @ 81F6DF0 -.byte 0xf6, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -.byte 0x08, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7040 -gUnknown_81F7040: @ 81F7040 -.string "../data/ground/ground_data_h06p05_station.c\0" -.align 2, 0 - -.global gUnknown_81F706C -gUnknown_81F706C: @ 81F706C -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F6DF0 - -.global gUnknown_81F7078 -gUnknown_81F7078: @ 81F7078 -.byte 0xf6, 0x00, 0x3e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F70B8 -gUnknown_81F70B8: @ 81F70B8 -.byte 0xf6, 0x00, 0x45, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F70F8 -gUnknown_81F70F8: @ 81F70F8 -.byte 0xf6, 0x00, 0x4c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7138 -gUnknown_81F7138: @ 81F7138 -.byte 0xf6, 0x00, 0x53, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7178 -gUnknown_81F7178: @ 81F7178 -.byte 0xf6, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F71A8 -gUnknown_81F71A8: @ 81F71A8 -.byte 0xf6, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -.byte 0xe8, 0x00, 0x52, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F71D8 -gUnknown_81F71D8: @ 81F71D8 -.byte 0xf6, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7208 -gUnknown_81F7208: @ 81F7208 -.byte 0xf6, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7228 -gUnknown_81F7228: @ 81F7228 -.byte 0xf6, 0x00, 0x71, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -.byte 0x51, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7258 -gUnknown_81F7258: @ 81F7258 -.byte 0xf6, 0x00, 0x77, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7278 -gUnknown_81F7278: @ 81F7278 -.byte 0xf6, 0x00, 0x7c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F72A8 -gUnknown_81F72A8: @ 81F72A8 -.byte 0xf6, 0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F72C8 -gUnknown_81F72C8: @ 81F72C8 -.byte 0xf6, 0x00, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -.byte 0x51, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F72F8 -gUnknown_81F72F8: @ 81F72F8 -.byte 0xf6, 0x00, 0x8d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7318 -gUnknown_81F7318: @ 81F7318 -.byte 0xf6, 0x00, 0x92, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7348 -gUnknown_81F7348: @ 81F7348 -.byte 0xf6, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7368 -gUnknown_81F7368: @ 81F7368 -.byte 0xf6, 0x00, 0x9d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -.byte 0x51, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7398 -gUnknown_81F7398: @ 81F7398 -.byte 0xf6, 0x00, 0xa3, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F73B8 -gUnknown_81F73B8: @ 81F73B8 -.byte 0xf6, 0x00, 0xa8, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F73E8 -gUnknown_81F73E8: @ 81F73E8 -.byte 0xf6, 0x00, 0xae, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7408 -gUnknown_81F7408: @ 81F7408 -.byte 0xf6, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -.byte 0x51, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7438 -gUnknown_81F7438: @ 81F7438 -.byte 0xf6, 0x00, 0xb9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7458 -gUnknown_81F7458: @ 81F7458 -.byte 0xf6, 0x00, 0xbe, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -.byte 0x51, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7488 -gUnknown_81F7488: @ 81F7488 -.byte 0xf6, 0x00, 0xc4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F74A8 -gUnknown_81F74A8: @ 81F74A8 -.byte 0xf6, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -.byte 0x51, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F74D8 -gUnknown_81F74D8: @ 81F74D8 -.byte 0xf6, 0x00, 0xcf, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7040 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F74F8 -gUnknown_81F74F8: @ 81F74F8 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x1c, 0x23, 0x02, 0x02 -.4byte gUnknown_81F7078 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1c, 0x26, 0x02, 0x02 -.4byte gUnknown_81F70B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7528 -gUnknown_81F7528: @ 81F7528 -.byte 0x00, 0x04, 0x00, 0x00, 0x1c, 0x23, 0x02, 0x02 -.4byte gUnknown_81F70F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1c, 0x26, 0x02, 0x02 -.4byte gUnknown_81F7138 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7558 -gUnknown_81F7558: @ 81F7558 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x1c, 0x23, 0x02, 0x02 -.4byte gUnknown_81F7178 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1c, 0x26, 0x02, 0x02 -.4byte gUnknown_81F71A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7588 -gUnknown_81F7588: @ 81F7588 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1c, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F71D8 -.4byte gUnknown_81F7208 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x13, 0x1a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7228 -.4byte gUnknown_81F7258 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0x25, 0x1a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7278 -.4byte gUnknown_81F72A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x0d, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F72C8 -.4byte gUnknown_81F72F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x2b, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7318 -.4byte gUnknown_81F7348 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x12, 0x14, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7368 -.4byte gUnknown_81F7398 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00 -.byte 0x24, 0x13, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F73B8 -.4byte gUnknown_81F73E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x0b, 0x19, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7408 -.4byte gUnknown_81F7438 -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x2d, 0x19, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7458 -.4byte gUnknown_81F7488 -.byte 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x1c, 0x11, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F74A8 -.4byte gUnknown_81F74D8 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7678 -gUnknown_81F7678: @ 81F7678 -.byte 0x39, 0x03, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x39, 0x01, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x2a, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81F76A8 -gUnknown_81F76A8: @ 81F76A8 -.4byte gUnknown_81F706C - -.global gUnknown_81F76AC -gUnknown_81F76AC: @ 81F76AC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7678 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F76A8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F74F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7528 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7558 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7774 -gUnknown_81F7774: @ 81F7774 -.byte 0x0a, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7588 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F779C -gUnknown_81F779C: @ 81F779C -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81F76AC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7774 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F77B4 -gUnknown_81F77B4: @ 81F77B4 -.byte 0x19, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x10, 0x18, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x22, 0x18, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0a, 0x1d, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x28, 0x1d, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x10, 0x11, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x22, 0x11, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x08, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x2a, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x19, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81F7804 -gUnknown_81F7804: @ 81F7804 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81F779C -.4byte gUnknown_81F77B4 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81F7818 -gUnknown_81F7818: @ 81F7818 -.byte 0xf6, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7A68 -.byte 0x08, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7A68 -gUnknown_81F7A68: @ 81F7A68 -.string "../data/ground/ground_data_h06p06_station.c\0" -.align 2, 0 - -.global gUnknown_81F7A94 -gUnknown_81F7A94: @ 81F7A94 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7818 - -.global gUnknown_81F7AA0 -gUnknown_81F7AA0: @ 81F7AA0 -.byte 0xf6, 0x00, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7A68 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7AE0 -gUnknown_81F7AE0: @ 81F7AE0 -.byte 0xf6, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7A68 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7B20 -gUnknown_81F7B20: @ 81F7B20 -.byte 0xf6, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7A68 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7B60 -gUnknown_81F7B60: @ 81F7B60 -.byte 0xf6, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7A68 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7BA0 -gUnknown_81F7BA0: @ 81F7BA0 -.byte 0xf6, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7A68 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7BD0 -gUnknown_81F7BD0: @ 81F7BD0 -.byte 0xf6, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7A68 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7C00 -gUnknown_81F7C00: @ 81F7C00 -.byte 0xf6, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7A68 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7C30 -gUnknown_81F7C30: @ 81F7C30 -.byte 0xf6, 0x00, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7A68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7C50 -gUnknown_81F7C50: @ 81F7C50 -.byte 0xf6, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7A68 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7C80 -gUnknown_81F7C80: @ 81F7C80 -.byte 0xf6, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7A68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7CA0 -gUnknown_81F7CA0: @ 81F7CA0 -.byte 0xf6, 0x00, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7A68 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7CD0 -gUnknown_81F7CD0: @ 81F7CD0 -.byte 0xf6, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7A68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7CF0 -gUnknown_81F7CF0: @ 81F7CF0 -.byte 0x00, 0x04, 0x00, 0x00, 0x12, 0x1f, 0x02, 0x02 -.4byte gUnknown_81F7AA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x12, 0x23, 0x02, 0x02 -.4byte gUnknown_81F7AE0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7D20 -gUnknown_81F7D20: @ 81F7D20 -.byte 0x00, 0x04, 0x00, 0x00, 0x12, 0x1f, 0x02, 0x02 -.4byte gUnknown_81F7B20 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x12, 0x23, 0x02, 0x02 -.4byte gUnknown_81F7B60 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7D50 -gUnknown_81F7D50: @ 81F7D50 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x1f, 0x02, 0x02 -.4byte gUnknown_81F7BA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x12, 0x23, 0x02, 0x02 -.4byte gUnknown_81F7BD0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7D80 -gUnknown_81F7D80: @ 81F7D80 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1e, 0x17, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7C00 -.4byte gUnknown_81F7C30 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x0a, 0x10, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7C50 -.4byte gUnknown_81F7C80 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x33, 0x10, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7CA0 -.4byte gUnknown_81F7CD0 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7DC8 -gUnknown_81F7DC8: @ 81F7DC8 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x27, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81F7DF8 -gUnknown_81F7DF8: @ 81F7DF8 -.4byte gUnknown_81F7A94 - -.global gUnknown_81F7DFC -gUnknown_81F7DFC: @ 81F7DFC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7DC8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7DF8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7CF0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7D20 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7D50 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7EC4 -gUnknown_81F7EC4: @ 81F7EC4 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7D80 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7EEC -gUnknown_81F7EEC: @ 81F7EEC -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7DFC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7EC4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F7F04 -gUnknown_81F7F04: @ 81F7F04 -.byte 0x1b, 0x14, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x07, 0x0f, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x30, 0x0f, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81F7F1C -gUnknown_81F7F1C: @ 81F7F1C -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7EEC -.4byte gUnknown_81F7F04 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81F7F30 -gUnknown_81F7F30: @ 81F7F30 -.byte 0xf6, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0x08, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8180 -gUnknown_81F8180: @ 81F8180 -.string "../data/ground/ground_data_h07p01_station.c\0" -.align 2, 0 - -.global gUnknown_81F81AC -gUnknown_81F81AC: @ 81F81AC -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F7F30 - -.global gUnknown_81F81B8 -gUnknown_81F81B8: @ 81F81B8 -.byte 0xf6, 0x00, 0x42, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F81F8 -gUnknown_81F81F8: @ 81F81F8 -.byte 0xf6, 0x00, 0x49, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8238 -gUnknown_81F8238: @ 81F8238 -.byte 0xf6, 0x00, 0x50, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8278 -gUnknown_81F8278: @ 81F8278 -.byte 0xf6, 0x00, 0x57, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F82B8 -gUnknown_81F82B8: @ 81F82B8 -.byte 0xf6, 0x00, 0x5e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F82E8 -gUnknown_81F82E8: @ 81F82E8 -.byte 0xf6, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0xe8, 0x00, 0x52, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8318 -gUnknown_81F8318: @ 81F8318 -.byte 0xf6, 0x00, 0x6a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0x51, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8348 -gUnknown_81F8348: @ 81F8348 -.byte 0xf6, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8368 -gUnknown_81F8368: @ 81F8368 -.byte 0xf6, 0x00, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0x51, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8398 -gUnknown_81F8398: @ 81F8398 -.byte 0xf6, 0x00, 0x7b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F83B8 -gUnknown_81F83B8: @ 81F83B8 -.byte 0xf6, 0x00, 0x80, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0x51, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F83E8 -gUnknown_81F83E8: @ 81F83E8 -.byte 0xf6, 0x00, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8408 -gUnknown_81F8408: @ 81F8408 -.byte 0xf6, 0x00, 0x8b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0x51, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8438 -gUnknown_81F8438: @ 81F8438 -.byte 0xf6, 0x00, 0x91, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8458 -gUnknown_81F8458: @ 81F8458 -.byte 0xf6, 0x00, 0x96, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0x51, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8488 -gUnknown_81F8488: @ 81F8488 -.byte 0xf6, 0x00, 0x9c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F84A8 -gUnknown_81F84A8: @ 81F84A8 -.byte 0xf6, 0x00, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0x51, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F84D8 -gUnknown_81F84D8: @ 81F84D8 -.byte 0xf6, 0x00, 0xa7, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F84F8 -gUnknown_81F84F8: @ 81F84F8 -.byte 0xf6, 0x00, 0xac, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0x51, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8528 -gUnknown_81F8528: @ 81F8528 -.byte 0xf6, 0x00, 0xb2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8548 -gUnknown_81F8548: @ 81F8548 -.byte 0xf6, 0x00, 0xb7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0x51, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8578 -gUnknown_81F8578: @ 81F8578 -.byte 0xf6, 0x00, 0xbd, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8598 -gUnknown_81F8598: @ 81F8598 -.byte 0xf6, 0x00, 0xc2, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F85C8 -gUnknown_81F85C8: @ 81F85C8 -.byte 0xf6, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F85E8 -gUnknown_81F85E8: @ 81F85E8 -.byte 0xf6, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0x51, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8618 -gUnknown_81F8618: @ 81F8618 -.byte 0xf6, 0x00, 0xd3, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8638 -gUnknown_81F8638: @ 81F8638 -.byte 0xf6, 0x00, 0xd8, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8668 -gUnknown_81F8668: @ 81F8668 -.byte 0xf6, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8688 -gUnknown_81F8688: @ 81F8688 -.byte 0xf6, 0x00, 0xe3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0x51, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F86B8 -gUnknown_81F86B8: @ 81F86B8 -.byte 0xf6, 0x00, 0xe9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F86D8 -gUnknown_81F86D8: @ 81F86D8 -.byte 0xf6, 0x00, 0xee, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8708 -gUnknown_81F8708: @ 81F8708 -.byte 0xf6, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8728 -gUnknown_81F8728: @ 81F8728 -.byte 0xf6, 0x00, 0xf9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0x51, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8758 -gUnknown_81F8758: @ 81F8758 -.byte 0xf6, 0x00, 0xff, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8180 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8778 -gUnknown_81F8778: @ 81F8778 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x1d, 0x20, 0x02, 0x02 -.4byte gUnknown_81F81B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_81F81F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F87A8 -gUnknown_81F87A8: @ 81F87A8 -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x20, 0x02, 0x02 -.4byte gUnknown_81F8238 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_81F8278 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F87D8 -gUnknown_81F87D8: @ 81F87D8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x1d, 0x20, 0x02, 0x02 -.4byte gUnknown_81F82B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_81F82E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8808 -gUnknown_81F8808: @ 81F8808 -.byte 0x0e, 0x00, 0x00, 0x00, 0x16, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8318 -.4byte gUnknown_81F8348 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x23, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8368 -.4byte gUnknown_81F8398 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0x11, 0x1c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F83B8 -.4byte gUnknown_81F83E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x28, 0x1b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8408 -.4byte gUnknown_81F8438 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x0b, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8458 -.4byte gUnknown_81F8488 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x30, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F84A8 -.4byte gUnknown_81F84D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00 -.byte 0x07, 0x19, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F84F8 -.4byte gUnknown_81F8528 -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x31, 0x19, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8548 -.4byte gUnknown_81F8578 -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x0d, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8598 -.4byte gUnknown_81F85C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x2c, 0x11, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F85E8 -.4byte gUnknown_81F8618 -.byte 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00 -.byte 0x0e, 0x11, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8638 -.4byte gUnknown_81F8668 -.byte 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x2b, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8688 -.4byte gUnknown_81F86B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x13, 0x0e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F86D8 -.4byte gUnknown_81F8708 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x27, 0x0e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8728 -.4byte gUnknown_81F8758 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8958 -gUnknown_81F8958: @ 81F8958 -.byte 0x39, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x39, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x27, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81F8988 -gUnknown_81F8988: @ 81F8988 -.4byte gUnknown_81F81AC - -.global gUnknown_81F898C -gUnknown_81F898C: @ 81F898C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8958 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8988 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8778 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F87A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F87D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8A54 -gUnknown_81F8A54: @ 81F8A54 -.byte 0x0e, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8808 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8A7C -gUnknown_81F8A7C: @ 81F8A7C -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81F898C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8A54 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8A94 -gUnknown_81F8A94: @ 81F8A94 -.byte 0x23, 0x0c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x10, 0x0c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x29, 0x0e, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0a, 0x0e, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x29, 0x14, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x0a, 0x14, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x2f, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x04, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x2c, 0x1c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x08, 0x1c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x26, 0x1a, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0e, 0x1a, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x20, 0x1c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x14, 0x1c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81F8B04 -gUnknown_81F8B04: @ 81F8B04 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8A7C -.4byte gUnknown_81F8A94 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81F8B18 -gUnknown_81F8B18: @ 81F8B18 -.byte 0xf6, 0x00, 0x16, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0x08, 0x00, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8D68 -gUnknown_81F8D68: @ 81F8D68 -.string "../data/ground/ground_data_h07p02_station.c\0" -.align 2, 0 - -.global gUnknown_81F8D94 -gUnknown_81F8D94: @ 81F8D94 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8B18 - -.global gUnknown_81F8DA0 -gUnknown_81F8DA0: @ 81F8DA0 -.byte 0xf6, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8DE0 -gUnknown_81F8DE0: @ 81F8DE0 -.byte 0xf6, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8E20 -gUnknown_81F8E20: @ 81F8E20 -.byte 0xf6, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8E60 -gUnknown_81F8E60: @ 81F8E60 -.byte 0xf6, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8EA0 -gUnknown_81F8EA0: @ 81F8EA0 -.byte 0xf6, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8ED0 -gUnknown_81F8ED0: @ 81F8ED0 -.byte 0xf6, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8F00 -gUnknown_81F8F00: @ 81F8F00 -.byte 0xf6, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0x51, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8F30 -gUnknown_81F8F30: @ 81F8F30 -.byte 0xf6, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8F50 -gUnknown_81F8F50: @ 81F8F50 -.byte 0xf6, 0x00, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0x51, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8F80 -gUnknown_81F8F80: @ 81F8F80 -.byte 0xf6, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8FA0 -gUnknown_81F8FA0: @ 81F8FA0 -.byte 0xf6, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0x51, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8FD0 -gUnknown_81F8FD0: @ 81F8FD0 -.byte 0xf6, 0x00, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F8FF0 -gUnknown_81F8FF0: @ 81F8FF0 -.byte 0xf6, 0x00, 0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0x51, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9020 -gUnknown_81F9020: @ 81F9020 -.byte 0xf6, 0x00, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9040 -gUnknown_81F9040: @ 81F9040 -.byte 0xf6, 0x00, 0x94, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0x51, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9070 -gUnknown_81F9070: @ 81F9070 -.byte 0xf6, 0x00, 0x9a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9090 -gUnknown_81F9090: @ 81F9090 -.byte 0xf6, 0x00, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F90C0 -gUnknown_81F90C0: @ 81F90C0 -.byte 0xf6, 0x00, 0xa5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F90E0 -gUnknown_81F90E0: @ 81F90E0 -.byte 0xf6, 0x00, 0xaa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9110 -gUnknown_81F9110: @ 81F9110 -.byte 0xf6, 0x00, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9130 -gUnknown_81F9130: @ 81F9130 -.byte 0xf6, 0x00, 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9160 -gUnknown_81F9160: @ 81F9160 -.byte 0xf6, 0x00, 0xbb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9180 -gUnknown_81F9180: @ 81F9180 -.byte 0xf6, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F91B0 -gUnknown_81F91B0: @ 81F91B0 -.byte 0xf6, 0x00, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F91D0 -gUnknown_81F91D0: @ 81F91D0 -.byte 0xf6, 0x00, 0xcb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9200 -gUnknown_81F9200: @ 81F9200 -.byte 0xf6, 0x00, 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9220 -gUnknown_81F9220: @ 81F9220 -.byte 0xf6, 0x00, 0xd6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9250 -gUnknown_81F9250: @ 81F9250 -.byte 0xf6, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9270 -gUnknown_81F9270: @ 81F9270 -.byte 0xf6, 0x00, 0xe1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F92A0 -gUnknown_81F92A0: @ 81F92A0 -.byte 0xf6, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8D68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F92C0 -gUnknown_81F92C0: @ 81F92C0 -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x22, 0x02, 0x02 -.4byte gUnknown_81F8DA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x1d, 0x25, 0x02, 0x02 -.4byte gUnknown_81F8DE0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F92F0 -gUnknown_81F92F0: @ 81F92F0 -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x22, 0x02, 0x02 -.4byte gUnknown_81F8E20 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1d, 0x25, 0x02, 0x02 -.4byte gUnknown_81F8E60 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9320 -gUnknown_81F9320: @ 81F9320 -.byte 0x00, 0x00, 0x00, 0x00, 0x1d, 0x22, 0x02, 0x02 -.4byte gUnknown_81F8EA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x1d, 0x25, 0x02, 0x02 -.4byte gUnknown_81F8ED0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9350 -gUnknown_81F9350: @ 81F9350 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8F00 -.4byte gUnknown_81F8F30 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x17, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8F50 -.4byte gUnknown_81F8F80 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x21, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8FA0 -.4byte gUnknown_81F8FD0 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00 -.byte 0x1c, 0x19, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F8FF0 -.4byte gUnknown_81F9020 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x13, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9040 -.4byte gUnknown_81F9070 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x27, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9090 -.4byte gUnknown_81F90C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x07, 0x21, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F90E0 -.4byte gUnknown_81F9110 -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00 -.byte 0x32, 0x21, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9130 -.4byte gUnknown_81F9160 -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x0d, 0x11, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9180 -.4byte gUnknown_81F91B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x2d, 0x11, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F91D0 -.4byte gUnknown_81F9200 -.byte 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x0e, 0x0c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9220 -.4byte gUnknown_81F9250 -.byte 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00 -.byte 0x2a, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9270 -.4byte gUnknown_81F92A0 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9470 -gUnknown_81F9470: @ 81F9470 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81F9488 -gUnknown_81F9488: @ 81F9488 -.4byte gUnknown_81F8D94 - -.global gUnknown_81F948C -gUnknown_81F948C: @ 81F948C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9470 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9488 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F92C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F92F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9320 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9554 -gUnknown_81F9554: @ 81F9554 -.byte 0x0c, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9350 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F957C -gUnknown_81F957C: @ 81F957C -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81F948C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9554 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9594 -gUnknown_81F9594: @ 81F9594 -.byte 0x27, 0x09, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x0b, 0x09, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x29, 0x0f, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0a, 0x0f, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x30, 0x1e, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x03, 0x1e, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x23, 0x14, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x10, 0x14, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x19, 0x17, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x1f, 0x07, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x13, 0x07, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x19, 0x07, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81F95F4 -gUnknown_81F95F4: @ 81F95F4 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81F957C -.4byte gUnknown_81F9594 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81F9608 -gUnknown_81F9608: @ 81F9608 -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9858 -gUnknown_81F9858: @ 81F9858 -.string "../data/ground/ground_data_h07p03_station.c\0" -.align 2, 0 - -.global gUnknown_81F9884 -gUnknown_81F9884: @ 81F9884 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9608 - -.global gUnknown_81F9890 -gUnknown_81F9890: @ 81F9890 -.byte 0xf6, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F98D0 -gUnknown_81F98D0: @ 81F98D0 -.byte 0xf6, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9910 -gUnknown_81F9910: @ 81F9910 -.byte 0xf6, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9950 -gUnknown_81F9950: @ 81F9950 -.byte 0xf6, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9990 -gUnknown_81F9990: @ 81F9990 -.byte 0xf6, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F99C0 -gUnknown_81F99C0: @ 81F99C0 -.byte 0xf6, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F99F0 -gUnknown_81F99F0: @ 81F99F0 -.byte 0xf6, 0x00, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -.byte 0x51, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9A20 -gUnknown_81F9A20: @ 81F9A20 -.byte 0xf6, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9A40 -gUnknown_81F9A40: @ 81F9A40 -.byte 0xf6, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -.byte 0x51, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9A70 -gUnknown_81F9A70: @ 81F9A70 -.byte 0xf6, 0x00, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9A90 -gUnknown_81F9A90: @ 81F9A90 -.byte 0xf6, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9AC0 -gUnknown_81F9AC0: @ 81F9AC0 -.byte 0xf6, 0x00, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9AE0 -gUnknown_81F9AE0: @ 81F9AE0 -.byte 0xf6, 0x00, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9B10 -gUnknown_81F9B10: @ 81F9B10 -.byte 0xf6, 0x00, 0x8c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9B30 -gUnknown_81F9B30: @ 81F9B30 -.byte 0xf6, 0x00, 0x91, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9B60 -gUnknown_81F9B60: @ 81F9B60 -.byte 0xf6, 0x00, 0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9B80 -gUnknown_81F9B80: @ 81F9B80 -.byte 0xf6, 0x00, 0x9c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9BB0 -gUnknown_81F9BB0: @ 81F9BB0 -.byte 0xf6, 0x00, 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9BD0 -gUnknown_81F9BD0: @ 81F9BD0 -.byte 0xf6, 0x00, 0xa7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9C00 -gUnknown_81F9C00: @ 81F9C00 -.byte 0xf6, 0x00, 0xad, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9C20 -gUnknown_81F9C20: @ 81F9C20 -.byte 0xf6, 0x00, 0xb2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9C50 -gUnknown_81F9C50: @ 81F9C50 -.byte 0xf6, 0x00, 0xb8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9C70 -gUnknown_81F9C70: @ 81F9C70 -.byte 0xf6, 0x00, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9CA0 -gUnknown_81F9CA0: @ 81F9CA0 -.byte 0xf6, 0x00, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9858 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9CC0 -gUnknown_81F9CC0: @ 81F9CC0 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x20, 0x02, 0x02 -.4byte gUnknown_81F9890 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81F98D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9CF0 -gUnknown_81F9CF0: @ 81F9CF0 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x20, 0x02, 0x02 -.4byte gUnknown_81F9910 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81F9950 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9D20 -gUnknown_81F9D20: @ 81F9D20 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x20, 0x02, 0x02 -.4byte gUnknown_81F9990 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81F99C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9D50 -gUnknown_81F9D50: @ 81F9D50 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1b, 0x1a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F99F0 -.4byte gUnknown_81F9A20 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x21, 0x1a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9A40 -.4byte gUnknown_81F9A70 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x16, 0x20, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9A90 -.4byte gUnknown_81F9AC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00 -.byte 0x26, 0x20, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9AE0 -.4byte gUnknown_81F9B10 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x12, 0x1a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9B30 -.4byte gUnknown_81F9B60 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x2a, 0x1a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9B80 -.4byte gUnknown_81F9BB0 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x18, 0x14, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9BD0 -.4byte gUnknown_81F9C00 -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00 -.byte 0x24, 0x14, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9C20 -.4byte gUnknown_81F9C50 -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x1e, 0x13, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9C70 -.4byte gUnknown_81F9CA0 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9E28 -gUnknown_81F9E28: @ 81F9E28 -.byte 0x3c, 0x01, 0x00, 0x00, 0x01, 0x26, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81F9E34 -gUnknown_81F9E34: @ 81F9E34 -.4byte gUnknown_81F9884 - -.global gUnknown_81F9E38 -gUnknown_81F9E38: @ 81F9E38 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9E28 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9E34 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9CC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9CF0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9D20 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9F00 -gUnknown_81F9F00: @ 81F9F00 -.byte 0x09, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9D50 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9F28 -gUnknown_81F9F28: @ 81F9F28 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9E38 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9F00 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81F9F40 -gUnknown_81F9F40: @ 81F9F40 -.byte 0x1b, 0x11, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x21, 0x12, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x15, 0x12, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x27, 0x18, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x0f, 0x18, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x23, 0x1e, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x13, 0x1e, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1e, 0x18, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x18, 0x18, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81F9F88 -gUnknown_81F9F88: @ 81F9F88 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9F28 -.4byte gUnknown_81F9F40 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81F9F9C -gUnknown_81F9F9C: @ 81F9F9C -.byte 0xf6, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0x08, 0x00, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA1EC -gUnknown_81FA1EC: @ 81FA1EC -.string "../data/ground/ground_data_h07p04_station.c\0" -.align 2, 0 - -.global gUnknown_81FA218 -gUnknown_81FA218: @ 81FA218 -.byte 0x94, 0x01, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81F9F9C - -.global gUnknown_81FA224 -gUnknown_81FA224: @ 81FA224 -.byte 0xf6, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA264 -gUnknown_81FA264: @ 81FA264 -.byte 0xf6, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA2A4 -gUnknown_81FA2A4: @ 81FA2A4 -.byte 0xf6, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA2E4 -gUnknown_81FA2E4: @ 81FA2E4 -.byte 0xf6, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA324 -gUnknown_81FA324: @ 81FA324 -.byte 0xf6, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA354 -gUnknown_81FA354: @ 81FA354 -.byte 0xf6, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA384 -gUnknown_81FA384: @ 81FA384 -.byte 0xf6, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0x51, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA3B4 -gUnknown_81FA3B4: @ 81FA3B4 -.byte 0xf6, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA3D4 -gUnknown_81FA3D4: @ 81FA3D4 -.byte 0xf6, 0x00, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0x51, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA404 -gUnknown_81FA404: @ 81FA404 -.byte 0xf6, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA424 -gUnknown_81FA424: @ 81FA424 -.byte 0xf6, 0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0x51, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA454 -gUnknown_81FA454: @ 81FA454 -.byte 0xf6, 0x00, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA474 -gUnknown_81FA474: @ 81FA474 -.byte 0xf6, 0x00, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0x51, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA4A4 -gUnknown_81FA4A4: @ 81FA4A4 -.byte 0xf6, 0x00, 0x93, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA4C4 -gUnknown_81FA4C4: @ 81FA4C4 -.byte 0xf6, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0x51, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA4F4 -gUnknown_81FA4F4: @ 81FA4F4 -.byte 0xf6, 0x00, 0x9e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA514 -gUnknown_81FA514: @ 81FA514 -.byte 0xf6, 0x00, 0xa3, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0x51, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA544 -gUnknown_81FA544: @ 81FA544 -.byte 0xf6, 0x00, 0xa9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA564 -gUnknown_81FA564: @ 81FA564 -.byte 0xf6, 0x00, 0xae, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0x51, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA594 -gUnknown_81FA594: @ 81FA594 -.byte 0xf6, 0x00, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA5B4 -gUnknown_81FA5B4: @ 81FA5B4 -.byte 0xf6, 0x00, 0xb9, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0x51, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA5E4 -gUnknown_81FA5E4: @ 81FA5E4 -.byte 0xf6, 0x00, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA604 -gUnknown_81FA604: @ 81FA604 -.byte 0xf6, 0x00, 0xc4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0x51, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA634 -gUnknown_81FA634: @ 81FA634 -.byte 0xf6, 0x00, 0xca, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA654 -gUnknown_81FA654: @ 81FA654 -.byte 0xf6, 0x00, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA684 -gUnknown_81FA684: @ 81FA684 -.byte 0xf6, 0x00, 0xd5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA6A4 -gUnknown_81FA6A4: @ 81FA6A4 -.byte 0xf6, 0x00, 0xda, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA6D4 -gUnknown_81FA6D4: @ 81FA6D4 -.byte 0xf6, 0x00, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA6F4 -gUnknown_81FA6F4: @ 81FA6F4 -.byte 0xf6, 0x00, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA724 -gUnknown_81FA724: @ 81FA724 -.byte 0xf6, 0x00, 0xeb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA744 -gUnknown_81FA744: @ 81FA744 -.byte 0xf6, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA774 -gUnknown_81FA774: @ 81FA774 -.byte 0xf6, 0x00, 0xf6, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA794 -gUnknown_81FA794: @ 81FA794 -.byte 0xf6, 0x00, 0xfb, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA7C4 -gUnknown_81FA7C4: @ 81FA7C4 -.byte 0xf6, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA7E4 -gUnknown_81FA7E4: @ 81FA7E4 -.byte 0xf6, 0x00, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA814 -gUnknown_81FA814: @ 81FA814 -.byte 0xf6, 0x00, 0x0c, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA834 -gUnknown_81FA834: @ 81FA834 -.byte 0xf6, 0x00, 0x11, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA864 -gUnknown_81FA864: @ 81FA864 -.byte 0xf6, 0x00, 0x17, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA1EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA884 -gUnknown_81FA884: @ 81FA884 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81FA224 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x04, 0x00, 0x00, 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_81FA264 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA8B4 -gUnknown_81FA8B4: @ 81FA8B4 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81FA2A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_81FA2E4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA8E4 -gUnknown_81FA8E4: @ 81FA8E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81FA324 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_81FA354 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FA914 -gUnknown_81FA914: @ 81FA914 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1e, 0x1f, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA384 -.4byte gUnknown_81FA3B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x19, 0x21, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA3D4 -.4byte gUnknown_81FA404 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x23, 0x21, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA424 -.4byte gUnknown_81FA454 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x11, 0x00, 0x00, 0x00, 0x15, 0x24, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA474 -.4byte gUnknown_81FA4A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x27, 0x24, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA4C4 -.4byte gUnknown_81FA4F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x13, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA514 -.4byte gUnknown_81FA544 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x29, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA564 -.4byte gUnknown_81FA594 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x15, 0x00, 0x00, 0x00, 0x19, 0x1c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA5B4 -.4byte gUnknown_81FA5E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x23, 0x1c, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA604 -.4byte gUnknown_81FA634 -.byte 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x1e, 0x1a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA654 -.4byte gUnknown_81FA684 -.byte 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x15, 0x1a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA6A4 -.4byte gUnknown_81FA6D4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x19, 0x00, 0x00, 0x00, 0x27, 0x1a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA6F4 -.4byte gUnknown_81FA724 -.byte 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x16, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA744 -.4byte gUnknown_81FA774 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x21, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA794 -.4byte gUnknown_81FA7C4 -.byte 0x00, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x15, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA7E4 -.4byte gUnknown_81FA814 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x1d, 0x00, 0x00, 0x00, 0x27, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA834 -.4byte gUnknown_81FA864 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FAA94 -gUnknown_81FAA94: @ 81FAA94 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81FAAA0 -gUnknown_81FAAA0: @ 81FAAA0 -.4byte gUnknown_81FA218 - -.global gUnknown_81FAAA4 -gUnknown_81FAAA4: @ 81FAAA4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAA94 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAAA0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA884 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA8B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA8E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FAB6C -gUnknown_81FAB6C: @ 81FAB6C -.byte 0x10, 0x00, 0x00, 0x00 -.4byte gUnknown_81FA914 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FAB94 -gUnknown_81FAB94: @ 81FAB94 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAAA4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAB6C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FABAC -gUnknown_81FABAC: @ 81FABAC -.byte 0x25, 0x15, 0x00, 0x00, 0x04, 0x04, 0x03, 0x02, 0x13, 0x15, 0x00, 0x00, 0x04, 0x04, 0x03, 0x02 -.byte 0x1f, 0x15, 0x00, 0x00, 0x04, 0x04, 0x03, 0x02, 0x19, 0x15, 0x00, 0x00, 0x04, 0x04, 0x03, 0x02, 0x25, 0x19, 0x00, 0x00, 0x04, 0x04, 0x03, 0x02, 0x13, 0x19, 0x00, 0x00, 0x04, 0x04, 0x03, 0x02 -.byte 0x1c, 0x19, 0x00, 0x00, 0x04, 0x04, 0x03, 0x02, 0x21, 0x1b, 0x00, 0x00, 0x04, 0x04, 0x03, 0x02, 0x17, 0x1b, 0x00, 0x00, 0x04, 0x04, 0x03, 0x02, 0x27, 0x1d, 0x00, 0x00, 0x04, 0x04, 0x03, 0x02 -.byte 0x11, 0x1d, 0x00, 0x00, 0x04, 0x04, 0x03, 0x02, 0x25, 0x22, 0x00, 0x00, 0x04, 0x04, 0x03, 0x02, 0x13, 0x22, 0x00, 0x00, 0x04, 0x04, 0x03, 0x02, 0x21, 0x1f, 0x00, 0x00, 0x04, 0x04, 0x03, 0x02 -.byte 0x17, 0x1f, 0x00, 0x00, 0x04, 0x04, 0x03, 0x02, 0x1c, 0x1d, 0x00, 0x00, 0x04, 0x04, 0x03, 0x02 - -.global gUnknown_81FAC2C -gUnknown_81FAC2C: @ 81FAC2C -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAB94 -.4byte gUnknown_81FABAC -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81FAC40 -gUnknown_81FAC40: @ 81FAC40 -.byte 0xf6, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAE60 -.byte 0x08, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FAE60 -gUnknown_81FAE60: @ 81FAE60 -.string "../data/ground/ground_data_h07p05_station.c\0" -.align 2, 0 - -.global gUnknown_81FAE8C -gUnknown_81FAE8C: @ 81FAE8C -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAC40 - -.global gUnknown_81FAE98 -gUnknown_81FAE98: @ 81FAE98 -.byte 0xf6, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAE60 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FAED8 -gUnknown_81FAED8: @ 81FAED8 -.byte 0xf6, 0x00, 0x40, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAE60 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FAF18 -gUnknown_81FAF18: @ 81FAF18 -.byte 0xf6, 0x00, 0x47, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAE60 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FAF58 -gUnknown_81FAF58: @ 81FAF58 -.byte 0xf6, 0x00, 0x4e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAE60 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FAF98 -gUnknown_81FAF98: @ 81FAF98 -.byte 0xf6, 0x00, 0x55, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAE60 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FAFC8 -gUnknown_81FAFC8: @ 81FAFC8 -.byte 0xf6, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAE60 -.byte 0xe8, 0x00, 0x52, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FAFF8 -gUnknown_81FAFF8: @ 81FAFF8 -.byte 0xf6, 0x00, 0x61, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAE60 -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB028 -gUnknown_81FB028: @ 81FB028 -.byte 0xf6, 0x00, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAE60 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB048 -gUnknown_81FB048: @ 81FB048 -.byte 0xf6, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAE60 -.byte 0x51, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB078 -gUnknown_81FB078: @ 81FB078 -.byte 0xf6, 0x00, 0x72, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAE60 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB098 -gUnknown_81FB098: @ 81FB098 -.byte 0xf6, 0x00, 0x77, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAE60 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB0C8 -gUnknown_81FB0C8: @ 81FB0C8 -.byte 0xf6, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAE60 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB0E8 -gUnknown_81FB0E8: @ 81FB0E8 -.byte 0xf6, 0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAE60 -.byte 0x51, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB118 -gUnknown_81FB118: @ 81FB118 -.byte 0xf6, 0x00, 0x88, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAE60 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB138 -gUnknown_81FB138: @ 81FB138 -.byte 0xf6, 0x00, 0x8d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAE60 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB168 -gUnknown_81FB168: @ 81FB168 -.byte 0xf6, 0x00, 0x93, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAE60 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB188 -gUnknown_81FB188: @ 81FB188 -.byte 0xf6, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAE60 -.byte 0x51, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB1B8 -gUnknown_81FB1B8: @ 81FB1B8 -.byte 0xf6, 0x00, 0x9e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAE60 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB1D8 -gUnknown_81FB1D8: @ 81FB1D8 -.byte 0xf6, 0x00, 0xa3, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAE60 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB208 -gUnknown_81FB208: @ 81FB208 -.byte 0xf6, 0x00, 0xa9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAE60 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB228 -gUnknown_81FB228: @ 81FB228 -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_81FAE98 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_81FAED8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB258 -gUnknown_81FB258: @ 81FB258 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_81FAF18 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_81FAF58 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB288 -gUnknown_81FB288: @ 81FB288 -.byte 0x00, 0x00, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_81FAF98 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_81FAFC8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB2B8 -gUnknown_81FB2B8: @ 81FB2B8 -.byte 0x0e, 0x00, 0x00, 0x00 -.byte 0x16, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FAFF8 -.4byte gUnknown_81FB028 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x23, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB048 -.4byte gUnknown_81FB078 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10, 0x19, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB098 -.4byte gUnknown_81FB0C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x29, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB0E8 -.4byte gUnknown_81FB118 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00 -.byte 0x1c, 0x13, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB138 -.4byte gUnknown_81FB168 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x0f, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB188 -.4byte gUnknown_81FB1B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x2b, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB1D8 -.4byte gUnknown_81FB208 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB360 -gUnknown_81FB360: @ 81FB360 -.byte 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x39, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81FB390 -gUnknown_81FB390: @ 81FB390 -.4byte gUnknown_81FAE8C - -.global gUnknown_81FB394 -gUnknown_81FB394: @ 81FB394 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB360 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB390 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB228 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB258 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB288 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB45C -gUnknown_81FB45C: @ 81FB45C -.byte 0x07, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB2B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB484 -gUnknown_81FB484: @ 81FB484 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB394 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB45C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB49C -gUnknown_81FB49C: @ 81FB49C -.byte 0x28, 0x08, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0c, 0x09, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x19, 0x11, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x26, 0x15, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x0d, 0x15, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x20, 0x1d, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x13, 0x1d, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81FB4D4 -gUnknown_81FB4D4: @ 81FB4D4 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB484 -.4byte gUnknown_81FB49C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81FB4E8 -gUnknown_81FB4E8: @ 81FB4E8 -.byte 0xf6, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB738 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB738 -gUnknown_81FB738: @ 81FB738 -.string "../data/ground/ground_data_h07p06_station.c\0" -.align 2, 0 - -.global gUnknown_81FB764 -gUnknown_81FB764: @ 81FB764 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB4E8 - -.global gUnknown_81FB770 -gUnknown_81FB770: @ 81FB770 -.byte 0xf6, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB738 -.byte 0xe9, 0x00, 0x66, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB790 -gUnknown_81FB790: @ 81FB790 -.byte 0x66, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB770 - -.global gUnknown_81FB79C -gUnknown_81FB79C: @ 81FB79C -.byte 0xf6, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB738 -.byte 0xe9, 0x00, 0x66, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB7BC -gUnknown_81FB7BC: @ 81FB7BC -.byte 0x66, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB79C - -.global gUnknown_81FB7C8 -gUnknown_81FB7C8: @ 81FB7C8 -.byte 0xf6, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB738 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB808 -gUnknown_81FB808: @ 81FB808 -.byte 0xf6, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB738 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB848 -gUnknown_81FB848: @ 81FB848 -.byte 0xf6, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB738 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB888 -gUnknown_81FB888: @ 81FB888 -.byte 0xf6, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB738 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB8C8 -gUnknown_81FB8C8: @ 81FB8C8 -.byte 0xf6, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB738 -.byte 0xe8, 0x00, 0x51, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB8F8 -gUnknown_81FB8F8: @ 81FB8F8 -.byte 0xf6, 0x00, 0x65, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB738 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB928 -gUnknown_81FB928: @ 81FB928 -.byte 0xf6, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB738 -.byte 0x51, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB958 -gUnknown_81FB958: @ 81FB958 -.byte 0xf6, 0x00, 0x71, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB738 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB978 -gUnknown_81FB978: @ 81FB978 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81FB7C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_81FB808 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB9A8 -gUnknown_81FB9A8: @ 81FB9A8 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81FB848 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_81FB888 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FB9D8 -gUnknown_81FB9D8: @ 81FB9D8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81FB8C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_81FB8F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FBA08 -gUnknown_81FBA08: @ 81FBA08 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1e, 0x15, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB928 -.4byte gUnknown_81FB958 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FBA20 -gUnknown_81FBA20: @ 81FBA20 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB790 -.byte 0x03, 0x2a, 0x00, 0x00 -.byte 0x39, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB7BC -.byte 0x3c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81FBA50 -gUnknown_81FBA50: @ 81FBA50 -.4byte gUnknown_81FB764 - -.global gUnknown_81FBA54 -gUnknown_81FBA54: @ 81FBA54 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBA20 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBA50 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB978 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB9A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FB9D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FBB1C -gUnknown_81FBB1C: @ 81FBB1C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBA08 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FBB44 -gUnknown_81FBB44: @ 81FBB44 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBA54 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBB1C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FBB5C -gUnknown_81FBB5C: @ 81FBB5C -.byte 0x1b, 0x13, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81FBB64 -gUnknown_81FBB64: @ 81FBB64 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBB44 -.4byte gUnknown_81FBB5C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81FBB78 -gUnknown_81FBB78: @ 81FBB78 -.byte 0xf6, 0x00, 0x10, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBDC8 -.byte 0x08, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FBDC8 -gUnknown_81FBDC8: @ 81FBDC8 -.string "../data/ground/ground_data_h07p07_station.c\0" -.align 2, 0 - -.global gUnknown_81FBDF4 -gUnknown_81FBDF4: @ 81FBDF4 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBB78 - -.global gUnknown_81FBE00 -gUnknown_81FBE00: @ 81FBE00 -.byte 0xf6, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBDC8 -.byte 0xe9, 0x00, 0x66, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FBE20 -gUnknown_81FBE20: @ 81FBE20 -.byte 0x66, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBE00 - -.global gUnknown_81FBE2C -gUnknown_81FBE2C: @ 81FBE2C -.byte 0xf6, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBDC8 -.byte 0xe9, 0x00, 0x66, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FBE4C -gUnknown_81FBE4C: @ 81FBE4C -.byte 0x66, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBE2C - -.global gUnknown_81FBE58 -gUnknown_81FBE58: @ 81FBE58 -.byte 0xf6, 0x00, 0x48, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBDC8 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FBE98 -gUnknown_81FBE98: @ 81FBE98 -.byte 0xf6, 0x00, 0x4f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBDC8 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FBED8 -gUnknown_81FBED8: @ 81FBED8 -.byte 0xf6, 0x00, 0x56, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBDC8 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FBF18 -gUnknown_81FBF18: @ 81FBF18 -.byte 0xf6, 0x00, 0x5d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBDC8 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FBF58 -gUnknown_81FBF58: @ 81FBF58 -.byte 0xf6, 0x00, 0x64, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBDC8 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FBF88 -gUnknown_81FBF88: @ 81FBF88 -.byte 0xf6, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBDC8 -.byte 0xe8, 0x00, 0x52, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FBFB8 -gUnknown_81FBFB8: @ 81FBFB8 -.byte 0xf6, 0x00, 0x70, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBDC8 -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FBFE8 -gUnknown_81FBFE8: @ 81FBFE8 -.byte 0xf6, 0x00, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBDC8 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC008 -gUnknown_81FC008: @ 81FC008 -.byte 0xf6, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBDC8 -.byte 0x51, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC038 -gUnknown_81FC038: @ 81FC038 -.byte 0xf6, 0x00, 0x81, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBDC8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC058 -gUnknown_81FC058: @ 81FC058 -.byte 0xf6, 0x00, 0x86, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBDC8 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC088 -gUnknown_81FC088: @ 81FC088 -.byte 0xf6, 0x00, 0x8c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBDC8 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC0A8 -gUnknown_81FC0A8: @ 81FC0A8 -.byte 0xf6, 0x00, 0x91, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBDC8 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC0C8 -gUnknown_81FC0C8: @ 81FC0C8 -.byte 0xf6, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBDC8 -.byte 0x51, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC0F8 -gUnknown_81FC0F8: @ 81FC0F8 -.byte 0xf6, 0x00, 0x9c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBDC8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC118 -gUnknown_81FC118: @ 81FC118 -.byte 0xf6, 0x00, 0xa1, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBDC8 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC148 -gUnknown_81FC148: @ 81FC148 -.byte 0xf6, 0x00, 0xa7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBDC8 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC168 -gUnknown_81FC168: @ 81FC168 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x20, 0x02, 0x02 -.4byte gUnknown_81FBE58 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81FBE98 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC198 -gUnknown_81FC198: @ 81FC198 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x1e, 0x20, 0x02, 0x02 -.4byte gUnknown_81FBED8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81FBF18 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC1C8 -gUnknown_81FC1C8: @ 81FC1C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x20, 0x02, 0x02 -.4byte gUnknown_81FBF58 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81FBF88 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC1F8 -gUnknown_81FC1F8: @ 81FC1F8 -.byte 0x0e, 0x00, 0x00, 0x00 -.byte 0x1e, 0x1c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBFB8 -.4byte gUnknown_81FBFE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x15, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC008 -.4byte gUnknown_81FC038 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x25, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC058 -.4byte gUnknown_81FC088 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x17, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC0A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00 -.byte 0x24, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC0C8 -.4byte gUnknown_81FC0F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x1e, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC118 -.4byte gUnknown_81FC148 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC288 -gUnknown_81FC288: @ 81FC288 -.byte 0x3c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBE20 -.byte 0x03, 0x27, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00 -.4byte gUnknown_81FBE4C - -.global gUnknown_81FC2B8 -gUnknown_81FC2B8: @ 81FC2B8 -.4byte gUnknown_81FBDF4 - -.global gUnknown_81FC2BC -gUnknown_81FC2BC: @ 81FC2BC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC288 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC2B8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC168 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC198 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC1C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC384 -gUnknown_81FC384: @ 81FC384 -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC1F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC3AC -gUnknown_81FC3AC: @ 81FC3AC -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC2BC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC384 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC3C4 -gUnknown_81FC3C4: @ 81FC3C4 -.byte 0x1b, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x22, 0x13, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x14, 0x13, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x23, 0x1b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x12, 0x1b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1b, 0x1a, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81FC3F4 -gUnknown_81FC3F4: @ 81FC3F4 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC3AC -.4byte gUnknown_81FC3C4 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81FC408 -gUnknown_81FC408: @ 81FC408 -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC658 -gUnknown_81FC658: @ 81FC658 -.string "../data/ground/ground_data_h07p08_station.c\0" -.align 2, 0 - -.global gUnknown_81FC684 -gUnknown_81FC684: @ 81FC684 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC408 - -.global gUnknown_81FC690 -gUnknown_81FC690: @ 81FC690 -.byte 0xf6, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC6D0 -gUnknown_81FC6D0: @ 81FC6D0 -.byte 0xf6, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC710 -gUnknown_81FC710: @ 81FC710 -.byte 0xf6, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC750 -gUnknown_81FC750: @ 81FC750 -.byte 0xf6, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC790 -gUnknown_81FC790: @ 81FC790 -.byte 0xf6, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC7C0 -gUnknown_81FC7C0: @ 81FC7C0 -.byte 0xf6, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC7F0 -gUnknown_81FC7F0: @ 81FC7F0 -.byte 0xf6, 0x00, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -.byte 0x51, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC820 -gUnknown_81FC820: @ 81FC820 -.byte 0xf6, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC840 -gUnknown_81FC840: @ 81FC840 -.byte 0xf6, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -.byte 0x51, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC870 -gUnknown_81FC870: @ 81FC870 -.byte 0xf6, 0x00, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC890 -gUnknown_81FC890: @ 81FC890 -.byte 0xf6, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC8C0 -gUnknown_81FC8C0: @ 81FC8C0 -.byte 0xf6, 0x00, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC8E0 -gUnknown_81FC8E0: @ 81FC8E0 -.byte 0xf6, 0x00, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC910 -gUnknown_81FC910: @ 81FC910 -.byte 0xf6, 0x00, 0x8c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC930 -gUnknown_81FC930: @ 81FC930 -.byte 0xf6, 0x00, 0x91, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC960 -gUnknown_81FC960: @ 81FC960 -.byte 0xf6, 0x00, 0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC980 -gUnknown_81FC980: @ 81FC980 -.byte 0xf6, 0x00, 0x9c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC9B0 -gUnknown_81FC9B0: @ 81FC9B0 -.byte 0xf6, 0x00, 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FC9D0 -gUnknown_81FC9D0: @ 81FC9D0 -.byte 0xf6, 0x00, 0xa7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FCA00 -gUnknown_81FCA00: @ 81FCA00 -.byte 0xf6, 0x00, 0xad, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FCA20 -gUnknown_81FCA20: @ 81FCA20 -.byte 0xf6, 0x00, 0xb2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FCA50 -gUnknown_81FCA50: @ 81FCA50 -.byte 0xf6, 0x00, 0xb8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FCA70 -gUnknown_81FCA70: @ 81FCA70 -.byte 0xf6, 0x00, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FCAA0 -gUnknown_81FCAA0: @ 81FCAA0 -.byte 0xf6, 0x00, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC658 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FCAC0 -gUnknown_81FCAC0: @ 81FCAC0 -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x20, 0x02, 0x02 -.4byte gUnknown_81FC690 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_81FC6D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FCAF0 -gUnknown_81FCAF0: @ 81FCAF0 -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x20, 0x02, 0x02 -.4byte gUnknown_81FC710 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_81FC750 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FCB20 -gUnknown_81FCB20: @ 81FCB20 -.byte 0x00, 0x00, 0x00, 0x00, 0x1d, 0x20, 0x02, 0x02 -.4byte gUnknown_81FC790 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_81FC7C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FCB50 -gUnknown_81FCB50: @ 81FCB50 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1d, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC7F0 -.4byte gUnknown_81FC820 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x13, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC840 -.4byte gUnknown_81FC870 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x27, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC890 -.4byte gUnknown_81FC8C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00 -.byte 0x0c, 0x17, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC8E0 -.4byte gUnknown_81FC910 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x2c, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC930 -.4byte gUnknown_81FC960 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x14, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC980 -.4byte gUnknown_81FC9B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x26, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FC9D0 -.4byte gUnknown_81FCA00 -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00 -.byte 0x18, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FCA20 -.4byte gUnknown_81FCA50 -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x22, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FCA70 -.4byte gUnknown_81FCAA0 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FCC28 -gUnknown_81FCC28: @ 81FCC28 -.byte 0x54, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x39, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x27, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81FCC58 -gUnknown_81FCC58: @ 81FCC58 -.4byte gUnknown_81FC684 - -.global gUnknown_81FCC5C -gUnknown_81FCC5C: @ 81FCC5C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81FCC28 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FCC58 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FCAC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FCAF0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FCB20 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FCD24 -gUnknown_81FCD24: @ 81FCD24 -.byte 0x09, 0x00, 0x00, 0x00 -.4byte gUnknown_81FCB50 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FCD4C -gUnknown_81FCD4C: @ 81FCD4C -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81FCC5C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FCD24 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FCD64 -gUnknown_81FCD64: @ 81FCD64 -.byte 0x1e, 0x09, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x15, 0x09, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x23, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x11, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x2a, 0x14, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x09, 0x14, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x23, 0x1b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x11, 0x1b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1a, 0x16, 0x00, 0x02, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81FCDAC -gUnknown_81FCDAC: @ 81FCDAC -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81FCD4C -.4byte gUnknown_81FCD64 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81FCDC0 -gUnknown_81FCDC0: @ 81FCDC0 -.byte 0xf6, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD010 -.byte 0x08, 0x00, 0x00, 0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD010 -gUnknown_81FD010: @ 81FD010 -.string "../data/ground/ground_data_h08p01_station.c\0" -.align 2, 0 - -.global gUnknown_81FD03C -gUnknown_81FD03C: @ 81FD03C -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FCDC0 - -.global gUnknown_81FD048 -gUnknown_81FD048: @ 81FD048 -.byte 0xf6, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD010 -.byte 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD098 -gUnknown_81FD098: @ 81FD098 -.byte 0xf6, 0x00, 0x43, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD010 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD0E8 -gUnknown_81FD0E8: @ 81FD0E8 -.byte 0xf6, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD010 -.byte 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD138 -gUnknown_81FD138: @ 81FD138 -.byte 0xf6, 0x00, 0x53, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD010 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD188 -gUnknown_81FD188: @ 81FD188 -.byte 0xf6, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD010 -.byte 0xe8, 0x00, 0x51, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD1C8 -gUnknown_81FD1C8: @ 81FD1C8 -.byte 0xf6, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD010 -.byte 0xe8, 0x00, 0x52, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD208 -gUnknown_81FD208: @ 81FD208 -.byte 0xf6, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD010 -.byte 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD248 -gUnknown_81FD248: @ 81FD248 -.byte 0xf6, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD010 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD268 -gUnknown_81FD268: @ 81FD268 -.byte 0xf6, 0x00, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD010 -.byte 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD2A8 -gUnknown_81FD2A8: @ 81FD2A8 -.byte 0xf6, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD010 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD2C8 -gUnknown_81FD2C8: @ 81FD2C8 -.byte 0xf6, 0x00, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD010 -.byte 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD308 -gUnknown_81FD308: @ 81FD308 -.byte 0xf6, 0x00, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD010 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD328 -gUnknown_81FD328: @ 81FD328 -.byte 0xf6, 0x00, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD010 -.byte 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD368 -gUnknown_81FD368: @ 81FD368 -.byte 0xf6, 0x00, 0x94, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD010 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD388 -gUnknown_81FD388: @ 81FD388 -.byte 0xf6, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD010 -.byte 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD3C8 -gUnknown_81FD3C8: @ 81FD3C8 -.byte 0xf6, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD010 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD3E8 -gUnknown_81FD3E8: @ 81FD3E8 -.byte 0xf6, 0x00, 0xa5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD010 -.byte 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD428 -gUnknown_81FD428: @ 81FD428 -.byte 0xf6, 0x00, 0xac, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD010 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD448 -gUnknown_81FD448: @ 81FD448 -.byte 0xf6, 0x00, 0xb1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD010 -.byte 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD488 -gUnknown_81FD488: @ 81FD488 -.byte 0xf6, 0x00, 0xb8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD010 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD4A8 -gUnknown_81FD4A8: @ 81FD4A8 -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_81FD048 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x22, 0x26, 0x02, 0x02 -.4byte gUnknown_81FD098 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD4D8 -gUnknown_81FD4D8: @ 81FD4D8 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_81FD0E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x22, 0x26, 0x02, 0x02 -.4byte gUnknown_81FD138 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD508 -gUnknown_81FD508: @ 81FD508 -.byte 0x00, 0x00, 0x00, 0x00, 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_81FD188 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x22, 0x26, 0x02, 0x02 -.4byte gUnknown_81FD1C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD538 -gUnknown_81FD538: @ 81FD538 -.byte 0x0e, 0x00, 0x00, 0x00 -.byte 0x1a, 0x19, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD208 -.4byte gUnknown_81FD248 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x0f, 0x20, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD268 -.4byte gUnknown_81FD2A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x2d, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD2C8 -.4byte gUnknown_81FD308 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x1e, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD328 -.4byte gUnknown_81FD368 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00 -.byte 0x34, 0x19, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD388 -.4byte gUnknown_81FD3C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x09, 0x0e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD3E8 -.4byte gUnknown_81FD428 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x35, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD448 -.4byte gUnknown_81FD488 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD5E0 -gUnknown_81FD5E0: @ 81FD5E0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x2a, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81FD610 -gUnknown_81FD610: @ 81FD610 -.4byte gUnknown_81FD03C - -.global gUnknown_81FD614 -gUnknown_81FD614: @ 81FD614 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD5E0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD610 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD4A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD4D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD508 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD6DC -gUnknown_81FD6DC: @ 81FD6DC -.byte 0x07, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD538 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD704 -gUnknown_81FD704: @ 81FD704 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD614 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD6DC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD71C -gUnknown_81FD71C: @ 81FD71C -.byte 0x32, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x06, 0x0c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x31, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1b, 0x09, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x2b, 0x1b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0c, 0x1e, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x17, 0x17, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81FD754 -gUnknown_81FD754: @ 81FD754 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD704 -.4byte gUnknown_81FD71C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81FD768 -gUnknown_81FD768: @ 81FD768 -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FD9B8 -gUnknown_81FD9B8: @ 81FD9B8 -.string "../data/ground/ground_data_h09p01_station.c\0" -.align 2, 0 - -.global gUnknown_81FD9E4 -gUnknown_81FD9E4: @ 81FD9E4 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD768 - -.global gUnknown_81FD9F0 -gUnknown_81FD9F0: @ 81FD9F0 -.byte 0xf6, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDA30 -gUnknown_81FDA30: @ 81FDA30 -.byte 0xf6, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDA70 -gUnknown_81FDA70: @ 81FDA70 -.byte 0xf6, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDAB0 -gUnknown_81FDAB0: @ 81FDAB0 -.byte 0xf6, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDAF0 -gUnknown_81FDAF0: @ 81FDAF0 -.byte 0xf6, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDB20 -gUnknown_81FDB20: @ 81FDB20 -.byte 0xf6, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDB50 -gUnknown_81FDB50: @ 81FDB50 -.byte 0xf6, 0x00, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -.byte 0x51, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDB80 -gUnknown_81FDB80: @ 81FDB80 -.byte 0xf6, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDBA0 -gUnknown_81FDBA0: @ 81FDBA0 -.byte 0xf6, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -.byte 0x51, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDBD0 -gUnknown_81FDBD0: @ 81FDBD0 -.byte 0xf6, 0x00, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDBF0 -gUnknown_81FDBF0: @ 81FDBF0 -.byte 0xf6, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDC20 -gUnknown_81FDC20: @ 81FDC20 -.byte 0xf6, 0x00, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDC40 -gUnknown_81FDC40: @ 81FDC40 -.byte 0xf6, 0x00, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDC70 -gUnknown_81FDC70: @ 81FDC70 -.byte 0xf6, 0x00, 0x8c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDC90 -gUnknown_81FDC90: @ 81FDC90 -.byte 0xf6, 0x00, 0x91, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDCC0 -gUnknown_81FDCC0: @ 81FDCC0 -.byte 0xf6, 0x00, 0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDCE0 -gUnknown_81FDCE0: @ 81FDCE0 -.byte 0xf6, 0x00, 0x9c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDD10 -gUnknown_81FDD10: @ 81FDD10 -.byte 0xf6, 0x00, 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDD30 -gUnknown_81FDD30: @ 81FDD30 -.byte 0xf6, 0x00, 0xa7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDD60 -gUnknown_81FDD60: @ 81FDD60 -.byte 0xf6, 0x00, 0xad, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDD80 -gUnknown_81FDD80: @ 81FDD80 -.byte 0xf6, 0x00, 0xb2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDDB0 -gUnknown_81FDDB0: @ 81FDDB0 -.byte 0xf6, 0x00, 0xb8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDDD0 -gUnknown_81FDDD0: @ 81FDDD0 -.byte 0xf6, 0x00, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDE00 -gUnknown_81FDE00: @ 81FDE00 -.byte 0xf6, 0x00, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FD9B8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDE20 -gUnknown_81FDE20: @ 81FDE20 -.byte 0x00, 0x04, 0x00, 0x00, 0x1f, 0x23, 0x02, 0x02 -.4byte gUnknown_81FD9F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x1f, 0x26, 0x02, 0x02 -.4byte gUnknown_81FDA30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDE50 -gUnknown_81FDE50: @ 81FDE50 -.byte 0x00, 0x04, 0x00, 0x00, 0x1f, 0x23, 0x02, 0x02 -.4byte gUnknown_81FDA70 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1f, 0x26, 0x02, 0x02 -.4byte gUnknown_81FDAB0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDE80 -gUnknown_81FDE80: @ 81FDE80 -.byte 0x00, 0x00, 0x00, 0x00, 0x1f, 0x23, 0x02, 0x02 -.4byte gUnknown_81FDAF0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x1f, 0x26, 0x02, 0x02 -.4byte gUnknown_81FDB20 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDEB0 -gUnknown_81FDEB0: @ 81FDEB0 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1a, 0x19, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FDB50 -.4byte gUnknown_81FDB80 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x26, 0x1a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FDBA0 -.4byte gUnknown_81FDBD0 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x0e, 0x1b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FDBF0 -.4byte gUnknown_81FDC20 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00 -.byte 0x31, 0x1a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FDC40 -.4byte gUnknown_81FDC70 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FDC90 -.4byte gUnknown_81FDCC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x07, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FDCE0 -.4byte gUnknown_81FDD10 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x36, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FDD30 -.4byte gUnknown_81FDD60 -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00 -.byte 0x07, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FDD80 -.4byte gUnknown_81FDDB0 -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x38, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FDDD0 -.4byte gUnknown_81FDE00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FDF88 -gUnknown_81FDF88: @ 81FDF88 -.byte 0x3f, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81FDF94 -gUnknown_81FDF94: @ 81FDF94 -.4byte gUnknown_81FD9E4 - -.global gUnknown_81FDF98 -gUnknown_81FDF98: @ 81FDF98 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FDF88 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FDF94 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FDE20 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FDE50 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FDE80 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE060 -gUnknown_81FE060: @ 81FE060 -.byte 0x09, 0x00, 0x00, 0x00 -.4byte gUnknown_81FDEB0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE088 -gUnknown_81FE088: @ 81FE088 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81FDF98 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE060 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE0A0 -gUnknown_81FE0A0: @ 81FE0A0 -.byte 0x33, 0x15, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x05, 0x15, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x33, 0x1b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x05, 0x1b, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x19, 0x06, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x2d, 0x18, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0b, 0x18, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x23, 0x18, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x16, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81FE0E8 -gUnknown_81FE0E8: @ 81FE0E8 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE088 -.4byte gUnknown_81FE0A0 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81FE0FC -gUnknown_81FE0FC: @ 81FE0FC -.byte 0xf6, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0x08, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE34C -gUnknown_81FE34C: @ 81FE34C -.string "../data/ground/ground_data_h09p02_station.c\0" -.align 2, 0 - -.global gUnknown_81FE378 -gUnknown_81FE378: @ 81FE378 -.byte 0x94, 0x01, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE0FC - -.global gUnknown_81FE384 -gUnknown_81FE384: @ 81FE384 -.byte 0xf6, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE3C4 -gUnknown_81FE3C4: @ 81FE3C4 -.byte 0xf6, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE404 -gUnknown_81FE404: @ 81FE404 -.byte 0xf6, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE444 -gUnknown_81FE444: @ 81FE444 -.byte 0xf6, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE484 -gUnknown_81FE484: @ 81FE484 -.byte 0xf6, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE4B4 -gUnknown_81FE4B4: @ 81FE4B4 -.byte 0xf6, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE4E4 -gUnknown_81FE4E4: @ 81FE4E4 -.byte 0xf6, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0x51, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE514 -gUnknown_81FE514: @ 81FE514 -.byte 0xf6, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE534 -gUnknown_81FE534: @ 81FE534 -.byte 0xf6, 0x00, 0x71, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0x51, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE564 -gUnknown_81FE564: @ 81FE564 -.byte 0xf6, 0x00, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE584 -gUnknown_81FE584: @ 81FE584 -.byte 0xf6, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0x51, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE5B4 -gUnknown_81FE5B4: @ 81FE5B4 -.byte 0xf6, 0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE5D4 -gUnknown_81FE5D4: @ 81FE5D4 -.byte 0xf6, 0x00, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE604 -gUnknown_81FE604: @ 81FE604 -.byte 0xf6, 0x00, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE624 -gUnknown_81FE624: @ 81FE624 -.byte 0xf6, 0x00, 0x92, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE654 -gUnknown_81FE654: @ 81FE654 -.byte 0xf6, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE674 -gUnknown_81FE674: @ 81FE674 -.byte 0xf6, 0x00, 0x9d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE6A4 -gUnknown_81FE6A4: @ 81FE6A4 -.byte 0xf6, 0x00, 0xa3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE6C4 -gUnknown_81FE6C4: @ 81FE6C4 -.byte 0xf6, 0x00, 0xa8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE6F4 -gUnknown_81FE6F4: @ 81FE6F4 -.byte 0xf6, 0x00, 0xae, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE714 -gUnknown_81FE714: @ 81FE714 -.byte 0xf6, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE744 -gUnknown_81FE744: @ 81FE744 -.byte 0xf6, 0x00, 0xb9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE764 -gUnknown_81FE764: @ 81FE764 -.byte 0xf6, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE794 -gUnknown_81FE794: @ 81FE794 -.byte 0xf6, 0x00, 0xc4, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE7B4 -gUnknown_81FE7B4: @ 81FE7B4 -.byte 0xf6, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE7E4 -gUnknown_81FE7E4: @ 81FE7E4 -.byte 0xf6, 0x00, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE34C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE804 -gUnknown_81FE804: @ 81FE804 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81FE384 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x04, 0x00, 0x00, 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_81FE3C4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE834 -gUnknown_81FE834: @ 81FE834 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81FE404 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_81FE444 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE864 -gUnknown_81FE864: @ 81FE864 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81FE484 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_81FE4B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE894 -gUnknown_81FE894: @ 81FE894 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1e, 0x0a, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE4E4 -.4byte gUnknown_81FE514 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x22, 0x07, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE534 -.4byte gUnknown_81FE564 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x27, 0x0f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE584 -.4byte gUnknown_81FE5B4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x11, 0x00, 0x00, 0x00, 0x23, 0x13, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE5D4 -.4byte gUnknown_81FE604 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x15, 0x1a, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE624 -.4byte gUnknown_81FE654 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x06, 0x23, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE674 -.4byte gUnknown_81FE6A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x34, 0x23, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE6C4 -.4byte gUnknown_81FE6F4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x15, 0x00, 0x00, 0x00, 0x06, 0x11, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE714 -.4byte gUnknown_81FE744 -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x37, 0x17, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE764 -.4byte gUnknown_81FE794 -.byte 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x09, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE7B4 -.4byte gUnknown_81FE7E4 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FE984 -gUnknown_81FE984: @ 81FE984 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81FE9B4 -gUnknown_81FE9B4: @ 81FE9B4 -.4byte gUnknown_81FE378 - -.global gUnknown_81FE9B8 -gUnknown_81FE9B8: @ 81FE9B8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE984 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE9B4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE804 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE834 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE864 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FEA80 -gUnknown_81FEA80: @ 81FEA80 -.byte 0x0a, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE894 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FEAA8 -gUnknown_81FEAA8: @ 81FEAA8 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81FE9B8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FEA80 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FEAC0 -gUnknown_81FEAC0: @ 81FEAC0 -.byte 0x06, 0x08, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x33, 0x15, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x04, 0x0e, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x31, 0x20, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x04, 0x20, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x12, 0x17, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x20, 0x12, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x23, 0x0c, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x21, 0x05, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1b, 0x09, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81FEB10 -gUnknown_81FEB10: @ 81FEB10 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81FEAA8 -.4byte gUnknown_81FEAC0 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81FEB24 -gUnknown_81FEB24: @ 81FEB24 -.byte 0xf6, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FED74 -.byte 0x08, 0x00, 0x00, 0x00, 0x85, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FED74 -gUnknown_81FED74: @ 81FED74 -.string "../data/ground/ground_data_h10p01_station.c\0" -.align 2, 0 - -.global gUnknown_81FEDA0 -gUnknown_81FEDA0: @ 81FEDA0 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FEB24 - -.global gUnknown_81FEDAC -gUnknown_81FEDAC: @ 81FEDAC -.byte 0xf6, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FED74 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FEDEC -gUnknown_81FEDEC: @ 81FEDEC -.byte 0xf6, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FED74 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FEE2C -gUnknown_81FEE2C: @ 81FEE2C -.byte 0xf6, 0x00, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FED74 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FEE6C -gUnknown_81FEE6C: @ 81FEE6C -.byte 0xf6, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FED74 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FEEAC -gUnknown_81FEEAC: @ 81FEEAC -.byte 0xf6, 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FED74 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FEEDC -gUnknown_81FEEDC: @ 81FEEDC -.byte 0xf6, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FED74 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FEF0C -gUnknown_81FEF0C: @ 81FEF0C -.byte 0xf6, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FED74 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FEF3C -gUnknown_81FEF3C: @ 81FEF3C -.byte 0xf6, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FED74 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FEF5C -gUnknown_81FEF5C: @ 81FEF5C -.byte 0xf6, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FED74 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FEF8C -gUnknown_81FEF8C: @ 81FEF8C -.byte 0xf6, 0x00, 0x71, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FED74 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FEFAC -gUnknown_81FEFAC: @ 81FEFAC -.byte 0xf6, 0x00, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FED74 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FEFDC -gUnknown_81FEFDC: @ 81FEFDC -.byte 0xf6, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FED74 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FEFFC -gUnknown_81FEFFC: @ 81FEFFC -.byte 0xf6, 0x00, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FED74 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF02C -gUnknown_81FF02C: @ 81FF02C -.byte 0xf6, 0x00, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FED74 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF04C -gUnknown_81FF04C: @ 81FF04C -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81FEDAC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_81FEDEC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF07C -gUnknown_81FF07C: @ 81FF07C -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81FEE2C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_81FEE6C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF0AC -gUnknown_81FF0AC: @ 81FF0AC -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_81FEEAC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_81FEEDC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF0DC -gUnknown_81FF0DC: @ 81FF0DC -.byte 0x0e, 0x00, 0x00, 0x00, 0x1e, 0x14, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FEF0C -.4byte gUnknown_81FEF3C -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x0c, 0x1a, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FEF5C -.4byte gUnknown_81FEF8C -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x30, 0x19, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FEFAC -.4byte gUnknown_81FEFDC -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x1e, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FEFFC -.4byte gUnknown_81FF02C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF13C -gUnknown_81FF13C: @ 81FF13C -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81FF148 -gUnknown_81FF148: @ 81FF148 -.4byte gUnknown_81FEDA0 - -.global gUnknown_81FF14C -gUnknown_81FF14C: @ 81FF14C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF13C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF148 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF04C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF07C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF0AC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF214 -gUnknown_81FF214: @ 81FF214 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF0DC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF23C -gUnknown_81FF23C: @ 81FF23C -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF14C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF214 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF254 -gUnknown_81FF254: @ 81FF254 -.byte 0x1b, 0x08, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x2d, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x09, 0x17, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1b, 0x12, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81FF274 -gUnknown_81FF274: @ 81FF274 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF23C -.4byte gUnknown_81FF254 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81FF288 -gUnknown_81FF288: @ 81FF288 -.byte 0xf6, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF4D8 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF4D8 -gUnknown_81FF4D8: @ 81FF4D8 -.string "../data/ground/ground_data_h10p02_station.c\0" -.align 2, 0 - -.global gUnknown_81FF504 -gUnknown_81FF504: @ 81FF504 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF288 - -.global gUnknown_81FF510 -gUnknown_81FF510: @ 81FF510 -.byte 0xf6, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF4D8 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF560 -gUnknown_81FF560: @ 81FF560 -.byte 0xf6, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF4D8 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF5B0 -gUnknown_81FF5B0: @ 81FF5B0 -.byte 0xf6, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF4D8 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF600 -gUnknown_81FF600: @ 81FF600 -.byte 0xf6, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF4D8 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF650 -gUnknown_81FF650: @ 81FF650 -.byte 0xf6, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF4D8 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF690 -gUnknown_81FF690: @ 81FF690 -.byte 0xf6, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF4D8 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF6D0 -gUnknown_81FF6D0: @ 81FF6D0 -.byte 0xf6, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF4D8 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF710 -gUnknown_81FF710: @ 81FF710 -.byte 0xf6, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF4D8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF730 -gUnknown_81FF730: @ 81FF730 -.byte 0xf6, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF4D8 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF770 -gUnknown_81FF770: @ 81FF770 -.byte 0xf6, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF4D8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF790 -gUnknown_81FF790: @ 81FF790 -.byte 0xf6, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF4D8 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF7D0 -gUnknown_81FF7D0: @ 81FF7D0 -.byte 0xf6, 0x00, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF4D8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF7F0 -gUnknown_81FF7F0: @ 81FF7F0 -.byte 0xf6, 0x00, 0x8a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF4D8 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF830 -gUnknown_81FF830: @ 81FF830 -.byte 0xf6, 0x00, 0x91, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF4D8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF850 -gUnknown_81FF850: @ 81FF850 -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x20, 0x02, 0x02 -.4byte gUnknown_81FF510 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_81FF560 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF880 -gUnknown_81FF880: @ 81FF880 -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x20, 0x02, 0x02 -.4byte gUnknown_81FF5B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_81FF600 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF8B0 -gUnknown_81FF8B0: @ 81FF8B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x1d, 0x20, 0x02, 0x02 -.4byte gUnknown_81FF650 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_81FF690 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF8E0 -gUnknown_81FF8E0: @ 81FF8E0 -.byte 0x0e, 0x00, 0x00, 0x00, 0x0e, 0x0c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF6D0 -.4byte gUnknown_81FF710 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x2a, 0x0d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF730 -.4byte gUnknown_81FF770 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x06, 0x15, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF790 -.4byte gUnknown_81FF7D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x33, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF7F0 -.4byte gUnknown_81FF830 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FF940 -gUnknown_81FF940: @ 81FF940 -.byte 0x39, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x39, 0x01, 0x00, 0x00, 0x01, 0x26, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x27, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x27, 0x00, 0x00, 0x38, 0x01, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_81FF970 -gUnknown_81FF970: @ 81FF970 -.4byte gUnknown_81FF504 - -.global gUnknown_81FF974 -gUnknown_81FF974: @ 81FF974 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF940 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF970 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF850 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF880 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF8B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FFA3C -gUnknown_81FFA3C: @ 81FFA3C -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF8E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FFA64 -gUnknown_81FFA64: @ 81FFA64 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_81FF974 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFA3C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FFA7C -gUnknown_81FFA7C: @ 81FFA7C -.byte 0x30, 0x14, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x03, 0x14, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x27, 0x0a, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0b, 0x0a, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_81FFA9C -gUnknown_81FFA9C: @ 81FFA9C -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFA64 -.4byte gUnknown_81FFA7C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_81FFAB0 -gUnknown_81FFAB0: @ 81FFAB0 -.byte 0xf6, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFD00 -.byte 0x08, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FFD00 -gUnknown_81FFD00: @ 81FFD00 -.string "../data/ground/ground_data_h11p01_station.c\0" -.align 2, 0 - -.global gUnknown_81FFD2C -gUnknown_81FFD2C: @ 81FFD2C -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFAB0 - -.global gUnknown_81FFD38 -gUnknown_81FFD38: @ 81FFD38 -.byte 0xf6, 0x00, 0x3b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFD00 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FFD78 -gUnknown_81FFD78: @ 81FFD78 -.byte 0xf6, 0x00, 0x42, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFD00 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FFDB8 -gUnknown_81FFDB8: @ 81FFDB8 -.byte 0xf6, 0x00, 0x49, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFD00 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FFDF8 -gUnknown_81FFDF8: @ 81FFDF8 -.byte 0xf6, 0x00, 0x50, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFD00 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FFE38 -gUnknown_81FFE38: @ 81FFE38 -.byte 0xf6, 0x00, 0x57, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFD00 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FFE68 -gUnknown_81FFE68: @ 81FFE68 -.byte 0xf6, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFD00 -.byte 0xe8, 0x00, 0x52, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FFE98 -gUnknown_81FFE98: @ 81FFE98 -.byte 0xf6, 0x00, 0x63, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFD00 -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FFEC8 -gUnknown_81FFEC8: @ 81FFEC8 -.byte 0xf6, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFD00 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FFEE8 -gUnknown_81FFEE8: @ 81FFEE8 -.byte 0xf6, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFD00 -.byte 0x51, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FFF18 -gUnknown_81FFF18: @ 81FFF18 -.byte 0xf6, 0x00, 0x74, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFD00 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FFF38 -gUnknown_81FFF38: @ 81FFF38 -.byte 0xf6, 0x00, 0x79, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFD00 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FFF68 -gUnknown_81FFF68: @ 81FFF68 -.byte 0xf6, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFD00 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FFF88 -gUnknown_81FFF88: @ 81FFF88 -.byte 0xf6, 0x00, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFD00 -.byte 0x51, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FFFB8 -gUnknown_81FFFB8: @ 81FFFB8 -.byte 0xf6, 0x00, 0x8a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFD00 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81FFFD8 -gUnknown_81FFFD8: @ 81FFFD8 -.byte 0xf6, 0x00, 0x8f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFD00 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200008 -gUnknown_8200008: @ 8200008 -.byte 0xf6, 0x00, 0x95, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFD00 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200028 -gUnknown_8200028: @ 8200028 -.byte 0xf6, 0x00, 0x9a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFD00 -.byte 0x51, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200058 -gUnknown_8200058: @ 8200058 -.byte 0xf6, 0x00, 0xa0, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFD00 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200078 -gUnknown_8200078: @ 8200078 -.byte 0xf6, 0x00, 0xa5, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFD00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82000A8 -gUnknown_82000A8: @ 82000A8 -.byte 0xf6, 0x00, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFD00 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82000C8 -gUnknown_82000C8: @ 82000C8 -.byte 0x00, 0x04, 0x00, 0x00, 0x08, 0x06, 0x02, 0x02 -.4byte gUnknown_81FFD38 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x03, 0x06, 0x02, 0x02 -.4byte gUnknown_81FFD78 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82000F8 -gUnknown_82000F8: @ 82000F8 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x08, 0x06, 0x02, 0x02 -.4byte gUnknown_81FFDB8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x03, 0x06, 0x02, 0x02 -.4byte gUnknown_81FFDF8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200128 -gUnknown_8200128: @ 8200128 -.byte 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x02, 0x02 -.4byte gUnknown_81FFE38 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x03, 0x06, 0x02, 0x02 -.4byte gUnknown_81FFE68 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200158 -gUnknown_8200158: @ 8200158 -.byte 0x0e, 0x00, 0x00, 0x00 -.byte 0x0f, 0x14, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFE98 -.4byte gUnknown_81FFEC8 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x18, 0x19, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFEE8 -.4byte gUnknown_81FFF18 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFF38 -.4byte gUnknown_81FFF68 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x22, 0x1b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFF88 -.4byte gUnknown_81FFFB8 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00 -.byte 0x32, 0x13, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81FFFD8 -.4byte gUnknown_8200008 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x37, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200028 -.4byte gUnknown_8200058 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x3d, 0x21, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200078 -.4byte gUnknown_82000A8 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200200 -gUnknown_8200200: @ 8200200 -.byte 0x42, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x42, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00, 0x41, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_8200230 -gUnknown_8200230: @ 8200230 -.4byte gUnknown_81FFD2C - -.global gUnknown_8200234 -gUnknown_8200234: @ 8200234 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8200200 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8200230 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82000C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82000F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8200128 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82002FC -gUnknown_82002FC: @ 82002FC -.byte 0x07, 0x00, 0x00, 0x00 -.4byte gUnknown_8200158 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200324 -gUnknown_8200324: @ 8200324 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_8200234 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82002FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820033C -gUnknown_820033C: @ 820033C -.byte 0x3a, 0x1f, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x34, 0x02, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x2f, 0x11, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1f, 0x18, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x0d, 0x20, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x15, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0c, 0x11, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_8200374 -gUnknown_8200374: @ 8200374 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8200324 -.4byte gUnknown_820033C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8200388 -gUnknown_8200388: @ 8200388 -.byte 0xf6, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82005D8 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82005D8 -gUnknown_82005D8: @ 82005D8 -.string "../data/ground/ground_data_h12p01_station.c\0" -.align 2, 0 - -.global gUnknown_8200604 -gUnknown_8200604: @ 8200604 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200388 - -.global gUnknown_8200610 -gUnknown_8200610: @ 8200610 -.byte 0xf6, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82005D8 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200650 -gUnknown_8200650: @ 8200650 -.byte 0xf6, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82005D8 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200690 -gUnknown_8200690: @ 8200690 -.byte 0xf6, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82005D8 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82006D0 -gUnknown_82006D0: @ 82006D0 -.byte 0xf6, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82005D8 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200710 -gUnknown_8200710: @ 8200710 -.byte 0xf6, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82005D8 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200740 -gUnknown_8200740: @ 8200740 -.byte 0xf6, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82005D8 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200770 -gUnknown_8200770: @ 8200770 -.byte 0xf6, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82005D8 -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82007A0 -gUnknown_82007A0: @ 82007A0 -.byte 0xf6, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82005D8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82007C0 -gUnknown_82007C0: @ 82007C0 -.byte 0xf6, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82005D8 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82007F0 -gUnknown_82007F0: @ 82007F0 -.byte 0xf6, 0x00, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82005D8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200810 -gUnknown_8200810: @ 8200810 -.byte 0xf6, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82005D8 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200840 -gUnknown_8200840: @ 8200840 -.byte 0xf6, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82005D8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200860 -gUnknown_8200860: @ 8200860 -.byte 0xf6, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82005D8 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200890 -gUnknown_8200890: @ 8200890 -.byte 0xf6, 0x00, 0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82005D8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82008B0 -gUnknown_82008B0: @ 82008B0 -.byte 0xf6, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82005D8 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82008E0 -gUnknown_82008E0: @ 82008E0 -.byte 0xf6, 0x00, 0x94, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82005D8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200900 -gUnknown_8200900: @ 8200900 -.byte 0xf6, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82005D8 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200930 -gUnknown_8200930: @ 8200930 -.byte 0xf6, 0x00, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82005D8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200950 -gUnknown_8200950: @ 8200950 -.byte 0x00, 0x04, 0x00, 0x00, 0x26, 0x23, 0x02, 0x02 -.4byte gUnknown_8200610 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x26, 0x26, 0x02, 0x02 -.4byte gUnknown_8200650 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200980 -gUnknown_8200980: @ 8200980 -.byte 0x00, 0x04, 0x00, 0x00, 0x26, 0x23, 0x02, 0x02 -.4byte gUnknown_8200690 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x26, 0x26, 0x02, 0x02 -.4byte gUnknown_82006D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82009B0 -gUnknown_82009B0: @ 82009B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x26, 0x23, 0x02, 0x02 -.4byte gUnknown_8200710 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x26, 0x26, 0x02, 0x02 -.4byte gUnknown_8200740 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82009E0 -gUnknown_82009E0: @ 82009E0 -.byte 0x0e, 0x00, 0x00, 0x00, 0x22, 0x0c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200770 -.4byte gUnknown_82007A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x07, 0x08, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82007C0 -.4byte gUnknown_82007F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x33, 0x09, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200810 -.4byte gUnknown_8200840 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x2b, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200860 -.4byte gUnknown_8200890 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x0e, 0x13, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82008B0 -.4byte gUnknown_82008E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00 -.byte 0x13, 0x07, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200900 -.4byte gUnknown_8200930 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200A70 -gUnknown_8200A70: @ 8200A70 -.byte 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x39, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_8200AA0 -gUnknown_8200AA0: @ 8200AA0 -.4byte gUnknown_8200604 - -.global gUnknown_8200AA4 -gUnknown_8200AA4: @ 8200AA4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8200A70 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8200AA0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8200950 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8200980 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82009B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200B6C -gUnknown_8200B6C: @ 8200B6C -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_82009E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200B94 -gUnknown_8200B94: @ 8200B94 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_8200AA4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8200B6C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200BAC -gUnknown_8200BAC: @ 8200BAC -.byte 0x10, 0x05, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x28, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x0b, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x2f, 0x07, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x04, 0x06, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1f, 0x09, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_8200BDC -gUnknown_8200BDC: @ 8200BDC -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8200B94 -.4byte gUnknown_8200BAC -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8200BF0 -gUnknown_8200BF0: @ 8200BF0 -.byte 0xf6, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0x08, 0x00, 0x00, 0x00, 0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200E40 -gUnknown_8200E40: @ 8200E40 -.string "../data/ground/ground_data_h13p01_station.c\0" -.align 2, 0 - -.global gUnknown_8200E6C -gUnknown_8200E6C: @ 8200E6C -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200BF0 - -.global gUnknown_8200E78 -gUnknown_8200E78: @ 8200E78 -.byte 0xf6, 0x00, 0x3f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200EB8 -gUnknown_8200EB8: @ 8200EB8 -.byte 0xf6, 0x00, 0x46, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200EF8 -gUnknown_8200EF8: @ 8200EF8 -.byte 0xf6, 0x00, 0x4d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200F38 -gUnknown_8200F38: @ 8200F38 -.byte 0xf6, 0x00, 0x54, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200F78 -gUnknown_8200F78: @ 8200F78 -.byte 0xf6, 0x00, 0x5b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200FA8 -gUnknown_8200FA8: @ 8200FA8 -.byte 0xf6, 0x00, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0xe8, 0x00, 0x52, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8200FD8 -gUnknown_8200FD8: @ 8200FD8 -.byte 0xf6, 0x00, 0x67, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0x51, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201008 -gUnknown_8201008: @ 8201008 -.byte 0xf6, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201028 -gUnknown_8201028: @ 8201028 -.byte 0xf6, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0x51, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201058 -gUnknown_8201058: @ 8201058 -.byte 0xf6, 0x00, 0x78, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201078 -gUnknown_8201078: @ 8201078 -.byte 0xf6, 0x00, 0x7d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0x51, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82010A8 -gUnknown_82010A8: @ 82010A8 -.byte 0xf6, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82010C8 -gUnknown_82010C8: @ 82010C8 -.byte 0xf6, 0x00, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0x51, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82010F8 -gUnknown_82010F8: @ 82010F8 -.byte 0xf6, 0x00, 0x8e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201118 -gUnknown_8201118: @ 8201118 -.byte 0xf6, 0x00, 0x93, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201148 -gUnknown_8201148: @ 8201148 -.byte 0xf6, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201168 -gUnknown_8201168: @ 8201168 -.byte 0xf6, 0x00, 0x9e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0x51, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201198 -gUnknown_8201198: @ 8201198 -.byte 0xf6, 0x00, 0xa4, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82011B8 -gUnknown_82011B8: @ 82011B8 -.byte 0xf6, 0x00, 0xa9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82011E8 -gUnknown_82011E8: @ 82011E8 -.byte 0xf6, 0x00, 0xaf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201208 -gUnknown_8201208: @ 8201208 -.byte 0xf6, 0x00, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0x51, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201238 -gUnknown_8201238: @ 8201238 -.byte 0xf6, 0x00, 0xba, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201258 -gUnknown_8201258: @ 8201258 -.byte 0xf6, 0x00, 0xbf, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201288 -gUnknown_8201288: @ 8201288 -.byte 0xf6, 0x00, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82012A8 -gUnknown_82012A8: @ 82012A8 -.byte 0xf6, 0x00, 0xca, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0x51, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82012D8 -gUnknown_82012D8: @ 82012D8 -.byte 0xf6, 0x00, 0xd0, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82012F8 -gUnknown_82012F8: @ 82012F8 -.byte 0xf6, 0x00, 0xd5, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201328 -gUnknown_8201328: @ 8201328 -.byte 0xf6, 0x00, 0xdb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200E40 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201348 -gUnknown_8201348: @ 8201348 -.byte 0x00, 0x04, 0x00, 0x00, 0x20, 0x26, 0x02, 0x02 -.4byte gUnknown_8200E78 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x20, 0x29, 0x02, 0x02 -.4byte gUnknown_8200EB8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201378 -gUnknown_8201378: @ 8201378 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x20, 0x26, 0x02, 0x02 -.4byte gUnknown_8200EF8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x20, 0x29, 0x02, 0x02 -.4byte gUnknown_8200F38 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82013A8 -gUnknown_82013A8: @ 82013A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x20, 0x26, 0x02, 0x02 -.4byte gUnknown_8200F78 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x20, 0x29, 0x02, 0x02 -.4byte gUnknown_8200FA8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82013D8 -gUnknown_82013D8: @ 82013D8 -.byte 0x0e, 0x00, 0x00, 0x00 -.byte 0x1f, 0x0e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8200FD8 -.4byte gUnknown_8201008 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x0b, 0x15, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201028 -.4byte gUnknown_8201058 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x34, 0x14, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201078 -.4byte gUnknown_82010A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x20, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82010C8 -.4byte gUnknown_82010F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00 -.byte 0x19, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201118 -.4byte gUnknown_8201148 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x27, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201168 -.4byte gUnknown_8201198 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x20, 0x1a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82011B8 -.4byte gUnknown_82011E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201208 -.4byte gUnknown_8201238 -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00 -.byte 0x27, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201258 -.4byte gUnknown_8201288 -.byte 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x12, 0x1a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82012A8 -.4byte gUnknown_82012D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x2d, 0x1b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82012F8 -.4byte gUnknown_8201328 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82014E0 -gUnknown_82014E0: @ 82014E0 -.byte 0x3f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3f, 0x01, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x2d, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x2d, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_8201510 -gUnknown_8201510: @ 8201510 -.4byte gUnknown_8200E6C - -.global gUnknown_8201514 -gUnknown_8201514: @ 8201514 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_82014E0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8201510 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8201348 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8201378 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82013A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82015DC -gUnknown_82015DC: @ 82015DC -.byte 0x0b, 0x00, 0x00, 0x00 -.4byte gUnknown_82013D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201604 -gUnknown_8201604: @ 8201604 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_8201514 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82015DC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820161C -gUnknown_820161C: @ 820161C -.byte 0x2b, 0x17, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0f, 0x17, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x24, 0x15, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x16, 0x15, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x1d, 0x17, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x24, 0x1c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x16, 0x1c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1d, 0x1d, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x31, 0x12, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x08, 0x13, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1d, 0x0c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_8201674 -gUnknown_8201674: @ 8201674 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8201604 -.4byte gUnknown_820161C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8201688 -gUnknown_8201688: @ 8201688 -.byte 0xf6, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82018D8 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0x8a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82018D8 -gUnknown_82018D8: @ 82018D8 -.string "../data/ground/ground_data_h13p02_station.c\0" -.align 2, 0 - -.global gUnknown_8201904 -gUnknown_8201904: @ 8201904 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201688 - -.global gUnknown_8201910 -gUnknown_8201910: @ 8201910 -.byte 0xf6, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82018D8 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201950 -gUnknown_8201950: @ 8201950 -.byte 0xf6, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82018D8 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201990 -gUnknown_8201990: @ 8201990 -.byte 0xf6, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82018D8 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82019D0 -gUnknown_82019D0: @ 82019D0 -.byte 0xf6, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82018D8 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201A10 -gUnknown_8201A10: @ 8201A10 -.byte 0xf6, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82018D8 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201A40 -gUnknown_8201A40: @ 8201A40 -.byte 0xf6, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82018D8 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201A70 -gUnknown_8201A70: @ 8201A70 -.byte 0xf6, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82018D8 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201AA0 -gUnknown_8201AA0: @ 8201AA0 -.byte 0xf6, 0x00, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82018D8 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201AC0 -gUnknown_8201AC0: @ 8201AC0 -.byte 0x00, 0x04, 0x00, 0x00, 0x16, 0x20, 0x02, 0x02 -.4byte gUnknown_8201910 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x16, 0x23, 0x02, 0x02 -.4byte gUnknown_8201950 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201AF0 -gUnknown_8201AF0: @ 8201AF0 -.byte 0x00, 0x04, 0x00, 0x00, 0x16, 0x20, 0x02, 0x02 -.4byte gUnknown_8201990 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x16, 0x23, 0x02, 0x02 -.4byte gUnknown_82019D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201B20 -gUnknown_8201B20: @ 8201B20 -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x20, 0x02, 0x02 -.4byte gUnknown_8201A10 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x16, 0x23, 0x02, 0x02 -.4byte gUnknown_8201A40 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201B50 -gUnknown_8201B50: @ 8201B50 -.byte 0x0e, 0x00, 0x00, 0x00, 0x16, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201A70 -.4byte gUnknown_8201AA0 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201B68 -gUnknown_8201B68: @ 8201B68 -.byte 0x2d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x2d, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x27, 0x00, 0x00, 0x2a, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_8201B98 -gUnknown_8201B98: @ 8201B98 -.4byte gUnknown_8201904 - -.global gUnknown_8201B9C -gUnknown_8201B9C: @ 8201B9C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8201B68 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8201B98 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8201AC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8201AF0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8201B20 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201C64 -gUnknown_8201C64: @ 8201C64 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8201B50 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201C8C -gUnknown_8201C8C: @ 8201C8C -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_8201B9C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8201C64 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201CA4 -gUnknown_8201CA4: @ 8201CA4 -.byte 0x13, 0x09, 0x00, 0x00, 0x07, 0x03, 0x03, 0x02 - -.global gUnknown_8201CAC -gUnknown_8201CAC: @ 8201CAC -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8201C8C -.4byte gUnknown_8201CA4 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8201CC0 -gUnknown_8201CC0: @ 8201CC0 -.byte 0xf6, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201F10 -.byte 0x08, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201F10 -gUnknown_8201F10: @ 8201F10 -.string "../data/ground/ground_data_h13p03_station.c\0" -.align 2, 0 - -.global gUnknown_8201F3C -gUnknown_8201F3C: @ 8201F3C -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201CC0 - -.global gUnknown_8201F48 -gUnknown_8201F48: @ 8201F48 -.byte 0xf6, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201F10 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201F88 -gUnknown_8201F88: @ 8201F88 -.byte 0xf6, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201F10 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8201FC8 -gUnknown_8201FC8: @ 8201FC8 -.byte 0xf6, 0x00, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201F10 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202008 -gUnknown_8202008: @ 8202008 -.byte 0xf6, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201F10 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202048 -gUnknown_8202048: @ 8202048 -.byte 0xf6, 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201F10 -.byte 0xe8, 0x00, 0x51, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202078 -gUnknown_8202078: @ 8202078 -.byte 0xf6, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201F10 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82020A8 -gUnknown_82020A8: @ 82020A8 -.byte 0xf6, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201F10 -.byte 0x51, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82020D8 -gUnknown_82020D8: @ 82020D8 -.byte 0xf6, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201F10 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82020F8 -gUnknown_82020F8: @ 82020F8 -.byte 0xf6, 0x00, 0x6b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201F10 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202128 -gUnknown_8202128: @ 8202128 -.byte 0xf6, 0x00, 0x71, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201F10 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202148 -gUnknown_8202148: @ 8202148 -.byte 0xf6, 0x00, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201F10 -.byte 0x51, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202178 -gUnknown_8202178: @ 8202178 -.byte 0xf6, 0x00, 0x7c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201F10 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202198 -gUnknown_8202198: @ 8202198 -.byte 0xf6, 0x00, 0x81, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201F10 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82021C8 -gUnknown_82021C8: @ 82021C8 -.byte 0xf6, 0x00, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8201F10 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82021E8 -gUnknown_82021E8: @ 82021E8 -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x20, 0x02, 0x02 -.4byte gUnknown_8201F48 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_8201F88 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202218 -gUnknown_8202218: @ 8202218 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x1d, 0x20, 0x02, 0x02 -.4byte gUnknown_8201FC8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_8202008 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202248 -gUnknown_8202248: @ 8202248 -.byte 0x00, 0x00, 0x00, 0x00, 0x1d, 0x20, 0x02, 0x02 -.4byte gUnknown_8202048 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_8202078 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202278 -gUnknown_8202278: @ 8202278 -.byte 0x0e, 0x00, 0x00, 0x00 -.byte 0x1d, 0x1b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82020A8 -.4byte gUnknown_82020D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x13, 0x1a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82020F8 -.4byte gUnknown_8202128 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x27, 0x1a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202148 -.4byte gUnknown_8202178 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x1d, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202198 -.4byte gUnknown_82021C8 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82022D8 -gUnknown_82022D8: @ 82022D8 -.byte 0x3a, 0x03, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3a, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x28, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_8202308 -gUnknown_8202308: @ 8202308 -.4byte gUnknown_8201F3C - -.global gUnknown_820230C -gUnknown_820230C: @ 820230C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_82022D8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8202308 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82021E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8202218 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8202248 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82023D4 -gUnknown_82023D4: @ 82023D4 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8202278 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82023FC -gUnknown_82023FC: @ 82023FC -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_820230C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82023D4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202414 -gUnknown_8202414: @ 8202414 -.byte 0x1a, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x24, 0x18, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x10, 0x18, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1a, 0x18, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_8202434 -gUnknown_8202434: @ 8202434 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_82023FC -.4byte gUnknown_8202414 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8202448 -gUnknown_8202448: @ 8202448 -.byte 0xf6, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202698 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0x8c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202698 -gUnknown_8202698: @ 8202698 -.string "../data/ground/ground_data_h13p04_station.c\0" -.align 2, 0 - -.global gUnknown_82026C4 -gUnknown_82026C4: @ 82026C4 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202448 - -.global gUnknown_82026D0 -gUnknown_82026D0: @ 82026D0 -.byte 0xf6, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202698 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202710 -gUnknown_8202710: @ 8202710 -.byte 0xf6, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202698 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202750 -gUnknown_8202750: @ 8202750 -.byte 0xf6, 0x00, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202698 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202790 -gUnknown_8202790: @ 8202790 -.byte 0xf6, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202698 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82027D0 -gUnknown_82027D0: @ 82027D0 -.byte 0xf6, 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202698 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202800 -gUnknown_8202800: @ 8202800 -.byte 0xf6, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202698 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202830 -gUnknown_8202830: @ 8202830 -.byte 0xf6, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202698 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202860 -gUnknown_8202860: @ 8202860 -.byte 0xf6, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202698 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202880 -gUnknown_8202880: @ 8202880 -.byte 0xf6, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202698 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82028B0 -gUnknown_82028B0: @ 82028B0 -.byte 0xf6, 0x00, 0x71, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202698 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82028D0 -gUnknown_82028D0: @ 82028D0 -.byte 0xf6, 0x00, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202698 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202900 -gUnknown_8202900: @ 8202900 -.byte 0xf6, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202698 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202920 -gUnknown_8202920: @ 8202920 -.byte 0xf6, 0x00, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202698 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202950 -gUnknown_8202950: @ 8202950 -.byte 0xf6, 0x00, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202698 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202970 -gUnknown_8202970: @ 8202970 -.byte 0x00, 0x04, 0x00, 0x00, 0x1f, 0x26, 0x02, 0x02 -.4byte gUnknown_82026D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1f, 0x29, 0x02, 0x02 -.4byte gUnknown_8202710 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82029A0 -gUnknown_82029A0: @ 82029A0 -.byte 0x00, 0x04, 0x00, 0x00, 0x1f, 0x26, 0x02, 0x02 -.4byte gUnknown_8202750 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x1f, 0x29, 0x02, 0x02 -.4byte gUnknown_8202790 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82029D0 -gUnknown_82029D0: @ 82029D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x1f, 0x26, 0x02, 0x02 -.4byte gUnknown_82027D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1f, 0x29, 0x02, 0x02 -.4byte gUnknown_8202800 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202A00 -gUnknown_8202A00: @ 8202A00 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1b, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202830 -.4byte gUnknown_8202860 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x0a, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202880 -.4byte gUnknown_82028B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x35, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82028D0 -.4byte gUnknown_8202900 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x23, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202920 -.4byte gUnknown_8202950 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202A60 -gUnknown_8202A60: @ 8202A60 -.byte 0x3f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3f, 0x01, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_8202A78 -gUnknown_8202A78: @ 8202A78 -.4byte gUnknown_82026C4 - -.global gUnknown_8202A7C -gUnknown_8202A7C: @ 8202A7C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8202A60 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8202A78 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8202970 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82029A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82029D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202B44 -gUnknown_8202B44: @ 8202B44 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8202A00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202B6C -gUnknown_8202B6C: @ 8202B6C -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_8202A7C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8202B44 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202B84 -gUnknown_8202B84: @ 8202B84 -.byte 0x20, 0x08, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x32, 0x14, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x07, 0x14, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x19, 0x08, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_8202BA4 -gUnknown_8202BA4: @ 8202BA4 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8202B6C -.4byte gUnknown_8202B84 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8202BB8 -gUnknown_8202BB8: @ 8202BB8 -.byte 0xf6, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0x08, 0x00, 0x00, 0x00, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202E08 -gUnknown_8202E08: @ 8202E08 -.string "../data/ground/ground_data_h14p01_station.c\0" -.align 2, 0 - -.global gUnknown_8202E34 -gUnknown_8202E34: @ 8202E34 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202BB8 - -.global gUnknown_8202E40 -gUnknown_8202E40: @ 8202E40 -.byte 0xf6, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202E80 -gUnknown_8202E80: @ 8202E80 -.byte 0xf6, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202EC0 -gUnknown_8202EC0: @ 8202EC0 -.byte 0xf6, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202F00 -gUnknown_8202F00: @ 8202F00 -.byte 0xf6, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202F40 -gUnknown_8202F40: @ 8202F40 -.byte 0xf6, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202F70 -gUnknown_8202F70: @ 8202F70 -.byte 0xf6, 0x00, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202FA0 -gUnknown_8202FA0: @ 8202FA0 -.byte 0xf6, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0x51, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202FD0 -gUnknown_8202FD0: @ 8202FD0 -.byte 0xf6, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8202FF0 -gUnknown_8202FF0: @ 8202FF0 -.byte 0xf6, 0x00, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0x51, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203020 -gUnknown_8203020: @ 8203020 -.byte 0xf6, 0x00, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203040 -gUnknown_8203040: @ 8203040 -.byte 0xf6, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0x51, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203070 -gUnknown_8203070: @ 8203070 -.byte 0xf6, 0x00, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203090 -gUnknown_8203090: @ 8203090 -.byte 0xf6, 0x00, 0x8a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0x51, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82030C0 -gUnknown_82030C0: @ 82030C0 -.byte 0xf6, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82030E0 -gUnknown_82030E0: @ 82030E0 -.byte 0xf6, 0x00, 0x95, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0x51, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203110 -gUnknown_8203110: @ 8203110 -.byte 0xf6, 0x00, 0x9b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203130 -gUnknown_8203130: @ 8203130 -.byte 0xf6, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0x51, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203160 -gUnknown_8203160: @ 8203160 -.byte 0xf6, 0x00, 0xa6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203180 -gUnknown_8203180: @ 8203180 -.byte 0xf6, 0x00, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82031B0 -gUnknown_82031B0: @ 82031B0 -.byte 0xf6, 0x00, 0xb1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82031D0 -gUnknown_82031D0: @ 82031D0 -.byte 0xf6, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203200 -gUnknown_8203200: @ 8203200 -.byte 0xf6, 0x00, 0xbc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203220 -gUnknown_8203220: @ 8203220 -.byte 0xf6, 0x00, 0xc1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203250 -gUnknown_8203250: @ 8203250 -.byte 0xf6, 0x00, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203270 -gUnknown_8203270: @ 8203270 -.byte 0xf6, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82032A0 -gUnknown_82032A0: @ 82032A0 -.byte 0xf6, 0x00, 0xd2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82032C0 -gUnknown_82032C0: @ 82032C0 -.byte 0xf6, 0x00, 0xd7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82032F0 -gUnknown_82032F0: @ 82032F0 -.byte 0xf6, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203310 -gUnknown_8203310: @ 8203310 -.byte 0xf6, 0x00, 0xe2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203340 -gUnknown_8203340: @ 8203340 -.byte 0xf6, 0x00, 0xe8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203360 -gUnknown_8203360: @ 8203360 -.byte 0xf6, 0x00, 0xed, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203390 -gUnknown_8203390: @ 8203390 -.byte 0xf6, 0x00, 0xf3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202E08 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82033B0 -gUnknown_82033B0: @ 82033B0 -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_8202E40 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_8202E80 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82033E0 -gUnknown_82033E0: @ 82033E0 -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_8202EC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_8202F00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203410 -gUnknown_8203410: @ 8203410 -.byte 0x00, 0x00, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_8202F40 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_8202F70 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203440 -gUnknown_8203440: @ 8203440 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1d, 0x1c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202FA0 -.4byte gUnknown_8202FD0 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x17, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8202FF0 -.4byte gUnknown_8203020 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x23, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203040 -.4byte gUnknown_8203070 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x17, 0x19, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203090 -.4byte gUnknown_82030C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x23, 0x19, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82030E0 -.4byte gUnknown_8203110 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00 -.byte 0x1d, 0x15, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203130 -.4byte gUnknown_8203160 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x0d, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203180 -.4byte gUnknown_82031B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x2b, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82031D0 -.4byte gUnknown_8203200 -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x09, 0x17, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203220 -.4byte gUnknown_8203250 -.byte 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00 -.byte 0x2f, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203270 -.4byte gUnknown_82032A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x07, 0x11, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82032C0 -.4byte gUnknown_82032F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x33, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203310 -.4byte gUnknown_8203340 -.byte 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x09, 0x08, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203360 -.4byte gUnknown_8203390 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203578 -gUnknown_8203578: @ 8203578 -.byte 0x39, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x39, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_82035A8 -gUnknown_82035A8: @ 82035A8 -.4byte gUnknown_8202E34 - -.global gUnknown_82035AC -gUnknown_82035AC: @ 82035AC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8203578 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82035A8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82033B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82033E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8203410 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203674 -gUnknown_8203674: @ 8203674 -.byte 0x0d, 0x00, 0x00, 0x00 -.4byte gUnknown_8203440 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820369C -gUnknown_820369C: @ 820369C -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_82035AC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8203674 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82036B4 -gUnknown_82036B4: @ 82036B4 -.byte 0x06, 0x06, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x2f, 0x0f, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x04, 0x0f, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x2c, 0x15, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x06, 0x15, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x28, 0x1b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0a, 0x1b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1a, 0x13, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x20, 0x17, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x14, 0x17, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x20, 0x1d, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x14, 0x1d, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1a, 0x19, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_820371C -gUnknown_820371C: @ 820371C -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_820369C -.4byte gUnknown_82036B4 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8203730 -gUnknown_8203730: @ 8203730 -.byte 0xf6, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203980 -.byte 0x08, 0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203980 -gUnknown_8203980: @ 8203980 -.string "../data/ground/ground_data_h15p01_station.c\0" -.align 2, 0 - -.global gUnknown_82039AC -gUnknown_82039AC: @ 82039AC -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203730 - -.global gUnknown_82039B8 -gUnknown_82039B8: @ 82039B8 -.byte 0xf6, 0x00, 0x3b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203980 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82039F8 -gUnknown_82039F8: @ 82039F8 -.byte 0xf6, 0x00, 0x42, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203980 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203A38 -gUnknown_8203A38: @ 8203A38 -.byte 0xf6, 0x00, 0x49, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203980 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203A78 -gUnknown_8203A78: @ 8203A78 -.byte 0xf6, 0x00, 0x50, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203980 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203AB8 -gUnknown_8203AB8: @ 8203AB8 -.byte 0xf6, 0x00, 0x57, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203980 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203AE8 -gUnknown_8203AE8: @ 8203AE8 -.byte 0xf6, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203980 -.byte 0xe8, 0x00, 0x52, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203B18 -gUnknown_8203B18: @ 8203B18 -.byte 0xf6, 0x00, 0x63, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203980 -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203B48 -gUnknown_8203B48: @ 8203B48 -.byte 0xf6, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203980 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203B68 -gUnknown_8203B68: @ 8203B68 -.byte 0xf6, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203980 -.byte 0x51, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203B98 -gUnknown_8203B98: @ 8203B98 -.byte 0xf6, 0x00, 0x74, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203980 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203BB8 -gUnknown_8203BB8: @ 8203BB8 -.byte 0xf6, 0x00, 0x79, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203980 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203BE8 -gUnknown_8203BE8: @ 8203BE8 -.byte 0xf6, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203980 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203C08 -gUnknown_8203C08: @ 8203C08 -.byte 0xf6, 0x00, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203980 -.byte 0x51, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203C38 -gUnknown_8203C38: @ 8203C38 -.byte 0xf6, 0x00, 0x8a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203980 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203C58 -gUnknown_8203C58: @ 8203C58 -.byte 0xf6, 0x00, 0x8f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203980 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203C88 -gUnknown_8203C88: @ 8203C88 -.byte 0xf6, 0x00, 0x95, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203980 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203CA8 -gUnknown_8203CA8: @ 8203CA8 -.byte 0xf6, 0x00, 0x9a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203980 -.byte 0x51, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203CD8 -gUnknown_8203CD8: @ 8203CD8 -.byte 0xf6, 0x00, 0xa0, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203980 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203CF8 -gUnknown_8203CF8: @ 8203CF8 -.byte 0xf6, 0x00, 0xa5, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203980 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203D28 -gUnknown_8203D28: @ 8203D28 -.byte 0xf6, 0x00, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203980 -.byte 0xe9, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203D48 -gUnknown_8203D48: @ 8203D48 -.byte 0x00, 0x04, 0x00, 0x00, 0x1b, 0x23, 0x02, 0x02 -.4byte gUnknown_82039B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x22, 0x23, 0x02, 0x02 -.4byte gUnknown_82039F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203D78 -gUnknown_8203D78: @ 8203D78 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x1b, 0x23, 0x02, 0x02 -.4byte gUnknown_8203A38 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x22, 0x23, 0x02, 0x02 -.4byte gUnknown_8203A78 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203DA8 -gUnknown_8203DA8: @ 8203DA8 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x23, 0x02, 0x02 -.4byte gUnknown_8203AB8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x22, 0x23, 0x02, 0x02 -.4byte gUnknown_8203AE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203DD8 -gUnknown_8203DD8: @ 8203DD8 -.byte 0x0e, 0x00, 0x00, 0x00 -.byte 0x11, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203B18 -.4byte gUnknown_8203B48 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x2c, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203B68 -.4byte gUnknown_8203B98 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x0d, 0x17, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203BB8 -.4byte gUnknown_8203BE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x30, 0x17, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203C08 -.4byte gUnknown_8203C38 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00 -.byte 0x13, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203C58 -.4byte gUnknown_8203C88 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x2a, 0x11, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203CA8 -.4byte gUnknown_8203CD8 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1e, 0x0f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203CF8 -.4byte gUnknown_8203D28 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203E80 -gUnknown_8203E80: @ 8203E80 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_8203E8C -gUnknown_8203E8C: @ 8203E8C -.4byte gUnknown_82039AC - -.global gUnknown_8203E90 -gUnknown_8203E90: @ 8203E90 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8203E80 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8203E8C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8203D48 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8203D78 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8203DA8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203F58 -gUnknown_8203F58: @ 8203F58 -.byte 0x07, 0x00, 0x00, 0x00 -.4byte gUnknown_8203DD8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203F80 -gUnknown_8203F80: @ 8203F80 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_8203E90 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8203F58 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8203F98 -gUnknown_8203F98: @ 8203F98 -.byte 0x1b, 0x0d, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x27, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x10, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x2d, 0x15, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0a, 0x15, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x29, 0x1b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0e, 0x1b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_8203FD0 -gUnknown_8203FD0: @ 8203FD0 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8203F80 -.4byte gUnknown_8203F98 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8203FE4 -gUnknown_8203FE4: @ 8203FE4 -.byte 0xf6, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0x08, 0x00, 0x00, 0x00, 0x8f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8204234 -gUnknown_8204234: @ 8204234 -.string "../data/ground/ground_data_h16p01_station.c\0" -.align 2, 0 - -.global gUnknown_8204260 -gUnknown_8204260: @ 8204260 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8203FE4 - -.global gUnknown_820426C -gUnknown_820426C: @ 820426C -.byte 0xf6, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82042AC -gUnknown_82042AC: @ 82042AC -.byte 0xf6, 0x00, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82042EC -gUnknown_82042EC: @ 82042EC -.byte 0xf6, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820432C -gUnknown_820432C: @ 820432C -.byte 0xf6, 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820436C -gUnknown_820436C: @ 820436C -.byte 0xf6, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820439C -gUnknown_820439C: @ 820439C -.byte 0xf6, 0x00, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82043CC -gUnknown_82043CC: @ 82043CC -.byte 0xf6, 0x00, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0x51, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82043FC -gUnknown_82043FC: @ 82043FC -.byte 0xf6, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820441C -gUnknown_820441C: @ 820441C -.byte 0xf6, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0x51, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820444C -gUnknown_820444C: @ 820444C -.byte 0xf6, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820446C -gUnknown_820446C: @ 820446C -.byte 0xf6, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0x51, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820449C -gUnknown_820449C: @ 820449C -.byte 0xf6, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82044BC -gUnknown_82044BC: @ 82044BC -.byte 0xf6, 0x00, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0x51, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82044EC -gUnknown_82044EC: @ 82044EC -.byte 0xf6, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820450C -gUnknown_820450C: @ 820450C -.byte 0xf6, 0x00, 0x93, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820453C -gUnknown_820453C: @ 820453C -.byte 0xf6, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820455C -gUnknown_820455C: @ 820455C -.byte 0xf6, 0x00, 0x9e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820458C -gUnknown_820458C: @ 820458C -.byte 0xf6, 0x00, 0xa4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82045AC -gUnknown_82045AC: @ 82045AC -.byte 0xf6, 0x00, 0xa9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82045DC -gUnknown_82045DC: @ 82045DC -.byte 0xf6, 0x00, 0xaf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82045FC -gUnknown_82045FC: @ 82045FC -.byte 0xf6, 0x00, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820462C -gUnknown_820462C: @ 820462C -.byte 0xf6, 0x00, 0xba, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820464C -gUnknown_820464C: @ 820464C -.byte 0xf6, 0x00, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820467C -gUnknown_820467C: @ 820467C -.byte 0xf6, 0x00, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820469C -gUnknown_820469C: @ 820469C -.byte 0xf6, 0x00, 0xca, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82046CC -gUnknown_82046CC: @ 82046CC -.byte 0xf6, 0x00, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82046EC -gUnknown_82046EC: @ 82046EC -.byte 0xf6, 0x00, 0xd5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820471C -gUnknown_820471C: @ 820471C -.byte 0xf6, 0x00, 0xdb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204234 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820473C -gUnknown_820473C: @ 820473C -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_820426C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_82042AC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820476C -gUnknown_820476C: @ 820476C -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_82042EC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_820432C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820479C -gUnknown_820479C: @ 820479C -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_820436C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_820439C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82047CC -gUnknown_82047CC: @ 82047CC -.byte 0x0e, 0x00, 0x00, 0x00, 0x1e, 0x1a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82043CC -.4byte gUnknown_82043FC -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x18, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820441C -.4byte gUnknown_820444C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x24, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820446C -.4byte gUnknown_820449C -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x1a, 0x13, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82044BC -.4byte gUnknown_82044EC -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x21, 0x13, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820450C -.4byte gUnknown_820453C -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x14, 0x13, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820455C -.4byte gUnknown_820458C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x14, 0x00, 0x00, 0x00, 0x27, 0x13, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82045AC -.4byte gUnknown_82045DC -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x0d, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82045FC -.4byte gUnknown_820462C -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x20, 0x0d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820464C -.4byte gUnknown_820467C -.byte 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x14, 0x0d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820469C -.4byte gUnknown_82046CC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x18, 0x00, 0x00, 0x00, 0x26, 0x0d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82046EC -.4byte gUnknown_820471C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82048D4 -gUnknown_82048D4: @ 82048D4 -.byte 0x3c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x2a, 0x00, 0x00 -.byte 0x39, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_8204904 -gUnknown_8204904: @ 8204904 -.4byte gUnknown_8204260 - -.global gUnknown_8204908 -gUnknown_8204908: @ 8204908 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_82048D4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8204904 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820473C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820476C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820479C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82049D0 -gUnknown_82049D0: @ 82049D0 -.byte 0x0b, 0x00, 0x00, 0x00 -.4byte gUnknown_82047CC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82049F8 -gUnknown_82049F8: @ 82049F8 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_8204908 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82049D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8204A10 -gUnknown_8204A10: @ 8204A10 -.byte 0x24, 0x0b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x11, 0x0b, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x1e, 0x0b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x17, 0x0b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x24, 0x11, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x11, 0x11, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x1e, 0x11, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x17, 0x11, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x21, 0x17, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x15, 0x17, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x1b, 0x18, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_8204A68 -gUnknown_8204A68: @ 8204A68 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_82049F8 -.4byte gUnknown_8204A10 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8204A7C -gUnknown_8204A7C: @ 8204A7C -.byte 0xf6, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0x08, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8204CCC -gUnknown_8204CCC: @ 8204CCC -.string "../data/ground/ground_data_h17p01_station.c\0" -.align 2, 0 - -.global gUnknown_8204CF8 -gUnknown_8204CF8: @ 8204CF8 -.byte 0x94, 0x01, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204A7C - -.global gUnknown_8204D04 -gUnknown_8204D04: @ 8204D04 -.byte 0xf6, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8204D44 -gUnknown_8204D44: @ 8204D44 -.byte 0xf6, 0x00, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8204D84 -gUnknown_8204D84: @ 8204D84 -.byte 0xf6, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8204DC4 -gUnknown_8204DC4: @ 8204DC4 -.byte 0xf6, 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8204E04 -gUnknown_8204E04: @ 8204E04 -.byte 0xf6, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8204E34 -gUnknown_8204E34: @ 8204E34 -.byte 0xf6, 0x00, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8204E64 -gUnknown_8204E64: @ 8204E64 -.byte 0xf6, 0x00, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0x51, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8204E94 -gUnknown_8204E94: @ 8204E94 -.byte 0xf6, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8204EB4 -gUnknown_8204EB4: @ 8204EB4 -.byte 0xf6, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0x51, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8204EE4 -gUnknown_8204EE4: @ 8204EE4 -.byte 0xf6, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8204F04 -gUnknown_8204F04: @ 8204F04 -.byte 0xf6, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0x51, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8204F34 -gUnknown_8204F34: @ 8204F34 -.byte 0xf6, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8204F54 -gUnknown_8204F54: @ 8204F54 -.byte 0xf6, 0x00, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0x51, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8204F84 -gUnknown_8204F84: @ 8204F84 -.byte 0xf6, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8204FA4 -gUnknown_8204FA4: @ 8204FA4 -.byte 0xf6, 0x00, 0x93, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8204FD4 -gUnknown_8204FD4: @ 8204FD4 -.byte 0xf6, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8204FF4 -gUnknown_8204FF4: @ 8204FF4 -.byte 0xf6, 0x00, 0x9e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205024 -gUnknown_8205024: @ 8205024 -.byte 0xf6, 0x00, 0xa4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205044 -gUnknown_8205044: @ 8205044 -.byte 0xf6, 0x00, 0xa9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205074 -gUnknown_8205074: @ 8205074 -.byte 0xf6, 0x00, 0xaf, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205094 -gUnknown_8205094: @ 8205094 -.byte 0xf6, 0x00, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82050C4 -gUnknown_82050C4: @ 82050C4 -.byte 0xf6, 0x00, 0xba, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82050E4 -gUnknown_82050E4: @ 82050E4 -.byte 0xf6, 0x00, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205114 -gUnknown_8205114: @ 8205114 -.byte 0xf6, 0x00, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205134 -gUnknown_8205134: @ 8205134 -.byte 0xf6, 0x00, 0xca, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205164 -gUnknown_8205164: @ 8205164 -.byte 0xf6, 0x00, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205184 -gUnknown_8205184: @ 8205184 -.byte 0xf6, 0x00, 0xd5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82051B4 -gUnknown_82051B4: @ 82051B4 -.byte 0xf6, 0x00, 0xdb, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204CCC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82051D4 -gUnknown_82051D4: @ 82051D4 -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_8204D04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_8204D44 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205204 -gUnknown_8205204: @ 8205204 -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_8204D84 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x04, 0x00, 0x00, 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_8204DC4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205234 -gUnknown_8205234: @ 8205234 -.byte 0x00, 0x00, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_8204E04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_8204E34 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205264 -gUnknown_8205264: @ 8205264 -.byte 0x0e, 0x00, 0x00, 0x00, 0x16, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204E64 -.4byte gUnknown_8204E94 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x0f, 0x00, 0x00, 0x00, 0x23, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204EB4 -.4byte gUnknown_8204EE4 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10, 0x1c, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204F04 -.4byte gUnknown_8204F34 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x29, 0x1c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204F54 -.4byte gUnknown_8204F84 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x0e, 0x17, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204FA4 -.4byte gUnknown_8204FD4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x13, 0x00, 0x00, 0x00, 0x2b, 0x17, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8204FF4 -.4byte gUnknown_8205024 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x08, 0x1c, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205044 -.4byte gUnknown_8205074 -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x31, 0x1c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205094 -.4byte gUnknown_82050C4 -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x1d, 0x15, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82050E4 -.4byte gUnknown_8205114 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x17, 0x00, 0x00, 0x00, 0x16, 0x13, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205134 -.4byte gUnknown_8205164 -.byte 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x23, 0x13, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205184 -.4byte gUnknown_82051B4 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820536C -gUnknown_820536C: @ 820536C -.byte 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x39, 0x01, 0x00, 0x00 -.byte 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_820539C -gUnknown_820539C: @ 820539C -.4byte gUnknown_8204CF8 - -.global gUnknown_82053A0 -gUnknown_82053A0: @ 82053A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_820536C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820539C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82051D4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8205204 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8205234 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205468 -gUnknown_8205468: @ 8205468 -.byte 0x0b, 0x00, 0x00, 0x00 -.4byte gUnknown_8205264 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205490 -gUnknown_8205490: @ 8205490 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_82053A0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8205468 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82054A8 -gUnknown_82054A8: @ 82054A8 -.byte 0x20, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x14, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1a, 0x13, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x2e, 0x1a, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x05, 0x1a, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x28, 0x14, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0b, 0x14, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x26, 0x1a, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0d, 0x1a, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x20, 0x1d, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x13, 0x1d, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_8205500 -gUnknown_8205500: @ 8205500 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8205490 -.4byte gUnknown_82054A8 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8205514 -gUnknown_8205514: @ 8205514 -.byte 0xf6, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205764 -.byte 0x08, 0x00, 0x00, 0x00, 0x91, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205764 -gUnknown_8205764: @ 8205764 -.string "../data/ground/ground_data_h18p01_station.c\0" -.align 2, 0 - -.global gUnknown_8205790 -gUnknown_8205790: @ 8205790 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205514 - -.global gUnknown_820579C -gUnknown_820579C: @ 820579C -.byte 0xf6, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205764 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82057DC -gUnknown_82057DC: @ 82057DC -.byte 0xf6, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205764 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820581C -gUnknown_820581C: @ 820581C -.byte 0xf6, 0x00, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205764 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820585C -gUnknown_820585C: @ 820585C -.byte 0xf6, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205764 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820589C -gUnknown_820589C: @ 820589C -.byte 0xf6, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205764 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82058CC -gUnknown_82058CC: @ 82058CC -.byte 0xf6, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205764 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82058FC -gUnknown_82058FC: @ 82058FC -.byte 0xf6, 0x00, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205764 -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820592C -gUnknown_820592C: @ 820592C -.byte 0xf6, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205764 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820594C -gUnknown_820594C: @ 820594C -.byte 0xf6, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205764 -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820597C -gUnknown_820597C: @ 820597C -.byte 0xf6, 0x00, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205764 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820599C -gUnknown_820599C: @ 820599C -.byte 0xf6, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205764 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82059CC -gUnknown_82059CC: @ 82059CC -.byte 0xf6, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205764 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82059EC -gUnknown_82059EC: @ 82059EC -.byte 0xf6, 0x00, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205764 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205A1C -gUnknown_8205A1C: @ 8205A1C -.byte 0xf6, 0x00, 0x8a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205764 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205A3C -gUnknown_8205A3C: @ 8205A3C -.byte 0xf6, 0x00, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205764 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205A6C -gUnknown_8205A6C: @ 8205A6C -.byte 0xf6, 0x00, 0x95, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205764 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205A8C -gUnknown_8205A8C: @ 8205A8C -.byte 0xf6, 0x00, 0x9a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205764 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205ABC -gUnknown_8205ABC: @ 8205ABC -.byte 0xf6, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205764 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205ADC -gUnknown_8205ADC: @ 8205ADC -.byte 0xf6, 0x00, 0xa5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205764 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205B0C -gUnknown_8205B0C: @ 8205B0C -.byte 0xf6, 0x00, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205764 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205B2C -gUnknown_8205B2C: @ 8205B2C -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_820579C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_82057DC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205B5C -gUnknown_8205B5C: @ 8205B5C -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_820581C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_820585C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205B8C -gUnknown_8205B8C: @ 8205B8C -.byte 0x00, 0x00, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_820589C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_82058CC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205BBC -gUnknown_8205BBC: @ 8205BBC -.byte 0x0e, 0x00, 0x00, 0x00, 0x1d, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82058FC -.4byte gUnknown_820592C -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x17, 0x1b, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820594C -.4byte gUnknown_820597C -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x22, 0x1b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820599C -.4byte gUnknown_82059CC -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x1d, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82059EC -.4byte gUnknown_8205A1C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x12, 0x00, 0x00, 0x00, 0x13, 0x13, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205A3C -.4byte gUnknown_8205A6C -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x14, 0x22, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205A8C -.4byte gUnknown_8205ABC -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x27, 0x22, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205ADC -.4byte gUnknown_8205B0C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205C64 -gUnknown_8205C64: @ 8205C64 -.byte 0x3c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x2a, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_8205C94 -gUnknown_8205C94: @ 8205C94 -.4byte gUnknown_8205790 - -.global gUnknown_8205C98 -gUnknown_8205C98: @ 8205C98 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8205C64 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8205C94 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8205B2C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8205B5C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8205B8C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205D60 -gUnknown_8205D60: @ 8205D60 -.byte 0x07, 0x00, 0x00, 0x00 -.4byte gUnknown_8205BBC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205D88 -gUnknown_8205D88: @ 8205D88 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_8205C98 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8205D60 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8205DA0 -gUnknown_8205DA0: @ 8205DA0 -.byte 0x10, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1a, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x23, 0x1f, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x11, 0x1f, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x14, 0x18, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x20, 0x18, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1a, 0x1c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_8205DD8 -gUnknown_8205DD8: @ 8205DD8 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8205D88 -.4byte gUnknown_8205DA0 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8205DEC -gUnknown_8205DEC: @ 8205DEC -.byte 0xf6, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820603C -.byte 0x08, 0x00, 0x00, 0x00, 0x92, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820603C -gUnknown_820603C: @ 820603C -.string "../data/ground/ground_data_h19p01_station.c\0" -.align 2, 0 - -.global gUnknown_8206068 -gUnknown_8206068: @ 8206068 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8205DEC - -.global gUnknown_8206074 -gUnknown_8206074: @ 8206074 -.byte 0xf6, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820603C -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82060B4 -gUnknown_82060B4: @ 82060B4 -.byte 0xf6, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820603C -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82060F4 -gUnknown_82060F4: @ 82060F4 -.byte 0xf6, 0x00, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820603C -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206134 -gUnknown_8206134: @ 8206134 -.byte 0xf6, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820603C -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206174 -gUnknown_8206174: @ 8206174 -.byte 0xf6, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820603C -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82061A4 -gUnknown_82061A4: @ 82061A4 -.byte 0xf6, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820603C -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82061D4 -gUnknown_82061D4: @ 82061D4 -.byte 0xf6, 0x00, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820603C -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206204 -gUnknown_8206204: @ 8206204 -.byte 0xf6, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820603C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206224 -gUnknown_8206224: @ 8206224 -.byte 0xf6, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820603C -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206254 -gUnknown_8206254: @ 8206254 -.byte 0xf6, 0x00, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820603C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206274 -gUnknown_8206274: @ 8206274 -.byte 0xf6, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820603C -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82062A4 -gUnknown_82062A4: @ 82062A4 -.byte 0xf6, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820603C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82062C4 -gUnknown_82062C4: @ 82062C4 -.byte 0xf6, 0x00, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820603C -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82062F4 -gUnknown_82062F4: @ 82062F4 -.byte 0xf6, 0x00, 0x8a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820603C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206314 -gUnknown_8206314: @ 8206314 -.byte 0xf6, 0x00, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820603C -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206344 -gUnknown_8206344: @ 8206344 -.byte 0xf6, 0x00, 0x95, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820603C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206364 -gUnknown_8206364: @ 8206364 -.byte 0xf6, 0x00, 0x9a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820603C -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206394 -gUnknown_8206394: @ 8206394 -.byte 0xf6, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820603C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82063B4 -gUnknown_82063B4: @ 82063B4 -.byte 0xf6, 0x00, 0xa5, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820603C -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82063E4 -gUnknown_82063E4: @ 82063E4 -.byte 0xf6, 0x00, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820603C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206404 -gUnknown_8206404: @ 8206404 -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x20, 0x02, 0x02 -.4byte gUnknown_8206074 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x04, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_82060B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206434 -gUnknown_8206434: @ 8206434 -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x20, 0x02, 0x02 -.4byte gUnknown_82060F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_8206134 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206464 -gUnknown_8206464: @ 8206464 -.byte 0x00, 0x00, 0x00, 0x00, 0x1d, 0x20, 0x02, 0x02 -.4byte gUnknown_8206174 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_82061A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206494 -gUnknown_8206494: @ 8206494 -.byte 0x0e, 0x00, 0x00, 0x00, 0x13, 0x11, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82061D4 -.4byte gUnknown_8206204 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x15, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206224 -.4byte gUnknown_8206254 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x24, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206274 -.4byte gUnknown_82062A4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x11, 0x00, 0x00, 0x00, 0x1d, 0x1a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82062C4 -.4byte gUnknown_82062F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x26, 0x12, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206314 -.4byte gUnknown_8206344 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x18, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206364 -.4byte gUnknown_8206394 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x20, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82063B4 -.4byte gUnknown_82063E4 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820653C -gUnknown_820653C: @ 820653C -.byte 0x39, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x39, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x27, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_820656C -gUnknown_820656C: @ 820656C -.4byte gUnknown_8206068 - -.global gUnknown_8206570 -gUnknown_8206570: @ 8206570 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_820653C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820656C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8206404 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8206434 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8206464 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206638 -gUnknown_8206638: @ 8206638 -.byte 0x07, 0x00, 0x00, 0x00 -.4byte gUnknown_8206494 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206660 -gUnknown_8206660: @ 8206660 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_8206570 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8206638 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206678 -gUnknown_8206678: @ 8206678 -.byte 0x1d, 0x09, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x16, 0x09, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x23, 0x0f, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x10, 0x0f, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x22, 0x16, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x12, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1a, 0x17, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_82066B0 -gUnknown_82066B0: @ 82066B0 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8206660 -.4byte gUnknown_8206678 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_82066C4 -gUnknown_82066C4: @ 82066C4 -.byte 0xf6, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206914 -.byte 0x08, 0x00, 0x00, 0x00, 0x93, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206914 -gUnknown_8206914: @ 8206914 -.string "../data/ground/ground_data_h20p01_station.c\0" -.align 2, 0 - -.global gUnknown_8206940 -gUnknown_8206940: @ 8206940 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82066C4 - -.global gUnknown_820694C -gUnknown_820694C: @ 820694C -.byte 0xf6, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206914 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820698C -gUnknown_820698C: @ 820698C -.byte 0xf6, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206914 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82069CC -gUnknown_82069CC: @ 82069CC -.byte 0xf6, 0x00, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206914 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206A0C -gUnknown_8206A0C: @ 8206A0C -.byte 0xf6, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206914 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206A4C -gUnknown_8206A4C: @ 8206A4C -.byte 0xf6, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206914 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206A7C -gUnknown_8206A7C: @ 8206A7C -.byte 0xf6, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206914 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206AAC -gUnknown_8206AAC: @ 8206AAC -.byte 0xf6, 0x00, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206914 -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206ADC -gUnknown_8206ADC: @ 8206ADC -.byte 0xf6, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206914 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206AFC -gUnknown_8206AFC: @ 8206AFC -.byte 0xf6, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206914 -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206B2C -gUnknown_8206B2C: @ 8206B2C -.byte 0xf6, 0x00, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206914 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206B4C -gUnknown_8206B4C: @ 8206B4C -.byte 0xf6, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206914 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206B7C -gUnknown_8206B7C: @ 8206B7C -.byte 0xf6, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206914 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206B9C -gUnknown_8206B9C: @ 8206B9C -.byte 0xf6, 0x00, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206914 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206BCC -gUnknown_8206BCC: @ 8206BCC -.byte 0xf6, 0x00, 0x8a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206914 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206BEC -gUnknown_8206BEC: @ 8206BEC -.byte 0xf6, 0x00, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206914 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206C1C -gUnknown_8206C1C: @ 8206C1C -.byte 0xf6, 0x00, 0x95, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206914 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206C3C -gUnknown_8206C3C: @ 8206C3C -.byte 0xf6, 0x00, 0x9a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206914 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206C6C -gUnknown_8206C6C: @ 8206C6C -.byte 0xf6, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206914 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206C8C -gUnknown_8206C8C: @ 8206C8C -.byte 0xf6, 0x00, 0xa5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206914 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206CBC -gUnknown_8206CBC: @ 8206CBC -.byte 0xf6, 0x00, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206914 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206CDC -gUnknown_8206CDC: @ 8206CDC -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_820694C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_820698C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206D0C -gUnknown_8206D0C: @ 8206D0C -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_82069CC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_8206A0C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206D3C -gUnknown_8206D3C: @ 8206D3C -.byte 0x00, 0x00, 0x00, 0x00, 0x1d, 0x23, 0x02, 0x02 -.4byte gUnknown_8206A4C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_8206A7C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206D6C -gUnknown_8206D6C: @ 8206D6C -.byte 0x0e, 0x00, 0x00, 0x00, 0x17, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206AAC -.4byte gUnknown_8206ADC -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x23, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206AFC -.4byte gUnknown_8206B2C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x13, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206B4C -.4byte gUnknown_8206B7C -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x27, 0x16, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206B9C -.4byte gUnknown_8206BCC -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x09, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206BEC -.4byte gUnknown_8206C1C -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x31, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206C3C -.4byte gUnknown_8206C6C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x14, 0x00, 0x00, 0x00, 0x19, 0x0f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206C8C -.4byte gUnknown_8206CBC -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206E14 -gUnknown_8206E14: @ 8206E14 -.byte 0x39, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x39, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2a, 0x00, 0x00 -.byte 0x38, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_8206E44 -gUnknown_8206E44: @ 8206E44 -.4byte gUnknown_8206940 - -.global gUnknown_8206E48 -gUnknown_8206E48: @ 8206E48 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8206E14 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8206E44 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8206CDC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8206D0C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8206D3C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206F10 -gUnknown_8206F10: @ 8206F10 -.byte 0x07, 0x00, 0x00, 0x00 -.4byte gUnknown_8206D6C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206F38 -gUnknown_8206F38: @ 8206F38 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_8206E48 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8206F10 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8206F50 -gUnknown_8206F50: @ 8206F50 -.byte 0x16, 0x0d, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x2e, 0x1b, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x06, 0x1b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x24, 0x14, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x10, 0x14, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x20, 0x1c, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x14, 0x1c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_8206F88 -gUnknown_8206F88: @ 8206F88 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8206F38 -.4byte gUnknown_8206F50 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8206F9C -gUnknown_8206F9C: @ 8206F9C -.byte 0xf6, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0x08, 0x00, 0x00, 0x00, 0x94, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82071EC -gUnknown_82071EC: @ 82071EC -.string "../data/ground/ground_data_h21p01_station.c\0" -.align 2, 0 - -.global gUnknown_8207218 -gUnknown_8207218: @ 8207218 -.byte 0x94, 0x01, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8206F9C - -.global gUnknown_8207224 -gUnknown_8207224: @ 8207224 -.byte 0xf6, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207264 -gUnknown_8207264: @ 8207264 -.byte 0xf6, 0x00, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82072A4 -gUnknown_82072A4: @ 82072A4 -.byte 0xf6, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82072E4 -gUnknown_82072E4: @ 82072E4 -.byte 0xf6, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207324 -gUnknown_8207324: @ 8207324 -.byte 0xf6, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207354 -gUnknown_8207354: @ 8207354 -.byte 0xf6, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207384 -gUnknown_8207384: @ 8207384 -.byte 0xf6, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82073B4 -gUnknown_82073B4: @ 82073B4 -.byte 0xf6, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82073D4 -gUnknown_82073D4: @ 82073D4 -.byte 0xf6, 0x00, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207404 -gUnknown_8207404: @ 8207404 -.byte 0xf6, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207424 -gUnknown_8207424: @ 8207424 -.byte 0xf6, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207454 -gUnknown_8207454: @ 8207454 -.byte 0xf6, 0x00, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207474 -gUnknown_8207474: @ 8207474 -.byte 0xf6, 0x00, 0x8b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82074A4 -gUnknown_82074A4: @ 82074A4 -.byte 0xf6, 0x00, 0x91, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82074C4 -gUnknown_82074C4: @ 82074C4 -.byte 0xf6, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82074F4 -gUnknown_82074F4: @ 82074F4 -.byte 0xf6, 0x00, 0x9c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207514 -gUnknown_8207514: @ 8207514 -.byte 0xf6, 0x00, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207544 -gUnknown_8207544: @ 8207544 -.byte 0xf6, 0x00, 0xa7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207564 -gUnknown_8207564: @ 8207564 -.byte 0xf6, 0x00, 0xac, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207594 -gUnknown_8207594: @ 8207594 -.byte 0xf6, 0x00, 0xb2, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82075B4 -gUnknown_82075B4: @ 82075B4 -.byte 0xf6, 0x00, 0xb7, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0x51, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82075E4 -gUnknown_82075E4: @ 82075E4 -.byte 0xf6, 0x00, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207604 -gUnknown_8207604: @ 8207604 -.byte 0xf6, 0x00, 0xc2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0x51, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207634 -gUnknown_8207634: @ 8207634 -.byte 0xf6, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207654 -gUnknown_8207654: @ 8207654 -.byte 0xf6, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0x51, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207684 -gUnknown_8207684: @ 8207684 -.byte 0xf6, 0x00, 0xd3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82076A4 -gUnknown_82076A4: @ 82076A4 -.byte 0xf6, 0x00, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0x51, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82076D4 -gUnknown_82076D4: @ 82076D4 -.byte 0xf6, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82076F4 -gUnknown_82076F4: @ 82076F4 -.byte 0xf6, 0x00, 0xe3, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0x51, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207724 -gUnknown_8207724: @ 8207724 -.byte 0xf6, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207744 -gUnknown_8207744: @ 8207744 -.byte 0xf6, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0x51, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207774 -gUnknown_8207774: @ 8207774 -.byte 0xf6, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207794 -gUnknown_8207794: @ 8207794 -.byte 0xf6, 0x00, 0xf9, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0x51, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82077C4 -gUnknown_82077C4: @ 82077C4 -.byte 0xf6, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82071EC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82077E4 -gUnknown_82077E4: @ 82077E4 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x20, 0x02, 0x02 -.4byte gUnknown_8207224 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_8207264 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207814 -gUnknown_8207814: @ 8207814 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x20, 0x02, 0x02 -.4byte gUnknown_82072A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_82072E4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207844 -gUnknown_8207844: @ 8207844 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x20, 0x02, 0x02 -.4byte gUnknown_8207324 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_8207354 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207874 -gUnknown_8207874: @ 8207874 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1e, 0x16, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207384 -.4byte gUnknown_82073B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x18, 0x13, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82073D4 -.4byte gUnknown_8207404 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x24, 0x13, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207424 -.4byte gUnknown_8207454 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x11, 0x00, 0x00, 0x00, 0x13, 0x10, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207474 -.4byte gUnknown_82074A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x29, 0x10, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82074C4 -.4byte gUnknown_82074F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x1e, 0x0f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207514 -.4byte gUnknown_8207544 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x13, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207564 -.4byte gUnknown_8207594 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x15, 0x00, 0x00, 0x00, 0x29, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82075B4 -.4byte gUnknown_82075E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x15, 0x1f, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207604 -.4byte gUnknown_8207634 -.byte 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x26, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207654 -.4byte gUnknown_8207684 -.byte 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x0d, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82076A4 -.4byte gUnknown_82076D4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x19, 0x00, 0x00, 0x00, 0x2f, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82076F4 -.4byte gUnknown_8207724 -.byte 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x07, 0x18, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207744 -.4byte gUnknown_8207774 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x34, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207794 -.4byte gUnknown_82077C4 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82079C4 -gUnknown_82079C4: @ 82079C4 -.byte 0x3c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_82079DC -gUnknown_82079DC: @ 82079DC -.4byte gUnknown_8207218 - -.global gUnknown_82079E0 -gUnknown_82079E0: @ 82079E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82079C4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82079DC -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82077E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8207814 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8207844 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207AA8 -gUnknown_8207AA8: @ 8207AA8 -.byte 0x0e, 0x00, 0x00, 0x00 -.4byte gUnknown_8207874 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207AD0 -gUnknown_8207AD0: @ 8207AD0 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_82079E0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8207AA8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207AE8 -gUnknown_8207AE8: @ 8207AE8 -.byte 0x1b, 0x13, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x15, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x21, 0x10, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x0f, 0x0e, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x27, 0x0e, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1b, 0x0d, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x11, 0x08, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x25, 0x08, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x12, 0x1e, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x23, 0x1e, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0a, 0x1c, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x2c, 0x1c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x04, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x32, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_8207B58 -gUnknown_8207B58: @ 8207B58 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8207AD0 -.4byte gUnknown_8207AE8 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8207B6C -gUnknown_8207B6C: @ 8207B6C -.byte 0xf6, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0x08, 0x00, 0x00, 0x00, 0x95, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207DBC -gUnknown_8207DBC: @ 8207DBC -.string "../data/ground/ground_data_h21p02_station.c\0" -.align 2, 0 - -.global gUnknown_8207DE8 -gUnknown_8207DE8: @ 8207DE8 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207B6C - -.global gUnknown_8207DF4 -gUnknown_8207DF4: @ 8207DF4 -.byte 0xf6, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207E34 -gUnknown_8207E34: @ 8207E34 -.byte 0xf6, 0x00, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207E74 -gUnknown_8207E74: @ 8207E74 -.byte 0xf6, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207EB4 -gUnknown_8207EB4: @ 8207EB4 -.byte 0xf6, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207EF4 -gUnknown_8207EF4: @ 8207EF4 -.byte 0xf6, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207F24 -gUnknown_8207F24: @ 8207F24 -.byte 0xf6, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207F54 -gUnknown_8207F54: @ 8207F54 -.byte 0xf6, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0x51, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207F84 -gUnknown_8207F84: @ 8207F84 -.byte 0xf6, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207FA4 -gUnknown_8207FA4: @ 8207FA4 -.byte 0xf6, 0x00, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0x51, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207FD4 -gUnknown_8207FD4: @ 8207FD4 -.byte 0xf6, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8207FF4 -gUnknown_8207FF4: @ 8207FF4 -.byte 0xf6, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0x51, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208024 -gUnknown_8208024: @ 8208024 -.byte 0xf6, 0x00, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208044 -gUnknown_8208044: @ 8208044 -.byte 0xf6, 0x00, 0x8b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0x51, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208074 -gUnknown_8208074: @ 8208074 -.byte 0xf6, 0x00, 0x91, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208094 -gUnknown_8208094: @ 8208094 -.byte 0xf6, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0x51, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82080C4 -gUnknown_82080C4: @ 82080C4 -.byte 0xf6, 0x00, 0x9c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82080E4 -gUnknown_82080E4: @ 82080E4 -.byte 0xf6, 0x00, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0x51, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208114 -gUnknown_8208114: @ 8208114 -.byte 0xf6, 0x00, 0xa7, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208134 -gUnknown_8208134: @ 8208134 -.byte 0xf6, 0x00, 0xac, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0x51, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208164 -gUnknown_8208164: @ 8208164 -.byte 0xf6, 0x00, 0xb2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208184 -gUnknown_8208184: @ 8208184 -.byte 0xf6, 0x00, 0xb7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82081B4 -gUnknown_82081B4: @ 82081B4 -.byte 0xf6, 0x00, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82081D4 -gUnknown_82081D4: @ 82081D4 -.byte 0xf6, 0x00, 0xc2, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208204 -gUnknown_8208204: @ 8208204 -.byte 0xf6, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208224 -gUnknown_8208224: @ 8208224 -.byte 0xf6, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208254 -gUnknown_8208254: @ 8208254 -.byte 0xf6, 0x00, 0xd3, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208274 -gUnknown_8208274: @ 8208274 -.byte 0xf6, 0x00, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82082A4 -gUnknown_82082A4: @ 82082A4 -.byte 0xf6, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82082C4 -gUnknown_82082C4: @ 82082C4 -.byte 0xf6, 0x00, 0xe3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82082F4 -gUnknown_82082F4: @ 82082F4 -.byte 0xf6, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208314 -gUnknown_8208314: @ 8208314 -.byte 0xf6, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208344 -gUnknown_8208344: @ 8208344 -.byte 0xf6, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208364 -gUnknown_8208364: @ 8208364 -.byte 0xf6, 0x00, 0xf9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208394 -gUnknown_8208394: @ 8208394 -.byte 0xf6, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207DBC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82083B4 -gUnknown_82083B4: @ 82083B4 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x20, 0x02, 0x02 -.4byte gUnknown_8207DF4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_8207E34 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82083E4 -gUnknown_82083E4: @ 82083E4 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x20, 0x02, 0x02 -.4byte gUnknown_8207E74 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_8207EB4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208414 -gUnknown_8208414: @ 8208414 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x20, 0x02, 0x02 -.4byte gUnknown_8207EF4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_8207F24 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208444 -gUnknown_8208444: @ 8208444 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1e, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207F54 -.4byte gUnknown_8207F84 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x0f, 0x00, 0x00, 0x00, 0x18, 0x13, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207FA4 -.4byte gUnknown_8207FD4 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x24, 0x13, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8207FF4 -.4byte gUnknown_8208024 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x13, 0x10, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8208044 -.4byte gUnknown_8208074 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x29, 0x10, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8208094 -.4byte gUnknown_82080C4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x13, 0x00, 0x00, 0x00, 0x1e, 0x0f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82080E4 -.4byte gUnknown_8208114 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x13, 0x0b, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8208134 -.4byte gUnknown_8208164 -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x29, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8208184 -.4byte gUnknown_82081B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x15, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82081D4 -.4byte gUnknown_8208204 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x17, 0x00, 0x00, 0x00, 0x26, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8208224 -.4byte gUnknown_8208254 -.byte 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x0d, 0x1f, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8208274 -.4byte gUnknown_82082A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x2f, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82082C4 -.4byte gUnknown_82082F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x07, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8208314 -.4byte gUnknown_8208344 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x1b, 0x00, 0x00, 0x00, 0x34, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8208364 -.4byte gUnknown_8208394 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208594 -gUnknown_8208594: @ 8208594 -.byte 0x3c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_82085AC -gUnknown_82085AC: @ 82085AC -.4byte gUnknown_8207DE8 - -.global gUnknown_82085B0 -gUnknown_82085B0: @ 82085B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8208594 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82085AC -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82083B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82083E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8208414 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208678 -gUnknown_8208678: @ 8208678 -.byte 0x0e, 0x00, 0x00, 0x00 -.4byte gUnknown_8208444 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82086A0 -gUnknown_82086A0: @ 82086A0 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_82085B0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8208678 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82086B8 -gUnknown_82086B8: @ 82086B8 -.byte 0x32, 0x16, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x04, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x2c, 0x1c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0a, 0x1c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x23, 0x1e, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x12, 0x1e, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x25, 0x08, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x11, 0x08, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1b, 0x0d, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x27, 0x0e, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0f, 0x0e, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x21, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x15, 0x10, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x1b, 0x13, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_8208728 -gUnknown_8208728: @ 8208728 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_82086A0 -.4byte gUnknown_82086B8 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_820873C -gUnknown_820873C: @ 820873C -.byte 0xf6, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820898C -.byte 0x08, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820898C -gUnknown_820898C: @ 820898C -.string "../data/ground/ground_data_h22p01_station.c\0" -.align 2, 0 - -.global gUnknown_82089B8 -gUnknown_82089B8: @ 82089B8 -.byte 0x94, 0x01, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820873C - -.global gUnknown_82089C4 -gUnknown_82089C4: @ 82089C4 -.byte 0xf6, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820898C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208A04 -gUnknown_8208A04: @ 8208A04 -.byte 0xf6, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820898C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208A44 -gUnknown_8208A44: @ 8208A44 -.byte 0xf6, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820898C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208A84 -gUnknown_8208A84: @ 8208A84 -.byte 0xf6, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820898C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208AC4 -gUnknown_8208AC4: @ 8208AC4 -.byte 0xf6, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820898C -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208AF4 -gUnknown_8208AF4: @ 8208AF4 -.byte 0xf6, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820898C -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208B24 -gUnknown_8208B24: @ 8208B24 -.byte 0xf6, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820898C -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208B54 -gUnknown_8208B54: @ 8208B54 -.byte 0xf6, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820898C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208B74 -gUnknown_8208B74: @ 8208B74 -.byte 0xf6, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820898C -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208BA4 -gUnknown_8208BA4: @ 8208BA4 -.byte 0xf6, 0x00, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820898C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208BC4 -gUnknown_8208BC4: @ 8208BC4 -.byte 0xf6, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820898C -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208BF4 -gUnknown_8208BF4: @ 8208BF4 -.byte 0xf6, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820898C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208C14 -gUnknown_8208C14: @ 8208C14 -.byte 0xf6, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820898C -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208C44 -gUnknown_8208C44: @ 8208C44 -.byte 0xf6, 0x00, 0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820898C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208C64 -gUnknown_8208C64: @ 8208C64 -.byte 0xf6, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820898C -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208C94 -gUnknown_8208C94: @ 8208C94 -.byte 0xf6, 0x00, 0x94, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820898C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208CB4 -gUnknown_8208CB4: @ 8208CB4 -.byte 0xf6, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820898C -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208CE4 -gUnknown_8208CE4: @ 8208CE4 -.byte 0xf6, 0x00, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820898C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208D04 -gUnknown_8208D04: @ 8208D04 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x20, 0x02, 0x02 -.4byte gUnknown_82089C4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_8208A04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208D34 -gUnknown_8208D34: @ 8208D34 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x20, 0x02, 0x02 -.4byte gUnknown_8208A44 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_8208A84 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208D64 -gUnknown_8208D64: @ 8208D64 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x20, 0x02, 0x02 -.4byte gUnknown_8208AC4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_8208AF4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208D94 -gUnknown_8208D94: @ 8208D94 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1e, 0x1a, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8208B24 -.4byte gUnknown_8208B54 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x09, 0x0c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8208B74 -.4byte gUnknown_8208BA4 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x31, 0x0c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8208BC4 -.4byte gUnknown_8208BF4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x11, 0x00, 0x00, 0x00, 0x09, 0x17, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8208C14 -.4byte gUnknown_8208C44 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x33, 0x17, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8208C64 -.4byte gUnknown_8208C94 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x1e, 0x0d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8208CB4 -.4byte gUnknown_8208CE4 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208E24 -gUnknown_8208E24: @ 8208E24 -.byte 0x3c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x27, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_8208E54 -gUnknown_8208E54: @ 8208E54 -.4byte gUnknown_82089B8 - -.global gUnknown_8208E58 -gUnknown_8208E58: @ 8208E58 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8208E24 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8208E54 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8208D04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8208D34 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8208D64 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208F20 -gUnknown_8208F20: @ 8208F20 -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_8208D94 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208F48 -gUnknown_8208F48: @ 8208F48 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_8208E58 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8208F20 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8208F60 -gUnknown_8208F60: @ 8208F60 -.byte 0x1b, 0x0b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x30, 0x15, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x06, 0x15, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x2f, 0x09, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x07, 0x09, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1b, 0x18, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_8208F90 -gUnknown_8208F90: @ 8208F90 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8208F48 -.4byte gUnknown_8208F60 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8208FA4 -gUnknown_8208FA4: @ 8208FA4 -.byte 0xf6, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0x08, 0x00, 0x00, 0x00, 0x97, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82091F4 -gUnknown_82091F4: @ 82091F4 -.string "../data/ground/ground_data_h23p01_station.c\0" -.align 2, 0 - -.global gUnknown_8209220 -gUnknown_8209220: @ 8209220 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8208FA4 - -.global gUnknown_820922C -gUnknown_820922C: @ 820922C -.byte 0xf6, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820926C -gUnknown_820926C: @ 820926C -.byte 0xf6, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82092AC -gUnknown_82092AC: @ 82092AC -.byte 0xf6, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82092EC -gUnknown_82092EC: @ 82092EC -.byte 0xf6, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820932C -gUnknown_820932C: @ 820932C -.byte 0xf6, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820935C -gUnknown_820935C: @ 820935C -.byte 0xf6, 0x00, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820938C -gUnknown_820938C: @ 820938C -.byte 0xf6, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0x51, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82093BC -gUnknown_82093BC: @ 82093BC -.byte 0xf6, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82093DC -gUnknown_82093DC: @ 82093DC -.byte 0xf6, 0x00, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0x51, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820940C -gUnknown_820940C: @ 820940C -.byte 0xf6, 0x00, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820942C -gUnknown_820942C: @ 820942C -.byte 0xf6, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0x51, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820945C -gUnknown_820945C: @ 820945C -.byte 0xf6, 0x00, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820947C -gUnknown_820947C: @ 820947C -.byte 0xf6, 0x00, 0x8a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0x51, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82094AC -gUnknown_82094AC: @ 82094AC -.byte 0xf6, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82094CC -gUnknown_82094CC: @ 82094CC -.byte 0xf6, 0x00, 0x95, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0x51, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82094FC -gUnknown_82094FC: @ 82094FC -.byte 0xf6, 0x00, 0x9b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820951C -gUnknown_820951C: @ 820951C -.byte 0xf6, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0x51, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820954C -gUnknown_820954C: @ 820954C -.byte 0xf6, 0x00, 0xa6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820956C -gUnknown_820956C: @ 820956C -.byte 0xf6, 0x00, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820959C -gUnknown_820959C: @ 820959C -.byte 0xf6, 0x00, 0xb1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82095BC -gUnknown_82095BC: @ 82095BC -.byte 0xf6, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82095EC -gUnknown_82095EC: @ 82095EC -.byte 0xf6, 0x00, 0xbc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820960C -gUnknown_820960C: @ 820960C -.byte 0xf6, 0x00, 0xc1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820963C -gUnknown_820963C: @ 820963C -.byte 0xf6, 0x00, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820965C -gUnknown_820965C: @ 820965C -.byte 0xf6, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820968C -gUnknown_820968C: @ 820968C -.byte 0xf6, 0x00, 0xd2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82096AC -gUnknown_82096AC: @ 82096AC -.byte 0xf6, 0x00, 0xd7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82096DC -gUnknown_82096DC: @ 82096DC -.byte 0xf6, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82096FC -gUnknown_82096FC: @ 82096FC -.byte 0xf6, 0x00, 0xe2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820972C -gUnknown_820972C: @ 820972C -.byte 0xf6, 0x00, 0xe8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820974C -gUnknown_820974C: @ 820974C -.byte 0xf6, 0x00, 0xed, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820977C -gUnknown_820977C: @ 820977C -.byte 0xf6, 0x00, 0xf3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82091F4 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820979C -gUnknown_820979C: @ 820979C -.byte 0x00, 0x04, 0x00, 0x00, 0x20, 0x20, 0x02, 0x02 -.4byte gUnknown_820922C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x21, 0x23, 0x02, 0x02 -.4byte gUnknown_820926C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82097CC -gUnknown_82097CC: @ 82097CC -.byte 0x00, 0x04, 0x00, 0x00, 0x20, 0x20, 0x02, 0x02 -.4byte gUnknown_82092AC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x21, 0x23, 0x02, 0x02 -.4byte gUnknown_82092EC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82097FC -gUnknown_82097FC: @ 82097FC -.byte 0x00, 0x00, 0x00, 0x00, 0x20, 0x20, 0x02, 0x02 -.4byte gUnknown_820932C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x21, 0x23, 0x02, 0x02 -.4byte gUnknown_820935C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820982C -gUnknown_820982C: @ 820982C -.byte 0x0e, 0x00, 0x00, 0x00, 0x21, 0x19, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820938C -.4byte gUnknown_82093BC -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x27, 0x17, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82093DC -.4byte gUnknown_820940C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x21, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820942C -.4byte gUnknown_820945C -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x27, 0x11, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820947C -.4byte gUnknown_82094AC -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x21, 0x0c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82094CC -.4byte gUnknown_82094FC -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x1b, 0x10, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820951C -.4byte gUnknown_820954C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x14, 0x00, 0x00, 0x00, 0x2d, 0x13, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820956C -.4byte gUnknown_820959C -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x1b, 0x0a, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82095BC -.4byte gUnknown_82095EC -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x2d, 0x0d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820960C -.4byte gUnknown_820963C -.byte 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x15, 0x10, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820965C -.4byte gUnknown_820968C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x18, 0x00, 0x00, 0x00, 0x33, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82096AC -.4byte gUnknown_82096DC -.byte 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x0f, 0x0c, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82096FC -.4byte gUnknown_820972C -.byte 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x09, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820974C -.4byte gUnknown_820977C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8209964 -gUnknown_8209964: @ 8209964 -.byte 0x39, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x39, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x27, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_8209994 -gUnknown_8209994: @ 8209994 -.4byte gUnknown_8209220 - -.global gUnknown_8209998 -gUnknown_8209998: @ 8209998 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8209964 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8209994 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820979C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82097CC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82097FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8209A60 -gUnknown_8209A60: @ 8209A60 -.byte 0x0d, 0x00, 0x00, 0x00 -.4byte gUnknown_820982C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8209A88 -gUnknown_8209A88: @ 8209A88 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_8209998 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8209A60 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8209AA0 -gUnknown_8209AA0: @ 8209AA0 -.byte 0x06, 0x09, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0c, 0x0a, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x30, 0x09, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x12, 0x0e, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x2a, 0x0b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x18, 0x08, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x2a, 0x11, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x18, 0x0e, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x1e, 0x0a, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x24, 0x0f, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1e, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x24, 0x15, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x1e, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_8209B08 -gUnknown_8209B08: @ 8209B08 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8209A88 -.4byte gUnknown_8209AA0 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8209B1C -gUnknown_8209B1C: @ 8209B1C -.byte 0xf6, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209D6C -.byte 0x08, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8209D6C -gUnknown_8209D6C: @ 8209D6C -.string "../data/ground/ground_data_h24p01_station.c\0" -.align 2, 0 - -.global gUnknown_8209D98 -gUnknown_8209D98: @ 8209D98 -.byte 0x94, 0x01, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209B1C - -.global gUnknown_8209DA4 -gUnknown_8209DA4: @ 8209DA4 -.byte 0xf6, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209D6C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8209DE4 -gUnknown_8209DE4: @ 8209DE4 -.byte 0xf6, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209D6C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8209E24 -gUnknown_8209E24: @ 8209E24 -.byte 0xf6, 0x00, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209D6C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8209E64 -gUnknown_8209E64: @ 8209E64 -.byte 0xf6, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209D6C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8209EA4 -gUnknown_8209EA4: @ 8209EA4 -.byte 0xf6, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209D6C -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8209ED4 -gUnknown_8209ED4: @ 8209ED4 -.byte 0xf6, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209D6C -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8209F04 -gUnknown_8209F04: @ 8209F04 -.byte 0xf6, 0x00, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209D6C -.byte 0x51, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8209F34 -gUnknown_8209F34: @ 8209F34 -.byte 0xf6, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209D6C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8209F54 -gUnknown_8209F54: @ 8209F54 -.byte 0xf6, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209D6C -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8209F84 -gUnknown_8209F84: @ 8209F84 -.byte 0xf6, 0x00, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209D6C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8209FA4 -gUnknown_8209FA4: @ 8209FA4 -.byte 0xf6, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209D6C -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8209FD4 -gUnknown_8209FD4: @ 8209FD4 -.byte 0xf6, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209D6C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8209FF4 -gUnknown_8209FF4: @ 8209FF4 -.byte 0xf6, 0x00, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209D6C -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A024 -gUnknown_820A024: @ 820A024 -.byte 0xf6, 0x00, 0x8a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209D6C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A044 -gUnknown_820A044: @ 820A044 -.byte 0xf6, 0x00, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209D6C -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A074 -gUnknown_820A074: @ 820A074 -.byte 0xf6, 0x00, 0x95, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209D6C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A094 -gUnknown_820A094: @ 820A094 -.byte 0xf6, 0x00, 0x9a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209D6C -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A0C4 -gUnknown_820A0C4: @ 820A0C4 -.byte 0xf6, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209D6C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A0E4 -gUnknown_820A0E4: @ 820A0E4 -.byte 0xf6, 0x00, 0xa5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209D6C -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A114 -gUnknown_820A114: @ 820A114 -.byte 0xf6, 0x00, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209D6C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A134 -gUnknown_820A134: @ 820A134 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_8209DA4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x29, 0x02, 0x02 -.4byte gUnknown_8209DE4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A164 -gUnknown_820A164: @ 820A164 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_8209E24 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x04, 0x00, 0x00, 0x1e, 0x29, 0x02, 0x02 -.4byte gUnknown_8209E64 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A194 -gUnknown_820A194: @ 820A194 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x26, 0x02, 0x02 -.4byte gUnknown_8209EA4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1e, 0x29, 0x02, 0x02 -.4byte gUnknown_8209ED4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A1C4 -gUnknown_820A1C4: @ 820A1C4 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1e, 0x17, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209F04 -.4byte gUnknown_8209F34 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x0f, 0x00, 0x00, 0x00, 0x18, 0x14, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209F54 -.4byte gUnknown_8209F84 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x24, 0x14, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209FA4 -.4byte gUnknown_8209FD4 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x11, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8209FF4 -.4byte gUnknown_820A024 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x2b, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A044 -.4byte gUnknown_820A074 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x13, 0x00, 0x00, 0x00, 0x11, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A094 -.4byte gUnknown_820A0C4 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x2b, 0x16, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A0E4 -.4byte gUnknown_820A114 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A26C -gUnknown_820A26C: @ 820A26C -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00 -.byte 0x00, 0x2c, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x2d, 0x00, 0x00, 0x3b, 0x01, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_820A29C -gUnknown_820A29C: @ 820A29C -.4byte gUnknown_8209D98 - -.global gUnknown_820A2A0 -gUnknown_820A2A0: @ 820A2A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_820A26C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820A29C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820A134 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820A164 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820A194 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A368 -gUnknown_820A368: @ 820A368 -.byte 0x07, 0x00, 0x00, 0x00 -.4byte gUnknown_820A1C4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A390 -gUnknown_820A390: @ 820A390 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_820A2A0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820A368 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A3A8 -gUnknown_820A3A8: @ 820A3A8 -.byte 0x28, 0x14, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0e, 0x14, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x28, 0x1b, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x0e, 0x1b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x21, 0x12, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x15, 0x12, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1b, 0x15, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_820A3E0 -gUnknown_820A3E0: @ 820A3E0 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_820A390 -.4byte gUnknown_820A3A8 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_820A3F4 -gUnknown_820A3F4: @ 820A3F4 -.byte 0xf6, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A644 -.byte 0x08, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A644 -gUnknown_820A644: @ 820A644 -.string "../data/ground/ground_data_h25p01_station.c\0" -.align 2, 0 - -.global gUnknown_820A670 -gUnknown_820A670: @ 820A670 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A3F4 - -.global gUnknown_820A67C -gUnknown_820A67C: @ 820A67C -.byte 0xf6, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A644 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A6BC -gUnknown_820A6BC: @ 820A6BC -.byte 0xf6, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A644 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A6FC -gUnknown_820A6FC: @ 820A6FC -.byte 0xf6, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A644 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A73C -gUnknown_820A73C: @ 820A73C -.byte 0xf6, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A644 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A77C -gUnknown_820A77C: @ 820A77C -.byte 0xf6, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A644 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A7AC -gUnknown_820A7AC: @ 820A7AC -.byte 0xf6, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A644 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A7DC -gUnknown_820A7DC: @ 820A7DC -.byte 0xf6, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A644 -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A80C -gUnknown_820A80C: @ 820A80C -.byte 0xf6, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A644 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A82C -gUnknown_820A82C: @ 820A82C -.byte 0xf6, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A644 -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A85C -gUnknown_820A85C: @ 820A85C -.byte 0xf6, 0x00, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A644 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A87C -gUnknown_820A87C: @ 820A87C -.byte 0xf6, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A644 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A8AC -gUnknown_820A8AC: @ 820A8AC -.byte 0xf6, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A644 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A8CC -gUnknown_820A8CC: @ 820A8CC -.byte 0xf6, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A644 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A8FC -gUnknown_820A8FC: @ 820A8FC -.byte 0xf6, 0x00, 0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A644 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A91C -gUnknown_820A91C: @ 820A91C -.byte 0xf6, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A644 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A94C -gUnknown_820A94C: @ 820A94C -.byte 0xf6, 0x00, 0x94, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A644 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A96C -gUnknown_820A96C: @ 820A96C -.byte 0xf6, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A644 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A99C -gUnknown_820A99C: @ 820A99C -.byte 0xf6, 0x00, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A644 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A9BC -gUnknown_820A9BC: @ 820A9BC -.byte 0x00, 0x04, 0x00, 0x00, 0x20, 0x1f, 0x00, 0x02 -.4byte gUnknown_820A67C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x20, 0x22, 0x00, 0x02 -.4byte gUnknown_820A6BC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820A9EC -gUnknown_820A9EC: @ 820A9EC -.byte 0x00, 0x04, 0x00, 0x00, 0x20, 0x1f, 0x00, 0x02 -.4byte gUnknown_820A6FC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x20, 0x22, 0x00, 0x02 -.4byte gUnknown_820A73C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820AA1C -gUnknown_820AA1C: @ 820AA1C -.byte 0x00, 0x00, 0x00, 0x00, 0x20, 0x1f, 0x00, 0x02 -.4byte gUnknown_820A77C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x20, 0x22, 0x00, 0x02 -.4byte gUnknown_820A7AC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820AA4C -gUnknown_820AA4C: @ 820AA4C -.byte 0x0e, 0x00, 0x00, 0x00, 0x1d, 0x17, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A7DC -.4byte gUnknown_820A80C -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x1f, 0x0f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A82C -.4byte gUnknown_820A85C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x15, 0x0e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A87C -.4byte gUnknown_820A8AC -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x0d, 0x06, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A8CC -.4byte gUnknown_820A8FC -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x2c, 0x0c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A91C -.4byte gUnknown_820A94C -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x25, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820A96C -.4byte gUnknown_820A99C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820AADC -gUnknown_820AADC: @ 820AADC -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x24, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_820AB0C -gUnknown_820AB0C: @ 820AB0C -.4byte gUnknown_820A670 - -.global gUnknown_820AB10 -gUnknown_820AB10: @ 820AB10 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_820AADC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820AB0C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820A9BC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820A9EC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820AA1C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820ABD8 -gUnknown_820ABD8: @ 820ABD8 -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_820AA4C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820AC00 -gUnknown_820AC00: @ 820AC00 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_820AB10 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820ABD8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820AC18 -gUnknown_820AC18: @ 820AC18 -.byte 0x22, 0x07, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x29, 0x09, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0a, 0x04, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x12, 0x0c, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1c, 0x0d, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x1a, 0x15, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_820AC48 -gUnknown_820AC48: @ 820AC48 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_820AC00 -.4byte gUnknown_820AC18 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_820AC5C -gUnknown_820AC5C: @ 820AC5C -.byte 0xf6, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820AEAC -.byte 0x08, 0x00, 0x00, 0x00, 0x9a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820AEAC -gUnknown_820AEAC: @ 820AEAC -.string "../data/ground/ground_data_h26p01_station.c\0" -.align 2, 0 - -.global gUnknown_820AED8 -gUnknown_820AED8: @ 820AED8 -.byte 0x94, 0x01, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820AC5C - -.global gUnknown_820AEE4 -gUnknown_820AEE4: @ 820AEE4 -.byte 0xf6, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820AEAC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820AF24 -gUnknown_820AF24: @ 820AF24 -.byte 0xf6, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820AEAC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820AF64 -gUnknown_820AF64: @ 820AF64 -.byte 0xf6, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820AEAC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820AFA4 -gUnknown_820AFA4: @ 820AFA4 -.byte 0xf6, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820AEAC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820AFE4 -gUnknown_820AFE4: @ 820AFE4 -.byte 0xf6, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820AEAC -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B014 -gUnknown_820B014: @ 820B014 -.byte 0xf6, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820AEAC -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B044 -gUnknown_820B044: @ 820B044 -.byte 0xf6, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820AEAC -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B074 -gUnknown_820B074: @ 820B074 -.byte 0xf6, 0x00, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820AEAC -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B094 -gUnknown_820B094: @ 820B094 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x1f, 0x02, 0x02 -.4byte gUnknown_820AEE4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_820AF24 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B0C4 -gUnknown_820B0C4: @ 820B0C4 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x1f, 0x02, 0x02 -.4byte gUnknown_820AF64 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_820AFA4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B0F4 -gUnknown_820B0F4: @ 820B0F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1f, 0x02, 0x02 -.4byte gUnknown_820AFE4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_820B014 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B124 -gUnknown_820B124: @ 820B124 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1e, 0x14, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820B044 -.4byte gUnknown_820B074 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B13C -gUnknown_820B13C: @ 820B13C -.byte 0x3c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x27, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_820B16C -gUnknown_820B16C: @ 820B16C -.4byte gUnknown_820AED8 - -.global gUnknown_820B170 -gUnknown_820B170: @ 820B170 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_820B13C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820B16C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820B094 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820B0C4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820B0F4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B238 -gUnknown_820B238: @ 820B238 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820B124 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B260 -gUnknown_820B260: @ 820B260 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_820B170 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820B238 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B278 -gUnknown_820B278: @ 820B278 -.byte 0x1b, 0x11, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_820B280 -gUnknown_820B280: @ 820B280 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_820B260 -.4byte gUnknown_820B278 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_820B294 -gUnknown_820B294: @ 820B294 -.byte 0xf6, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820B4E4 -.byte 0x08, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B4E4 -gUnknown_820B4E4: @ 820B4E4 -.string "../data/ground/ground_data_h27p01_station.c\0" -.align 2, 0 - -.global gUnknown_820B510 -gUnknown_820B510: @ 820B510 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820B294 - -.global gUnknown_820B51C -gUnknown_820B51C: @ 820B51C -.byte 0xf6, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820B4E4 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B55C -gUnknown_820B55C: @ 820B55C -.byte 0xf6, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820B4E4 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B59C -gUnknown_820B59C: @ 820B59C -.byte 0xf6, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820B4E4 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B5DC -gUnknown_820B5DC: @ 820B5DC -.byte 0xf6, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820B4E4 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B61C -gUnknown_820B61C: @ 820B61C -.byte 0xf6, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820B4E4 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B64C -gUnknown_820B64C: @ 820B64C -.byte 0xf6, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820B4E4 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B67C -gUnknown_820B67C: @ 820B67C -.byte 0xf6, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820B4E4 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B6AC -gUnknown_820B6AC: @ 820B6AC -.byte 0xf6, 0x00, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820B4E4 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B6CC -gUnknown_820B6CC: @ 820B6CC -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x20, 0x00, 0x02 -.4byte gUnknown_820B51C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x00, 0x02 -.4byte gUnknown_820B55C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B6FC -gUnknown_820B6FC: @ 820B6FC -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x20, 0x00, 0x02 -.4byte gUnknown_820B59C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x00, 0x02 -.4byte gUnknown_820B5DC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B72C -gUnknown_820B72C: @ 820B72C -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x20, 0x00, 0x02 -.4byte gUnknown_820B61C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1e, 0x23, 0x00, 0x02 -.4byte gUnknown_820B64C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B75C -gUnknown_820B75C: @ 820B75C -.byte 0x0e, 0x00, 0x00, 0x00, 0x1e, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820B67C -.4byte gUnknown_820B6AC -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B774 -gUnknown_820B774: @ 820B774 -.byte 0x3c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x27, 0x00, 0x00 -.byte 0x39, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_820B7A4 -gUnknown_820B7A4: @ 820B7A4 -.4byte gUnknown_820B510 - -.global gUnknown_820B7A8 -gUnknown_820B7A8: @ 820B7A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_820B774 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820B7A4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820B6CC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820B6FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820B72C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B870 -gUnknown_820B870: @ 820B870 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820B75C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B898 -gUnknown_820B898: @ 820B898 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_820B7A8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820B870 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820B8B0 -gUnknown_820B8B0: @ 820B8B0 -.byte 0x1a, 0x09, 0x00, 0x00, 0x08, 0x05, 0x03, 0x02 - -.global gUnknown_820B8B8 -gUnknown_820B8B8: @ 820B8B8 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_820B898 -.4byte gUnknown_820B8B0 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_820B8CC -gUnknown_820B8CC: @ 820B8CC -.byte 0xf6, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BB1C -.byte 0x08, 0x00, 0x00, 0x00, 0x9c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820BB1C -gUnknown_820BB1C: @ 820BB1C -.string "../data/ground/ground_data_h28p01_station.c\0" -.align 2, 0 - -.global gUnknown_820BB48 -gUnknown_820BB48: @ 820BB48 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820B8CC - -.global gUnknown_820BB54 -gUnknown_820BB54: @ 820BB54 -.byte 0xf6, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BB1C -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820BB94 -gUnknown_820BB94: @ 820BB94 -.byte 0xf6, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BB1C -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820BBD4 -gUnknown_820BBD4: @ 820BBD4 -.byte 0xf6, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BB1C -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820BC14 -gUnknown_820BC14: @ 820BC14 -.byte 0xf6, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BB1C -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820BC54 -gUnknown_820BC54: @ 820BC54 -.byte 0xf6, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BB1C -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820BC84 -gUnknown_820BC84: @ 820BC84 -.byte 0xf6, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BB1C -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820BCB4 -gUnknown_820BCB4: @ 820BCB4 -.byte 0xf6, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BB1C -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820BCE4 -gUnknown_820BCE4: @ 820BCE4 -.byte 0xf6, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BB1C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820BD04 -gUnknown_820BD04: @ 820BD04 -.byte 0xf6, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BB1C -.byte 0x51, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820BD34 -gUnknown_820BD34: @ 820BD34 -.byte 0xf6, 0x00, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BB1C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820BD54 -gUnknown_820BD54: @ 820BD54 -.byte 0xf6, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BB1C -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820BD84 -gUnknown_820BD84: @ 820BD84 -.byte 0xf6, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BB1C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820BDA4 -gUnknown_820BDA4: @ 820BDA4 -.byte 0xf6, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BB1C -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820BDD4 -gUnknown_820BDD4: @ 820BDD4 -.byte 0xf6, 0x00, 0x89, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BB1C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820BDF4 -gUnknown_820BDF4: @ 820BDF4 -.byte 0xf6, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BB1C -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820BE24 -gUnknown_820BE24: @ 820BE24 -.byte 0xf6, 0x00, 0x94, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BB1C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820BE44 -gUnknown_820BE44: @ 820BE44 -.byte 0xf6, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BB1C -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820BE74 -gUnknown_820BE74: @ 820BE74 -.byte 0xf6, 0x00, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BB1C -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820BE94 -gUnknown_820BE94: @ 820BE94 -.byte 0x00, 0x04, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_820BB54 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x22, 0x23, 0x02, 0x02 -.4byte gUnknown_820BB94 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820BEC4 -gUnknown_820BEC4: @ 820BEC4 -.byte 0x00, 0x04, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_820BBD4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x04, 0x00, 0x00, 0x22, 0x23, 0x02, 0x02 -.4byte gUnknown_820BC14 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820BEF4 -gUnknown_820BEF4: @ 820BEF4 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x20, 0x02, 0x02 -.4byte gUnknown_820BC54 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x22, 0x23, 0x02, 0x02 -.4byte gUnknown_820BC84 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820BF24 -gUnknown_820BF24: @ 820BF24 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1f, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BCB4 -.4byte gUnknown_820BCE4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x0f, 0x00, 0x00, 0x00, 0x0f, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BD04 -.4byte gUnknown_820BD34 -.byte 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x32, 0x08, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BD54 -.4byte gUnknown_820BD84 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x20, 0x08, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BDA4 -.4byte gUnknown_820BDD4 -.byte 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x19, 0x0d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BDF4 -.4byte gUnknown_820BE24 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x13, 0x00, 0x00, 0x00, 0x21, 0x0e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820BE44 -.4byte gUnknown_820BE74 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820BFB4 -gUnknown_820BFB4: @ 820BFB4 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x27, 0x00, 0x00 -.byte 0x39, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_820BFE4 -gUnknown_820BFE4: @ 820BFE4 -.4byte gUnknown_820BB48 - -.global gUnknown_820BFE8 -gUnknown_820BFE8: @ 820BFE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_820BFB4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820BFE4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820BE94 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820BEC4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820BEF4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C0B0 -gUnknown_820C0B0: @ 820C0B0 -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_820BF24 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C0D8 -gUnknown_820C0D8: @ 820C0D8 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_820BFE8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820C0B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C0F0 -gUnknown_820C0F0: @ 820C0F0 -.byte 0x2f, 0x05, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0c, 0x0f, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02, 0x1d, 0x06, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1e, 0x0d, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x16, 0x0b, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1d, 0x14, 0x00, 0x00 -.byte 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_820C120 -gUnknown_820C120: @ 820C120 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_820C0D8 -.4byte gUnknown_820C0F0 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_820C134 -gUnknown_820C134: @ 820C134 -.byte 0xf6, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820C384 -.byte 0x08, 0x00, 0x00, 0x00, 0x9d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C384 -gUnknown_820C384: @ 820C384 -.string "../data/ground/ground_data_h28p02_station.c\0" -.align 2, 0 - -.global gUnknown_820C3B0 -gUnknown_820C3B0: @ 820C3B0 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820C134 - -.global gUnknown_820C3BC -gUnknown_820C3BC: @ 820C3BC -.byte 0xf6, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820C384 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C3FC -gUnknown_820C3FC: @ 820C3FC -.byte 0xf6, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820C384 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C43C -gUnknown_820C43C: @ 820C43C -.byte 0xf6, 0x00, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820C384 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C47C -gUnknown_820C47C: @ 820C47C -.byte 0xf6, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820C384 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C4BC -gUnknown_820C4BC: @ 820C4BC -.byte 0xf6, 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820C384 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C4EC -gUnknown_820C4EC: @ 820C4EC -.byte 0xf6, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820C384 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C51C -gUnknown_820C51C: @ 820C51C -.byte 0xf6, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820C384 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C54C -gUnknown_820C54C: @ 820C54C -.byte 0xf6, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820C384 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C56C -gUnknown_820C56C: @ 820C56C -.byte 0xf6, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820C384 -.byte 0x51, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C59C -gUnknown_820C59C: @ 820C59C -.byte 0xf6, 0x00, 0x71, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820C384 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C5BC -gUnknown_820C5BC: @ 820C5BC -.byte 0xf6, 0x00, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820C384 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C5EC -gUnknown_820C5EC: @ 820C5EC -.byte 0xf6, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820C384 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C60C -gUnknown_820C60C: @ 820C60C -.byte 0xf6, 0x00, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820C384 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C63C -gUnknown_820C63C: @ 820C63C -.byte 0xf6, 0x00, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820C384 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C65C -gUnknown_820C65C: @ 820C65C -.byte 0x00, 0x04, 0x00, 0x00, 0x23, 0x25, 0x02, 0x02 -.4byte gUnknown_820C3BC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x19, 0x25, 0x02, 0x02 -.4byte gUnknown_820C3FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C68C -gUnknown_820C68C: @ 820C68C -.byte 0x00, 0x04, 0x00, 0x00, 0x23, 0x25, 0x02, 0x02 -.4byte gUnknown_820C43C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x19, 0x25, 0x02, 0x02 -.4byte gUnknown_820C47C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C6BC -gUnknown_820C6BC: @ 820C6BC -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x25, 0x02, 0x02 -.4byte gUnknown_820C4BC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x19, 0x25, 0x02, 0x02 -.4byte gUnknown_820C4EC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C6EC -gUnknown_820C6EC: @ 820C6EC -.byte 0x0e, 0x00, 0x00, 0x00, 0x1e, 0x20, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820C51C -.4byte gUnknown_820C54C -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x11, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820C56C -.4byte gUnknown_820C59C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x2d, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820C5BC -.4byte gUnknown_820C5EC -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x1e, 0x13, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820C60C -.4byte gUnknown_820C63C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C74C -gUnknown_820C74C: @ 820C74C -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_820C758 -gUnknown_820C758: @ 820C758 -.4byte gUnknown_820C3B0 - -.global gUnknown_820C75C -gUnknown_820C75C: @ 820C75C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820C74C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820C758 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820C65C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820C68C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820C6BC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C824 -gUnknown_820C824: @ 820C824 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_820C6EC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C84C -gUnknown_820C84C: @ 820C84C -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_820C75C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820C824 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820C864 -gUnknown_820C864: @ 820C864 -.byte 0x1b, 0x10, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x2a, 0x15, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x0e, 0x16, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x1b, 0x1d, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_820C884 -gUnknown_820C884: @ 820C884 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_820C84C -.4byte gUnknown_820C864 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_820C898 -gUnknown_820C898: @ 820C898 -.byte 0xf6, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -.byte 0x08, 0x00, 0x00, 0x00, 0x9e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0x00, 0x05, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x01, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x21, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x22, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x17, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x07, 0x18, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x07, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820CB48 -gUnknown_820CB48: @ 820CB48 -.string "../data/ground/ground_data_h29p01_station.c\0" -.align 2, 0 - -.global gUnknown_820CB74 -gUnknown_820CB74: @ 820CB74 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820C898 - -.global gUnknown_820CB80 -gUnknown_820CB80: @ 820CB80 -.byte 0xf6, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820CBC0 -gUnknown_820CBC0: @ 820CBC0 -.byte 0xf6, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820CC00 -gUnknown_820CC00: @ 820CC00 -.byte 0xf6, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820CC40 -gUnknown_820CC40: @ 820CC40 -.byte 0xf6, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820CC80 -gUnknown_820CC80: @ 820CC80 -.byte 0xf6, 0x00, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820CCB0 -gUnknown_820CCB0: @ 820CCB0 -.byte 0xf6, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820CCE0 -gUnknown_820CCE0: @ 820CCE0 -.byte 0xf6, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -.byte 0xc6, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x91, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x92, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820CE00 -gUnknown_820CE00: @ 820CE00 -.byte 0xf6, 0x00, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820CE20 -gUnknown_820CE20: @ 820CE20 -.byte 0xf6, 0x00, 0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -.byte 0xc6, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x91, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x92, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820CF40 -gUnknown_820CF40: @ 820CF40 -.byte 0xf6, 0x00, 0x9e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820CF60 -gUnknown_820CF60: @ 820CF60 -.byte 0xf6, 0x00, 0xa3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -.byte 0xc6, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x91, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x92, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820D080 -gUnknown_820D080: @ 820D080 -.byte 0xf6, 0x00, 0xb8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820D0A0 -gUnknown_820D0A0: @ 820D0A0 -.byte 0xf6, 0x00, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -.byte 0x08, 0x00, 0x00, 0x00, 0x9e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x48, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820D150 -gUnknown_820D150: @ 820D150 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820D0A0 - -.global gUnknown_820D15C -gUnknown_820D15C: @ 820D15C -.byte 0xf6, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820D22C -gUnknown_820D22C: @ 820D22C -.byte 0xf6, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x30, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -rotate 0x08, shortestDir, west -pause 0x1e -rotate 0x08, shortestDir, east -pause 0x1e -rotate 0x08, shortestDir, north -pause 0x3c -.byte 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8b, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x10, 0x10, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xf6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x10, 0x10, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x28, 0x01, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x10, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xf6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x27, 0x01, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x10, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xfa, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x28, 0x01, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -setFlag 0x07 -setFlag 0x08 -setFlag 0x0a -pause 0x3c -.byte 0x27, 0x01, 0x01, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x6b, 0x00, 0x00, 0x01, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -setFlag 0x08 -pause 0x3c -.byte 0x2e, 0x0b, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x02, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820DB38 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820DB10 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820DAE4 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820DAB4 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820DA80 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820DA48 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820DA24 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820D9DC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820D9A0 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820D96C -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820D93C -closeTextBox -pause 0x1e -.byte 0x6a, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -pause 0x1e -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x49, 0x00, 0x00, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820D918 -.byte 0xe1, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820D90C -.byte 0x49, 0x00, 0x00, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820D8DC -.byte 0xe1, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -setFlag 0x03 -closeThread - -.global gUnknown_820D8DC -gUnknown_820D8DC: @ 820D8DC -.string "{CENTER_ALIGN}Gained access to\n" -.string "{CENTER_ALIGN}the {COLOR_1 YELLOW_4}Silver Trench{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_820D90C -gUnknown_820D90C: @ 820D90C -.string "{CENTER_ALIGN}And...\0" -.align 2, 0 - -.global gUnknown_820D918 -gUnknown_820D918: @ 820D918 -.string "{CENTER_ALIGN}Obtained the {COLOR_1 GREEN}Vortex Stone{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_820D93C -gUnknown_820D93C: @ 820D93C -.string " Now go.\n" -.string "The guardian of the sea awaits you.\0" -.align 2, 0 - -.global gUnknown_820D96C -gUnknown_820D96C: @ 820D96C -.string " There{COMMA} you will find the\n" -.string "guardian of the sea.\0" -.align 2, 0 - -.global gUnknown_820D9A0 -gUnknown_820D9A0: @ 820D9A0 -.string " It will lead you to a place\n" -.string "called the {COLOR_1 YELLOW_4}Silver Trench{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_820D9DC -gUnknown_820D9DC: @ 820D9DC -.string " Bearing it{COMMA} you will gain\n" -.string "passage through the sea{APOSTROPHE}s tornadoes...\0" -.align 2, 0 - -.global gUnknown_820DA24 -gUnknown_820DA24: @ 820DA24 -.string " I have here the\n" -.string "{COLOR_1 GREEN}Vortex Stone{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_820DA48 -gUnknown_820DA48: @ 820DA48 -.string " It is what caused whirlpools\n" -.string "to grow into tornadoes.\0" -.align 2, 0 - -.global gUnknown_820DA80 -gUnknown_820DA80: @ 820DA80 -.string " The three of us caused\n" -.string "the sea guardian to awaken.\0" -.align 2, 0 - -.global gUnknown_820DAB4 -gUnknown_820DAB4: @ 820DAB4 -.string " Our arrival at the\n" -.string "{COLOR_1 UNK_COLOR_5}Legendary Island{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_820DAE4 -gUnknown_820DAE4: @ 820DAE4 -.string " The guardian of the sea is\n" -.string "said to arise.\0" -.align 2, 0 - -.global gUnknown_820DB10 -gUnknown_820DB10: @ 820DB10 -.string " When the three powers\n" -.string "merge as one...\0" -.align 2, 0 - -.global gUnknown_820DB38 -gUnknown_820DB38: @ 820DB38 -.string " Fire{COMMA} ice{COMMA} and electricity...\0" -.align 2, 0 - -.global gUnknown_820DB5C -gUnknown_820DB5C: @ 820DB5C -.byte 0xf6, 0x00, 0x4c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -setAnimation 2 -.byte 0x59, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xf1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 18 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x8b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x70, 0x00, 0x80, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x70, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x03, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_820DCCC -gUnknown_820DCCC: @ 820DCCC -.byte 0xf6, 0x00, 0x66, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x54, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x80, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xf8, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x03, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8b, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x70, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x54, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xf1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 18 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_820DF0C -gUnknown_820DF0C: @ 820DF0C -.byte 0xf6, 0x00, 0x8d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x54, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x80, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xf8, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x03, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8b, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -rotate 0x04, shortestDir, east -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x54, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xf1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 18 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_820E14C -gUnknown_820E14C: @ 820E14C -.byte 0xf6, 0x00, 0xb4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -.byte 0x59, 0x00, 0xfc, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xe5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x73, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x56, 0x00, 0x00, 0x00, 0x74, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x56, 0x00, 0x00, 0x00, 0x75, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820E27C -gUnknown_820E27C: @ 820E27C -.byte 0xf6, 0x00, 0xca, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -pause 0x04 -.byte 0xc6, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x01, 0x00, 0x91, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x92, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x01, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x03, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820E37C -gUnknown_820E37C: @ 820E37C -.byte 0xf6, 0x00, 0xdd, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -.byte 0xc6, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x91, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x02, 0x00, 0x92, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x51, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x51, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820E49C -gUnknown_820E49C: @ 820E49C -.byte 0xf6, 0x00, 0xf2, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -pause 0x04 -.byte 0xc6, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x01, 0x00, 0x91, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x92, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x01, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x03, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820E59C -gUnknown_820E59C: @ 820E59C -.byte 0xf6, 0x00, 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CB48 -pause 0x04 -.byte 0xc6, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x01, 0x00, 0x91, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x92, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x01, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x03, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820E69C -gUnknown_820E69C: @ 820E69C -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x1a, 0x00, 0x02 -.4byte gUnknown_820CB80 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_820CBC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820E6CC -gUnknown_820E6CC: @ 820E6CC -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x1a, 0x00, 0x02 -.4byte gUnknown_820CC00 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_820CC40 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820E6FC -gUnknown_820E6FC: @ 820E6FC -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1a, 0x00, 0x02 -.4byte gUnknown_820CC80 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1e, 0x1d, 0x00, 0x02 -.4byte gUnknown_820CCB0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820E72C -gUnknown_820E72C: @ 820E72C -.byte 0x0e, 0x00, 0x00, 0x00, 0x1e, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CCE0 -.4byte gUnknown_820CE00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x07, 0x00, 0x00, 0x32, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CE20 -.4byte gUnknown_820CF40 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x10, 0x01, 0x00, 0x00, 0x0a, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820CF60 -.4byte gUnknown_820D080 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820E774 -gUnknown_820E774: @ 820E774 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x20, 0x00, 0x02 -.4byte gUnknown_820D22C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x00, 0x1e, 0x0e, 0x02, 0x02 -.4byte gUnknown_820DB5C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x07, 0x00, 0x00, 0x31, 0x15, 0x02, 0x02 -.4byte gUnknown_820DCCC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x65, 0x01, 0x00, 0x00, 0x09, 0x15, 0x02, 0x02 -.4byte gUnknown_820DF0C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x02 -.4byte gUnknown_820E27C -.4byte gUnknown_820E37C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x07, 0x00, 0x00, 0x32, 0x00, 0x00, 0x02 -.4byte gUnknown_820E49C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x01, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x02 -.4byte gUnknown_820E59C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820E81C -gUnknown_820E81C: @ 820E81C -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x19, 0x00, 0x02 -.4byte gUnknown_820D15C -.byte 0x05, 0x00, 0x01, 0x01, 0x1e, 0x11, 0x02, 0x02 -.4byte gUnknown_820E14C - -.global gUnknown_820E834 -gUnknown_820E834: @ 820E834 -.byte 0x3c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x01, 0x21, 0x00, 0x00 -.byte 0x3b, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_820E864 -gUnknown_820E864: @ 820E864 -.4byte gUnknown_820CB74 - -.global gUnknown_820E868 -gUnknown_820E868: @ 820E868 -.4byte gUnknown_820D150 - -.global gUnknown_820E86C -gUnknown_820E86C: @ 820E86C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_820E834 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820E864 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820E69C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820E6CC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820E6FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820E934 -gUnknown_820E934: @ 820E934 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_820E72C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820E95C -gUnknown_820E95C: @ 820E95C -.byte 0x07, 0x00, 0x00, 0x00 -.4byte gUnknown_820E774 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820E81C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820E868 - -.global gUnknown_820E984 -gUnknown_820E984: @ 820E984 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_820E86C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820E934 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820E95C - -.global gUnknown_820E99C -gUnknown_820E99C: @ 820E99C -.byte 0x1e, 0x10, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x1b, 0x0e, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x32, 0x15, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x2f, 0x13, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 -.byte 0x0a, 0x15, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x07, 0x13, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x1e, 0x14, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x23, 0x10, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00 -.byte 0x18, 0x10, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x1e, 0x10, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x09, 0x15, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x31, 0x15, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00 -.byte 0x1e, 0x10, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00 - -.global gUnknown_820EA04 -gUnknown_820EA04: @ 820EA04 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_820E984 -.4byte gUnknown_820E99C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_820EA18 -gUnknown_820EA18: @ 820EA18 -.byte 0xf6, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820EC68 -.byte 0x08, 0x00, 0x00, 0x00, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820EC68 -gUnknown_820EC68: @ 820EC68 -.string "../data/ground/ground_data_h29p02_station.c\0" -.align 2, 0 - -.global gUnknown_820EC94 -gUnknown_820EC94: @ 820EC94 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820EA18 - -.global gUnknown_820ECA0 -gUnknown_820ECA0: @ 820ECA0 -.byte 0xf6, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820EC68 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820ECE0 -gUnknown_820ECE0: @ 820ECE0 -.byte 0xf6, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820EC68 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820ED20 -gUnknown_820ED20: @ 820ED20 -.byte 0xf6, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820EC68 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820ED60 -gUnknown_820ED60: @ 820ED60 -.byte 0xf6, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820EC68 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820EDA0 -gUnknown_820EDA0: @ 820EDA0 -.byte 0xf6, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820EC68 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820EDD0 -gUnknown_820EDD0: @ 820EDD0 -.byte 0xf6, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820EC68 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820EE00 -gUnknown_820EE00: @ 820EE00 -.byte 0xf6, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820EC68 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820EE30 -gUnknown_820EE30: @ 820EE30 -.byte 0xf6, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820EC68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820EE50 -gUnknown_820EE50: @ 820EE50 -.byte 0xf6, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820EC68 -.byte 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820EE80 -gUnknown_820EE80: @ 820EE80 -.byte 0xf6, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820EC68 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820EEA0 -gUnknown_820EEA0: @ 820EEA0 -.byte 0x00, 0x04, 0x00, 0x00, 0x14, 0x23, 0x00, 0x02 -.4byte gUnknown_820ECA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x14, 0x26, 0x00, 0x02 -.4byte gUnknown_820ECE0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820EED0 -gUnknown_820EED0: @ 820EED0 -.byte 0x00, 0x04, 0x00, 0x00, 0x14, 0x23, 0x00, 0x02 -.4byte gUnknown_820ED20 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x14, 0x26, 0x00, 0x02 -.4byte gUnknown_820ED60 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820EF00 -gUnknown_820EF00: @ 820EF00 -.byte 0x00, 0x00, 0x00, 0x00, 0x14, 0x23, 0x00, 0x02 -.4byte gUnknown_820EDA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x14, 0x26, 0x00, 0x02 -.4byte gUnknown_820EDD0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820EF30 -gUnknown_820EF30: @ 820EF30 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1e, 0x11, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820EE00 -.4byte gUnknown_820EE30 -.byte 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x24, 0x15, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820EE50 -.4byte gUnknown_820EE80 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820EF60 -gUnknown_820EF60: @ 820EF60 -.byte 0x3c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x2a, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x2a, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_820EF90 -gUnknown_820EF90: @ 820EF90 -.4byte gUnknown_820EC94 - -.global gUnknown_820EF94 -gUnknown_820EF94: @ 820EF94 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_820EF60 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820EF90 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820EEA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820EED0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820EF00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820F05C -gUnknown_820F05C: @ 820F05C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820EF30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820F084 -gUnknown_820F084: @ 820F084 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_820EF94 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820F05C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820F09C -gUnknown_820F09C: @ 820F09C -.byte 0x1b, 0x0f, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02, 0x22, 0x12, 0x00, 0x00, 0x06, 0x06, 0x03, 0x02 - -.global gUnknown_820F0AC -gUnknown_820F0AC: @ 820F0AC -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_820F084 -.4byte gUnknown_820F09C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_820F0C0 -gUnknown_820F0C0: @ 820F0C0 -.byte 0xf6, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820F310 -.byte 0x08, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820F310 -gUnknown_820F310: @ 820F310 -.string "../data/ground/ground_data_h29p03_station.c\0" -.align 2, 0 - -.global gUnknown_820F33C -gUnknown_820F33C: @ 820F33C -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820F0C0 - -.global gUnknown_820F348 -gUnknown_820F348: @ 820F348 -.byte 0xf6, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820F310 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820F388 -gUnknown_820F388: @ 820F388 -.byte 0xf6, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820F310 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820F3C8 -gUnknown_820F3C8: @ 820F3C8 -.byte 0xf6, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820F310 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820F408 -gUnknown_820F408: @ 820F408 -.byte 0xf6, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820F310 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820F448 -gUnknown_820F448: @ 820F448 -.byte 0xf6, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820F310 -.byte 0xe8, 0x00, 0x51, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820F478 -gUnknown_820F478: @ 820F478 -.byte 0xf6, 0x00, 0x57, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820F310 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820F4A8 -gUnknown_820F4A8: @ 820F4A8 -.byte 0xf6, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820F310 -.byte 0x51, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820F4D8 -gUnknown_820F4D8: @ 820F4D8 -.byte 0xf6, 0x00, 0x63, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820F310 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820F4F8 -gUnknown_820F4F8: @ 820F4F8 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x1e, 0x23, 0x00, 0x02 -.4byte gUnknown_820F348 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x26, 0x00, 0x02 -.4byte gUnknown_820F388 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820F528 -gUnknown_820F528: @ 820F528 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x00, 0x02 -.4byte gUnknown_820F3C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x26, 0x00, 0x02 -.4byte gUnknown_820F408 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820F558 -gUnknown_820F558: @ 820F558 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x1e, 0x23, 0x00, 0x02 -.4byte gUnknown_820F448 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1e, 0x26, 0x00, 0x02 -.4byte gUnknown_820F478 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820F588 -gUnknown_820F588: @ 820F588 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1e, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820F4A8 -.4byte gUnknown_820F4D8 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820F5A0 -gUnknown_820F5A0: @ 820F5A0 -.byte 0x3c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x01, 0x29, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x2a, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x2a, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_820F5D0 -gUnknown_820F5D0: @ 820F5D0 -.4byte gUnknown_820F33C - -.global gUnknown_820F5D4 -gUnknown_820F5D4: @ 820F5D4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_820F5A0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820F5D0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820F4F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820F528 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820F558 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820F69C -gUnknown_820F69C: @ 820F69C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820F588 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820F6C4 -gUnknown_820F6C4: @ 820F6C4 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_820F5D4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820F69C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820F6DC -gUnknown_820F6DC: @ 820F6DC -.byte 0x1b, 0x10, 0x00, 0x00, 0x06, 0x05, 0x03, 0x02 - -.global gUnknown_820F6E4 -gUnknown_820F6E4: @ 820F6E4 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_820F6C4 -.4byte gUnknown_820F6DC -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_820F6F8 -gUnknown_820F6F8: @ 820F6F8 -.byte 0xf6, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820F948 -.byte 0x08, 0x00, 0x00, 0x00, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x03, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820F948 -gUnknown_820F948: @ 820F948 -.string "../data/ground/ground_data_h29p04_station.c\0" -.align 2, 0 - -.global gUnknown_820F974 -gUnknown_820F974: @ 820F974 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820F6F8 - -.global gUnknown_820F980 -gUnknown_820F980: @ 820F980 -.byte 0xf6, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820F948 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820F9C0 -gUnknown_820F9C0: @ 820F9C0 -.byte 0xf6, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820F948 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820FA00 -gUnknown_820FA00: @ 820FA00 -.byte 0xf6, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820F948 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820FA40 -gUnknown_820FA40: @ 820FA40 -.byte 0xf6, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820F948 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820FA80 -gUnknown_820FA80: @ 820FA80 -.byte 0xf6, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820F948 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820FAB0 -gUnknown_820FAB0: @ 820FAB0 -.byte 0xf6, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820F948 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820FAE0 -gUnknown_820FAE0: @ 820FAE0 -.byte 0xf6, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820F948 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820FB10 -gUnknown_820FB10: @ 820FB10 -.byte 0xf6, 0x00, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820F948 -.byte 0xe9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820FB30 -gUnknown_820FB30: @ 820FB30 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x20, 0x02, 0x02 -.4byte gUnknown_820F980 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_820F9C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820FB60 -gUnknown_820FB60: @ 820FB60 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x20, 0x02, 0x02 -.4byte gUnknown_820FA00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_820FA40 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820FB90 -gUnknown_820FB90: @ 820FB90 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x20, 0x02, 0x02 -.4byte gUnknown_820FA80 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1e, 0x23, 0x02, 0x02 -.4byte gUnknown_820FAB0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820FBC0 -gUnknown_820FBC0: @ 820FBC0 -.byte 0x0e, 0x00, 0x00, 0x00, 0x1e, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FAE0 -.4byte gUnknown_820FB10 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820FBD8 -gUnknown_820FBD8: @ 820FBD8 -.byte 0x3c, 0x03, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x3c, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 -.byte 0x03, 0x27, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00 -.4byte gUnknown_81302C0 - -.global gUnknown_820FC08 -gUnknown_820FC08: @ 820FC08 -.4byte gUnknown_820F974 - -.global gUnknown_820FC0C -gUnknown_820FC0C: @ 820FC0C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_820FBD8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820FC08 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820FB30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820FB60 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_820FB90 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820FCD4 -gUnknown_820FCD4: @ 820FCD4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820FBC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820FCFC -gUnknown_820FCFC: @ 820FCFC -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_820FC0C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_820FCD4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820FD14 -gUnknown_820FD14: @ 820FD14 -.byte 0x1a, 0x08, 0x00, 0x00, 0x08, 0x06, 0x03, 0x02 - -.global gUnknown_820FD1C -gUnknown_820FD1C: @ 820FD1C -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_820FCFC -.4byte gUnknown_820FD14 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_820FD30 -gUnknown_820FD30: @ 820FD30 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x08, 0x00, 0x00, 0x00, 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820FD70 -gUnknown_820FD70: @ 820FD70 -.string "../data/ground/ground_data_a01p01_station.c\0" -.align 2, 0 - -.global gUnknown_820FD9C -gUnknown_820FD9C: @ 820FD9C -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD30 - -.global gUnknown_820FDA8 -gUnknown_820FDA8: @ 820FDA8 -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_820FE48 -gUnknown_820FE48: @ 820FE48 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FDA8 - -.global gUnknown_820FE54 -gUnknown_820FE54: @ 820FE54 -.byte 0xf6, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821007C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821006C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8210058 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821004C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8210040 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8210020 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FFFC -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FFD8 -.byte 0x2e, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FFB4 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821006C -closeTextBox -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_820FFB4 -gUnknown_820FFB4: @ 820FFB4 -.string "......{WAIT_PRESS}Hmm... I can{APOSTROPHE}t remember.\0" -.align 2, 0 - -.global gUnknown_820FFD8 -gUnknown_820FFD8: @ 820FFD8 -.string "Who is it...?{WAIT_PRESS} Someone I know...?\0" -.align 2, 0 - -.global gUnknown_820FFFC -gUnknown_820FFFC: @ 820FFFC -.string "...Oh?{WAIT_PRESS} There{APOSTROPHE}s someone here.\0" -.align 2, 0 - -.global gUnknown_8210020 -gUnknown_8210020: @ 8210020 -.string "Maybe...{WAIT_PRESS} Is this a dream...?\0" -.align 2, 0 - -.global gUnknown_8210040 -gUnknown_8210040: @ 8210040 -.string "Where am I?\0" -.align 2, 0 - -.global gUnknown_821004C -gUnknown_821004C: @ 821004C -.string "Where...\0" -.align 2, 0 - -.global gUnknown_8210058 -gUnknown_8210058: @ 8210058 -.string "..................\0" -.align 2, 0 - -.global gUnknown_821006C -gUnknown_821006C: @ 821006C -.string "............\0" -.align 2, 0 - -.global gUnknown_821007C -gUnknown_821007C: @ 821007C -.string "......\0" -.align 2, 0 - -.global gUnknown_8210084 -gUnknown_8210084: @ 8210084 -.byte 0xf6, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x08, 0x00, 0x00, 0x00, 0xa2, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x3c, 0x00, 0xc5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8210144 -gUnknown_8210144: @ 8210144 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8210084 - -.global gUnknown_8210150 -gUnknown_8210150: @ 8210150 -.byte 0xf6, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8210190 -gUnknown_8210190: @ 8210190 -.byte 0xf6, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821007C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821006C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82104A0 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821047C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821045C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8210434 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82103FC -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82103D0 -.byte 0x97, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82103B4 -.byte 0x2e, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8210380 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821006C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82104A0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8210380 -gUnknown_8210380: @ 8210380 -.string "For a dream{COMMA} this feels strangely\n" -.string "real{COMMA} but...\0" -.align 2, 0 - -.global gUnknown_82103B4 -gUnknown_82103B4: @ 82103B4 -.string "Whoa! It{APOSTROPHE}s getting worse.\0" -.align 2, 0 - -.global gUnknown_82103D0 -gUnknown_82103D0: @ 82103D0 -.string "Huh? It{APOSTROPHE}s shaking.{WAIT_PRESS} An earthquake...?\0" -.align 2, 0 - -.global gUnknown_82103FC -gUnknown_82103FC: @ 82103FC -.string "...{WAIT_PRESS}I can{APOSTROPHE}t hear them clearly.\n" -.string "What are they saying?\0" -.align 2, 0 - -.global gUnknown_8210434 -gUnknown_8210434: @ 8210434 -.string "Huh?{WAIT_PRESS}\n" -.string "They{APOSTROPHE}re...talking to me...?\0" -.align 2, 0 - -.global gUnknown_821045C -gUnknown_821045C: @ 821045C -.string "...It{APOSTROPHE}s that Pokémon again.\0" -.align 2, 0 - -.global gUnknown_821047C -gUnknown_821047C: @ 821047C -.string "...Again?{WAIT_PRESS} Am I dreaming again...?\0" -.align 2, 0 - -.global gUnknown_82104A0 -gUnknown_82104A0: @ 82104A0 -.string "........................\0" -.align 2, 0 - -.global gUnknown_82104BC -gUnknown_82104BC: @ 82104BC -.byte 0xf6, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x08, 0x00, 0x00, 0x00, 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821055C -gUnknown_821055C: @ 821055C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82104BC - -.global gUnknown_8210568 -gUnknown_8210568: @ 8210568 -.byte 0xf6, 0x00, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 6 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821007C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821006C -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82107D0 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82107AC -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8210780 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8210760 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x2e, 0x02, 0x00, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8210740 -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8210718 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821006C -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82104A0 -closeTextBox -.byte 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8210718 -gUnknown_8210718: @ 8210718 -.string "......{WAIT_PRESS}\n" -.string "I can{APOSTROPHE}t... Drifting off...\0" -.align 2, 0 - -.global gUnknown_8210740 -gUnknown_8210740: @ 8210740 -.string "W-wait.\n" -.string "Please{COMMA} tell me more.\0" -.align 2, 0 - -.global gUnknown_8210760 -gUnknown_8210760: @ 8210760 -.string "...What?{WAIT_PRESS} Human?{WAIT_PRESS} My role?\0" -.align 2, 0 - -.global gUnknown_8210780 -gUnknown_8210780: @ 8210780 -.string "Huh?{WAIT_PRESS} I{APOSTROPHE}m hearing better this time...\0" -.align 2, 0 - -.global gUnknown_82107AC -gUnknown_82107AC: @ 82107AC -.string "That Pokémon... Who could it be...?\0" -.align 2, 0 - -.global gUnknown_82107D0 -gUnknown_82107D0: @ 82107D0 -.string "......Again...{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s that dream again.\0" -.align 2, 0 - -.global gUnknown_82107FC -gUnknown_82107FC: @ 82107FC -.byte 0xf6, 0x00, 0xa7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -setAnimation 31 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8210BBC -gUnknown_8210BBC: @ 8210BBC -.byte 0xf6, 0x00, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x08, 0x00, 0x00, 0x00, 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8210C5C -gUnknown_8210C5C: @ 8210C5C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8210BBC - -.global gUnknown_8210C68 -gUnknown_8210C68: @ 8210C68 -.byte 0xf6, 0x00, 0xf5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x54, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821007C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821006C -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82104A0 -closeTextBox -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821123C -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821121C -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82111E8 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82111C8 -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8211174 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8211158 -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821113C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8211124 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8211114 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8211108 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x02, 0x00, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82110FC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x0f, 0x02, 0x00 -.byte 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82110C0 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82110A4 -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821107C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821106C -closeTextBox -.byte 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8211048 -closeTextBox -.byte 0x2e, 0x15, 0x00, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8211030 -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8211018 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821006C -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82104A0 -closeTextBox -.byte 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8211018 -gUnknown_8211018: @ 8211018 -.string "No... It{APOSTROPHE}s fading...\0" -.align 2, 0 - -.global gUnknown_8211030 -gUnknown_8211030: @ 8211030 -.string "I want to know more...\0" -.align 2, 0 - -.global gUnknown_8211048 -gUnknown_8211048: @ 8211048 -.string "Oh! Wait.{WAIT_PRESS} Just a little longer...\0" -.align 2, 0 - -.global gUnknown_821106C -gUnknown_821106C: @ 821106C -.string " I am your...\0" -.align 2, 0 - -.global gUnknown_821107C -gUnknown_821107C: @ 821107C -.string "You knew me from before?\n" -.string "What about me?\0" -.align 2, 0 - -.global gUnknown_82110A4 -gUnknown_82110A4: @ 82110A4 -.string "...?{WAIT_PRESS} Finally met me...?\0" -.align 2, 0 - -.global gUnknown_82110C0 -gUnknown_82110C0: @ 82110C0 -.string " I{APOSTROPHE}m so glad. Finally...{WAIT_PRESS}\n" -.string "I finally got to meet you...\0" -.align 2, 0 - -.global gUnknown_82110FC -gUnknown_82110FC: @ 82110FC -.string "Ga-{ARG_NICKNAME_2}...?!\0" -.align 2, 0 - -.global gUnknown_8211108 -gUnknown_8211108: @ 8211108 -.string " I am {ARG_NICKNAME_2}.\0" -.align 2, 0 - -.global gUnknown_8211114 -gUnknown_8211114: @ 8211114 -.string " ...{WAIT_PRESS}I am...\0" -.align 2, 0 - -.global gUnknown_8211124 -gUnknown_8211124: @ 8211124 -.string "You...{WAIT_PRESS}\n" -.string "Who are you?\0" -.align 2, 0 - -.global gUnknown_821113C -gUnknown_821113C: @ 821113C -.string "Hello.{WAIT_PRESS} Please{COMMA} tell me.\0" -.align 2, 0 - -.global gUnknown_8211158 -gUnknown_8211158: @ 8211158 -.string "I{APOSTROPHE}ll try talking to it.\0" -.align 2, 0 - -.global gUnknown_8211174 -gUnknown_8211174: @ 8211174 -.string "But... I can{APOSTROPHE}t quite make it out...{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s clearer than it was before{COMMA} but...\0" -.align 2, 0 - -.global gUnknown_82111C8 -gUnknown_82111C8: @ 82111C8 -.string "Oh?{WAIT_PRESS} It{APOSTROPHE}s saying something!\0" -.align 2, 0 - -.global gUnknown_82111E8 -gUnknown_82111E8: @ 82111E8 -.string "I always see this silhouette...{WAIT_PRESS}\n" -.string "Who could it be?\0" -.align 2, 0 - -.global gUnknown_821121C -gUnknown_821121C: @ 821121C -.string "......It{APOSTROPHE}s that dream again.\0" -.align 2, 0 - -.global gUnknown_821123C -gUnknown_821123C: @ 821123C -.string "......{WAIT_PRESS}Again.\0" -.align 2, 0 - -.global gUnknown_821124C -gUnknown_821124C: @ 821124C -.byte 0xf6, 0x00, 0x3a, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -setAnimation 31 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821161C -gUnknown_821161C: @ 821161C -.byte 0xf6, 0x00, 0x7a, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x08, 0x00, 0x00, 0x00, 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x27, 0x00, 0x05, 0x00, 0x20, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xfa, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x20, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82116AC -gUnknown_82116AC: @ 82116AC -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821161C - -.global gUnknown_82116B8 -gUnknown_82116B8: @ 82116B8 -.byte 0xf6, 0x00, 0x88, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0a, CW, south -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82117C4 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x02, 0x00, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82117B8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82117B8 -gUnknown_82117B8: @ 82117B8 -.string "Ga...{WAIT_PRESS}{ARG_NICKNAME_2}!\0" -.align 2, 0 - -.global gUnknown_82117C4 -gUnknown_82117C4: @ 82117C4 -.string " I{APOSTROPHE}ve been waiting for you.\0" -.align 2, 0 - -.global gUnknown_82117E4 -gUnknown_82117E4: @ 82117E4 -.byte 0xf6, 0x00, 0x9d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x08, 0x00, 0x00, 0x00, 0xa2, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x3c, 0x00, 0xc5, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8211894 -gUnknown_8211894: @ 8211894 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82117E4 - -.global gUnknown_82118A0 -gUnknown_82118A0: @ 82118A0 -.byte 0xf6, 0x00, 0xad, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 6 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821007C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821006C -closeTextBox -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821275C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212738 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212718 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xdd, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82126F8 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x2e, 0x0f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82126F0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82126C0 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82126A0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212668 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212648 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212630 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212628 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82125E4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82125A8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821255C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821251C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82124F0 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82124AC -closeTextBox -.byte 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212484 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212458 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212418 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82123B8 -closeTextBox -.byte 0x2e, 0x15, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212374 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212344 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821230C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212628 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82122C4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82122A0 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212250 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212208 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82121C8 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82121A4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212164 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212124 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212118 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212628 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82120E4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82120BC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212094 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821205C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212028 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212008 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00, 0xc5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x97, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8211FF4 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8211FD0 -closeTextBox -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8211FD0 -gUnknown_8211FD0: @ 8211FD0 -.string "No! Wait!{WAIT_PRESS}\n" -.string "I need to know more...\0" -.align 2, 0 - -.global gUnknown_8211FF4 -gUnknown_8211FF4: @ 8211FF4 -.string "Wah!\n" -.string "E-earthquake?!\0" -.align 2, 0 - -.global gUnknown_8212008 -gUnknown_8212008: @ 8212008 -.string "What...?{WAIT_PRESS}\n" -.string "What are you saying?\0" -.align 2, 0 - -.global gUnknown_8212028 -gUnknown_8212028: @ 8212028 -.string " And{COMMA} for that role...{WAIT_PRESS}\n" -.string "you became a Pokémon.\0" -.align 2, 0 - -.global gUnknown_821205C -gUnknown_821205C: @ 821205C -.string " You have...{WAIT_PRESS}\n" -.string "come here to perform a certain role...\0" -.align 2, 0 - -.global gUnknown_8212094 -gUnknown_8212094: @ 8212094 -.string " You{COMMA} too{COMMA} have a role to\n" -.string "fill...\0" -.align 2, 0 - -.global gUnknown_82120BC -gUnknown_82120BC: @ 82120BC -.string " Just as I have my own\n" -.string "role to play...\0" -.align 2, 0 - -.global gUnknown_82120E4 -gUnknown_82120E4: @ 82120E4 -.string " All things have a role.\n" -.string "They all serve a purpose.\0" -.align 2, 0 - -.global gUnknown_8212118 -gUnknown_8212118: @ 8212118 -.string "...Role?\0" -.align 2, 0 - -.global gUnknown_8212124 -gUnknown_8212124: @ 8212124 -.string " I live on this way with\n" -.string "pride in the role I have been given.\0" -.align 2, 0 - -.global gUnknown_8212164 -gUnknown_8212164: @ 8212164 -.string " Oh{COMMA} I must mention{COMMA} I don{APOSTROPHE}t\n" -.string "mind the form I have taken.\0" -.align 2, 0 - -.global gUnknown_82121A4 -gUnknown_82121A4: @ 82121A4 -.string "(...It{APOSTROPHE}s amazing what {ARG_POKEMON_2}\n" -.string "did.)\0" -.align 2, 0 - -.global gUnknown_82121C8 -gUnknown_82121C8: @ 82121C8 -.string "(...Protect the Trainer even at the risk\n" -.string "of your own life...)\0" -.align 2, 0 - -.global gUnknown_8212208 -gUnknown_8212208: @ 8212208 -.string " I kept my Trainer safe...{WAIT_PRESS}\n" -.string "That alone was enough to make me happy.\0" -.align 2, 0 - -.global gUnknown_8212250 -gUnknown_8212250: @ 8212250 -.string " It is our duty to protect\n" -.string "the Trainer with our lives...{WAIT_PRESS}\n" -.string "We {ARG_POKEMON_2} are that way.\0" -.align 2, 0 - -.global gUnknown_82122A0 -gUnknown_82122A0: @ 82122A0 -.string " If the Trainer is facing\n" -.string "danger...\0" -.align 2, 0 - -.global gUnknown_82122C4 -gUnknown_82122C4: @ 82122C4 -.string " I protected my Trainer\n" -.string "from Ninetales{APOSTROPHE}s curse with my\n" -.string "entire being.\0" -.align 2, 0 - -.global gUnknown_821230C -gUnknown_821230C: @ 821230C -.string "When it happened...?{WAIT_PRESS}\n" -.string "You mean Ninetales{APOSTROPHE}s curse?\0" -.align 2, 0 - -.global gUnknown_8212344 -gUnknown_8212344: @ 8212344 -.string " And{COMMA} when it happened{COMMA}\n" -.string "I was desperate...\0" -.align 2, 0 - -.global gUnknown_8212374 -gUnknown_8212374: @ 8212374 -.string " My Trainer had some quirks{COMMA}\n" -.string "but there were good qualities too.\0" -.align 2, 0 - -.global gUnknown_82123B8 -gUnknown_82123B8: @ 82123B8 -.string " My Trainer did some\n" -.string "terrible things{COMMA} but somehow{COMMA} I can{APOSTROPHE}t\n" -.string "bring myself to feel hatred...\0" -.align 2, 0 - -.global gUnknown_8212418 -gUnknown_8212418: @ 8212418 -.string " Well...{WAIT_PRESS}\n" -.string "I wonder why myself.\n" -.string "I don{APOSTROPHE}t quite understand...\0" -.align 2, 0 - -.global gUnknown_8212458 -gUnknown_8212458: @ 8212458 -.string "Huh? Don{APOSTROPHE}t hate your Trainer?{WAIT_PRESS}\n" -.string "Why not?\0" -.align 2, 0 - -.global gUnknown_8212484 -gUnknown_8212484: @ 8212484 -.string " But...{WAIT_PRESS}\n" -.string "I don{APOSTROPHE}t hate my Trainer.\0" -.align 2, 0 - -.global gUnknown_82124AC -gUnknown_82124AC: @ 82124AC -.string " Mean and conniving...\n" -.string "My Trainer wasn{APOSTROPHE}t a nice person. Truly.\0" -.align 2, 0 - -.global gUnknown_82124F0 -gUnknown_82124F0: @ 82124F0 -.string " Yes.{WAIT_PRESS} My Trainer was\n" -.string "a terrible person.\0" -.align 2, 0 - -.global gUnknown_821251C -gUnknown_821251C: @ 821251C -.string "It{APOSTROPHE}s awful that your Trainer would abandon\n" -.string "you and run away.\0" -.align 2, 0 - -.global gUnknown_821255C -gUnknown_821255C: @ 821255C -.string "Trainer...?{WAIT_PRESS}\n" -.string "You mean the human that was in the\n" -.string "legend about Ninetales?\0" -.align 2, 0 - -.global gUnknown_82125A8 -gUnknown_82125A8: @ 82125A8 -.string " And became a presence\n" -.string "without a physical form like this.\0" -.align 2, 0 - -.global gUnknown_82125E4 -gUnknown_82125E4: @ 82125E4 -.string " I fell under the curse of\n" -.string "Ninetales in the place of a Trainer...\0" -.align 2, 0 - -.global gUnknown_8212628 -gUnknown_8212628: @ 8212628 -.string " Yes.\0" -.align 2, 0 - -.global gUnknown_8212630 -gUnknown_8212630: @ 8212630 -.string "...An agent of spirits?\0" -.align 2, 0 - -.global gUnknown_8212648 -gUnknown_8212648: @ 8212648 -.string " Because that is my role\n" -.string "now.\0" -.align 2, 0 - -.global gUnknown_8212668 -gUnknown_8212668: @ 8212668 -.string " As an agent of spirits...{WAIT_PRESS}\n" -.string "I must watch over you...\0" -.align 2, 0 - -.global gUnknown_82126A0 -gUnknown_82126A0: @ 82126A0 -.string "Why do you appear in my dreams?\0" -.align 2, 0 - -.global gUnknown_82126C0 -gUnknown_82126C0: @ 82126C0 -.string "...{ARG_NICKNAME_2}.{WAIT_PRESS}\n" -.string "There{APOSTROPHE}s so much I want to ask you.\0" -.align 2, 0 - -.global gUnknown_82126F0 -gUnknown_82126F0: @ 82126F0 -.string " Yes...\0" -.align 2, 0 - -.global gUnknown_82126F8 -gUnknown_82126F8: @ 82126F8 -.string "......You{APOSTROPHE}re......{WAIT_PRESS} {ARG_NICKNAME_2}...\0" -.align 2, 0 - -.global gUnknown_8212718 -gUnknown_8212718: @ 8212718 -.string "......It{APOSTROPHE}s been a while......\0" -.align 2, 0 - -.global gUnknown_8212738 -gUnknown_8212738: @ 8212738 -.string "......That dream...... Again......\0" -.align 2, 0 - -.global gUnknown_821275C -gUnknown_821275C: @ 821275C -.string "......This............\0" -.align 2, 0 - -.global gUnknown_8212774 -gUnknown_8212774: @ 8212774 -.byte 0xf6, 0x00, 0x39, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x91, 0x04, 0x0b, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8212DF4 -gUnknown_8212DF4: @ 8212DF4 -.byte 0xf6, 0x00, 0xa4, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x08, 0x00, 0x00, 0x00, 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x0e, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x0e, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8212E64 -gUnknown_8212E64: @ 8212E64 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212DF4 - -.global gUnknown_8212E70 -gUnknown_8212E70: @ 8212E70 -.byte 0xf6, 0x00, 0xb0, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821205C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212028 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8212F40 -gUnknown_8212F40: @ 8212F40 -.byte 0xf6, 0x00, 0xc1, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8212F90 -gUnknown_8212F90: @ 8212F90 -.byte 0xf6, 0x00, 0xc9, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x08, 0x00, 0x00, 0x00, 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8213030 -gUnknown_8213030: @ 8213030 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212F90 - -.global gUnknown_821303C -gUnknown_821303C: @ 821303C -.byte 0xf6, 0x00, 0xd8, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 6 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x01, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821007C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821006C -closeTextBox -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8213B24 -closeTextBox -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xdd, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8213B0C -closeTextBox -pause 0x1e -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x2e, 0x0f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8213ABC -closeTextBox -pause 0x0a -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8213A84 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8213A64 -closeTextBox -pause 0x0a -.byte 0x2e, 0x15, 0x01, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8213A50 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8213A24 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82139F0 -closeTextBox -pause 0x0a -.byte 0x2e, 0x02, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82139DC -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82139A4 -.byte 0x2e, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8213978 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821393C -closeTextBox -pause 0x0a -.byte 0x2e, 0x15, 0x01, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8213904 -closeTextBox -pause 0x0a -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82138FC -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82138C0 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8213890 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8213880 -closeTextBox -pause 0x0a -.byte 0x2e, 0x15, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8213860 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821382C -closeTextBox -pause 0x0a -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82137F8 -closeTextBox -pause 0x0a -.byte 0x2e, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82137F0 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82137B4 -closeTextBox -pause 0x0a -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8213798 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821375C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8213738 -closeTextBox -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82136F8 -closeTextBox -pause 0x0a -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82136E0 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82136CC -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82136B0 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8213698 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821365C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821364C -closeTextBox -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -setFlag 0x03 -closeThread - -.global gUnknown_821364C -gUnknown_821364C: @ 821364C -.string " Au revoir...\0" -.align 2, 0 - -.global gUnknown_821365C -gUnknown_821365C: @ 821365C -.string " I think I can tell you when\n" -.string "this adventure is finished.\0" -.align 2, 0 - -.global gUnknown_8213698 -gUnknown_8213698: @ 8213698 -.string " When the time comes...\0" -.align 2, 0 - -.global gUnknown_82136B0 -gUnknown_82136B0: @ 82136B0 -.string "Why did I become a Pokémon?\0" -.align 2, 0 - -.global gUnknown_82136CC -gUnknown_82136CC: @ 82136CC -.string "What is my role?\0" -.align 2, 0 - -.global gUnknown_82136E0 -gUnknown_82136E0: @ 82136E0 -.string "Gardevoir{COMMA} tell me!\0" -.align 2, 0 - -.global gUnknown_82136F8 -gUnknown_82136F8: @ 82136F8 -.string " Now{COMMA} that role...{WAIT_PRESS}\n" -.string "is finally drawing to its conclusion.\0" -.align 2, 0 - -.global gUnknown_8213738 -gUnknown_8213738: @ 8213738 -.string " And that role brought\n" -.string "you here.\0" -.align 2, 0 - -.global gUnknown_821375C -gUnknown_821375C: @ 821375C -.string " You became a Pokémon in\n" -.string "order to fulfill a certain role...\0" -.align 2, 0 - -.global gUnknown_8213798 -gUnknown_8213798: @ 8213798 -.string "My role...{WAIT_PRESS}\n" -.string "is ending...?\0" -.align 2, 0 - -.global gUnknown_82137B4 -gUnknown_82137B4: @ 82137B4 -.string " Your role...{WAIT_PRESS}\n" -.string "is coming to its end{COMMA} little by little.\0" -.align 2, 0 - -.global gUnknown_82137F0 -gUnknown_82137F0: @ 82137F0 -.string "...Huh?\0" -.align 2, 0 - -.global gUnknown_82137F8 -gUnknown_82137F8: @ 82137F8 -.string " But...{WAIT_PRESS}\n" -.string "There is one thing that I can foresee.\0" -.align 2, 0 - -.global gUnknown_821382C -gUnknown_821382C: @ 821382C -.string "I{APOSTROPHE}m happy you tried to cheer me up.\n" -.string "Thank you.\0" -.align 2, 0 - -.global gUnknown_8213860 -gUnknown_8213860: @ 8213860 -.string "No{COMMA} no.\n" -.string "That{APOSTROPHE}s fine{COMMA} too.\0" -.align 2, 0 - -.global gUnknown_8213880 -gUnknown_8213880: @ 8213880 -.string " I{APOSTROPHE}m sorry...\0" -.align 2, 0 - -.global gUnknown_8213890 -gUnknown_8213890: @ 8213890 -.string " No. I only wanted to give\n" -.string "you encouragement...\0" -.align 2, 0 - -.global gUnknown_82138C0 -gUnknown_82138C0: @ 82138C0 -.string "I thought maybe you knew something{COMMA}\n" -.string "the way you said it.\0" -.align 2, 0 - -.global gUnknown_82138FC -gUnknown_82138FC: @ 82138FC -.string "...OK.\0" -.align 2, 0 - -.global gUnknown_8213904 -gUnknown_8213904: @ 8213904 -.string " No... I{APOSTROPHE}m sorry to say...{WAIT_PRESS}\n" -.string "I can{APOSTROPHE}t envision it...\0" -.align 2, 0 - -.global gUnknown_821393C -gUnknown_821393C: @ 821393C -.string "What it{APOSTROPHE}s like underground?{WAIT_PRESS}\n" -.string "Or what Groudon is like?\0" -.align 2, 0 - -.global gUnknown_8213978 -gUnknown_8213978: @ 8213978 -.string "By the way...{WAIT_PRESS}\n" -.string "Gardevoir{COMMA} do you know?\0" -.align 2, 0 - -.global gUnknown_82139A4 -gUnknown_82139A4: @ 82139A4 -.string "I{APOSTROPHE}m feeling a little braver now.\n" -.string "I will go for it.\0" -.align 2, 0 - -.global gUnknown_82139DC -gUnknown_82139DC: @ 82139DC -.string "I will. Thank you.\0" -.align 2, 0 - -.global gUnknown_82139F0 -gUnknown_82139F0: @ 82139F0 -.string " You have my support.\n" -.string "Please{COMMA} go with strength.\0" -.align 2, 0 - -.global gUnknown_8213A24 -gUnknown_8213A24: @ 8213A24 -.string " I am certain that you\n" -.string "will succeed{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_8213A50 -gUnknown_8213A50: @ 8213A50 -.string " You will be fine.\0" -.align 2, 0 - -.global gUnknown_8213A64 -gUnknown_8213A64: @ 8213A64 -.string "I wonder if we{APOSTROPHE}ll be OK...\0" -.align 2, 0 - -.global gUnknown_8213A84 -gUnknown_8213A84: @ 8213A84 -.string "Yes.{WAIT_PRESS} They make it sound like one\n" -.string "terrible place...\0" -.align 2, 0 - -.global gUnknown_8213ABC -gUnknown_8213ABC: @ 8213ABC -.string " It{APOSTROPHE}s tomorrow{COMMA} isn{APOSTROPHE}t it?{WAIT_PRESS}\n" -.string "That you take to that underground dungeon.\0" -.align 2, 0 - -.global gUnknown_8213B0C -gUnknown_8213B0C: @ 8213B0C -.string "............{WAIT_PRESS}{ARG_NICKNAME_1}...\0" -.align 2, 0 - -.global gUnknown_8213B24 -gUnknown_8213B24: @ 8213B24 -.string "......I{APOSTROPHE}m......{WAIT_PRESS}\n" -.string "In that dream again...\0" -.align 2, 0 - -.global gUnknown_8213B50 -gUnknown_8213B50: @ 8213B50 -.byte 0xf6, 0x00, 0x3c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x91, 0x04, 0x0b, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 31 -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8214480 -gUnknown_8214480: @ 8214480 -.byte 0xf6, 0x00, 0xd2, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x08, 0x00, 0x00, 0x00, 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x27, 0x00, 0x05, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8214520 -gUnknown_8214520: @ 8214520 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8214480 - -.global gUnknown_821452C -gUnknown_821452C: @ 821452C -.byte 0xf6, 0x00, 0xe1, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 6 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x02, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x2e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821579C -closeTextBox -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xdd, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215774 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821575C -closeTextBox -pause 0x0a -.byte 0x2e, 0x0f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8212628 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215744 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215728 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215700 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82156EC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82156D0 -closeTextBox -pause 0x0a -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215690 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215658 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821563C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82155E0 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82155C0 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82155A0 -closeTextBox -pause 0x0a -.byte 0x2e, 0x15, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215568 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215540 -closeTextBox -pause 0x0a -.byte 0x2e, 0x15, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215504 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82154E4 -closeTextBox -pause 0x0a -.byte 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82154AC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215490 -closeTextBox -pause 0x0a -.byte 0x2e, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821544C -closeTextBox -pause 0x0a -.byte 0x2e, 0x15, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821541C -closeTextBox -pause 0x0a -.byte 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82153F8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82153C4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821539C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215368 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215340 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82152DC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215294 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215268 -closeTextBox -pause 0x0a -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215254 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215234 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82151F8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82151C4 -closeTextBox -pause 0x0a -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215174 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215148 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215120 -closeTextBox -pause 0x0a -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82150F0 -.byte 0x2e, 0x15, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82150D4 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82150A4 -closeTextBox -pause 0x0a -.byte 0x2e, 0x15, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215084 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215058 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215030 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821500C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8214FE8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8214FA8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8214F74 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8214F4C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8214F2C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8214EF4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8214EB0 -closeTextBox -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xe5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x28, 0x01, 0x05, 0x00, 0x18, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x27, 0x00, 0x05, 0x00, 0x18, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x15, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8214E94 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8214E40 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8214E10 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8214DD4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8214DA4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8214D6C -closeTextBox -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -setFlag 0x03 -closeThread - -.global gUnknown_8214D6C -gUnknown_8214D6C: @ 8214D6C -.string " ............{WAIT_PRESS}\n" -.string "It will be morning soon.{WAIT_PRESS}\n" -.string "Au revoir.\0" -.align 2, 0 - -.global gUnknown_8214DA4 -gUnknown_8214DA4: @ 8214DA4 -.string " ...That Pokémon...\n" -.string "I think ran off crying...\0" -.align 2, 0 - -.global gUnknown_8214DD4 -gUnknown_8214DD4: @ 8214DD4 -.string " ...All that remains in this\n" -.string "dream is a feeling of sadness.\0" -.align 2, 0 - -.global gUnknown_8214E10 -gUnknown_8214E10: @ 8214E10 -.string " But it is fine now.\n" -.string "Whoever it was ran off.\0" -.align 2, 0 - -.global gUnknown_8214E40 -gUnknown_8214E40: @ 8214E40 -.string " ............{WAIT_PRESS}Who was it?{WAIT_PRESS}\n" -.string "Someone appears to have been looking\n" -.string "into your dream.\0" -.align 2, 0 - -.global gUnknown_8214E94 -gUnknown_8214E94: @ 8214E94 -.string "...!{WAIT_PRESS} W-what was that?!\0" -.align 2, 0 - -.global gUnknown_8214EB0 -gUnknown_8214EB0: @ 8214EB0 -.string " ......{WAIT_PRESS}\n" -.string "But...{WAIT_PRESS} We will meet again...{WAIT_PRESS}\n" -.string "That is what I believe.\0" -.align 2, 0 - -.global gUnknown_8214EF4 -gUnknown_8214EF4: @ 8214EF4 -.string " It fills me with sadness\n" -.string "still{COMMA} losing my friend...\0" -.align 2, 0 - -.global gUnknown_8214F2C -gUnknown_8214F2C: @ 8214F2C -.string " But my friend has gone\n" -.string "away.\0" -.align 2, 0 - -.global gUnknown_8214F4C -gUnknown_8214F4C: @ 8214F4C -.string " Truly{COMMA} I cherished our\n" -.string "friendship...\0" -.align 2, 0 - -.global gUnknown_8214F74 -gUnknown_8214F74: @ 8214F74 -.string " ...{WAIT_PRESS}I{COMMA} too{COMMA} once had\n" -.string "a friend beyond value.\0" -.align 2, 0 - -.global gUnknown_8214FA8 -gUnknown_8214FA8: @ 8214FA8 -.string " Because there are\n" -.string "encounters{COMMA} there are also farewells...\0" -.align 2, 0 - -.global gUnknown_8214FE8 -gUnknown_8214FE8: @ 8214FE8 -.string " ...But there can be nothing\n" -.string "done.\0" -.align 2, 0 - -.global gUnknown_821500C -gUnknown_821500C: @ 821500C -.string " Your friend would be\n" -.string "heartbroken.\0" -.align 2, 0 - -.global gUnknown_8215030 -gUnknown_8215030: @ 8215030 -.string " So{COMMA} {ARG_NICKNAME_0}{COMMA} if you\n" -.string "were to leave...\0" -.align 2, 0 - -.global gUnknown_8215058 -gUnknown_8215058: @ 8215058 -.string " {ARG_NICKNAME_1} feels great\n" -.string "kinship with you{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_8215084 -gUnknown_8215084: @ 8215084 -.string "{ARG_NICKNAME_1}......{WAIT_PRESS}\n" -.string "I have to leave?\0" -.align 2, 0 - -.global gUnknown_82150A4 -gUnknown_82150A4: @ 82150A4 -.string " Yes.{WAIT_PRESS} It means...{WAIT_PRESS}\n" -.string "Parting ways with {ARG_NICKNAME_1}.\0" -.align 2, 0 - -.global gUnknown_82150D4 -gUnknown_82150D4: @ 82150D4 -.string "Wait!{WAIT_PRESS}\n" -.string "But that means...\0" -.align 2, 0 - -.global gUnknown_82150F0 -gUnknown_82150F0: @ 82150F0 -.string "Oh...{WAIT_PRESS}\n" -.string "So I can go back to being a human...\0" -.align 2, 0 - -.global gUnknown_8215120 -gUnknown_8215120: @ 8215120 -.string " You can return to your\n" -.string "human world.\0" -.align 2, 0 - -.global gUnknown_8215148 -gUnknown_8215148: @ 8215148 -.string " Yes.{WAIT_PRESS}\n" -.string "And when that is accomplished...\0" -.align 2, 0 - -.global gUnknown_8215174 -gUnknown_8215174: @ 8215174 -.string "...{WAIT_PRESS}Stopping the meteor from\n" -.string "crashing into this world...?{WAIT_PRESS}\n" -.string "That{APOSTROPHE}s my role?\0" -.align 2, 0 - -.global gUnknown_82151C4 -gUnknown_82151C4: @ 82151C4 -.string " And that role...{WAIT_PRESS}\n" -.string "It is soon coming to its end.\0" -.align 2, 0 - -.global gUnknown_82151F8 -gUnknown_82151F8: @ 82151F8 -.string " Without question{COMMA} you bear\n" -.string "the role of saving the world.\0" -.align 2, 0 - -.global gUnknown_8215234 -gUnknown_8215234: @ 8215234 -.string " Your courage has been\n" -.string "proven.\0" -.align 2, 0 - -.global gUnknown_8215254 -gUnknown_8215254: @ 8215254 -.string "I...{WAIT_PRESS}\n" -.string "I did that?\0" -.align 2, 0 - -.global gUnknown_8215268 -gUnknown_8215268: @ 8215268 -.string " That is how you came to\n" -.string "be in this world.\0" -.align 2, 0 - -.global gUnknown_8215294 -gUnknown_8215294: @ 8215294 -.string " And became a Pokémon of\n" -.string "your own will to fight alongside your\n" -.string "friends.\0" -.align 2, 0 - -.global gUnknown_82152DC -gUnknown_82152DC: @ 82152DC -.string " To fulfill your role\n" -.string "clear of heart and mind{COMMA} you then chose\n" -.string "to erase your memory as a human...\0" -.align 2, 0 - -.global gUnknown_8215340 -gUnknown_8215340: @ 8215340 -.string " Then you were to be told\n" -.string "the truth.\0" -.align 2, 0 - -.global gUnknown_8215368 -gUnknown_8215368: @ 8215368 -.string " And only if you were found\n" -.string "to be truly worthy...\0" -.align 2, 0 - -.global gUnknown_821539C -gUnknown_821539C: @ 821539C -.string " You asked that we put you\n" -.string "to the test.\0" -.align 2, 0 - -.global gUnknown_82153C4 -gUnknown_82153C4: @ 82153C4 -.string " To see if you were worthy\n" -.string "to be our hero or not...\0" -.align 2, 0 - -.global gUnknown_82153F8 -gUnknown_82153F8: @ 82153F8 -.string " It was then that you said\n" -.string "this.\0" -.align 2, 0 - -.global gUnknown_821541C -gUnknown_821541C: @ 821541C -.string " That{COMMA} too{COMMA} is what\n" -.string "you said when we met.\0" -.align 2, 0 - -.global gUnknown_821544C -gUnknown_821544C: @ 821544C -.string "True courage...?{WAIT_PRESS}\n" -.string "That...{WAIT_PRESS} I{APOSTROPHE}m even less confident about that.\0" -.align 2, 0 - -.global gUnknown_8215490 -gUnknown_8215490: @ 8215490 -.string " We sought true courage.\0" -.align 2, 0 - -.global gUnknown_82154AC -gUnknown_82154AC: @ 82154AC -.string " But what we sought was\n" -.string "not power merely for display...\0" -.align 2, 0 - -.global gUnknown_82154E4 -gUnknown_82154E4: @ 82154E4 -.string " You said you were not\n" -.string "strong.\0" -.align 2, 0 - -.global gUnknown_8215504 -gUnknown_8215504: @ 8215504 -.string " Yes.{WAIT_PRESS} That is also what you\n" -.string "said the first time we met.\0" -.align 2, 0 - -.global gUnknown_8215540 -gUnknown_8215540: @ 8215540 -.string "I{APOSTROPHE}m not anything special like that?!\0" -.align 2, 0 - -.global gUnknown_8215568 -gUnknown_8215568: @ 8215568 -.string "Wa... {WAIT_PRESS}Wait a second!{WAIT_PRESS}\n" -.string "Hero? Me? That{APOSTROPHE}s too much!\0" -.align 2, 0 - -.global gUnknown_82155A0 -gUnknown_82155A0: @ 82155A0 -.string " {ARG_NICKNAME_0}...{WAIT_PRESS}\n" -.string "You were that human.\0" -.align 2, 0 - -.global gUnknown_82155C0 -gUnknown_82155C0: @ 82155C0 -.string " When we came across\n" -.string "a human.\0" -.align 2, 0 - -.global gUnknown_82155E0 -gUnknown_82155E0: @ 82155E0 -.string " But though we searched{COMMA}\n" -.string "nowhere could we find our hero.\n" -.string "We were becoming discouraged...\0" -.align 2, 0 - -.global gUnknown_821563C -gUnknown_821563C: @ 821563C -.string " And so we sought a hero.\0" -.align 2, 0 - -.global gUnknown_8215658 -gUnknown_8215658: @ 8215658 -.string " Yes.{WAIT_PRESS} We learned that\n" -.string "this world faced extinction.\0" -.align 2, 0 - -.global gUnknown_8215690 -gUnknown_8215690: @ 8215690 -.string "............{WAIT_PRESS}\n" -.string "Came to save the world of Pokémon?{WAIT_PRESS}\n" -.string "I did...?\0" -.align 2, 0 - -.global gUnknown_82156D0 -gUnknown_82156D0: @ 82156D0 -.string " Come to save this world.\0" -.align 2, 0 - -.global gUnknown_82156EC -gUnknown_82156EC: @ 82156EC -.string " {ARG_NICKNAME_0}{COMMA} you have...\0" -.align 2, 0 - -.global gUnknown_8215700 -gUnknown_8215700: @ 8215700 -.string " I will tell you all there is\n" -.string "to tell.\0" -.align 2, 0 - -.global gUnknown_8215728 -gUnknown_8215728: @ 8215728 -.string " Why you have come here?\0" -.align 2, 0 - -.global gUnknown_8215744 -gUnknown_8215744: @ 8215744 -.string " The time has arrived.\0" -.align 2, 0 - -.global gUnknown_821575C -gUnknown_821575C: @ 821575C -.string "Who or what I am...?\0" -.align 2, 0 - -.global gUnknown_8215774 -gUnknown_8215774: @ 8215774 -.string "Gardevoir...{WAIT_PRESS}\n" -.string "Will you tell me now?\0" -.align 2, 0 - -.global gUnknown_821579C -gUnknown_821579C: @ 821579C -.string "............{WAIT_PRESS}Gardevoir...?\0" -.align 2, 0 - -.global gUnknown_82157B8 -gUnknown_82157B8: @ 82157B8 -.byte 0xf6, 0x00, 0x7b, 0x04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x54, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x54, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x91, 0x04, 0x0b, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x54, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x54, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8215D28 -gUnknown_8215D28: @ 8215D28 -.byte 0xf6, 0x00, 0xd5, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x0e, 0x00 -.byte 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x0e, 0x00 -.byte 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8215D98 -gUnknown_8215D98: @ 8215D98 -.byte 0x90, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215D28 - -.global gUnknown_8215DA4 -gUnknown_8215DA4: @ 8215DA4 -.byte 0xf6, 0x00, 0xe1, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 6 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8215120 -closeTextBox -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8215E54 -gUnknown_8215E54: @ 8215E54 -.byte 0xf6, 0x00, 0xf0, 0x04, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_820FD70 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8215EA4 -gUnknown_8215EA4: @ 8215EA4 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x13, 0x02, 0x02 -.4byte gUnknown_820FE54 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8215EBC -gUnknown_8215EBC: @ 8215EBC -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x13, 0x02, 0x02 -.4byte gUnknown_8210190 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8215ED4 -gUnknown_8215ED4: @ 8215ED4 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x13, 0x02, 0x02 -.4byte gUnknown_8210568 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8215EEC -gUnknown_8215EEC: @ 8215EEC -.byte 0x52, 0x00, 0x00, 0x00, 0x1e, 0x11, 0x02, 0x02 -.4byte gUnknown_82107FC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8215F04 -gUnknown_8215F04: @ 8215F04 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x13, 0x02, 0x02 -.4byte gUnknown_8210C68 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8215F1C -gUnknown_8215F1C: @ 8215F1C -.byte 0x52, 0x00, 0x00, 0x00, 0x1e, 0x11, 0x02, 0x02 -.4byte gUnknown_821124C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8215F34 -gUnknown_8215F34: @ 8215F34 -.byte 0x52, 0x04, 0x00, 0x00, 0x1e, 0x13, 0x02, 0x02 -.4byte gUnknown_82116B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8215F4C -gUnknown_8215F4C: @ 8215F4C -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x13, 0x02, 0x02 -.4byte gUnknown_82118A0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8215F64 -gUnknown_8215F64: @ 8215F64 -.byte 0x52, 0x00, 0x00, 0x00, 0x1e, 0x11, 0x02, 0x02 -.4byte gUnknown_8212774 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8215F7C -gUnknown_8215F7C: @ 8215F7C -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x13, 0x02, 0x02 -.4byte gUnknown_8212E70 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x07, 0x00, 0x00, 0x1e, 0x11, 0x02, 0x02 -.4byte gUnknown_8212F40 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8215FAC -gUnknown_8215FAC: @ 8215FAC -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x13, 0x02, 0x02 -.4byte gUnknown_821303C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8215FC4 -gUnknown_8215FC4: @ 8215FC4 -.byte 0x52, 0x00, 0x00, 0x00, 0x1e, 0x11, 0x02, 0x02 -.4byte gUnknown_8213B50 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8215FDC -gUnknown_8215FDC: @ 8215FDC -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x13, 0x02, 0x02 -.4byte gUnknown_821452C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8215FF4 -gUnknown_8215FF4: @ 8215FF4 -.byte 0x52, 0x00, 0x00, 0x00, 0x1e, 0x11, 0x02, 0x02 -.4byte gUnknown_82157B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821600C -gUnknown_821600C: @ 821600C -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x13, 0x02, 0x02 -.4byte gUnknown_8215DA4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x07, 0x00, 0x00, 0x1e, 0x11, 0x02, 0x02 -.4byte gUnknown_8215E54 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821603C -gUnknown_821603C: @ 821603C -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x13, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8216048 -gUnknown_8216048: @ 8216048 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x13, 0x02, 0x02 -.4byte gUnknown_8210150 - -.global gUnknown_8216054 -gUnknown_8216054: @ 8216054 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x13, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8216060 -gUnknown_8216060: @ 8216060 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x13, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821606C -gUnknown_821606C: @ 821606C -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x13, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8216078 -gUnknown_8216078: @ 8216078 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x1e, 0x13, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8216084 -gUnknown_8216084: @ 8216084 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x13, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8216090 -gUnknown_8216090: @ 8216090 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x13, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821609C -gUnknown_821609C: @ 821609C -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x13, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82160A8 -gUnknown_82160A8: @ 82160A8 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x13, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82160B4 -gUnknown_82160B4: @ 82160B4 -.4byte gUnknown_820FD9C - -.global gUnknown_82160B8 -gUnknown_82160B8: @ 82160B8 -.4byte gUnknown_820FE48 - -.global gUnknown_82160BC -gUnknown_82160BC: @ 82160BC -.4byte gUnknown_8210144 - -.global gUnknown_82160C0 -gUnknown_82160C0: @ 82160C0 -.4byte gUnknown_821055C - -.global gUnknown_82160C4 -gUnknown_82160C4: @ 82160C4 -.4byte gUnknown_8210C5C - -.global gUnknown_82160C8 -gUnknown_82160C8: @ 82160C8 -.4byte gUnknown_82116AC - -.global gUnknown_82160CC -gUnknown_82160CC: @ 82160CC -.4byte gUnknown_8211894 - -.global gUnknown_82160D0 -gUnknown_82160D0: @ 82160D0 -.4byte gUnknown_8212E64 - -.global gUnknown_82160D4 -gUnknown_82160D4: @ 82160D4 -.4byte gUnknown_8213030 - -.global gUnknown_82160D8 -gUnknown_82160D8: @ 82160D8 -.4byte gUnknown_8214520 - -.global gUnknown_82160DC -gUnknown_82160DC: @ 82160DC -.4byte gUnknown_8215D98 - -.global gUnknown_82160E0 -gUnknown_82160E0: @ 82160E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82160B4 - -.global gUnknown_8216108 -gUnknown_8216108: @ 8216108 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8215EA4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821603C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82160B8 - -.global gUnknown_8216130 -gUnknown_8216130: @ 8216130 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8215EBC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8216048 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82160BC - -.global gUnknown_8216158 -gUnknown_8216158: @ 8216158 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8215ED4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8216054 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82160C0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8215EEC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82161A8 -gUnknown_82161A8: @ 82161A8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8215F04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8216060 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82160C4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8215F1C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82161F8 -gUnknown_82161F8: @ 82161F8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8215F34 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821606C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82160C8 - -.global gUnknown_8216220 -gUnknown_8216220: @ 8216220 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8215F4C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8216078 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82160CC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8215F64 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8216270 -gUnknown_8216270: @ 8216270 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8215F7C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8216084 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82160D0 - -.global gUnknown_8216298 -gUnknown_8216298: @ 8216298 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8215FAC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8216090 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82160D4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8215FC4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82162E8 -gUnknown_82162E8: @ 82162E8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8215FDC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821609C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82160D8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8215FF4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8216338 -gUnknown_8216338: @ 8216338 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_821600C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82160A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82160DC - -.global gUnknown_8216360 -gUnknown_8216360: @ 8216360 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82160E0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8216108 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8216130 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8216158 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82161A8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82161F8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8216220 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8216270 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8216298 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82162E8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8216338 - -.global gUnknown_82163B8 -gUnknown_82163B8: @ 82163B8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82163C0 -gUnknown_82163C0: @ 82163C0 -.byte 0x0b, 0x00, 0x00, 0x00 -.4byte gUnknown_8216360 -.4byte gUnknown_82163B8 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_82163D4 -gUnknown_82163D4: @ 82163D4 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8216414 -.byte 0x08, 0x00, 0x00, 0x00, 0xa3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8216414 -gUnknown_8216414: @ 8216414 -.string "../data/ground/ground_data_a01p02_station.c\0" -.align 2, 0 - -.global gUnknown_8216440 -gUnknown_8216440: @ 8216440 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82163D4 - -.global gUnknown_821644C -gUnknown_821644C: @ 821644C -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8216414 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xa3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8216580 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8216570 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821654C -closeTextBox -pause 0x0a -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x45, 0x00, 0x78, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821654C -gUnknown_821654C: @ 821654C -.string "...Urgggh...{WAIT_PRESS} I feel horrible...\0" -.align 2, 0 - -.global gUnknown_8216570 -gUnknown_8216570: @ 8216570 -.string "............\0" -.align 2, 0 - -.global gUnknown_8216580 -gUnknown_8216580: @ 8216580 -.string "......\0" -.align 2, 0 - -.global gUnknown_8216588 -gUnknown_8216588: @ 8216588 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821644C - -.global gUnknown_8216594 -gUnknown_8216594: @ 8216594 -.byte 0xf6, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8216414 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x2e, 0x02, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82166B8 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8216684 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8216664 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8216664 -gUnknown_8216664: @ 8216664 -.string "This is...{WAIT_PRESS} The first time...\0" -.align 2, 0 - -.global gUnknown_8216684 -gUnknown_8216684: @ 8216684 -.string "...But why...?{WAIT_PRESS}\n" -.string "Why do I feel this terrible...?\0" -.align 2, 0 - -.global gUnknown_82166B8 -gUnknown_82166B8: @ 82166B8 -.string "This is a dream...{WAIT_PRESS} Isn{APOSTROPHE}t it...?\0" -.align 2, 0 - -.global gUnknown_82166DC -gUnknown_82166DC: @ 82166DC -.byte 0xf6, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8216414 -.byte 0x08, 0x00, 0x00, 0x00, 0xa3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821674C -gUnknown_821674C: @ 821674C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82166DC - -.global gUnknown_8216758 -gUnknown_8216758: @ 8216758 -.byte 0xf6, 0x00, 0x46, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8216414 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8216884 -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821686C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8216848 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8216848 -gUnknown_8216848: @ 8216848 -.string "......It{APOSTROPHE}s going away............\0" -.align 2, 0 - -.global gUnknown_821686C -gUnknown_821686C: @ 821686C -.string "......The pain......\0" -.align 2, 0 - -.global gUnknown_8216884 -gUnknown_8216884: @ 8216884 -.string "..................\0" -.align 2, 0 - -.global gUnknown_8216898 -gUnknown_8216898: @ 8216898 -.byte 0xf6, 0x00, 0x59, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8216414 -.byte 0x08, 0x00, 0x00, 0x00, 0xa3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x00, 0x3c, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xfa, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00 -.byte 0x1e, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8216948 -gUnknown_8216948: @ 8216948 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8216898 - -.global gUnknown_8216954 -gUnknown_8216954: @ 8216954 -.byte 0xf6, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8216414 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217F18 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217EF4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x02, 0x00, 0x46, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217EDC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217EA0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217E68 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217E50 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217E3C -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd4, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217E10 -.byte 0xd9, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217E00 -.byte 0xd9, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217DF0 -.byte 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217DCC -.byte 0xd4, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217DA0 -.byte 0xd9, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217D98 -.byte 0xd9, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217D94 -.byte 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217D60 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217D40 -.byte 0xd4, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217D24 -.byte 0xd9, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217D1C -.byte 0xd9, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217D14 -.byte 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217CEC -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217CD4 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217CB4 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217C8C -.byte 0xd4, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217C5C -.byte 0xd9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217C44 -.byte 0xd9, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217C2C -.byte 0xf4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217BF8 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217BD8 -.byte 0xf4, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd4, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217BB8 -.byte 0xd9, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217BA0 -.byte 0xd9, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217B80 -.byte 0xf4, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217B54 -.byte 0xf4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd4, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217B34 -.byte 0xd9, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217B10 -.byte 0xd9, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217AF0 -.byte 0xf4, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217AAC -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217A94 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217A60 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217A34 -.byte 0xd4, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82179E0 -.byte 0xd9, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217D98 -.byte 0xd9, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217D94 -.byte 0xf4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82179A4 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217988 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217950 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217920 -.byte 0xe7, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217D60 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217D40 -.byte 0xd4, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217D24 -.byte 0xd9, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217D1C -.byte 0xd9, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217D14 -.byte 0xf4, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217900 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82178E4 -.byte 0xe7, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82178B8 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217890 -.byte 0xd4, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217860 -.byte 0xd9, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217850 -.byte 0xd9, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217840 -.byte 0xf4, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217820 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82177CC -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821778C -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217754 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217730 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82176EC -.byte 0xd4, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82176A4 -.byte 0xd9, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217D98 -.byte 0xd9, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217D94 -.byte 0xf4, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217654 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82175EC -.byte 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82175D0 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217568 -.byte 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217554 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217504 -.byte 0xf4, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd4, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82174AC -.byte 0xd9, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821748C -.byte 0xd9, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217474 -.byte 0xf4, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217448 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82173EC -.byte 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217394 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217374 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821735C -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821733C -.byte 0xd4, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217328 -.byte 0xd9, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217D98 -.byte 0xd9, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217D94 -.byte 0xf4, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217310 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82172E4 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82172CC -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821729C -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821727C -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217248 -.byte 0xe7, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8217214 -closeTextBox -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8217214 -gUnknown_8217214: @ 8217214 -.string "{CENTER_ALIGN}I understand now...\n" -.string "{CENTER_ALIGN}My questions are finished.\0" -.align 2, 0 - -.global gUnknown_8217248 -gUnknown_8217248: @ 8217248 -.string "{CENTER_ALIGN}{ARG_NICKNAME_3} felt hatred toward\n" -.string "{CENTER_ALIGN}{ARG_NICKNAME_2} for abandonment...\0" -.align 2, 0 - -.global gUnknown_821727C -gUnknown_821727C: @ 821727C -.string "{CENTER_ALIGN}Let me go back to my inquiry.\0" -.align 2, 0 - -.global gUnknown_821729C -gUnknown_821729C: @ 821729C -.string "{CENTER_ALIGN}............{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}You must be more serious.\0" -.align 2, 0 - -.global gUnknown_82172CC -gUnknown_82172CC: @ 82172CC -.string "{CENTER_ALIGN}Oh? You are confused?\0" -.align 2, 0 - -.global gUnknown_82172E4 -gUnknown_82172E4: @ 82172E4 -.string "{CENTER_ALIGN}Is there anything else you wish to say?\0" -.align 2, 0 - -.global gUnknown_8217310 -gUnknown_8217310: @ 8217310 -.string "{CENTER_ALIGN}This isn{APOSTROPHE}t the end?\0" -.align 2, 0 - -.global gUnknown_8217328 -gUnknown_8217328: @ 8217328 -.string "{CENTER_ALIGN}May I finish now?\0" -.align 2, 0 - -.global gUnknown_821733C -gUnknown_821733C: @ 821733C -.string "{CENTER_ALIGN}My queries will\n" -.string "{CENTER_ALIGN}end now.\0" -.align 2, 0 - -.global gUnknown_821735C -gUnknown_821735C: @ 821735C -.string "{CENTER_ALIGN}If that is true...\0" -.align 2, 0 - -.global gUnknown_8217374 -gUnknown_8217374: @ 8217374 -.string "{CENTER_ALIGN}Do you claim that seriously?\0" -.align 2, 0 - -.global gUnknown_8217394 -gUnknown_8217394: @ 8217394 -.string "{CENTER_ALIGN}Gengar would go through the trouble\n" -.string "{CENTER_ALIGN}of helping {ARG_NICKNAME_3} just so she\n" -.string "{CENTER_ALIGN}could be punished?\0" -.align 2, 0 - -.global gUnknown_82173EC -gUnknown_82173EC: @ 82173EC -.string "{CENTER_ALIGN}Gengar hopes to help {ARG_NICKNAME_3}\n" -.string "{CENTER_ALIGN}and clear up misunderstandings...{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}That is what you claim?\0" -.align 2, 0 - -.global gUnknown_8217448 -gUnknown_8217448: @ 8217448 -.string "{CENTER_ALIGN}I see.\n" -.string "{CENTER_ALIGN}To clear up misunderstandings.\0" -.align 2, 0 - -.global gUnknown_8217474 -gUnknown_8217474: @ 8217474 -.string "To punish Gardevoir.\0" -.align 2, 0 - -.global gUnknown_821748C -gUnknown_821748C: @ 821748C -.string "To clear up misunderstandings.\0" -.align 2, 0 - -.global gUnknown_82174AC -gUnknown_82174AC: @ 82174AC -.string "{CENTER_ALIGN}In spite of that{COMMA} {ARG_NICKNAME_2}\n" -.string "{CENTER_ALIGN}is trying to help Gardevoir...{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}Why should that be so?\0" -.align 2, 0 - -.global gUnknown_8217504 -gUnknown_8217504: @ 8217504 -.string "{CENTER_ALIGN}{ARG_NICKNAME_3} felt hatred toward\n" -.string "{CENTER_ALIGN}{ARG_NICKNAME_2} for abandonment...{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}That is what you claim?\0" -.align 2, 0 - -.global gUnknown_8217554 -gUnknown_8217554: @ 8217554 -.string "{CENTER_ALIGN}Hatred for {ARG_NICKNAME_2}...\0" -.align 2, 0 - -.global gUnknown_8217568 -gUnknown_8217568: @ 8217568 -.string "{CENTER_ALIGN}You believe that this is another matter?\n" -.string "{CENTER_ALIGN}And to help is only natural?{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}That is what you believe?\0" -.align 2, 0 - -.global gUnknown_82175D0 -gUnknown_82175D0: @ 82175D0 -.string "{CENTER_ALIGN}You say that is not so...\0" -.align 2, 0 - -.global gUnknown_82175EC -gUnknown_82175EC: @ 82175EC -.string "{CENTER_ALIGN}Gengar is coming to the help of\n" -.string "{CENTER_ALIGN}Gardevoir because he wants to help...{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}Is that what you claim?\0" -.align 2, 0 - -.global gUnknown_8217654 -gUnknown_8217654: @ 8217654 -.string "{CENTER_ALIGN}I see...\n" -.string "{CENTER_ALIGN}You say this because Gengar is\n" -.string "{CENTER_ALIGN}willing to face the consequences?\0" -.align 2, 0 - -.global gUnknown_82176A4 -gUnknown_82176A4: @ 82176A4 -.string "{CENTER_ALIGN}But now Gengar wants to save\n" -.string "{CENTER_ALIGN}Gardevoir. Isn{APOSTROPHE}t that asking a lot?\0" -.align 2, 0 - -.global gUnknown_82176EC -gUnknown_82176EC: @ 82176EC -.string "{CENTER_ALIGN}Until now{COMMA} {ARG_NICKNAME_2} had\n" -.string "{CENTER_ALIGN}forgotten entirely about\n" -.string "{CENTER_ALIGN}{ARG_NICKNAME_3}{COMMA} correct?\0" -.align 2, 0 - -.global gUnknown_8217730 -gUnknown_8217730: @ 8217730 -.string "{CENTER_ALIGN}It makes sense...{WAIT_PRESS} However...\0" -.align 2, 0 - -.global gUnknown_8217754 -gUnknown_8217754: @ 8217754 -.string "{CENTER_ALIGN}Having learned that{COMMA} {ARG_NICKNAME_2}\n" -.string "{CENTER_ALIGN}now wants to save {ARG_NICKNAME_3}...\0" -.align 2, 0 - -.global gUnknown_821778C -gUnknown_821778C: @ 821778C -.string "{CENTER_ALIGN}But even then{COMMA} Gardevoir never\n" -.string "{CENTER_ALIGN}stopped caring for {ARG_NICKNAME_2}...\0" -.align 2, 0 - -.global gUnknown_82177CC -gUnknown_82177CC: @ 82177CC -.string "{CENTER_ALIGN}{ARG_NICKNAME_3} became a presence\n" -.string "{CENTER_ALIGN}without a physical form because\n" -.string "{CENTER_ALIGN}she bore the curse...\0" -.align 2, 0 - -.global gUnknown_8217820 -gUnknown_8217820: @ 8217820 -.string "{CENTER_ALIGN}Caring for {ARG_NICKNAME_2}.{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}I see...\0" -.align 2, 0 - -.global gUnknown_8217840 -gUnknown_8217840: @ 8217840 -.string "Hatred for {ARG_NICKNAME_2}.\0" -.align 2, 0 - -.global gUnknown_8217850 -gUnknown_8217850: @ 8217850 -.string "Caring for {ARG_NICKNAME_2}.\0" -.align 2, 0 - -.global gUnknown_8217860 -gUnknown_8217860: @ 8217860 -.string "{CENTER_ALIGN}What do you claim to be\n" -.string "{CENTER_ALIGN}{ARG_NICKNAME_3}{APOSTROPHE}s feelings?\0" -.align 2, 0 - -.global gUnknown_8217890 -gUnknown_8217890: @ 8217890 -.string "{CENTER_ALIGN}What is it you claim to understand?\0" -.align 2, 0 - -.global gUnknown_82178B8 -gUnknown_82178B8: @ 82178B8 -.string "{CENTER_ALIGN}Came to understand\n" -.string "{CENTER_ALIGN}{ARG_NICKNAME_3}{APOSTROPHE}s feelings?\0" -.align 2, 0 - -.global gUnknown_82178E4 -gUnknown_82178E4: @ 82178E4 -.string "{CENTER_ALIGN}But {ARG_NICKNAME_2} abandoned\n" -.string "{CENTER_ALIGN}{ARG_NICKNAME_3}.\0" -.align 2, 0 - -.global gUnknown_8217900 -gUnknown_8217900: @ 8217900 -.string "{CENTER_ALIGN}You claim that isn{APOSTROPHE}t true?\0" -.align 2, 0 - -.global gUnknown_8217920 -gUnknown_8217920: @ 8217920 -.string "{CENTER_ALIGN}It was from her depth of\n" -.string "{CENTER_ALIGN}feeling for {ARG_NICKNAME_2}.\0" -.align 2, 0 - -.global gUnknown_8217950 -gUnknown_8217950: @ 8217950 -.string "{CENTER_ALIGN}{ARG_NICKNAME_3} saved {ARG_NICKNAME_2} from\n" -.string "{CENTER_ALIGN}the curse. That much is true.\0" -.align 2, 0 - -.global gUnknown_8217988 -gUnknown_8217988: @ 8217988 -.string "{CENTER_ALIGN}But that makes no sense.\0" -.align 2, 0 - -.global gUnknown_82179A4 -gUnknown_82179A4: @ 82179A4 -.string "{CENTER_ALIGN}The bond between {ARG_NICKNAME_2} and\n" -.string "{CENTER_ALIGN}{ARG_NICKNAME_3} you claim to be strong?\0" -.align 2, 0 - -.global gUnknown_82179E0 -gUnknown_82179E0: @ 82179E0 -.string "{CENTER_ALIGN}The bond between {ARG_NICKNAME_2} and\n" -.string "{CENTER_ALIGN}{ARG_NICKNAME_3} was that flimsy...{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}Is that what I am hearing?\0" -.align 2, 0 - -.global gUnknown_8217A34 -gUnknown_8217A34: @ 8217A34 -.string "{CENTER_ALIGN}But to {ARG_NICKNAME_2}{COMMA} {ARG_NICKNAME_3}\n" -.string "{CENTER_ALIGN}was merely a tool.\0" -.align 2, 0 - -.global gUnknown_8217A60 -gUnknown_8217A60: @ 8217A60 -.string "{CENTER_ALIGN}When {ARG_NICKNAME_2} was a human{COMMA}\n" -.string "{CENTER_ALIGN}{ARG_NICKNAME_3} was his partner.\0" -.align 2, 0 - -.global gUnknown_8217A94 -gUnknown_8217A94: @ 8217A94 -.string "{CENTER_ALIGN}And abandoned {ARG_NICKNAME_3}.\0" -.align 2, 0 - -.global gUnknown_8217AAC -gUnknown_8217AAC: @ 8217AAC -.string "{CENTER_ALIGN}That{APOSTROPHE}s right.{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}{ARG_NICKNAME_2} didn{APOSTROPHE}t want to\n" -.string "{CENTER_ALIGN}be cursed himself...\0" -.align 2, 0 - -.global gUnknown_8217AF0 -gUnknown_8217AF0: @ 8217AF0 -.string "Gengar intended to help later.\0" -.align 2, 0 - -.global gUnknown_8217B10 -gUnknown_8217B10: @ 8217B10 -.string "Gengar only cared about himself.\0" -.align 2, 0 - -.global gUnknown_8217B34 -gUnknown_8217B34: @ 8217B34 -.string "{CENTER_ALIGN}Why did {ARG_NICKNAME_2}\n" -.string "{CENTER_ALIGN}abandon {ARG_NICKNAME_3}?\0" -.align 2, 0 - -.global gUnknown_8217B54 -gUnknown_8217B54: @ 8217B54 -.string "{CENTER_ALIGN}Yes...{WAIT_PRESS} {ARG_NICKNAME_2} abandoned\n" -.string "{CENTER_ALIGN}{ARG_NICKNAME_3} and fled.\0" -.align 2, 0 - -.global gUnknown_8217B80 -gUnknown_8217B80: @ 8217B80 -.string "Abandoned Gardevoir and ran.\0" -.align 2, 0 - -.global gUnknown_8217BA0 -gUnknown_8217BA0: @ 8217BA0 -.string "Tried to protect {ARG_NICKNAME_3}.\0" -.align 2, 0 - -.global gUnknown_8217BB8 -gUnknown_8217BB8: @ 8217BB8 -.string "{CENTER_ALIGN}But what did {ARG_NICKNAME_2}\n" -.string "{CENTER_ALIGN}do then?\0" -.align 2, 0 - -.global gUnknown_8217BD8 -gUnknown_8217BD8: @ 8217BD8 -.string "{CENTER_ALIGN}Sacrificing herself to do so.\0" -.align 2, 0 - -.global gUnknown_8217BF8 -gUnknown_8217BF8: @ 8217BF8 -.string "{CENTER_ALIGN}{ARG_NICKNAME_3} certainly did protect\n" -.string "{CENTER_ALIGN}{ARG_NICKNAME_2} from the curse.\0" -.align 2, 0 - -.global gUnknown_8217C2C -gUnknown_8217C2C: @ 8217C2C -.string "Came to understand {ARG_NICKNAME_3}.\0" -.align 2, 0 - -.global gUnknown_8217C44 -gUnknown_8217C44: @ 8217C44 -.string "For taking the curse.\0" -.align 2, 0 - -.global gUnknown_8217C5C -gUnknown_8217C5C: @ 8217C5C -.string "{CENTER_ALIGN}Why would {ARG_NICKNAME_2}\n" -.string "{CENTER_ALIGN}want to save Gardevoir now?\0" -.align 2, 0 - -.global gUnknown_8217C8C -gUnknown_8217C8C: @ 8217C8C -.string "{CENTER_ALIGN}Didn{APOSTROPHE}t {ARG_NICKNAME_2} abandon\n" -.string "{CENTER_ALIGN}{ARG_NICKNAME_3} long ago?\0" -.align 2, 0 - -.global gUnknown_8217CB4 -gUnknown_8217CB4: @ 8217CB4 -.string "{CENTER_ALIGN}That{APOSTROPHE}s a lie{COMMA} isn{APOSTROPHE}t it?\0" -.align 2, 0 - -.global gUnknown_8217CD4 -gUnknown_8217CD4: @ 8217CD4 -.string "{CENTER_ALIGN}Let me ask you again.\0" -.align 2, 0 - -.global gUnknown_8217CEC -gUnknown_8217CEC: @ 8217CEC -.string "{CENTER_ALIGN}............{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}Please be serious.\0" -.align 2, 0 - -.global gUnknown_8217D14 -gUnknown_8217D14: @ 8217D14 -.string "I do.\0" -.align 2, 0 - -.global gUnknown_8217D1C -gUnknown_8217D1C: @ 8217D1C -.string "None.\0" -.align 2, 0 - -.global gUnknown_8217D24 -gUnknown_8217D24: @ 8217D24 -.string "{CENTER_ALIGN}You have\n" -.string "{CENTER_ALIGN}no regrets?\0" -.align 2, 0 - -.global gUnknown_8217D40 -gUnknown_8217D40: @ 8217D40 -.string "{CENTER_ALIGN}My questions\n" -.string "{CENTER_ALIGN}will end now.\0" -.align 2, 0 - -.global gUnknown_8217D60 -gUnknown_8217D60: @ 8217D60 -.string "{CENTER_ALIGN}............{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}If that is truly how you feel...\0" -.align 2, 0 - -.global gUnknown_8217D94 -gUnknown_8217D94: @ 8217D94 -.byte 0x4e, 0x6f, 0x2e, 0x00 - -.global gUnknown_8217D98 -gUnknown_8217D98: @ 8217D98 -.string "Yes.\0" -.align 2, 0 - -.global gUnknown_8217DA0 -gUnknown_8217DA0: @ 8217DA0 -.string "{CENTER_ALIGN}Do you truly...{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}truly believe that?\0" -.align 2, 0 - -.global gUnknown_8217DCC -gUnknown_8217DCC: @ 8217DCC -.string "{CENTER_ALIGN}............{WAIT_PRESS}Do you mean that?\0" -.align 2, 0 - -.global gUnknown_8217DF0 -gUnknown_8217DF0: @ 8217DF0 -.string "Just a whim.\0" -.align 2, 0 - -.global gUnknown_8217E00 -gUnknown_8217E00: @ 8217E00 -.string "To help {ARG_NICKNAME_3}.\0" -.align 2, 0 - -.global gUnknown_8217E10 -gUnknown_8217E10: @ 8217E10 -.string "{CENTER_ALIGN}Why does {ARG_NICKNAME_2} wish to\n" -.string "{CENTER_ALIGN}break this curse?\0" -.align 2, 0 - -.global gUnknown_8217E3C -gUnknown_8217E3C: @ 8217E3C -.string "{CENTER_ALIGN}First of all...\0" -.align 2, 0 - -.global gUnknown_8217E50 -gUnknown_8217E50: @ 8217E50 -.string "{CENTER_ALIGN}Fine...{WAIT_PRESS} It is time.\0" -.align 2, 0 - -.global gUnknown_8217E68 -gUnknown_8217E68: @ 8217E68 -.string "{CENTER_ALIGN}You have but one chance.{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}{ARG_NICKNAME_0}{COMMA}\n" -.string "{CENTER_ALIGN}do your best.\0" -.align 2, 0 - -.global gUnknown_8217EA0 -gUnknown_8217EA0: @ 8217EA0 -.string " Don{APOSTROPHE}t you dare fool around!\n" -.string "I{APOSTROPHE}ll make you pay for it!\0" -.align 2, 0 - -.global gUnknown_8217EDC -gUnknown_8217EDC: @ 8217EDC -.string " Gegege!\n" -.string "Hey{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8217EF4 -gUnknown_8217EF4: @ 8217EF4 -.string "{CENTER_ALIGN}The curse will never be broken.\0" -.align 2, 0 - -.global gUnknown_8217F18 -gUnknown_8217F18: @ 8217F18 -.string "{CENTER_ALIGN}If you fail to draw out {ARG_NICKNAME_2}{APOSTROPHE}s\n" -.string "{CENTER_ALIGN}true feelings...\0" -.align 2, 0 - -.global gUnknown_8217F50 -gUnknown_8217F50: @ 8217F50 -.byte 0xf6, 0x00, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8216414 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8217FD0 -gUnknown_8217FD0: @ 8217FD0 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x13, 0x02, 0x02 -.4byte gUnknown_8216594 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8217FE8 -gUnknown_8217FE8: @ 8217FE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x13, 0x02, 0x02 -.4byte gUnknown_8216758 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8218000 -gUnknown_8218000: @ 8218000 -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x11, 0x02, 0x02 -.4byte gUnknown_8216954 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x04, 0x00, 0x00 -.byte 0x1e, 0x15, 0x02, 0x02 -.4byte gUnknown_8217F50 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8218030 -gUnknown_8218030: @ 8218030 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x13, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821803C -gUnknown_821803C: @ 821803C -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x13, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8218048 -gUnknown_8218048: @ 8218048 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x13, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8218054 -gUnknown_8218054: @ 8218054 -.4byte gUnknown_8216440 - -.global gUnknown_8218058 -gUnknown_8218058: @ 8218058 -.4byte gUnknown_8216588 - -.global gUnknown_821805C -gUnknown_821805C: @ 821805C -.4byte gUnknown_821674C - -.global gUnknown_8218060 -gUnknown_8218060: @ 8218060 -.4byte gUnknown_8216948 - -.global gUnknown_8218064 -gUnknown_8218064: @ 8218064 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8218054 - -.global gUnknown_821808C -gUnknown_821808C: @ 821808C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8217FD0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8218030 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8218058 - -.global gUnknown_82180B4 -gUnknown_82180B4: @ 82180B4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8217FE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821803C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821805C - -.global gUnknown_82180DC -gUnknown_82180DC: @ 82180DC -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8218000 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8218048 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8218060 - -.global gUnknown_8218104 -gUnknown_8218104: @ 8218104 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8218064 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821808C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82180B4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82180DC - -.global gUnknown_8218124 -gUnknown_8218124: @ 8218124 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821812C -gUnknown_821812C: @ 821812C -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8218104 -.4byte gUnknown_8218124 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8218140 -gUnknown_8218140: @ 8218140 -.byte 0xf6, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8218180 -.byte 0x08, 0x00, 0x00, 0x00, 0xa4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8218180 -gUnknown_8218180: @ 8218180 -.string "../data/ground/ground_data_a02p01_station.c\0" -.align 2, 0 - -.global gUnknown_82181AC -gUnknown_82181AC: @ 82181AC -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8218140 - -.global gUnknown_82181B8 -gUnknown_82181B8: @ 82181B8 -.byte 0xf6, 0x00, 0x15, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8218180 -.byte 0x44, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0xa4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8218318 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82182E8 -.byte 0x39, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82182C8 -closeTextBox -.byte 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82182C8 -gUnknown_82182C8: @ 82182C8 -.string "{CENTER_ALIGN}Over forbidding mountains...\0" -.align 2, 0 - -.global gUnknown_82182E8 -gUnknown_82182E8: @ 82182E8 -.string "{CENTER_ALIGN}cruel and arduous\n" -.string "{CENTER_ALIGN}journey as a fugitive.\0" -.align 2, 0 - -.global gUnknown_8218318 -gUnknown_8218318: @ 8218318 -.string "{CENTER_ALIGN}Thus began\n" -.string "{CENTER_ALIGN}{ARG_NICKNAME_0}{APOSTROPHE}s\0" -.align 2, 0 - -.global gUnknown_8218330 -gUnknown_8218330: @ 8218330 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82181B8 - -.global gUnknown_821833C -gUnknown_821833C: @ 821833C -.byte 0xf6, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8218180 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x86, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x2e, 0x02, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8218434 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821840C -closeTextBox -setFlag 0x03 -closeThread - -.global gUnknown_821840C -gUnknown_821840C: @ 821840C -.string " Wow!\n" -.string "Aren{APOSTROPHE}t these fissures amazing?!\0" -.align 2, 0 - -.global gUnknown_8218434 -gUnknown_8218434: @ 8218434 -.string " Whoa!\n" -.string "These cracks go down deep!\0" -.align 2, 0 - -.global gUnknown_8218458 -gUnknown_8218458: @ 8218458 -.byte 0xf6, 0x00, 0x3d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8218180 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82184D8 -gUnknown_82184D8: @ 82184D8 -.byte 0x00, 0x02, 0x00, 0x00 -.byte 0x19, 0x13, 0x02, 0x02 -.4byte gUnknown_821833C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x02, 0x00, 0x00, 0x1a, 0x15, 0x02, 0x02 -.4byte gUnknown_8218458 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8218508 -gUnknown_8218508: @ 8218508 -.byte 0x00, 0x00, 0x01, 0x01, 0x28, 0x14, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8218514 -gUnknown_8218514: @ 8218514 -.4byte gUnknown_82181AC - -.global gUnknown_8218518 -gUnknown_8218518: @ 8218518 -.4byte gUnknown_8218330 - -.global gUnknown_821851C -gUnknown_821851C: @ 821851C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8218514 - -.global gUnknown_8218544 -gUnknown_8218544: @ 8218544 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82184D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8218508 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8218518 - -.global gUnknown_821856C -gUnknown_821856C: @ 821856C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821851C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8218544 - -.global gUnknown_821857C -gUnknown_821857C: @ 821857C -.byte 0x22, 0x13, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x23, 0x15, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00 - -.global gUnknown_821858C -gUnknown_821858C: @ 821858C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_821856C -.4byte gUnknown_821857C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_82185A0 -gUnknown_82185A0: @ 82185A0 -.byte 0xf6, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82185E0 -.byte 0x08, 0x00, 0x00, 0x00, 0xa5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82185E0 -gUnknown_82185E0: @ 82185E0 -.string "../data/ground/ground_data_a02p02_station.c\0" -.align 2, 0 - -.global gUnknown_821860C -gUnknown_821860C: @ 821860C -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82185A0 - -.global gUnknown_8218618 -gUnknown_8218618: @ 8218618 -.byte 0xf6, 0x00, 0x15, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82185E0 -.byte 0x44, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0xa5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821880C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x00, 0x00 -.byte 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82187C4 -.byte 0x39, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8218798 -closeTextBox -.byte 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x78, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8218798 -gUnknown_8218798: @ 8218798 -.string "{CENTER_ALIGN}Without a complaint{COMMA}\n" -.string "{CENTER_ALIGN}they marched on.\0" -.align 2, 0 - -.global gUnknown_82187C4 -gUnknown_82187C4: @ 82187C4 -.string "{CENTER_ALIGN}But throughout it all{COMMA}\n" -.string "{CENTER_ALIGN}{ARG_NICKNAME_0}{APOSTROPHE}s team kept\n" -.string "{CENTER_ALIGN}their heads held high.\0" -.align 2, 0 - -.global gUnknown_821880C -gUnknown_821880C: @ 821880C -.string "{CENTER_ALIGN}Across fields of fire...\0" -.align 2, 0 - -.global gUnknown_8218828 -gUnknown_8218828: @ 8218828 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8218618 - -.global gUnknown_8218834 -gUnknown_8218834: @ 8218834 -.byte 0xf6, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82185E0 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x6b, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, north -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x02, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8218A10 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82189D8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82189A8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8218984 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x80, 0xcc, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8218984 -gUnknown_8218984: @ 8218984 -.string " The forest fire is still\n" -.string "raging...\0" -.align 2, 0 - -.global gUnknown_82189A8 -gUnknown_82189A8: @ 82189A8 -.string " The environment is out\n" -.string "of control here too...\0" -.align 2, 0 - -.global gUnknown_82189D8 -gUnknown_82189D8: @ 82189D8 -.string " The forest fires are still\n" -.string "burning out of control...\0" -.align 2, 0 - -.global gUnknown_8218A10 -gUnknown_8218A10: @ 8218A10 -.string " Nature{APOSTROPHE}s gone savage\n" -.string "here too...\0" -.align 2, 0 - -.global gUnknown_8218A34 -gUnknown_8218A34: @ 8218A34 -.byte 0xf6, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82185E0 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, 0x0b, north -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x89, 0x80, 0xcc, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8218AF4 -gUnknown_8218AF4: @ 8218AF4 -.byte 0x00, 0x02, 0x00, 0x00, 0x06, 0x0c, 0x00, 0x02 -.4byte gUnknown_8218834 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x02, 0x00, 0x00, 0x01, 0x0c, 0x00, 0x02 -.4byte gUnknown_8218A34 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8218B24 -gUnknown_8218B24: @ 8218B24 -.byte 0x00, 0x00, 0x01, 0x01, 0x10, 0x0b, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8218B30 -gUnknown_8218B30: @ 8218B30 -.4byte gUnknown_821860C - -.global gUnknown_8218B34 -gUnknown_8218B34: @ 8218B34 -.4byte gUnknown_8218828 - -.global gUnknown_8218B38 -gUnknown_8218B38: @ 8218B38 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8218B30 - -.global gUnknown_8218B60 -gUnknown_8218B60: @ 8218B60 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8218AF4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8218B24 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8218B34 - -.global gUnknown_8218B88 -gUnknown_8218B88: @ 8218B88 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8218B38 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8218B60 - -.global gUnknown_8218B98 -gUnknown_8218B98: @ 8218B98 -.byte 0x12, 0x0c, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x0e, 0x0c, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00 - -.global gUnknown_8218BA8 -gUnknown_8218BA8: @ 8218BA8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8218B88 -.4byte gUnknown_8218B98 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8218BBC -gUnknown_8218BBC: @ 8218BBC -.byte 0xf6, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8218BFC -.byte 0x08, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8218BFC -gUnknown_8218BFC: @ 8218BFC -.string "../data/ground/ground_data_a02p03_station.c\0" -.align 2, 0 - -.global gUnknown_8218C28 -gUnknown_8218C28: @ 8218C28 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8218BBC - -.global gUnknown_8218C34 -gUnknown_8218C34: @ 8218C34 -.byte 0xf6, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8218BFC -.byte 0x08, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8218CA4 -gUnknown_8218CA4: @ 8218CA4 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8218C34 - -.global gUnknown_8218CB0 -gUnknown_8218CB0: @ 8218CB0 -.byte 0xf6, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8218BFC -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x6b, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x04, 0x0b, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8218E24 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8218E10 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8218E10 -gUnknown_8218E10: @ 8218E10 -.string " Oh{COMMA} no! Look!\0" -.align 2, 0 - -.global gUnknown_8218E24 -gUnknown_8218E24: @ 8218E24 -.string " Gasp... Gasp...\0" -.align 2, 0 - -.global gUnknown_8218E38 -gUnknown_8218E38: @ 8218E38 -.byte 0xf6, 0x00, 0x3b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8218BFC -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, west -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -.byte 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8218F08 -gUnknown_8218F08: @ 8218F08 -.byte 0xf6, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8218BFC -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x39, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821911C -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82190E8 -.byte 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82190C0 -closeTextBox -.byte 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8219098 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8219058 -closeTextBox -.byte 0x48, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0x3b, 0x39, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8219058 -gUnknown_8219058: @ 8219058 -.string " It can{APOSTROPHE}t be helped.\n" -.string "Only those brave enough will give chase!\0" -.align 2, 0 - -.global gUnknown_8219098 -gUnknown_8219098: @ 8219098 -.string " I don{APOSTROPHE}t wanna go anywhere like that.\0" -.align 2, 0 - -.global gUnknown_82190C0 -gUnknown_82190C0: @ 82190C0 -.string " No one{APOSTROPHE}s ever come this far\n" -.string "before!\0" -.align 2, 0 - -.global gUnknown_82190E8 -gUnknown_82190E8: @ 82190E8 -.string " Are they insane?\n" -.string "Mt. Blaze is doomed desolation!\0" -.align 2, 0 - -.global gUnknown_821911C -gUnknown_821911C: @ 821911C -.string " Look at them go!\n" -.string "They{APOSTROPHE}re running for Mt. Blaze!\0" -.align 2, 0 - -.global gUnknown_8219150 -gUnknown_8219150: @ 8219150 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8218F08 - -.global gUnknown_821915C -gUnknown_821915C: @ 821915C -.byte 0xf6, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8218BFC -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x02, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8219508 -closeTextBox -pause 0x14 -.byte 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82194D4 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82194B0 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821948C -closeTextBox -pause 0x14 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, southeast -.byte 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8219470 -closeTextBox -pause 0x2d -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8219458 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, west -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821944C -closeTextBox -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8219430 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821941C -closeTextBox -.byte 0x23, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -pause 0x05 -.byte 0x89, 0x50, 0x00, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -closeThread - -.global gUnknown_821941C -gUnknown_821941C: @ 821941C -.string " Let{APOSTROPHE}s go{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8219430 -gUnknown_8219430: @ 8219430 -.string " There{APOSTROPHE}s no choice now!\0" -.align 2, 0 - -.global gUnknown_821944C -gUnknown_821944C: @ 821944C -.string " Get them!\0" -.align 2, 0 - -.global gUnknown_8219458 -gUnknown_8219458: @ 8219458 -.string " Look! There they are!\0" -.align 2, 0 - -.global gUnknown_8219470 -gUnknown_8219470: @ 8219470 -.string " What{APOSTROPHE}ll we do{COMMA}\n" -.string "{ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_821948C -gUnknown_821948C: @ 821948C -.string " But they{APOSTROPHE}re catching up to\n" -.string "us...\0" -.align 2, 0 - -.global gUnknown_82194B0 -gUnknown_82194B0: @ 82194B0 -.string " Can we even make it\n" -.string "through there?\0" -.align 2, 0 - -.global gUnknown_82194D4 -gUnknown_82194D4: @ 82194D4 -.string " Look at all that lava\n" -.string "pouring from the crater...\0" -.align 2, 0 - -.global gUnknown_8219508 -gUnknown_8219508: @ 8219508 -.string " It... It{APOSTROPHE}s a mountain of fire!\0" -.align 2, 0 - -.global gUnknown_821952C -gUnknown_821952C: @ 821952C -.byte 0xf6, 0x00, 0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8218BFC -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, west -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, west -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x50, 0x00, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_821964C -gUnknown_821964C: @ 821964C -.byte 0x00, 0x02, 0x00, 0x00, 0x0e, 0x19, 0x02, 0x02 -.4byte gUnknown_8218CB0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x02, 0x00, 0x00, 0x12, 0x1b, 0x02, 0x02 -.4byte gUnknown_8218E38 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821967C -gUnknown_821967C: @ 821967C -.byte 0x00, 0x02, 0x00, 0x00, 0x1c, 0x19, 0x02, 0x02 -.4byte gUnknown_821915C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x02, 0x00, 0x00, 0x20, 0x1b, 0x02, 0x02 -.4byte gUnknown_821952C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82196AC -gUnknown_82196AC: @ 82196AC -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x1c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82196B8 -gUnknown_82196B8: @ 82196B8 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x1e, 0x1c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82196C4 -gUnknown_82196C4: @ 82196C4 -.4byte gUnknown_8218C28 - -.global gUnknown_82196C8 -gUnknown_82196C8: @ 82196C8 -.4byte gUnknown_8218CA4 - -.global gUnknown_82196CC -gUnknown_82196CC: @ 82196CC -.4byte gUnknown_8219150 - -.global gUnknown_82196D0 -gUnknown_82196D0: @ 82196D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82196C4 - -.global gUnknown_82196F8 -gUnknown_82196F8: @ 82196F8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_821964C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82196AC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82196C8 - -.global gUnknown_8219720 -gUnknown_8219720: @ 8219720 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_821967C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82196B8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82196CC - -.global gUnknown_8219748 -gUnknown_8219748: @ 8219748 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82196D0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82196F8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8219720 - -.global gUnknown_8219760 -gUnknown_8219760: @ 8219760 -.byte 0x1c, 0x19, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x20, 0x1b, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00 - -.global gUnknown_8219770 -gUnknown_8219770: @ 8219770 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8219748 -.4byte gUnknown_8219760 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8219784 -gUnknown_8219784: @ 8219784 -.byte 0xf6, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82197C4 -.byte 0x08, 0x00, 0x00, 0x00, 0xa7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82197C4 -gUnknown_82197C4: @ 82197C4 -.string "../data/ground/ground_data_a02p04_station.c\0" -.align 2, 0 - -.global gUnknown_82197F0 -gUnknown_82197F0: @ 82197F0 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8219784 - -.global gUnknown_82197FC -gUnknown_82197FC: @ 82197FC -.byte 0xf6, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82197C4 -.byte 0x08, 0x00, 0x00, 0x00, 0xa7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821986C -gUnknown_821986C: @ 821986C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82197FC - -.global gUnknown_8219878 -gUnknown_8219878: @ 8219878 -.byte 0xf6, 0x00, 0x24, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82197C4 -.byte 0x08, 0x00, 0x00, 0x00, 0xa7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x00, 0x00 -.byte 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8219B18 -.byte 0x39, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8219AE8 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8219AD4 -.byte 0x39, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8219AA4 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8219A88 -.byte 0x39, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8219A6C -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8219A28 -.byte 0x39, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82199F8 -.byte 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x00, 0x18, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82199F8 -gUnknown_82199F8: @ 82199F8 -.string "{CENTER_ALIGN}A frigid wasteland of\n" -.string "{CENTER_ALIGN}driving blizzards.\0" -.align 2, 0 - -.global gUnknown_8219A28 -gUnknown_8219A28: @ 8219A28 -.string "{CENTER_ALIGN}Till finally{COMMA} {ARG_NICKNAME_0}{APOSTROPHE}s tiny team\n" -.string "{CENTER_ALIGN}arrived in a world of snow...\0" -.align 2, 0 - -.global gUnknown_8219A6C -gUnknown_8219A6C: @ 8219A6C -.string "{CENTER_ALIGN}Scaled frozen cliffs...\0" -.align 2, 0 - -.global gUnknown_8219A88 -gUnknown_8219A88: @ 8219A88 -.string "{CENTER_ALIGN}Forded fetid swamps...\0" -.align 2, 0 - -.global gUnknown_8219AA4 -gUnknown_8219AA4: @ 8219AA4 -.string "{CENTER_ALIGN}They crossed row upon\n" -.string "{CENTER_ALIGN}row of mountains...\0" -.align 2, 0 - -.global gUnknown_8219AD4 -gUnknown_8219AD4: @ 8219AD4 -.string "{CENTER_ALIGN}They fled north.\0" -.align 2, 0 - -.global gUnknown_8219AE8 -gUnknown_8219AE8: @ 8219AE8 -.string "{CENTER_ALIGN}Seeking refuge in\n" -.string "{CENTER_ALIGN}even harsher places...\0" -.align 2, 0 - -.global gUnknown_8219B18 -gUnknown_8219B18: @ 8219B18 -.string "{CENTER_ALIGN}And so{COMMA} {ARG_NICKNAME_0}{APOSTROPHE}s\n" -.string "{CENTER_ALIGN}harrowing journey continued.\0" -.align 2, 0 - -.global gUnknown_8219B4C -gUnknown_8219B4C: @ 8219B4C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8219878 - -.global gUnknown_8219B58 -gUnknown_8219B58: @ 8219B58 -.byte 0xf6, 0x00, 0x42, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82197C4 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x99, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x23, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8219C28 -gUnknown_8219C28: @ 8219C28 -.byte 0xf6, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82197C4 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x50 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B5A4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B580 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B54C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B520 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B4F8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B4D8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x04, 0x0b, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B4B4 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B494 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B468 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B440 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B410 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B3F4 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B3C8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B394 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B378 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B35C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B348 -.byte 0x91, 0x04, 0x0b, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B308 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B2D0 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B290 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B270 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B244 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B208 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B1CC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B1A8 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B16C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B130 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B100 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B0DC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x00, 0xff, 0xff -.byte 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B090 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821B044 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AFF0 -.byte 0xd9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AFD8 -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AFA8 -.byte 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AF8C -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AF78 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AF58 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AF3C -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AF08 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AEDC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AEB0 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AE70 -closeTextBox -.byte 0xe7, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AE40 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AE0C -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821ADC8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AD8C -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AD50 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AD38 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AD08 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821ACE0 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821ACAC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AC78 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AC4C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AC04 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821ABD0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AB8C -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AB54 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AB18 -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AAF0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AAC8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AA8C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AA58 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AA8C -closeTextBox -.byte 0x91, 0x0a, 0x0b, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821AA24 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821A9FC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821A9D8 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821A9B4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821A998 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821A958 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821A938 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821A914 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821A8F8 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821A8C0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821A8A0 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821A914 -closeTextBox -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821A864 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821A828 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821A7E8 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821A7B4 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821A778 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821A748 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x6b, 0x00, 0x99, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821A748 -gUnknown_821A748: @ 821A748 -.string " Let{APOSTROPHE}s go{COMMA} {ARG_NICKNAME_0}!\n" -.string "I{APOSTROPHE}ll go wherever you go!\0" -.align 2, 0 - -.global gUnknown_821A778 -gUnknown_821A778: @ 821A778 -.string " ...Oh{COMMA} come on.\n" -.string "No need for that long face.\n" -.string "I{APOSTROPHE}m fine.\0" -.align 2, 0 - -.global gUnknown_821A7B4 -gUnknown_821A7B4: @ 821A7B4 -.string " Let{APOSTROPHE}s go{COMMA} {ARG_NICKNAME_0}!\n" -.string "I{APOSTROPHE}ll always stick with you!\0" -.align 2, 0 - -.global gUnknown_821A7E8 -gUnknown_821A7E8: @ 821A7E8 -.string " ...Oh{COMMA} please don{APOSTROPHE}t look\n" -.string "like that.\n" -.string "Honest{COMMA} I{APOSTROPHE}m fine.\0" -.align 2, 0 - -.global gUnknown_821A828 -gUnknown_821A828: @ 821A828 -.string " Let{APOSTROPHE}s roll{COMMA} {ARG_NICKNAME_0}!\n" -.string "I{APOSTROPHE}ll go with you wherever you go!\0" -.align 2, 0 - -.global gUnknown_821A864 -gUnknown_821A864: @ 821A864 -.string " ...Don{APOSTROPHE}t look that way\n" -.string "at me!\n" -.string "I{APOSTROPHE}m good. I{APOSTROPHE}m good!\0" -.align 2, 0 - -.global gUnknown_821A8A0 -gUnknown_821A8A0: @ 821A8A0 -.string " And...{WAIT_PRESS}\n" -.string "I told you already.\0" -.align 2, 0 - -.global gUnknown_821A8C0 -gUnknown_821A8C0: @ 821A8C0 -.string " They{APOSTROPHE}re chasing us down.\n" -.string "We can{APOSTROPHE}t afford to rest.\n\0" -.align 2, 0 - -.global gUnknown_821A8F8 -gUnknown_821A8F8: @ 821A8F8 -.string " ...{WAIT_PRESS}Huh?{WAIT_PRESS}\n" -.string "Am I tired?\0" -.align 2, 0 - -.global gUnknown_821A914 -gUnknown_821A914: @ 821A914 -.string " I said I would go with\n" -.string "you{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_821A938 -gUnknown_821A938: @ 821A938 -.string " And...{WAIT_PRESS}\n" -.string "Remember what I said?\0" -.align 2, 0 - -.global gUnknown_821A958 -gUnknown_821A958: @ 821A958 -.string " They{APOSTROPHE}re trying to catch us.\n" -.string "We don{APOSTROPHE}t have time to rest.\0" -.align 2, 0 - -.global gUnknown_821A998 -gUnknown_821A998: @ 821A998 -.string " ...{WAIT_PRESS}Pardon?{WAIT_PRESS}\n" -.string "Am I tired?\0" -.align 2, 0 - -.global gUnknown_821A9B4 -gUnknown_821A9B4: @ 821A9B4 -.string " I said I{APOSTROPHE}d go with you{COMMA}\n" -.string "{ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_821A9D8 -gUnknown_821A9D8: @ 821A9D8 -.string " And...{WAIT_PRESS}\n" -.string "I told you{COMMA} didn{APOSTROPHE}t I?\0" -.align 2, 0 - -.global gUnknown_821A9FC -gUnknown_821A9FC: @ 821A9FC -.string " We{APOSTROPHE}re being chased!\n" -.string "We can{APOSTROPHE}t rest.\0" -.align 2, 0 - -.global gUnknown_821AA24 -gUnknown_821AA24: @ 821AA24 -.string " ...{WAIT_PRESS}What?{WAIT_PRESS}\n" -.string "Aren{APOSTROPHE}t I tired{COMMA} you{APOSTROPHE}re asking?\0" -.align 2, 0 - -.global gUnknown_821AA58 -gUnknown_821AA58: @ 821AA58 -.string " Oh?{WAIT_PRESS} What{APOSTROPHE}s wrong?\n" -.string "Aren{APOSTROPHE}t we going{COMMA} {ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_821AA8C -gUnknown_821AA8C: @ 821AA8C -.string " Huh?{WAIT_PRESS} What{APOSTROPHE}s the matter?\n" -.string "Aren{APOSTROPHE}t you coming{COMMA} {ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_821AAC8 -gUnknown_821AAC8: @ 821AAC8 -.string " Let{APOSTROPHE}s be positive and keep\n" -.string "moving.\0" -.align 2, 0 - -.global gUnknown_821AAF0 -gUnknown_821AAF0: @ 821AAF0 -.string " Let{APOSTROPHE}s knuckle down and keep\n" -.string "going.\0" -.align 2, 0 - -.global gUnknown_821AB18 -gUnknown_821AB18: @ 821AB18 -.string " I think we need to go\n" -.string "somewhere no one else can get to.\0" -.align 2, 0 - -.global gUnknown_821AB54 -gUnknown_821AB54: @ 821AB54 -.string " Yup! We don{APOSTROPHE}t have a choice.\n" -.string "We have to keep going.\0" -.align 2, 0 - -.global gUnknown_821AB8C -gUnknown_821AB8C: @ 821AB8C -.string " We{APOSTROPHE}d better go somewhere\n" -.string "nobody can get to.\n" -.string "That{APOSTROPHE}d be best.\0" -.align 2, 0 - -.global gUnknown_821ABD0 -gUnknown_821ABD0: @ 821ABD0 -.string " We{APOSTROPHE}re not out of this yet.\n" -.string "Let{APOSTROPHE}s get going.\0" -.align 2, 0 - -.global gUnknown_821AC04 -gUnknown_821AC04: @ 821AC04 -.string " It{APOSTROPHE}s Alakazam{APOSTROPHE}s team.{WAIT_PRESS}\n" -.string "They{APOSTROPHE}ll keep chasing us wherever we go.\0" -.align 2, 0 - -.global gUnknown_821AC4C -gUnknown_821AC4C: @ 821AC4C -.string " We{APOSTROPHE}ve forgotten some\n" -.string "tough customers.\0" -.align 2, 0 - -.global gUnknown_821AC78 -gUnknown_821AC78: @ 821AC78 -.string " ........................{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s no good{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_821ACAC -gUnknown_821ACAC: @ 821ACAC -.string " Alakazam.{WAIT_PRESS}\n" -.string "His team won{APOSTROPHE}t drop the chase ever.\0" -.align 2, 0 - -.global gUnknown_821ACE0 -gUnknown_821ACE0: @ 821ACE0 -.string " We forgot about some\n" -.string "tough customers.\0" -.align 2, 0 - -.global gUnknown_821AD08 -gUnknown_821AD08: @ 821AD08 -.string " ..................{WAIT_PRESS}\n" -.string "This is no good{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_821AD38 -gUnknown_821AD38: @ 821AD38 -.string " Hahahaha...{WAIT_PRESS} Haha...\0" -.align 2, 0 - -.global gUnknown_821AD50 -gUnknown_821AD50: @ 821AD50 -.string " We don{APOSTROPHE}t have to keep\n" -.string "running away anymore!\n" -.string "Hahahahaha.\0" -.align 2, 0 - -.global gUnknown_821AD8C -gUnknown_821AD8C: @ 821AD8C -.string " All right!\n" -.string "We can say good-bye to living like\n" -.string "fugitives.\0" -.align 2, 0 - -.global gUnknown_821ADC8 -gUnknown_821ADC8: @ 821ADC8 -.string " Yeah{COMMA} you{APOSTROPHE}re right.\n" -.string "There can{APOSTROPHE}t be anyone else.\n" -.string "Hahahahaha.\0" -.align 2, 0 - -.global gUnknown_821AE0C -gUnknown_821AE0C: @ 821AE0C -.string " I thought so!\n" -.string "You think so too{COMMA} {ARG_NICKNAME_0}{COMMA} right?!\0" -.align 2, 0 - -.global gUnknown_821AE40 -gUnknown_821AE40: @ 821AE40 -.string " I knew it!\n" -.string "I knew you{APOSTROPHE}d say that too{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_821AE70 -gUnknown_821AE70: @ 821AE70 -.string " You{APOSTROPHE}re right.\n" -.string "Alakazam{APOSTROPHE}s team should be able to get\n" -.string "here.\0" -.align 2, 0 - -.global gUnknown_821AEB0 -gUnknown_821AEB0: @ 821AEB0 -.string " ...{WAIT_PRESS}Oh{COMMA} I get it.{WAIT_PRESS}\n" -.string "There{APOSTROPHE}s Alakazam.\0" -.align 2, 0 - -.global gUnknown_821AEDC -gUnknown_821AEDC: @ 821AEDC -.string " Their team should be able\n" -.string "to get here...\0" -.align 2, 0 - -.global gUnknown_821AF08 -gUnknown_821AF08: @ 821AF08 -.string " ...{WAIT_PRESS}Oh{COMMA} right.{WAIT_PRESS}\n" -.string "Alakazam{APOSTROPHE}s still out there.\0" -.align 2, 0 - -.global gUnknown_821AF3C -gUnknown_821AF3C: @ 821AF3C -.string " Well{COMMA} who do you mean?\0" -.align 2, 0 - -.global gUnknown_821AF58 -gUnknown_821AF58: @ 821AF58 -.string " Oh?{WAIT_PRESS} There{APOSTROPHE}s someone else?\0" -.align 2, 0 - -.global gUnknown_821AF78 -gUnknown_821AF78: @ 821AF78 -.string " Who might they be?\0" -.align 2, 0 - -.global gUnknown_821AF8C -gUnknown_821AF8C: @ 821AF8C -.string " What?{WAIT_PRESS} There are others?\0" -.align 2, 0 - -.global gUnknown_821AFA8 -gUnknown_821AFA8: @ 821AFA8 -.string "You{APOSTROPHE}re right. No one can get us{COMMA} hahaha...\0" -.align 2, 0 - -.global gUnknown_821AFD8 -gUnknown_821AFD8: @ 821AFD8 -.string "No. There are others.\0" -.align 2, 0 - -.global gUnknown_821AFF0 -gUnknown_821AFF0: @ 821AFF0 -.string " We{APOSTROPHE}ve come so far{COMMA} maybe\n" -.string "there aren{APOSTROPHE}t any more Pokémon that can\n" -.string "get to us.\0" -.align 2, 0 - -.global gUnknown_821B044 -gUnknown_821B044: @ 821B044 -.string " Do you think{COMMA} maybe{COMMA} that no\n" -.string "Pokémon will be able to get to us here?\0" -.align 2, 0 - -.global gUnknown_821B090 -gUnknown_821B090: @ 821B090 -.string " Maybe there aren{APOSTROPHE}t any more\n" -.string "Pokémon that can chase us all the way\n" -.string "here.\0" -.align 2, 0 - -.global gUnknown_821B0DC -gUnknown_821B0DC: @ 821B0DC -.string " Do you know what I{APOSTROPHE}m\n" -.string "thinking?\0" -.align 2, 0 - -.global gUnknown_821B100 -gUnknown_821B100: @ 821B100 -.string " And then we gave it our\n" -.string "all to get out here.\0" -.align 2, 0 - -.global gUnknown_821B130 -gUnknown_821B130: @ 821B130 -.string " I don{APOSTROPHE}t think too many\n" -.string "Pokémon can get through there.\0" -.align 2, 0 - -.global gUnknown_821B16C -gUnknown_821B16C: @ 821B16C -.string " Do you remember how hard\n" -.string "it was to get across Mt. Blaze?\0" -.align 2, 0 - -.global gUnknown_821B1A8 -gUnknown_821B1A8: @ 821B1A8 -.string " Do you want to know what\n" -.string "I think?\0" -.align 2, 0 - -.global gUnknown_821B1CC -gUnknown_821B1CC: @ 821B1CC -.string " And it wasn{APOSTROPHE}t easy coming\n" -.string "this far after that mountain.\0" -.align 2, 0 - -.global gUnknown_821B208 -gUnknown_821B208: @ 821B208 -.string " I doubt that many Pokémon\n" -.string "will be able to get through it.\0" -.align 2, 0 - -.global gUnknown_821B244 -gUnknown_821B244: @ 821B244 -.string " Wasn{APOSTROPHE}t it hard getting over\n" -.string "Mt. Blaze?\0" -.align 2, 0 - -.global gUnknown_821B270 -gUnknown_821B270: @ 821B270 -.string " You know what I really\n" -.string "think?\0" -.align 2, 0 - -.global gUnknown_821B290 -gUnknown_821B290: @ 821B290 -.string " And{COMMA} after that{COMMA} we\n" -.string "really went at it hard to get here.\0" -.align 2, 0 - -.global gUnknown_821B2D0 -gUnknown_821B2D0: @ 821B2D0 -.string " I don{APOSTROPHE}t think many Pokémon\n" -.string "can get through there.\0" -.align 2, 0 - -.global gUnknown_821B308 -gUnknown_821B308: @ 821B308 -.string " You remember how tough it\n" -.string "was getting over Mt. Blaze{COMMA} right?\0" -.align 2, 0 - -.global gUnknown_821B348 -gUnknown_821B348: @ 821B348 -.string " ............{WAIT_PRESS}{ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_821B35C -gUnknown_821B35C: @ 821B35C -.string " ............{WAIT_PRESS}Um{COMMA} {ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_821B378 -gUnknown_821B378: @ 821B378 -.string " ............{WAIT_PRESS}Hey{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_821B394 -gUnknown_821B394: @ 821B394 -.string " We{APOSTROPHE}ve come a really long\n" -.string "way{COMMA} haven{APOSTROPHE}t we?\0" -.align 2, 0 - -.global gUnknown_821B3C8 -gUnknown_821B3C8: @ 821B3C8 -.string " See how small Mt. Blaze\n" -.string "looks from here?\0" -.align 2, 0 - -.global gUnknown_821B3F4 -gUnknown_821B3F4: @ 821B3F4 -.string " We sure came a long way...\0" -.align 2, 0 - -.global gUnknown_821B410 -gUnknown_821B410: @ 821B410 -.string " Look at that.\n" -.string "See how small Mt. Blaze looks?\0" -.align 2, 0 - -.global gUnknown_821B440 -gUnknown_821B440: @ 821B440 -.string " Oh{COMMA} look!\n" -.string "{ARG_NICKNAME_0}{COMMA} look over there!\0" -.align 2, 0 - -.global gUnknown_821B468 -gUnknown_821B468: @ 821B468 -.string " Oh{COMMA} hey!\n" -.string "{ARG_NICKNAME_0}{COMMA} you have to see this!\0" -.align 2, 0 - -.global gUnknown_821B494 -gUnknown_821B494: @ 821B494 -.string " Mmm...\n" -.string "The view{APOSTROPHE}s fantastic.\0" -.align 2, 0 - -.global gUnknown_821B4B4 -gUnknown_821B4B4: @ 821B4B4 -.string " Haaah!\n" -.string "The view{APOSTROPHE}s great here.\0" -.align 2, 0 - -.global gUnknown_821B4D8 -gUnknown_821B4D8: @ 821B4D8 -.string " I{APOSTROPHE}m bushed.\n" -.string "Let{APOSTROPHE}s rest up.\0" -.align 2, 0 - -.global gUnknown_821B4F8 -gUnknown_821B4F8: @ 821B4F8 -.string " Pant{COMMA} pant...\n" -.string "We sure walked a lot.\0" -.align 2, 0 - -.global gUnknown_821B520 -gUnknown_821B520: @ 821B520 -.string " I{APOSTROPHE}m tired.\n" -.string "Let{APOSTROPHE}s get a little rest.\0" -.align 2, 0 - -.global gUnknown_821B54C -gUnknown_821B54C: @ 821B54C -.string " Pant{COMMA} pant...\n" -.string "We walked a lot{COMMA} didn{APOSTROPHE}t we?\0" -.align 2, 0 - -.global gUnknown_821B580 -gUnknown_821B580: @ 821B580 -.string " I{APOSTROPHE}m beat.\n" -.string "Let{APOSTROPHE}s get some rest.\0" -.align 2, 0 - -.global gUnknown_821B5A4 -gUnknown_821B5A4: @ 821B5A4 -.string " Gasp{COMMA} gasp...\n" -.string "We{APOSTROPHE}ve done a lot of walking.\0" -.align 2, 0 - -.global gUnknown_821B5D4 -gUnknown_821B5D4: @ 821B5D4 -.byte 0xf6, 0x00, 0x09, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82197C4 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x6b, 0x00, 0x99, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x10, 0x99, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x04, 0x0b, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, north -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x01, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xa0 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x99, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x04, 0x0b, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x99, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821B904 -gUnknown_821B904: @ 821B904 -.byte 0x00, 0x06, 0x00, 0x00, 0x1d, 0x26, 0x02, 0x02 -.4byte gUnknown_8219C28 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x06, 0x00, 0x00, 0x1f, 0x26, 0x02, 0x02 -.4byte gUnknown_821B5D4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821B934 -gUnknown_821B934: @ 821B934 -.byte 0x00, 0x00, 0x01, 0x01, 0x10, 0x08, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821B940 -gUnknown_821B940: @ 821B940 -.byte 0x00, 0x00, 0x01, 0x01, 0x10, 0x08, 0x02, 0x02 -.4byte gUnknown_8219B58 - -.global gUnknown_821B94C -gUnknown_821B94C: @ 821B94C -.4byte gUnknown_82197F0 - -.global gUnknown_821B950 -gUnknown_821B950: @ 821B950 -.4byte gUnknown_821986C - -.global gUnknown_821B954 -gUnknown_821B954: @ 821B954 -.4byte gUnknown_8219B4C - -.global gUnknown_821B958 -gUnknown_821B958: @ 821B958 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821B94C - -.global gUnknown_821B980 -gUnknown_821B980: @ 821B980 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821B934 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821B950 - -.global gUnknown_821B9A8 -gUnknown_821B9A8: @ 821B9A8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_821B904 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821B940 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821B954 - -.global gUnknown_821B9D0 -gUnknown_821B9D0: @ 821B9D0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821B958 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821B980 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821B9A8 - -.global gUnknown_821B9E8 -gUnknown_821B9E8: @ 821B9E8 -.byte 0x10, 0x25, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x0e, 0x26, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x12, 0x26, 0x02, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x0c, 0x28, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x01, 0x28, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00 - -.global gUnknown_821BA10 -gUnknown_821BA10: @ 821BA10 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_821B9D0 -.4byte gUnknown_821B9E8 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_821BA24 -gUnknown_821BA24: @ 821BA24 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821BA64 -.byte 0x08, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821BA64 -gUnknown_821BA64: @ 821BA64 -.string "../data/ground/ground_data_a03p01_station.c\0" -.align 2, 0 - -.global gUnknown_821BA90 -gUnknown_821BA90: @ 821BA90 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821BA24 - -.global gUnknown_821BA9C -gUnknown_821BA9C: @ 821BA9C -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821BA64 -.byte 0x08, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x45, 0x00, 0x78, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821BB2C -gUnknown_821BB2C: @ 821BB2C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821BA9C - -.global gUnknown_821BB38 -gUnknown_821BB38: @ 821BB38 -.byte 0xf6, 0x00, 0x21, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821BA64 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x50, 0x00, 0x01 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x50, 0x00, 0x01, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821BBF8 -gUnknown_821BBF8: @ 821BBF8 -.byte 0xf6, 0x00, 0x30, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821BA64 -setAnimation 5 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x36, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x50 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x36, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2e, 0x02, 0x01, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C604 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xdb, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C5F8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x08 -.byte 0x91, 0x04, 0x01, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x18 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C5C0 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, east -.byte 0x3b, 0x36, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 5 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x2e, 0x02, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C5AC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C58C -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C574 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C534 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C500 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C5AC -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C4E0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C4C4 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C488 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C468 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C454 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C438 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C41C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C408 -closeTextBox -.byte 0xdb, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xdb, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C3CC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C36C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C314 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C2DC -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C290 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C248 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x36, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x40, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821C248 -gUnknown_821C248: @ 821C248 -.string " I guess thinking about it\n" -.string "won{APOSTROPHE}t help us.{WAIT_PRESS}\n" -.string "We should keep moving.\0" -.align 2, 0 - -.global gUnknown_821C290 -gUnknown_821C290: @ 821C290 -.string " Well{COMMA} thinking about it\n" -.string "isn{APOSTROPHE}t going to help.{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s keep moving.\0" -.align 2, 0 - -.global gUnknown_821C2DC -gUnknown_821C2DC: @ 821C2DC -.string " I wonder what they were\n" -.string "doing in this lonely place?\0" -.align 2, 0 - -.global gUnknown_821C314 -gUnknown_821C314: @ 821C314 -.string " Did I imagine that?{WAIT_PRESS}\n" -.string "No{COMMA} I don{APOSTROPHE}t think so.{WAIT_PRESS}\n" -.string "I{APOSTROPHE}m sure there was somebody there.\0" -.align 2, 0 - -.global gUnknown_821C36C -gUnknown_821C36C: @ 821C36C -.string " Was I seeing things?{WAIT_PRESS}\n" -.string "No{COMMA} that can{APOSTROPHE}t be right.{WAIT_PRESS}\n" -.string "I{APOSTROPHE}m sure there was someone there...\0" -.align 2, 0 - -.global gUnknown_821C3CC -gUnknown_821C3CC: @ 821C3CC -.string " ...{WAIT_PRESS}What was that?{WAIT_PRESS}\n" -.string "It looked like a Pokémon{COMMA} but...\0" -.align 2, 0 - -.global gUnknown_821C408 -gUnknown_821C408: @ 821C408 -.string " Wh-what{APOSTROPHE}s that?!\0" -.align 2, 0 - -.global gUnknown_821C41C -gUnknown_821C41C: @ 821C41C -.string " ........................\0" -.align 2, 0 - -.global gUnknown_821C438 -gUnknown_821C438: @ 821C438 -.string " Oh? What{APOSTROPHE}s the matter?\0" -.align 2, 0 - -.global gUnknown_821C454 -gUnknown_821C454: @ 821C454 -.string " Huh? What{APOSTROPHE}s up?\0" -.align 2, 0 - -.global gUnknown_821C468 -gUnknown_821C468: @ 821C468 -.string " Maybe we{APOSTROPHE}re all alone here.\0" -.align 2, 0 - -.global gUnknown_821C488 -gUnknown_821C488: @ 821C488 -.string " I haven{APOSTROPHE}t seen any other\n" -.string "Pokémon for a while{COMMA} either.\0" -.align 2, 0 - -.global gUnknown_821C4C4 -gUnknown_821C4C4: @ 821C4C4 -.string " See how deep the snow is.\0" -.align 2, 0 - -.global gUnknown_821C4E0 -gUnknown_821C4E0: @ 821C4E0 -.string " Isn{APOSTROPHE}t this one lonely place?\0" -.align 2, 0 - -.global gUnknown_821C500 -gUnknown_821C500: @ 821C500 -.string " Maybe there isn{APOSTROPHE}t anyone\n" -.string "else out here but us.\0" -.align 2, 0 - -.global gUnknown_821C534 -gUnknown_821C534: @ 821C534 -.string " There haven{APOSTROPHE}t been any\n" -.string "Pokémon around for a while{COMMA} either.\0" -.align 2, 0 - -.global gUnknown_821C574 -gUnknown_821C574: @ 821C574 -.string " That snow{APOSTROPHE}s deep.\0" -.align 2, 0 - -.global gUnknown_821C58C -gUnknown_821C58C: @ 821C58C -.string " This is one barren place...\0" -.align 2, 0 - -.global gUnknown_821C5AC -gUnknown_821C5AC: @ 821C5AC -.string " ..................\0" -.align 2, 0 - -.global gUnknown_821C5C0 -gUnknown_821C5C0: @ 821C5C0 -.string " Yuck...{WAIT_PRESS}\n" -.string "My nose is running{COMMA} and it{APOSTROPHE}s freezing.\0" -.align 2, 0 - -.global gUnknown_821C5F8 -gUnknown_821C5F8: @ 821C5F8 -.string " Hachoo!\0" -.align 2, 0 - -.global gUnknown_821C604 -gUnknown_821C604: @ 821C604 -.string " ...Brr... It{APOSTROPHE}s cold!{WAIT_PRESS}\0" -.align 2, 0 - -.global gUnknown_821C620 -gUnknown_821C620: @ 821C620 -.byte 0xf6, 0x00, 0x9b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821BA64 -.byte 0x54, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x62, 0x00, 0x00, 0x01, 0xe8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 9 -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -.byte 0x54, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northeast -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x0c, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 5 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821C8E0 -gUnknown_821C8E0: @ 821C8E0 -.byte 0xf6, 0x00, 0xca, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821BA64 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, east -.byte 0x54, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x09 -.byte 0x4c, 0x00, 0x00, 0x00, 0xde, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x50, 0x00, 0x04, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821C980 -gUnknown_821C980: @ 821C980 -.byte 0xf6, 0x00, 0xd7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821BA64 -.byte 0x08, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821CA10 -gUnknown_821CA10: @ 821CA10 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821C980 - -.global gUnknown_821CA1C -gUnknown_821CA1C: @ 821CA1C -.byte 0xf6, 0x00, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821BA64 -setAnimation 5 -.byte 0x3b, 0x36, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3b, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x02, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821CC50 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821CC48 -closeTextBox -pause 0x0a -rotate 0x04, CW, southeast -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821CC30 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821CC24 -rotate 0x04, CCW, east -setFlag 0x06 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821CBFC -closeTextBox -setFlag 0x03 -closeThread - -.global gUnknown_821CBFC -gUnknown_821CBFC: @ 821CBFC -.string " See that?{WAIT_PRESS}\n" -.string "Those trees are frozen!\0" -.align 2, 0 - -.global gUnknown_821CC24 -gUnknown_821CC24: @ 821CC24 -.string " {ARG_NICKNAME_0}! Look!\0" -.align 2, 0 - -.global gUnknown_821CC30 -gUnknown_821CC30: @ 821CC30 -.string " {ARG_NICKNAME_0}!\n" -.string "Check that out!\0" -.align 2, 0 - -.global gUnknown_821CC48 -gUnknown_821CC48: @ 821CC48 -.string " Oh!\0" -.align 2, 0 - -.global gUnknown_821CC50 -gUnknown_821CC50: @ 821CC50 -.string " Wow!\0" -.align 2, 0 - -.global gUnknown_821CC58 -gUnknown_821CC58: @ 821CC58 -.byte 0xf6, 0x00, 0x07, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821BA64 -setAnimation 5 -.byte 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_821CD58 -gUnknown_821CD58: @ 821CD58 -.byte 0x00, 0x02, 0x00, 0x00 -.byte 0x40, 0x17, 0x02, 0x02 -.4byte gUnknown_821BBF8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x02, 0x00, 0x00, 0x40, 0x19, 0x02, 0x02 -.4byte gUnknown_821C620 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x06, 0x00, 0x00, 0x52, 0x16, 0x00, 0x02 -.4byte gUnknown_821C8E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821CDA0 -gUnknown_821CDA0: @ 821CDA0 -.byte 0x00, 0x02, 0x00, 0x00, 0x4e, 0x17, 0x02, 0x02 -.4byte gUnknown_821CA1C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x02, 0x00, 0x00 -.byte 0x51, 0x19, 0x02, 0x02 -.4byte gUnknown_821CC58 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821CDD0 -gUnknown_821CDD0: @ 821CDD0 -.byte 0x00, 0x00, 0x01, 0x01, 0x40, 0x18, 0x00, 0x02 -.4byte gUnknown_821BB38 - -.global gUnknown_821CDDC -gUnknown_821CDDC: @ 821CDDC -.byte 0x00, 0x00, 0x01, 0x01, 0x4f, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821CDE8 -gUnknown_821CDE8: @ 821CDE8 -.4byte gUnknown_821BA90 - -.global gUnknown_821CDEC -gUnknown_821CDEC: @ 821CDEC -.4byte gUnknown_821BB2C - -.global gUnknown_821CDF0 -gUnknown_821CDF0: @ 821CDF0 -.4byte gUnknown_821CA10 - -.global gUnknown_821CDF4 -gUnknown_821CDF4: @ 821CDF4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821CDE8 - -.global gUnknown_821CE1C -gUnknown_821CE1C: @ 821CE1C -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_821CD58 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821CDD0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821CDEC - -.global gUnknown_821CE44 -gUnknown_821CE44: @ 821CE44 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_821CDA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821CDDC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821CDF0 - -.global gUnknown_821CE6C -gUnknown_821CE6C: @ 821CE6C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821CDF4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821CE1C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821CE44 - -.global gUnknown_821CE84 -gUnknown_821CE84: @ 821CE84 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821CE8C -gUnknown_821CE8C: @ 821CE8C -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_821CE6C -.4byte gUnknown_821CE84 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_821CEA0 -gUnknown_821CEA0: @ 821CEA0 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821CEE0 -.byte 0x08, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821CEE0 -gUnknown_821CEE0: @ 821CEE0 -.string "../data/ground/ground_data_a03p02_station.c\0" -.align 2, 0 - -.global gUnknown_821CF0C -gUnknown_821CF0C: @ 821CF0C -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821CEA0 - -.global gUnknown_821CF18 -gUnknown_821CF18: @ 821CF18 -.byte 0xf6, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821CEE0 -.byte 0x08, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821CF98 -gUnknown_821CF98: @ 821CF98 -.byte 0x90, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821CF18 - -.global gUnknown_821CFA4 -gUnknown_821CFA4: @ 821CFA4 -.byte 0xf6, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821CEE0 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821D0BC -.byte 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821D084 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821D084 -gUnknown_821D084: @ 821D084 -.string " It looks pretty{COMMA} but...{WAIT_PRESS}\n" -.string "It must be harsh there...\0" -.align 2, 0 - -.global gUnknown_821D0BC -gUnknown_821D0BC: @ 821D0BC -.string " Wow!{WAIT_PRESS}\n" -.string "The snow is like frozen powder!\0" -.align 2, 0 - -.global gUnknown_821D0E4 -gUnknown_821D0E4: @ 821D0E4 -.byte 0xf6, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821CEE0 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821D124 -gUnknown_821D124: @ 821D124 -.byte 0x00, 0x04, 0x00, 0x00, 0x0f, 0x25, 0x02, 0x02 -.4byte gUnknown_821CFA4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x04, 0x00, 0x00, 0x13, 0x25, 0x02, 0x02 -.4byte gUnknown_821D0E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821D154 -gUnknown_821D154: @ 821D154 -.byte 0x00, 0x00, 0x01, 0x01, 0x11, 0x12, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821D160 -gUnknown_821D160: @ 821D160 -.4byte gUnknown_821CF0C - -.global gUnknown_821D164 -gUnknown_821D164: @ 821D164 -.4byte gUnknown_821CF98 - -.global gUnknown_821D168 -gUnknown_821D168: @ 821D168 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821D160 - -.global gUnknown_821D190 -gUnknown_821D190: @ 821D190 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_821D124 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821D154 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821D164 - -.global gUnknown_821D1B8 -gUnknown_821D1B8: @ 821D1B8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821D168 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821D190 - -.global gUnknown_821D1C8 -gUnknown_821D1C8: @ 821D1C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821D1D0 -gUnknown_821D1D0: @ 821D1D0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_821D1B8 -.4byte gUnknown_821D1C8 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_821D1E4 -gUnknown_821D1E4: @ 821D1E4 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821D224 -.byte 0x08, 0x00, 0x00, 0x00, 0xaa, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821D224 -gUnknown_821D224: @ 821D224 -.string "../data/ground/ground_data_a03p03_station.c\0" -.align 2, 0 - -.global gUnknown_821D250 -gUnknown_821D250: @ 821D250 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821D1E4 - -.global gUnknown_821D25C -gUnknown_821D25C: @ 821D25C -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821D224 -.byte 0x08, 0x00, 0x00, 0x00, 0xaa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x00, 0x1e, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xfa, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x10, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821D2EC -gUnknown_821D2EC: @ 821D2EC -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821D25C - -.global gUnknown_821D2F8 -gUnknown_821D2F8: @ 821D2F8 -.byte 0xf6, 0x00, 0x21, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821D224 -setAnimation 5 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x36, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xdb, 0x00, 0x78, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821EBD4 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821EBB0 -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821EB90 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821EB54 -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821EB30 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821EB08 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x14, 0x01, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821EAC8 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821EA90 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821EA70 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821EA34 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821EA04 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E9D4 -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E9A0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E950 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E910 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E8E8 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E8C4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E87C -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E840 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E820 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E7FC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E7B8 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E764 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E744 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x01, 0xff, 0xff -.byte 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E718 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E6E4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E718 -.byte 0xd9, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E6C4 -.byte 0xd9, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E6B0 -.byte 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E688 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E64C -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E618 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E5E4 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E5A0 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E580 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E530 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E4FC -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E4BC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E480 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E458 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E3FC -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E3C4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E384 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E344 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E328 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E308 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E2E4 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E288 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E64C -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E23C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E204 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E5E4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E5A0 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E1B0 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E530 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E158 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E204 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E4BC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E480 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E110 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E3FC -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E0BC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E204 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E384 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E344 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E328 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E308 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E2E4 -closeTextBox -.byte 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xdb, 0x00, 0x2d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E0B0 -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E08C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E064 -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E040 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xdc, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x07, 0x00, 0x04, 0x00, 0x00, 0x00, 0x40, 0x60, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x07, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x40, 0x60, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x07, 0x00, 0x08, 0x00, 0x00, 0x00, 0x40, 0x60, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x07, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x40, 0x60, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x2e, 0x15, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E01C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xdc, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x07, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x40, 0x60, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 9 -.byte 0x54, 0x00, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x07, 0x00, 0x08, 0x00, 0x00, 0x00, 0x40, 0x60, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x07, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x40, 0x60, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x07, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x40, 0x60, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821E000 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821DFDC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821DFB8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xdc, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x07, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x40, 0x60, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 9 -.byte 0x54, 0x00, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x07, 0x00, 0x08, 0x00, 0x00, 0x00, 0x40, 0x60, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x07, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x40, 0x60, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x07, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x40, 0x60, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821DFA8 -.byte 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821DF84 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821DF58 -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821DF2C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821DEFC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xdd, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, east -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821DEF0 -.byte 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821DED8 -closeTextBox -.byte 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_821DED8 -gUnknown_821DED8: @ 821DED8 -.string " You have arrived...\0" -.align 2, 0 - -.global gUnknown_821DEF0 -gUnknown_821DEF0: @ 821DEF0 -.string " Finally...\0" -.align 2, 0 - -.global gUnknown_821DEFC -gUnknown_821DEFC: @ 821DEFC -.string "(This voice...{WAIT_PRESS}\n" -.string "I{APOSTROPHE}ve heard it somewhere...)\0" -.align 2, 0 - -.global gUnknown_821DF2C -gUnknown_821DF2C: @ 821DF2C -.string "({ARG_NICKNAME_1}...?{WAIT_PRESS} No.\n" -.string "This voice isn{APOSTROPHE}t {ARG_NICKNAME_1}...)\0" -.align 2, 0 - -.global gUnknown_821DF58 -gUnknown_821DF58: @ 821DF58 -.string "(Someone...{WAIT_PRESS}\n" -.string "Someone is talking to me...)\0" -.align 2, 0 - -.global gUnknown_821DF84 -gUnknown_821DF84: @ 821DF84 -.string " ...Finally{COMMA} you have arrived...\0" -.align 2, 0 - -.global gUnknown_821DFA8 -gUnknown_821DFA8: @ 821DFA8 -.string " ...Finally.\0" -.align 2, 0 - -.global gUnknown_821DFB8 -gUnknown_821DFB8: @ 821DFB8 -.string " Huh?{WAIT_PRESS} Is something wrong?\n" -.string "{ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_821DFDC -gUnknown_821DFDC: @ 821DFDC -.string " Huh?{WAIT_PRESS} What{APOSTROPHE}s the matter?\n" -.string "{ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_821E000 -gUnknown_821E000: @ 821E000 -.string "(...D-dizzy?{WAIT_PRESS} Or what?)\0" -.align 2, 0 - -.global gUnknown_821E01C -gUnknown_821E01C: @ 821E01C -.string "(...{WAIT_PRESS}Wh-what?{WAIT_PRESS} What was that?)\0" -.align 2, 0 - -.global gUnknown_821E040 -gUnknown_821E040: @ 821E040 -.string "(I have to believe in myself more.)\0" -.align 2, 0 - -.global gUnknown_821E064 -gUnknown_821E064: @ 821E064 -.string "(I can{APOSTROPHE}t afford to be indecisive.)\0" -.align 2, 0 - -.global gUnknown_821E08C -gUnknown_821E08C: @ 821E08C -.string "({ARG_NICKNAME_1} trusts me without any\n" -.string "doubt.)\0" -.align 2, 0 - -.global gUnknown_821E0B0 -gUnknown_821E0B0: @ 821E0B0 -.string "(Yes...)\0" -.align 2, 0 - -.global gUnknown_821E0BC -gUnknown_821E0BC: @ 821E0BC -.string " Even though we don{APOSTROPHE}t know\n" -.string "what{APOSTROPHE}s ahead...{WAIT_PRESS}\n" -.string "We{APOSTROPHE}ll only know by pressing on!\0" -.align 2, 0 - -.global gUnknown_821E110 -gUnknown_821E110: @ 821E110 -.string " .........{WAIT_PRESS}I{APOSTROPHE}m sorry.{WAIT_PRESS}\n" -.string "I said something stupid to frighten you...\0" -.align 2, 0 - -.global gUnknown_821E158 -gUnknown_821E158: @ 821E158 -.string " Even though we don{APOSTROPHE}t know\n" -.string "what{APOSTROPHE}s ahead...{WAIT_PRESS}\n" -.string "We{APOSTROPHE}ll find out if we keep moving!\0" -.align 2, 0 - -.global gUnknown_821E1B0 -gUnknown_821E1B0: @ 821E1B0 -.string " .........{WAIT_PRESS}I{APOSTROPHE}m sorry.{WAIT_PRESS}\n" -.string "I shouldn{APOSTROPHE}t have said anything to bring\n" -.string "you down...\0" -.align 2, 0 - -.global gUnknown_821E204 -gUnknown_821E204: @ 821E204 -.string " Don{APOSTROPHE}t worry!\n" -.string "There{APOSTROPHE}s got to be something ahead.\0" -.align 2, 0 - -.global gUnknown_821E23C -gUnknown_821E23C: @ 821E23C -.string " Even if we don{APOSTROPHE}t know\n" -.string "what{APOSTROPHE}s ahead...{WAIT_PRESS}\n" -.string "We just have to keep going.\0" -.align 2, 0 - -.global gUnknown_821E288 -gUnknown_821E288: @ 821E288 -.string " .........{WAIT_PRESS}Sorry.{WAIT_PRESS}\n" -.string "I shouldn{APOSTROPHE}t have said that.\n" -.string "It doesn{APOSTROPHE}t help scaring you like that.\0" -.align 2, 0 - -.global gUnknown_821E2E4 -gUnknown_821E2E4: @ 821E2E4 -.string " I{APOSTROPHE}ll keep going wherever\n" -.string "you go.\0" -.align 2, 0 - -.global gUnknown_821E308 -gUnknown_821E308: @ 821E308 -.string " I{APOSTROPHE}ll go with you{COMMA} always.\0" -.align 2, 0 - -.global gUnknown_821E328 -gUnknown_821E328: @ 821E328 -.string " I{APOSTROPHE}ll go wherever you go.\0" -.align 2, 0 - -.global gUnknown_821E344 -gUnknown_821E344: @ 821E344 -.string " And that{APOSTROPHE}s not changing.\n" -.string "I still have faith in you{COMMA} {ARG_NICKNAME_0}...\0" -.align 2, 0 - -.global gUnknown_821E384 -gUnknown_821E384: @ 821E384 -.string " I have faith in you{COMMA} \n" -.string "{ARG_NICKNAME_0}.\n" -.string "That{APOSTROPHE}s what brought me here.\0" -.align 2, 0 - -.global gUnknown_821E3C4 -gUnknown_821E3C4: @ 821E3C4 -.string " Sorry{COMMA} {ARG_NICKNAME_0}.{WAIT_PRESS}\n" -.string "I was just feeling sorry for myself.\0" -.align 2, 0 - -.global gUnknown_821E3FC -gUnknown_821E3FC: @ 821E3FC -.string " There isn{APOSTROPHE}t any point in\n" -.string "wondering about what might happen.\n" -.string "Not after coming this far.\0" -.align 2, 0 - -.global gUnknown_821E458 -gUnknown_821E458: @ 821E458 -.string " ............{WAIT_PRESS}\n" -.string "Sure{COMMA} that{APOSTROPHE}s right.\0" -.align 2, 0 - -.global gUnknown_821E480 -gUnknown_821E480: @ 821E480 -.string " And that{APOSTROPHE}s not changing.\n" -.string "I have faith in you{COMMA} {ARG_NICKNAME_0}...\0" -.align 2, 0 - -.global gUnknown_821E4BC -gUnknown_821E4BC: @ 821E4BC -.string " {ARG_NICKNAME_0}{COMMA} I believed in\n" -.string "you{COMMA} and that{APOSTROPHE}s what got me this far.\0" -.align 2, 0 - -.global gUnknown_821E4FC -gUnknown_821E4FC: @ 821E4FC -.string " Sorry{COMMA} {ARG_NICKNAME_0}.{WAIT_PRESS}\n" -.string "I was just getting down on myself.\0" -.align 2, 0 - -.global gUnknown_821E530 -gUnknown_821E530: @ 821E530 -.string " There isn{APOSTROPHE}t any point in\n" -.string "wondering about what we did.\n" -.string "Not after all this.\0" -.align 2, 0 - -.global gUnknown_821E580 -gUnknown_821E580: @ 821E580 -.string " ............{WAIT_PRESS}\n" -.string "You{APOSTROPHE}re right.\0" -.align 2, 0 - -.global gUnknown_821E5A0 -gUnknown_821E5A0: @ 821E5A0 -.string " And that{APOSTROPHE}s not changing.\n" -.string "I{APOSTROPHE}ll keep believing in you{COMMA} {ARG_NICKNAME_0}...\0" -.align 2, 0 - -.global gUnknown_821E5E4 -gUnknown_821E5E4: @ 821E5E4 -.string " {ARG_NICKNAME_0}{COMMA} I came out\n" -.string "here because I believed in you.\0" -.align 2, 0 - -.global gUnknown_821E618 -gUnknown_821E618: @ 821E618 -.string " Sorry{COMMA} {ARG_NICKNAME_0}.{WAIT_PRESS}\n" -.string "I got to feeling sorry for myself.\0" -.align 2, 0 - -.global gUnknown_821E64C -gUnknown_821E64C: @ 821E64C -.string " We came out here.\n" -.string "There{APOSTROPHE}s no point wondering about it.\0" -.align 2, 0 - -.global gUnknown_821E688 -gUnknown_821E688: @ 821E688 -.string " ............{WAIT_PRESS}\n" -.string "Yeah{COMMA} you{APOSTROPHE}re right.\0" -.align 2, 0 - -.global gUnknown_821E6B0 -gUnknown_821E6B0: @ 821E6B0 -.string "I don{APOSTROPHE}t know...\0" -.align 2, 0 - -.global gUnknown_821E6C4 -gUnknown_821E6C4: @ 821E6C4 -.string "Don{APOSTROPHE}t worry. We{APOSTROPHE}ll be fine!\0" -.align 2, 0 - -.global gUnknown_821E6E4 -gUnknown_821E6E4: @ 821E6E4 -.string " The two of us...\n" -.string "What{APOSTROPHE}s going to happen to us?\0" -.align 2, 0 - -.global gUnknown_821E718 -gUnknown_821E718: @ 821E718 -.string " We two...\n" -.string "What{APOSTROPHE}s going to happen to us?\0" -.align 2, 0 - -.global gUnknown_821E744 -gUnknown_821E744: @ 821E744 -.string " And I{APOSTROPHE}m getting exhausted...\0" -.align 2, 0 - -.global gUnknown_821E764 -gUnknown_821E764: @ 821E764 -.string " I have this feeling there{APOSTROPHE}s\n" -.string "nothing ahead of here{COMMA} even if we keep\n" -.string "moving...\0" -.align 2, 0 - -.global gUnknown_821E7B8 -gUnknown_821E7B8: @ 821E7B8 -.string " I think we{APOSTROPHE}ve come to\n" -.string "a place that{APOSTROPHE}s empty except for us...\0" -.align 2, 0 - -.global gUnknown_821E7FC -gUnknown_821E7FC: @ 821E7FC -.string " ...Hey{COMMA} {ARG_NICKNAME_0}?\n" -.string "I was thinking...\0" -.align 2, 0 - -.global gUnknown_821E820 -gUnknown_821E820: @ 821E820 -.string " And{COMMA} I am pretty tired...\0" -.align 2, 0 - -.global gUnknown_821E840 -gUnknown_821E840: @ 821E840 -.string " I also have a feeling that\n" -.string "there isn{APOSTROPHE}t anything ahead...\0" -.align 2, 0 - -.global gUnknown_821E87C -gUnknown_821E87C: @ 821E87C -.string " It looks like we{APOSTROPHE}ve finally\n" -.string "reached somewhere that{APOSTROPHE}s deserted...\0" -.align 2, 0 - -.global gUnknown_821E8C4 -gUnknown_821E8C4: @ 821E8C4 -.string " ...Um{COMMA} {ARG_NICKNAME_0}?\n" -.string "I was thinking...\0" -.align 2, 0 - -.global gUnknown_821E8E8 -gUnknown_821E8E8: @ 821E8E8 -.string " And{COMMA} I{APOSTROPHE}m feeling pretty\n" -.string "beat...\0" -.align 2, 0 - -.global gUnknown_821E910 -gUnknown_821E910: @ 821E910 -.string " I also have this feeling\n" -.string "there{APOSTROPHE}s nothing ahead of us here...\0" -.align 2, 0 - -.global gUnknown_821E950 -gUnknown_821E950: @ 821E950 -.string " I think we{APOSTROPHE}ve finally reached\n" -.string "a place where there{APOSTROPHE}s no one else but us.\0" -.align 2, 0 - -.global gUnknown_821E9A0 -gUnknown_821E9A0: @ 821E9A0 -.string " ...Hey{COMMA} {ARG_NICKNAME_0}?\n" -.string "You know what I{APOSTROPHE}m thinking...?\0" -.align 2, 0 - -.global gUnknown_821E9D4 -gUnknown_821E9D4: @ 821E9D4 -.string " I wonder if we{APOSTROPHE}re really\n" -.string "making progress...\0" -.align 2, 0 - -.global gUnknown_821EA04 -gUnknown_821EA04: @ 821EA04 -.string " The scenery{APOSTROPHE}s been\n" -.string "the same for a while...\0" -.align 2, 0 - -.global gUnknown_821EA34 -gUnknown_821EA34: @ 821EA34 -.string " Brr... This is too cold!{WAIT_PRESS}\n" -.string "There{APOSTROPHE}s nothing but snow now.\0" -.align 2, 0 - -.global gUnknown_821EA70 -gUnknown_821EA70: @ 821EA70 -.string " Are we even getting\n" -.string "somewhere?\0" -.align 2, 0 - -.global gUnknown_821EA90 -gUnknown_821EA90: @ 821EA90 -.string " The scenery hasn{APOSTROPHE}t changed\n" -.string "at all for a while now...\0" -.align 2, 0 - -.global gUnknown_821EAC8 -gUnknown_821EAC8: @ 821EAC8 -.string " Brr... It{APOSTROPHE}s too cold!{WAIT_PRESS}\n" -.string "There{APOSTROPHE}s only snow around us now.\0" -.align 2, 0 - -.global gUnknown_821EB08 -gUnknown_821EB08: @ 821EB08 -.string "(Are we really doing the right thing?)\0" -.align 2, 0 - -.global gUnknown_821EB30 -gUnknown_821EB30: @ 821EB30 -.string "(What{APOSTROPHE}s in store for us ahead?)\0" -.align 2, 0 - -.global gUnknown_821EB54 -gUnknown_821EB54: @ 821EB54 -.string "(We{APOSTROPHE}ve been running all this time out\n" -.string "of desperation...)\0" -.align 2, 0 - -.global gUnknown_821EB90 -gUnknown_821EB90: @ 821EB90 -.string "({ARG_NICKNAME_1} looks exhausted{COMMA} too...)\0" -.align 2, 0 - -.global gUnknown_821EBB0 -gUnknown_821EBB0: @ 821EBB0 -.string "(We{APOSTROPHE}ve walked a long way here...)\0" -.align 2, 0 - -.global gUnknown_821EBD4 -gUnknown_821EBD4: @ 821EBD4 -.string "(This icy mountain path seems to go\n" -.string "on forever...)\0" -.align 2, 0 - -.global gUnknown_821EC08 -gUnknown_821EC08: @ 821EC08 -.byte 0xf6, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821D224 -.byte 0x54, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x91, 0x04, 0x02, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821ED08 -gUnknown_821ED08: @ 821ED08 -.byte 0xf6, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821D224 -.byte 0x54, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northeast -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_821ED78 -gUnknown_821ED78: @ 821ED78 -.byte 0xf6, 0x00, 0x06, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821D224 -setAnimation 31 -.byte 0x2d, 0x07, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821EDD8 -gUnknown_821EDD8: @ 821EDD8 -.byte 0xf6, 0x00, 0x0f, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821D224 -.byte 0x08, 0x00, 0x00, 0x00, 0xaa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x00, 0x05, 0x00, 0x20, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x78, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821EE58 -gUnknown_821EE58: @ 821EE58 -.byte 0x90, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821EDD8 - -.global gUnknown_821EE64 -gUnknown_821EE64: @ 821EE64 -.byte 0xf6, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821D224 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F508 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F4EC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F4C8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F4A4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F480 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F45C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x40 -.byte 0x91, 0x04, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x10 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F43C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F420 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x40 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F404 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F3C4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F39C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F38C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F36C -.byte 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F360 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F350 -.byte 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x2e, 0x15, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F33C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F31C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F2E4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F2D0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F2A4 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821F2A4 -gUnknown_821F2A4: @ 821F2A4 -.string " What{APOSTROPHE}s the matter?{WAIT_PRESS}\n" -.string "What happened...?\0" -.align 2, 0 - -.global gUnknown_821F2D0 -gUnknown_821F2D0: @ 821F2D0 -.string " Hey{COMMA} {ARG_NICKNAME_0}!\n" -.string "{ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_821F2E4 -gUnknown_821F2E4: @ 821F2E4 -.string " What were you doing?{WAIT_PRESS}\n" -.string "What just happened to you...?\0" -.align 2, 0 - -.global gUnknown_821F31C -gUnknown_821F31C: @ 821F31C -.string " Hey{COMMA} {ARG_NICKNAME_0}!\n" -.string "Come on{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_821F33C -gUnknown_821F33C: @ 821F33C -.string "..................\0" -.align 2, 0 - -.global gUnknown_821F350 -gUnknown_821F350: @ 821F350 -.string "Oh! W-wait...!\0" -.align 2, 0 - -.global gUnknown_821F360 -gUnknown_821F360: @ 821F360 -.string " Beware...\0" -.align 2, 0 - -.global gUnknown_821F36C -gUnknown_821F36C: @ 821F36C -.string " Ninetales awaits your\n" -.string "arrival.\0" -.align 2, 0 - -.global gUnknown_821F38C -gUnknown_821F38C: @ 821F38C -.string "...Ninetales?!\0" -.align 2, 0 - -.global gUnknown_821F39C -gUnknown_821F39C: @ 821F39C -.string " Inside its peak...{WAIT_PRESS}\n" -.string "Ninetales lives.\0" -.align 2, 0 - -.global gUnknown_821F3C4 -gUnknown_821F3C4: @ 821F3C4 -.string " There is a jagged mountain\n" -.string "range topped by {COLOR_1 YELLOW_4}Mt. Freeze{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_821F404 -gUnknown_821F404: @ 821F404 -.string " A little farther ahead...\0" -.align 2, 0 - -.global gUnknown_821F420 -gUnknown_821F420: @ 821F420 -.string " I am visible only to you.\0" -.align 2, 0 - -.global gUnknown_821F43C -gUnknown_821F43C: @ 821F43C -.string " I cannot be seen by others.\0" -.align 2, 0 - -.global gUnknown_821F45C -gUnknown_821F45C: @ 821F45C -.string " Why are you talking to\n" -.string "yourself?\0" -.align 2, 0 - -.global gUnknown_821F480 -gUnknown_821F480: @ 821F480 -.string " {ARG_NICKNAME_0}{COMMA} is something\n" -.string "the matter?\0" -.align 2, 0 - -.global gUnknown_821F4A4 -gUnknown_821F4A4: @ 821F4A4 -.string " Talking to yourself like\n" -.string "that...\0" -.align 2, 0 - -.global gUnknown_821F4C8 -gUnknown_821F4C8: @ 821F4C8 -.string " Hey{COMMA} {ARG_NICKNAME_0}.\n" -.string "What{APOSTROPHE}s up with you?\0" -.align 2, 0 - -.global gUnknown_821F4EC -gUnknown_821F4EC: @ 821F4EC -.string "...You{APOSTROPHE}re...{WAIT_PRESS} What...\0" -.align 2, 0 - -.global gUnknown_821F508 -gUnknown_821F508: @ 821F508 -.string " I am so glad.{WAIT_PRESS}\n" -.string "Finally{COMMA} we get to meet.\0" -.align 2, 0 - -.global gUnknown_821F534 -gUnknown_821F534: @ 821F534 -.byte 0xf6, 0x00, 0x6a, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821D224 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821F5E4 -gUnknown_821F5E4: @ 821F5E4 -.byte 0xf6, 0x00, 0x78, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821D224 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821F684 -gUnknown_821F684: @ 821F684 -.byte 0xf6, 0x00, 0x85, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821D224 -.byte 0x54, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xb4, 0x02, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x54, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821F804 -gUnknown_821F804: @ 821F804 -.byte 0x00, 0x02, 0x00, 0x00, 0x64, 0x0f, 0x02, 0x02 -.4byte gUnknown_821D2F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x02, 0x00, 0x00, 0x67, 0x11, 0x02, 0x02 -.4byte gUnknown_821EC08 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x02, 0x00, 0x00, 0x60, 0x11, 0x02, 0x02 -.4byte gUnknown_821ED08 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821F84C -gUnknown_821F84C: @ 821F84C -.byte 0x52, 0x06, 0x00, 0x00, 0x6a, 0x0f, 0x02, 0x02 -.4byte gUnknown_821ED78 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821F864 -gUnknown_821F864: @ 821F864 -.byte 0x00, 0x02, 0x00, 0x00, 0x64, 0x0f, 0x02, 0x02 -.4byte gUnknown_821EE64 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x05, 0x00, 0x00, 0x67, 0x11, 0x02, 0x02 -.4byte gUnknown_821F534 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x03, 0x00, 0x00, 0x60, 0x11, 0x02, 0x02 -.4byte gUnknown_821F5E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x06, 0x00, 0x00, 0x6a, 0x0f, 0x02, 0x02 -.4byte gUnknown_821F684 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821F8C4 -gUnknown_821F8C4: @ 821F8C4 -.byte 0x00, 0x00, 0x01, 0x01, 0x67, 0x0f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821F8D0 -gUnknown_821F8D0: @ 821F8D0 -.byte 0x00, 0x00, 0x01, 0x01, 0x67, 0x0f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821F8DC -gUnknown_821F8DC: @ 821F8DC -.4byte gUnknown_821D250 - -.global gUnknown_821F8E0 -gUnknown_821F8E0: @ 821F8E0 -.4byte gUnknown_821D2EC - -.global gUnknown_821F8E4 -gUnknown_821F8E4: @ 821F8E4 -.4byte gUnknown_821EE58 - -.global gUnknown_821F8E8 -gUnknown_821F8E8: @ 821F8E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821F8DC - -.global gUnknown_821F910 -gUnknown_821F910: @ 821F910 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_821F804 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821F8C4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821F8E0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821F84C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821F960 -gUnknown_821F960: @ 821F960 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_821F864 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821F8D0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821F8E4 - -.global gUnknown_821F988 -gUnknown_821F988: @ 821F988 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821F8E8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_821F910 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_821F960 - -.global gUnknown_821F9A0 -gUnknown_821F9A0: @ 821F9A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821F9A8 -gUnknown_821F9A8: @ 821F9A8 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_821F988 -.4byte gUnknown_821F9A0 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_821F9BC -gUnknown_821F9BC: @ 821F9BC -.byte 0xf6, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x08, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821F9FC -gUnknown_821F9FC: @ 821F9FC -.string "../data/ground/ground_data_a04p01_station.c\0" -.align 2, 0 - -.global gUnknown_821FA28 -gUnknown_821FA28: @ 821FA28 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9BC - -.global gUnknown_821FA34 -gUnknown_821FA34: @ 821FA34 -.byte 0xf6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x08, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x00, 0x05, 0x00, 0x20, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821FAB4 -gUnknown_821FAB4: @ 821FAB4 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821FA34 - -.global gUnknown_821FAC0 -gUnknown_821FAC0: @ 821FAC0 -.byte 0xf6, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0xa0, 0x80, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3b, 0x38, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821FB60 -gUnknown_821FB60: @ 821FB60 -.byte 0xf6, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821FC98 -.byte 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821FC70 -.byte 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821FC40 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821FC40 -gUnknown_821FC40: @ 821FC40 -.string " The star{COMMA} it falls.\n" -.string "It falls straight to us.\0" -.align 2, 0 - -.global gUnknown_821FC70 -gUnknown_821FC70: @ 821FC70 -.string " ...It is huge...{WAIT_PRESS}\n" -.string "A giant of a star!\0" -.align 2, 0 - -.global gUnknown_821FC98 -gUnknown_821FC98: @ 821FC98 -.string " From the sky!\n" -.string "Comes a star!\0" -.align 2, 0 - -.global gUnknown_821FCB8 -gUnknown_821FCB8: @ 821FCB8 -.byte 0xf6, 0x00, 0x4a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x08, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00 -.byte 0x20, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821FD38 -gUnknown_821FD38: @ 821FD38 -.byte 0x90, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821FCB8 - -.global gUnknown_821FD44 -gUnknown_821FD44: @ 821FD44 -.byte 0xf6, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x59, 0x00, 0x00, 0x00, 0x20, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x70, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_821FDC4 -gUnknown_821FDC4: @ 821FDC4 -.byte 0xf6, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x2e, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821FFD8 -.byte 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821FFA4 -.byte 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821FF64 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821FF10 -.byte 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821FEF4 -closeTextBox -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_821FEF4 -gUnknown_821FEF4: @ 821FEF4 -.string " Something must be done...\0" -.align 2, 0 - -.global gUnknown_821FF10 -gUnknown_821FF10: @ 821FF10 -.string " ...If it keeps coming...\n" -.string "It will crash into this world.{WAIT_PRESS}\n" -.string "It shall be terrible.\0" -.align 2, 0 - -.global gUnknown_821FF64 -gUnknown_821FF64: @ 821FF64 -.string " All because of the star.\n" -.string "The star that slowly comes closer.\0" -.align 2, 0 - -.global gUnknown_821FFA4 -gUnknown_821FFA4: @ 821FFA4 -.string " The balance of the world{COMMA}\n" -.string "it has been upset...\0" -.align 2, 0 - -.global gUnknown_821FFD8 -gUnknown_821FFD8: @ 821FFD8 -.string " Disasters in nature...\n" -.string "There were many...\0" -.align 2, 0 - -.global gUnknown_8220004 -gUnknown_8220004: @ 8220004 -.byte 0xf6, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x48, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x08, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82200A4 -gUnknown_82200A4: @ 82200A4 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220004 - -.global gUnknown_82200B0 -gUnknown_82200B0: @ 82200B0 -.byte 0xf6, 0x00, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x68, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220DD4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220DC4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0x2e, 0x02, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220D94 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220D64 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220D54 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220DC4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00, 0xe9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220D3C -closeTextBox -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220D14 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220CE4 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220CCC -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x01, 0xe8, 0xff, 0xff, 0xff, 0xe8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220C98 -.byte 0xe1, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x84, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220C68 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220C48 -closeTextBox -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220C14 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220BF4 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220BE0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220BB8 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220B88 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220B38 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220B24 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220AD8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220A6C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220A44 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220A38 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82209FC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82209BC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82209A8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220994 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220954 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8220914 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82209A8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82208E4 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82208D0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82208D0 -gUnknown_82208D0: @ 82208D0 -.string "(Gardevoir said...)\0" -.align 2, 0 - -.global gUnknown_82208E4 -gUnknown_82208E4: @ 82208E4 -.string "(...Yes...{WAIT_PRESS}\n" -.string "And when that wish comes true...)\0" -.align 2, 0 - -.global gUnknown_8220914 -gUnknown_8220914: @ 8220914 -.string " If that will bring peace{COMMA}\n" -.string "I{APOSTROPHE}ll gladly give my life for it!\0" -.align 2, 0 - -.global gUnknown_8220954 -gUnknown_8220954: @ 8220954 -.string " We have to get Rayquaza\n" -.string "to destroy that falling star{COMMA} right?\0" -.align 2, 0 - -.global gUnknown_8220994 -gUnknown_8220994: @ 8220994 -.string " Of course we will!\0" -.align 2, 0 - -.global gUnknown_82209A8 -gUnknown_82209A8: @ 82209A8 -.string " That{APOSTROPHE}s my wish.\0" -.align 2, 0 - -.global gUnknown_82209BC -gUnknown_82209BC: @ 82209BC -.string " If that will bring peace{COMMA}\n" -.string "I{APOSTROPHE}m willing to give up my life.\0" -.align 2, 0 - -.global gUnknown_82209FC -gUnknown_82209FC: @ 82209FC -.string " We have to persuade\n" -.string "Rayquaza to destroy that falling star.\0" -.align 2, 0 - -.global gUnknown_8220A38 -gUnknown_8220A38: @ 8220A38 -.string " Of course!\0" -.align 2, 0 - -.global gUnknown_8220A44 -gUnknown_8220A44: @ 8220A44 -.string " That{APOSTROPHE}s what I want to\n" -.string "make happen.\0" -.align 2, 0 - -.global gUnknown_8220A6C -gUnknown_8220A6C: @ 8220A6C -.string " If that{APOSTROPHE}s what{APOSTROPHE}s going to\n" -.string "bring back peace{COMMA} I{APOSTROPHE}m not going to think\n" -.string "twice about giving up my life!\0" -.align 2, 0 - -.global gUnknown_8220AD8 -gUnknown_8220AD8: @ 8220AD8 -.string " We need to see Rayquaza\n" -.string "and ask it to blow up that falling\n" -.string "star{COMMA} right?\0" -.align 2, 0 - -.global gUnknown_8220B24 -gUnknown_8220B24: @ 8220B24 -.string " You bet we will!\0" -.align 2, 0 - -.global gUnknown_8220B38 -gUnknown_8220B38: @ 8220B38 -.string " This journey will be fraught\n" -.string "with considerable danger.{WAIT_PRESS}\n" -.string "Will you still go?\0" -.align 2, 0 - -.global gUnknown_8220B88 -gUnknown_8220B88: @ 8220B88 -.string " Now...{WAIT_PRESS}\n" -.string "I must ask you this one last time.\0" -.align 2, 0 - -.global gUnknown_8220BB8 -gUnknown_8220BB8: @ 8220BB8 -.string " Hahaha! It must be bashful.\n" -.string "Let it be.\0" -.align 2, 0 - -.global gUnknown_8220BE0 -gUnknown_8220BE0: @ 8220BE0 -.string " Who could it be?\0" -.align 2, 0 - -.global gUnknown_8220BF4 -gUnknown_8220BF4: @ 8220BF4 -.string " ...Gone away{COMMA} it seems...\0" -.align 2, 0 - -.global gUnknown_8220C14 -gUnknown_8220C14: @ 8220C14 -.string " A Ghost-type Pokémon.\n" -.string "We received help from it.\0" -.align 2, 0 - -.global gUnknown_8220C48 -gUnknown_8220C48: @ 8220C48 -.string " By me{COMMA} {ARG_NICKNAME_2}{COMMA}\n" -.string "and...{WAIT_PRESS}\n" -.string "Oh?\0" -.align 2, 0 - -.global gUnknown_8220C68 -gUnknown_8220C68: @ 8220C68 -.string " That was made using\n" -.string "the powers of psychics.\0" -.align 2, 0 - -.global gUnknown_8220C98 -gUnknown_8220C98: @ 8220C98 -.string "{CENTER_ALIGN}{ARG_NICKNAME_0}{APOSTROPHE}s team received\n" -.string "{CENTER_ALIGN}the {COLOR_1 GREEN}Teleport Gem{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_8220CCC -gUnknown_8220CCC: @ 8220CCC -.string " Now{COMMA} {ARG_NICKNAME_0}.{WAIT_PRESS}\n" -.string "Accept!\0" -.align 2, 0 - -.global gUnknown_8220CE4 -gUnknown_8220CE4: @ 8220CE4 -.string " This will deliver you\n" -.string "to the world of the sky.\0" -.align 2, 0 - -.global gUnknown_8220D14 -gUnknown_8220D14: @ 8220D14 -.string " This...\n" -.string "This is the {COLOR_1 GREEN}Teleport Gem{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_8220D3C -gUnknown_8220D3C: @ 8220D3C -.string " .........{WAIT_PRESS}It is made.\0" -.align 2, 0 - -.global gUnknown_8220D54 -gUnknown_8220D54: @ 8220D54 -.string " Teleport Gem?\0" -.align 2, 0 - -.global gUnknown_8220D64 -gUnknown_8220D64: @ 8220D64 -.string " It is almost ready.{WAIT_PRESS}\n" -.string "The {COLOR_1 GREEN}Teleport Gem{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_8220D94 -gUnknown_8220D94: @ 8220D94 -.string " Wh-{WAIT_PRESS}what{APOSTROPHE}s going on?{WAIT_PRESS}\n" -.string "What is {ARG_NICKNAME_3} doing?\0" -.align 2, 0 - -.global gUnknown_8220DC4 -gUnknown_8220DC4: @ 8220DC4 -.string " Kwaaaaaaaaaah!\0" -.align 2, 0 - -.global gUnknown_8220DD4 -gUnknown_8220DD4: @ 8220DD4 -.string " Ah{COMMA} good of you to come.\0" -.align 2, 0 - -.global gUnknown_8220DF0 -gUnknown_8220DF0: @ 8220DF0 -.byte 0xf6, 0x00, 0x18, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x68, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8220F50 -gUnknown_8220F50: @ 8220F50 -.byte 0xf6, 0x00, 0x31, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -setAnimation 5 -.byte 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x0a, shortestDir, south -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8221070 -gUnknown_8221070: @ 8221070 -.byte 0xf6, 0x00, 0x46, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8221180 -gUnknown_8221180: @ 8221180 -.byte 0xf6, 0x00, 0x5a, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x60, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82211E0 -gUnknown_82211E0: @ 82211E0 -.byte 0xf6, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x59, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x56, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x70, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8221360 -gUnknown_8221360: @ 8221360 -.byte 0xf6, 0x00, 0x7e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x08, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82213F0 -gUnknown_82213F0: @ 82213F0 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8221360 - -.global gUnknown_82213FC -gUnknown_82213FC: @ 82213FC -.byte 0xf6, 0x00, 0x8c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8221784 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8221750 -closeTextBox -pause 0x0a -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8221730 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8221710 -closeTextBox -pause 0x0a -setAnimation 47 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -pause 0x3c -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82216EC -closeTextBox -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xf4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -setFlag 0x06 -setFlag 0x0c -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -setFlag 0x0b -.byte 0xc6, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x38, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -setFlag 0x03 -closeThread - -.global gUnknown_82216EC -gUnknown_82216EC: @ 82216EC -.string " We{APOSTROPHE}re counting on you!\n" -.string "{ARG_NICKNAME_1}! {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8221710 -gUnknown_8221710: @ 8221710 -.string " {ARG_NICKNAME_0}!\n" -.string "Let{APOSTROPHE}s get this done!\0" -.align 2, 0 - -.global gUnknown_8221730 -gUnknown_8221730: @ 8221730 -.string " {ARG_NICKNAME_0}!\n" -.string "Let{APOSTROPHE}s do this right!\0" -.align 2, 0 - -.global gUnknown_8221750 -gUnknown_8221750: @ 8221750 -.string "(This will be my last adventure...{WAIT_PRESS}\n" -.string "With {ARG_NICKNAME_1}...)\0" -.align 2, 0 - -.global gUnknown_8221784 -gUnknown_8221784: @ 8221784 -.string "(............)\0" -.align 2, 0 - -.global gUnknown_8221794 -gUnknown_8221794: @ 8221794 -.byte 0xf6, 0x00, 0xc1, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0x89, 0x10, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x38, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8221864 -gUnknown_8221864: @ 8221864 -.byte 0xf6, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8221904 -gUnknown_8221904: @ 8221904 -.byte 0xf6, 0x00, 0xde, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8221944 -gUnknown_8221944: @ 8221944 -.byte 0xf6, 0x00, 0xe5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0x89, 0x10, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x08, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x38, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8221A04 -gUnknown_8221A04: @ 8221A04 -.byte 0xf6, 0x00, 0xf4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0xa5, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xb4 -.byte 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x56, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8221AD4 -gUnknown_8221AD4: @ 8221AD4 -.byte 0xf6, 0x00, 0x04, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x59, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x56, 0x00, 0x00, 0x00, 0xa4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8221BC4 -gUnknown_8221BC4: @ 8221BC4 -.byte 0xf6, 0x00, 0x16, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x59, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0xa1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0xa4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8221CB4 -gUnknown_8221CB4: @ 8221CB4 -.byte 0xf6, 0x00, 0x28, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x59, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x56, 0x00, 0x00, 0x00, 0xa4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8221DA4 -gUnknown_8221DA4: @ 8221DA4 -.byte 0xf6, 0x00, 0x3a, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x3b, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8221E34 -gUnknown_8221E34: @ 8221E34 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8221DA4 - -.global gUnknown_8221E40 -gUnknown_8221E40: @ 8221E40 -.byte 0xf6, 0x00, 0x48, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x24, 0x00, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x40, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8221F00 -gUnknown_8221F00: @ 8221F00 -.byte 0xf6, 0x00, 0x57, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8222C34 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8222C18 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8222C04 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8222BE4 -closeTextBox -.byte 0x3b, 0x39, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x03, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8222BC8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8222BAC -closeTextBox -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8222B9C -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8222B80 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8222B4C -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8222B24 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe6, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x04, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x04, 0x00, 0xfd, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8222AE4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8222ACC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x06, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8222A90 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8222A6C -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8222A3C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xda, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8222A2C -setFlag 0x04 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x01, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8222A0C -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82229C0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc6, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x08, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8222990 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8222978 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x08, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x09, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8222940 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8222920 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8222914 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82228EC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82228D8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82228B0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82228D8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xe4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0e -.byte 0xe4, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x10 -.byte 0xe4, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x12 -.byte 0xe4, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x14 -.byte 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82228B0 -gUnknown_82228B0: @ 82228B0 -.string " We did it{COMMA} {ARG_NICKNAME_0}!{WAIT_PRESS}\n" -.string "Everything worked!\0" -.align 2, 0 - -.global gUnknown_82228D8 -gUnknown_82228D8: @ 82228D8 -.string " We{APOSTROPHE}ve won peace!\0" -.align 2, 0 - -.global gUnknown_82228EC -gUnknown_82228EC: @ 82228EC -.string " We did it{COMMA} {ARG_NICKNAME_0}!{WAIT_PRESS}\n" -.string "We got it done!\0" -.align 2, 0 - -.global gUnknown_8222914 -gUnknown_8222914: @ 8222914 -.string " Really!\0" -.align 2, 0 - -.global gUnknown_8222920 -gUnknown_8222920: @ 8222920 -.string " Be calm.\n" -.string "Both are unharmed.\0" -.align 2, 0 - -.global gUnknown_8222940 -gUnknown_8222940: @ 8222940 -.string " What about our team\n" -.string "members? Where are {ARG_NICKNAME_8} and\n" -.string "{ARG_NICKNAME_9}?!\0" -.align 2, 0 - -.global gUnknown_8222978 -gUnknown_8222978: @ 8222978 -.string " Be calm.\n" -.string "{ARG_NICKNAME_8} is safe.\0" -.align 2, 0 - -.global gUnknown_8222990 -gUnknown_8222990: @ 8222990 -.string " What about our team\n" -.string "member?\n" -.string "Where{APOSTROPHE}s {ARG_NICKNAME_8}?!\0" -.align 2, 0 - -.global gUnknown_82229C0 -gUnknown_82229C0: @ 82229C0 -.string " Though it will not be\n" -.string "right away...{WAIT_PRESS}\n" -.string "The disasters shall soon be calmed.\0" -.align 2, 0 - -.global gUnknown_8222A0C -gUnknown_8222A0C: @ 8222A0C -.string " Fear not!\n" -.string "The star is no more.\0" -.align 2, 0 - -.global gUnknown_8222A2C -gUnknown_8222A2C: @ 8222A2C -.string " Kwaaaaaaaaah!\0" -.align 2, 0 - -.global gUnknown_8222A3C -gUnknown_8222A3C: @ 8222A3C -.string " What about the star?!{WAIT_PRESS}\n" -.string "What happened to it?!\0" -.align 2, 0 - -.global gUnknown_8222A6C -gUnknown_8222A6C: @ 8222A6C -.string " Everyone... Thank you.{WAIT_PRESS}\n" -.string "But...\0" -.align 2, 0 - -.global gUnknown_8222A90 -gUnknown_8222A90: @ 8222A90 -.string " Snivel...\n" -.string "I{APOSTROPHE}m so glad you{APOSTROPHE}re safe!{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s fantastic!\0" -.align 2, 0 - -.global gUnknown_8222ACC -gUnknown_8222ACC: @ 8222ACC -.string " You were incredible!\0" -.align 2, 0 - -.global gUnknown_8222AE4 -gUnknown_8222AE4: @ 8222AE4 -.string " Awesome{COMMA} you{APOSTROPHE}re alive!{WAIT_PRESS}\n" -.string "You really had all of us worried!\0" -.align 2, 0 - -.global gUnknown_8222B24 -gUnknown_8222B24: @ 8222B24 -.string " ...Maybe...{WAIT_PRESS}\n" -.string "Did Gengar save {ARG_NICKNAME_0} too?\0" -.align 2, 0 - -.global gUnknown_8222B4C -gUnknown_8222B4C: @ 8222B4C -.string "(I{APOSTROPHE}m sure... Back there...{WAIT_PRESS}\n" -.string "Gengar saved me...)\0" -.align 2, 0 - -.global gUnknown_8222B80 -gUnknown_8222B80: @ 8222B80 -.string "(...{WAIT_PRESS}I{APOSTROPHE}m sure of it...)\0" -.align 2, 0 - -.global gUnknown_8222B9C -gUnknown_8222B9C: @ 8222B9C -.string " Oooooooohhhhh!\0" -.align 2, 0 - -.global gUnknown_8222BAC -gUnknown_8222BAC: @ 8222BAC -.string "...Regained consciousness!\0" -.align 2, 0 - -.global gUnknown_8222BC8 -gUnknown_8222BC8: @ 8222BC8 -.string "............Urgggh......\0" -.align 2, 0 - -.global gUnknown_8222BE4 -gUnknown_8222BE4: @ 8222BE4 -.string "(...{WAIT_PRESS}Huh...?{WAIT_PRESS} This place...)\0" -.align 2, 0 - -.global gUnknown_8222C04 -gUnknown_8222C04: @ 8222C04 -.string " Snap out of it!\0" -.align 2, 0 - -.global gUnknown_8222C18 -gUnknown_8222C18: @ 8222C18 -.string " ...Hey{COMMA} can you hear...\0" -.align 2, 0 - -.global gUnknown_8222C34 -gUnknown_8222C34: @ 8222C34 -.string " .........Hey.\0" -.align 2, 0 - -.global gUnknown_8222C44 -gUnknown_8222C44: @ 8222C44 -.byte 0xf6, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x06, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x91, 0x06, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x91, 0x06, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x01, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8222EC4 -gUnknown_8222EC4: @ 8222EC4 -.byte 0xf6, 0x00, 0x2b, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x01, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8222FB4 -gUnknown_8222FB4: @ 8222FB4 -.byte 0xf6, 0x00, 0x3d, 0x03, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0a, shortestDir, south -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8223084 -gUnknown_8223084: @ 8223084 -.byte 0xf6, 0x00, 0x4d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x03 -.byte 0x89, 0x08, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x07 -.byte 0x91, 0x01, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82231B4 -gUnknown_82231B4: @ 82231B4 -.byte 0xf6, 0x00, 0x63, 0x03, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -setAnimation 2 -.byte 0x2d, 0x07, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x08, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, shortestDir, north -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x03 -.byte 0x91, 0x04, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82232E4 -gUnknown_82232E4: @ 82232E4 -.byte 0xf6, 0x00, 0x79, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x08 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x08, 0x00, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x91, 0x01, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82233F4 -gUnknown_82233F4: @ 82233F4 -.byte 0xf6, 0x00, 0x8d, 0x03, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -setAnimation 2 -.byte 0x2d, 0x07, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x08 -.byte 0x89, 0x08, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, shortestDir, north -.byte 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x04, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8223504 -gUnknown_8223504: @ 8223504 -.byte 0xf6, 0x00, 0xa1, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x03 -.byte 0x89, 0x08, 0x00, 0x01, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, shortestDir, north -.byte 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x08 -.byte 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8223604 -gUnknown_8223604: @ 8223604 -.byte 0xf6, 0x00, 0xb4, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x89, 0x08, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, shortestDir, north -.byte 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0b -.byte 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82236E4 -gUnknown_82236E4: @ 82236E4 -.byte 0xf6, 0x00, 0xc5, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x07 -.byte 0x89, 0x08, 0x00, 0x01, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, shortestDir, north -.byte 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x07 -.byte 0x91, 0x04, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82237E4 -gUnknown_82237E4: @ 82237E4 -.byte 0xf6, 0x00, 0xd8, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x89, 0x08, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, shortestDir, north -.byte 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0c -.byte 0x91, 0x04, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82238E4 -gUnknown_82238E4: @ 82238E4 -.byte 0xf6, 0x00, 0xeb, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x03 -.byte 0x89, 0x08, 0x00, 0x01, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, shortestDir, north -.byte 0xe3, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x09 -.byte 0x91, 0x04, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82239C4 -gUnknown_82239C4: @ 82239C4 -.byte 0xf6, 0x00, 0xfc, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x89, 0x08, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x01, shortestDir, north -.byte 0xe3, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x09 -.byte 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8223AC4 -gUnknown_8223AC4: @ 8223AC4 -.byte 0xf6, 0x00, 0x0f, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x08, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x03 -.byte 0x91, 0x01, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8223BB4 -gUnknown_8223BB4: @ 8223BB4 -.byte 0xf6, 0x00, 0x21, 0x04, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x08, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8223C34 -gUnknown_8223C34: @ 8223C34 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8223BB4 - -.global gUnknown_8223C40 -gUnknown_8223C40: @ 8223C40 -.byte 0xf6, 0x00, 0x2e, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x50, 0x80, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x28, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x18, 0x99, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0x89, 0xa0, 0x4c, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8223D40 -gUnknown_8223D40: @ 8223D40 -.byte 0xf6, 0x00, 0x41, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x07, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8225508 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x09, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82254E8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2d, 0x09, 0x09, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0e -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82254BC -closeTextBox -.byte 0xe4, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x04, 0x00, 0xfd, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8225458 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x09, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x05, 0x09, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8225434 -closeTextBox -.byte 0xe6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xdb, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8225410 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xe6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0x2e, 0x0c, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82253E4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x09, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82253D4 -closeTextBox -.byte 0xe6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xa5, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xdb, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82253A4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8225394 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822538C -closeTextBox -.byte 0x48, 0x00, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa5, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xdd, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8225374 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x44, 0x00, 0x00, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822533C -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8225318 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82252FC -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82252CC -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82252A0 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8225280 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8225244 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82251F4 -closeTextBox -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xe4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82251E8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xe6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82251B0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8225174 -closeTextBox -.byte 0x91, 0x0a, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822516C -closeTextBox -.byte 0x91, 0x0a, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x0a, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x0a, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8225130 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x07, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8225128 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x12 -.byte 0x2d, 0x09, 0x09, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x09, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822510C -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82250D4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82250C8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8225098 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8225078 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8225050 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8225040 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x09, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x09, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822501C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8225004 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8224FD0 -.byte 0x2e, 0x15, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8224FA8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x14 -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8224F7C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8224F60 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x2e, 0x15, 0x01, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8224F4C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8224F30 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x14 -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8224F10 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8224ED8 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8224ED8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8224ED8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8224EAC -closeTextBox -.byte 0xe4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x09, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x09, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8224EA4 -closeTextBox -.byte 0x2d, 0x09, 0x09, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x09, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8224EA4 -closeTextBox -.byte 0x2d, 0x09, 0x09, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x09, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x09, 0x00, 0xfd, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8224EA4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x06, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x06, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822538C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x14 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x38, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8224E90 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xe4, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0f -.byte 0xe4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x11 -.byte 0xe4, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x13 -.byte 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8224E90 -gUnknown_8224E90: @ 8224E90 -.string " {ARG_NICKNAME_0}!!! Nooooo!!!\0" -.align 2, 0 - -.global gUnknown_8224EA4 -gUnknown_8224EA4: @ 8224EA4 -.string " {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8224EAC -gUnknown_8224EAC: @ 8224EAC -.string "I{APOSTROPHE}m so very sorry.\n" -.string "This is good-bye...\0" -.align 2, 0 - -.global gUnknown_8224ED8 -gUnknown_8224ED8: @ 8224ED8 -.string " I...\n" -.string "What am I going to do when you{APOSTROPHE}re\n" -.string "gone{COMMA} {ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_8224F10 -gUnknown_8224F10: @ 8224F10 -.string "I{APOSTROPHE}m blessed to have met you.\0" -.align 2, 0 - -.global gUnknown_8224F30 -gUnknown_8224F30: @ 8224F30 -.string " Don{APOSTROPHE}t go{COMMA} {ARG_NICKNAME_0}......\0" -.align 2, 0 - -.global gUnknown_8224F4C -gUnknown_8224F4C: @ 8224F4C -.string " Wait{COMMA} {ARG_NICKNAME_0}......\0" -.align 2, 0 - -.global gUnknown_8224F60 -gUnknown_8224F60: @ 8224F60 -.string "I will never forget you.\0" -.align 2, 0 - -.global gUnknown_8224F7C -gUnknown_8224F7C: @ 8224F7C -.string "Yes.{WAIT_PRESS}\n" -.string "You will always be my friend{COMMA}\n" -.string "{ARG_NICKNAME_1}.\0" -.align 2, 0 - -.global gUnknown_8224FA8 -gUnknown_8224FA8: @ 8224FA8 -.string " Didn{APOSTROPHE}t we...{WAIT_PRESS}\n" -.string "Aren{APOSTROPHE}t we friends?\0" -.align 2, 0 - -.global gUnknown_8224FD0 -gUnknown_8224FD0: @ 8224FD0 -.string " I don{APOSTROPHE}t understand!\n" -.string "Why do you have to leave?!\0" -.align 2, 0 - -.global gUnknown_8225004 -gUnknown_8225004: @ 8225004 -.string " Huh? W-why...?{WAIT_PRESS}\n" -.string "Why?!\0" -.align 2, 0 - -.global gUnknown_822501C -gUnknown_822501C: @ 822501C -.string " Go back...{WAIT_PRESS}\n" -.string "To the human world?!\0" -.align 2, 0 - -.global gUnknown_8225040 -gUnknown_8225040: @ 8225040 -.string " Unbelievable!\0" -.align 2, 0 - -.global gUnknown_8225050 -gUnknown_8225050: @ 8225050 -.string "I have to return to the human world.\0" -.align 2, 0 - -.global gUnknown_8225078 -gUnknown_8225078: @ 8225078 -.string "My role as a Pokémon has ended.\0" -.align 2, 0 - -.global gUnknown_8225098 -gUnknown_8225098: @ 8225098 -.string " ...{WAIT_PRESS}Leave...?{WAIT_PRESS}\n" -.string "What do you mean{COMMA} leave?\0" -.align 2, 0 - -.global gUnknown_82250C8 -gUnknown_82250C8: @ 82250C8 -.string " ...Huh?\0" -.align 2, 0 - -.global gUnknown_82250D4 -gUnknown_82250D4: @ 82250D4 -.string "Everyone...{WAIT_PRESS}\n" -.string "Thank you for everything all this time.\0" -.align 2, 0 - -.global gUnknown_822510C -gUnknown_822510C: @ 822510C -.string " Wh-what are you saying?!\0" -.align 2, 0 - -.global gUnknown_8225128 -gUnknown_8225128: @ 8225128 -.string " What?!\0" -.align 2, 0 - -.global gUnknown_8225130 -gUnknown_8225130: @ 8225130 -.string "And{COMMA} everyone...{WAIT_PRESS} I{APOSTROPHE}m sorry.{WAIT_PRESS}\n" -.string "But I have to leave.\0" -.align 2, 0 - -.global gUnknown_822516C -gUnknown_822516C: @ 822516C -.string "{ARG_NICKNAME_1}...\0" -.align 2, 0 - -.global gUnknown_8225174 -gUnknown_8225174: @ 8225174 -.string " ...!{WAIT_PRESS} {ARG_NICKNAME_0}...!{WAIT_PRESS}\n" -.string "Your body...{WAIT_PRESS} What{APOSTROPHE}s happening to you?\0" -.align 2, 0 - -.global gUnknown_82251B0 -gUnknown_82251B0: @ 82251B0 -.string " ...!{WAIT_PRESS} {ARG_NICKNAME_0}...!{WAIT_PRESS}\n" -.string "Your body...{WAIT_PRESS} What{APOSTROPHE}s happening?\0" -.align 2, 0 - -.global gUnknown_82251E8 -gUnknown_82251E8: @ 82251E8 -.string " Oh? {ARG_NICKNAME_0}?\0" -.align 2, 0 - -.global gUnknown_82251F4 -gUnknown_82251F4: @ 82251F4 -.string " {ARG_NICKNAME_0}...{WAIT_PRESS}\n" -.string "I am so sorry for this...{WAIT_PRESS}\n" -.string "To everyone...{WAIT_PRESS} Please bid farewell...\0" -.align 2, 0 - -.global gUnknown_8225244 -gUnknown_8225244: @ 8225244 -.string "(It{APOSTROPHE}s finally come...{WAIT_PRESS}\n" -.string "This time has finally arrived...)\0" -.align 2, 0 - -.global gUnknown_8225280 -gUnknown_8225280: @ 8225280 -.string " It is time to bid farewell.\0" -.align 2, 0 - -.global gUnknown_82252A0 -gUnknown_82252A0: @ 82252A0 -.string " Soon{COMMA} you must return to\n" -.string "your own world.\0" -.align 2, 0 - -.global gUnknown_82252CC -gUnknown_82252CC: @ 82252CC -.string " And now...{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_0}{COMMA} your role here has ended.\0" -.align 2, 0 - -.global gUnknown_82252FC -gUnknown_82252FC: @ 82252FC -.string " Thank you for everything.\0" -.align 2, 0 - -.global gUnknown_8225318 -gUnknown_8225318: @ 8225318 -.string " Peace has returned to\n" -.string "our world.\0" -.align 2, 0 - -.global gUnknown_822533C -gUnknown_822533C: @ 822533C -.string " We owe everything to you{COMMA}\n" -.string "{ARG_NICKNAME_0}{COMMA} and your friends.\0" -.align 2, 0 - -.global gUnknown_8225374 -gUnknown_8225374: @ 8225374 -.string "(............{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_5}...)\0" -.align 2, 0 - -.global gUnknown_822538C -gUnknown_822538C: @ 822538C -.string " {ARG_NICKNAME_0}...\0" -.align 2, 0 - -.global gUnknown_8225394 -gUnknown_8225394: @ 8225394 -.string " Ahahahahaha!\0" -.align 2, 0 - -.global gUnknown_82253A4 -gUnknown_82253A4: @ 82253A4 -.string " What{COMMA} you{APOSTROPHE}re serious?!\n" -.string "Nooooo! Don{APOSTROPHE}t!\0" -.align 2, 0 - -.global gUnknown_82253D4 -gUnknown_82253D4: @ 82253D4 -.string " Oh?{WAIT_PRESS} Not bad!\0" -.align 2, 0 - -.global gUnknown_82253E4 -gUnknown_82253E4: @ 82253E4 -.string " I{APOSTROPHE}ll secure him so he can{APOSTROPHE}t\n" -.string "get away.\0" -.align 2, 0 - -.global gUnknown_8225410 -gUnknown_8225410: @ 8225410 -.string " Y-you{APOSTROPHE}ve gotta be kidding\n" -.string "me!\0" -.align 2, 0 - -.global gUnknown_8225434 -gUnknown_8225434: @ 8225434 -.string " No{COMMA} no!\n" -.string "Let it loose! Hahaha!\0" -.align 2, 0 - -.global gUnknown_8225458 -gUnknown_8225458: @ 8225458 -.string " Whoa{COMMA} hold on there!\n" -.string "Don{APOSTROPHE}t you point those things at me!{WAIT_PRESS}\n" -.string "Face the other way! The other way!\0" -.align 2, 0 - -.global gUnknown_82254BC -gUnknown_82254BC: @ 82254BC -.string " Let me shoot my Hydro\n" -.string "Pump to kick it off!\0" -.align 2, 0 - -.global gUnknown_82254E8 -gUnknown_82254E8: @ 82254E8 -.string " This calls for a celebration!\0" -.align 2, 0 - -.global gUnknown_8225508 -gUnknown_8225508: @ 8225508 -.string " Yippee!\n" -.string "This is the greatest!\0" -.align 2, 0 - -.global gUnknown_8225528 -gUnknown_8225528: @ 8225528 -.byte 0xf6, 0x00, 0x6b, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x6e -.byte 0x91, 0x0c, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x28 -.byte 0x89, 0x50, 0x4c, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x89, 0x28, 0x00, 0x01 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8225728 -gUnknown_8225728: @ 8225728 -.byte 0xf6, 0x00, 0x8e, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xb3, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x6a, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xaa, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, shortestDir, north -.byte 0xdb, 0x00, 0x19, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00, 0x10, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8225A58 -gUnknown_8225A58: @ 8225A58 -.byte 0xf6, 0x00, 0xc4, 0x05 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x0c, 0x01, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8225B08 -gUnknown_8225B08: @ 8225B08 -.byte 0xf6, 0x00, 0xd2, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x4c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x04, 0x02, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, east -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xdb, 0x00, 0x32, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xdb, 0x00, 0x32, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xaa -.byte 0x91, 0x0c, 0x02, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8225F38 -gUnknown_8225F38: @ 8225F38 -.byte 0xf6, 0x00, 0x18, 0x06 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -setAnimation 2 -.byte 0x2d, 0x07, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x07 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xb3, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0a, shortestDir, southeast -.byte 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x78, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, CCW, north -.byte 0xe3, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x6a, 0x00, 0xb3, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8226168 -gUnknown_8226168: @ 8226168 -.byte 0xf6, 0x00, 0x3e, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xb3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xbe -.byte 0x91, 0x0c, 0x01, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82263C8 -gUnknown_82263C8: @ 82263C8 -.byte 0xf6, 0x00, 0x67, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x23, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe3, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x6a, 0x00, 0xb3, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xc8, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, CCW, north -.byte 0xe3, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x6a, 0x00, 0x4c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82266E8 -gUnknown_82266E8: @ 82266E8 -.byte 0xf6, 0x00, 0x9c, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x10, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x28 -.byte 0x6b, 0x00, 0xb3, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x10, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x2d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0xc0, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0xc0, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xaa, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, CW, northwest -.byte 0xe3, 0x00, 0x10, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x28 -.byte 0x6a, 0x00, 0xb3, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8226A08 -gUnknown_8226A08: @ 8226A08 -.byte 0xf6, 0x00, 0xd1, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xb3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe3, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x78, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, CW, north -.byte 0xe3, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x28 -.byte 0x6a, 0x00, 0xb3, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8226C68 -gUnknown_8226C68: @ 8226C68 -.byte 0xf6, 0x00, 0xfa, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xe3, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x28 -.byte 0x6b, 0x00, 0xb3, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xe3, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x07 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, CW, north -.byte 0xe3, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x37 -.byte 0x6a, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8226E68 -gUnknown_8226E68: @ 8226E68 -.byte 0xf6, 0x00, 0x1d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x07 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xb3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe3, 0x00, 0x11, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x6a, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe3, 0x00, 0x11, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xaa -.byte 0x91, 0x0c, 0x02, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8227098 -gUnknown_8227098: @ 8227098 -.byte 0xf6, 0x00, 0x43, 0x07 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xe3, 0x00, 0x12, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x23 -.byte 0x6b, 0x00, 0xb3, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe3, 0x00, 0x12, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x12, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xd2, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, CW, north -.byte 0xe3, 0x00, 0x12, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x19 -.byte 0x6a, 0x00, 0xb3, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82272C8 -gUnknown_82272C8: @ 82272C8 -.byte 0xf6, 0x00, 0x69, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x07 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x2d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xb3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe3, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x78, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, CCW, north -.byte 0xe3, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x32 -.byte 0x6a, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82275C8 -gUnknown_82275C8: @ 82275C8 -.byte 0xf6, 0x00, 0x9c, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xb3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe3, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x82, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0c, CW, north -.byte 0xe3, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x6a, 0x00, 0xb3, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82278C8 -gUnknown_82278C8: @ 82278C8 -.byte 0xf6, 0x00, 0xcf, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0xa7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0xaa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x03, 0x00 -.byte 0x6c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xde, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x03, 0x00, 0x6d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x78, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xe4, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0e -.byte 0xe4, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x10 -.byte 0xe4, 0x00, 0x11, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x12 -.byte 0xe4, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xe4, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0e -.byte 0xe4, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x10 -.byte 0xe4, 0x00, 0x11, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x12 -.byte 0xe4, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xa0 -.byte 0x56, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x56, 0x00, 0x03, 0x00 -.byte 0x6e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xa0, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x03, 0x00, 0x6f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x90, 0x99, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0x00, 0xb4, 0x00 -.byte 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8227D08 -gUnknown_8227D08: @ 8227D08 -.byte 0xf6, 0x00, 0x16, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x54, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x54, 0x00, 0x1f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x18, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8227EB8 -gUnknown_8227EB8: @ 8227EB8 -.byte 0xf6, 0x00, 0x34, 0x08 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x48, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xb4, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8227F48 -gUnknown_8227F48: @ 8227F48 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8227EB8 - -.global gUnknown_8227F54 -gUnknown_8227F54: @ 8227F54 -.byte 0xf6, 0x00, 0x42, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -setAnimation 2 -.byte 0x2d, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x58, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0x2b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x06, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822893C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x09, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x09, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822890C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2d, 0x09, 0x09, 0x00, 0x55, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x09, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82288F4 -.byte 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82288C0 -.byte 0x34, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8228890 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x04, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822887C -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8228858 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8228828 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82287F0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82287B8 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8228778 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8228740 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822871C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82286FC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82286D8 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82286C4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8228698 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82286C4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8228698 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8228668 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8228638 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8228608 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82285D4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x0f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82285B0 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8228584 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8228554 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8228538 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8228524 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xe4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0e -.byte 0xe4, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x10 -.byte 0xe4, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x12 -.byte 0xe4, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8228524 -gUnknown_8228524: @ 8228524 -.string " Sob...{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_0}...\0" -.align 2, 0 - -.global gUnknown_8228538 -gUnknown_8228538: @ 8228538 -.string " Try to understand{COMMA}\n" -.string "{ARG_NICKNAME_1}.\0" -.align 2, 0 - -.global gUnknown_8228554 -gUnknown_8228554: @ 8228554 -.string " {ARG_NICKNAME_0} must have felt\n" -.string "the same pain of leaving.\0" -.align 2, 0 - -.global gUnknown_8228584 -gUnknown_8228584: @ 8228584 -.string " As much as you are heart-\n" -.string "broken now...\0" -.align 2, 0 - -.global gUnknown_82285B0 -gUnknown_82285B0: @ 82285B0 -.string " Those words couldn{APOSTROPHE}t be\n" -.string "spoken.\0" -.align 2, 0 - -.global gUnknown_82285D4 -gUnknown_82285D4: @ 82285D4 -.string " If this was coming...{WAIT_PRESS}\n" -.string "Why didn{APOSTROPHE}t {ARG_NICKNAME_0} tell me?\0" -.align 2, 0 - -.global gUnknown_8228608 -gUnknown_8228608: @ 8228608 -.string " Why...{WAIT_PRESS}\n" -.string "Why didn{APOSTROPHE}t {ARG_NICKNAME_0} tell me earlier...?\0" -.align 2, 0 - -.global gUnknown_8228638 -gUnknown_8228638: @ 8228638 -.string " {ARG_NICKNAME_0} knew that\n" -.string "would be the time to leave...\0" -.align 2, 0 - -.global gUnknown_8228668 -gUnknown_8228668: @ 8228668 -.string " And when...{WAIT_PRESS}\n" -.string "When the star was destroyed...\0" -.align 2, 0 - -.global gUnknown_8228698 -gUnknown_8228698: @ 8228698 -.string " {ARG_NICKNAME_0} must have\n" -.string "become a Pokémon to save us.\0" -.align 2, 0 - -.global gUnknown_82286C4 -gUnknown_82286C4: @ 82286C4 -.string " {ARG_NICKNAME_0} must have...\0" -.align 2, 0 - -.global gUnknown_82286D8 -gUnknown_82286D8: @ 82286D8 -.string " {ARG_NICKNAME_0} became\n" -.string "a Pokémon to save us...\0" -.align 2, 0 - -.global gUnknown_82286FC -gUnknown_82286FC: @ 82286FC -.string " I think I understand now...\0" -.align 2, 0 - -.global gUnknown_822871C -gUnknown_822871C: @ 822871C -.string " ............{WAIT_PRESS}\n" -.string "I think I know...\0" -.align 2, 0 - -.global gUnknown_8228740 -gUnknown_8228740: @ 8228740 -.string " As if resigned.\n" -.string "Resigned to accept what was to come.\0" -.align 2, 0 - -.global gUnknown_8228778 -gUnknown_8228778: @ 8228778 -.string " I look back now...{WAIT_PRESS}\n" -.string "When bound for the sky{COMMA} {ARG_NICKNAME_0}\n" -.string "seemed...\0" -.align 2, 0 - -.global gUnknown_82287B8 -gUnknown_82287B8: @ 82287B8 -.string " This was coming...{WAIT_PRESS}\n" -.string "Our world{COMMA} it was saved by {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_82287F0 -gUnknown_82287F0: @ 82287F0 -.string " Just when things were\n" -.string "going to get better...{WAIT_PRESS} Sob...\0" -.align 2, 0 - -.global gUnknown_8228828 -gUnknown_8228828: @ 8228828 -.string " Why now?\n" -.string "Why when the world{APOSTROPHE}s been saved?\0" -.align 2, 0 - -.global gUnknown_8228858 -gUnknown_8228858: @ 8228858 -.string " Just upped and went like\n" -.string "that...\0" -.align 2, 0 - -.global gUnknown_822887C -gUnknown_822887C: @ 822887C -.string " You{APOSTROPHE}re right...\0" -.align 2, 0 - -.global gUnknown_8228890 -gUnknown_8228890: @ 8228890 -.string " Left...{WAIT_PRESS}\n" -.string "Before I could even say thanks...\0" -.align 2, 0 - -.global gUnknown_82288C0 -gUnknown_82288C0: @ 82288C0 -.string " But I hadn{APOSTROPHE}t done anything\n" -.string "to show my thanks...\0" -.align 2, 0 - -.global gUnknown_82288F4 -gUnknown_82288F4: @ 82288F4 -.string " {ARG_NICKNAME_0} saved my\n" -.string "life...\0" -.align 2, 0 - -.global gUnknown_822890C -gUnknown_822890C: @ 822890C -.string " Why?{WAIT_PRESS}\n" -.string "Why was it necessary to leave us...?\0" -.align 2, 0 - -.global gUnknown_822893C -gUnknown_822893C: @ 822893C -.string " Snivel... {ARG_NICKNAME_0}...{WAIT_PRESS}\n" -.string "Why...{WAIT_PRESS} I don{APOSTROPHE}t understand...\0" -.align 2, 0 - -.global gUnknown_8228974 -gUnknown_8228974: @ 8228974 -.byte 0xf6, 0x00, 0xa5, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8228A14 -gUnknown_8228A14: @ 8228A14 -.byte 0xf6, 0x00, 0xb2, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -setAnimation 5 -.byte 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8228AB4 -gUnknown_8228AB4: @ 8228AB4 -.byte 0xf6, 0x00, 0xbf, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8228B64 -gUnknown_8228B64: @ 8228B64 -.byte 0xf6, 0x00, 0xcd, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8228BE4 -gUnknown_8228BE4: @ 8228BE4 -.byte 0xf6, 0x00, 0xd8, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8228C64 -gUnknown_8228C64: @ 8228C64 -.byte 0xf6, 0x00, 0xe3, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8228CE4 -gUnknown_8228CE4: @ 8228CE4 -.byte 0xf6, 0x00, 0xee, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8228D64 -gUnknown_8228D64: @ 8228D64 -.byte 0xf6, 0x00, 0xf9, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe3, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8228DD4 -gUnknown_8228DD4: @ 8228DD4 -.byte 0xf6, 0x00, 0x03, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -setAnimation 2 -.byte 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8228E44 -gUnknown_8228E44: @ 8228E44 -.byte 0xf6, 0x00, 0x0d, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe3, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8228EB4 -gUnknown_8228EB4: @ 8228EB4 -.byte 0xf6, 0x00, 0x17, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -setAnimation 2 -.byte 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8228F24 -gUnknown_8228F24: @ 8228F24 -.byte 0xf6, 0x00, 0x21, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8228F94 -gUnknown_8228F94: @ 8228F94 -.byte 0xf6, 0x00, 0x2b, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -setAnimation 2 -.byte 0xe3, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8229004 -gUnknown_8229004: @ 8229004 -.byte 0xf6, 0x00, 0x35, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_821F9FC -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe3, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8229074 -gUnknown_8229074: @ 8229074 -.byte 0x61, 0x04, 0x00, 0x00, 0x14, 0x24, 0x00, 0x02 -.4byte gUnknown_821FB60 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822908C -gUnknown_822908C: @ 822908C -.byte 0x61, 0x04, 0x00, 0x00, 0x14, 0x24, 0x00, 0x02 -.4byte gUnknown_821FDC4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82290A4 -gUnknown_82290A4: @ 82290A4 -.byte 0x00, 0x04, 0x00, 0x00, 0x17, 0x33, 0x00, 0x02 -.4byte gUnknown_82200B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x04, 0x00, 0x00, 0x11, 0x33, 0x00, 0x02 -.4byte gUnknown_8220DF0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x04, 0x00, 0x00, 0x11, 0x23, 0x00, 0x02 -.4byte gUnknown_8220F50 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x04, 0x00, 0x00, 0x14, 0x21, 0x00, 0x02 -.4byte gUnknown_8221070 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x04, 0x00, 0x00, 0x14, 0x37, 0x00, 0x02 -.4byte gUnknown_8221180 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822911C -gUnknown_822911C: @ 822911C -.byte 0x00, 0x05, 0x00, 0x00, 0x17, 0x26, 0x00, 0x02 -.4byte gUnknown_82213FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x11, 0x26, 0x00, 0x02 -.4byte gUnknown_8221794 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x11, 0x23, 0x00, 0x02 -.4byte gUnknown_8221864 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x14, 0x21, 0x00, 0x02 -.4byte gUnknown_8221904 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0a, 0x04, 0x00, 0x00, 0x14, 0x2a, 0x00, 0x02 -.4byte gUnknown_8221944 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8229194 -gUnknown_8229194: @ 8229194 -.byte 0x00, 0x04, 0x00, 0x00, 0x12, 0x2c, 0x00, 0x02 -.4byte gUnknown_8221F00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x16, 0x2c, 0x00, 0x02 -.4byte gUnknown_8222C44 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x14, 0x29, 0x00, 0x02 -.4byte gUnknown_8222EC4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x61, 0x04, 0x00, 0x00, 0x14, 0x21, 0x00, 0x02 -.4byte gUnknown_8222FB4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x01, 0x00, 0x00, 0x0f, 0x29, 0x00, 0x02 -.4byte gUnknown_8223084 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x03, 0x00, 0x00, 0x0e, 0x2e, 0x00, 0x02 -.4byte gUnknown_82231B4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x07, 0x00, 0x00, 0x19, 0x29, 0x00, 0x02 -.4byte gUnknown_82232E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x69, 0x02, 0x00, 0x00, 0x0c, 0x2b, 0x00, 0x02 -.4byte gUnknown_82233F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x06, 0x00, 0x00, 0x1c, 0x2c, 0x00, 0x02 -.4byte gUnknown_8223504 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x04, 0x00, 0x00, 0x14, 0x30, 0x00, 0x02 -.4byte gUnknown_8223604 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x05, 0x00, 0x00, 0x1a, 0x2f, 0x00, 0x02 -.4byte gUnknown_82236E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x5a, 0x03, 0x00, 0x00, 0x0c, 0x2f, 0x00, 0x02 -.4byte gUnknown_82237E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0x07, 0x00, 0x00, 0x1c, 0x28, 0x00, 0x02 -.4byte gUnknown_82238E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0x04, 0x00, 0x00, 0x11, 0x31, 0x00, 0x00 -.4byte gUnknown_82239C4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x04, 0x00, 0x00, 0x17, 0x31, 0x00, 0x00 -.4byte gUnknown_8223AC4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82292FC -gUnknown_82292FC: @ 82292FC -.byte 0x00, 0x02, 0x00, 0x00, 0x12, 0x2c, 0x00, 0x02 -.4byte gUnknown_8223D40 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00, 0x16, 0x2c, 0x00, 0x02 -.4byte gUnknown_8225528 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x14, 0x29, 0x00, 0x02 -.4byte gUnknown_8225728 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x14, 0x21, 0x00, 0x02 -.4byte gUnknown_8225A58 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4d, 0x01, 0x00, 0x00, 0x10, 0x2a, 0x00, 0x02 -.4byte gUnknown_8225B08 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x03, 0x00, 0x00, 0x0f, 0x2d, 0x00, 0x02 -.4byte gUnknown_8225F38 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x07, 0x00, 0x00, 0x18, 0x2a, 0x00, 0x02 -.4byte gUnknown_8226168 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x69, 0x02, 0x00, 0x00, 0x0d, 0x2b, 0x00, 0x02 -.4byte gUnknown_82263C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x59, 0x06, 0x00, 0x00, 0x1b, 0x2c, 0x00, 0x02 -.4byte gUnknown_82266E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x05, 0x00, 0x00, 0x19, 0x2e, 0x00, 0x02 -.4byte gUnknown_8226A08 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x04, 0x00, 0x00, 0x14, 0x2f, 0x00, 0x02 -.4byte gUnknown_8226C68 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5a, 0x03, 0x00, 0x00, 0x0d, 0x2e, 0x00, 0x02 -.4byte gUnknown_8226E68 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4f, 0x07, 0x00, 0x00, 0x1b, 0x29, 0x00, 0x02 -.4byte gUnknown_8227098 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0x04, 0x00, 0x00, 0x11, 0x30, 0x00, 0x00 -.4byte gUnknown_82272C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x04, 0x00, 0x00, 0x17, 0x30, 0x00, 0x00 -.4byte gUnknown_82275C8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8229464 -gUnknown_8229464: @ 8229464 -.byte 0x52, 0x06, 0x00, 0x00, 0x16, 0x2c, 0x00, 0x02 -.4byte gUnknown_8227D08 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822947C -gUnknown_822947C: @ 822947C -.byte 0x00, 0x04, 0x00, 0x00, 0x14, 0x05, 0x00, 0x02 -.4byte gUnknown_8227F54 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x14, 0x2c, 0x00, 0x02 -.4byte gUnknown_8228974 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x17, 0x28, 0x00, 0x02 -.4byte gUnknown_8228A14 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x14, 0x22, 0x00, 0x02 -.4byte gUnknown_8228AB4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4d, 0x01, 0x00, 0x00, 0x10, 0x27, 0x00, 0x02 -.4byte gUnknown_8228B64 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x03, 0x00, 0x00, 0x0e, 0x29, 0x00, 0x02 -.4byte gUnknown_8228BE4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x01, 0x00, 0x00, 0x1c, 0x26, 0x00, 0x02 -.4byte gUnknown_8228C64 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x69, 0x06, 0x00, 0x00, 0x0a, 0x2b, 0x00, 0x02 -.4byte gUnknown_8228CE4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x59, 0x06, 0x00, 0x00, 0x19, 0x23, 0x00, 0x02 -.4byte gUnknown_8228D64 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x05, 0x00, 0x00, 0x0f, 0x2d, 0x00, 0x02 -.4byte gUnknown_8228DD4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x04, 0x00, 0x00, 0x0f, 0x23, 0x00, 0x02 -.4byte gUnknown_8228E44 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5a, 0x03, 0x00, 0x00, 0x18, 0x2d, 0x00, 0x02 -.4byte gUnknown_8228EB4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4f, 0x07, 0x00, 0x00, 0x1d, 0x2b, 0x00, 0x02 -.4byte gUnknown_8228F24 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0x03, 0x00, 0x00, 0x0a, 0x27, 0x00, 0x00 -.4byte gUnknown_8228F94 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x07, 0x00, 0x00, 0x0c, 0x25, 0x00, 0x00 -.4byte gUnknown_8229004 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82295E4 -gUnknown_82295E4: @ 82295E4 -.byte 0x00, 0x00, 0x01, 0x01, 0x14, 0x22, 0x02, 0x02 -.4byte gUnknown_821FAC0 - -.global gUnknown_82295F0 -gUnknown_82295F0: @ 82295F0 -.byte 0x00, 0x00, 0x01, 0x01, 0x14, 0x22, 0x02, 0x02 -.4byte gUnknown_821FD44 - -.global gUnknown_82295FC -gUnknown_82295FC: @ 82295FC -.byte 0x00, 0x00, 0x01, 0x01, 0x14, 0x23, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x01, 0x14, 0x1e, 0x00, 0x00 -.4byte gUnknown_82211E0 - -.global gUnknown_8229614 -gUnknown_8229614: @ 8229614 -.byte 0x00, 0x00, 0x01, 0x01, 0x14, 0x23, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x01, 0x01, 0x15, 0x26, 0x00, 0x00 -.4byte gUnknown_8221A04 -.byte 0x04, 0x00, 0x01, 0x01, 0x17, 0x26, 0x00, 0x02 -.4byte gUnknown_8221AD4 -.byte 0x04, 0x00, 0x01, 0x01 -.byte 0x13, 0x26, 0x00, 0x02 -.4byte gUnknown_8221BC4 -.byte 0x04, 0x00, 0x01, 0x01, 0x15, 0x28, 0x00, 0x02 -.4byte gUnknown_8221CB4 - -.global gUnknown_8229650 -gUnknown_8229650: @ 8229650 -.byte 0x00, 0x00, 0x01, 0x01, 0x14, 0x2f, 0x02, 0x02 -.4byte gUnknown_8221E40 - -.global gUnknown_822965C -gUnknown_822965C: @ 822965C -.byte 0x00, 0x00, 0x01, 0x01, 0x14, 0x2e, 0x02, 0x00 -.4byte gUnknown_8223C40 -.byte 0x04, 0x00, 0x01, 0x01, 0x12, 0x2c, 0x00, 0x02 -.4byte gUnknown_82278C8 - -.global gUnknown_8229674 -gUnknown_8229674: @ 8229674 -.byte 0x00, 0x00, 0x01, 0x01, 0x14, 0x2a, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8229680 -gUnknown_8229680: @ 8229680 -.4byte gUnknown_821FA28 - -.global gUnknown_8229684 -gUnknown_8229684: @ 8229684 -.4byte gUnknown_821FAB4 - -.global gUnknown_8229688 -gUnknown_8229688: @ 8229688 -.4byte gUnknown_821FD38 - -.global gUnknown_822968C -gUnknown_822968C: @ 822968C -.4byte gUnknown_82200A4 - -.global gUnknown_8229690 -gUnknown_8229690: @ 8229690 -.4byte gUnknown_82213F0 - -.global gUnknown_8229694 -gUnknown_8229694: @ 8229694 -.4byte gUnknown_8221E34 - -.global gUnknown_8229698 -gUnknown_8229698: @ 8229698 -.4byte gUnknown_8223C34 - -.global gUnknown_822969C -gUnknown_822969C: @ 822969C -.4byte gUnknown_8227F48 - -.global gUnknown_82296A0 -gUnknown_82296A0: @ 82296A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8229680 - -.global gUnknown_82296C8 -gUnknown_82296C8: @ 82296C8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8229074 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82295E4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8229684 - -.global gUnknown_82296F0 -gUnknown_82296F0: @ 82296F0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822908C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82295F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8229688 - -.global gUnknown_8229718 -gUnknown_8229718: @ 8229718 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_82290A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82295FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822968C - -.global gUnknown_8229740 -gUnknown_8229740: @ 8229740 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_822911C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_8229614 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8229690 - -.global gUnknown_8229768 -gUnknown_8229768: @ 8229768 -.byte 0x0f, 0x00, 0x00, 0x00 -.4byte gUnknown_8229194 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8229650 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8229694 - -.global gUnknown_8229790 -gUnknown_8229790: @ 8229790 -.byte 0x0f, 0x00, 0x00, 0x00 -.4byte gUnknown_82292FC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_822965C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8229698 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8229464 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82297E0 -gUnknown_82297E0: @ 82297E0 -.byte 0x0f, 0x00, 0x00, 0x00 -.4byte gUnknown_822947C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8229674 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822969C - -.global gUnknown_8229808 -gUnknown_8229808: @ 8229808 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82296A0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82296C8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82296F0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8229718 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8229740 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8229768 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8229790 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82297E0 - -.global gUnknown_8229848 -gUnknown_8229848: @ 8229848 -.byte 0x12, 0x27, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x12, 0x25, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x0f, 0x27, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x0d, 0x25, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x14, 0x24, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x16, 0x23, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x16, 0x25, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x15, 0x27, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x0d, 0x27, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x18, 0x26, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x16, 0x28, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00 - -.global gUnknown_82298A0 -gUnknown_82298A0: @ 82298A0 -.byte 0x08, 0x00, 0x00, 0x00 -.4byte gUnknown_8229808 -.4byte gUnknown_8229848 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_82298B4 -gUnknown_82298B4: @ 82298B4 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82298F4 -.byte 0x08, 0x00, 0x00, 0x00, 0xac, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82298F4 -gUnknown_82298F4: @ 82298F4 -.string "../data/ground/ground_data_a04p02_station.c\0" -.align 2, 0 - -.global gUnknown_8229920 -gUnknown_8229920: @ 8229920 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82298B4 - -.global gUnknown_822992C -gUnknown_822992C: @ 822992C -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82298F4 -.byte 0x08, 0x00, 0x00, 0x00, 0xac, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82299FC -closeTextBox -.byte 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82299FC -gUnknown_82299FC: @ 82299FC -.string " It{APOSTROPHE}s a huge tower of\n" -.string "clouds...\0" -.align 2, 0 - -.global gUnknown_8229A20 -gUnknown_8229A20: @ 8229A20 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822992C - -.global gUnknown_8229A2C -gUnknown_8229A2C: @ 8229A2C -.byte 0xf6, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82298F4 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0xe0, 0x4c, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8229A9C -gUnknown_8229A9C: @ 8229A9C -.byte 0x00, 0x00, 0x01, 0x01, 0x12, 0x13, 0x00, 0x02 -.4byte gUnknown_8229A2C - -.global gUnknown_8229AA8 -gUnknown_8229AA8: @ 8229AA8 -.4byte gUnknown_8229920 - -.global gUnknown_8229AAC -gUnknown_8229AAC: @ 8229AAC -.4byte gUnknown_8229A20 - -.global gUnknown_8229AB0 -gUnknown_8229AB0: @ 8229AB0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8229AA8 - -.global gUnknown_8229AD8 -gUnknown_8229AD8: @ 8229AD8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8229A9C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8229AAC - -.global gUnknown_8229B00 -gUnknown_8229B00: @ 8229B00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8229AB0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8229AD8 - -.global gUnknown_8229B10 -gUnknown_8229B10: @ 8229B10 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8229B18 -gUnknown_8229B18: @ 8229B18 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8229B00 -.4byte gUnknown_8229B10 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8229B2C -gUnknown_8229B2C: @ 8229B2C -.byte 0xf6, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8229B6C -.byte 0x08, 0x00, 0x00, 0x00, 0xad, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8229B6C -gUnknown_8229B6C: @ 8229B6C -.string "../data/ground/ground_data_a04p03_station.c\0" -.align 2, 0 - -.global gUnknown_8229B98 -gUnknown_8229B98: @ 8229B98 -.byte 0x94, 0x01, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8229B2C - -.global gUnknown_8229BA4 -gUnknown_8229BA4: @ 8229BA4 -.byte 0xf6, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8229B6C -.byte 0x08, 0x00, 0x00, 0x00, 0xad, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xfc, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xf0 -.byte 0x4e, 0x00, 0x3c, 0x00, 0xfc, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8229C74 -gUnknown_8229C74: @ 8229C74 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8229BA4 - -.global gUnknown_8229C80 -gUnknown_8229C80: @ 8229C80 -.byte 0xf6, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8229B6C -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x6b, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8229CD0 -gUnknown_8229CD0: @ 8229CD0 -.byte 0xf6, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8229B6C -.byte 0x08, 0x00, 0x00, 0x00, 0xad, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xfc, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x97, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xd2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x1e, 0x00, 0xfc, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8229D90 -gUnknown_8229D90: @ 8229D90 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8229CD0 - -.global gUnknown_8229D9C -gUnknown_8229D9C: @ 8229D9C -.byte 0xf6, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8229B6C -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0x30, 0x00, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8229E1C -gUnknown_8229E1C: @ 8229E1C -.byte 0xf6, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8229B6C -.byte 0x08, 0x00, 0x00, 0x00, 0xad, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x97, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x00, 0x05, 0x00, 0x10, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0x28, 0x01, 0x05, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x27, 0x00, 0x05, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x28, 0x01, 0x05, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x27, 0x00, 0x05, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x28, 0x01, 0x05, 0x00, 0x2d, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8229F4C -gUnknown_8229F4C: @ 8229F4C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8229E1C - -.global gUnknown_8229F58 -gUnknown_8229F58: @ 8229F58 -.byte 0xf6, 0x00, 0x62, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8229B6C -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x18, 0x00, 0x04 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8229FD8 -gUnknown_8229FD8: @ 8229FD8 -.byte 0xf6, 0x00, 0x6d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8229B6C -.byte 0x56, 0x00, 0x00, 0x00, 0x35, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822A008 -gUnknown_822A008: @ 822A008 -.byte 0x00, 0x00, 0x01, 0x01, 0x11, 0x29, 0x02, 0x02 -.4byte gUnknown_8229C80 - -.global gUnknown_822A014 -gUnknown_822A014: @ 822A014 -.byte 0x00, 0x00, 0x01, 0x01, 0x11, 0x29, 0x02, 0x02 -.4byte gUnknown_8229D9C - -.global gUnknown_822A020 -gUnknown_822A020: @ 822A020 -.byte 0x00, 0x00, 0x01, 0x01, 0x11, 0x24, 0x02, 0x02 -.4byte gUnknown_8229F58 -.byte 0x03, 0x00, 0x01, 0x01, 0x12, 0x21, 0x00, 0x02 -.4byte gUnknown_8229FD8 - -.global gUnknown_822A038 -gUnknown_822A038: @ 822A038 -.4byte gUnknown_8229B98 - -.global gUnknown_822A03C -gUnknown_822A03C: @ 822A03C -.4byte gUnknown_8229C74 - -.global gUnknown_822A040 -gUnknown_822A040: @ 822A040 -.4byte gUnknown_8229D90 - -.global gUnknown_822A044 -gUnknown_822A044: @ 822A044 -.4byte gUnknown_8229F4C - -.global gUnknown_822A048 -gUnknown_822A048: @ 822A048 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822A038 - -.global gUnknown_822A070 -gUnknown_822A070: @ 822A070 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822A008 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822A03C - -.global gUnknown_822A098 -gUnknown_822A098: @ 822A098 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822A014 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822A040 - -.global gUnknown_822A0C0 -gUnknown_822A0C0: @ 822A0C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_822A020 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822A044 - -.global gUnknown_822A0E8 -gUnknown_822A0E8: @ 822A0E8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822A048 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822A070 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822A098 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822A0C0 - -.global gUnknown_822A108 -gUnknown_822A108: @ 822A108 -.byte 0x12, 0x06, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00 - -.global gUnknown_822A110 -gUnknown_822A110: @ 822A110 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_822A0E8 -.4byte gUnknown_822A108 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_822A124 -gUnknown_822A124: @ 822A124 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822A164 -.byte 0x08, 0x00, 0x00, 0x00, 0xae, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822A164 -gUnknown_822A164: @ 822A164 -.string "../data/ground/ground_data_a04p04_station.c\0" -.align 2, 0 - -.global gUnknown_822A190 -gUnknown_822A190: @ 822A190 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822A124 - -.global gUnknown_822A19C -gUnknown_822A19C: @ 822A19C -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822A164 -.byte 0x3b, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0xae, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x28, 0x01, 0x05, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xb4 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822A24C -gUnknown_822A24C: @ 822A24C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822A19C - -.global gUnknown_822A258 -gUnknown_822A258: @ 822A258 -.byte 0xf6, 0x00, 0x23, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822A164 -setAnimation 52 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x00, 0x1e, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822ABD0 -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822ABC0 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822ABA4 -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822AB88 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822ABA4 -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822AB6C -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822AB3C -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822AB10 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822AAFC -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822AADC -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00 -.byte 0x3c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x0d, 0x01, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822AACC -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822AAAC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822AA64 -.byte 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822AA3C -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x04, 0x00 -.byte 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822AA30 -.byte 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822A9F8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 51 -.byte 0x3b, 0x36, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822AACC -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822A9DC -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822A9C4 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822A998 -.byte 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822A978 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822A940 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0x2e, 0x14, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822A938 -.byte 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822A928 -.byte 0x3b, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x34, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x04, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822A90C -closeTextBox -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822A8E4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822A8D4 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822A894 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x04, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822A858 -.byte 0x2e, 0x15, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822A838 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_822A838 -gUnknown_822A838: @ 822A838 -.string " That{APOSTROPHE}s it. Good-bye to you.\0" -.align 2, 0 - -.global gUnknown_822A858 -gUnknown_822A858: @ 822A858 -.string " Keh! To heck with this.{WAIT_PRESS}\n" -.string "I{APOSTROPHE}ll just ditch you here...\0" -.align 2, 0 - -.global gUnknown_822A894 -gUnknown_822A894: @ 822A894 -.string " This isn{APOSTROPHE}t like me...{WAIT_PRESS}\n" -.string "I can{APOSTROPHE}t tell which way is which...\0" -.align 2, 0 - -.global gUnknown_822A8D4 -gUnknown_822A8D4: @ 822A8D4 -.string "(......What?)\0" -.align 2, 0 - -.global gUnknown_822A8E4 -gUnknown_822A8E4: @ 822A8E4 -.string " Darn it...\n" -.string "I took the wrong path...\0" -.align 2, 0 - -.global gUnknown_822A90C -gUnknown_822A90C: @ 822A90C -.string " ..................{WAIT_PRESS}Hunh?\0" -.align 2, 0 - -.global gUnknown_822A928 -gUnknown_822A928: @ 822A928 -.string " ............\0" -.align 2, 0 - -.global gUnknown_822A938 -gUnknown_822A938: @ 822A938 -.string " ......\0" -.align 2, 0 - -.global gUnknown_822A940 -gUnknown_822A940: @ 822A940 -.string "(Am I going to be abandoned in a world\n" -.string "I don{APOSTROPHE}t know?)\0" -.align 2, 0 - -.global gUnknown_822A978 -gUnknown_822A978: @ 822A978 -.string "(What is the dark world...?)\0" -.align 2, 0 - -.global gUnknown_822A998 -gUnknown_822A998: @ 822A998 -.string "(He would drag me into the dark\n" -.string "world...)\0" -.align 2, 0 - -.global gUnknown_822A9C4 -gUnknown_822A9C4: @ 822A9C4 -.string "(...{WAIT_PRESS}Gengar said...)\0" -.align 2, 0 - -.global gUnknown_822A9DC -gUnknown_822A9DC: @ 822A9DC -.string "(Gengar is dragging me...)\0" -.align 2, 0 - -.global gUnknown_822A9F8 -gUnknown_822A9F8: @ 822A9F8 -.string " I{APOSTROPHE}ll drag you into the dark\n" -.string "world. That{APOSTROPHE}ll do it.\0" -.align 2, 0 - -.global gUnknown_822AA30 -gUnknown_822AA30: @ 822AA30 -.string " I know!\0" -.align 2, 0 - -.global gUnknown_822AA3C -gUnknown_822AA3C: @ 822AA3C -.string " Kekeke!\n" -.string "Now{COMMA} what to do with you?\0" -.align 2, 0 - -.global gUnknown_822AA64 -gUnknown_822AA64: @ 822AA64 -.string " Keke! {ARG_NICKNAME_0}!{WAIT_PRESS}\n" -.string "Didn{APOSTROPHE}t take much to put you down!{WAIT_PRESS}\n" -.string "Serves you right!\0" -.align 2, 0 - -.global gUnknown_822AAAC -gUnknown_822AAAC: @ 822AAAC -.string "(...This shadow...{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_4}...)\0" -.align 2, 0 - -.global gUnknown_822AACC -gUnknown_822AACC: @ 822AACC -.string "(............)\0" -.align 2, 0 - -.global gUnknown_822AADC -gUnknown_822AADC: @ 822AADC -.string "What{APOSTROPHE}s going to happen...?\0" -.align 2, 0 - -.global gUnknown_822AAFC -gUnknown_822AAFC: @ 822AAFC -.string "..................\0" -.align 2, 0 - -.global gUnknown_822AB10 -gUnknown_822AB10: @ 822AB10 -.string "And I{APOSTROPHE}m now adrift...{WAIT_PRESS}\n" -.string "as a spirit...\0" -.align 2, 0 - -.global gUnknown_822AB3C -gUnknown_822AB3C: @ 822AB3C -.string "Yes...{WAIT_PRESS}\n" -.string "The star{APOSTROPHE}s explosion swallowed me...\0" -.align 2, 0 - -.global gUnknown_822AB6C -gUnknown_822AB6C: @ 822AB6C -.string "No...{WAIT_PRESS}\n" -.string "This is no dream...\0" -.align 2, 0 - -.global gUnknown_822AB88 -gUnknown_822AB88: @ 822AB88 -.string "...Is this...\n" -.string "a dream...?\0" -.align 2, 0 - -.global gUnknown_822ABA4 -gUnknown_822ABA4: @ 822ABA4 -.string "........................\0" -.align 2, 0 - -.global gUnknown_822ABC0 -gUnknown_822ABC0: @ 822ABC0 -.string "............\0" -.align 2, 0 - -.global gUnknown_822ABD0 -gUnknown_822ABD0: @ 822ABD0 -.string "......\0" -.align 2, 0 - -.global gUnknown_822ABD8 -gUnknown_822ABD8: @ 822ABD8 -.byte 0xf6, 0x00, 0x87, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822A164 -setAnimation 2 -.byte 0x2d, 0x07, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00, 0x10, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x91, 0x0a, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x54, 0x00, 0x1f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x06, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x91, 0x06, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x91, 0x06, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x06, shortestDir, north -.byte 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x06, shortestDir, south -.byte 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x06, shortestDir, east -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x10, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x50, 0x99, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_822AE98 -gUnknown_822AE98: @ 822AE98 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x14, 0x0b, 0x00, 0x02 -.4byte gUnknown_822A258 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822AEB0 -gUnknown_822AEB0: @ 822AEB0 -.byte 0x5b, 0x00, 0x00, 0x00, 0x14, 0x07, 0x02, 0x02 -.4byte gUnknown_822ABD8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822AEC8 -gUnknown_822AEC8: @ 822AEC8 -.byte 0x00, 0x00, 0x01, 0x01, 0x14, 0x0c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822AED4 -gUnknown_822AED4: @ 822AED4 -.4byte gUnknown_822A190 - -.global gUnknown_822AED8 -gUnknown_822AED8: @ 822AED8 -.4byte gUnknown_822A24C - -.global gUnknown_822AEDC -gUnknown_822AEDC: @ 822AEDC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822AED4 - -.global gUnknown_822AF04 -gUnknown_822AF04: @ 822AF04 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822AE98 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822AEC8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822AED8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822AEB0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822AF54 -gUnknown_822AF54: @ 822AF54 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822AEDC -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_822AF04 - -.global gUnknown_822AF64 -gUnknown_822AF64: @ 822AF64 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822AF6C -gUnknown_822AF6C: @ 822AF6C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_822AF54 -.4byte gUnknown_822AF64 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_822AF80 -gUnknown_822AF80: @ 822AF80 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822AFB0 -.byte 0x08, 0x00, 0x00, 0x00, 0xaf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822AFB0 -gUnknown_822AFB0: @ 822AFB0 -.string "../data/ground/ground_data_a05p01_station.c\0" -.align 2, 0 - -.global gUnknown_822AFDC -gUnknown_822AFDC: @ 822AFDC -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822AF80 - -.global gUnknown_822AFE8 -gUnknown_822AFE8: @ 822AFE8 -.byte 0xf6, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822AFB0 -.byte 0x47, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xb4 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0xaf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x36, 0x00, 0x00 -.byte 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x00 -.byte 0x28, 0x01, 0x01, 0x00 -.byte 0x1e, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x01, 0x00 -.byte 0x1e, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822B0E8 -gUnknown_822B0E8: @ 822B0E8 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822AFE8 - -.global gUnknown_822B0F4 -gUnknown_822B0F4: @ 822B0F4 -.byte 0xf6, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822AFB0 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x2c, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x38, 0xff, 0xff, 0xff, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822B2DC -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822B2C8 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822B2A8 -.byte 0x2b, 0x00, 0x00, 0x00, 0x42, 0xff, 0xff, 0xff, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822B290 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822B270 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0x2b, 0x00, 0x00, 0x00, 0x92, 0xff, 0xff, 0xff -.byte 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822B264 -.byte 0x2b, 0x00, 0x00, 0x00, 0x2e, 0xff, 0xff, 0xff -.byte 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822B244 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822B244 -gUnknown_822B244: @ 822B244 -.string "(Voices...{WAIT_PRESS}\n" -.string "I hear voices...)\0" -.align 2, 0 - -.global gUnknown_822B264 -gUnknown_822B264: @ 822B264 -.string "(......!)\0" -.align 2, 0 - -.global gUnknown_822B270 -gUnknown_822B270: @ 822B270 -.string "(I wonder where I{APOSTROPHE}m going?)\0" -.align 2, 0 - -.global gUnknown_822B290 -gUnknown_822B290: @ 822B290 -.string "(Is this my spirit...?)\0" -.align 2, 0 - -.global gUnknown_822B2A8 -gUnknown_822B2A8: @ 822B2A8 -.string "(I{APOSTROPHE}m rising into the sky...)\0" -.align 2, 0 - -.global gUnknown_822B2C8 -gUnknown_822B2C8: @ 822B2C8 -.string "(What is this...?)\0" -.align 2, 0 - -.global gUnknown_822B2DC -gUnknown_822B2DC: @ 822B2DC -.string "(..................)\0" -.align 2, 0 - -.global gUnknown_822B2F4 -gUnknown_822B2F4: @ 822B2F4 -.byte 0xf6, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822AFB0 -.byte 0x08, 0x00, 0x00, 0x00, 0xaf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x36, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x01, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xaa, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x02, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822B3C4 -gUnknown_822B3C4: @ 822B3C4 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822B2F4 - -.global gUnknown_822B3D0 -gUnknown_822B3D0: @ 822B3D0 -.byte 0xf6, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822AFB0 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0x44, 0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x2b, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822B564 -.byte 0xdb, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822B548 -.byte 0xdb, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822B52C -.byte 0xdb, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822B510 -.byte 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_822B510 -gUnknown_822B510: @ 822B510 -.string "\n{CENTER_ALIGN}Irreplaceable friend...\0" -.align 2, 0 - -.global gUnknown_822B52C -gUnknown_822B52C: @ 822B52C -.string "\n{CENTER_ALIGN}With my invaluable...\0" -.align 2, 0 - -.global gUnknown_822B548 -gUnknown_822B548: @ 822B548 -.string "\n{CENTER_ALIGN}I want to stay longer...\0" -.align 2, 0 - -.global gUnknown_822B564 -gUnknown_822B564: @ 822B564 -.string "\n{CENTER_ALIGN}I don{APOSTROPHE}t want to leave...\0" -.align 2, 0 - -.global gUnknown_822B584 -gUnknown_822B584: @ 822B584 -.byte 0x00, 0x00, 0x01, 0x01, 0x15, 0x0f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x03, 0x04, 0x02, 0x01, 0x16, 0x0f, 0x02, 0x02 -.4byte gUnknown_822B0F4 - -.global gUnknown_822B59C -gUnknown_822B59C: @ 822B59C -.byte 0x00, 0x00, 0x01, 0x01, 0x15, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x03, 0x04, 0x02, 0x01, 0x16, 0x0f, 0x02, 0x02 -.4byte gUnknown_822B3D0 - -.global gUnknown_822B5B4 -gUnknown_822B5B4: @ 822B5B4 -.4byte gUnknown_822AFDC - -.global gUnknown_822B5B8 -gUnknown_822B5B8: @ 822B5B8 -.4byte gUnknown_822B0E8 - -.global gUnknown_822B5BC -gUnknown_822B5BC: @ 822B5BC -.4byte gUnknown_822B3C4 - -.global gUnknown_822B5C0 -gUnknown_822B5C0: @ 822B5C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822B5B4 - -.global gUnknown_822B5E8 -gUnknown_822B5E8: @ 822B5E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_822B584 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822B5B8 - -.global gUnknown_822B610 -gUnknown_822B610: @ 822B610 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_822B59C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822B5BC - -.global gUnknown_822B638 -gUnknown_822B638: @ 822B638 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822B5C0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822B5E8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822B610 - -.global gUnknown_822B650 -gUnknown_822B650: @ 822B650 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822B658 -gUnknown_822B658: @ 822B658 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_822B638 -.4byte gUnknown_822B650 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_822B66C -gUnknown_822B66C: @ 822B66C -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822B6AC -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822B6AC -gUnknown_822B6AC: @ 822B6AC -.string "../data/ground/ground_data_a05p02_station.c\0" -.align 2, 0 - -.global gUnknown_822B6D8 -gUnknown_822B6D8: @ 822B6D8 -.byte 0x94, 0x01, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822B66C - -.global gUnknown_822B6E4 -gUnknown_822B6E4: @ 822B6E4 -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822B6AC -.byte 0x08, 0x00, 0x00, 0x00, 0xb0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x36, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x01, 0x00, 0x1e, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x78, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x01, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0x3c, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x3c, 0x2e, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0x48, 0x00, 0x4a, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xd2 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822BB44 -gUnknown_822BB44: @ 822BB44 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822B6E4 - -.global gUnknown_822BB50 -gUnknown_822BB50: @ 822BB50 -.byte 0xf6, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822B6AC -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822BD2C -.byte 0xdb, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822BD00 -.byte 0xdb, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822BCE0 -.byte 0xdb, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822BCB0 -.byte 0xdb, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822BC90 -.byte 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_822BC90 -gUnknown_822BC90: @ 822BC90 -.string "{CENTER_ALIGN}Perhaps you will meet again.\0" -.align 2, 0 - -.global gUnknown_822BCB0 -gUnknown_822BCB0: @ 822BCB0 -.string "{CENTER_ALIGN}If you wish...\n" -.string "{CENTER_ALIGN}And wish very strongly...\0" -.align 2, 0 - -.global gUnknown_822BCE0 -gUnknown_822BCE0: @ 822BCE0 -.string "{CENTER_ALIGN}You finally realize it now...\0" -.align 2, 0 - -.global gUnknown_822BD00 -gUnknown_822BD00: @ 822BD00 -.string "{CENTER_ALIGN}A true friend...\n" -.string "{CENTER_ALIGN}A friend for life...\0" -.align 2, 0 - -.global gUnknown_822BD2C -gUnknown_822BD2C: @ 822BD2C -.string "{CENTER_ALIGN}Your friend is heartbroken...\0" -.align 2, 0 - -.global gUnknown_822BD4C -gUnknown_822BD4C: @ 822BD4C -.byte 0x00, 0x00, 0x01, 0x01, 0x15, 0x0f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x03, 0x04, 0x02, 0x01 -.byte 0x16, 0x0f, 0x02, 0x02 -.4byte gUnknown_822BB50 - -.global gUnknown_822BD64 -gUnknown_822BD64: @ 822BD64 -.4byte gUnknown_822B6D8 - -.global gUnknown_822BD68 -gUnknown_822BD68: @ 822BD68 -.4byte gUnknown_822BB44 - -.global gUnknown_822BD6C -gUnknown_822BD6C: @ 822BD6C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822BD64 - -.global gUnknown_822BD94 -gUnknown_822BD94: @ 822BD94 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_822BD4C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822BD68 - -.global gUnknown_822BDBC -gUnknown_822BDBC: @ 822BDBC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822BD6C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822BD94 - -.global gUnknown_822BDCC -gUnknown_822BDCC: @ 822BDCC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822BDD4 -gUnknown_822BDD4: @ 822BDD4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_822BDBC -.4byte gUnknown_822BDCC -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_822BDE8 -gUnknown_822BDE8: @ 822BDE8 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822BE28 -changeTileset 0xB1 -pushR14 -msgEnd 0x163 - -.global gUnknown_822BE28 -gUnknown_822BE28: @ 822BE28 -.string "../data/ground/ground_data_a05p03_station.c\0" -.align 2, 0 - -.global gUnknown_822BE54 -gUnknown_822BE54: @ 822BE54 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822BDE8 - -.global gUnknown_822BE60 -gUnknown_822BE60: @ 822BE60 -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822BE28 -.byte 0x08, 0x00, 0x00, 0x00, 0xb1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe0, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdb, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822C1A8 -closeTextBox -.byte 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822C180 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822C140 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822C124 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822C0E8 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822C0D4 -closeTextBox -.byte 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3b, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd3, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822C0AC -.byte 0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822C0A4 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822C0A0 -.byte 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822C0A0 -gUnknown_822C0A0: @ 822C0A0 -.byte 0x4e, 0x6f, 0x2e, 0x00 - -.global gUnknown_822C0A4 -gUnknown_822C0A4: @ 822C0A4 -.string "Yes.\0" -.align 2, 0 - -.global gUnknown_822C0AC -gUnknown_822C0AC: @ 822C0AC -.string "Would you like to save your adventure?\0" -.align 2, 0 - -.global gUnknown_822C0D4 -gUnknown_822C0D4: @ 822C0D4 -.string "{CENTER_ALIGN}Don{APOSTROPHE}t go away!\0" -.align 2, 0 - -.global gUnknown_822C0E8 -gUnknown_822C0E8: @ 822C0E8 -.string "{CENTER_ALIGN}The legendary Pokémon are set\n" -.string "{CENTER_ALIGN}to make their appearance!\0" -.align 2, 0 - -.global gUnknown_822C124 -gUnknown_822C124: @ 822C124 -.string "{CENTER_ALIGN}A new adventure begins!\0" -.align 2, 0 - -.global gUnknown_822C140 -gUnknown_822C140: @ 822C140 -.string "{CENTER_ALIGN}But {ARG_TEAM_NAME} isn{APOSTROPHE}t done yet!\n" -.string "{CENTER_ALIGN}There are many rescues to be done!\0" -.align 2, 0 - -.global gUnknown_822C180 -gUnknown_822C180: @ 822C180 -.string "{CENTER_ALIGN}The story of {ARG_NICKNAME_0} and\n" -.string "{CENTER_ALIGN}{ARG_NICKNAME_1} ends here.\0" -.align 2, 0 - -.global gUnknown_822C1A8 -gUnknown_822C1A8: @ 822C1A8 -.byte 0x0a, 0x00, 0x00, 0x00 - -.global gUnknown_822C1AC -gUnknown_822C1AC: @ 822C1AC -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822BE60 - -.global gUnknown_822C1B8 -gUnknown_822C1B8: @ 822C1B8 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x15, 0x0f, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822C1C4 -gUnknown_822C1C4: @ 822C1C4 -.4byte gUnknown_822BE54 - -.global gUnknown_822C1C8 -gUnknown_822C1C8: @ 822C1C8 -.4byte gUnknown_822C1AC - -.global gUnknown_822C1CC -gUnknown_822C1CC: @ 822C1CC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822C1C4 - -.global gUnknown_822C1F4 -gUnknown_822C1F4: @ 822C1F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822C1B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822C1C8 - -.global gUnknown_822C21C -gUnknown_822C21C: @ 822C21C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822C1CC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822C1F4 - -.global gUnknown_822C22C -gUnknown_822C22C: @ 822C22C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822C234 -gUnknown_822C234: @ 822C234 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_822C21C -.4byte gUnknown_822C22C -.string "pksdir0\0" -.align 2, 0 diff --git a/data/cutscenes_1.s b/data/cutscenes_1.s deleted file mode 100644 index 740b009b1..000000000 --- a/data/cutscenes_1.s +++ /dev/null @@ -1,28483 +0,0 @@ -.section .rodata -#include "asm/macros.inc" -#include "asm/constants/script_func_constants.inc" -#include "constants/bg_music.h" - -.global Unk_822C248 -Unk_822C248: @ 822C248 -.byte 0xf6, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte GroundD01P01StationFile_Text -changeTileset 0xB2 -pushr14 -MsgEnd 0x163 - -.global GroundD01P01StationFile_Text -GroundD01P01StationFile_Text: @ Text -.string "../data/ground/ground_data_d01p01_station.c\0" -.align 2,0 - -.global gUnknown_822C2B4 -gUnknown_822C2B4: @ 822C2B4 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte Unk_822C248 -@ Main1A-1 -@ Main Code - -.global Main1A_1_MainCode -Main1A_1_MainCode: @ 1 -.byte 0xf6, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte GroundD01P01StationFile_Text -.byte 0x3b, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pushR14 -fadeOut 1 0 0 -.byte 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -changeTileset 0xB2 -pause 100 -fadeFloatingText 30 WhereAmI_822C5C8 -fadeFloatingText 30 AmIDreamingThis_822C5B0 -fadeFloatingText 30 PleasantBreeze_822C594 -fadeFloatingText 30 VoiceSomewhere_822C56C -fadeFloatingText 30 WonderWhoItIs_822C554 -closeTextBox -pause 1 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -picNameTextBox 0xffff _3Periods_822C54C -picNameTextBox 0xffff _6Periods_822C544 -picNameTextBox 0xffff _12Periods_822C534 -.byte 0xcf, 0x02, 0x26, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -variableTextBox 1 Hey_822C528 -variableTextBox 1 HeyWakeUp_822C500 -elseTextBox ExcuseMe_822C4F0 -elseTextBox PleaseWakeUp_822C4C0 -closeTextBox -StartSceneRunCall 0x00 -fadeInMusic 60 101 -.byte 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3b, 0x39, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -waitFlag 3 -fadeMusicOut 30 -warpDungeon 0x1E -endFuncandScript - -.global PleaseWakeUp_822C4C0 -PleaseWakeUp_822C4C0: @ 822C4C0 -.string " ...Please{COMMA} wake up.{WAIT_PRESS}\n" -.string "Come on{COMMA} wake up.\0" -.align 2,0 - -.global ExcuseMe_822C4F0 -ExcuseMe_822C4F0: @ 822C4F0 -.string " ...Excuse me.\0" -.align 2,0 - -.global HeyWakeUp_822C500 -HeyWakeUp_822C500: @ 822C500 -.string " ...Hey{COMMA} wake up.{WAIT_PRESS}\n" -.string "Wake up already.\0" -.align 2,0 - -.global Hey_822C528 -Hey_822C528: @ 822C528 -.string " ...Hey.\0" -.align 2,0 - -.global _12Periods_822C54C -_12Periods_822C534: @ 12Periods -.string " ............\0" -.align 2,0 - -.global _3Periods_822C54C -_6Periods_822C544: @ 6Periods -.string " ......\0" -.align 2,0 - -.global _3Periods_822C54C -_3Periods_822C54C: @ 3Periods -.string " ...\0" -.align 2,0 - -.global WonderWhoItIs_822C554 -WonderWhoItIs_822C554: @ 822C554 -.string "{CENTER_ALIGN}I wonder who it is?\0" -.align 2,0 - -.global VoiceSomewhere_822C56C -VoiceSomewhere_822C56C: @ 822C56C -.string "{CENTER_ALIGN}...I hear a voice from somewhere...\0" -.align 2,0 - -.global PleasantBreeze_822C594 -PleasantBreeze_822C594: @ 822C594 -.string "{CENTER_ALIGN}I feel a pleasant breeze.\0" -.align 2,0 - -.global AmIDreamingThis_822C5B0 -AmIDreamingThis_822C5B0: @ 822C5B0 -.string "{CENTER_ALIGN}Am I dreaming this?\0" -.align 2,0 - -.global WhereAmI_822C5C8 -WhereAmI_822C5C8: @ 822C5C8 -.string "{CENTER_ALIGN}Where am I?\0" -.align 2,0 - -.global gUnknown_822C5D8 -gUnknown_822C5D8: @ 822C5D8 -.byte 0x90, 0x01, 0x07 -.byte 0x00, 0x00, 0x00, 0x00, 0x00 @ Always Null -.4byte Main1A_1_MainCode -@ Player code - -.global gUnknown_822C5E4 -gUnknown_822C5E4: @ 822C5E4 -.byte 0xf6, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte GroundD01P01StationFile_Text -executeScript INIT_SLEEP_FUNC -loadData 1 0 0 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -selectFace bottomL 0 0 -selectFace bottomR 1 0 -executeScript WAKEUP_FUNC -setFlag 6 -waitFlag 5 -initVariableTextbox 2 0x26 1 -variableTextBox 1 gUnknown_822D92C -elseTextBox gUnknown_822D90C -closeTextBox -pause 0x1E -scrollTextBox 0x00 gUnknown_822D8F4 -closeTextBox -playSound 0x1d4 -rotate 4 CCW east -pause 0x14 -playSound 0x1d4 -rotate 4 CW west -pause 0x14 -playSound 0x1d4 -rotate 4 CCW east -pause 0x32 -initVariableTextbox 2 0x26 1 -variableTextBox 1 gUnknown_822D8C0 -variableTextBox 3 gUnknown_822D888 -elseTextBox gUnknown_822D850 -setFlag 6 -waitFlag 5 -selectFace bottomR 1 1 -initVariableTextbox 2 0x26 1 -variableTextBox 1 gUnknown_822D830 -variableTextBox 3 gUnknown_822D810 -elseTextBox gUnknown_822D830 -closeTextBox -pause 0x1E -selectFace previousLoc 1 0 -initVariableTextbox 2 0x26 1 -variableTextBox 1 gUnknown_822D7BC -variableTextBox 3 gUnknown_822D774 -elseTextBox gUnknown_822D738 -closeTextBox -pause 0x1E -setAnimation 5 -pause 0x2D -setAnimation 2 -pause 0x1E -setFlag 6 -waitFlag 5 -selectFace previousLoc 1 4 -initVariableTextbox 2 0x26 1 -variableTextBox 1 gUnknown_822D714 -variableTextBox 1 gUnknown_822D6D8 -variableTextBox 3 gUnknown_822D6BC -variableTextBox 3 gUnknown_822D688 -elseTextBox gUnknown_822D66C -elseTextBox gUnknown_822D63C -closeTextBox -pause 0x1E -playSound 0x1D5 -executeScript QUESTION_FUNC -executeScript LOOK_AROUND_FUNC -stopSound 0x1D5 -pause 0x28 -playSound 0x1E2 -executeScript SHOCK_FUNC -waitSound 0x1E2 -selectFace previousLoc 0 0xC -scrollTextBox 0 gUnknown_822D624 -scrollTextBox 0 gUnknown_822D608 -closeTextBox -pause 0x14 -selectFace previousLoc 0 0x4 -scrollTextBox 0 gUnknown_822D5D8 -closeTextBox -pause 0x1E -setFlag 6 -waitFlag 5 -initVariableTextbox 2 0x26 1 -variableTextBox 1 gUnknown_822D5B0 -variableTextBox 1 gUnknown_822D578 -elseTextBox gUnknown_822D554 -elseTextBox gUnknown_822D530 -closeTextBox -pause 10 -selectFace previousLoc 0 0 -scrollTextbox 0 gUnknown_822D500 -closeTextBox -pause 0x14 -.byte 0x3b, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -renamePoke 1 -pause 0x14 -loadData 7 0 0 -selectFace previousLoc 1 0 -initVariableTextbox 2 0x26 1 -variableTextBox 1 gUnknown_822D4E0 -variableTextBox 3 gUnknown_822D4BC -elseTextBox gUnknown_822D498 -setFlag 6 -waitFlag 5 -selectFace previousLoc 1 0xA -initVariableTextbox 2 0x26 1 -variableTextBox 1 gUnknown_822D488 -variableTextBox 3 gUnknown_822D46C -elseTextBox gUnknown_822D454 -closeTextBox -setFlag 6 -waitFlag 5 -pause 0x1E -rotate 6 shortestDir south -pause 0xF -playSound 0x1D6 -executeScript 0x2A -pause 0x2D -rotate 6 shortestDir east -fadeMusicOut 0x3C -pause 0x3C -picNameTextBox 0xffff gUnknown_822D438 -closeTextBox -setFlag 6 -playSound 0x1D2 -executeScript 0x28 -rotate 0x4 CW west -pause 0x1E -selectFace previousLoc 1 0 -initVariableTextbox 2 0x26 1 -variableTextBox 1 gUnknown_822D414 -elseTextBox gUnknown_822D3EC -closeTextBox -RunCall 1 -waitFlag 5 -rotate 0xA CW north -waitFlag 5 -pause 0x14 -initVariableTextbox 2 0x26 1 -variableTextBox 1 gUnknown_822D3D4 -elseTextBox gUnknown_822D3C0 -closeTextBox -pause 0x14 -PlayMusic MUS_THERES_TROUBLE -setFlag 7 -waitFlag 5 -selectFace 0xE 2 0 -PicNameTextBox 2 gUnknown_822D384 -closeTextBox -pause 0xA -setFlag 6 -waitFlag 5 -selectFace previousLoc 1 0xC -PicNameTextBox 1 gUnknown_822D37C -closeTextBox -pause 0xC -PicNameTextBox 2 gUnknown_822D340 -PicNameTextBox 2 gUnknown_822D314 -PicNameTextBox 2 gUnknown_822D2D4 -closeTextBox -pause 0xA -PicNameTextBox 1 gUnknown_822D2A4 -closeTextBox -pause 0xA -PicNameTextBox 2 gUnknown_822D250 -PicNameTextBox 2 gUnknown_822D1F4 -PicNameTextBox 2 gUnknown_822D1C4 -closeTextBox -setFlag 7 -pause 0x3C -setFlag 6 -rotate 0x4 CW east -waitFlag 5 -selectFace previousLoc 1 0 -initVariableTextbox 2 0x26 1 -variableTextBox 1 HelpTheKid_822D18C -elseTextBox SoundsBad_822D164 -closeTextBox -pause 10 -setFlag 6 -pause 1 -gridMoveTo 0x180 8 -gridMoveTo 0x180 9 -setFlag 3 -gridMoveTo 0x180 0xA -closeThread - -.global SoundsBad_822D164 -SoundsBad_822D164: @ 822D164 -.string " This sounds bad!\n" -.string "We have to go help!\0" -.align 2,0 - -.global HelpTheKid_822D18C -HelpTheKid_822D18C: @ 822D18C -.string " We can{APOSTROPHE}t just do nothing!\n" -.string "Let{APOSTROPHE}s go help this kid!\0" -.align 2,0 - -.global gUnknown_822D1C4 -gUnknown_822D1C4: @ 822D1C4 -.string " Oh! What am I to do?!\n" -.string "Oh dear{COMMA} oh dear...\0" -.align 2, 0 - -.global gUnknown_822D1F4 -gUnknown_822D1F4: @ 822D1F4 -.string " I{APOSTROPHE}m not strong enough to\n" -.string "fend off those wild Pokémon...{WAIT_PRESS}\n" -.string "What will become of my baby?\0" -.align 2, 0 - -.global gUnknown_822D250 -gUnknown_822D250: @ 822D250 -.string " They must be enraged by\n" -.string "the fissure...and out of control!\n" -.string "That{APOSTROPHE}s what I think.\0" -.align 2, 0 - -.global gUnknown_822D2A4 -gUnknown_822D2A4: @ 822D2A4 -.string " Huh? You were attacked?{WAIT_PRESS}\n" -.string "By other Pokémon?\0" -.align 2, 0 - -.global gUnknown_822D2D4 -gUnknown_822D2D4: @ 822D2D4 -.string " When I went to get my\n" -.string "baby{COMMA} Pokémon suddenly attacked me!\0" -.align 2, 0 - -.global gUnknown_822D314 -gUnknown_822D314: @ 822D314 -.string " He{APOSTROPHE}s too young to crawl out\n" -.string "by himself!\0" -.align 2, 0 - -.global gUnknown_822D340 -gUnknown_822D340: @ 822D340 -.string " A huge fissure opened in\n" -.string "the ground{COMMA} and my {ARG_NICKNAME_3} fell in!\0" -.align 2, 0 - -.global gUnknown_822D37C -gUnknown_822D37C: @ 822D37C -.string " What?!\0" -.align 2, 0 - -.global gUnknown_822D384 -gUnknown_822D384: @ 822D384 -.string " It{APOSTROPHE}s horrible!\n" -.string "My {ARG_NICKNAME_3} fell into a cavern!\n" -.string "My poor baby!\0" -.align 2, 0 - -.global gUnknown_822D3C0 -gUnknown_822D3C0: @ 822D3C0 -.string " What{APOSTROPHE}s wrong?\0" -.align 2, 0 - -.global gUnknown_822D3D4 -gUnknown_822D3D4: @ 822D3D4 -.string " What{APOSTROPHE}s the matter?\0" -.align 2, 0 - -.global gUnknown_822D3EC -gUnknown_822D3EC: @ 822D3EC -.string " Huh? I hear shouts from\n" -.string "over there...\0" -.align 2, 0 - -.global gUnknown_822D414 -gUnknown_822D414: @ 822D414 -.string " Hah?\n" -.string "I hear shouting over there...\0" -.align 2, 0 - -.global gUnknown_822D438 -gUnknown_822D438: @ 822D438 -.string " Somebody!\n" -.string "Please! Help me!\0" -.align 2, 0 - -.global gUnknown_822D454 -gUnknown_822D454: @ 822D454 -.string " It{APOSTROPHE}s a funny name!\0" -.align 2, 0 - -.global gUnknown_822D46C -gUnknown_822D46C: @ 822D46C -.string " Isn{APOSTROPHE}t it a funny name!\0" -.align 2, 0 - -.global gUnknown_822D488 -gUnknown_822D488: @ 822D488 -.string " A funny name!\0" -.align 2, 0 - -.global gUnknown_822D498 -gUnknown_822D498: @ 822D498 -.string " Oh.\n" -.string "{ARG_NICKNAME_0}{APOSTROPHE}s your name?{WAIT_PRESS}\n" -.string "Well...\0" -.align 2, 0 - -.global gUnknown_822D4BC -gUnknown_822D4BC: @ 822D4BC -.string " OK.\n" -.string "You{APOSTROPHE}re named {ARG_NICKNAME_0}?{WAIT_PRESS}\n" -.string "Well...\0" -.align 2, 0 - -.global gUnknown_822D4E0 -gUnknown_822D4E0: @ 822D4E0 -.string " Uh-huh... {ARG_NICKNAME_0}.{WAIT_PRESS}\n" -.string "That{APOSTROPHE}s...\0" -.align 2, 0 - -.global gUnknown_822D500 -gUnknown_822D500: @ 822D500 -.string "(My name...?{WAIT_PRESS}\n" -.string "That{APOSTROPHE}s right{COMMA} my name is...)\0" -.align 2, 0 - -.global gUnknown_822D530 -gUnknown_822D530: @ 822D530 -.string " Your name?{WAIT_PRESS}\n" -.string "What{APOSTROPHE}s your name?\0" -.align 2, 0 - -.global gUnknown_822D554 -gUnknown_822D554: @ 822D554 -.string " Um...{WAIT_PRESS}\n" -.string "You{APOSTROPHE}re kind of weird...\0" -.align 2, 0 - -.global gUnknown_822D578 -gUnknown_822D578: @ 822D578 -.string " So{COMMA} what{APOSTROPHE}s your name?\n" -.string "What do you call yourself?\0" -.align 2, 0 - -.global gUnknown_822D5B0 -gUnknown_822D5B0: @ 822D5B0 -.string " You{APOSTROPHE}re...{WAIT_PRESS}\n" -.string "Some kind of weird...\0" -.align 2, 0 - -.global gUnknown_822D5D8 -gUnknown_822D5D8: @ 822D5D8 -.string "(...But why?\n" -.string "I don{APOSTROPHE}t remember anything...)\0" -.align 2, 0 - -.global gUnknown_822D608 -gUnknown_822D608: @ 822D608 -.string "(I have turned into\n" -.string "a {ARG_POKEMON_0}!)\0" -.align 2, 0 - -.global gUnknown_822D624 -gUnknown_822D624: @ 822D624 -.string "(It... It{APOSTROPHE}s true...)\0" -.align 2, 0 - -.global gUnknown_822D63C -gUnknown_822D63C: @ 822D63C -.string " But you look like a normal\n" -.string "{ARG_POKEMON_0} in every way.\0" -.align 2, 0 - -.global gUnknown_822D66C -gUnknown_822D66C: @ 822D66C -.string " Huh?{WAIT_PRESS}\n" -.string "You{APOSTROPHE}re a human?\0" -.align 2, 0 - -.global gUnknown_822D688 -gUnknown_822D688: @ 822D688 -.string " But you look like a normal\n" -.string "{ARG_POKEMON_0} from every angle?\0" -.align 2, 0 - -.global gUnknown_822D6BC -gUnknown_822D6BC: @ 822D6BC -.string " Huh?{WAIT_PRESS}\n" -.string "Did you say human?\0" -.align 2, 0 - -.global gUnknown_822D6D8 -gUnknown_822D6D8: @ 822D6D8 -.string " But any which way I look\n" -.string "at you{COMMA} you{APOSTROPHE}re a normal {ARG_POKEMON_0}.\0" -.align 2, 0 - -.global gUnknown_822D714 -gUnknown_822D714: @ 822D714 -.string " Hah?{WAIT_PRESS}\n" -.string "You say you{APOSTROPHE}re a human?\0" -.align 2, 0 - -.global gUnknown_822D738 -gUnknown_822D738: @ 822D738 -.string " ...And{COMMA} you are?{WAIT_PRESS}\n" -.string "I{APOSTROPHE}ve never seen you around before.\0" -.align 2, 0 - -.global gUnknown_822D774 -gUnknown_822D774: @ 822D774 -.string " ...And{COMMA} you are?{WAIT_PRESS}\n" -.string "I don{APOSTROPHE}t think I{APOSTROPHE}ve seen you around before.\0" -.align 2, 0 - -.global gUnknown_822D7BC -gUnknown_822D7BC: @ 822D7BC -.string " ...So{COMMA} who might you be?{WAIT_PRESS}\n" -.string "I don{APOSTROPHE}t think I{APOSTROPHE}ve seen your face around\n" -.string "here.\0" -.align 2, 0 - -.global gUnknown_822D810 -gUnknown_822D810: @ 822D810 -.string " I{APOSTROPHE}m {ARG_NICKNAME_1}.\n" -.string "Happy to meet you!\0" -.align 2, 0 - -.global gUnknown_822D830 -gUnknown_822D830: @ 822D830 -.string " I{APOSTROPHE}m {ARG_NICKNAME_1}.\n" -.string "Glad to meet you!\0" -.align 2, 0 - -.global gUnknown_822D850 -gUnknown_822D850: @ 822D850 -.string " You were passed out here.\n" -.string "I{APOSTROPHE}m glad to see you awake!\0" -.align 2, 0 - -.global gUnknown_822D888 -gUnknown_822D888: @ 822D888 -.string " I found you passed out here.\n" -.string "I{APOSTROPHE}m glad you came to!\0" -.align 2, 0 - -.global gUnknown_822D8C0 -gUnknown_822D8C0: @ 822D8C0 -.string " You were passed out here.\n" -.string "I{APOSTROPHE}m glad you woke up!\0" -.align 2, 0 - -.global gUnknown_822D8F4 -gUnknown_822D8F4: @ 822D8F4 -.string "(Wh-where is this...?)\0" -.align 2, 0 - -.global gUnknown_822D90C -gUnknown_822D90C: @ 822D90C -.string " You{APOSTROPHE}re finally awake! Great!\0" -.align 2, 0 - -.global gUnknown_822D92C -gUnknown_822D92C: @ 822D92C -.string " Oh{COMMA} good! You finally came to!\0" -.align 2, 0 -@ Partner - -.global gUnknown_822D950 -gUnknown_822D950: @ 822D950 -.byte 0xf6, 0x00, 0x11, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte GroundD01P01StationFile_Text -setAnimation 2 -loadData 1 1 0 -waitFlag 6 -playSound 0x1D1 -executeScript NOTICE_FUNC -pause 1 -stopSound 0x1D1 -setFlag 5 -waitFlag 6 -loadData 7 1 0 -setFlag 5 -waitFlag 6 -playSound 0x1D5 -executeScript QUESTION_FUNC -pause 5 -stopSound 0x1D5 -setFlag 5 -waitFlag 6 -playSound 0x1D6 -executeScript SWEAT_FUNC -waitSound 0x1D6 -setFlag 5 -waitFlag 6 -executeScript JUMP_HAPPY_FUNC -pause 5 -executeScript SMILE_START_FUNC -setFlag 5 -waitFlag 6 -executeScript SMILE_END_FUNC -setFlag 5 -waitFlag 6 -playSound 0x1D2 -executeScript NOTICE_FUNC -rotate 4 CW west -waitSound 0x1D2 -pause 0x1E -waitFlag 6 -rotate 10 CW north -waitFlag 6 -playSound 0x1CF -executeScript SHOCK_FUNC -waitSound 0x1CF -setFlag 5 -waitFlag 6 -rotate 4 CCW west -setFlag 5 -waitFlag 6 -gridMoveTo 0x180 0xB -gridMoveTo 0x180 0xC -gridMoveTo 0x180 0xD -closeThread -@ Butterfree - -.global gUnknown_822DC90 -gUnknown_822DC90: @ 822DC90 -.byte 0xf6, 0x00, 0x48, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte GroundD01P01StationFile_Text -setAnimation 2 -loadData 7 2 0 -loadData 9 3 0x36 -playSound 0x1C2 -gridMoveTo 0x100 0 -gridMoveTo 0x100 1 -gridMoveTo 0x100 2 -gridMoveTo 0x100 3 -gridMoveTo 0x100 4 -gridMoveTo 0x100 5 -setFlag 5 -setFlag 6 -gridMoveTo 0x100 6 -gridMoveTo 0x100 7 -rotate 6 CW south -stopSound 0x1C2 -goTo 5 -waitFlag 7 -executeScript JUMP_ANGRY_FUNC -setFlag 5 -waitFlag 7 -label 0 -setFaceDir 0x1E west -setFaceDir 0x1E south -setFaceDir 0x1E east -setFaceDir 0x1E south -loopLabel 0 - -.global gUnknown_822DE50 -gUnknown_822DE50: @ 822DE50 -.byte 0xf6, 0x00, 0x67, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte GroundD01P01StationFile_Text -.byte 0x3b, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pushR14 -pause 0x3C -changeTileset 0xB2 -loadData 9 0 0x35 -.byte 0x2e, 0x0b, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -picNameTextBox 0 gUnknown_822DF40 -closeTextBox -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3b, 0x39, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -waitFlag 3 -warpDungeon 0x1E -endFuncandScript - -.global gUnknown_822DF40 -gUnknown_822DF40: @ 822DF40 -.string " ...Hello?{WAIT_PRESS}\n" -.string "Hello!\0" -.align 2, 0 - -.global gUnknown_822DF54 -gUnknown_822DF54: @ 822DF54 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822DE50 - -.global gUnknown_822DF60 -gUnknown_822DF60: @ 822DF60 -.byte 0xf6, 0x00, 0x7c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte GroundD01P01StationFile_Text -executeScript INIT_SLEEP_FUNC -loadData 7 0 0 -loadData 9 3 0x36 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -selectFace bottomL 0 0 -selectFace bottomR 1 0 -selectFace insetTopL 2 0 -setFlag 6 -pause 1 -executeScript WAKEUP_FUNC -waitFlag 5 -setFlag 6 -rotate 8 CCW east -playSound 0x1D4 -pause 1 -rotate 8 CW west -playSound 0x1D4 -pause 1 -rotate 8 CCW east -playSound 0x1D4 -pause 0x32 -stopSound 0x1D4 -picNameTextBox 2 gUnknown_822E5CC -closeTextBox -setFlag 6 -rotate 8 CCW north -waitFlag 5 -setFlag 6 -waitFlag 5 -selectFace bottomR 1 4 -picNameTextBox 1 gUnknown_822E5BC -closeTextBox -pause 0xA -picNameTextBox 2 gUnknown_822E5AC -picNameTextBox 2 gUnknown_822E578 -closeTextBox -pause 0xA -initVariableTextBox 2 0x26 1 -variableTextBox 1 gUnknown_822E558 -elseTextBox gUnknown_822E530 -closeTextBox -setFlag 6 -rotate 8 CW east -waitFlag 5 -selectFace previousLoc 1 0 -picNameTextBox 1 gUnknown_822E4EC -picNameTextBox 1 gUnknown_822E4C0 -closeTextBox -pause 0xA -setFlag 7 -picNameTextBox 2 gUnknown_822E48C -closeTextBox -setFlag 7 -setFlag 6 -rotate 4 CCW north -pause 0x1E -initVariableTextBox 2 0x26 1 -variableTextBox 1 gUnknown_822E454 -elseTextBox gUnknown_822E42C -setFlag 6 -waitFlag 5 -rotate 4 shortestDir east -initVariableTextBox 2 0x26 1 -variableTextBox 1 gUnknown_822E414 -elseTextBox gUnknown_822E400 -closeTextBox -setFlag 6 -pause 1 -gridMoveTo 0x180 8 -gridMoveTo 0x180 9 -setFlag 3 -gridMoveTo 0x180 0xA -closeThread - -.global gUnknown_822E400 -gUnknown_822E400: @ 822E400 -.string " {ARG_NICKNAME_0}! Let{APOSTROPHE}s go!\0" -.align 2, 0 - -.global gUnknown_822E414 -gUnknown_822E414: @ 822E414 -.string " Let{APOSTROPHE}s roll{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_822E42C -gUnknown_822E42C: @ 822E42C -.string " That{APOSTROPHE}s right!\n" -.string "We{APOSTROPHE}ve got to hurry!\0" -.align 2, 0 - -.global gUnknown_822E454 -gUnknown_822E454: @ 822E454 -.string " That{APOSTROPHE}s right!\n" -.string "We have to help that kid{COMMA} and now!\0" -.align 2, 0 - -.global gUnknown_822E48C -gUnknown_822E48C: @ 822E48C -.string " Ohh!\n" -.string "Is my poor {ARG_NICKNAME_3} safe?!\n" -.string "Oh dear{COMMA} oh dear...\0" -.align 2, 0 - -.global gUnknown_822E4C0 -gUnknown_822E4C0: @ 822E4C0 -.string " It{APOSTROPHE}s a mysterious dungeon{COMMA}\n" -.string "I guess.\0" -.align 2, 0 - -.global gUnknown_822E4EC -gUnknown_822E4EC: @ 822E4EC -.string " I guess if we{APOSTROPHE}re defeated\n" -.string "in there{COMMA} we don{APOSTROPHE}t get to advance.\0" -.align 2, 0 - -.global gUnknown_822E530 -gUnknown_822E530: @ 822E530 -.string " ...We somehow ended up\n" -.string "back here...\0" -.align 2, 0 - -.global gUnknown_822E558 -gUnknown_822E558: @ 822E558 -.string " ...We ended up back here...\0" -.align 2, 0 - -.global gUnknown_822E578 -gUnknown_822E578: @ 822E578 -.string " You two ran off to rescue\n" -.string "my poor {ARG_NICKNAME_3}{COMMA} but...\0" -.align 2, 0 - -.global gUnknown_822E5AC -gUnknown_822E5AC: @ 822E5AC -.string " In the forest.\0" -.align 2, 0 - -.global gUnknown_822E5BC -gUnknown_822E5BC: @ 822E5BC -.string " Wh-where...?\0" -.align 2, 0 - -.global gUnknown_822E5CC -gUnknown_822E5CC: @ 822E5CC -.string " Oh{COMMA} my goodness!\n" -.string "I{APOSTROPHE}m so glad you came to!\0" -.align 2, 0 - -.global gUnknown_822E5FC -gUnknown_822E5FC: @ 822E5FC -.byte 0xf6, 0x00, 0xca, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte GroundD01P01StationFile_Text -executeScript INIT_SLEEP_FUNC -loadData 7 1 0 -waitFlag 6 -executeScript WAKEUP_FUNC -goTo 5 -waitFlag 6 -rotate 8 CW west -playSound 0x1D4 -pause 1 -rotate 8 CCW east -playSound 0x1D4 -pause 1 -rotate 8 CW west -playSound 0x1D4 -pause 0x32 -stopSound 0x1D4 -waitFlag 6 -rotate 8 CW north -pause 0x3C -setFlag 5 -waitFlag 6 -playSound 0x1D5 -executeScript QUESTION_FUNC -setFlag 5 -pause 5 -waitSound 0x1D5 -waitFlag 6 -rotate 8 CCW west -pause 0x14 -setFlag 5 -waitFlag 6 -rotate 4 CW north -executeScript NOTICE_FUNC -waitFlag 6 -rotate 4 shortestDir west -setFlag 5 -waitFlag 6 -gridMoveTo 0x180 0xB -gridMoveTo 0x180 0xC -gridMoveTo 0x180 0xD -closeThread - -.global gUnknown_822E89C -gUnknown_822E89C: @ 822E89C -.byte 0xf6, 0x00, 0xf7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte GroundD01P01StationFile_Text -setAnimation 2 -loadData 7 2 0 -waitFlag 7 -executeScript SHOCK_FUNC -waitFlag 7 -label 0 -setFaceDir 0x1E west -setFaceDir 0x1E south -setFaceDir 0x1E east -setFaceDir 0x1E south -loopLabel 0 - -.global gUnknown_822E95C -gUnknown_822E95C: @ 822E95C -.byte 0xf6, 0x00, 0x06, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte GroundD01P01StationFile_Text -.byte 0x3b, 0x39, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -changeTileset 0xB2 -StartSceneRunCall 0 -PlayMusic 0x67 -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -waitFlag 3 -fadeMusicOut 0x1E -fadeOut 1 0x1E 0 -pause 0x3C -endFuncAndScript - -.global gUnknown_822EA0C -gUnknown_822EA0C: @ 822EA0C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822E95C - -.global gUnknown_822EA18 -gUnknown_822EA18: @ 822EA18 -.byte 0xf6, 0x00, 0x16, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte GroundD01P01StationFile_Text -setAnimation 2 -loadData 7 0 0 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1E -selectFace bottomL 0 0 -selectFace bottomR 1 0 -selectFace insetTopR 2 0 -selectFace insetTopL 3 0 -PicNameTextBox 2 gUnknown_822F630 -closeTextBox -pause 0xA -selectFace 0x15 0x1 0x9 -initVariableTextbox 2 0x26 1 -variableTextBox 1 gUnknown_822F5C8 -variableTextBox 1 gUnknown_822F590 -elseTextBox gUnknown_822F52C -elseTextBox gUnknown_822F4FC -closeTextBox -pause 0xA -PicNameTextBox 2 gUnknown_822F4D0 -closeTextBox -pause 0xA -selectFace 0x15 1 0 -initVariableTextbox 0x2 0x26 1 -variableTextBox 1 gUnknown_822F4C4 -variableTextBox 3 gUnknown_822F4C4 -elseTextBox gUnknown_822F4C4 -setFlag 6 -waitFlag 5 -PicNameTextBox 1 gUnknown_822F4B0 -closeTextBox -setFlag 6 -waitFlag 5 -pause 0x1E -selectFace 0x15 3 0x41 -PicNameTextBox 3 gUnknown_822F498 -closeTextBox -setFlag 6 -waitFlag 5 -pause 0x1E -setFlag 6 -pause 0x1 -playSound 0x1D6 -executeScript SWEAT_FUNC -pause 0x1E -stopSound 0x1D6 -selectFace 0x15 0 4 -scrollTextbox 0 gUnknown_822F468 -scrollTextbox 0 gUnknown_822F430 -selectFace 0x15 0 1 -scrollTextBox 0 gUnknown_822F3E8 -scrollTextBox 0 gUnknown_822F3AC -closeTextBox -pause 0x1E -setFlag 8 -waitFlag 5 -PicNameTextBox 3 gUnknown_822F390 -closeTextBox -pause 0x14 -PicNameTextBox 2 gUnknown_822F334 -closeTextBox -pause 0xA -setFlag 7 -setFlag 6 -waitFlag 5 -.byte 0x3c, 0x2c, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xA -.byte 0x3c, 0x2c, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xA -.byte 0x3c, 0x2c, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -pause 0x3C -setFlag 7 -waitFlag 5 -PicNameTextBox 2 gUnknown_822F314 -closeTextBox -setFlag 7 -setFlag 8 -pause 0x1E -setFlag 6 -rotate 0xA CW east -waitFlag 5 -setFlag 6 -waitFlag 5 -selectFace 0x15 1 1 -initVariableTextbox 0x2 0x26 1 -variableTextBox 1 gUnknown_822F2F0 -elseTextBox gUnknown_822F2D8 -rotate 8 CW east -pause 0xA -selectFace 0x15 1 0 -initVariableTextbox 2 0x26 1 -variableTextBox 1 gUnknown_822F2B0 -variableTextBox 1 gUnknown_822F270 -elseTextBox gUnknown_822F244 -elseTextBox gUnknown_822F20C -closeTextBox -pause 0x1E -selectFace 0x15 0 4 -scrollTextBox 0 gUnknown_822F1FC -closeTextBox -pause 0x1E -selectFace 0x15 1 0 -initVariableTextbox 0x2 0x26 1 -variableTextBox 1 gUnknown_822F1A0 -elseTextBox gUnknown_822F148 -closeTextBox -setFlag 6 -waitFlag 5 -rotate 0x8 shortestDir east -pause 0xA -setFlag 3 -.byte 0x6b, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_822F148 -gUnknown_822F148: @ 822F148 -.string " ...{WAIT_PRESS}" -.string "Listen{COMMA} {ARG_NICKNAME_0}.{WAIT_PRESS}\n" -.string "If you don{APOSTROPHE}t have a place to stay{COMMA} you\n" -.string "should come with me.\0" -.align 2, 0 - -.global gUnknown_822F1A0 -gUnknown_822F1A0: @ 822F1A0 -.string " ...{WAIT_PRESS}" -.string "Say{COMMA} {ARG_NICKNAME_0}.{WAIT_PRESS}\n" -.string "If you don{APOSTROPHE}t have anywhere to stay{COMMA}\n" -.string "why don{APOSTROPHE}t you come with me?\0" -.align 2, 0 - -.global gUnknown_822F1FC -gUnknown_822F1FC: @ 822F1FC -.string "(............)\0" -.align 2, 0 - -.global gUnknown_822F20C -gUnknown_822F20C: @ 822F20C -.string " So...\n" -.string "What are you going to do?\n" -.string "Do you have any plans?\0" -.align 2, 0 - -.global gUnknown_822F244 -gUnknown_822F244: @ 822F244 -.string " You{APOSTROPHE}re very tough.\n" -.string "I was sure impressed.\0" -.align 2, 0 - -.global gUnknown_822F270 -gUnknown_822F270: @ 822F270 -.string " So{COMMA} uh...\n" -.string "What are you going to do?\n" -.string "After this{COMMA} I mean.\0" -.align 2, 0 - -.global gUnknown_822F2B0 -gUnknown_822F2B0: @ 822F2B0 -.string " You{APOSTROPHE}re pretty tough.\n" -.string "I respect that.\0" -.align 2, 0 - -.global gUnknown_822F2D8 -gUnknown_822F2D8: @ 822F2D8 -.string " Thank you for helping!\0" -.align 2, 0 - -.global gUnknown_822F2F0 -gUnknown_822F2F0: @ 822F2F0 -.string " Hey{COMMA} thanks for helping me\n" -.string "out.\0" -.align 2, 0 - -.global gUnknown_822F314 -gUnknown_822F314: @ 822F314 -.string " Thank you so much.\n" -.string "Good-bye.\0" -.align 2, 0 - -.global gUnknown_822F334 -gUnknown_822F334: @ 822F334 -.string " I know it isn{APOSTROPHE}t really\n" -.string "enough{COMMA} but this is a token of our\n" -.string "thanks. Please accept it.\0" -.align 2, 0 - -.global gUnknown_822F390 -gUnknown_822F390: @ 822F390 -.string " Thank you!\n" -.string "{ARG_NICKNAME_1} and {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_822F3AC -gUnknown_822F3AC: @ 822F3AC -.string "(Helping Pokémon in trouble might be\n" -.string "a good experience.)\0" -.align 2, 0 - -.global gUnknown_822F3E8 -gUnknown_822F3E8: @ 822F3E8 -.string "(But{COMMA} this doesn{APOSTROPHE}t feel bad{COMMA} either.\n" -.string "It{APOSTROPHE}s like I{APOSTROPHE}m a hero.)\0" -.align 2, 0 - -.global gUnknown_822F430 -gUnknown_822F430: @ 822F430 -.string "(Those sparkly eyes...\n" -.string "It{APOSTROPHE}s a little embarrassing...)\0" -.align 2, 0 - -.global gUnknown_822F468 -gUnknown_822F468: @ 822F468 -.string "(He{APOSTROPHE}s{COMMA} uh...{WAIT_PRESS}" -.string " Staring at me adoringly...)\0" -.align 2, 0 - -.global gUnknown_822F498 -gUnknown_822F498: @ 822F498 -.string " ............{WAIT_PRESS}\n" -.string "Cool...\0" -.align 2, 0 - -.global gUnknown_822F4B0 -gUnknown_822F4B0: @ 822F4B0 -.string " And this is {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_822F4C4 -gUnknown_822F4C4: @ 822F4C4 -.string " I{APOSTROPHE}m {ARG_NICKNAME_1}.\0" -.align 2, 0 - -.global gUnknown_822F4D0 -gUnknown_822F4D0: @ 822F4D0 -.string " Please{COMMA} may I have your\n" -.string "names at least?\0" -.align 2, 0 - -.global gUnknown_822F4FC -gUnknown_822F4FC: @ 822F4FC -.string " It was great to find your\n" -.string "little boy unharmed.\0" -.align 2, 0 - -.global gUnknown_822F52C -gUnknown_822F52C: @ 822F52C -.string " Oh{COMMA} that{APOSTROPHE}s OK!{WAIT_PRESS}\n" -.string "It has been dangerous lately with sudden\n" -.string "quakes and fissures like that one.\0" -.align 2, 0 - -.global gUnknown_822F590 -gUnknown_822F590: @ 822F590 -.string " I{APOSTROPHE}m glad your little guy{APOSTROPHE}s\n" -.string "not hurt{COMMA} honestly.\0" -.align 2, 0 - -.global gUnknown_822F5C8 -gUnknown_822F5C8: @ 822F5C8 -.string " Aww{COMMA} don{APOSTROPHE}t worry{COMMA} lady.{WAIT_PRESS}\n" -.string "There have been a lot of quakes and\n" -.string "fissures lately. It{APOSTROPHE}s dangerous.\0" -.align 2, 0 - -.global gUnknown_822F630 -gUnknown_822F630: @ 822F630 -.string " My baby{APOSTROPHE}s safe...{WAIT_PRESS}\n" -.string "I{APOSTROPHE}m sorry{COMMA} I don{APOSTROPHE}t know how I could ever\n" -.string "thank you properly...\0" -.align 2, 0 - -.global gUnknown_822F68C -gUnknown_822F68C: @ 822F68C -.byte 0xf6, 0x00, 0x97, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte GroundD01P01StationFile_Text -setAnimation 2 -loadData 7 1 0 -waitFlag 6 -rotate 4 CCW west -setFlag 5 -waitFlag 6 -rotate 4 CW north -setFlag 5 -waitFlag 6 -rotate 4 shortestDir northwest -setFlag 5 -waitFlag 6 -executeScript SWEAT_FUNC -waitFlag 6 -rotate 4 shortestDir north -waitFlag 6 -rotate 0xA CW east -waitFlag 6 -rotate 0x4 CCW west -pause 0xA -setFlag 5 -waitFlag 6 -rotate 0x4 CW east -setFlag 5 -pause 1 -gridMoveto 0x100 0x11 -closeThread - -.global gUnknown_822F84C -gUnknown_822F84C: @ 822F84C -.byte 0xf6, 0x00, 0xb6, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte GroundD01P01StationFile_Text -setAnimation 2 -loadData 7 2 0 -waitFlag 7 -.byte 0x6a, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 5 -waitFlag 7 -.byte 0x62, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -setFlag 5 -waitFlag 7 -.byte 0x95, 0x08, 0x0a, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -playSound 0x1C2 -gridMoveTo 0x100 0xE -stopSound 0x1C2 -setFlag 5 -closeThreadRemoveObject - -.global gUnknown_822F94C -gUnknown_822F94C: @ 822F94C -.byte 0xf6, 0x00, 0xc9, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte GroundD01P01StationFile_Text -setAnimation 2 -loadData 7 3 0 -waitFlag 8 -playSound 0x1C9 -executeScript 0x27 -pause 0x14 -setFlag 5 -waitFlag 8 -.byte 0x95, 0x08, 0x0a, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -gridMoveTo 0x100 0xF -closeThreadRemoveObject - -.global gUnknown_822FA0C -gUnknown_822FA0C: @ 822FA0C -.byte 0x00, 0x00, 0x00, 0x00, 0x19, 0x18, 0x00, 0x02 -.4byte gUnknown_822C5E4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00, 0x1d, 0x18, 0x00, 0x02 -.4byte gUnknown_822D950 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822FA3C -gUnknown_822FA3C: @ 822FA3C -.byte 0x35, 0x02, 0x00, 0x00, 0x09, 0x17, 0x00, 0x02 -.4byte gUnknown_822DC90 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822FA54 -gUnknown_822FA54: @ 822FA54 -.byte 0x00, 0x00, 0x00, 0x00, 0x19, 0x18, 0x00, 0x02 -.4byte gUnknown_822DF60 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x1d, 0x18, 0x00, 0x02 -.4byte gUnknown_822E5FC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x1b, 0x15, 0x00, 0x02 -.4byte gUnknown_822E89C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822FA9C -gUnknown_822FA9C: @ 822FA9C -.byte 0x00, 0x04, 0x00, 0x00, 0x19, 0x18, 0x00, 0x02 -.4byte gUnknown_822EA18 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x1d, 0x18, 0x00, 0x02 -.4byte gUnknown_822F68C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x1d, 0x15, 0x00, 0x02 -.4byte gUnknown_822F84C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x19, 0x15, 0x00, 0x02 -.4byte gUnknown_822F94C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822FAFC -gUnknown_822FAFC: @ 822FAFC -.byte 0x00, 0x00, 0x01, 0x01, 0x1b, 0x17, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822FB08 -gUnknown_822FB08: @ 822FB08 -.byte 0x00, 0x00, 0x01, 0x01, 0x1b, 0x17, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822FB14 -gUnknown_822FB14: @ 822FB14 -.byte 0x00, 0x00, 0x01, 0x01, 0x1b, 0x17, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822FB20 -gUnknown_822FB20: @ 822FB20 -.4byte gUnknown_822C2B4 - -.global gUnknown_822FB24 -gUnknown_822FB24: @ 822FB24 -.4byte gUnknown_822C5D8 - -.global gUnknown_822FB28 -gUnknown_822FB28: @ 822FB28 -.4byte gUnknown_822DF54 - -.global gUnknown_822FB2C -gUnknown_822FB2C: @ 822FB2C -.4byte gUnknown_822EA0C - -.global gUnknown_822FB30 -gUnknown_822FB30: @ 822FB30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822FB20 - -.global gUnknown_822FB58 -gUnknown_822FB58: @ 822FB58 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_822FA0C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822FAFC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822FB24 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822FA3C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_822FBA8 -gUnknown_822FBA8: @ 822FBA8 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_822FA54 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822FB08 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822FB28 - -.global gUnknown_822FBD0 -gUnknown_822FBD0: @ 822FBD0 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_822FA9C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822FB14 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822FB2C - -.global gUnknown_822FBF8 -gUnknown_822FBF8: @ 822FBF8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822FB30 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_822FB58 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822FBA8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_822FBD0 - -.global gUnknown_822FC18 -gUnknown_822FC18: @ 822FC18 -.byte 0x0c, 0x14, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x0e, 0x14, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x10, 0x16, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x12, 0x16, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x15, 0x13, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x17, 0x13, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x19, 0x15, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1b, 0x15, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x14, 0x18, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x0d, 0x18, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x06, 0x18, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x17, 0x18, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x10, 0x18, 0x02, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x09, 0x18, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x34, 0x15, 0x00, 0x06, 0x01, 0x01, 0x02, 0x01, 0x31, 0x15, 0x00, 0x06, 0x01, 0x01, 0x02, 0x01, 0x31, 0x18, 0x00, 0x06 -.byte 0x01, 0x01, 0x02, 0x01, 0x34, 0x18, 0x00, 0x06, 0x01, 0x01, 0x02, 0x01 - -.global gUnknown_822FCA8 -gUnknown_822FCA8: @ 822FCA8 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_822FBF8 -.4byte gUnknown_822FC18 -.string "pksdir0\0" -.align 2, 0 -@ Tiny Woods Heart - -.global gUnknown_822FCBC -gUnknown_822FCBC: @ 822FCBC -.byte 0xf6, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822FCFC -changeTileSet 0xB3 -pushR14 -msgEnd 0x163 - -.global gUnknown_822FCFC -gUnknown_822FCFC: @ 822FCFC -.string "../data/ground/ground_data_d01p02_station.c\0" -.align 2, 0 - -.global gUnknown_822FD28 -gUnknown_822FD28: @ 822FD28 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822FCBC - -.global gUnknown_822FD34 -gUnknown_822FD34: @ 822FD34 -.byte 0xf6, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822FCFC -changeTileset 0xB3 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -playMusic 0x72 -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -waitFlag 3 -fadeOut 1 0x1E 0 -pause 0x1E -endFuncandScript - -.global gUnknown_822FDC4 -gUnknown_822FDC4: @ 822FDC4 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822FD34 - -.global gUnknown_822FDD0 -gUnknown_822FDD0: @ 822FDD0 -.byte 0xf6, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822FCFC -setAnimation 2 -loadData 7 0 0 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3C -selectFace 2 0 0 -selectFace 3 1 0 -selectFace 0xE 2 0 -setFlag 7 -waitFlag 5 -selectFace 0x15 2 0x42 -picNameTextBox 2 gUnknown_823009C -picNameTextBox 2 gUnknown_8230074 -closeTextBox -pause 0x1E -setFlag 6 -.byte 0x6b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1E -selectFace 0x15 1 0x00 -picNameTextBox 1 gUnknown_823005C -closeTextBox -pause 0xA -setFlag 7 -waitFlag 5 -picNameTextBox 2 gUnknown_8230054 -closeTextBox -pause 0xA -picNameTextBox 1 gUnknown_8230028 -closeTextBox -pause 0xA -setFlag 7 -waitFlag 5 -selectFace 0x15 2 0x00 -picNameTextBox 2 gUnknown_8230020 -closeTextBox -setFlag 3 -closeThread - -.global gUnknown_8230020 -gUnknown_8230020: @ 8230020 -.string " OK.\0" -.align 2, 0 - -.global gUnknown_8230028 -gUnknown_8230028: @ 8230028 -.string " Your mom{APOSTROPHE}s waiting.\n" -.string "Let{APOSTROPHE}s get you out!\0" -.align 2, 0 - -.global gUnknown_8230054 -gUnknown_8230054: @ 8230054 -.string " Huh?\0" -.align 2, 0 - -.global gUnknown_823005C -gUnknown_823005C: @ 823005C -.string " We came to rescue you.\0" -.align 2, 0 - -.global gUnknown_8230074 -gUnknown_8230074: @ 8230074 -.string " Mommy...\n" -.string "Where are you...? Sniffle...\0" -.align 2, 0 - -.global gUnknown_823009C -gUnknown_823009C: @ 823009C -.string " Waaaaah...\0" -.align 2, 0 - -.global gUnknown_82300A8 -gUnknown_82300A8: @ 82300A8 -.byte 0xf6, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822FCFC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8230108 -gUnknown_8230108: @ 8230108 -.byte 0xf6, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_822FCFC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xc9, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8230218 -gUnknown_8230218: @ 8230218 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x14, 0x22, 0x02, 0x02 -.4byte gUnknown_822FDD0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x18, 0x22, 0x02, 0x02 -.4byte gUnknown_82300A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x04, 0x00, 0x00, 0x16, 0x12, 0x02, 0x02 -.4byte gUnknown_8230108 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8230260 -gUnknown_8230260: @ 8230260 -.byte 0x00, 0x00, 0x01, 0x01, 0x16, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823026C -gUnknown_823026C: @ 823026C -.4byte gUnknown_822FD28 - -.global gUnknown_8230270 -gUnknown_8230270: @ 8230270 -.4byte gUnknown_822FDC4 - -.global gUnknown_8230274 -gUnknown_8230274: @ 8230274 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823026C - -.global gUnknown_823029C -gUnknown_823029C: @ 823029C -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8230218 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8230260 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8230270 - -.global gUnknown_82302C4 -gUnknown_82302C4: @ 82302C4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8230274 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823029C - -.global gUnknown_82302D4 -gUnknown_82302D4: @ 82302D4 -.byte 0x14, 0x17, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00 -.byte 0x18, 0x17, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00 - -.global gUnknown_82302E4 -gUnknown_82302E4: @ 82302E4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82302C4 -.4byte gUnknown_82302D4 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_82302F8 -gUnknown_82302F8: @ 82302F8 -.byte 0xf6, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230338 -.byte 0x08, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8230338 -gUnknown_8230338: @ 8230338 -.string "../data/ground/ground_data_d02p01_station.c\0" -.align 2, 0 - -.global gUnknown_8230364 -gUnknown_8230364: @ 8230364 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82302F8 - -.global gUnknown_8230370 -gUnknown_8230370: @ 8230370 -.byte 0xf6, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230338 -.byte 0x08, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82303F0 -gUnknown_82303F0: @ 82303F0 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230370 - -.global gUnknown_82303FC -gUnknown_82303FC: @ 82303FC -.byte 0xf6, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230338 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x23, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823047C -gUnknown_823047C: @ 823047C -.byte 0xf6, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230338 -setAnimation 2 -.byte 0x59, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -setFlag 0x06 -.byte 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x9c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -setFlag 0x07 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230738 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823070C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82306CC -closeTextBox -setFlag 0x06 -.byte 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -setAnimation 47 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -pause 0x0f -rotate 0x08, shortestDir, north -pause 0x0f -setFlag 0x07 -setFlag 0x08 -pause 0x1e -setFlag 0x04 -setFlag 0x06 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -closeThread - -.global gUnknown_82306CC -gUnknown_82306CC: @ 82306CC -.string " MY FRIENDS SHOULD BE\n" -.string "ON B{ARG_VALUE_0}F. PLEASE HELP THEM!\n" -.string "BZBZBZZZT!\0" -.align 2, 0 - -.global gUnknown_823070C -gUnknown_823070C: @ 823070C -.string " MY FRIENDS ARE IN THIS\n" -.string "CAVERN. BZBZBZZ.\0" -.align 2, 0 - -.global gUnknown_8230738 -gUnknown_8230738: @ 8230738 -.string " OH{COMMA} YOU ARE HERE.\n" -.string "BZBZBZZ!\0" -.align 2, 0 - -.global gUnknown_8230758 -gUnknown_8230758: @ 8230758 -.byte 0xf6, 0x00, 0x58, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230338 -setAnimation 2 -.byte 0x59, 0x00, 0x00, 0x00 -.byte 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x9c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 47 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, north -.byte 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x6b, 0x00, 0x99, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82308A8 -gUnknown_82308A8: @ 82308A8 -.byte 0xf6, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230338 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x80, 0x00 -.byte 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8230948 -gUnknown_8230948: @ 8230948 -.byte 0xf6, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230338 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x80, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82309D8 -gUnknown_82309D8: @ 82309D8 -.byte 0xf6, 0x00, 0x89, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230338 -.byte 0x08, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8230A58 -gUnknown_8230A58: @ 8230A58 -.byte 0x90, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82309D8 - -.global gUnknown_8230A64 -gUnknown_8230A64: @ 8230A64 -.byte 0xf6, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230338 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x23, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8230AE4 -gUnknown_8230AE4: @ 8230AE4 -.byte 0xf6, 0x00, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230338 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x3c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x9c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230D40 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230D10 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230CE4 -closeTextBox -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x99, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8230CE4 -gUnknown_8230CE4: @ 8230CE4 -.string " Let{APOSTROPHE}s do our best to rescue\n" -.string "them{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8230D10 -gUnknown_8230D10: @ 8230D10 -.string " Let{APOSTROPHE}s give it our best\n" -.string "and rescue them {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8230D40 -gUnknown_8230D40: @ 8230D40 -.string " The {ARG_NICKNAME_2} are in\n" -.string "there somewhere.\0" -.align 2, 0 - -.global gUnknown_8230D64 -gUnknown_8230D64: @ 8230D64 -.byte 0xf6, 0x00, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230338 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x9c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x6b, 0x00, 0x99, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8230E64 -gUnknown_8230E64: @ 8230E64 -.byte 0xf6, 0x00, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230338 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x14, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8230EF4 -gUnknown_8230EF4: @ 8230EF4 -.byte 0xf6, 0x00, 0xe4, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230338 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x14, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8230F74 -gUnknown_8230F74: @ 8230F74 -.byte 0xf6, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230338 -.byte 0x08, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x01, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8231014 -gUnknown_8231014: @ 8231014 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230F74 - -.global gUnknown_8231020 -gUnknown_8231020: @ 8231020 -.byte 0xf6, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230338 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0x2e, 0x03, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8231444 -setFlag 0x09 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8231434 -setFlag 0x0a -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8231434 -setFlag 0x09 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8231418 -closeTextBox -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82313F0 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x2b, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x2c, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x2c, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x08, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82313F0 -gUnknown_82313F0: @ 82313F0 -.string " YOU ARE OUR HERO.\n" -.string "THANK YOU. BZBZBZZ!\0" -.align 2, 0 - -.global gUnknown_8231418 -gUnknown_8231418: @ 8231418 -.string " BE THANKFUL{COMMA} YOU TWO.\0" -.align 2, 0 - -.global gUnknown_8231434 -gUnknown_8231434: @ 8231434 -.string " YAY! BZBZBZZT!\0" -.align 2, 0 - -.global gUnknown_8231444 -gUnknown_8231444: @ 8231444 -.string " OUR BODIES SEPARATED.\n" -.string "BZBZBZZ. REJOICE! BZBZBZZT!\0" -.align 2, 0 - -.global gUnknown_8231478 -gUnknown_8231478: @ 8231478 -.byte 0xf6, 0x00, 0x41, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230338 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8231518 -gUnknown_8231518: @ 8231518 -.byte 0xf6, 0x00, 0x4e, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230338 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82315E8 -gUnknown_82315E8: @ 82315E8 -.byte 0xf6, 0x00, 0x5e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230338 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8231718 -gUnknown_8231718: @ 8231718 -.byte 0xf6, 0x00, 0x74, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230338 -setAnimation 2 -.byte 0x2d, 0x07, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0x91, 0x04, 0x01, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -.byte 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82318D8 -gUnknown_82318D8: @ 82318D8 -.byte 0xf6, 0x00, 0x93, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8230338 -setAnimation 2 -.byte 0x2d, 0x07, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe3, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82319F8 -gUnknown_82319F8: @ 82319F8 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x17, 0x13, 0x00, 0x02 -.4byte gUnknown_823047C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x1b, 0x13, 0x00, 0x02 -.4byte gUnknown_8230758 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x04, 0x00, 0x00, 0x17, 0x10, 0x00, 0x02 -.4byte gUnknown_82308A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x41, 0x04, 0x00, 0x00, 0x1b, 0x10, 0x00, 0x02 -.4byte gUnknown_8230948 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8231A58 -gUnknown_8231A58: @ 8231A58 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x17, 0x13, 0x00, 0x02 -.4byte gUnknown_8230AE4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x1b, 0x13, 0x00, 0x02 -.4byte gUnknown_8230D64 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x04, 0x00, 0x00, 0x15, 0x10, 0x00, 0x02 -.4byte gUnknown_8230E64 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x41, 0x04, 0x00, 0x00, 0x1d, 0x10, 0x00, 0x02 -.4byte gUnknown_8230EF4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8231AB8 -gUnknown_8231AB8: @ 8231AB8 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x17, 0x14, 0x00, 0x02 -.4byte gUnknown_8231020 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x1b, 0x14, 0x00, 0x02 -.4byte gUnknown_8231478 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x1a, 0x0f, 0x02, 0x02 -.4byte gUnknown_8231518 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0x00, 0x1d, 0x11, 0x00, 0x02 -.4byte gUnknown_82315E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00 -.byte 0x17, 0x0f, 0x02, 0x02 -.4byte gUnknown_8231718 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x15, 0x11, 0x00, 0x02 -.4byte gUnknown_82318D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8231B48 -gUnknown_8231B48: @ 8231B48 -.byte 0x00, 0x00, 0x01, 0x01, 0x19, 0x12, 0x00, 0x02 -.4byte gUnknown_82303FC - -.global gUnknown_8231B54 -gUnknown_8231B54: @ 8231B54 -.byte 0x00, 0x00, 0x01, 0x01, 0x19, 0x12, 0x00, 0x02 -.4byte gUnknown_8230A64 - -.global gUnknown_8231B60 -gUnknown_8231B60: @ 8231B60 -.byte 0x00, 0x00, 0x01, 0x01, 0x19, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8231B6C -gUnknown_8231B6C: @ 8231B6C -.4byte gUnknown_8230364 - -.global gUnknown_8231B70 -gUnknown_8231B70: @ 8231B70 -.4byte gUnknown_82303F0 - -.global gUnknown_8231B74 -gUnknown_8231B74: @ 8231B74 -.4byte gUnknown_8230A58 - -.global gUnknown_8231B78 -gUnknown_8231B78: @ 8231B78 -.4byte gUnknown_8231014 - -.global gUnknown_8231B7C -gUnknown_8231B7C: @ 8231B7C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8231B6C - -.global gUnknown_8231BA4 -gUnknown_8231BA4: @ 8231BA4 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_82319F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8231B48 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8231B70 - -.global gUnknown_8231BCC -gUnknown_8231BCC: @ 8231BCC -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8231A58 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8231B54 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8231B74 - -.global gUnknown_8231BF4 -gUnknown_8231BF4: @ 8231BF4 -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_8231AB8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8231B60 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8231B78 - -.global gUnknown_8231C1C -gUnknown_8231C1C: @ 8231C1C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8231B7C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8231BA4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8231BCC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8231BF4 - -.global gUnknown_8231C3C -gUnknown_8231C3C: @ 8231C3C -.byte 0x18, 0x0a, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x18, 0x0a, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x12, 0x21, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1f, 0x21, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01 - -.global gUnknown_8231C5C -gUnknown_8231C5C: @ 8231C5C -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8231C1C -.4byte gUnknown_8231C3C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8231C70 -gUnknown_8231C70: @ 8231C70 -.byte 0xf6, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8231CB0 -.byte 0x08, 0x00, 0x00, 0x00, 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8231CB0 -gUnknown_8231CB0: @ 8231CB0 -.string "../data/ground/ground_data_d02p02_station.c\0" -.align 2, 0 - -.global gUnknown_8231CDC -gUnknown_8231CDC: @ 8231CDC -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8231C70 - -.global gUnknown_8231CE8 -gUnknown_8231CE8: @ 8231CE8 -.byte 0xf6, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8231CB0 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x01, 0x00 -.byte 0x3c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8231D78 -gUnknown_8231D78: @ 8231D78 -.byte 0x90, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8231CE8 - -.global gUnknown_8231D84 -gUnknown_8231D84: @ 8231D84 -.byte 0xf6, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8231CB0 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x6b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8231ED8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8231EA4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x6b, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8231EA4 -gUnknown_8231EA4: @ 8231EA4 -.string " Oh{COMMA} there they are!\n" -.string "Let{APOSTROPHE}s get them out safely.\0" -.align 2, 0 - -.global gUnknown_8231ED8 -gUnknown_8231ED8: @ 8231ED8 -.string " Oh{COMMA} hey{COMMA} there they are.\n" -.string "Let{APOSTROPHE}s get them out.\0" -.align 2, 0 - -.global gUnknown_8231F0C -gUnknown_8231F0C: @ 8231F0C -.byte 0xf6, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8231CB0 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -closeThread - -.global gUnknown_8231F9C -gUnknown_8231F9C: @ 8231F9C -.byte 0xf6, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8231CB0 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8231FDC -gUnknown_8231FDC: @ 8231FDC -.byte 0xf6, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8231CB0 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_823201C -gUnknown_823201C: @ 823201C -.byte 0x00, 0x04, 0x00, 0x00, 0x14, 0x22, 0x02, 0x02 -.4byte gUnknown_8231D84 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x18, 0x22, 0x02, 0x02 -.4byte gUnknown_8231F0C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x07, 0x00, 0x00, 0x16, 0x11, 0x00, 0x02 -.4byte gUnknown_8231F9C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x01, 0x00, 0x00, 0x17, 0x11, 0x00, 0x02 -.4byte gUnknown_8231FDC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823207C -gUnknown_823207C: @ 823207C -.byte 0x00, 0x00, 0x01, 0x01, 0x16, 0x14, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8232088 -gUnknown_8232088: @ 8232088 -.4byte gUnknown_8231CDC - -.global gUnknown_823208C -gUnknown_823208C: @ 823208C -.4byte gUnknown_8231D78 - -.global gUnknown_8232090 -gUnknown_8232090: @ 8232090 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8232088 - -.global gUnknown_82320B8 -gUnknown_82320B8: @ 82320B8 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_823201C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823207C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823208C - -.global gUnknown_82320E0 -gUnknown_82320E0: @ 82320E0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8232090 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82320B8 - -.global gUnknown_82320F0 -gUnknown_82320F0: @ 82320F0 -.byte 0x14, 0x17, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x14, 0x13, 0x02, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x18, 0x17, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x18, 0x13, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00 - -.global gUnknown_8232110 -gUnknown_8232110: @ 8232110 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82320E0 -.4byte gUnknown_82320F0 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8232124 -gUnknown_8232124: @ 8232124 -.byte 0xf6, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8232164 -.byte 0x08, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8232164 -gUnknown_8232164: @ 8232164 -.string "../data/ground/ground_data_d03p01_station.c\0" -.align 2, 0 - -.global gUnknown_8232190 -gUnknown_8232190: @ 8232190 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8232124 - -.global gUnknown_823219C -gUnknown_823219C: @ 823219C -.byte 0xf6, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8232164 -.byte 0x08, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823221C -gUnknown_823221C: @ 823221C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823219C - -.global gUnknown_8232228 -gUnknown_8232228: @ 8232228 -.byte 0xf6, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8232164 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00 -.byte 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00 -.byte 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x9c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82326A4 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823267C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8232658 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8232630 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823261C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x0a, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82325E8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x93, 0x04, 0x0a, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82325C4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82325A8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x23, 0x00, 0x50, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82325A8 -gUnknown_82325A8: @ 82325A8 -.string " ......{WAIT_PRESS}\n" -.string "Uh... Let{APOSTROPHE}s go.\0" -.align 2, 0 - -.global gUnknown_82325C4 -gUnknown_82325C4: @ 82325C4 -.string " ......{WAIT_PRESS}\n" -.string "Well{COMMA} I guess we go...\0" -.align 2, 0 - -.global gUnknown_82325E8 -gUnknown_82325E8: @ 82325E8 -.string " The peak is {ARG_VALUE_0}F!\n" -.string "Thank you for helping! Farewell!\0" -.align 2, 0 - -.global gUnknown_823261C -gUnknown_823261C: @ 823261C -.string " That{APOSTROPHE}s right!\0" -.align 2, 0 - -.global gUnknown_8232630 -gUnknown_8232630: @ 8232630 -.string " So{COMMA} {ARG_NICKNAME_3} was\n" -.string "whisked to its peak...\0" -.align 2, 0 - -.global gUnknown_8232658 -gUnknown_8232658: @ 8232658 -.string " Here we are...\n" -.string "{COLOR_1 YELLOW_4}Mt. Steel{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_823267C -gUnknown_823267C: @ 823267C -.string " {ARG_NICKNAME_3}{APOSTROPHE}s been taken\n" -.string "to the peak here...\0" -.align 2, 0 - -.global gUnknown_82326A4 -gUnknown_82326A4: @ 82326A4 -.string " So{COMMA} this is it...\n" -.string "{COLOR_1 YELLOW_4}Mt. Steel{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_82326CC -gUnknown_82326CC: @ 82326CC -.byte 0xf6, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8232164 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x59, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x9c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_823282C -gUnknown_823282C: @ 823282C -.byte 0xf6, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8232164 -.byte 0x57, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xc6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823290C -gUnknown_823290C: @ 823290C -.byte 0xf6, 0x00, 0x8a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8232164 -.byte 0x08, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823297C -gUnknown_823297C: @ 823297C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823290C - -.global gUnknown_8232988 -gUnknown_8232988: @ 8232988 -.byte 0xf6, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8232164 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00 -.byte 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00 -.byte 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x9c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x93, 0x04, 0x0a, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8232E00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8232DD0 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8232D9C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8232D70 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8232D58 -closeTextBox -.byte 0x0c, 0x01, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe8, 0x00, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x2d, 0x0a, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82325E8 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8232D38 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82325A8 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xdb, 0x00, 0x2d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xb3, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8232D38 -gUnknown_8232D38: @ 8232D38 -.string " ......{WAIT_PRESS}\n" -.string "Well{COMMA} here we go...\0" -.align 2, 0 - -.global gUnknown_8232D58 -gUnknown_8232D58: @ 8232D58 -.string " That{APOSTROPHE}s the spirit!\0" -.align 2, 0 - -.global gUnknown_8232D70 -gUnknown_8232D70: @ 8232D70 -.string " Whatever it takes{COMMA}\n" -.string "let{APOSTROPHE}s rescue {ARG_NICKNAME_3}!\0" -.align 2, 0 - -.global gUnknown_8232D9C -gUnknown_8232D9C: @ 8232D9C -.string " We have to make another\n" -.string "attempt at {COLOR_1 YELLOW_4}Mt. Steel{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_8232DD0 -gUnknown_8232DD0: @ 8232DD0 -.string " We{APOSTROPHE}ll rescue {ARG_NICKNAME_3}\n" -.string "no matter what it takes!\0" -.align 2, 0 - -.global gUnknown_8232E00 -gUnknown_8232E00: @ 8232E00 -.string " We{APOSTROPHE}ll take another shot at\n" -.string "{COLOR_1 YELLOW_4}Mt. Steel{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_8232E30 -gUnknown_8232E30: @ 8232E30 -.byte 0xf6, 0x00, 0xd7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8232164 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x9c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xb3, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8232FC0 -gUnknown_8232FC0: @ 8232FC0 -.byte 0xf6, 0x00, 0xf3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8232164 -.byte 0x57, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82330A0 -gUnknown_82330A0: @ 82330A0 -.byte 0x00, 0x02, 0x00, 0x00, 0x14, 0x18, 0x02, 0x02 -.4byte gUnknown_8232228 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00 -.byte 0x18, 0x18, 0x02, 0x02 -.4byte gUnknown_82326CC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82330D0 -gUnknown_82330D0: @ 82330D0 -.byte 0x42, 0x00, 0x00, 0x00, 0x16, 0x15, 0x02, 0x02 -.4byte gUnknown_823282C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82330E8 -gUnknown_82330E8: @ 82330E8 -.byte 0x00, 0x02, 0x00, 0x00, 0x14, 0x18, 0x02, 0x02 -.4byte gUnknown_8232988 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00, 0x18, 0x18, 0x02, 0x02 -.4byte gUnknown_8232E30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8233118 -gUnknown_8233118: @ 8233118 -.byte 0x42, 0x00, 0x00, 0x00 -.byte 0x16, 0x15, 0x02, 0x02 -.4byte gUnknown_8232FC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8233130 -gUnknown_8233130: @ 8233130 -.byte 0x00, 0x00, 0x01, 0x01, 0x16, 0x17, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823313C -gUnknown_823313C: @ 823313C -.byte 0x00, 0x00, 0x01, 0x01, 0x16, 0x17, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8233148 -gUnknown_8233148: @ 8233148 -.4byte gUnknown_8232190 - -.global gUnknown_823314C -gUnknown_823314C: @ 823314C -.4byte gUnknown_823221C - -.global gUnknown_8233150 -gUnknown_8233150: @ 8233150 -.4byte gUnknown_823297C - -.global gUnknown_8233154 -gUnknown_8233154: @ 8233154 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8233148 - -.global gUnknown_823317C -gUnknown_823317C: @ 823317C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82330A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8233130 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823314C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82330D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82331CC -gUnknown_82331CC: @ 82331CC -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82330E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823313C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8233150 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8233118 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823321C -gUnknown_823321C: @ 823321C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8233154 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_823317C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82331CC - -.global gUnknown_8233234 -gUnknown_8233234: @ 8233234 -.byte 0x16, 0x10, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01 -.byte 0x16, 0x10, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01 - -.global gUnknown_8233244 -gUnknown_8233244: @ 8233244 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_823321C -.4byte gUnknown_8233234 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8233258 -gUnknown_8233258: @ 8233258 -.byte 0xf6, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233298 -.byte 0x08, 0x00, 0x00, 0x00, 0xb7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8233298 -gUnknown_8233298: @ 8233298 -.string "../data/ground/ground_data_d03p02_station.c\0" -.align 2, 0 - -.global gUnknown_82332C4 -gUnknown_82332C4: @ 82332C4 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233258 - -.global gUnknown_82332D0 -gUnknown_82332D0: @ 82332D0 -.byte 0xf6, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233298 -.byte 0x08, 0x00, 0x00, 0x00, 0xb7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8233350 -gUnknown_8233350: @ 8233350 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82332D0 - -.global gUnknown_823335C -gUnknown_823335C: @ 823335C -.byte 0xf6, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233298 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x1c, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82333EC -gUnknown_82333EC: @ 82333EC -.byte 0xf6, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233298 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233BB8 -closeTextBox -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x5a -setFlag 0x04 -setFlag 0x06 -pause 0x05 -.byte 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xe8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233B9C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233B78 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233B58 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233B30 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233B04 -closeTextBox -pause 0x0a -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233AD0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233A98 -closeTextBox -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233A8C -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233A54 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233A18 -closeTextBox -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82339E0 -closeTextBox -.byte 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82339D4 -setFlag 0x06 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82339A8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233980 -closeTextBox -.byte 0x2e, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233938 -closeTextBox -pause 0x0a -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233918 -.byte 0x2e, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x04, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82338CC -closeTextBox -setFlag 0x08 -.byte 0x23, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -closeThread - -.global gUnknown_82338CC -gUnknown_82338CC: @ 82338CC -.string " DON{APOSTROPHE}T BE SCARED.\n" -.string "WE WON{APOSTROPHE}T MAKE THE MISTAKE OF\n" -.string "ZAPPING YOU. BZBZBZZT!\0" -.align 2, 0 - -.global gUnknown_8233918 -gUnknown_8233918: @ 8233918 -.string " HOLD ON TO US TIGHT.\n" -.string "BZBZBZZZ!\0" -.align 2, 0 - -.global gUnknown_8233938 -gUnknown_8233938: @ 8233938 -.string " WE GOT WORD OF THIS.{WAIT_PRESS}\n" -.string "WE CAN RESCUE DIGLETT FROM THE\n" -.string "SKY. BZBZBZZ!\0" -.align 2, 0 - -.global gUnknown_8233980 -gUnknown_8233980: @ 8233980 -.string " Oh{COMMA} hi!\n" -.string "You{APOSTROPHE}re the {ARG_NICKNAME_4} we saved!\0" -.align 2, 0 - -.global gUnknown_82339A8 -gUnknown_82339A8: @ 82339A8 -.string " Hey! It{APOSTROPHE}s those {ARG_NICKNAME_4}\n" -.string "from that rescue!\0" -.align 2, 0 - -.global gUnknown_82339D4 -gUnknown_82339D4: @ 82339D4 -.string " BZBZBZZ!\0" -.align 2, 0 - -.global gUnknown_82339E0 -gUnknown_82339E0: @ 82339E0 -.string " {ARG_NICKNAME_0}{COMMA} what{APOSTROPHE}ll\n" -.string "we do?\n" -.string "We can{APOSTROPHE}t get across this.\0" -.align 2, 0 - -.global gUnknown_8233A18 -gUnknown_8233A18: @ 8233A18 -.string " Sheesh! Look at this cliff...\n" -.string "I can{APOSTROPHE}t see the bottom.\0" -.align 2, 0 - -.global gUnknown_8233A54 -gUnknown_8233A54: @ 8233A54 -.string " Wow. This is some cliff...\n" -.string "I can{APOSTROPHE}t see the bottom.\0" -.align 2, 0 - -.global gUnknown_8233A8C -gUnknown_8233A8C: @ 8233A8C -.string " ...Whoa.\0" -.align 2, 0 - -.global gUnknown_8233A98 -gUnknown_8233A98: @ 8233A98 -.string " OK{COMMA} no problem.{WAIT_PRESS}\n" -.string "We{APOSTROPHE}ll come to you. Just wait.\0" -.align 2, 0 - -.global gUnknown_8233AD0 -gUnknown_8233AD0: @ 8233AD0 -.string " OK{COMMA} no sweat.{WAIT_PRESS}\n" -.string "We{APOSTROPHE}ll go to you. Just wait.\0" -.align 2, 0 - -.global gUnknown_8233B04 -gUnknown_8233B04: @ 8233B04 -.string " I can{APOSTROPHE}t...\n" -.string "I{APOSTROPHE}m too scared to move...\0" -.align 2, 0 - -.global gUnknown_8233B30 -gUnknown_8233B30: @ 8233B30 -.string " It{APOSTROPHE}s OK now.\n" -.string "Come down over here.\0" -.align 2, 0 - -.global gUnknown_8233B58 -gUnknown_8233B58: @ 8233B58 -.string " Hey there!\n" -.string "We chased {ARG_NICKNAME_3} off!\0" -.align 2, 0 - -.global gUnknown_8233B78 -gUnknown_8233B78: @ 8233B78 -.string " You{APOSTROPHE}re safe now.\n" -.string "Come on down!\0" -.align 2, 0 - -.global gUnknown_8233B9C -gUnknown_8233B9C: @ 8233B9C -.string " Hey!\n" -.string "We sent {ARG_NICKNAME_3} packing!\0" -.align 2, 0 - -.global gUnknown_8233BB8 -gUnknown_8233BB8: @ 8233BB8 -.string " Grr... I can{APOSTROPHE}t keep up!{WAIT_PRESS}\n" -.string "I{APOSTROPHE}ll flee for now!\0" -.align 2, 0 - -.global gUnknown_8233BEC -gUnknown_8233BEC: @ 8233BEC -.byte 0xf6, 0x00, 0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233298 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xe8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -setAnimation 40 -.byte 0x4c, 0x00, 0x00, 0x00, 0xcf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8233D8C -gUnknown_8233D8C: @ 8233D8C -.byte 0xf6, 0x00, 0xa6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233298 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 9 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8233E3C -gUnknown_8233E3C: @ 8233E3C -.byte 0xf6, 0x00, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233298 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xcb, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x03, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8233EEC -gUnknown_8233EEC: @ 8233EEC -.byte 0xf6, 0x00, 0xc2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233298 -.byte 0x5b, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xe3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6a, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_823405C -gUnknown_823405C: @ 823405C -.byte 0xf6, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8233298 -.byte 0x5b, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x60, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_823418C -gUnknown_823418C: @ 823418C -.byte 0x00, 0x04, 0x00, 0x00, 0x1a, 0x29, 0x02, 0x02 -.4byte gUnknown_82333EC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x1e, 0x29, 0x02, 0x02 -.4byte gUnknown_8233BEC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x1c, 0x1a, 0x02, 0x02 -.4byte gUnknown_8233D8C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x1c, 0x25, 0x02, 0x02 -.4byte gUnknown_8233E3C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82341EC -gUnknown_82341EC: @ 82341EC -.byte 0x3d, 0x00, 0x00, 0x00, 0x1b, 0x11, 0x02, 0x02 -.4byte gUnknown_8233EEC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x1e, 0x11, 0x02, 0x02 -.4byte gUnknown_823405C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823421C -gUnknown_823421C: @ 823421C -.byte 0x00, 0x00, 0x01, 0x01, 0x1c, 0x27, 0x02, 0x02 -.4byte gUnknown_823335C - -.global gUnknown_8234228 -gUnknown_8234228: @ 8234228 -.4byte gUnknown_82332C4 - -.global gUnknown_823422C -gUnknown_823422C: @ 823422C -.4byte gUnknown_8233350 - -.global gUnknown_8234230 -gUnknown_8234230: @ 8234230 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8234228 - -.global gUnknown_8234258 -gUnknown_8234258: @ 8234258 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_823418C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823421C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823422C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82341EC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82342A8 -gUnknown_82342A8: @ 82342A8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8234230 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8234258 - -.global gUnknown_82342B8 -gUnknown_82342B8: @ 82342B8 -.byte 0x1d, 0x24, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x1e, 0x20, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1b, 0x20, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1f, 0x1c, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1a, 0x1c, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01 - -.global gUnknown_82342E0 -gUnknown_82342E0: @ 82342E0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82342A8 -.4byte gUnknown_82342B8 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_82342F4 -gUnknown_82342F4: @ 82342F4 -.byte 0xf6, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234334 -.byte 0x08, 0x00, 0x00, 0x00, 0xb8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8234334 -gUnknown_8234334: @ 8234334 -.string "../data/ground/ground_data_d04p01_station.c\0" -.align 2, 0 - -.global gUnknown_8234360 -gUnknown_8234360: @ 8234360 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82342F4 - -.global gUnknown_823436C -gUnknown_823436C: @ 823436C -.byte 0xf6, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234334 -.byte 0x08, 0x00, 0x00, 0x00, 0xb8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x1e, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82343EC -gUnknown_82343EC: @ 82343EC -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823436C - -.global gUnknown_82343F8 -gUnknown_82343F8: @ 82343F8 -.byte 0xf6, 0x00, 0x22, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234334 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x93, 0x04, 0x0a, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x2e, 0x03, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82346E8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82346B8 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82346A0 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823466C -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234644 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234630 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82345F8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82345CC -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82345B8 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82345B8 -gUnknown_82345B8: @ 82345B8 -.string " We need to hurry.\0" -.align 2, 0 - -.global gUnknown_82345CC -gUnknown_82345CC: @ 82345CC -.string " {ARG_NICKNAME_3}{APOSTROPHE}s gang should\n" -.string "be in there already.\0" -.align 2, 0 - -.global gUnknown_82345F8 -gUnknown_82345F8: @ 82345F8 -.string " This must be it.\n" -.string "{ARG_NICKNAME_2} is lost somewhere in these\n" -.string "woods.\0" -.align 2, 0 - -.global gUnknown_8234630 -gUnknown_8234630: @ 8234630 -.string " We ought to hurry.\0" -.align 2, 0 - -.global gUnknown_8234644 -gUnknown_8234644: @ 8234644 -.string " {ARG_NICKNAME_3}{APOSTROPHE}s gang should\n" -.string "already be here.\0" -.align 2, 0 - -.global gUnknown_823466C -gUnknown_823466C: @ 823466C -.string " This is it.\n" -.string "{ARG_NICKNAME_2} is lost somewhere in these\n" -.string "woods.\0" -.align 2, 0 - -.global gUnknown_82346A0 -gUnknown_82346A0: @ 82346A0 -.string " We{APOSTROPHE}d better hurry.\0" -.align 2, 0 - -.global gUnknown_82346B8 -gUnknown_82346B8: @ 82346B8 -.string " {ARG_NICKNAME_3}{APOSTROPHE}s crew\n" -.string "should have a head start on us.\0" -.align 2, 0 - -.global gUnknown_82346E8 -gUnknown_82346E8: @ 82346E8 -.string " This is it.\n" -.string "{ARG_NICKNAME_2} is lost in these woods.\0" -.align 2, 0 - -.global gUnknown_8234714 -gUnknown_8234714: @ 8234714 -.byte 0xf6, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234334 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82347A4 -gUnknown_82347A4: @ 82347A4 -.byte 0xf6, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234334 -.byte 0x08, 0x00, 0x00, 0x00, 0xb8, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x1e, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8234824 -gUnknown_8234824: @ 8234824 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82347A4 - -.global gUnknown_8234830 -gUnknown_8234830: @ 8234830 -.byte 0xf6, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234334 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234ACC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234A94 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234A7C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234A64 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234A28 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234A14 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82349FC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82349C4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82349B0 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82349B0 -gUnknown_82349B0: @ 82349B0 -.string " Come on{COMMA} hurry!\0" -.align 2, 0 - -.global gUnknown_82349C4 -gUnknown_82349C4: @ 82349C4 -.string " We{APOSTROPHE}re still stuck back here\n" -.string "while {ARG_NICKNAME_2}{APOSTROPHE}s gang is...\0" -.align 2, 0 - -.global gUnknown_82349FC -gUnknown_82349FC: @ 82349FC -.string " Let{APOSTROPHE}s hustle{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8234A14 -gUnknown_8234A14: @ 8234A14 -.string " We have to hurry!\0" -.align 2, 0 - -.global gUnknown_8234A28 -gUnknown_8234A28: @ 8234A28 -.string " While we{APOSTROPHE}re stuck\n" -.string "back here{COMMA} {ARG_NICKNAME_2}{APOSTROPHE}s gang will be...\0" -.align 2, 0 - -.global gUnknown_8234A64 -gUnknown_8234A64: @ 8234A64 -.string " Let{APOSTROPHE}s hurry{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8234A7C -gUnknown_8234A7C: @ 8234A7C -.string " Hurry! Chop{COMMA} chop!\0" -.align 2, 0 - -.global gUnknown_8234A94 -gUnknown_8234A94: @ 8234A94 -.string " Even while we{APOSTROPHE}re dawdling\n" -.string "here{COMMA} {ARG_NICKNAME_2}{APOSTROPHE}s team...\0" -.align 2, 0 - -.global gUnknown_8234ACC -gUnknown_8234ACC: @ 8234ACC -.string " Let{APOSTROPHE}s move it{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8234AE8 -gUnknown_8234AE8: @ 8234AE8 -.byte 0xf6, 0x00, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234334 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x01 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8234B58 -gUnknown_8234B58: @ 8234B58 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x1a, 0x18, 0x00, 0x02 -.4byte gUnknown_82343F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x1e, 0x18, 0x00, 0x02 -.4byte gUnknown_8234714 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8234B88 -gUnknown_8234B88: @ 8234B88 -.byte 0x00, 0x02, 0x00, 0x00, 0x1a, 0x18, 0x00, 0x02 -.4byte gUnknown_8234830 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00, 0x1e, 0x18, 0x00, 0x02 -.4byte gUnknown_8234AE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8234BB8 -gUnknown_8234BB8: @ 8234BB8 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x1c, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8234BC4 -gUnknown_8234BC4: @ 8234BC4 -.byte 0x00, 0x00, 0x01, 0x01, 0x1c, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8234BD0 -gUnknown_8234BD0: @ 8234BD0 -.4byte gUnknown_8234360 - -.global gUnknown_8234BD4 -gUnknown_8234BD4: @ 8234BD4 -.4byte gUnknown_82343EC - -.global gUnknown_8234BD8 -gUnknown_8234BD8: @ 8234BD8 -.4byte gUnknown_8234824 - -.global gUnknown_8234BDC -gUnknown_8234BDC: @ 8234BDC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8234BD0 - -.global gUnknown_8234C04 -gUnknown_8234C04: @ 8234C04 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8234B58 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8234BB8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8234BD4 - -.global gUnknown_8234C2C -gUnknown_8234C2C: @ 8234C2C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8234B88 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8234BC4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8234BD8 - -.global gUnknown_8234C54 -gUnknown_8234C54: @ 8234C54 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8234BDC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8234C04 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8234C2C - -.global gUnknown_8234C6C -gUnknown_8234C6C: @ 8234C6C -.byte 0x1a, 0x09, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1e, 0x09, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01 - -.global gUnknown_8234C7C -gUnknown_8234C7C: @ 8234C7C -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8234C54 -.4byte gUnknown_8234C6C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8234C90 -gUnknown_8234C90: @ 8234C90 -.byte 0xf6, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234CD0 -.byte 0x08, 0x00, 0x00, 0x00, 0xb9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8234CD0 -gUnknown_8234CD0: @ 8234CD0 -.string "../data/ground/ground_data_d04p02_station.c\0" -.align 2, 0 - -.global gUnknown_8234CFC -gUnknown_8234CFC: @ 8234CFC -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234C90 - -.global gUnknown_8234D08 -gUnknown_8234D08: @ 8234D08 -.byte 0xf6, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234CD0 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0xb9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8234D88 -gUnknown_8234D88: @ 8234D88 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234D08 - -.global gUnknown_8234D94 -gUnknown_8234D94: @ 8234D94 -.byte 0xf6, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234CD0 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x03, 0x00, 0x43, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82352DC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x10 -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0x91, 0x0a, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82352A8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8235274 -closeTextBox -.byte 0xdb, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8235260 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x10 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x02, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x04, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfd, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823523C -closeTextBox -.byte 0xdb, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8235228 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82351F0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x10 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82351E8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82351A0 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8235194 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8235194 -gUnknown_8235194: @ 8235194 -.string " Thank you!\0" -.align 2, 0 - -.global gUnknown_82351A0 -gUnknown_82351A0: @ 82351A0 -.string " I was scared{COMMA} so I kept my\n" -.string "shell hardened...and waited and waited.\0" -.align 2, 0 - -.global gUnknown_82351E8 -gUnknown_82351E8: @ 82351E8 -.string " Yay!\0" -.align 2, 0 - -.global gUnknown_82351F0 -gUnknown_82351F0: @ 82351F0 -.string " Let{APOSTROPHE}s get you home.\n" -.string "Caterpie was worried about you.\0" -.align 2, 0 - -.global gUnknown_8235228 -gUnknown_8235228: @ 8235228 -.string " You must be {ARG_NICKNAME_2}.\0" -.align 2, 0 - -.global gUnknown_823523C -gUnknown_823523C: @ 823523C -.string " Did you maybe come looking\n" -.string "for me?\0" -.align 2, 0 - -.global gUnknown_8235260 -gUnknown_8235260: @ 8235260 -.string " Um{COMMA} excuse me...\0" -.align 2, 0 - -.global gUnknown_8235274 -gUnknown_8235274: @ 8235274 -.string " No one should hold us back\n" -.string "now. Let{APOSTROPHE}s find {ARG_NICKNAME_2}.\0" -.align 2, 0 - -.global gUnknown_82352A8 -gUnknown_82352A8: @ 82352A8 -.string " Well{COMMA} those pests are gone.\n" -.string "Let{APOSTROPHE}s find {ARG_NICKNAME_2}.\0" -.align 2, 0 - -.global gUnknown_82352DC -gUnknown_82352DC: @ 82352DC -.string " Owowowow...{WAIT_PRESS}\n" -.string "You{APOSTROPHE}ll pay for this!\n" -.string "Don{APOSTROPHE}t you forget it!\0" -.align 2, 0 - -.global gUnknown_823531C -gUnknown_823531C: @ 823531C -.byte 0xf6, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234CD0 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0a, CCW, west -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x01, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -closeThread - -.global gUnknown_82353EC -gUnknown_82353EC: @ 82353EC -.byte 0xf6, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234CD0 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x10 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_823550C -gUnknown_823550C: @ 823550C -.byte 0xf6, 0x00, 0x91, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234CD0 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe2, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -closeThread - -.global gUnknown_82355EC -gUnknown_82355EC: @ 82355EC -.byte 0xf6, 0x00, 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234CD0 -setAnimation 2 -.byte 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_823565C -gUnknown_823565C: @ 823565C -.byte 0xf6, 0x00, 0xac, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234CD0 -setAnimation 2 -.byte 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82356CC -gUnknown_82356CC: @ 82356CC -.byte 0xf6, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234CD0 -setAnimation 2 -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0a, shortestDir, west -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_823576C -gUnknown_823576C: @ 823576C -.byte 0xf6, 0x00, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234CD0 -setAnimation 2 -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, west -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_823580C -gUnknown_823580C: @ 823580C -.byte 0xf6, 0x00, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234CD0 -setAnimation 2 -closeThread - -.global gUnknown_823583C -gUnknown_823583C: @ 823583C -.byte 0xf6, 0x00, 0xd6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8234CD0 -setAnimation 2 -closeThread - -.global gUnknown_823586C -gUnknown_823586C: @ 823586C -.byte 0x00, 0x04, 0x00, 0x00, 0x20, 0x20, 0x00, 0x02 -.4byte gUnknown_8234D94 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x25, 0x20, 0x00, 0x02 -.4byte gUnknown_823531C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x5e, 0x00, 0x00, 0x00, 0x22, 0x0f, 0x02, 0x02 -.4byte gUnknown_82353EC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x22, 0x18, 0x02, 0x02 -.4byte gUnknown_823550C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x27, 0x1c, 0x00, 0x02 -.4byte gUnknown_82355EC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x1e, 0x1c, 0x00, 0x02 -.4byte gUnknown_823565C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0a, 0x04, 0x00, 0x00, 0x21, 0x25, 0x00, 0x02 -.4byte gUnknown_82356CC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0x04, 0x00, 0x00, 0x24, 0x25, 0x00, 0x02 -.4byte gUnknown_823576C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x04, 0x00, 0x00, 0x1e, 0x25, 0x00, 0x02 -.4byte gUnknown_823580C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x27, 0x25, 0x00, 0x02 -.4byte gUnknown_823583C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823595C -gUnknown_823595C: @ 823595C -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8235968 -gUnknown_8235968: @ 8235968 -.4byte gUnknown_8234CFC - -.global gUnknown_823596C -gUnknown_823596C: @ 823596C -.4byte gUnknown_8234D88 - -.global gUnknown_8235970 -gUnknown_8235970: @ 8235970 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8235968 - -.global gUnknown_8235998 -gUnknown_8235998: @ 8235998 -.byte 0x0a, 0x00, 0x00, 0x00 -.4byte gUnknown_823586C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823595C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823596C - -.global gUnknown_82359C0 -gUnknown_82359C0: @ 82359C0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8235970 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8235998 - -.global gUnknown_82359D0 -gUnknown_82359D0: @ 82359D0 -.byte 0x22, 0x1e, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x0d, 0x18, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x0d, 0x1c, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x0e, 0x1c, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01 - -.global gUnknown_82359F0 -gUnknown_82359F0: @ 82359F0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82359C0 -.4byte gUnknown_82359D0 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8235A04 -gUnknown_8235A04: @ 8235A04 -.byte 0xf6, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8235A44 -.byte 0x08, 0x00, 0x00, 0x00, 0xba, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8235A44 -gUnknown_8235A44: @ 8235A44 -.string "../data/ground/ground_data_d05p01_station.c\0" -.align 2, 0 - -.global gUnknown_8235A70 -gUnknown_8235A70: @ 8235A70 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8235A04 - -.global gUnknown_8235A7C -gUnknown_8235A7C: @ 8235A7C -.byte 0xf6, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8235A44 -.byte 0x08, 0x00, 0x00, 0x00, 0xba, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x23, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8235B0C -gUnknown_8235B0C: @ 8235B0C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8235A7C - -.global gUnknown_8235B18 -gUnknown_8235B18: @ 8235B18 -.byte 0xf6, 0x00, 0x24, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8235A44 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8235BA8 -gUnknown_8235BA8: @ 8235BA8 -.byte 0xf6, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8235A44 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00 -.byte 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x78, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82373F0 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82373D4 -closeTextBox -.byte 0xe4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, north -.byte 0x2e, 0x02, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823739C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823736C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x0d, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823733C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8237328 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8237314 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82372FC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82372E8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x10, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xd0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82372DC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, northeast -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xcf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82372C8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82372B4 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x0d, 0x02, 0x00 -.byte 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8237288 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823724C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8237214 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8237200 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82371D8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82371A4 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8237178 -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8237154 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823713C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8237108 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82370D8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82370A0 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823706C -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8237048 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823700C -closeTextBox -.byte 0xd8, 0x00, 0xff, 0xff -.byte 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236FD8 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236FA8 -.byte 0xd9, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236F84 -.byte 0xd9, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236F68 -.byte 0xf4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 45 -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236F4C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236F1C -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236F00 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236EC0 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00 -.byte 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236EB0 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236EA4 -.byte 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236E74 -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236E40 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x2d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236E30 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236E24 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236DF0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236DB4 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236D7C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236D40 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236D18 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236CF4 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, northeast -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236CEC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236CDC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236E40 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236CCC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236E40 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, northwest -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236E30 -closeTextBox -.byte 0xdb, 0x00, 0x2d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x91, 0x04, 0x01, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236CA4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236C60 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236C3C -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236BFC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236BC4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236B84 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236B5C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236B28 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2d, 0x0a, 0x00, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236AE8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236AD4 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236AC4 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, northwest -.byte 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82372FC -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8236AA8 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x5f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8236AA8 -gUnknown_8236AA8: @ 8236AA8 -.string " Let{APOSTROPHE}s get going{COMMA}\n" -.string "{ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8236AC4 -gUnknown_8236AC4: @ 8236AC4 -.string " OK! Gotcha!\0" -.align 2, 0 - -.global gUnknown_8236AD4 -gUnknown_8236AD4: @ 8236AD4 -.string " You bet we will!\0" -.align 2, 0 - -.global gUnknown_8236AE8 -gUnknown_8236AE8: @ 8236AE8 -.string " My friend Jumpluff should\n" -.string "be around B{ARG_VALUE_0}F.{WAIT_PRESS}\n" -.string "Please take care!\0" -.align 2, 0 - -.global gUnknown_8236B28 -gUnknown_8236B28: @ 8236B28 -.string " Let{APOSTROPHE}s just hope that monster\n" -.string "doesn{APOSTROPHE}t exist.\0" -.align 2, 0 - -.global gUnknown_8236B5C -gUnknown_8236B5C: @ 8236B5C -.string " OK...{WAIT_PRESS}\n" -.string "Well{COMMA} it can{APOSTROPHE}t be helped.\0" -.align 2, 0 - -.global gUnknown_8236B84 -gUnknown_8236B84: @ 8236B84 -.string " We{APOSTROPHE}ll just have to hope the\n" -.string "monster doesn{APOSTROPHE}t really exist.\0" -.align 2, 0 - -.global gUnknown_8236BC4 -gUnknown_8236BC4: @ 8236BC4 -.string " All right...{WAIT_PRESS}\n" -.string "There{APOSTROPHE}s nothing we can do about that.\0" -.align 2, 0 - -.global gUnknown_8236BFC -gUnknown_8236BFC: @ 8236BFC -.string " It is an old folktale.\n" -.string "I wouldn{APOSTROPHE}t know if it existed or not.\0" -.align 2, 0 - -.global gUnknown_8236C3C -gUnknown_8236C3C: @ 8236C3C -.string " I don{APOSTROPHE}t know very much\n" -.string "at all...\0" -.align 2, 0 - -.global gUnknown_8236C60 -gUnknown_8236C60: @ 8236C60 -.string " So{COMMA} anyway{COMMA} you said there\n" -.string "may be a monster.\n" -.string "What is it like?\0" -.align 2, 0 - -.global gUnknown_8236CA4 -gUnknown_8236CA4: @ 8236CA4 -.string " So{COMMA} this monster.\n" -.string "What is it like?\0" -.align 2, 0 - -.global gUnknown_8236CCC -gUnknown_8236CCC: @ 8236CCC -.string " Uh{COMMA} yes...\0" -.align 2, 0 - -.global gUnknown_8236CDC -gUnknown_8236CDC: @ 8236CDC -.string " Uh{COMMA} yeah...\0" -.align 2, 0 - -.global gUnknown_8236CEC -gUnknown_8236CEC: @ 8236CEC -.string " Huh?\0" -.align 2, 0 - -.global gUnknown_8236CF4 -gUnknown_8236CF4: @ 8236CF4 -.string " Don{APOSTROPHE}t you have a\n" -.string "stomachache?\0" -.align 2, 0 - -.global gUnknown_8236D18 -gUnknown_8236D18: @ 8236D18 -.string " Wh-why this sudden\n" -.string "outburst{COMMA} {ARG_NICKNAME_1}?\0" -.align 2, 0 - -.global gUnknown_8236D40 -gUnknown_8236D40: @ 8236D40 -.string " If you{APOSTROPHE}re my partner{COMMA} you\n" -.string "need to read my cues better!\0" -.align 2, 0 - -.global gUnknown_8236D7C -gUnknown_8236D7C: @ 8236D7C -.string " What{APOSTROPHE}s the matter{COMMA}\n" -.string "{ARG_NICKNAME_0}?!\n" -.string "I need you to back me!\0" -.align 2, 0 - -.global gUnknown_8236DB4 -gUnknown_8236DB4: @ 8236DB4 -.string " You{APOSTROPHE}re my partner!\n" -.string "You have to catch my drift better!\0" -.align 2, 0 - -.global gUnknown_8236DF0 -gUnknown_8236DF0: @ 8236DF0 -.string " What{APOSTROPHE}s wrong with you{COMMA}\n" -.string "{ARG_NICKNAME_0}?!\n" -.string "Back me up here!\0" -.align 2, 0 - -.global gUnknown_8236E24 -gUnknown_8236E24: @ 8236E24 -.string " Huh...?\0" -.align 2, 0 - -.global gUnknown_8236E30 -gUnknown_8236E30: @ 8236E30 -.string " Hahahahaha...\0" -.align 2, 0 - -.global gUnknown_8236E40 -gUnknown_8236E40: @ 8236E40 -.string " Owowow...{WAIT_PRESS}\n" -.string "I guess the cramping settled down...\0" -.align 2, 0 - -.global gUnknown_8236E74 -gUnknown_8236E74: @ 8236E74 -.string " Hasn{APOSTROPHE}t had anything to\n" -.string "eat yet this morning.\0" -.align 2, 0 - -.global gUnknown_8236EA4 -gUnknown_8236EA4: @ 8236EA4 -.string " But {ARG_NICKNAME_0}...\0" -.align 2, 0 - -.global gUnknown_8236EB0 -gUnknown_8236EB0: @ 8236EB0 -.string " Is that so?\0" -.align 2, 0 - -.global gUnknown_8236EC0 -gUnknown_8236EC0: @ 8236EC0 -.string " I{APOSTROPHE}m sorry{COMMA} but we won{APOSTROPHE}t\n" -.string "be able to handle this rescue...\0" -.align 2, 0 - -.global gUnknown_8236F00 -gUnknown_8236F00: @ 8236F00 -.string " See...\n" -.string "{ARG_NICKNAME_0} is hurting too.\0" -.align 2, 0 - -.global gUnknown_8236F1C -gUnknown_8236F1C: @ 8236F1C -.string " Sorry{COMMA} but we can{APOSTROPHE}t handle\n" -.string "this rescue...\0" -.align 2, 0 - -.global gUnknown_8236F4C -gUnknown_8236F4C: @ 8236F4C -.string " See...\n" -.string "{ARG_NICKNAME_0} is in pain too.\0" -.align 2, 0 - -.global gUnknown_8236F68 -gUnknown_8236F68: @ 8236F68 -.string "Huh? I{APOSTROPHE}m perfectly fine.\0" -.align 2, 0 - -.global gUnknown_8236F84 -gUnknown_8236F84: @ 8236F84 -.string "It{APOSTROPHE}s true! It{APOSTROPHE}s tearing me up!\0" -.align 2, 0 - -.global gUnknown_8236FA8 -gUnknown_8236FA8: @ 8236FA8 -.string " {ARG_NICKNAME_0}{COMMA} your stomach\n" -.string "hurts too{COMMA} doesn{APOSTROPHE}t it?\0" -.align 2, 0 - -.global gUnknown_8236FD8 -gUnknown_8236FD8: @ 8236FD8 -.string " {ARG_NICKNAME_0}{COMMA} you have\n" -.string "a stomachache too{COMMA} don{APOSTROPHE}t you?\0" -.align 2, 0 - -.global gUnknown_823700C -gUnknown_823700C: @ 823700C -.string " Say{COMMA} {ARG_NICKNAME_0}{COMMA} you{APOSTROPHE}re\n" -.string "feeling sick too{COMMA} aren{APOSTROPHE}t you?\0" -.align 2, 0 - -.global gUnknown_8237048 -gUnknown_8237048: @ 8237048 -.string " Hey{COMMA} {ARG_NICKNAME_0}{COMMA} you too{COMMA}\n" -.string "right?\0" -.align 2, 0 - -.global gUnknown_823706C -gUnknown_823706C: @ 823706C -.string " I think my breakfast was\n" -.string "spoiled or something...\0" -.align 2, 0 - -.global gUnknown_82370A0 -gUnknown_82370A0: @ 82370A0 -.string " It{APOSTROPHE}s my stomach!\n" -.string "It suddenly cramped up! Owowow...\0" -.align 2, 0 - -.global gUnknown_82370D8 -gUnknown_82370D8: @ 82370D8 -.string " I think it{APOSTROPHE}s something I ate\n" -.string "this morning...\0" -.align 2, 0 - -.global gUnknown_8237108 -gUnknown_8237108: @ 8237108 -.string " My stomach suddenly started\n" -.string "cramping up! Owowow...\0" -.align 2, 0 - -.global gUnknown_823713C -gUnknown_823713C: @ 823713C -.string " Oh!{WAIT_PRESS}\n" -.string "What{APOSTROPHE}s wrong?!\0" -.align 2, 0 - -.global gUnknown_8237154 -gUnknown_8237154: @ 8237154 -.string " Owowow!\n" -.string "My stomach! It hurts...\0" -.align 2, 0 - -.global gUnknown_8237178 -gUnknown_8237178: @ 8237178 -.string " I just thought I should\n" -.string "let you know...\0" -.align 2, 0 - -.global gUnknown_82371A4 -gUnknown_82371A4: @ 82371A4 -.string " It{APOSTROPHE}s also true that\n" -.string "Shiftry hasn{APOSTROPHE}t returned...\0" -.align 2, 0 - -.global gUnknown_82371D8 -gUnknown_82371D8: @ 82371D8 -.string " Yes{COMMA} but!{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s only folklore!\0" -.align 2, 0 - -.global gUnknown_8237200 -gUnknown_8237200: @ 8237200 -.string " M...{WAIT_PRESS}" -.string "monster?!\0" -.align 2, 0 - -.global gUnknown_8237214 -gUnknown_8237214: @ 8237214 -.string " It{APOSTROPHE}s rumored that an amazing\n" -.string "monster sleeps here.\0" -.align 2, 0 - -.global gUnknown_823724C -gUnknown_823724C: @ 823724C -.string " This canyon is known as\n" -.string "the {COLOR_1 YELLOW_4}Silent Chasm{END_COLOR_TEXT_1}{COMMA} but...\0" -.align 2, 0 - -.global gUnknown_8237288 -gUnknown_8237288: @ 8237288 -.string " There{APOSTROPHE}s something I forgot\n" -.string "to mention...\0" -.align 2, 0 - -.global gUnknown_82372B4 -gUnknown_82372B4: @ 82372B4 -.string " Yes? What is it?\0" -.align 2, 0 - -.global gUnknown_82372C8 -gUnknown_82372C8: @ 82372C8 -.string " Hah? What{APOSTROPHE}s up?\0" -.align 2, 0 - -.global gUnknown_82372DC -gUnknown_82372DC: @ 82372DC -.string " ...Wait!\0" -.align 2, 0 - -.global gUnknown_82372E8 -gUnknown_82372E8: @ 82372E8 -.string " Let{APOSTROPHE}s go{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_82372FC -gUnknown_82372FC: @ 82372FC -.string " Let{APOSTROPHE}s roll{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8237314 -gUnknown_8237314: @ 8237314 -.string " It{APOSTROPHE}ll be fine.\0" -.align 2, 0 - -.global gUnknown_8237328 -gUnknown_8237328: @ 8237328 -.string " Hey{COMMA} no problem.\0" -.align 2, 0 - -.global gUnknown_823733C -gUnknown_823733C: @ 823733C -.string " Yes...\n" -.string "I{APOSTROPHE}m sorry to ask{COMMA} but please help.\0" -.align 2, 0 - -.global gUnknown_823736C -gUnknown_823736C: @ 823736C -.string " Your friend {ARG_NICKNAME_2}\n" -.string "is lost deep in this canyon?\0" -.align 2, 0 - -.global gUnknown_823739C -gUnknown_823739C: @ 823739C -.string " So your friend {ARG_NICKNAME_2}\n" -.string "is somewhere deep in this canyon?\0" -.align 2, 0 - -.global gUnknown_82373D4 -gUnknown_82373D4: @ 82373D4 -.string " Wow! This cliff is steep!\0" -.align 2, 0 - -.global gUnknown_82373F0 -gUnknown_82373F0: @ 82373F0 -.string " Whew{COMMA} this is some cliff.\0" -.align 2, 0 - -.global gUnknown_8237410 -gUnknown_8237410: @ 8237410 -.byte 0xf6, 0x00, 0x37, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8235A44 -setAnimation 2 -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CW, northwest -.byte 0xdb, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CCW, southwest -.byte 0xdb, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CW, northwest -.byte 0xdb, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x08 -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x0a, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, northeast -.byte 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 8 -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x91, 0x04, 0x0b, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, northeast -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x04, 0x0b, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x01, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0xe8, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, northeast -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8237920 -gUnknown_8237920: @ 8237920 -.byte 0xf6, 0x00, 0x8b, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8235A44 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x04, 0x00, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8237A90 -gUnknown_8237A90: @ 8237A90 -.byte 0x00, 0x05, 0x00, 0x00, 0x1c, 0x13, 0x02, 0x02 -.4byte gUnknown_8235BA8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x07, 0x00, 0x00, 0x17, 0x10, 0x00, 0x02 -.4byte gUnknown_8237410 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4e, 0x07, 0x00, 0x00, 0x20, 0x0d, 0x02, 0x02 -.4byte gUnknown_8237920 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8237AD8 -gUnknown_8237AD8: @ 8237AD8 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x12, 0x10, 0x02, 0x02 -.4byte gUnknown_8235B18 - -.global gUnknown_8237AE4 -gUnknown_8237AE4: @ 8237AE4 -.4byte gUnknown_8235A70 - -.global gUnknown_8237AE8 -gUnknown_8237AE8: @ 8237AE8 -.4byte gUnknown_8235B0C - -.global gUnknown_8237AEC -gUnknown_8237AEC: @ 8237AEC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8237AE4 - -.global gUnknown_8237B14 -gUnknown_8237B14: @ 8237B14 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8237A90 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8237AD8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8237AE8 - -.global gUnknown_8237B3C -gUnknown_8237B3C: @ 8237B3C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8237AEC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8237B14 - -.global gUnknown_8237B4C -gUnknown_8237B4C: @ 8237B4C -.byte 0x1d, 0x0a, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x1c, 0x09, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00 -.byte 0x1c, 0x10, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01 - -.global gUnknown_8237B64 -gUnknown_8237B64: @ 8237B64 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8237B3C -.4byte gUnknown_8237B4C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8237B78 -gUnknown_8237B78: @ 8237B78 -.byte 0xf6, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8237BB8 -.byte 0x08, 0x00, 0x00, 0x00, 0xbb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8237BB8 -gUnknown_8237BB8: @ 8237BB8 -.string "../data/ground/ground_data_d05p02_station.c\0" -.align 2, 0 - -.global gUnknown_8237BE4 -gUnknown_8237BE4: @ 8237BE4 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8237B78 - -.global gUnknown_8237BF0 -gUnknown_8237BF0: @ 8237BF0 -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8237BB8 -.byte 0x08, 0x00, 0x00, 0x00, 0xbb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8237C90 -gUnknown_8237C90: @ 8237C90 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8237BF0 - -.global gUnknown_8237C9C -gUnknown_8237C9C: @ 8237C9C -.byte 0xf6, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8237BB8 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x44, 0xcc, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8237D1C -gUnknown_8237D1C: @ 8237D1C -.byte 0xf6, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8237BB8 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -setFlag 0x0c -.byte 0x89, 0x50, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x20 -.byte 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8238970 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823892C -closeTextBox -setFlag 0x07 -pause 0x3c -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8238920 -closeTextBox -setFlag 0x06 -setFlag 0x0c -.byte 0x89, 0x20, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northeast -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82388F8 -closeTextBox -pause 0x0a -.byte 0x2e, 0x0e, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82388D8 -closeTextBox -pause 0x0a -.byte 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82388B0 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8238898 -closeTextBox -pause 0x0a -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823888C -closeTextBox -rotate 0x04, CCW, north -pause 0x05 -setFlag 0x06 -setFlag 0x0c -pause 0x28 -rotate 0x02, CW, east -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823887C -closeTextBox -setFlag 0x06 -setFlag 0x07 -setFlag 0x0c -setFlag 0x04 -.byte 0x89, 0x3c, 0xcc, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northeast -pause 0x1e -.byte 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8238850 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8238828 -closeTextBox -pause 0x1e -.byte 0x2e, 0x0e, 0x03, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8238808 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82387F0 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82387D8 -closeTextBox -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xf6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x28, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x77, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x77, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x28, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x77, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x77, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x28, 0x01, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82387A0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8238768 -closeTextBox -.byte 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xda, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823875C -pause 0x5a -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823874C -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00, 0xf6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x27, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x77, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x27, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x77, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x00, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x77, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x28, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8238738 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8238718 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00, 0xf6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x28, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x77, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x77, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x28, 0x00, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x77, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82386E0 -closeTextBox -.byte 0x27, 0x00, 0x05, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x20 -.byte 0x4c, 0x00, 0x00, 0x00, 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x10, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x20 -.byte 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82386D4 -pause 0x5a -closeTextBox -setFlag 0x08 -.byte 0x27, 0x00, 0x05, 0x00, 0x10, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x40 -setFlag 0x06 -setFlag 0x0c -pause 0x08 -.byte 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82386C0 -closeTextBox -rotate 0x04, CCW, north -setFlag 0x06 -setFlag 0x0c -pause 0x0f -.byte 0x44, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8238698 -.byte 0x2e, 0x0e, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823865C -closeTextBox -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8238654 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823862C -closeTextBox -pause 0x1e -setFlag 0x03 -closeThread - -.global gUnknown_823862C -gUnknown_823862C: @ 823862C -.string " So that{APOSTROPHE}s the legendary\n" -.string "monster...\0" -.align 2, 0 - -.global gUnknown_8238654 -gUnknown_8238654: @ 8238654 -.string " {ARG_NICKNAME_6}...\0" -.align 2, 0 - -.global gUnknown_823865C -gUnknown_823865C: @ 823865C -.string " If you wish to save\n" -.string "{ARG_NICKNAME_3}{COMMA} then scale {COLOR_1 YELLOW_4}Mt. Thunder{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_8238698 -gUnknown_8238698: @ 8238698 -.string " I am {ARG_NICKNAME_6}!\n" -.string "The embodiment of lightning!\0" -.align 2, 0 - -.global gUnknown_82386C0 -gUnknown_82386C0: @ 82386C0 -.string " Shi-{ARG_NICKNAME_3}{APOSTROPHE}s gone!\0" -.align 2, 0 - -.global gUnknown_82386D4 -gUnknown_82386D4: @ 82386D4 -.string "Gyaooooh!\0" -.align 2, 0 - -.global gUnknown_82386E0 -gUnknown_82386E0: @ 82386E0 -.string " I have no mercy for meddlers!\n" -.string "And that includes you!\0" -.align 2, 0 - -.global gUnknown_8238718 -gUnknown_8238718: @ 8238718 -.string " He dared to disturb my sleep!\0" -.align 2, 0 - -.global gUnknown_8238738 -gUnknown_8238738: @ 8238738 -.string " Move aside{COMMA} you!\0" -.align 2, 0 - -.global gUnknown_823874C -gUnknown_823874C: @ 823874C -.string " It{APOSTROPHE}s coming!\0" -.align 2, 0 - -.global gUnknown_823875C -gUnknown_823875C: @ 823875C -.string "Gyaoooooh!\0" -.align 2, 0 - -.global gUnknown_8238768 -gUnknown_8238768: @ 8238768 -.string " Wh-what{APOSTROPHE}s going on?!\n" -.string "Why did it turn pitch-black?\0" -.align 2, 0 - -.global gUnknown_82387A0 -gUnknown_82387A0: @ 82387A0 -.string " Wh-what happened?!\n" -.string "It{APOSTROPHE}s pitch-black! I can{APOSTROPHE}t see!\0" -.align 2, 0 - -.global gUnknown_82387D8 -gUnknown_82387D8: @ 82387D8 -.string " Get...{WAIT_PRESS}\n" -.string "Get away?!\0" -.align 2, 0 - -.global gUnknown_82387F0 -gUnknown_82387F0: @ 82387F0 -.string " Get away from here!\0" -.align 2, 0 - -.global gUnknown_8238808 -gUnknown_8238808: @ 8238808 -.string " ...Urrrgh.\n" -.string "Forget about me...\0" -.align 2, 0 - -.global gUnknown_8238828 -gUnknown_8238828: @ 8238828 -.string " Listen! Are you OK?\n" -.string "Snap out of it!\0" -.align 2, 0 - -.global gUnknown_8238850 -gUnknown_8238850: @ 8238850 -.string " Hey! Are you all right?\n" -.string "Get it together!\0" -.align 2, 0 - -.global gUnknown_823887C -gUnknown_823887C: @ 823887C -.string " Let{APOSTROPHE}s go!\0" -.align 2, 0 - -.global gUnknown_823888C -gUnknown_823888C: @ 823888C -.string " Huh? {ARG_NICKNAME_3}?\0" -.align 2, 0 - -.global gUnknown_8238898 -gUnknown_8238898: @ 8238898 -.string " {ARG_NICKNAME_3} is in the\n" -.string "back...\0" -.align 2, 0 - -.global gUnknown_82388B0 -gUnknown_82388B0: @ 82388B0 -.string " Great!\n" -.string "Your friend is waiting for you.\0" -.align 2, 0 - -.global gUnknown_82388D8 -gUnknown_82388D8: @ 82388D8 -.string " Yes...\n" -.string "I{APOSTROPHE}m fine{COMMA} but...\0" -.align 2, 0 - -.global gUnknown_82388F8 -gUnknown_82388F8: @ 82388F8 -.string " We came for you!\n" -.string "Are you all right?\0" -.align 2, 0 - -.global gUnknown_8238920 -gUnknown_8238920: @ 8238920 -.string " Oh{COMMA} hey!\0" -.align 2, 0 - -.global gUnknown_823892C -gUnknown_823892C: @ 823892C -.string " Isn{APOSTROPHE}t this the place?\n" -.string "Where {ARG_NICKNAME_2}{APOSTROPHE}s friend is supposed\n" -.string "to be?\0" -.align 2, 0 - -.global gUnknown_8238970 -gUnknown_8238970: @ 8238970 -.string " {ARG_NICKNAME_2}{APOSTROPHE}s friend is\n" -.string "supposed to be around here{COMMA} right?\0" -.align 2, 0 - -.global gUnknown_82389A8 -gUnknown_82389A8: @ 82389A8 -.byte 0xf6, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8237BB8 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x50, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x20, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x3c, 0xcc, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd2, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x01, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8238B68 -gUnknown_8238B68: @ 8238B68 -.byte 0xf6, 0x00, 0xec, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8237BB8 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x58, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x20, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x3c, 0xcc, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8238CB8 -gUnknown_8238CB8: @ 8238CB8 -.byte 0xf6, 0x00, 0x04, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8237BB8 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x58, 0x00, 0x01 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x20, 0x00, 0x01 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x3c, 0xcc, 0x01 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8238E18 -gUnknown_8238E18: @ 8238E18 -.byte 0xf6, 0x00, 0x1d, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8237BB8 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x60, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 9 -.byte 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x54, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x46, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8238EE8 -gUnknown_8238EE8: @ 8238EE8 -.byte 0xf6, 0x00, 0x2d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8237BB8 -.byte 0x54, 0x00, 0x16, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8238F38 -gUnknown_8238F38: @ 8238F38 -.byte 0xf6, 0x00, 0x35, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8237BB8 -setAnimation 2 -.byte 0x2d, 0x07, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x01 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x10 -.byte 0x36, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8239008 -.byte 0x4c, 0x00, 0x00, 0x00, 0xcb, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x04 -.byte 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8239008 -gUnknown_8239008: @ 8239008 -.string "Gyaoooooooh!\0" -.align 2, 0 - -.global gUnknown_8239018 -gUnknown_8239018: @ 8239018 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x14, 0x29, 0x02, 0x02 -.4byte gUnknown_8237D1C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x18, 0x29, 0x02, 0x02 -.4byte gUnknown_82389A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x04, 0x00, 0x00, 0x13, 0x2f, 0x00, 0x02 -.4byte gUnknown_8238B68 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0b, 0x04, 0x00, 0x00, 0x19, 0x2f, 0x02, 0x02 -.4byte gUnknown_8238CB8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x00, 0x00, 0x00 -.byte 0x16, 0x0d, 0x02, 0x02 -.4byte gUnknown_8238E18 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x02, 0x00, 0x00, 0x16, 0x0b, 0x02, 0x02 -.4byte gUnknown_8238EE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82390A8 -gUnknown_82390A8: @ 82390A8 -.byte 0x60, 0x00, 0x00, 0x00, 0x16, 0x09, 0x02, 0x02 -.4byte gUnknown_8238F38 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82390C0 -gUnknown_82390C0: @ 82390C0 -.byte 0x00, 0x00, 0x01, 0x01, 0x16, 0x1d, 0x02, 0x02 -.4byte gUnknown_8237C9C - -.global gUnknown_82390CC -gUnknown_82390CC: @ 82390CC -.4byte gUnknown_8237BE4 - -.global gUnknown_82390D0 -gUnknown_82390D0: @ 82390D0 -.4byte gUnknown_8237C90 - -.global gUnknown_82390D4 -gUnknown_82390D4: @ 82390D4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82390CC - -.global gUnknown_82390FC -gUnknown_82390FC: @ 82390FC -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_8239018 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82390C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82390D0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82390A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823914C -gUnknown_823914C: @ 823914C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82390D4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82390FC - -.global gUnknown_823915C -gUnknown_823915C: @ 823915C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8239164 -gUnknown_8239164: @ 8239164 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_823914C -.4byte gUnknown_823915C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8239178 -gUnknown_8239178: @ 8239178 -.byte 0xf6, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82391B8 -.byte 0x08, 0x00, 0x00, 0x00, 0xbc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82391B8 -gUnknown_82391B8: @ 82391B8 -.string "../data/ground/ground_data_d06p01_station.c\0" -.align 2, 0 - -.global gUnknown_82391E4 -gUnknown_82391E4: @ 82391E4 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8239178 - -.global gUnknown_82391F0 -gUnknown_82391F0: @ 82391F0 -.byte 0xf6, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82391B8 -.byte 0x08, 0x00, 0x00, 0x00, 0xbc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8239280 -gUnknown_8239280: @ 8239280 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82391F0 - -.global gUnknown_823928C -gUnknown_823928C: @ 823928C -.byte 0xf6, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82391B8 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82392CC -gUnknown_82392CC: @ 82392CC -.byte 0xf6, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82391B8 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x02, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x04, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -setFlag 0x06 -.byte 0x6b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82397F4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82397C0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8239798 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8239764 -closeTextBox -pause 0x1e -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8239738 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8239714 -setFlag 0x06 -.byte 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82396F8 -closeTextBox -pause 0x1e -setFlag 0x06 -rotate 0x04, CW, east -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82396D4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82396B4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8239690 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823966C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8239648 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8239628 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823960C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82395DC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82395BC -closeTextBox -.byte 0x23, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -pause 0x0f -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -closeThread - -.global gUnknown_82395BC -gUnknown_82395BC: @ 82395BC -.string " {ARG_NICKNAME_0}{COMMA} let{APOSTROPHE}s try\n" -.string "our best!\0" -.align 2, 0 - -.global gUnknown_82395DC -gUnknown_82395DC: @ 82395DC -.string " Our objective is simple.\n" -.string "We{APOSTROPHE}re rescuing {ARG_NICKNAME_4}.\0" -.align 2, 0 - -.global gUnknown_823960C -gUnknown_823960C: @ 823960C -.string " I can{APOSTROPHE}t be scared now.\0" -.align 2, 0 - -.global gUnknown_8239628 -gUnknown_8239628: @ 8239628 -.string " {ARG_NICKNAME_0}{COMMA} let{APOSTROPHE}s do our\n" -.string "best!\0" -.align 2, 0 - -.global gUnknown_8239648 -gUnknown_8239648: @ 8239648 -.string " Our objective is to rescue\n" -.string "{ARG_NICKNAME_4}.\0" -.align 2, 0 - -.global gUnknown_823966C -gUnknown_823966C: @ 823966C -.string " I shouldn{APOSTROPHE}t get all scared\n" -.string "now!\0" -.align 2, 0 - -.global gUnknown_8239690 -gUnknown_8239690: @ 8239690 -.string " {ARG_NICKNAME_0}{COMMA} let{APOSTROPHE}s give it\n" -.string "our best!\0" -.align 2, 0 - -.global gUnknown_82396B4 -gUnknown_82396B4: @ 82396B4 -.string " Our mission is to rescue\n" -.string "{ARG_NICKNAME_4}.\0" -.align 2, 0 - -.global gUnknown_82396D4 -gUnknown_82396D4: @ 82396D4 -.string " But I can{APOSTROPHE}t be spooked\n" -.string "by this.\0" -.align 2, 0 - -.global gUnknown_82396F8 -gUnknown_82396F8: @ 82396F8 -.string " Brr... I{APOSTROPHE}m shaking...\0" -.align 2, 0 - -.global gUnknown_8239714 -gUnknown_8239714: @ 8239714 -.string " {ARG_NICKNAME_2}...{WAIT_PRESS}\n" -.string "It sounds very tough...\0" -.align 2, 0 - -.global gUnknown_8239738 -gUnknown_8239738: @ 8239738 -.string " {ARG_NICKNAME_2}{COMMA} huh...{WAIT_PRESS}\n" -.string "It sounds really tough.\0" -.align 2, 0 - -.global gUnknown_8239764 -gUnknown_8239764: @ 8239764 -.string " I wonder...\n" -.string "Is {ARG_NICKNAME_3}{APOSTROPHE}s team already on\n" -.string "their way?\0" -.align 2, 0 - -.global gUnknown_8239798 -gUnknown_8239798: @ 8239798 -.string " This is the foot of\n" -.string "{COLOR_1 YELLOW_4}Mt. Thunder{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_82397C0 -gUnknown_82397C0: @ 82397C0 -.string " I wonder if {ARG_NICKNAME_3}{APOSTROPHE}s\n" -.string "team is already on the way...\0" -.align 2, 0 - -.global gUnknown_82397F4 -gUnknown_82397F4: @ 82397F4 -.string " This must be the foot of\n" -.string "{COLOR_1 YELLOW_4}Mt. Thunder{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_8239824 -gUnknown_8239824: @ 8239824 -.byte 0xf6, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82391B8 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x08 -.byte 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 9 -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, west -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8239954 -gUnknown_8239954: @ 8239954 -.byte 0xf6, 0x00, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82391B8 -.byte 0x08, 0x00, 0x00, 0x00, 0xbc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82399E4 -gUnknown_82399E4: @ 82399E4 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8239954 - -.global gUnknown_82399F0 -gUnknown_82399F0: @ 82399F0 -.byte 0xf6, 0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82391B8 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8239A30 -gUnknown_8239A30: @ 8239A30 -.byte 0xf6, 0x00, 0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82391B8 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x6b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8239C18 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8239BFC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8239BCC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8239BB0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8239BB0 -gUnknown_8239BB0: @ 8239BB0 -.string " Let{APOSTROPHE}s work hard at it!\0" -.align 2, 0 - -.global gUnknown_8239BCC -gUnknown_8239BCC: @ 8239BCC -.string " {ARG_NICKNAME_0}!\n" -.string "We{APOSTROPHE}ll rescue {ARG_NICKNAME_2} this time for\n" -.string "sure!\0" -.align 2, 0 - -.global gUnknown_8239BFC -gUnknown_8239BFC: @ 8239BFC -.string " Let{APOSTROPHE}s give it our best!\0" -.align 2, 0 - -.global gUnknown_8239C18 -gUnknown_8239C18: @ 8239C18 -.string " {ARG_NICKNAME_0}!\n" -.string "This time{COMMA} we{APOSTROPHE}re gonna rescue\n" -.string "{ARG_NICKNAME_2}!\0" -.align 2, 0 - -.global gUnknown_8239C48 -gUnknown_8239C48: @ 8239C48 -.byte 0xf6, 0x00, 0xa5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82391B8 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x08 -.byte 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8239D08 -gUnknown_8239D08: @ 8239D08 -.byte 0x00, 0x02, 0x00, 0x00, 0x17, 0x20, 0x02, 0x02 -.4byte gUnknown_82392CC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00, 0x1b, 0x1f, 0x02, 0x02 -.4byte gUnknown_8239824 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8239D38 -gUnknown_8239D38: @ 8239D38 -.byte 0x00, 0x02, 0x00, 0x00 -.byte 0x17, 0x20, 0x02, 0x02 -.4byte gUnknown_8239A30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x1b, 0x1f, 0x02, 0x02 -.4byte gUnknown_8239C48 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8239D68 -gUnknown_8239D68: @ 8239D68 -.byte 0x00, 0x00, 0x01, 0x01, 0x19, 0x10, 0x02, 0x02 -.4byte gUnknown_823928C - -.global gUnknown_8239D74 -gUnknown_8239D74: @ 8239D74 -.byte 0x00, 0x00, 0x01, 0x01, 0x19, 0x10, 0x02, 0x02 -.4byte gUnknown_82399F0 - -.global gUnknown_8239D80 -gUnknown_8239D80: @ 8239D80 -.4byte gUnknown_82391E4 - -.global gUnknown_8239D84 -gUnknown_8239D84: @ 8239D84 -.4byte gUnknown_8239280 - -.global gUnknown_8239D88 -gUnknown_8239D88: @ 8239D88 -.4byte gUnknown_82399E4 - -.global gUnknown_8239D8C -gUnknown_8239D8C: @ 8239D8C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8239D80 - -.global gUnknown_8239DB4 -gUnknown_8239DB4: @ 8239DB4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8239D08 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8239D68 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8239D84 - -.global gUnknown_8239DDC -gUnknown_8239DDC: @ 8239DDC -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8239D38 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8239D74 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8239D88 - -.global gUnknown_8239E04 -gUnknown_8239E04: @ 8239E04 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8239D8C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8239DB4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8239DDC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8239E24 -gUnknown_8239E24: @ 8239E24 -.byte 0x17, 0x12, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x1b, 0x12, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x19, 0x0b, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00 - -.global gUnknown_8239E3C -gUnknown_8239E3C: @ 8239E3C -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8239E04 -.4byte gUnknown_8239E24 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8239E50 -gUnknown_8239E50: @ 8239E50 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A040 -.byte 0x08, 0x00, 0x00, 0x00, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcd, 0x03, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823A040 -gUnknown_823A040: @ 823A040 -.string "../data/ground/ground_data_d06p02_station.c\0" -.align 2, 0 - -.global gUnknown_823A06C -gUnknown_823A06C: @ 823A06C -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8239E50 - -.global gUnknown_823A078 -gUnknown_823A078: @ 823A078 -.byte 0xf6, 0x00, 0x2e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A040 -.byte 0xd3, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A148 -.byte 0xd9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A140 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A138 -.byte 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x48, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x1e, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_823A138 -gUnknown_823A138: @ 823A138 -.string "*No.\0" -.align 2, 0 - -.global gUnknown_823A140 -gUnknown_823A140: @ 823A140 -.string "Yes.\0" -.align 2, 0 - -.global gUnknown_823A148 -gUnknown_823A148: @ 823A148 -.string "Would you like to go on?\0" -.align 2, 0 - -.global gUnknown_823A164 -gUnknown_823A164: @ 823A164 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A078 - -.global gUnknown_823A170 -gUnknown_823A170: @ 823A170 -.byte 0xf6, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A040 -.byte 0xd3, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A250 -.byte 0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A140 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A138 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x48, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x0a, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x04, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_823A250 -gUnknown_823A250: @ 823A250 -.string "Return to the rescue team base?\0" -.align 2, 0 - -.global gUnknown_823A270 -gUnknown_823A270: @ 823A270 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A170 - -.global gUnknown_823A27C -gUnknown_823A27C: @ 823A27C -.byte 0xf6, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A040 -.byte 0xe9, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823A29C -gUnknown_823A29C: @ 823A29C -.byte 0xf6, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A040 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823A2DC -gUnknown_823A2DC: @ 823A2DC -.byte 0xf6, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A040 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823A31C -gUnknown_823A31C: @ 823A31C -.byte 0xf6, 0x00, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A040 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823A35C -gUnknown_823A35C: @ 823A35C -.byte 0xf6, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A040 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823A39C -gUnknown_823A39C: @ 823A39C -.byte 0xf6, 0x00, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A040 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823A3CC -gUnknown_823A3CC: @ 823A3CC -.byte 0xf6, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A040 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823A3FC -gUnknown_823A3FC: @ 823A3FC -.byte 0xf6, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A040 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0d, 0x00, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823A4CC -gUnknown_823A4CC: @ 823A4CC -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A3FC - -.global gUnknown_823A4D8 -gUnknown_823A4D8: @ 823A4D8 -.byte 0xf6, 0x00, 0x91, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A040 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x24, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A6FC -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A6C8 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A684 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A648 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823A648 -gUnknown_823A648: @ 823A648 -.string " But we shouldn{APOSTROPHE}t be far.{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s keep doing our best!\0" -.align 2, 0 - -.global gUnknown_823A684 -gUnknown_823A684: @ 823A684 -.string " But we should be getting\n" -.string "close.{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s keep going hard at it!\0" -.align 2, 0 - -.global gUnknown_823A6C8 -gUnknown_823A6C8: @ 823A6C8 -.string " Hmm...{WAIT_PRESS}\n" -.string "Things didn{APOSTROPHE}t turn out in our favor...\0" -.align 2, 0 - -.global gUnknown_823A6FC -gUnknown_823A6FC: @ 823A6FC -.string " Hmm...{WAIT_PRESS}\n" -.string "Things didn{APOSTROPHE}t go right for us...\0" -.align 2, 0 - -.global gUnknown_823A72C -gUnknown_823A72C: @ 823A72C -.byte 0xf6, 0x00, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A040 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823A7DC -gUnknown_823A7DC: @ 823A7DC -.byte 0x91, 0x00, 0x00, 0x00, 0x1c, 0x1c, 0x02 -warpDungeon 0x00 -.byte 0x00 - -.global gUnknown_823A7F4 -gUnknown_823A7F4: @ 823A7F4 -.byte 0x00, 0x04, 0x00, 0x00, 0x1c, 0x26, 0x02, 0x02 -.4byte gUnknown_823A29C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1c, 0x29, 0x02, 0x02 -.4byte gUnknown_823A2DC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823A824 -gUnknown_823A824: @ 823A824 -.byte 0x00, 0x04, 0x00, 0x00, 0x1c, 0x26, 0x02, 0x02 -.4byte gUnknown_823A31C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x04, 0x00, 0x00, 0x1c, 0x29, 0x02, 0x02 -.4byte gUnknown_823A35C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823A854 -gUnknown_823A854: @ 823A854 -.byte 0x00, 0x04, 0x00, 0x00, 0x1c, 0x26, 0x02, 0x02 -.4byte gUnknown_823A39C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1c, 0x29, 0x02, 0x02 -.4byte gUnknown_823A3CC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823A884 -gUnknown_823A884: @ 823A884 -.byte 0x00, 0x02, 0x00, 0x00, 0x1f, 0x26, 0x00, 0x02 -.4byte gUnknown_823A4D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x07, 0x06, 0x00, 0x00, 0x1a, 0x26, 0x00, 0x02 -.4byte gUnknown_823A72C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823A8B4 -gUnknown_823A8B4: @ 823A8B4 -.byte 0x04, 0x00, 0x04, 0x03, 0x1c, 0x1c, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823A27C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823A8CC -gUnknown_823A8CC: @ 823A8CC -.byte 0x00, 0x00, 0x01, 0x01, 0x1c, 0x25, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823A8D8 -gUnknown_823A8D8: @ 823A8D8 -.byte 0x0f, 0x03, 0x00, 0x00 -.byte 0x15, 0x0c, 0x00, 0x00 -.4byte gUnknown_823A164 -.byte 0x0f, 0x03, 0x00, 0x00, 0x15, 0x2a, 0x00, 0x00 -.4byte gUnknown_823A270 - -.global gUnknown_823A8F0 -gUnknown_823A8F0: @ 823A8F0 -.4byte gUnknown_823A06C - -.global gUnknown_823A8F4 -gUnknown_823A8F4: @ 823A8F4 -.4byte gUnknown_823A4CC - -.global gUnknown_823A8F8 -gUnknown_823A8F8: @ 823A8F8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823A7DC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823A8B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_823A8D8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823A8F0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_823A7F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_823A824 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_823A854 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823A9C0 -gUnknown_823A9C0: @ 823A9C0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_823A884 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823A8CC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823A8F4 - -.global gUnknown_823A9E8 -gUnknown_823A9E8: @ 823A9E8 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_823A8F8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823A9C0 - -.global gUnknown_823A9F8 -gUnknown_823A9F8: @ 823A9F8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823AA00 -gUnknown_823AA00: @ 823AA00 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_823A9E8 -.4byte gUnknown_823A9F8 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_823AA14 -gUnknown_823AA14: @ 823AA14 -.byte 0xf6, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823AA54 -.byte 0x08, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823AA54 -gUnknown_823AA54: @ 823AA54 -.string "../data/ground/ground_data_d06p03_station.c\0" -.align 2, 0 - -.global gUnknown_823AA80 -gUnknown_823AA80: @ 823AA80 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823AA14 - -.global gUnknown_823AA8C -gUnknown_823AA8C: @ 823AA8C -.byte 0xf6, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823AA54 -.byte 0x08, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823AB1C -gUnknown_823AB1C: @ 823AB1C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823AA8C - -.global gUnknown_823AB28 -gUnknown_823AB28: @ 823AB28 -.byte 0xf6, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823AA54 -.byte 0x99, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x48, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x50, 0x00, 0x01 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x40, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x20, 0x00, 0x01, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823AC18 -gUnknown_823AC18: @ 823AC18 -.byte 0xf6, 0x00, 0x3a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823AA54 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x06, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x2e, 0x0f, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C664 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C64C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C638 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xdf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C614 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C5EC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C5C8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C5A4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C570 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C530 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C500 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xe1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C4E8 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x10 -.byte 0x2e, 0x0c, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C4D8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C4AC -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C490 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C470 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C458 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C44C -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C420 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x20 -.byte 0x91, 0x04, 0x02, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x20 -.byte 0x2e, 0x02, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C418 -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C3F4 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C3C0 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C3A0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C374 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C360 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x06, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C358 -.byte 0x2e, 0x0c, 0x04, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C34C -.byte 0x2e, 0x02, 0x05, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C318 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C2E4 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C2B0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C278 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C248 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C218 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C1DC -closeTextBox -.byte 0xdb, 0x00, 0x2d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xcf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C198 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C178 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C148 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C114 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C0F4 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C0BC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C418 -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C098 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C074 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C03C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x03, 0x01, 0x00 -.byte 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823C028 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823BFFC -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823BFB4 -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823BF84 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823BF40 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x03, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823BF20 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, northeast -.byte 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823BED8 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823BE9C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823BE60 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823BE2C -setFlag 0x06 -.byte 0xe4, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823BE00 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823BDD8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0b -.byte 0xdb, 0x00, 0x2d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823BDD0 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823BDD0 -setFlag 0x0d -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xd0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823BDA0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823BD74 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0d -.byte 0xe4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x48, 0x00, 0x78, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0xb8, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x2e, 0x0e, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823BD58 -.byte 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823BD1C -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823BCEC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x0f, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823BCA0 -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823BC88 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823BC88 -gUnknown_823BC88: @ 823BC88 -.string " ...For their sake...\0" -.align 2, 0 - -.global gUnknown_823BCA0 -gUnknown_823BCA0: @ 823BCA0 -.string " There is something that\n" -.string "concerns me.{WAIT_PRESS}\n" -.string "But it should go unspoken for now.\0" -.align 2, 0 - -.global gUnknown_823BCEC -gUnknown_823BCEC: @ 823BCEC -.string " ......{WAIT_PRESS}\n" -.string "You know something{COMMA} don{APOSTROPHE}t you?\0" -.align 2, 0 - -.global gUnknown_823BD1C -gUnknown_823BD1C: @ 823BD1C -.string " I don{APOSTROPHE}t think you{APOSTROPHE}re \n" -.string "completely ignorant about this.\0" -.align 2, 0 - -.global gUnknown_823BD58 -gUnknown_823BD58: @ 823BD58 -.string " Alakazam.{WAIT_PRESS}\n" -.string "I know you.\0" -.align 2, 0 - -.global gUnknown_823BD74 -gUnknown_823BD74: @ 823BD74 -.string " Don{APOSTROPHE}t just stand there.\n" -.string "Let{APOSTROPHE}s go home.\0" -.align 2, 0 - -.global gUnknown_823BDA0 -gUnknown_823BDA0: @ 823BDA0 -.string " Don{APOSTROPHE}t just stand around.\n" -.string "Let{APOSTROPHE}s go back.\0" -.align 2, 0 - -.global gUnknown_823BDD0 -gUnknown_823BDD0: @ 823BDD0 -.string " {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_823BDD8 -gUnknown_823BDD8: @ 823BDD8 -.string " Uh... Yeah...{WAIT_PRESS}\n" -.string "I guess we should...\0" -.align 2, 0 - -.global gUnknown_823BE00 -gUnknown_823BE00: @ 823BE00 -.string " Shiftry{COMMA} you too.{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s hurry back.\0" -.align 2, 0 - -.global gUnknown_823BE2C -gUnknown_823BE2C: @ 823BE2C -.string " We can{APOSTROPHE}t waste any time!\n" -.string "Let{APOSTROPHE}s go back quick!\0" -.align 2, 0 - -.global gUnknown_823BE60 -gUnknown_823BE60: @ 823BE60 -.string " {ARG_NICKNAME_0}{COMMA} let{APOSTROPHE}s go!\n" -.string "Off to the {COLOR_1 CYAN}Hill of the Ancients{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_823BE9C -gUnknown_823BE9C: @ 823BE9C -.string " There{APOSTROPHE}s no time to lose!\n" -.string "We{APOSTROPHE}d better go back quick!\0" -.align 2, 0 - -.global gUnknown_823BED8 -gUnknown_823BED8: @ 823BED8 -.string " {ARG_NICKNAME_0}{COMMA} let{APOSTROPHE}s roll!\n" -.string "We{APOSTROPHE}re going to the {COLOR_1 CYAN}Hill of the Ancients{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_823BF20 -gUnknown_823BF20: @ 823BF20 -.string " OK!\n" -.string "So we should go see Xatu.\0" -.align 2, 0 - -.global gUnknown_823BF40 -gUnknown_823BF40: @ 823BF40 -.string " Xatu is his name.{WAIT_PRESS}\n" -.string "He should shed light on your puzzling\n" -.string "friend.\0" -.align 2, 0 - -.global gUnknown_823BF84 -gUnknown_823BF84: @ 823BF84 -.string " A Pokémon who is said to\n" -.string "see into the future.\0" -.align 2, 0 - -.global gUnknown_823BFB4 -gUnknown_823BFB4: @ 823BFB4 -.string " There{COMMA} you will find a\n" -.string "Pokémon that stares into the sun all day...\0" -.align 2, 0 - -.global gUnknown_823BFFC -gUnknown_823BFFC: @ 823BFFC -.string " Make way to the\n" -.string "{COLOR_1 CYAN}Hill of the Ancients{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_823C028 -gUnknown_823C028: @ 823C028 -.string " Oh{COMMA} really? How?\0" -.align 2, 0 - -.global gUnknown_823C03C -gUnknown_823C03C: @ 823C03C -.string " However...{WAIT_PRESS}\n" -.string "There is a way for unveiling the truth.\0" -.align 2, 0 - -.global gUnknown_823C074 -gUnknown_823C074: @ 823C074 -.string " Oh...\n" -.string "I thought you would know...\0" -.align 2, 0 - -.global gUnknown_823C098 -gUnknown_823C098: @ 823C098 -.string " No...{WAIT_PRESS}\n" -.string "I can{APOSTROPHE}t determine that.\0" -.align 2, 0 - -.global gUnknown_823C0BC -gUnknown_823C0BC: @ 823C0BC -.string " {ARG_NICKNAME_3}{COMMA} could you\n" -.string "figure out why {ARG_NICKNAME_0} became a\n" -.string "Pokémon?\0" -.align 2, 0 - -.global gUnknown_823C0F4 -gUnknown_823C0F4: @ 823C0F4 -.string " He said {ARG_NICKNAME_3} knows\n" -.string "everything!\0" -.align 2, 0 - -.global gUnknown_823C114 -gUnknown_823C114: @ 823C114 -.string " Oh{COMMA} wait!{WAIT_PRESS}\n" -.string "Lombre said something in the square!\0" -.align 2, 0 - -.global gUnknown_823C148 -gUnknown_823C148: @ 823C148 -.string " {ARG_NICKNAME_3}{COMMA} do you know\n" -.string "why {ARG_NICKNAME_0} became a Pokémon?\0" -.align 2, 0 - -.global gUnknown_823C178 -gUnknown_823C178: @ 823C178 -.string " He said {ARG_NICKNAME_3}\n" -.string "knows everything.\0" -.align 2, 0 - -.global gUnknown_823C198 -gUnknown_823C198: @ 823C198 -.string " Oh{COMMA} that{APOSTROPHE}s right!{WAIT_PRESS}\n" -.string "Lombre was saying something in the\n" -.string "square.\0" -.align 2, 0 - -.global gUnknown_823C1DC -gUnknown_823C1DC: @ 823C1DC -.string " ...And doesn{APOSTROPHE}t remember\n" -.string "anything about being a human.\0" -.align 2, 0 - -.global gUnknown_823C218 -gUnknown_823C218: @ 823C218 -.string " {ARG_NICKNAME_0} woke up\n" -.string "one morning here as a Pokémon...\0" -.align 2, 0 - -.global gUnknown_823C248 -gUnknown_823C248: @ 823C248 -.string " {ARG_NICKNAME_0} doesn{APOSTROPHE}t\n" -.string "understand very much{COMMA} either.\0" -.align 2, 0 - -.global gUnknown_823C278 -gUnknown_823C278: @ 823C278 -.string " ...And doesn{APOSTROPHE}t remember\n" -.string "a thing about being a human.\0" -.align 2, 0 - -.global gUnknown_823C2B0 -gUnknown_823C2B0: @ 823C2B0 -.string " {ARG_NICKNAME_0} just woke up\n" -.string "one morning here as a Pokémon...\0" -.align 2, 0 - -.global gUnknown_823C2E4 -gUnknown_823C2E4: @ 823C2E4 -.string " {ARG_NICKNAME_0} doesn{APOSTROPHE}t really\n" -.string "know what happened{COMMA} either.\0" -.align 2, 0 - -.global gUnknown_823C318 -gUnknown_823C318: @ 823C318 -.string " Is that possible?\n" -.string "Can something like that happen?\0" -.align 2, 0 - -.global gUnknown_823C34C -gUnknown_823C34C: @ 823C34C -.string " A human?!\0" -.align 2, 0 - -.global gUnknown_823C358 -gUnknown_823C358: @ 823C358 -.string " What?!\0" -.align 2, 0 - -.global gUnknown_823C360 -gUnknown_823C360: @ 823C360 -.string " {ARG_NICKNAME_0} is a human.\0" -.align 2, 0 - -.global gUnknown_823C374 -gUnknown_823C374: @ 823C374 -.string " But you{APOSTROPHE}re right.\n" -.string "{ARG_NICKNAME_0} isn{APOSTROPHE}t a Pokémon.\0" -.align 2, 0 - -.global gUnknown_823C3A0 -gUnknown_823C3A0: @ 823C3A0 -.string " Wow!\n" -.string "How can you tell that?!\0" -.align 2, 0 - -.global gUnknown_823C3C0 -gUnknown_823C3C0: @ 823C3C0 -.string " Perhaps...{WAIT_PRESS}\n" -.string "You aren{APOSTROPHE}t a Pokémon{COMMA} are you?\0" -.align 2, 0 - -.global gUnknown_823C3F4 -gUnknown_823C3F4: @ 823C3F4 -.string " I sensed it when we first\n" -.string "met...\0" -.align 2, 0 - -.global gUnknown_823C418 -gUnknown_823C418: @ 823C418 -.string " ......\0" -.align 2, 0 - -.global gUnknown_823C420 -gUnknown_823C420: @ 823C420 -.string " You{APOSTROPHE}re awfully strong for\n" -.string "a plain {ARG_POKEMON_0}.\0" -.align 2, 0 - -.global gUnknown_823C44C -gUnknown_823C44C: @ 823C44C -.string " I agree.\0" -.align 2, 0 - -.global gUnknown_823C458 -gUnknown_823C458: @ 823C458 -.string " Driving off that\n" -.string "{ARG_NICKNAME_2}.\0" -.align 2, 0 - -.global gUnknown_823C470 -gUnknown_823C470: @ 823C470 -.string " But that was an eye-opener.\0" -.align 2, 0 - -.global gUnknown_823C490 -gUnknown_823C490: @ 823C490 -.string " I{APOSTROPHE}m glad you{APOSTROPHE}re safe!\0" -.align 2, 0 - -.global gUnknown_823C4AC -gUnknown_823C4AC: @ 823C4AC -.string " Ungh... Uh{COMMA} yeah...{WAIT_PRESS}\n" -.string "Somehow{COMMA} I am...\0" -.align 2, 0 - -.global gUnknown_823C4D8 -gUnknown_823C4D8: @ 823C4D8 -.string " Are you OK?\0" -.align 2, 0 - -.global gUnknown_823C4E8 -gUnknown_823C4E8: @ 823C4E8 -.string " Look!\n" -.string "There{APOSTROPHE}s {ARG_NICKNAME_6}!\0" -.align 2, 0 - -.global gUnknown_823C500 -gUnknown_823C500: @ 823C500 -.string " Until then{COMMA} you{APOSTROPHE}d better\n" -.string "hone your skills!\0" -.align 2, 0 - -.global gUnknown_823C530 -gUnknown_823C530: @ 823C530 -.string " I will go all out next time{COMMA}\n" -.string "so you{APOSTROPHE}d best be prepared!\0" -.align 2, 0 - -.global gUnknown_823C570 -gUnknown_823C570: @ 823C570 -.string " But...{WAIT_PRESS}\n" -.string "Things won{APOSTROPHE}t be this easy next time.\0" -.align 2, 0 - -.global gUnknown_823C5A4 -gUnknown_823C5A4: @ 823C5A4 -.string " You kids...\n" -.string "You{APOSTROPHE}ve impressed me.\0" -.align 2, 0 - -.global gUnknown_823C5C8 -gUnknown_823C5C8: @ 823C5C8 -.string " I{APOSTROPHE}ve calmed down.\n" -.string "Take {ARG_NICKNAME_6} back.\0" -.align 2, 0 - -.global gUnknown_823C5EC -gUnknown_823C5EC: @ 823C5EC -.string " Enough!{WAIT_PRESS}\n" -.string "That{APOSTROPHE}s enough fighting.\0" -.align 2, 0 - -.global gUnknown_823C614 -gUnknown_823C614: @ 823C614 -.string " You want more?\n" -.string "I{APOSTROPHE}ll take you on!\0" -.align 2, 0 - -.global gUnknown_823C638 -gUnknown_823C638: @ 823C638 -.string " Urrggh!{WAIT_PRESS}\n" -.string "Uwoah!\0" -.align 2, 0 - -.global gUnknown_823C64C -gUnknown_823C64C: @ 823C64C -.string " Wh-what is going on...\0" -.align 2, 0 - -.global gUnknown_823C664 -gUnknown_823C664: @ 823C664 -.string "Gyaoooh!\0" -.align 2, 0 - -.global gUnknown_823C670 -gUnknown_823C670: @ 823C670 -.byte 0xf6, 0x00, 0x5a, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823AA54 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x20, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southwest -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x90, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823C940 -gUnknown_823C940: @ 823C940 -.byte 0xf6, 0x00, 0x8a, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823AA54 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x60, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x90, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823CAC0 -gUnknown_823CAC0: @ 823CAC0 -.byte 0xf6, 0x00, 0xa5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823AA54 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x60, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x90, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823CC40 -gUnknown_823CC40: @ 823CC40 -.byte 0xf6, 0x00, 0xc0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823AA54 -.byte 0x54, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xdf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xeb, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0x56, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0xeb, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southwest -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 5 -.byte 0xdb, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 5 -.byte 0x70, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x08 -.byte 0x4c, 0x00, 0x00, 0x00, 0xcb, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x04, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823CE70 -gUnknown_823CE70: @ 823CE70 -.byte 0xf6, 0x00, 0xe6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823AA54 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x58, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x08 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd2, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x20, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, east -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_823D050 -gUnknown_823D050: @ 823D050 -.byte 0xf6, 0x00, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823AA54 -setAnimation 2 -.byte 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x58, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x08 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x07 -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x84, 0x00, 0x80, 0x01, 0x22, 0x00, 0x00, 0x00, 0xe6, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x20, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southeast -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southeast -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823D280 -gUnknown_823D280: @ 823D280 -.byte 0xf6, 0x00, 0x2d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823AA54 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x58, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x20, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823D460 -gUnknown_823D460: @ 823D460 -.byte 0xf6, 0x00, 0x4e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823AA54 -.byte 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823D4C0 -gUnknown_823D4C0: @ 823D4C0 -.byte 0xf6, 0x00, 0x57, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823AA54 -.byte 0x54, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x90, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823D610 -gUnknown_823D610: @ 823D610 -.byte 0x00, 0x03, 0x00, 0x00, 0x18, 0x15, 0x02, 0x02 -.4byte gUnknown_823AC18 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x05, 0x00, 0x00, 0x20, 0x15, 0x02, 0x02 -.4byte gUnknown_823C670 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0a, 0x02, 0x00, 0x00, 0x15, 0x13, 0x02, 0x02 -.4byte gUnknown_823C940 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0x06, 0x00, 0x00 -.byte 0x23, 0x13, 0x02, 0x02 -.4byte gUnknown_823CAC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x1c, 0x12, 0x02, 0x02 -.4byte gUnknown_823CC40 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x04, 0x00, 0x00, 0x1c, 0x22, 0x02, 0x02 -.4byte gUnknown_823CE70 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x59, 0x04, 0x00, 0x00, 0x18, 0x23, 0x02, 0x02 -.4byte gUnknown_823D050 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5a, 0x04, 0x00, 0x00 -.byte 0x20, 0x23, 0x02, 0x02 -.4byte gUnknown_823D280 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823D6D0 -gUnknown_823D6D0: @ 823D6D0 -.byte 0x55, 0x07, 0x00, 0x00, 0x1c, 0x11, 0x02, 0x00 -.4byte gUnknown_823D4C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823D6E8 -gUnknown_823D6E8: @ 823D6E8 -.byte 0x00, 0x00, 0x01, 0x01, 0x1d, 0x0b, 0x00, 0x02 -.4byte gUnknown_823AB28 -.byte 0x04, 0x00, 0x01, 0x01, 0x1c, 0x14, 0x02, 0x02 -.4byte gUnknown_823D460 - -.global gUnknown_823D700 -gUnknown_823D700: @ 823D700 -.4byte gUnknown_823AA80 - -.global gUnknown_823D704 -gUnknown_823D704: @ 823D704 -.4byte gUnknown_823AB1C - -.global gUnknown_823D708 -gUnknown_823D708: @ 823D708 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823D700 - -.global gUnknown_823D730 -gUnknown_823D730: @ 823D730 -.byte 0x08, 0x00, 0x00, 0x00 -.4byte gUnknown_823D610 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_823D6E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823D704 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823D6D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823D780 -gUnknown_823D780: @ 823D780 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823D708 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_823D730 - -.global gUnknown_823D790 -gUnknown_823D790: @ 823D790 -.byte 0x1d, 0x14, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x20, 0x11, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x18, 0x11, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x19, 0x0f, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x19, 0x13, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x20, 0x18, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x20, 0x15, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00 - -.global gUnknown_823D7C8 -gUnknown_823D7C8: @ 823D7C8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_823D780 -.4byte gUnknown_823D790 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_823D7DC -gUnknown_823D7DC: @ 823D7DC -.byte 0xf6, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823D81C -.byte 0x08, 0x00, 0x00, 0x00, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823D81C -gUnknown_823D81C: @ 823D81C -.string "../data/ground/ground_data_d07p01_station.c\0" -.align 2, 0 - -.global gUnknown_823D848 -gUnknown_823D848: @ 823D848 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823D7DC - -.global gUnknown_823D854 -gUnknown_823D854: @ 823D854 -.byte 0xf6, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823D81C -.byte 0x08, 0x00, 0x00, 0x00, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823D8D4 -gUnknown_823D8D4: @ 823D8D4 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823D854 - -.global gUnknown_823D8E0 -gUnknown_823D8E0: @ 823D8E0 -.byte 0xf6, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823D81C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x6b, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823DBEC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823DBB8 -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x04, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x0a, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823DB7C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823DB34 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823DAF4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823DAC0 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823DAC0 -gUnknown_823DAC0: @ 823DAC0 -.string " {ARG_NICKNAME_3} should be\n" -.string "there.{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_0}{COMMA} let{APOSTROPHE}s do our best!\0" -.align 2, 0 - -.global gUnknown_823DAF4 -gUnknown_823DAF4: @ 823DAF4 -.string " According to {ARG_NICKNAME_2}{COMMA}\n" -.string "the {COLOR_1 CYAN}Hill of the Ancients{END_COLOR_TEXT_1} is on {ARG_VALUE_0}F.\0" -.align 2, 0 - -.global gUnknown_823DB34 -gUnknown_823DB34: @ 823DB34 -.string " That{APOSTROPHE}s where we{APOSTROPHE}ll find\n" -.string "{ARG_NICKNAME_3}.{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_0}{COMMA} let{APOSTROPHE}s give it our best!\0" -.align 2, 0 - -.global gUnknown_823DB7C -gUnknown_823DB7C: @ 823DB7C -.string " {ARG_NICKNAME_2} said that\n" -.string "the {COLOR_1 CYAN}Hill of the Ancients{END_COLOR_TEXT_1} is on {ARG_VALUE_0}F.\0" -.align 2, 0 - -.global gUnknown_823DBB8 -gUnknown_823DBB8: @ 823DBB8 -.string " The peak is called the\n" -.string "{COLOR_1 CYAN}Hill of the Ancients{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_823DBEC -gUnknown_823DBEC: @ 823DBEC -.string " This is the {COLOR_1 YELLOW_4}Great Canyon{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_823DC10 -gUnknown_823DC10: @ 823DC10 -.byte 0xf6, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823D81C -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x69, 0x00, 0x00, 0x01, 0xe8, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southwest -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823DD20 -gUnknown_823DD20: @ 823DD20 -.byte 0xf6, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823D81C -.byte 0x08, 0x00, 0x00, 0x00, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823DDA0 -gUnknown_823DDA0: @ 823DDA0 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823DD20 - -.global gUnknown_823DDAC -gUnknown_823DDAC: @ 823DDAC -.byte 0xf6, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823D81C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x02, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x6b, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -rotate 0x04, CW, east -.byte 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823DFFC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823DFD0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823DFB4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823DF84 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823DF44 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823DF2C -closeTextBox -setFlag 0x06 -.byte 0x23, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x6b, 0x00, 0x80, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_823DF2C -gUnknown_823DF2C: @ 823DF2C -.string " Let{APOSTROPHE}s do our best!\0" -.align 2, 0 - -.global gUnknown_823DF44 -gUnknown_823DF44: @ 823DF44 -.string " We have to meet\n" -.string "{ARG_NICKNAME_3} and get some information\n" -.string "on you{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_823DF84 -gUnknown_823DF84: @ 823DF84 -.string " {ARG_NICKNAME_0}!\n" -.string "Let{APOSTROPHE}s make it to the peak this time!\0" -.align 2, 0 - -.global gUnknown_823DFB4 -gUnknown_823DFB4: @ 823DFB4 -.string " Let{APOSTROPHE}s give it our best!\0" -.align 2, 0 - -.global gUnknown_823DFD0 -gUnknown_823DFD0: @ 823DFD0 -.string " We{APOSTROPHE}ll meet {ARG_NICKNAME_3}\n" -.string "and ask about you{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_823DFFC -gUnknown_823DFFC: @ 823DFFC -.string " {ARG_NICKNAME_0}!\n" -.string "This time we{APOSTROPHE}ll make it to the peak{COMMA}\n" -.string "all right?\0" -.align 2, 0 - -.global gUnknown_823E038 -gUnknown_823E038: @ 823E038 -.byte 0xf6, 0x00, 0x83, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823D81C -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, west -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xcc, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xcc, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_823E0F8 -gUnknown_823E0F8: @ 823E0F8 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x1a, 0x1d, 0x00, 0x02 -.4byte gUnknown_823D8E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x20, 0x1d, 0x00, 0x02 -.4byte gUnknown_823DC10 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823E128 -gUnknown_823E128: @ 823E128 -.byte 0x00, 0x04, 0x00, 0x00, 0x1a, 0x1d, 0x00, 0x02 -.4byte gUnknown_823DDAC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x20, 0x1d, 0x00, 0x02 -.4byte gUnknown_823E038 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823E158 -gUnknown_823E158: @ 823E158 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x1e, 0x0f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823E164 -gUnknown_823E164: @ 823E164 -.byte 0x00, 0x00, 0x01, 0x01, 0x1e, 0x0f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823E170 -gUnknown_823E170: @ 823E170 -.4byte gUnknown_823D848 - -.global gUnknown_823E174 -gUnknown_823E174: @ 823E174 -.4byte gUnknown_823D8D4 - -.global gUnknown_823E178 -gUnknown_823E178: @ 823E178 -.4byte gUnknown_823DDA0 - -.global gUnknown_823E17C -gUnknown_823E17C: @ 823E17C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823E170 - -.global gUnknown_823E1A4 -gUnknown_823E1A4: @ 823E1A4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_823E0F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823E158 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823E174 - -.global gUnknown_823E1CC -gUnknown_823E1CC: @ 823E1CC -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_823E128 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823E164 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823E178 - -.global gUnknown_823E1F4 -gUnknown_823E1F4: @ 823E1F4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823E17C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823E1A4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_823E1CC - -.global gUnknown_823E20C -gUnknown_823E20C: @ 823E20C -.byte 0x1f, 0x10, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1a, 0x10, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01 -.byte 0x1d, 0x06, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1e, 0x07, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1e, 0x0b, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01 - -.global gUnknown_823E234 -gUnknown_823E234: @ 823E234 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_823E1F4 -.4byte gUnknown_823E20C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_823E248 -gUnknown_823E248: @ 823E248 -.byte 0xf6, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823E288 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823E288 -gUnknown_823E288: @ 823E288 -.string "../data/ground/ground_data_d07p02_station.c\0" -.align 2, 0 - -.global gUnknown_823E2B4 -gUnknown_823E2B4: @ 823E2B4 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823E248 - -.global gUnknown_823E2C0 -gUnknown_823E2C0: @ 823E2C0 -.byte 0xf6, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823E288 -.byte 0x08, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823E360 -gUnknown_823E360: @ 823E360 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823E2C0 - -.global gUnknown_823E36C -gUnknown_823E36C: @ 823E36C -.byte 0xf6, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823E288 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x6b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -setFlag 0x07 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823EC40 -closeTextBox -pause 0x0a -.byte 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -setAnimation 5 -pause 0x1e -setAnimation 2 -pause 0x14 -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823EC14 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823EBC8 -closeTextBox -pause 0x3c -setFlag 0x07 -.byte 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823EBB8 -pause 0x1e -setFlag 0x07 -closeTextBox -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823EB94 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823EB74 -closeTextBox -pause 0x1e -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823EB64 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823EB48 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823EAC0 -closeTextBox -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823EAB4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823EA68 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823EA34 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823EA14 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823E9F4 -closeTextBox -pause 0x0f -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823E9B4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823E984 -setFlag 0x07 -pause 0x14 -rotate 0x04, shortestDir, northeast -pause 0x1e -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823E958 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823E928 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823E8EC -closeTextBox -pause 0x14 -setFlag 0x07 -rotate 0x04, shortestDir, north -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823E8C0 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823E888 -closeTextBox -pause 0x1e -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823E85C -.byte 0xe1, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -pause 0x1e -setFlag 0x03 -closeThread - -.global gUnknown_823E85C -gUnknown_823E85C: @ 823E85C -.string "{CENTER_ALIGN}Gained access to\n" -.string "{CENTER_ALIGN}the {COLOR_1 YELLOW_4}Fiery Field{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_823E888 -gUnknown_823E888: @ 823E888 -.string " The answers you seek...\n" -.string "Perhaps they await you there.\0" -.align 2, 0 - -.global gUnknown_823E8C0 -gUnknown_823E8C0: @ 823E8C0 -.string " Go.\n" -.string "You must go to the {COLOR_1 YELLOW_4}Fiery Field{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_823E8EC -gUnknown_823E8EC: @ 823E8EC -.string " One of the Pokémon...\n" -.string "A shadow of the mirage...is there.\0" -.align 2, 0 - -.global gUnknown_823E928 -gUnknown_823E928: @ 823E928 -.string " There is one such field.\n" -.string "The {COLOR_1 YELLOW_4}Fiery Field{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_823E958 -gUnknown_823E958: @ 823E958 -.string " An island known as the\n" -.string "{QUOTE_START}Three Fields.{QUOTE_END}\0" -.align 2, 0 - -.global gUnknown_823E984 -gUnknown_823E984: @ 823E984 -.string " To the northwest{COMMA} there lies\n" -.string "a large island.\0" -.align 2, 0 - -.global gUnknown_823E9B4 -gUnknown_823E9B4: @ 823E9B4 -.string " They are said to be\n" -.string "shadows.\n" -.string "Shadows of the mirage Pokémon.\0" -.align 2, 0 - -.global gUnknown_823E9F4 -gUnknown_823E9F4: @ 823E9F4 -.string " And race with the north\n" -.string "wind.\0" -.align 2, 0 - -.global gUnknown_823EA14 -gUnknown_823EA14: @ 823EA14 -.string " Roar as one with thunder...\0" -.align 2, 0 - -.global gUnknown_823EA34 -gUnknown_823EA34: @ 823EA34 -.string " They...{WAIT_PRESS}\n" -.string "rage with the eruptions of volcanoes...\0" -.align 2, 0 - -.global gUnknown_823EA68 -gUnknown_823EA68: @ 823EA68 -.string " There are Pokémon that\n" -.string "live{COMMA} breathe{COMMA} and prosper with\n" -.string "the very land.\0" -.align 2, 0 - -.global gUnknown_823EAB4 -gUnknown_823EAB4: @ 823EAB4 -.string " However!\0" -.align 2, 0 - -.global gUnknown_823EAC0 -gUnknown_823EAC0: @ 823EAC0 -.string " ....................................\n" -.string "................................................\n" -.string "................................................\0" -.align 2, 0 - -.global gUnknown_823EB48 -gUnknown_823EB48: @ 823EB48 -.string " ........................\0" -.align 2, 0 - -.global gUnknown_823EB64 -gUnknown_823EB64: @ 823EB64 -.string " ............\0" -.align 2, 0 - -.global gUnknown_823EB74 -gUnknown_823EB74: @ 823EB74 -.string " I know...{WAIT_PRESS}\n" -.string "Little about it...\0" -.align 2, 0 - -.global gUnknown_823EB94 -gUnknown_823EB94: @ 823EB94 -.string " .......{WAIT_PRESS}\n" -.string "The mirage Pokémon...\0" -.align 2, 0 - -.global gUnknown_823EBB8 -gUnknown_823EBB8: @ 823EBB8 -.string " {COLOR_1 YELLOW}{END_COLOR_TEXT_1}Kwaaaaah!\0" -.align 2, 0 - -.global gUnknown_823EBC8 -gUnknown_823EBC8: @ 823EBC8 -.string " ...{WAIT_PRESS}" -.string "I see.{WAIT_PRESS}\n" -.string "About the mirage Pokémon...{WAIT_PRESS}\n" -.string "That is what you wish to know?\0" -.align 2, 0 - -.global gUnknown_823EC14 -gUnknown_823EC14: @ 823EC14 -.string " Hm! This...{WAIT_PRESS}\n" -.string "This is a {COLOR_1 GREEN_2}Clear Wing{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_823EC40 -gUnknown_823EC40: @ 823EC40 -.string " ............{WAIT_PRESS}\n" -.string "What is it?{WAIT_PRESS}\n" -.string "Have you reason to see me?\0" -.align 2, 0 - -.global gUnknown_823EC7C -gUnknown_823EC7C: @ 823EC7C -.byte 0xf6, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823E288 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe2, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xda, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 9 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -rotate 0x08, CW, north -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -closeThread - -.global gUnknown_823EDFC -gUnknown_823EDFC: @ 823EDFC -.byte 0xf6, 0x00, 0x9e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823E288 -.byte 0x08, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823EE8C -gUnknown_823EE8C: @ 823EE8C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823EDFC - -.global gUnknown_823EE98 -gUnknown_823EE98: @ 823EE98 -.byte 0xf6, 0x00, 0xac, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823E288 -pause 0x01 -.byte 0x98, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x02 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x50 -.byte 0x86, 0x00, 0x00, 0x02 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x02, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x02, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_823EF68 -gUnknown_823EF68: @ 823EF68 -.byte 0xf6, 0x00, 0xbc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823E288 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -.byte 0x2e, 0x03, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241864 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241830 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CCW, north -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241800 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82417D4 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82417C0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x01, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82417A0 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x3c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824177C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241774 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824176C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823EB64 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241744 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241730 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x28 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241718 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823EB48 -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northeast -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82416E8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82416BC -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82416A0 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241694 -.byte 0xd9, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241688 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xa6, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824165C -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824162C -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northeast -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x2b, 0x00, 0x00, 0x00 -.byte 0x1e, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824160C -closeTextBox -.byte 0x2b, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823EB64 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82415D0 -closeTextBox -.byte 0x2b, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82415A8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241508 -closeTextBox -.byte 0x2b, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824145C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x2b, 0x00, 0x00, 0x00 -.byte 0x1e, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241438 -.byte 0x2b, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241424 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82413EC -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82413BC -closeTextBox -.byte 0xdb, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82413B0 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x02, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82413A8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241390 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241378 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241358 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241338 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241318 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241300 -closeTextBox -.byte 0xdb, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x36, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82412F0 -pause 0x1e -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe8, 0x00, 0x26, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82412E8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82412CC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82412AC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241298 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241274 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241258 -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241220 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82411F8 -closeTextBox -.byte 0x2e, 0x03, 0x01, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82411A8 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241160 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241114 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x05, 0x02, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82410D0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241094 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2b, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82412F0 -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x0a, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82412E8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241084 -.byte 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241068 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x00, 0x3c, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824105C -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241050 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241008 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x03, 0x01, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240FD8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240FBC -setFlag 0x07 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240FB0 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240F90 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240F74 -closeTextBox -.byte 0xdb, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd2, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x03, 0x01, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240F54 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240F28 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240F04 -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240EE0 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x03, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240EB4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240E8C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -.byte 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240E70 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240E40 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240E08 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240DE8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240E40 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240DC0 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northeast -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240D84 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240D4C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8241730 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240D08 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240CD4 -setFlag 0x07 -.byte 0x91, 0x04, 0x01, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240CB4 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240C88 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240C38 -.byte 0x2e, 0x03, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240C24 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240BD8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823EB48 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240BC4 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240B90 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240B80 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240B4C -closeTextBox -.byte 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240B1C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240AEC -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240AC0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240AA8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240A74 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240A54 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240A28 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82409F4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82409E4 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82409D8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82409AC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x0d, 0x01, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824098C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240968 -.byte 0x2e, 0x02, 0x03, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824094C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8240908 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8240908 -gUnknown_8240908: @ 8240908 -.string " That{APOSTROPHE}s going to be useful!\n" -.string "This should be interesting! Kekeh!\0" -.align 2, 0 - -.global gUnknown_824094C -gUnknown_824094C: @ 824094C -.string " That {ARG_NICKNAME_0}...\n" -.string "was human...\0" -.align 2, 0 - -.global gUnknown_8240968 -gUnknown_8240968: @ 8240968 -.string " Kekeh!\n" -.string "Isn{APOSTROPHE}t that a surprise!\0" -.align 2, 0 - -.global gUnknown_824098C -gUnknown_824098C: @ 824098C -.string " The world{APOSTROPHE}s destruction...?\0" -.align 2, 0 - -.global gUnknown_82409AC -gUnknown_82409AC: @ 82409AC -.string " I fear it...{WAIT_PRESS}\n" -.string "The world{APOSTROPHE}s destruction.\0" -.align 2, 0 - -.global gUnknown_82409D8 -gUnknown_82409D8: @ 82409D8 -.string " Xa-{ARG_NICKNAME_2}...\0" -.align 2, 0 - -.global gUnknown_82409E4 -gUnknown_82409E4: @ 82409E4 -.string " I dread it...\0" -.align 2, 0 - -.global gUnknown_82409F4 -gUnknown_82409F4: @ 82409F4 -.string " Every day I see it.\n" -.string "The same future every day...\0" -.align 2, 0 - -.global gUnknown_8240A28 -gUnknown_8240A28: @ 8240A28 -.string " The world...{WAIT_PRESS}\n" -.string "The unthinkable is coming?\0" -.align 2, 0 - -.global gUnknown_8240A54 -gUnknown_8240A54: @ 8240A54 -.string " Huh...?{WAIT_PRESS}\n" -.string "You{APOSTROPHE}re serious?!\0" -.align 2, 0 - -.global gUnknown_8240A74 -gUnknown_8240A74: @ 8240A74 -.string " The world...{WAIT_PRESS}\n" -.string "The unthinkable is going to happen?\0" -.align 2, 0 - -.global gUnknown_8240AA8 -gUnknown_8240AA8: @ 8240AA8 -.string " Wh-{WAIT_PRESS}" -.string "what did you say?\0" -.align 2, 0 - -.global gUnknown_8240AC0 -gUnknown_8240AC0: @ 8240AC0 -.string " Or the unthinkable shall\n" -.string "befall our world.\0" -.align 2, 0 - -.global gUnknown_8240AEC -gUnknown_8240AEC: @ 8240AEC -.string " The world{APOSTROPHE}s balance...\n" -.string "It must be restored.\0" -.align 2, 0 - -.global gUnknown_8240B1C -gUnknown_8240B1C: @ 8240B1C -.string " There are bigger concerns...{WAIT_PRESS}\n" -.string "I am afraid...\0" -.align 2, 0 - -.global gUnknown_8240B4C -gUnknown_8240B4C: @ 8240B4C -.string " Why did you clam up?!\n" -.string "Please{COMMA} tell us! Please!\0" -.align 2, 0 - -.global gUnknown_8240B80 -gUnknown_8240B80: @ 8240B80 -.string " What is it?!\0" -.align 2, 0 - -.global gUnknown_8240B90 -gUnknown_8240B90: @ 8240B90 -.string " Why did you clam up?\n" -.string "Come on{COMMA} tell us{COMMA} please!\0" -.align 2, 0 - -.global gUnknown_8240BC4 -gUnknown_8240BC4: @ 8240BC4 -.string " What is it?! Hey?!\0" -.align 2, 0 - -.global gUnknown_8240BD8 -gUnknown_8240BD8: @ 8240BD8 -.string " What does {ARG_NICKNAME_0}\n" -.string "have to do with the natural disasters\n" -.string "we{APOSTROPHE}ve been seeing?\0" -.align 2, 0 - -.global gUnknown_8240C24 -gUnknown_8240C24: @ 8240C24 -.string " What do you mean?!\0" -.align 2, 0 - -.global gUnknown_8240C38 -gUnknown_8240C38: @ 8240C38 -.string " Wait. {ARG_NICKNAME_0}\n" -.string "becoming a Pokémon and...{WAIT_PRESS}" -.string "the natural\n" -.string "disasters...{WAIT_PRESS}" -.string "are related?!\0" -.align 2, 0 - -.global gUnknown_8240C88 -gUnknown_8240C88: @ 8240C88 -.string " They are tied together.\n" -.string "Inseparably so.\0" -.align 2, 0 - -.global gUnknown_8240CB4 -gUnknown_8240CB4: @ 8240CB4 -.string " And your becoming a\n" -.string "Pokémon...\0" -.align 2, 0 - -.global gUnknown_8240CD4 -gUnknown_8240CD4: @ 8240CD4 -.string " They occur because the\n" -.string "world{APOSTROPHE}s balance is upset.\0" -.align 2, 0 - -.global gUnknown_8240D08 -gUnknown_8240D08: @ 8240D08 -.string " The calamities of nature.\n" -.string "There have been many in recent times.\0" -.align 2, 0 - -.global gUnknown_8240D4C -gUnknown_8240D4C: @ 8240D4C -.string " {ARG_NICKNAME_2}{COMMA} you can tell{COMMA}\n" -.string "can{APOSTROPHE}t you?{WAIT_PRESS}\n" -.string "Please tell us.\0" -.align 2, 0 - -.global gUnknown_8240D84 -gUnknown_8240D84: @ 8240D84 -.string " {ARG_NICKNAME_2}{COMMA} you can tell{COMMA}\n" -.string "can{APOSTROPHE}t you?{WAIT_PRESS}\n" -.string "Can{APOSTROPHE}t you tell us?\0" -.align 2, 0 - -.global gUnknown_8240DC0 -gUnknown_8240DC0: @ 8240DC0 -.string " And{COMMA} without any memory as\n" -.string "a human.\0" -.align 2, 0 - -.global gUnknown_8240DE8 -gUnknown_8240DE8: @ 8240DE8 -.string " Next to me is my friend\n" -.string "{ARG_NICKNAME_0}...\0" -.align 2, 0 - -.global gUnknown_8240E08 -gUnknown_8240E08: @ 8240E08 -.string " Without remembering\n" -.string "anything as a human being{COMMA} too.\0" -.align 2, 0 - -.global gUnknown_8240E40 -gUnknown_8240E40: @ 8240E40 -.string " My friend woke up one\n" -.string "morning as a Pokémon.\0" -.align 2, 0 - -.global gUnknown_8240E70 -gUnknown_8240E70: @ 8240E70 -.string " This is my friend\n" -.string "{ARG_NICKNAME_0}...\0" -.align 2, 0 - -.global gUnknown_8240E8C -gUnknown_8240E8C: @ 8240E8C -.string " If you know{COMMA} please tell us{COMMA}\n" -.string "{ARG_NICKNAME_2}!\0" -.align 2, 0 - -.global gUnknown_8240EB4 -gUnknown_8240EB4: @ 8240EB4 -.string " Then{COMMA} you{APOSTROPHE}ve got to tell us{COMMA}\n" -.string "{ARG_NICKNAME_2}!\0" -.align 2, 0 - -.global gUnknown_8240EE0 -gUnknown_8240EE0: @ 8240EE0 -.string " The past and the future{COMMA} too.\0" -.align 2, 0 - -.global gUnknown_8240F04 -gUnknown_8240F04: @ 8240F04 -.string " It gives me sight for\n" -.string "all things.\0" -.align 2, 0 - -.global gUnknown_8240F28 -gUnknown_8240F28: @ 8240F28 -.string " All day...\n" -.string "I stare at the sun unblinking.\0" -.align 2, 0 - -.global gUnknown_8240F54 -gUnknown_8240F54: @ 8240F54 -.string " Huh?!\n" -.string "How can you tell that?!\0" -.align 2, 0 - -.global gUnknown_8240F74 -gUnknown_8240F74: @ 8240F74 -.string " You are...{WAIT_PRESS}\n" -.string "human{COMMA} yes?\0" -.align 2, 0 - -.global gUnknown_8240F90 -gUnknown_8240F90: @ 8240F90 -.string " You are no ordinary\n" -.string "Pokémon.\0" -.align 2, 0 - -.global gUnknown_8240FB0 -gUnknown_8240FB0: @ 8240FB0 -.string " You there.\0" -.align 2, 0 - -.global gUnknown_8240FBC -gUnknown_8240FBC: @ 8240FBC -.string " ...No.\n" -.string "I can tell this.\0" -.align 2, 0 - -.global gUnknown_8240FD8 -gUnknown_8240FD8: @ 8240FD8 -.string " Guessed your identity?\n" -.string "That{APOSTROPHE}s a bit much.\0" -.align 2, 0 - -.global gUnknown_8241008 -gUnknown_8241008: @ 8241008 -.string " You discerned my true\n" -.string "identity...{WAIT_PRESS}\n" -.string "You are not an ordinary sort...\0" -.align 2, 0 - -.global gUnknown_8241050 -gUnknown_8241050: @ 8241050 -.string " I am {ARG_NICKNAME_2}.\0" -.align 2, 0 - -.global gUnknown_824105C -gUnknown_824105C: @ 824105C -.string " Indeed.\0" -.align 2, 0 - -.global gUnknown_8241068 -gUnknown_8241068: @ 8241068 -.string " The sinking of the sun...\0" -.align 2, 0 - -.global gUnknown_8241084 -gUnknown_8241084: @ 8241084 -.string " Witness it...\0" -.align 2, 0 - -.global gUnknown_8241094 -gUnknown_8241094: @ 8241094 -.string " OK. Counting down.{WAIT_PRESS}\n" -.string "Three...{WAIT_PRESS}" -.string " Two...{WAIT_PRESS}" -.string " One...{WAIT_PRESS}" -.string " Now...!\0" -.align 2, 0 - -.global gUnknown_82410D0 -gUnknown_82410D0: @ 82410D0 -.string " All right. Counting down.{WAIT_PRESS}\n" -.string "Three...{WAIT_PRESS}" -.string " Two...{WAIT_PRESS}" -.string " One...{WAIT_PRESS}" -.string " Now...!\0" -.align 2, 0 - -.global gUnknown_8241114 -gUnknown_8241114: @ 8241114 -.string " If anything happens\n" -.string "to me{COMMA} you have to help me.\n" -.string "I{APOSTROPHE}m counting on you.\0" -.align 2, 0 - -.global gUnknown_8241160 -gUnknown_8241160: @ 8241160 -.string " If anything happens to me{COMMA}\n" -.string "you have to help me. You have to promise!\0" -.align 2, 0 - -.global gUnknown_82411A8 -gUnknown_82411A8: @ 82411A8 -.string " If something happens to me{COMMA}\n" -.string "promise you{APOSTROPHE}ll help me.\n" -.string "I{APOSTROPHE}m counting on you.\0" -.align 2, 0 - -.global gUnknown_82411F8 -gUnknown_82411F8: @ 82411F8 -.string " ...{WAIT_PRESS}" -.string "Fine{COMMA} then.\n" -.string "I{APOSTROPHE}ll do it{COMMA} OK?\0" -.align 2, 0 - -.global gUnknown_8241220 -gUnknown_8241220: @ 8241220 -.string " ...{WAIT_PRESS}" -.string "Oh{COMMA} all right. \n" -.string "You really want me to do this.\0" -.align 2, 0 - -.global gUnknown_8241258 -gUnknown_8241258: @ 8241258 -.string " It{APOSTROPHE}d be scary for\n" -.string "sure!\0" -.align 2, 0 - -.global gUnknown_8241274 -gUnknown_8241274: @ 8241274 -.string " I mean{COMMA} he{APOSTROPHE}s kind of creepy!\0" -.align 2, 0 - -.global gUnknown_8241298 -gUnknown_8241298: @ 8241298 -.string " Uh{COMMA} no!\n" -.string "No way!\0" -.align 2, 0 - -.global gUnknown_82412AC -gUnknown_82412AC: @ 82412AC -.string " Huh?\n" -.string "We{APOSTROPHE}re going to attack?!\0" -.align 2, 0 - -.global gUnknown_82412CC -gUnknown_82412CC: @ 82412CC -.string " Hah?\n" -.string "We{APOSTROPHE}re gonna attack?\0" -.align 2, 0 - -.global gUnknown_82412E8 -gUnknown_82412E8: @ 82412E8 -.string " Yikes!\0" -.align 2, 0 - -.global gUnknown_82412F0 -gUnknown_82412F0: @ 82412F0 -.string "Kwaaaaaaaaah!\0" -.align 2, 0 - -.global gUnknown_8241300 -gUnknown_8241300: @ 8241300 -.string " Is he...{WAIT_PRESS}\n" -.string "just dense?\0" -.align 2, 0 - -.global gUnknown_8241318 -gUnknown_8241318: @ 8241318 -.string " He{APOSTROPHE}s finally laughing now...\0" -.align 2, 0 - -.global gUnknown_8241338 -gUnknown_8241338: @ 8241338 -.string " Maybe...{WAIT_PRESS}\n" -.string "Is he just dense?\0" -.align 2, 0 - -.global gUnknown_8241358 -gUnknown_8241358: @ 8241358 -.string " He finally started laughing...\0" -.align 2, 0 - -.global gUnknown_8241378 -gUnknown_8241378: @ 8241378 -.string " Bufufufufufufufufu...\0" -.align 2, 0 - -.global gUnknown_8241390 -gUnknown_8241390: @ 8241390 -.string " Snort...{WAIT_PRESS}" -.string " Giggle...\0" -.align 2, 0 - -.global gUnknown_82413A8 -gUnknown_82413A8: @ 82413A8 -.string " Huh?\0" -.align 2, 0 - -.global gUnknown_82413B0 -gUnknown_82413B0: @ 82413B0 -.string " Snort...\0" -.align 2, 0 - -.global gUnknown_82413BC -gUnknown_82413BC: @ 82413BC -.string " It{APOSTROPHE}s no good{COMMA} {ARG_NICKNAME_0}.\n" -.string "He{APOSTROPHE}s not responding.\0" -.align 2, 0 - -.global gUnknown_82413EC -gUnknown_82413EC: @ 82413EC -.string " It{APOSTROPHE}s useless{COMMA} {ARG_NICKNAME_0}.\n" -.string "I{APOSTROPHE}m not getting any response.\0" -.align 2, 0 - -.global gUnknown_8241424 -gUnknown_8241424: @ 8241424 -.string " Gasp{COMMA} gasp...\0" -.align 2, 0 - -.global gUnknown_8241438 -gUnknown_8241438: @ 8241438 -.string " Tickle{COMMA} tickle{COMMA} tickle......\0" -.align 2, 0 - -.global gUnknown_824145C -gUnknown_824145C: @ 824145C -.string " ................................................\n" -.string "............................................................\n" -.string "............................................................\0" -.align 2, 0 - -.global gUnknown_8241508 -gUnknown_8241508: @ 8241508 -.string " Tickle{COMMA} tickle{COMMA} tickle{COMMA} tickle{COMMA}\n" -.string "tickle{COMMA} tickle{COMMA} tickle{COMMA} tickle{COMMA} tickle{COMMA} tickle{COMMA}\n" -.string "tickle{COMMA} tickle{COMMA} tickle{COMMA} tickle{COMMA} tickle{COMMA} tickle.\0" -.align 2, 0 - -.global gUnknown_82415A8 -gUnknown_82415A8: @ 82415A8 -.string " ....................................\0" -.align 2, 0 - -.global gUnknown_82415D0 -gUnknown_82415D0: @ 82415D0 -.string " Tickle{COMMA} tickle{COMMA} tickle{COMMA} tickle{COMMA}\n" -.string "tickle{COMMA} tickle.\0" -.align 2, 0 - -.global gUnknown_824160C -gUnknown_824160C: @ 824160C -.string " Tickle{COMMA} tickle{COMMA} tickle.\0" -.align 2, 0 - -.global gUnknown_824162C -gUnknown_824162C: @ 824162C -.string " Huh? Tickle him?{WAIT_PRESS}\n" -.string "...OK. It{APOSTROPHE}s worth a try.\0" -.align 2, 0 - -.global gUnknown_824165C -gUnknown_824165C: @ 824165C -.string " Hah? Tickle him?{WAIT_PRESS}\n" -.string "...OK. I{APOSTROPHE}ll try it.\0" -.align 2, 0 - -.global gUnknown_8241688 -gUnknown_8241688: @ 8241688 -.string "Attack him.\0" -.align 2, 0 - -.global gUnknown_8241694 -gUnknown_8241694: @ 8241694 -.string "Tickle him.\0" -.align 2, 0 - -.global gUnknown_82416A0 -gUnknown_82416A0: @ 82416A0 -.string " {ARG_NICKNAME_0}{COMMA} what should\n" -.string "we do?\0" -.align 2, 0 - -.global gUnknown_82416BC -gUnknown_82416BC: @ 82416BC -.string " Maybe he{APOSTROPHE}s sleeping while\n" -.string "on his feet?\0" -.align 2, 0 - -.global gUnknown_82416E8 -gUnknown_82416E8: @ 82416E8 -.string " It{APOSTROPHE}s useless.\n" -.string "He{APOSTROPHE}s not responding at all.\0" -.align 2, 0 - -.global gUnknown_8241718 -gUnknown_8241718: @ 8241718 -.string " Hellooooooooooooooo?!\0" -.align 2, 0 - -.global gUnknown_8241730 -gUnknown_8241730: @ 8241730 -.string " ..................\0" -.align 2, 0 - -.global gUnknown_8241744 -gUnknown_8241744: @ 8241744 -.string " Maybe he doesn{APOSTROPHE}t hear me?\n" -.string "Hello?!\0" -.align 2, 0 - -.global gUnknown_824176C -gUnknown_824176C: @ 824176C -.string " Hello?\0" -.align 2, 0 - -.global gUnknown_8241774 -gUnknown_8241774: @ 8241774 -.string " ......\0" -.align 2, 0 - -.global gUnknown_824177C -gUnknown_824177C: @ 824177C -.string " Excuse me?{WAIT_PRESS}\n" -.string "Are you maybe {ARG_NICKNAME_2}?\0" -.align 2, 0 - -.global gUnknown_82417A0 -gUnknown_82417A0: @ 82417A0 -.string " {ARG_NICKNAME_0}!{WAIT_PRESS}\n" -.string "Is that {ARG_NICKNAME_2} over there?\0" -.align 2, 0 - -.global gUnknown_82417C0 -gUnknown_82417C0: @ 82417C0 -.string " Look!\n" -.string "Over there!\0" -.align 2, 0 - -.global gUnknown_82417D4 -gUnknown_82417D4: @ 82417D4 -.string " This is the {COLOR_1 CYAN}Hill of the\n" -.string "Ancients{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_8241800 -gUnknown_8241800: @ 8241800 -.string " So this is the {COLOR_1 CYAN}Hill of\n" -.string "the Ancients{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_8241830 -gUnknown_8241830: @ 8241830 -.string " Yes! We{APOSTROPHE}ve finally made it\n" -.string "to the top{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8241864 -gUnknown_8241864: @ 8241864 -.string " Yes! We finally made it to\n" -.string "the top{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8241890 -gUnknown_8241890: @ 8241890 -.byte 0xf6, 0x00, 0x5b, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823E288 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xcf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southwest -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x3c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x28, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, north -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x28, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, west -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x28, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x28, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, east -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x28, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x20, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, west -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x28, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, west -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 9 -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x62, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 9 -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x62, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0x91, 0x04, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x01, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x0f, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x91, 0x04, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x28, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x0a, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xdb, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 41 -.byte 0xdb, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x0a, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x14, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, west -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, north -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82422C0 -gUnknown_82422C0: @ 82422C0 -.byte 0xf6, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823E288 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x3c, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x01, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82423F0 -gUnknown_82423F0: @ 82423F0 -.byte 0xf6, 0x00, 0x17, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823E288 -setAnimation 2 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x3c, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x01, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8242520 -gUnknown_8242520: @ 8242520 -.byte 0xf6, 0x00, 0x2d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823E288 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 24 -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xda, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x0a, CW, southwest -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, north -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southwest -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 24 -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8242850 -gUnknown_8242850: @ 8242850 -.byte 0xf6, 0x00, 0x64, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_823E288 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0x6b, 0x00, 0x00, 0x01, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8242990 -gUnknown_8242990: @ 8242990 -.byte 0x00, 0x04, 0x00, 0x00, 0x14, 0x29, 0x00, 0x02 -.4byte gUnknown_823E36C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x04, 0x00, 0x00, 0x14, 0x23, 0x00, 0x02 -.4byte gUnknown_823EC7C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82429C0 -gUnknown_82429C0: @ 82429C0 -.byte 0x00, 0x04, 0x00, 0x00, 0x10, 0x35, 0x02, 0x02 -.4byte gUnknown_823EF68 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00 -.byte 0x17, 0x35, 0x02, 0x02 -.4byte gUnknown_8241890 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x04, 0x00, 0x00, 0x11, 0x3b, 0x02, 0x02 -.4byte gUnknown_82422C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0x04, 0x00, 0x00, 0x16, 0x3b, 0x02, 0x02 -.4byte gUnknown_82423F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x61, 0x04, 0x00, 0x00, 0x14, 0x23, 0x00, 0x02 -.4byte gUnknown_8242520 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8242A38 -gUnknown_8242A38: @ 8242A38 -.byte 0x5b, 0x04, 0x00, 0x00 -.byte 0x14, 0x3a, 0x02, 0x02 -.4byte gUnknown_8242850 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8242A50 -gUnknown_8242A50: @ 8242A50 -.byte 0x00, 0x00, 0x01, 0x01, 0x14, 0x23, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8242A5C -gUnknown_8242A5C: @ 8242A5C -.byte 0x00, 0x00, 0x01, 0x01, 0x14, 0x33, 0x02, 0x02 -.4byte gUnknown_823EE98 - -.global gUnknown_8242A68 -gUnknown_8242A68: @ 8242A68 -.4byte gUnknown_823E2B4 - -.global gUnknown_8242A6C -gUnknown_8242A6C: @ 8242A6C -.4byte gUnknown_823E360 - -.global gUnknown_8242A70 -gUnknown_8242A70: @ 8242A70 -.4byte gUnknown_823EE8C - -.global gUnknown_8242A74 -gUnknown_8242A74: @ 8242A74 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8242A68 - -.global gUnknown_8242A9C -gUnknown_8242A9C: @ 8242A9C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8242990 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8242A50 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8242A6C - -.global gUnknown_8242AC4 -gUnknown_8242AC4: @ 8242AC4 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_82429C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8242A5C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8242A70 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8242A38 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8242B14 -gUnknown_8242B14: @ 8242B14 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8242A74 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8242A9C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8242AC4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8242B34 -gUnknown_8242B34: @ 8242B34 -.byte 0x14, 0x26, 0x00, 0x00, 0x01, 0x01, 0x01, 0x00 -.byte 0x17, 0x25, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x10, 0x25, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x11, 0x2a, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x16, 0x2a, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01 -.byte 0x14, 0x25, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x17, 0x23, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x14, 0x21, 0x00, 0x00, 0x01, 0x01, 0x02, 0x01, 0x10, 0x23, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01 -.byte 0x13, 0x25, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x14, 0x22, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x14, 0x46, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x14, 0x33, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01 -.byte 0x14, 0x39, 0x02, 0x00, 0x01, 0x01, 0x02, 0x01 - -.global gUnknown_8242BA4 -gUnknown_8242BA4: @ 8242BA4 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8242B14 -.4byte gUnknown_8242B34 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8242BB8 -gUnknown_8242BB8: @ 8242BB8 -.byte 0xf6, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0xbb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0xc1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x01, 0x00 -.byte 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x03, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x02, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8242E28 -gUnknown_8242E28: @ 8242E28 -.string "../data/ground/ground_data_d08p01_station.c\0" -.align 2, 0 - -.global gUnknown_8242E54 -gUnknown_8242E54: @ 8242E54 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242BB8 - -.global gUnknown_8242E60 -gUnknown_8242E60: @ 8242E60 -.byte 0xf6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0xe9, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8242E80 -gUnknown_8242E80: @ 8242E80 -.byte 0xf6, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8242EC0 -gUnknown_8242EC0: @ 8242EC0 -.byte 0xf6, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8242F00 -gUnknown_8242F00: @ 8242F00 -.byte 0xf6, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8242F40 -gUnknown_8242F40: @ 8242F40 -.byte 0xf6, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8242F80 -gUnknown_8242F80: @ 8242F80 -.byte 0xf6, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8242FC0 -gUnknown_8242FC0: @ 8242FC0 -.byte 0xf6, 0x00, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8243000 -gUnknown_8243000: @ 8243000 -.byte 0xf6, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8243030 -gUnknown_8243030: @ 8243030 -.byte 0xf6, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8243060 -gUnknown_8243060: @ 8243060 -.byte 0xf6, 0x00, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0xe9, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8243080 -gUnknown_8243080: @ 8243080 -.byte 0xf6, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0xe9, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82430A0 -gUnknown_82430A0: @ 82430A0 -.byte 0xf6, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0x08, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8243130 -gUnknown_8243130: @ 8243130 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82430A0 - -.global gUnknown_824313C -gUnknown_824313C: @ 824313C -.byte 0xf6, 0x00, 0x8c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x78 -setFlag 0x06 -.byte 0x6b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x08, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8243878 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824384C -.byte 0x44, 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8243818 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82437DC -.byte 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82437A8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8243778 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824373C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82436F8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82436B4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824367C -closeTextBox -pause 0x0f -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8243634 -closeTextBox -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824361C -closeTextBox -rotate 0x04, CW, west -pause 0x14 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82435FC -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82435D0 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82435A8 -closeTextBox -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824357C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8243560 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8243538 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824351C -closeTextBox -setFlag 0x06 -.byte 0x23, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -closeThread - -.global gUnknown_824351C -gUnknown_824351C: @ 824351C -.string " {ARG_NICKNAME_0}{COMMA} we{APOSTROPHE}d better\n" -.string "go.\0" -.align 2, 0 - -.global gUnknown_8243538 -gUnknown_8243538: @ 8243538 -.string " Aww{COMMA} no!\n" -.string "Are they catching up to us?\0" -.align 2, 0 - -.global gUnknown_8243560 -gUnknown_8243560: @ 8243560 -.string " {ARG_NICKNAME_0}{COMMA} we have to\n" -.string "roll.\0" -.align 2, 0 - -.global gUnknown_824357C -gUnknown_824357C: @ 824357C -.string " Whoa!\n" -.string "They{APOSTROPHE}re catching up to us already?\0" -.align 2, 0 - -.global gUnknown_82435A8 -gUnknown_82435A8: @ 82435A8 -.string " We have to get rid of {ARG_NICKNAME_0}\n" -.string "quickly...\0" -.align 2, 0 - -.global gUnknown_82435D0 -gUnknown_82435D0: @ 82435D0 -.string " They can{APOSTROPHE}t get away.\n" -.string "Not from all of us.\0" -.align 2, 0 - -.global gUnknown_82435FC -gUnknown_82435FC: @ 82435FC -.string " I think they went this way.\0" -.align 2, 0 - -.global gUnknown_824361C -gUnknown_824361C: @ 824361C -.string " Huh? I hear voices...\0" -.align 2, 0 - -.global gUnknown_8243634 -gUnknown_8243634: @ 8243634 -.string " Sorry{COMMA} I shouldn{APOSTROPHE}t complain.\n" -.string "We have to get away now{COMMA} period.\0" -.align 2, 0 - -.global gUnknown_824367C -gUnknown_824367C: @ 824367C -.string " I wish we could get back to\n" -.string "doing our rescue work...\0" -.align 2, 0 - -.global gUnknown_82436B4 -gUnknown_82436B4: @ 82436B4 -.string " I{APOSTROPHE}m sure many Pokémon are\n" -.string "suffering because of the calamities.\0" -.align 2, 0 - -.global gUnknown_82436F8 -gUnknown_82436F8: @ 82436F8 -.string " All sorts of places have\n" -.string "been affected by the natural disasters.\0" -.align 2, 0 - -.global gUnknown_824373C -gUnknown_824373C: @ 824373C -.string " I{APOSTROPHE}d really like to get back to\n" -.string "doing our rescue work...\0" -.align 2, 0 - -.global gUnknown_8243778 -gUnknown_8243778: @ 8243778 -.string " I bet there are many\n" -.string "Pokémon that need help.\0" -.align 2, 0 - -.global gUnknown_82437A8 -gUnknown_82437A8: @ 82437A8 -.string " So many places are hit\n" -.string "by the natural disasters...\0" -.align 2, 0 - -.global gUnknown_82437DC -gUnknown_82437DC: @ 82437DC -.string " But while we were moving{COMMA}\n" -.string "I couldn{APOSTROPHE}t help thinking...\0" -.align 2, 0 - -.global gUnknown_8243818 -gUnknown_8243818: @ 8243818 -.string " But I was thinking...\n" -.string "While we were on the way...\0" -.align 2, 0 - -.global gUnknown_824384C -gUnknown_824384C: @ 824384C -.string " Whew.\n" -.string "We{APOSTROPHE}ve sure traveled a long way.\0" -.align 2, 0 - -.global gUnknown_8243878 -gUnknown_8243878: @ 8243878 -.string " Whew!\n" -.string "We sure came a long way out.\0" -.align 2, 0 - -.global gUnknown_824389C -gUnknown_824389C: @ 824389C -.byte 0xf6, 0x00, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x02, CW, northwest -rotate 0x02, CCW, southwest -rotate 0x02, CW, northwest -rotate 0x02, CCW, west -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x86, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8243A1C -gUnknown_8243A1C: @ 8243A1C -.byte 0xf6, 0x00, 0xeb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0x08, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x03, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8243AAC -gUnknown_8243AAC: @ 8243AAC -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8243A1C - -.global gUnknown_8243AB8 -gUnknown_8243AB8: @ 8243AB8 -.byte 0xf6, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x23, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8243E38 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8243E0C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8243DE0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8243D94 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8243D3C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8243D10 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8243CC4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8243C78 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8243C78 -gUnknown_8243C78: @ 8243C78 -.string " We sure don{APOSTROPHE}t want to run\n" -.string "into them.\n" -.string "Let{APOSTROPHE}s get through this quickly.\0" -.align 2, 0 - -.global gUnknown_8243CC4 -gUnknown_8243CC4: @ 8243CC4 -.string " I wonder what became of\n" -.string "the Pokémon chasing us?\n" -.string "Are they in the dungeon?\0" -.align 2, 0 - -.global gUnknown_8243D10 -gUnknown_8243D10: @ 8243D10 -.string " I guess we got a little\n" -.string "careless{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_8243D3C -gUnknown_8243D3C: @ 8243D3C -.string " Well{COMMA} running into them\n" -.string "would be bad trouble.\n" -.string "Let{APOSTROPHE}s get through this...and fast.\0" -.align 2, 0 - -.global gUnknown_8243D94 -gUnknown_8243D94: @ 8243D94 -.string " Wonder what happened to\n" -.string "the Pokémon chasing us?\n" -.string "Are they in the dungeon?\0" -.align 2, 0 - -.global gUnknown_8243DE0 -gUnknown_8243DE0: @ 8243DE0 -.string " I think we got cocky and\n" -.string "careless{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_8243E0C -gUnknown_8243E0C: @ 8243E0C -.string " Ouch...{WAIT_PRESS}\n" -.string "We couldn{APOSTROPHE}t break through...\0" -.align 2, 0 - -.global gUnknown_8243E38 -gUnknown_8243E38: @ 8243E38 -.string " Urrggh...{WAIT_PRESS}\n" -.string "We couldn{APOSTROPHE}t get through...\0" -.align 2, 0 - -.global gUnknown_8243E64 -gUnknown_8243E64: @ 8243E64 -.byte 0xf6, 0x00, 0x19, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8243F34 -gUnknown_8243F34: @ 8243F34 -.byte 0xf6, 0x00, 0x29, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8243F64 -gUnknown_8243F64: @ 8243F64 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8243F34 - -.global gUnknown_8243F70 -gUnknown_8243F70: @ 8243F70 -.byte 0xf6, 0x00, 0x31, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8243FB0 -gUnknown_8243FB0: @ 8243FB0 -.byte 0xf6, 0x00, 0x38, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0x1d, 0x01, 0x03, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8243FE0 -gUnknown_8243FE0: @ 8243FE0 -.byte 0xf6, 0x00, 0x3e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0x1d, 0x01, 0x03, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8244010 -gUnknown_8244010: @ 8244010 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8243FE0 - -.global gUnknown_824401C -gUnknown_824401C: @ 824401C -.byte 0xf6, 0x00, 0x46, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x11, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824406C -gUnknown_824406C: @ 824406C -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824401C - -.global gUnknown_8244078 -gUnknown_8244078: @ 8244078 -.byte 0xf6, 0x00, 0x50, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x8e, 0x01, 0x00, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8244628 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824460C -.byte 0xd9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8244600 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82445F4 -.byte 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82445C8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82445A0 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8244584 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8244578 -.byte 0xd9, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824456C -.byte 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824454C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8244538 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x23, 0x00, 0x46, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x6b, 0x00, 0x00, 0x01 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x1e, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824454C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8244538 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x06, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x06, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x06, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x06, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x46, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x6b, 0x00, 0x00, 0x01 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x46, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x6b, 0x00, 0x00, 0x01 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x1e, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8244538 -gUnknown_8244538: @ 8244538 -.string " OK!\n" -.string "Let{APOSTROPHE}s go!\0" -.align 2, 0 - -.global gUnknown_824454C -gUnknown_824454C: @ 824454C -.string " All right!\n" -.string "Let{APOSTROPHE}s roll out!\0" -.align 2, 0 - -.global gUnknown_824456C -gUnknown_824456C: @ 824456C -.string "Rock Path.\0" -.align 2, 0 - -.global gUnknown_8244578 -gUnknown_8244578: @ 8244578 -.string "Lapis Cave.\0" -.align 2, 0 - -.global gUnknown_8244584 -gUnknown_8244584: @ 8244584 -.string " Which way should we go?\0" -.align 2, 0 - -.global gUnknown_82445A0 -gUnknown_82445A0: @ 82445A0 -.string " OK.\n" -.string "Let{APOSTROPHE}s go when you{APOSTROPHE}re ready.\0" -.align 2, 0 - -.global gUnknown_82445C8 -gUnknown_82445C8: @ 82445C8 -.string " All right.\n" -.string "We{APOSTROPHE}ll go when you{APOSTROPHE}re ready.\0" -.align 2, 0 - -.global gUnknown_82445F4 -gUnknown_82445F4: @ 82445F4 -.string "Not yet.\0" -.align 2, 0 - -.global gUnknown_8244600 -gUnknown_8244600: @ 8244600 -.string "All set!\0" -.align 2, 0 - -.global gUnknown_824460C -gUnknown_824460C: @ 824460C -.string " Hi{COMMA} {ARG_NICKNAME_0}.\n" -.string "Are you ready?\0" -.align 2, 0 - -.global gUnknown_8244628 -gUnknown_8244628: @ 8244628 -.string " Hey{COMMA} {ARG_NICKNAME_0}.\n" -.string "Are you all ready?\0" -.align 2, 0 - -.global gUnknown_8244648 -gUnknown_8244648: @ 8244648 -.byte 0xf6, 0x00, 0x9f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8244768 -gUnknown_8244768: @ 8244768 -.byte 0xf6, 0x00, 0xb4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0xc1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x03, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82447F8 -gUnknown_82447F8: @ 82447F8 -.byte 0x92, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8244768 - -.global gUnknown_8244804 -gUnknown_8244804: @ 8244804 -.byte 0xf6, 0x00, 0xc2, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x20, 0x00, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8244B7C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe8, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8244B3C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8244AF0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8244ACC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8244A7C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8244A34 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8244A14 -closeTextBox -.byte 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8244A14 -gUnknown_8244A14: @ 8244A14 -.string " {ARG_NICKNAME_0}{COMMA} let{APOSTROPHE}s do our\n" -.string "best!\0" -.align 2, 0 - -.global gUnknown_8244A34 -gUnknown_8244A34: @ 8244A34 -.string " It looks like we have to go\n" -.string "through the {COLOR_1 YELLOW_4}Lapis Cave{END_COLOR_TEXT_1} to move on.\0" -.align 2, 0 - -.global gUnknown_8244A7C -gUnknown_8244A7C: @ 8244A7C -.string " ............{WAIT_PRESS}\n" -.string "I guess that path we took just loops back\n" -.string "to where it started.\0" -.align 2, 0 - -.global gUnknown_8244ACC -gUnknown_8244ACC: @ 8244ACC -.string " {ARG_NICKNAME_0}{COMMA} let{APOSTROPHE}s give it\n" -.string "our best!\0" -.align 2, 0 - -.global gUnknown_8244AF0 -gUnknown_8244AF0: @ 8244AF0 -.string " If we want to move on{COMMA}\n" -.string "I think our only choice is the {COLOR_1 YELLOW_4}Lapis Cave{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_8244B3C -gUnknown_8244B3C: @ 8244B3C -.string " ............{WAIT_PRESS}\n" -.string "I guess that path just loops back to the\n" -.string "start.\0" -.align 2, 0 - -.global gUnknown_8244B7C -gUnknown_8244B7C: @ 8244B7C -.string " What the...?{WAIT_PRESS}\n" -.string "Isn{APOSTROPHE}t this where we started from?!\0" -.align 2, 0 - -.global gUnknown_8244BB4 -gUnknown_8244BB4: @ 8244BB4 -.byte 0xf6, 0x00, 0xe6, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x30, 0x00, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8244C94 -gUnknown_8244C94: @ 8244C94 -.byte 0xf6, 0x00, 0xf7, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0x08, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x03, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8244D24 -gUnknown_8244D24: @ 8244D24 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8244C94 - -.global gUnknown_8244D30 -gUnknown_8244D30: @ 8244D30 -.byte 0xf6, 0x00, 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8243E38 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8243E0C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8244F14 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8244ACC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8244ED0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8244A14 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8244ED0 -gUnknown_8244ED0: @ 8244ED0 -.string " If we don{APOSTROPHE}t get through here\n" -.string "fast{COMMA} they{APOSTROPHE}ll catch up to us.\0" -.align 2, 0 - -.global gUnknown_8244F14 -gUnknown_8244F14: @ 8244F14 -.string " We have to get through this\n" -.string "fast{COMMA} or they{APOSTROPHE}ll catch up to us.\0" -.align 2, 0 - -.global gUnknown_8244F58 -gUnknown_8244F58: @ 8244F58 -.byte 0xf6, 0x00, 0x22, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E28 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8245028 -gUnknown_8245028: @ 8245028 -.byte 0x90, 0x00, 0x00, 0x00, 0x0a, 0x15, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8245040 -gUnknown_8245040: @ 8245040 -.byte 0x00, 0x02, 0x00, 0x00, 0x07, 0x1b, 0x02, 0x02 -.4byte gUnknown_8242E80 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x02, 0x00, 0x00 -.byte 0x03, 0x1b, 0x02, 0x02 -.4byte gUnknown_8242EC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8245070 -gUnknown_8245070: @ 8245070 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x15, 0x00, 0x02 -.4byte gUnknown_8242F00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x22, 0x13, 0x00, 0x02 -.4byte gUnknown_8242F40 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82450A0 -gUnknown_82450A0: @ 82450A0 -.byte 0x00, 0x02, 0x00, 0x00, 0x07, 0x1b, 0x02, 0x02 -.4byte gUnknown_8242F80 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x02, 0x00, 0x00 -.byte 0x03, 0x1b, 0x02, 0x02 -.4byte gUnknown_8242FC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82450D0 -gUnknown_82450D0: @ 82450D0 -.byte 0x00, 0x02, 0x00, 0x00, 0x07, 0x1b, 0x02, 0x02 -.4byte gUnknown_8243000 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x02, 0x00, 0x00, 0x03, 0x1b, 0x02, 0x02 -.4byte gUnknown_8243030 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8245100 -gUnknown_8245100: @ 8245100 -.byte 0x90, 0x00, 0x00, 0x00, 0x0a, 0x15, 0x00 -warpDungeon 0x00 -.byte 0x00, 0x91, 0x00, 0x00, 0x00 -.byte 0x08, 0x1f, 0x00 -warpDungeon 0x00 -.byte 0x00 - -.global gUnknown_8245130 -gUnknown_8245130: @ 8245130 -.byte 0x00, 0x02, 0x00, 0x00, 0x03, 0x1a, 0x00, 0x02 -.4byte gUnknown_824313C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x02, 0x00, 0x00, 0x08, 0x1a, 0x00, 0x02 -.4byte gUnknown_824389C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8245160 -gUnknown_8245160: @ 8245160 -.byte 0x00, 0x02, 0x00, 0x00, 0x16, 0x1a, 0x00, 0x02 -.4byte gUnknown_8243AB8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00 -.byte 0x1b, 0x1a, 0x00, 0x02 -.4byte gUnknown_8243E64 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8245190 -gUnknown_8245190: @ 8245190 -.byte 0x22, 0x00, 0x00, 0x00, 0x1b, 0x1a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8243F70 -.4byte gUnknown_8243FB0 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82451A8 -gUnknown_82451A8: @ 82451A8 -.byte 0x00, 0x02, 0x00, 0x00, 0x17, 0x1a, 0x00, 0x02 -.4byte gUnknown_8244078 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x1b, 0x1a, 0x00, 0x02 -.4byte gUnknown_8244648 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82451D8 -gUnknown_82451D8: @ 82451D8 -.byte 0x00, 0x02, 0x00, 0x00 -.byte 0x1a, 0x16, 0x00, 0x02 -.4byte gUnknown_8244804 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00, 0x21, 0x14, 0x00, 0x02 -.4byte gUnknown_8244BB4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8245208 -gUnknown_8245208: @ 8245208 -.byte 0x00, 0x02, 0x00, 0x00, 0x16, 0x1a, 0x00, 0x02 -.4byte gUnknown_8244D30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00, 0x1b, 0x1a, 0x00, 0x02 -.4byte gUnknown_8244F58 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8245238 -gUnknown_8245238: @ 8245238 -.byte 0x04, 0x00, 0x04, 0x02 -.byte 0x0a, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8242E60 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8245250 -gUnknown_8245250: @ 8245250 -.byte 0x04, 0x00, 0x04, 0x02, 0x0a, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8243060 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x04, 0x03, 0x08, 0x1f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8243080 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8245280 -gUnknown_8245280: @ 8245280 -.byte 0x00, 0x00, 0x01, 0x01, 0x1b, 0x19, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824528C -gUnknown_824528C: @ 824528C -.byte 0x00, 0x00, 0x01, 0x01, 0x18, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8245298 -gUnknown_8245298: @ 8245298 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x18, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82452A4 -gUnknown_82452A4: @ 82452A4 -.byte 0x00, 0x00, 0x01, 0x01, 0x18, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82452B0 -gUnknown_82452B0: @ 82452B0 -.byte 0x0c, 0x03, 0x00, 0x00, 0x1c, 0x10, 0x00, 0x00 -.4byte gUnknown_8244010 - -.global gUnknown_82452BC -gUnknown_82452BC: @ 82452BC -.4byte gUnknown_8242E54 - -.global gUnknown_82452C0 -gUnknown_82452C0: @ 82452C0 -.4byte gUnknown_8243130 - -.global gUnknown_82452C4 -gUnknown_82452C4: @ 82452C4 -.4byte gUnknown_8243AAC - -.global gUnknown_82452C8 -gUnknown_82452C8: @ 82452C8 -.4byte gUnknown_8243F64 - -.global gUnknown_82452CC -gUnknown_82452CC: @ 82452CC -.4byte gUnknown_824406C - -.global gUnknown_82452D0 -gUnknown_82452D0: @ 82452D0 -.4byte gUnknown_82447F8 - -.global gUnknown_82452D4 -gUnknown_82452D4: @ 82452D4 -.4byte gUnknown_8244D24 - -.global gUnknown_82452D8 -gUnknown_82452D8: @ 82452D8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8245028 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8245238 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82452BC -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8245040 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8245070 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82450A0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82450D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8245100 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8245250 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82453C8 -gUnknown_82453C8: @ 82453C8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8245130 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8245280 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82452C0 - -.global gUnknown_82453F0 -gUnknown_82453F0: @ 82453F0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8245160 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824528C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82452C4 - -.global gUnknown_8245418 -gUnknown_8245418: @ 8245418 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8245190 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82452B0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82452C8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82451A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82452CC - -.global gUnknown_8245468 -gUnknown_8245468: @ 8245468 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82451D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8245298 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82452D0 - -.global gUnknown_8245490 -gUnknown_8245490: @ 8245490 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8245208 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82452A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82452D4 - -.global gUnknown_82454B8 -gUnknown_82454B8: @ 82454B8 -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_82452D8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82453C8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82453F0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8245418 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8245468 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8245490 - -.global gUnknown_82454E8 -gUnknown_82454E8: @ 82454E8 -.byte 0x19, 0x1a, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x1d, 0x1a, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x22, 0x11, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00 - -.global gUnknown_8245500 -gUnknown_8245500: @ 8245500 -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_82454B8 -.4byte gUnknown_82454E8 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8245514 -gUnknown_8245514: @ 8245514 -.byte 0xf6, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245554 -.byte 0x08, 0x00, 0x00, 0x00, 0xc2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8245554 -gUnknown_8245554: @ 8245554 -.string "../data/ground/ground_data_d08p02_station.c\0" -.align 2, 0 - -.global gUnknown_8245580 -gUnknown_8245580: @ 8245580 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245514 - -.global gUnknown_824558C -gUnknown_824558C: @ 824558C -.byte 0xf6, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245554 -.byte 0x08, 0x00, 0x00, 0x00, 0xc2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82456F8 -closeTextBox -pause 0x04 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82456B8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824568C -closeTextBox -pause 0x1e -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824568C -gUnknown_824568C: @ 824568C -.string " They expect us to stop and\n" -.string "wait for them?\0" -.align 2, 0 - -.global gUnknown_82456B8 -gUnknown_82456B8: @ 82456B8 -.string " Sure. Like we{APOSTROPHE}re really\n" -.string "going to wait because they said so.\0" -.align 2, 0 - -.global gUnknown_82456F8 -gUnknown_82456F8: @ 82456F8 -.string " Stop right there!\n" -.string "Don{APOSTROPHE}t let them get away!\0" -.align 2, 0 - -.global gUnknown_8245728 -gUnknown_8245728: @ 8245728 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824558C - -.global gUnknown_8245734 -gUnknown_8245734: @ 8245734 -.byte 0xf6, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245554 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x6b, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, northwest -.byte 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x22, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245A84 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245A58 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245A28 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82459F8 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82459CC -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82459C0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0b, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82459A4 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x89, 0x50, 0x00, 0x02, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82459A4 -gUnknown_82459A4: @ 82459A4 -.string " Whoa! Here they come!\n" -.string "Run!\0" -.align 2, 0 - -.global gUnknown_82459C0 -gUnknown_82459C0: @ 82459C0 -.string " Catch {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_82459CC -gUnknown_82459CC: @ 82459CC -.string " Hey{COMMA} look! There they are!\n" -.string "Over there!\0" -.align 2, 0 - -.global gUnknown_82459F8 -gUnknown_82459F8: @ 82459F8 -.string " Where{APOSTROPHE}s the Pokémon mob\n" -.string "that{APOSTROPHE}s after us?\0" -.align 2, 0 - -.global gUnknown_8245A28 -gUnknown_8245A28: @ 8245A28 -.string " Whew!\n" -.string "Finally{COMMA} we made it through that cave.\0" -.align 2, 0 - -.global gUnknown_8245A58 -gUnknown_8245A58: @ 8245A58 -.string " Where are the Pokémon\n" -.string "who are chasing us?\0" -.align 2, 0 - -.global gUnknown_8245A84 -gUnknown_8245A84: @ 8245A84 -.string " Whew...\n" -.string "We finally got through that cave.\0" -.align 2, 0 - -.global gUnknown_8245AB0 -gUnknown_8245AB0: @ 8245AB0 -.byte 0xf6, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245554 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x99, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, northwest -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x50, 0x00, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8245C00 -gUnknown_8245C00: @ 8245C00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0a, 0x11, 0x00, 0x02 -.4byte gUnknown_8245734 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00 -.byte 0x0c, 0x11, 0x00, 0x02 -.4byte gUnknown_8245AB0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8245C30 -gUnknown_8245C30: @ 8245C30 -.byte 0x00, 0x00, 0x01, 0x01, 0x11, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8245C3C -gUnknown_8245C3C: @ 8245C3C -.4byte gUnknown_8245580 - -.global gUnknown_8245C40 -gUnknown_8245C40: @ 8245C40 -.4byte gUnknown_8245728 - -.global gUnknown_8245C44 -gUnknown_8245C44: @ 8245C44 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8245C3C - -.global gUnknown_8245C6C -gUnknown_8245C6C: @ 8245C6C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8245C00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8245C30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8245C40 - -.global gUnknown_8245C94 -gUnknown_8245C94: @ 8245C94 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8245C44 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8245C6C - -.global gUnknown_8245CA4 -gUnknown_8245CA4: @ 8245CA4 -.byte 0x0f, 0x18, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x13, 0x18, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00 - -.global gUnknown_8245CB4 -gUnknown_8245CB4: @ 8245CB4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8245C94 -.4byte gUnknown_8245CA4 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8245CC8 -gUnknown_8245CC8: @ 8245CC8 -.byte 0xf6, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -.byte 0xbb, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8245F58 -gUnknown_8245F58: @ 8245F58 -.string "../data/ground/ground_data_d09p01_station.c\0" -.align 2, 0 - -.global gUnknown_8245F84 -gUnknown_8245F84: @ 8245F84 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245CC8 - -.global gUnknown_8245F90 -gUnknown_8245F90: @ 8245F90 -.byte 0xf6, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -.byte 0xe9, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8245FB0 -gUnknown_8245FB0: @ 8245FB0 -.byte 0xf6, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8245FF0 -gUnknown_8245FF0: @ 8245FF0 -.byte 0xf6, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8246030 -gUnknown_8246030: @ 8246030 -.byte 0xf6, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8246070 -gUnknown_8246070: @ 8246070 -.byte 0xf6, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82460B0 -gUnknown_82460B0: @ 82460B0 -.byte 0xf6, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82460F0 -gUnknown_82460F0: @ 82460F0 -.byte 0xf6, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8246130 -gUnknown_8246130: @ 8246130 -.byte 0xf6, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8246160 -gUnknown_8246160: @ 8246160 -.byte 0xf6, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8246190 -gUnknown_8246190: @ 8246190 -.byte 0xf6, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -.byte 0xe9, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82461B0 -gUnknown_82461B0: @ 82461B0 -.byte 0xf6, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -.byte 0xe9, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82461D0 -gUnknown_82461D0: @ 82461D0 -.byte 0xf6, 0x00, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82464D8 -closeTextBox -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82464A8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8246498 -closeTextBox -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xf7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824646C -pause 0x78 -.byte 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8246450 -pause 0x78 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8246440 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8246424 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8246400 -closeTextBox -.byte 0x44, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3b, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8246400 -gUnknown_8246400: @ 8246400 -.string " ...I think...{WAIT_PRESS}\n" -.string "They{APOSTROPHE}re gone.\0" -.align 2, 0 - -.global gUnknown_8246424 -gUnknown_8246424: @ 8246424 -.string " ........................\0" -.align 2, 0 - -.global gUnknown_8246440 -gUnknown_8246440: @ 8246440 -.string " ............\0" -.align 2, 0 - -.global gUnknown_8246450 -gUnknown_8246450: @ 8246450 -.string "........................\0" -.align 2, 0 - -.global gUnknown_824646C -gUnknown_824646C: @ 824646C -.string "Tromp{COMMA} tromp{COMMA} tromp{COMMA} tromp{COMMA} tromp!\0" -.align 2, 0 - -.global gUnknown_8246498 -gUnknown_8246498: @ 8246498 -.string " Rooooooaaaar!\0" -.align 2, 0 - -.global gUnknown_82464A8 -gUnknown_82464A8: @ 82464A8 -.string " They had to go this way!\n" -.string "Keep your eyes open!\0" -.align 2, 0 - -.global gUnknown_82464D8 -gUnknown_82464D8: @ 82464D8 -.string " Darn it!\n" -.string "Where{APOSTROPHE}d they go?\0" -.align 2, 0 - -.global gUnknown_82464F8 -gUnknown_82464F8: @ 82464F8 -.byte 0x92, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82461D0 - -.global gUnknown_8246504 -gUnknown_8246504: @ 8246504 -.byte 0xf6, 0x00, 0xb2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8246544 -gUnknown_8246544: @ 8246544 -.byte 0xf6, 0x00, 0xb9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x6b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8246944 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8246918 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, east -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82468E8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82468B8 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, north -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8246888 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, east -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8246854 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8246824 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8246824 -gUnknown_8246824: @ 8246824 -.string " Let{APOSTROPHE}s go as soon as we{APOSTROPHE}re\n" -.string "ready{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_8246854 -gUnknown_8246854: @ 8246854 -.string " {ARG_NICKNAME_0}{COMMA} we need to\n" -.string "roll as soon as we{APOSTROPHE}re ready.\0" -.align 2, 0 - -.global gUnknown_8246888 -gUnknown_8246888: @ 8246888 -.string " We have to get over this\n" -.string "mountain to get away.\0" -.align 2, 0 - -.global gUnknown_82468B8 -gUnknown_82468B8: @ 82468B8 -.string " But...{WAIT_PRESS}\n" -.string "There isn{APOSTROPHE}t any point hiding here.\0" -.align 2, 0 - -.global gUnknown_82468E8 -gUnknown_82468E8: @ 82468E8 -.string " But...{WAIT_PRESS}\n" -.string "There{APOSTROPHE}s no point hiding out here.\0" -.align 2, 0 - -.global gUnknown_8246918 -gUnknown_8246918: @ 8246918 -.string " Whew.\n" -.string "I think we managed to evade them.\0" -.align 2, 0 - -.global gUnknown_8246944 -gUnknown_8246944: @ 8246944 -.string " Whew.\n" -.string "I think we gave them the slip.\0" -.align 2, 0 - -.global gUnknown_824696C -gUnknown_824696C: @ 824696C -.byte 0xf6, 0x00, 0xeb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x4c, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x6b, 0x00, 0x00, 0x01, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, west -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, north -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, west -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8246ACC -gUnknown_8246ACC: @ 8246ACC -.byte 0xf6, 0x00, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8246AFC -gUnknown_8246AFC: @ 8246AFC -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8246ACC - -.global gUnknown_8246B08 -gUnknown_8246B08: @ 8246B08 -.byte 0xf6, 0x00, 0x0c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -.byte 0x1d, 0x01, 0x02, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8246B38 -gUnknown_8246B38: @ 8246B38 -.byte 0xf6, 0x00, 0x12, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -.byte 0x1d, 0x01, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8246B68 -gUnknown_8246B68: @ 8246B68 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8246B38 - -.global gUnknown_8246B74 -gUnknown_8246B74: @ 8246B74 -.byte 0xf6, 0x00, 0x1a, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -.byte 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8246BC4 -gUnknown_8246BC4: @ 8246BC4 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8246B74 - -.global gUnknown_8246BD0 -gUnknown_8246BD0: @ 8246BD0 -.byte 0xf6, 0x00, 0x24, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x8e, 0x01, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd8, 0x01, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82472E0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82472C8 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82472C0 -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82472B4 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247290 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247258 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247230 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82471F8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82471DC -.byte 0xd9, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82471D0 -.byte 0xd9, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82471C4 -.byte 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82471A0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824715C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247148 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247114 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x23, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x99, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x99, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x1e, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82470F0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247148 -closeTextBox -.byte 0xc8, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x09, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x09, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x09, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x99, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x6b, 0x00, 0x99, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x1e, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82470F0 -gUnknown_82470F0: @ 82470F0 -.string " Sure thing!\n" -.string "Let{APOSTROPHE}s roll on out!\0" -.align 2, 0 - -.global gUnknown_8247114 -gUnknown_8247114: @ 8247114 -.string " It sounds very rough{COMMA}\n" -.string "but let{APOSTROPHE}s try our best!\0" -.align 2, 0 - -.global gUnknown_8247148 -gUnknown_8247148: @ 8247148 -.string " OK!\n" -.string "Let{APOSTROPHE}s go!\0" -.align 2, 0 - -.global gUnknown_824715C -gUnknown_824715C: @ 824715C -.string " It looks like one wicked\n" -.string "place{COMMA} but let{APOSTROPHE}s give it our best!\0" -.align 2, 0 - -.global gUnknown_82471A0 -gUnknown_82471A0: @ 82471A0 -.string " All right!\n" -.string "Let{APOSTROPHE}s roll on out!\0" -.align 2, 0 - -.global gUnknown_82471C4 -gUnknown_82471C4: @ 82471C4 -.string "Rock Path.\0" -.align 2, 0 - -.global gUnknown_82471D0 -gUnknown_82471D0: @ 82471D0 -.string "Mt. Blaze.\0" -.align 2, 0 - -.global gUnknown_82471DC -gUnknown_82471DC: @ 82471DC -.string " Which way should we go?\0" -.align 2, 0 - -.global gUnknown_82471F8 -gUnknown_82471F8: @ 82471F8 -.string " Try to be quick.\n" -.string "Other Pokémon are out looking for us.\0" -.align 2, 0 - -.global gUnknown_8247230 -gUnknown_8247230: @ 8247230 -.string " I{APOSTROPHE}ll be waiting while you get\n" -.string "ready.\0" -.align 2, 0 - -.global gUnknown_8247258 -gUnknown_8247258: @ 8247258 -.string " Other Pokémon are\n" -.string "wandering about{COMMA} so make it quick.\0" -.align 2, 0 - -.global gUnknown_8247290 -gUnknown_8247290: @ 8247290 -.string " I{APOSTROPHE}ll wait while you get ready.\0" -.align 2, 0 - -.global gUnknown_82472B4 -gUnknown_82472B4: @ 82472B4 -.string "*Not yet.\0" -.align 2, 0 - -.global gUnknown_82472C0 -gUnknown_82472C0: @ 82472C0 -.string "Yes.\0" -.align 2, 0 - -.global gUnknown_82472C8 -gUnknown_82472C8: @ 82472C8 -.string " {ARG_NICKNAME_0}{COMMA} are you\n" -.string "ready?\0" -.align 2, 0 - -.global gUnknown_82472E0 -gUnknown_82472E0: @ 82472E0 -.string " {ARG_NICKNAME_0}{COMMA} are you ready\n" -.string "to roll?\0" -.align 2, 0 - -.global gUnknown_8247300 -gUnknown_8247300: @ 8247300 -.byte 0xf6, 0x00, 0x7c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x99, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, northwest -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x99, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8247450 -gUnknown_8247450: @ 8247450 -.byte 0xf6, 0x00, 0x94, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -.byte 0x08, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82474E0 -gUnknown_82474E0: @ 82474E0 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247450 - -.global gUnknown_82474EC -gUnknown_82474EC: @ 82474EC -.byte 0xf6, 0x00, 0xa2, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247AE8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247ABC -closeTextBox -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xcf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, east -.byte 0x2e, 0x08, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247AA0 -closeTextBox -setFlag 0x06 -.byte 0x86, 0x00, 0x00, 0x02, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x02, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247A78 -closeTextBox -pause 0x0f -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247A44 -closeTextBox -pause 0x0f -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247A04 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82479D0 -closeTextBox -pause 0x0f -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8246498 -closeTextBox -pause 0x0f -.byte 0x4c, 0x00, 0x00, 0x00, 0xf7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824646C -pause 0x78 -.byte 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8246450 -pause 0x78 -closeTextBox -pause 0x1e -.byte 0x2e, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8246440 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8246424 -closeTextBox -setFlag 0x06 -pause 0x0f -.byte 0x6b, 0x00, 0x00, 0x02, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, southwest -pause 0x14 -.byte 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82479C4 -setFlag 0x06 -rotate 0x04, 0x0b, east -.byte 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247984 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824793C -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824793C -gUnknown_824793C: @ 824793C -.string " If we{APOSTROPHE}re going to get away{COMMA}\n" -.string "we{APOSTROPHE}ll have to go over the mountain.\0" -.align 2, 0 - -.global gUnknown_8247984 -gUnknown_8247984: @ 8247984 -.string " We{APOSTROPHE}ll have to get over this\n" -.string "mountain to get away from them.\0" -.align 2, 0 - -.global gUnknown_82479C4 -gUnknown_82479C4: @ 82479C4 -.string " ...Whew.\0" -.align 2, 0 - -.global gUnknown_82479D0 -gUnknown_82479D0: @ 82479D0 -.string " They should be around here still.\n" -.string "Keep looking!\0" -.align 2, 0 - -.global gUnknown_8247A04 -gUnknown_8247A04: @ 8247A04 -.string " No{COMMA} that{APOSTROPHE}s impossible.{WAIT_PRESS}\n" -.string "Nobody could ever get past it.\0" -.align 2, 0 - -.global gUnknown_8247A44 -gUnknown_8247A44: @ 8247A44 -.string " Do you think they tried getting over\n" -.string "Mt. Blaze?\0" -.align 2, 0 - -.global gUnknown_8247A78 -gUnknown_8247A78: @ 8247A78 -.string " Where are they?\n" -.string "{ARG_NICKNAME_0} and that sidekick.\0" -.align 2, 0 - -.global gUnknown_8247AA0 -gUnknown_8247AA0: @ 8247AA0 -.string " Ssh!{WAIT_PRESS}\n" -.string "Someone{APOSTROPHE}s coming.\0" -.align 2, 0 - -.global gUnknown_8247ABC -gUnknown_8247ABC: @ 8247ABC -.string " Ouch...{WAIT_PRESS}\n" -.string "We couldn{APOSTROPHE}t break through...\0" -.align 2, 0 - -.global gUnknown_8247AE8 -gUnknown_8247AE8: @ 8247AE8 -.string " Urrggh...{WAIT_PRESS}\n" -.string "We couldn{APOSTROPHE}t get through...\0" -.align 2, 0 - -.global gUnknown_8247B14 -gUnknown_8247B14: @ 8247B14 -.byte 0xf6, 0x00, 0xec, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x02, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x0a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x02, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, east -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, 0x0b, west -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8247C94 -gUnknown_8247C94: @ 8247C94 -.byte 0xf6, 0x00, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -.byte 0x08, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8247D24 -gUnknown_8247D24: @ 8247D24 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247C94 - -.global gUnknown_8247D30 -gUnknown_8247D30: @ 8247D30 -.byte 0xf6, 0x00, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x20, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824807C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe8, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824803C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247FF4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247FD0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247F80 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247F40 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247F20 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8247F20 -gUnknown_8247F20: @ 8247F20 -.string " {ARG_NICKNAME_0}{COMMA} let{APOSTROPHE}s do our\n" -.string "best!\0" -.align 2, 0 - -.global gUnknown_8247F40 -gUnknown_8247F40: @ 8247F40 -.string " It looks like we have to go\n" -.string "over {COLOR_1 YELLOW_4}Mt. Blaze{END_COLOR_TEXT_1} to move on.\0" -.align 2, 0 - -.global gUnknown_8247F80 -gUnknown_8247F80: @ 8247F80 -.string " ............{WAIT_PRESS}\n" -.string "I guess that path we took just loops back\n" -.string "to where it started.\0" -.align 2, 0 - -.global gUnknown_8247FD0 -gUnknown_8247FD0: @ 8247FD0 -.string " {ARG_NICKNAME_0}{COMMA} let{APOSTROPHE}s give it\n" -.string "our best!\0" -.align 2, 0 - -.global gUnknown_8247FF4 -gUnknown_8247FF4: @ 8247FF4 -.string " If we want to move on{COMMA}\n" -.string "I think our only choice is {COLOR_1 YELLOW_4}Mt. Blaze{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_824803C -gUnknown_824803C: @ 824803C -.string " ............{WAIT_PRESS}\n" -.string "I guess that path just loops back to the\n" -.string "start.\0" -.align 2, 0 - -.global gUnknown_824807C -gUnknown_824807C: @ 824807C -.string " What the...?{WAIT_PRESS}\n" -.string "Isn{APOSTROPHE}t this where we started from?!\0" -.align 2, 0 - -.global gUnknown_82480B4 -gUnknown_82480B4: @ 82480B4 -.byte 0xf6, 0x00, 0x37, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x40, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8248194 -gUnknown_8248194: @ 8248194 -.byte 0xf6, 0x00, 0x48, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -.byte 0x08, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8248224 -gUnknown_8248224: @ 8248224 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248194 - -.global gUnknown_8248230 -gUnknown_8248230: @ 8248230 -.byte 0xf6, 0x00, 0x56, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247AE8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247ABC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248414 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247FD0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82483D0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8247F20 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82483D0 -gUnknown_82483D0: @ 82483D0 -.string " If we don{APOSTROPHE}t get through here\n" -.string "fast{COMMA} they{APOSTROPHE}ll catch up to us.\0" -.align 2, 0 - -.global gUnknown_8248414 -gUnknown_8248414: @ 8248414 -.string " We have to get through this\n" -.string "fast{COMMA} or they{APOSTROPHE}ll catch up to us.\0" -.align 2, 0 - -.global gUnknown_8248458 -gUnknown_8248458: @ 8248458 -.byte 0xf6, 0x00, 0x73, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F58 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8248528 -gUnknown_8248528: @ 8248528 -.byte 0x90, 0x00, 0x00, 0x00, 0x1c, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8248540 -gUnknown_8248540: @ 8248540 -.byte 0x00, 0x04, 0x00, 0x00, 0x16, 0x21, 0x02, 0x02 -.4byte gUnknown_8245FB0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x16, 0x23, 0x02, 0x02 -.4byte gUnknown_8245FF0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8248570 -gUnknown_8248570: @ 8248570 -.byte 0x00, 0x00, 0x00, 0x00, 0x16, 0x18, 0x02, 0x02 -.4byte gUnknown_8246030 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x16, 0x16, 0x02, 0x02 -.4byte gUnknown_8246070 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82485A0 -gUnknown_82485A0: @ 82485A0 -.byte 0x00, 0x04, 0x00, 0x00, 0x16, 0x21, 0x02, 0x02 -.4byte gUnknown_82460B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x16, 0x23, 0x02, 0x02 -.4byte gUnknown_82460F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82485D0 -gUnknown_82485D0: @ 82485D0 -.byte 0x00, 0x04, 0x00, 0x00, 0x16, 0x21, 0x02, 0x02 -.4byte gUnknown_8246130 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x16, 0x23, 0x02, 0x02 -.4byte gUnknown_8246160 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8248600 -gUnknown_8248600: @ 8248600 -.byte 0x90, 0x00, 0x00, 0x00, 0x1c, 0x1e, 0x00 -warpDungeon 0x00 -.byte 0x00, 0x91, 0x00, 0x00, 0x00 -.byte 0x1c, 0x23, 0x00 -warpDungeon 0x00 -.byte 0x00 - -.global gUnknown_8248630 -gUnknown_8248630: @ 8248630 -.byte 0x00, 0x03, 0x00, 0x00, 0x03, 0x25, 0x00, 0x02 -.4byte gUnknown_8246544 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x03, 0x00, 0x00, 0x04, 0x24, 0x00, 0x02 -.4byte gUnknown_824696C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8248660 -gUnknown_8248660: @ 8248660 -.byte 0x22, 0x00, 0x00, 0x00, 0x18, 0x1a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8246B08 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8248678 -gUnknown_8248678: @ 8248678 -.byte 0x00, 0x02, 0x00, 0x00 -.byte 0x15, 0x1a, 0x00, 0x02 -.4byte gUnknown_8246BD0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00, 0x18, 0x1a, 0x00, 0x02 -.4byte gUnknown_8247300 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82486A8 -gUnknown_82486A8: @ 82486A8 -.byte 0x00, 0x02, 0x00, 0x00, 0x15, 0x1a, 0x00, 0x02 -.4byte gUnknown_82474EC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00, 0x18, 0x1a, 0x00, 0x02 -.4byte gUnknown_8247B14 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82486D8 -gUnknown_82486D8: @ 82486D8 -.byte 0x00, 0x02, 0x00, 0x00 -.byte 0x15, 0x18, 0x00, 0x02 -.4byte gUnknown_8247D30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00, 0x18, 0x16, 0x00, 0x02 -.4byte gUnknown_82480B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8248708 -gUnknown_8248708: @ 8248708 -.byte 0x00, 0x02, 0x00, 0x00, 0x15, 0x1a, 0x00, 0x02 -.4byte gUnknown_8248230 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00, 0x18, 0x1a, 0x00, 0x02 -.4byte gUnknown_8248458 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8248738 -gUnknown_8248738: @ 8248738 -.byte 0x04, 0x00, 0x04, 0x03 -.byte 0x1c, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8245F90 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8248750 -gUnknown_8248750: @ 8248750 -.byte 0x04, 0x00, 0x04, 0x03, 0x1c, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8246190 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x04, 0x03, 0x1c, 0x23, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82461B0 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8248780 -gUnknown_8248780: @ 8248780 -.byte 0x00, 0x00, 0x01, 0x01, 0x16, 0x19, 0x02, 0x02 -.4byte gUnknown_8246504 - -.global gUnknown_824878C -gUnknown_824878C: @ 824878C -.byte 0x00, 0x00, 0x01, 0x01, 0x16, 0x19, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8248798 -gUnknown_8248798: @ 8248798 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x16, 0x19, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82487A4 -gUnknown_82487A4: @ 82487A4 -.byte 0x00, 0x00, 0x01, 0x01, 0x16, 0x19, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82487B0 -gUnknown_82487B0: @ 82487B0 -.byte 0x0c, 0x03, 0x00, 0x00, 0x11, 0x13, 0x00, 0x00 -.4byte gUnknown_8246B68 - -.global gUnknown_82487BC -gUnknown_82487BC: @ 82487BC -.4byte gUnknown_8245F84 - -.global gUnknown_82487C0 -gUnknown_82487C0: @ 82487C0 -.4byte gUnknown_82464F8 - -.global gUnknown_82487C4 -gUnknown_82487C4: @ 82487C4 -.4byte gUnknown_8246AFC - -.global gUnknown_82487C8 -gUnknown_82487C8: @ 82487C8 -.4byte gUnknown_8246BC4 - -.global gUnknown_82487CC -gUnknown_82487CC: @ 82487CC -.4byte gUnknown_82474E0 - -.global gUnknown_82487D0 -gUnknown_82487D0: @ 82487D0 -.4byte gUnknown_8247D24 - -.global gUnknown_82487D4 -gUnknown_82487D4: @ 82487D4 -.4byte gUnknown_8248224 - -.global gUnknown_82487D8 -gUnknown_82487D8: @ 82487D8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8248528 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8248738 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82487BC -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8248540 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8248570 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82485A0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82485D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8248600 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8248750 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82488C8 -gUnknown_82488C8: @ 82488C8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8248630 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8248780 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82487C0 - -.global gUnknown_82488F0 -gUnknown_82488F0: @ 82488F0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8248660 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82487B0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82487C4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8248678 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82487C8 - -.global gUnknown_8248940 -gUnknown_8248940: @ 8248940 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82486A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824878C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82487CC - -.global gUnknown_8248968 -gUnknown_8248968: @ 8248968 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82486D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8248798 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82487D0 - -.global gUnknown_8248990 -gUnknown_8248990: @ 8248990 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8248708 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82487A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82487D4 - -.global gUnknown_82489B8 -gUnknown_82489B8: @ 82489B8 -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_82487D8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82488C8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82488F0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8248940 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8248968 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8248990 - -.global gUnknown_82489E8 -gUnknown_82489E8: @ 82489E8 -.byte 0x0b, 0x25, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x11, 0x1e, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x15, 0x1a, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x0f, 0x24, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x15, 0x1d, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x18, 0x1a, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x16, 0x14, 0x02, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x0b, 0x25, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x03, 0x25, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x0f, 0x24, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x04, 0x24, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00 - -.global gUnknown_8248A40 -gUnknown_8248A40: @ 8248A40 -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_82489B8 -.4byte gUnknown_82489E8 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8248A54 -gUnknown_8248A54: @ 8248A54 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248C94 -.byte 0x08, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x03, 0x01, 0x00, 0x11, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x06, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8248C94 -gUnknown_8248C94: @ 8248C94 -.string "../data/ground/ground_data_d09p02_station.c\0" -.align 2, 0 - -.global gUnknown_8248CC0 -gUnknown_8248CC0: @ 8248CC0 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248A54 - -.global gUnknown_8248CCC -gUnknown_8248CCC: @ 8248CCC -.byte 0xf6, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248C94 -.byte 0xd3, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248D9C -.byte 0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248D94 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248D8C -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x1e, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8248D8C -gUnknown_8248D8C: @ 8248D8C -.string "*No.\0" -.align 2, 0 - -.global gUnknown_8248D94 -gUnknown_8248D94: @ 8248D94 -.string "Yes.\0" -.align 2, 0 - -.global gUnknown_8248D9C -gUnknown_8248D9C: @ 8248D9C -.string "Keep going?\0" -.align 2, 0 - -.global gUnknown_8248DA8 -gUnknown_8248DA8: @ 8248DA8 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248CCC - -.global gUnknown_8248DB4 -gUnknown_8248DB4: @ 8248DB4 -.byte 0xf6, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248C94 -.byte 0xbb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd3, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248F5C -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248D94 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248D8C -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x0a, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x04, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd3, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248F44 -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248D94 -.byte 0xd9, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248D8C -.byte 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x1e, 0x00, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8248F44 -gUnknown_8248F44: @ 8248F44 -.string "Return to the entrance?\0" -.align 2, 0 - -.global gUnknown_8248F5C -gUnknown_8248F5C: @ 8248F5C -.string "Return to the rescue team base?\0" -.align 2, 0 - -.global gUnknown_8248F7C -gUnknown_8248F7C: @ 8248F7C -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248DB4 - -.global gUnknown_8248F88 -gUnknown_8248F88: @ 8248F88 -.byte 0xf6, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248C94 -.byte 0xe9, 0x00, 0x41, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8248FA8 -gUnknown_8248FA8: @ 8248FA8 -.byte 0xf6, 0x00, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248C94 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8248FE8 -gUnknown_8248FE8: @ 8248FE8 -.byte 0xf6, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248C94 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8249028 -gUnknown_8249028: @ 8249028 -.byte 0xf6, 0x00, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248C94 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8249068 -gUnknown_8249068: @ 8249068 -.byte 0xf6, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248C94 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82490A8 -gUnknown_82490A8: @ 82490A8 -.byte 0xf6, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248C94 -.byte 0xe8, 0x00, 0x51, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82490D8 -gUnknown_82490D8: @ 82490D8 -.byte 0xf6, 0x00, 0x89, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248C94 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8249108 -gUnknown_8249108: @ 8249108 -.byte 0xf6, 0x00, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248C94 -.byte 0xab, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0xc4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00 -.byte 0xc4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82491D8 -gUnknown_82491D8: @ 82491D8 -.byte 0x92, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8249108 - -.global gUnknown_82491E4 -gUnknown_82491E4: @ 82491E4 -.byte 0xf6, 0x00, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248C94 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82493D8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82493B4 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8249378 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8249344 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8249344 -gUnknown_8249344: @ 8249344 -.string " But we came close.{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s keep doing our best!\0" -.align 2, 0 - -.global gUnknown_8249378 -gUnknown_8249378: @ 8249378 -.string " But we almost made it.{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s give it our best again!\0" -.align 2, 0 - -.global gUnknown_82493B4 -gUnknown_82493B4: @ 82493B4 -.string " Hmm...{WAIT_PRESS}\n" -.string "That didn{APOSTROPHE}t work out...\0" -.align 2, 0 - -.global gUnknown_82493D8 -gUnknown_82493D8: @ 82493D8 -.string " Hmm...{WAIT_PRESS}\n" -.string "Well{COMMA} that didn{APOSTROPHE}t go well.\0" -.align 2, 0 - -.global gUnknown_8249404 -gUnknown_8249404: @ 8249404 -.byte 0xf6, 0x00, 0xba, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248C94 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82494C4 -gUnknown_82494C4: @ 82494C4 -.byte 0x91, 0x00, 0x00, 0x00, 0x1c, 0x1c, 0x02 -warpDungeon 0x00 -.byte 0x00 - -.global gUnknown_82494DC -gUnknown_82494DC: @ 82494DC -.byte 0x00, 0x04, 0x00, 0x00, 0x1c, 0x26, 0x02, 0x02 -.4byte gUnknown_8248FA8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1c, 0x29, 0x02, 0x02 -.4byte gUnknown_8248FE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824950C -gUnknown_824950C: @ 824950C -.byte 0x00, 0x04, 0x00, 0x00, 0x1c, 0x26, 0x02, 0x02 -.4byte gUnknown_8249028 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1c, 0x29, 0x02, 0x02 -.4byte gUnknown_8249068 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824953C -gUnknown_824953C: @ 824953C -.byte 0x00, 0x04, 0x00, 0x00, 0x1c, 0x26, 0x02, 0x02 -.4byte gUnknown_82490A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1c, 0x29, 0x02, 0x02 -.4byte gUnknown_82490D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824956C -gUnknown_824956C: @ 824956C -.byte 0x00, 0x02, 0x00, 0x00, 0x1f, 0x26, 0x00, 0x02 -.4byte gUnknown_82491E4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x06, 0x00, 0x00, 0x1a, 0x26, 0x00, 0x02 -.4byte gUnknown_8249404 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824959C -gUnknown_824959C: @ 824959C -.byte 0x04, 0x00, 0x04, 0x03, 0x1c, 0x1c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8248F88 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82495B4 -gUnknown_82495B4: @ 82495B4 -.byte 0x00, 0x00, 0x01, 0x01, 0x1c, 0x25, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82495C0 -gUnknown_82495C0: @ 82495C0 -.byte 0x0f, 0x03, 0x00, 0x00, 0x15, 0x0c, 0x00, 0x00 -.4byte gUnknown_8248DA8 -.byte 0x0f, 0x03, 0x00, 0x00, 0x15, 0x2a, 0x00, 0x00 -.4byte gUnknown_8248F7C - -.global gUnknown_82495D8 -gUnknown_82495D8: @ 82495D8 -.4byte gUnknown_8248CC0 - -.global gUnknown_82495DC -gUnknown_82495DC: @ 82495DC -.4byte gUnknown_82491D8 - -.global gUnknown_82495E0 -gUnknown_82495E0: @ 82495E0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82494C4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824959C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82495C0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82495D8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82494DC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_824950C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_824953C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82496A8 -gUnknown_82496A8: @ 82496A8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_824956C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82495B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82495DC - -.global gUnknown_82496D0 -gUnknown_82496D0: @ 82496D0 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_82495E0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82496A8 - -.global gUnknown_82496E0 -gUnknown_82496E0: @ 82496E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82496E8 -gUnknown_82496E8: @ 82496E8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82496D0 -.4byte gUnknown_82496E0 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_82496FC -gUnknown_82496FC: @ 82496FC -.byte 0xf6, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824973C -.byte 0x08, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824973C -gUnknown_824973C: @ 824973C -.string "../data/ground/ground_data_d09p03_station.c\0" -.align 2, 0 - -.global gUnknown_8249768 -gUnknown_8249768: @ 8249768 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82496FC - -.global gUnknown_8249774 -gUnknown_8249774: @ 8249774 -.byte 0xf6, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824973C -.byte 0x08, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82497F4 -gUnknown_82497F4: @ 82497F4 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8249774 - -.global gUnknown_8249800 -gUnknown_8249800: @ 8249800 -.byte 0xf6, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824973C -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x18, 0x00, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x30, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82498B0 -gUnknown_82498B0: @ 82498B0 -.byte 0xf6, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824973C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B530 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B504 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xcc, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B4F4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B4CC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B4B4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B48C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B47C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B458 -closeTextBox -.byte 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B42C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B3E4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B3AC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B368 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B318 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B2F4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B2A4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B268 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B230 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B1EC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B1BC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B168 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B130 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B0F8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B0A4 -closeTextBox -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B070 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B048 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B018 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AFF4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AFB8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AFF4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824B018 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AFB0 -closeTextBox -.byte 0xdb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AFA0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AF84 -closeTextBox -.byte 0xdb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AF5C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AF50 -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xec, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0x28, 0x01, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AF44 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AF2C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AF08 -closeTextBox -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AEEC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AECC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AEB8 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AE90 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AE74 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AE4C -closeTextBox -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AE3C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AE24 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AE08 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824ADB4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AD70 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AD58 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AD18 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AD08 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824ACCC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824ACC0 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xec, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x28, 0x01, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x2e, 0x15, 0x01, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AC88 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AC5C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AC38 -.byte 0x2e, 0x15, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824ABFC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824ABE0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AB8C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AB4C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824ABE0 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AAF8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AAB8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824ABE0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AA6C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824AA38 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824A9FC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824A9BC -closeTextBox -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x4c, 0x00, 0x00, 0x00, 0xda, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824A9AC -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x50 -.byte 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824A984 -closeTextBox -.byte 0xe8, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824A97C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824A958 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824A934 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824A928 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824A918 -.byte 0x4c, 0x00, 0x00, 0x00, 0xcb, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x64 -.byte 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0b, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824A90C -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824A8E8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824A8C8 -pause 0x0a -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824A89C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824A860 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824A82C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824A7F8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824A7C4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824A790 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x48, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_824A790 -gUnknown_824A790: @ 824A790 -.string " Anyway...{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s get off Mt. Blaze ourselves.\0" -.align 2, 0 - -.global gUnknown_824A7C4 -gUnknown_824A7C4: @ 824A7C4 -.string " But I{APOSTROPHE}m glad {ARG_NICKNAME_2}\n" -.string "understood us. That was key.\0" -.align 2, 0 - -.global gUnknown_824A7F8 -gUnknown_824A7F8: @ 824A7F8 -.string " Anyway...{WAIT_PRESS}\n" -.string "We should get off Mt. Blaze{COMMA} too.\0" -.align 2, 0 - -.global gUnknown_824A82C -gUnknown_824A82C: @ 824A82C -.string " But it{APOSTROPHE}s really great that\n" -.string "{ARG_NICKNAME_2} understood us.\0" -.align 2, 0 - -.global gUnknown_824A860 -gUnknown_824A860: @ 824A860 -.string " So{COMMA} anyway...{WAIT_PRESS}\n" -.string "We should get off Mt. Blaze ourselves.\0" -.align 2, 0 - -.global gUnknown_824A89C -gUnknown_824A89C: @ 824A89C -.string " But I{APOSTROPHE}m glad {ARG_NICKNAME_2}\n" -.string "understood us. Really.\0" -.align 2, 0 - -.global gUnknown_824A8C8 -gUnknown_824A8C8: @ 824A8C8 -.string " Ewwwwwww{COMMA} that was\n" -.string "scary!\0" -.align 2, 0 - -.global gUnknown_824A8E8 -gUnknown_824A8E8: @ 824A8E8 -.string " Awww{COMMA} sheesh{COMMA} that was\n" -.string "scary!\0" -.align 2, 0 - -.global gUnknown_824A90C -gUnknown_824A90C: @ 824A90C -.string " Whew...\0" -.align 2, 0 - -.global gUnknown_824A918 -gUnknown_824A918: @ 824A918 -.string "Gyaaaaaaaah!\0" -.align 2, 0 - -.global gUnknown_824A928 -gUnknown_824A928: @ 824A928 -.string " Farewell!\0" -.align 2, 0 - -.global gUnknown_824A934 -gUnknown_824A934: @ 824A934 -.string " Oh...\n" -.string "(Does it need to do that?)\0" -.align 2, 0 - -.global gUnknown_824A958 -gUnknown_824A958: @ 824A958 -.string " I was only preparing to\n" -.string "take off.\0" -.align 2, 0 - -.global gUnknown_824A97C -gUnknown_824A97C: @ 824A97C -.string " No.\0" -.align 2, 0 - -.global gUnknown_824A984 -gUnknown_824A984: @ 824A984 -.string " Waaaah!\n" -.string "Is...is there anything else?\0" -.align 2, 0 - -.global gUnknown_824A9AC -gUnknown_824A9AC: @ 824A9AC -.string "Gyaaaaaaaaaah!\0" -.align 2, 0 - -.global gUnknown_824A9BC -gUnknown_824A9BC: @ 824A9BC -.string " If you do not forget...{WAIT_PRESS}\n" -.string "the courage you showed in facing me.\0" -.align 2, 0 - -.global gUnknown_824A9FC -gUnknown_824A9FC: @ 824A9FC -.string " You{APOSTROPHE}ve made me believe that\n" -.string "you will honor that promise.\0" -.align 2, 0 - -.global gUnknown_824AA38 -gUnknown_824AA38: @ 824AA38 -.string " ............{WAIT_PRESS}\n" -.string "I will hold you to that promise.\0" -.align 2, 0 - -.global gUnknown_824AA6C -gUnknown_824AA6C: @ 824AA6C -.string " We{APOSTROPHE}ll investigate what{APOSTROPHE}s\n" -.string "behind the natural calamities.{WAIT_PRESS}\n" -.string "I promise.\0" -.align 2, 0 - -.global gUnknown_824AAB8 -gUnknown_824AAB8: @ 824AAB8 -.string " We{APOSTROPHE}re being hunted{COMMA} so we\n" -.string "can{APOSTROPHE}t get to it right away...\0" -.align 2, 0 - -.global gUnknown_824AAF8 -gUnknown_824AAF8: @ 824AAF8 -.string " We{APOSTROPHE}ll get to the bottom of\n" -.string "what{APOSTROPHE}s causing the natural calamities.{WAIT_PRESS}\n" -.string "I promise.\0" -.align 2, 0 - -.global gUnknown_824AB4C -gUnknown_824AB4C: @ 824AB4C -.string " We{APOSTROPHE}re being chased{COMMA} so we\n" -.string "can{APOSTROPHE}t get on it right away...\0" -.align 2, 0 - -.global gUnknown_824AB8C -gUnknown_824AB8C: @ 824AB8C -.string " We{APOSTROPHE}ll get to the bottom of\n" -.string "what{APOSTROPHE}s causing the natural disasters.{WAIT_PRESS}\n" -.string "I promise.\0" -.align 2, 0 - -.global gUnknown_824ABE0 -gUnknown_824ABE0: @ 824ABE0 -.string " But we{APOSTROPHE}re a rescue team.\0" -.align 2, 0 - -.global gUnknown_824ABFC -gUnknown_824ABFC: @ 824ABFC -.string " We{APOSTROPHE}re fugitives{COMMA} so we can{APOSTROPHE}t\n" -.string "get to it right away...\0" -.align 2, 0 - -.global gUnknown_824AC38 -gUnknown_824AC38: @ 824AC38 -.string " Waaah!\n" -.string "We will! We{APOSTROPHE}ll get on it!\0" -.align 2, 0 - -.global gUnknown_824AC5C -gUnknown_824AC5C: @ 824AC5C -.string " Aiyiyi!\n" -.string "We will! We will do it right away!\0" -.align 2, 0 - -.global gUnknown_824AC88 -gUnknown_824AC88: @ 824AC88 -.string " Whoa{COMMA} whoa{COMMA} whoa!\n" -.string "We{APOSTROPHE}ll get to it! Right away!\0" -.align 2, 0 - -.global gUnknown_824ACC0 -gUnknown_824ACC0: @ 824ACC0 -.string "Gyaaaaah!\0" -.align 2, 0 - -.global gUnknown_824ACCC -gUnknown_824ACCC: @ 824ACCC -.string " ...Of course{COMMA} that{APOSTROPHE}s not\n" -.string "possible right now{COMMA} but...\0" -.align 2, 0 - -.global gUnknown_824AD08 -gUnknown_824AD08: @ 824AD08 -.string " OK. I promise.\0" -.align 2, 0 - -.global gUnknown_824AD18 -gUnknown_824AD18: @ 824AD18 -.string " ...Of course{COMMA} we can{APOSTROPHE}t get\n" -.string "to that right away{COMMA} but...\0" -.align 2, 0 - -.global gUnknown_824AD58 -gUnknown_824AD58: @ 824AD58 -.string " All right.\n" -.string "I promise.\0" -.align 2, 0 - -.global gUnknown_824AD70 -gUnknown_824AD70: @ 824AD70 -.string " And stop the disasters\n" -.string "from sowing more destruction and\n" -.string "suffering.\0" -.align 2, 0 - -.global gUnknown_824ADB4 -gUnknown_824ADB4: @ 824ADB4 -.string " Promise me that you will\n" -.string "find the cause of the calamities that\n" -.string "wrack our world...\0" -.align 2, 0 - -.global gUnknown_824AE08 -gUnknown_824AE08: @ 824AE08 -.string " And...{WAIT_PRESS}\n" -.string "Promise me this.\0" -.align 2, 0 - -.global gUnknown_824AE24 -gUnknown_824AE24: @ 824AE24 -.string " Get through Mt. Blaze.\0" -.align 2, 0 - -.global gUnknown_824AE3C -gUnknown_824AE3C: @ 824AE3C -.string " You may pass.\0" -.align 2, 0 - -.global gUnknown_824AE4C -gUnknown_824AE4C: @ 824AE4C -.string " It felt like my knees turned\n" -.string "to jelly.\0" -.align 2, 0 - -.global gUnknown_824AE74 -gUnknown_824AE74: @ 824AE74 -.string " Whew... That was scary...\0" -.align 2, 0 - -.global gUnknown_824AE90 -gUnknown_824AE90: @ 824AE90 -.string " I thought my knees turned\n" -.string "to jelly.\0" -.align 2, 0 - -.global gUnknown_824AEB8 -gUnknown_824AEB8: @ 824AEB8 -.string " Whew... My gosh...\0" -.align 2, 0 - -.global gUnknown_824AECC -gUnknown_824AECC: @ 824AECC -.string " I thought I would keel over.\0" -.align 2, 0 - -.global gUnknown_824AEEC -gUnknown_824AEEC: @ 824AEEC -.string " Whew... That was rough...\0" -.align 2, 0 - -.global gUnknown_824AF08 -gUnknown_824AF08: @ 824AF08 -.string " I trust that you aren{APOSTROPHE}t lying.\0" -.align 2, 0 - -.global gUnknown_824AF2C -gUnknown_824AF2C: @ 824AF2C -.string " ............{WAIT_PRESS}" -.string "Fine.\0" -.align 2, 0 - -.global gUnknown_824AF44 -gUnknown_824AF44: @ 824AF44 -.string " Aiyiyiyi!\0" -.align 2, 0 - -.global gUnknown_824AF50 -gUnknown_824AF50: @ 824AF50 -.string "Gyaaaaaah!\0" -.align 2, 0 - -.global gUnknown_824AF5C -gUnknown_824AF5C: @ 824AF5C -.string " ....................................\0" -.align 2, 0 - -.global gUnknown_824AF84 -gUnknown_824AF84: @ 824AF84 -.string " ........................\0" -.align 2, 0 - -.global gUnknown_824AFA0 -gUnknown_824AFA0: @ 824AFA0 -.string " ............\0" -.align 2, 0 - -.global gUnknown_824AFB0 -gUnknown_824AFB0: @ 824AFB0 -.string " ......\0" -.align 2, 0 - -.global gUnknown_824AFB8 -gUnknown_824AFB8: @ 824AFB8 -.string " If you think I{APOSTROPHE}m lying...{WAIT_PRESS}\n" -.string "Please{COMMA} look at my eyes!\0" -.align 2, 0 - -.global gUnknown_824AFF4 -gUnknown_824AFF4: @ 824AFF4 -.string " It{APOSTROPHE}s true!\n" -.string "Please believe me!\0" -.align 2, 0 - -.global gUnknown_824B018 -gUnknown_824B018: @ 824B018 -.string " If you think I{APOSTROPHE}m lying...{WAIT_PRESS}\n" -.string "Look at my eyes!\0" -.align 2, 0 - -.global gUnknown_824B048 -gUnknown_824B048: @ 824B048 -.string " I{APOSTROPHE}m not lying to you.\n" -.string "Believe me.\0" -.align 2, 0 - -.global gUnknown_824B070 -gUnknown_824B070: @ 824B070 -.string " ..................{WAIT_PRESS}\n" -.string "Do you say that sincerely?\0" -.align 2, 0 - -.global gUnknown_824B0A4 -gUnknown_824B0A4: @ 824B0A4 -.string " But we want to help other\n" -.string "Pokémon that are suffering from these\n" -.string "natural disasters.\0" -.align 2, 0 - -.global gUnknown_824B0F8 -gUnknown_824B0F8: @ 824B0F8 -.string " We{APOSTROPHE}re fugitives now{COMMA} so\n" -.string "we can{APOSTROPHE}t do anything...\0" -.align 2, 0 - -.global gUnknown_824B130 -gUnknown_824B130: @ 824B130 -.string " Natural calamities are\n" -.string "occurring all over the place.\0" -.align 2, 0 - -.global gUnknown_824B168 -gUnknown_824B168: @ 824B168 -.string " You have to realize{COMMA} this\n" -.string "mountain isn{APOSTROPHE}t the only place that{APOSTROPHE}s\n" -.string "suffering.\0" -.align 2, 0 - -.global gUnknown_824B1BC -gUnknown_824B1BC: @ 824B1BC -.string " We{APOSTROPHE}re here only because\n" -.string "we were chased here.\0" -.align 2, 0 - -.global gUnknown_824B1EC -gUnknown_824B1EC: @ 824B1EC -.string " But we want to help\n" -.string "Pokémon in these times of natural\n" -.string "disasters.\0" -.align 2, 0 - -.global gUnknown_824B230 -gUnknown_824B230: @ 824B230 -.string " We can{APOSTROPHE}t do anything\n" -.string "because we{APOSTROPHE}re fugitives now.\0" -.align 2, 0 - -.global gUnknown_824B268 -gUnknown_824B268: @ 824B268 -.string " Natural calamities are\n" -.string "happening in all sorts of places.\0" -.align 2, 0 - -.global gUnknown_824B2A4 -gUnknown_824B2A4: @ 824B2A4 -.string " And you should know{COMMA} this\n" -.string "mountain isn{APOSTROPHE}t the only place that is\n" -.string "suffering.\0" -.align 2, 0 - -.global gUnknown_824B2F4 -gUnknown_824B2F4: @ 824B2F4 -.string " We were chased to this\n" -.string "mountain...\0" -.align 2, 0 - -.global gUnknown_824B318 -gUnknown_824B318: @ 824B318 -.string " But we want to help\n" -.string "Pokémon that are suffering from these\n" -.string "natural disasters.\0" -.align 2, 0 - -.global gUnknown_824B368 -gUnknown_824B368: @ 824B368 -.string " We can{APOSTROPHE}t do anything to help\n" -.string "because we{APOSTROPHE}re on the run now...\0" -.align 2, 0 - -.global gUnknown_824B3AC -gUnknown_824B3AC: @ 824B3AC -.string " Natural disasters are\n" -.string "breaking out all over the place.\0" -.align 2, 0 - -.global gUnknown_824B3E4 -gUnknown_824B3E4: @ 824B3E4 -.string " And listen{COMMA} this mountain\n" -.string "isn{APOSTROPHE}t the only place that is suffering.\0" -.align 2, 0 - -.global gUnknown_824B42C -gUnknown_824B42C: @ 824B42C -.string " We came here because we\n" -.string "were chased here.\0" -.align 2, 0 - -.global gUnknown_824B458 -gUnknown_824B458: @ 824B458 -.string " We{APOSTROPHE}re not here to cause\n" -.string "trouble.\0" -.align 2, 0 - -.global gUnknown_824B47C -gUnknown_824B47C: @ 824B47C -.string " Wait! Listen!\0" -.align 2, 0 - -.global gUnknown_824B48C -gUnknown_824B48C: @ 824B48C -.string " We{APOSTROPHE}re not here to cause\n" -.string "any trouble.\0" -.align 2, 0 - -.global gUnknown_824B4B4 -gUnknown_824B4B4: @ 824B4B4 -.string " Wait! Please listen!\0" -.align 2, 0 - -.global gUnknown_824B4CC -gUnknown_824B4CC: @ 824B4CC -.string " We didn{APOSTROPHE}t come to cause any\n" -.string "trouble.\0" -.align 2, 0 - -.global gUnknown_824B4F4 -gUnknown_824B4F4: @ 824B4F4 -.string " Wait!\n" -.string "Hold it!\0" -.align 2, 0 - -.global gUnknown_824B504 -gUnknown_824B504: @ 824B504 -.string " I{APOSTROPHE}m not done!\n" -.string "I{APOSTROPHE}m not finished yet!\0" -.align 2, 0 - -.global gUnknown_824B530 -gUnknown_824B530: @ 824B530 -.string "Urggggh!\0" -.align 2, 0 - -.global gUnknown_824B53C -gUnknown_824B53C: @ 824B53C -.byte 0xf6, 0x00, 0x33, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824973C -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe8, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x93, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_824B75C -gUnknown_824B75C: @ 824B75C -.byte 0xf6, 0x00, 0x58, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824973C -setAnimation 22 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 24 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 25 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 24 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 25 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 24 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 25 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xdb, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 5 -pause 0x2d -.byte 0x4c, 0x00, 0x00, 0x00, 0xdb, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x70, 0x00, 0x99, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x10 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xcb, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x04, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824B9EC -gUnknown_824B9EC: @ 824B9EC -.byte 0xf6, 0x00, 0x84, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824973C -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x72, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x00, 0x00, 0x00, 0x72, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_824BA7C -gUnknown_824BA7C: @ 824BA7C -.byte 0xf6, 0x00, 0x90, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824973C -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x00, 0x00, 0x00, 0x72, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x72, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_824BB0C -gUnknown_824BB0C: @ 824BB0C -.byte 0x00, 0x04, 0x00, 0x00, 0x25, 0x1a, 0x02, 0x02 -.4byte gUnknown_82498B0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x20, 0x1a, 0x00, 0x02 -.4byte gUnknown_824B53C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x65, 0x00, 0x00, 0x00, 0x22, 0x16, 0x02, 0x02 -.4byte gUnknown_824B75C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824BB54 -gUnknown_824BB54: @ 824BB54 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x18, 0x00, 0x02 -.4byte gUnknown_8249800 -.byte 0x04, 0x00, 0x01, 0x01, 0x1d, 0x12, 0x02, 0x02 -.4byte gUnknown_824B9EC -.byte 0x04, 0x00, 0x01, 0x01, 0x27, 0x12, 0x02, 0x02 -.4byte gUnknown_824BA7C - -.global gUnknown_824BB78 -gUnknown_824BB78: @ 824BB78 -.4byte gUnknown_8249768 - -.global gUnknown_824BB7C -gUnknown_824BB7C: @ 824BB7C -.4byte gUnknown_82497F4 - -.global gUnknown_824BB80 -gUnknown_824BB80: @ 824BB80 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824BB78 - -.global gUnknown_824BBA8 -gUnknown_824BBA8: @ 824BBA8 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_824BB0C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_824BB54 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824BB7C - -.global gUnknown_824BBD0 -gUnknown_824BBD0: @ 824BBD0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824BB80 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824BBA8 - -.global gUnknown_824BBE0 -gUnknown_824BBE0: @ 824BBE0 -.byte 0x15, 0x1a, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00 - -.global gUnknown_824BBE8 -gUnknown_824BBE8: @ 824BBE8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_824BBD0 -.4byte gUnknown_824BBE0 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_824BBFC -gUnknown_824BBFC: @ 824BBFC -.byte 0xf6, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0xbb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x1d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x01, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x03, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x05, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x06, 0x18, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x06, 0x18, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824BE8C -gUnknown_824BE8C: @ 824BE8C -.string "../data/ground/ground_data_d10p01_station.c\0" -.align 2, 0 - -.global gUnknown_824BEB8 -gUnknown_824BEB8: @ 824BEB8 -.byte 0x94, 0x01, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BBFC - -.global gUnknown_824BEC4 -gUnknown_824BEC4: @ 824BEC4 -.byte 0xf6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0xe9, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824BEE4 -gUnknown_824BEE4: @ 824BEE4 -.byte 0xf6, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824BF24 -gUnknown_824BF24: @ 824BF24 -.byte 0xf6, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824BF64 -gUnknown_824BF64: @ 824BF64 -.byte 0xf6, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824BFA4 -gUnknown_824BFA4: @ 824BFA4 -.byte 0xf6, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824BFE4 -gUnknown_824BFE4: @ 824BFE4 -.byte 0xf6, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824C024 -gUnknown_824C024: @ 824C024 -.byte 0xf6, 0x00, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824C094 -gUnknown_824C094: @ 824C094 -.byte 0xf6, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824C0C4 -gUnknown_824C0C4: @ 824C0C4 -.byte 0xf6, 0x00, 0x71, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824C0F4 -gUnknown_824C0F4: @ 824C0F4 -.byte 0xf6, 0x00, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0xe9, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824C114 -gUnknown_824C114: @ 824C114 -.byte 0xf6, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0xe9, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824C134 -gUnknown_824C134: @ 824C134 -.byte 0xf6, 0x00, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0xc6, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xc6, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824C204 -gUnknown_824C204: @ 824C204 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824C134 - -.global gUnknown_824C210 -gUnknown_824C210: @ 824C210 -.byte 0xf6, 0x00, 0x93, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0xc8, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824C290 -gUnknown_824C290: @ 824C290 -.byte 0xf6, 0x00, 0x9e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824C63C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824C5F8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824C5A8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824C560 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824C520 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824C4C8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824C48C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824C430 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, west -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824C430 -gUnknown_824C430: @ 824C430 -.string " We can only go forward.{WAIT_PRESS}\n" -.string "We{APOSTROPHE}ll just have to keep our spirits up\n" -.string "and keep going{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_824C48C -gUnknown_824C48C: @ 824C48C -.string " But hiding out in this area\n" -.string "isn{APOSTROPHE}t the answer either...\0" -.align 2, 0 - -.global gUnknown_824C4C8 -gUnknown_824C4C8: @ 824C4C8 -.string " We can only go forward!{WAIT_PRESS}\n" -.string "We{APOSTROPHE}ll just have to go for it and get\n" -.string "through this{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_824C520 -gUnknown_824C520: @ 824C520 -.string " But there{APOSTROPHE}s no point in us\n" -.string "sticking around here forever...\0" -.align 2, 0 - -.global gUnknown_824C560 -gUnknown_824C560: @ 824C560 -.string " It will be horribly cold.\n" -.string "I{APOSTROPHE}d rather not go if I didn{APOSTROPHE}t have to...\0" -.align 2, 0 - -.global gUnknown_824C5A8 -gUnknown_824C5A8: @ 824C5A8 -.string " It{APOSTROPHE}s going to be awfully cold.\n" -.string "It{APOSTROPHE}s not anywhere I really want to go...\0" -.align 2, 0 - -.global gUnknown_824C5F8 -gUnknown_824C5F8: @ 824C5F8 -.string " OK.\n" -.string "We don{APOSTROPHE}t have a choice--we have to\n" -.string "get through this place.\0" -.align 2, 0 - -.global gUnknown_824C63C -gUnknown_824C63C: @ 824C63C -.string " ...So{COMMA} we do have to get\n" -.string "through this{COMMA} huh?\0" -.align 2, 0 - -.global gUnknown_824C670 -gUnknown_824C670: @ 824C670 -.byte 0xf6, 0x00, 0xbc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_824C6D0 -gUnknown_824C6D0: @ 824C6D0 -.byte 0xf6, 0x00, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824C700 -gUnknown_824C700: @ 824C700 -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824C6D0 - -.global gUnknown_824C70C -gUnknown_824C70C: @ 824C70C -.byte 0xf6, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0x1d, 0x01, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_824C73C -gUnknown_824C73C: @ 824C73C -.byte 0xf6, 0x00, 0xd3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0x1d, 0x01, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_824C76C -gUnknown_824C76C: @ 824C76C -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824C73C - -.global gUnknown_824C778 -gUnknown_824C778: @ 824C778 -.byte 0xf6, 0x00, 0xdb, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824C7C8 -gUnknown_824C7C8: @ 824C7C8 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824C778 - -.global gUnknown_824C7D4 -gUnknown_824C7D4: @ 824C7D4 -.byte 0xf6, 0x00, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x8e, 0x01, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x01, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824CE84 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824CE6C -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824CE64 -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824CE58 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824CE48 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824CE18 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824CE08 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824CDE0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824CDC4 -.byte 0xd9, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824CDB4 -.byte 0xd9, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824CDA8 -.byte 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824CD84 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824CD4C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824CD38 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824CCF8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x23, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x1e, 0x00, 0x0d, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824CCD4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824CD38 -closeTextBox -.byte 0xc8, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x09, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x09, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x09, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x23, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x1e, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_824CCD4 -gUnknown_824CCD4: @ 824CCD4 -.string " Sure thing!\n" -.string "Let{APOSTROPHE}s roll on out!\0" -.align 2, 0 - -.global gUnknown_824CCF8 -gUnknown_824CCF8: @ 824CCF8 -.string " It{APOSTROPHE}s going to be freezing\n" -.string "cold{COMMA} but let{APOSTROPHE}s try our best!\0" -.align 2, 0 - -.global gUnknown_824CD38 -gUnknown_824CD38: @ 824CD38 -.string " OK!\n" -.string "Let{APOSTROPHE}s go!\0" -.align 2, 0 - -.global gUnknown_824CD4C -gUnknown_824CD4C: @ 824CD4C -.string " It{APOSTROPHE}s freezing cold{COMMA} but let{APOSTROPHE}s\n" -.string "give it our best!\0" -.align 2, 0 - -.global gUnknown_824CD84 -gUnknown_824CD84: @ 824CD84 -.string " All right!\n" -.string "Let{APOSTROPHE}s roll on out!\0" -.align 2, 0 - -.global gUnknown_824CDA8 -gUnknown_824CDA8: @ 824CDA8 -.string "Snow Path.\0" -.align 2, 0 - -.global gUnknown_824CDB4 -gUnknown_824CDB4: @ 824CDB4 -.string "Frosty Forest.\0" -.align 2, 0 - -.global gUnknown_824CDC4 -gUnknown_824CDC4: @ 824CDC4 -.string " Which way should we go?\0" -.align 2, 0 - -.global gUnknown_824CDE0 -gUnknown_824CDE0: @ 824CDE0 -.string " OK.\n" -.string "I{APOSTROPHE}ll wait while you get ready.\0" -.align 2, 0 - -.global gUnknown_824CE08 -gUnknown_824CE08: @ 824CE08 -.string " Huh? Not yet?\0" -.align 2, 0 - -.global gUnknown_824CE18 -gUnknown_824CE18: @ 824CE18 -.string " All right.\n" -.string "I{APOSTROPHE}ll wait till you{APOSTROPHE}re ready.\0" -.align 2, 0 - -.global gUnknown_824CE48 -gUnknown_824CE48: @ 824CE48 -.string " Hah? Not yet?\0" -.align 2, 0 - -.global gUnknown_824CE58 -gUnknown_824CE58: @ 824CE58 -.string "*Not yet.\0" -.align 2, 0 - -.global gUnknown_824CE64 -gUnknown_824CE64: @ 824CE64 -.string "Yes.\0" -.align 2, 0 - -.global gUnknown_824CE6C -gUnknown_824CE6C: @ 824CE6C -.string " {ARG_NICKNAME_0}{COMMA} are you\n" -.string "ready?\0" -.align 2, 0 - -.global gUnknown_824CE84 -gUnknown_824CE84: @ 824CE84 -.string " {ARG_NICKNAME_0}{COMMA} are you ready\n" -.string "to roll?\0" -.align 2, 0 - -.global gUnknown_824CEA4 -gUnknown_824CEA4: @ 824CEA4 -.byte 0xf6, 0x00, 0x3b, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824CFE4 -gUnknown_824CFE4: @ 824CFE4 -.byte 0xf6, 0x00, 0x52, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0xc6, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824D0B4 -gUnknown_824D0B4: @ 824D0B4 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824CFE4 - -.global gUnknown_824D0C0 -gUnknown_824D0C0: @ 824D0C0 -.byte 0xf6, 0x00, 0x64, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824D338 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824D30C -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824D2F0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824D2CC -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824D290 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824D250 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824D250 -gUnknown_824D250: @ 824D250 -.string " But let{APOSTROPHE}s keep trying our\n" -.string "best and get through this{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_824D290 -gUnknown_824D290: @ 824D290 -.string " But let{APOSTROPHE}s give it our best\n" -.string "and get through this{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_824D2CC -gUnknown_824D2CC: @ 824D2CC -.string " This is as tough as we\n" -.string "expected...\0" -.align 2, 0 - -.global gUnknown_824D2F0 -gUnknown_824D2F0: @ 824D2F0 -.string " This is a tough place...\0" -.align 2, 0 - -.global gUnknown_824D30C -gUnknown_824D30C: @ 824D30C -.string " Ouch...{WAIT_PRESS}\n" -.string "We couldn{APOSTROPHE}t break through...\0" -.align 2, 0 - -.global gUnknown_824D338 -gUnknown_824D338: @ 824D338 -.string " Urrggh...{WAIT_PRESS}\n" -.string "We couldn{APOSTROPHE}t get through...\0" -.align 2, 0 - -.global gUnknown_824D364 -gUnknown_824D364: @ 824D364 -.byte 0xf6, 0x00, 0x81, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824D424 -gUnknown_824D424: @ 824D424 -.byte 0xf6, 0x00, 0x90, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0xc6, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824D4F4 -gUnknown_824D4F4: @ 824D4F4 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824D424 - -.global gUnknown_824D500 -gUnknown_824D500: @ 824D500 -.byte 0xf6, 0x00, 0xa2, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0x54, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, west -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824D808 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824D7E0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824D7B8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824D780 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824D73C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824D710 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824D6D8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824D6A0 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824D6A0 -gUnknown_824D6A0: @ 824D6A0 -.string " It makes no difference.\n" -.string "{ARG_NICKNAME_0}{COMMA} let{APOSTROPHE}s try our best!\0" -.align 2, 0 - -.global gUnknown_824D6D8 -gUnknown_824D6D8: @ 824D6D8 -.string " But why are we forbidden\n" -.string "from entering this forest?\0" -.align 2, 0 - -.global gUnknown_824D710 -gUnknown_824D710: @ 824D710 -.string " That Pokémon{COMMA}\n" -.string "{ARG_NICKNAME_2}{COMMA} is pretty tough.\0" -.align 2, 0 - -.global gUnknown_824D73C -gUnknown_824D73C: @ 824D73C -.string " ...It doesn{APOSTROPHE}t matter anyway.\n" -.string "Let{APOSTROPHE}s give it our best{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_824D780 -gUnknown_824D780: @ 824D780 -.string " But why aren{APOSTROPHE}t we allowed\n" -.string "to go into this forest?\0" -.align 2, 0 - -.global gUnknown_824D7B8 -gUnknown_824D7B8: @ 824D7B8 -.string " That {ARG_NICKNAME_2}...\n" -.string "He{APOSTROPHE}s one tough customer.\0" -.align 2, 0 - -.global gUnknown_824D7E0 -gUnknown_824D7E0: @ 824D7E0 -.string " Hmm...{WAIT_PRESS}\n" -.string "We didn{APOSTROPHE}t do well at all...\0" -.align 2, 0 - -.global gUnknown_824D808 -gUnknown_824D808: @ 824D808 -.string " Hmmm...{WAIT_PRESS}\n" -.string "Well{COMMA} that didn{APOSTROPHE}t go well.\0" -.align 2, 0 - -.global gUnknown_824D834 -gUnknown_824D834: @ 824D834 -.byte 0xf6, 0x00, 0xc0, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -setAnimation 8 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, east -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824D8A4 -gUnknown_824D8A4: @ 824D8A4 -.byte 0xf6, 0x00, 0xca, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0xc6, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824D974 -gUnknown_824D974: @ 824D974 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824D8A4 - -.global gUnknown_824D980 -gUnknown_824D980: @ 824D980 -.byte 0xf6, 0x00, 0xdc, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x10, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824DCE0 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824DCA0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824DC50 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824DC2C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824DBDC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824DB90 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824DB70 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824DB70 -gUnknown_824DB70: @ 824DB70 -.string " {ARG_NICKNAME_0}{COMMA} let{APOSTROPHE}s do our\n" -.string "best!\0" -.align 2, 0 - -.global gUnknown_824DB90 -gUnknown_824DB90: @ 824DB90 -.string " It looks like we have to get\n" -.string "through the {COLOR_1 YELLOW_4}Frosty Forest{END_COLOR_TEXT_1} to move on.\0" -.align 2, 0 - -.global gUnknown_824DBDC -gUnknown_824DBDC: @ 824DBDC -.string " ............{WAIT_PRESS}\n" -.string "I guess that path we took just loops back\n" -.string "to where it started.\0" -.align 2, 0 - -.global gUnknown_824DC2C -gUnknown_824DC2C: @ 824DC2C -.string " {ARG_NICKNAME_0}{COMMA} let{APOSTROPHE}s give it\n" -.string "our best!\0" -.align 2, 0 - -.global gUnknown_824DC50 -gUnknown_824DC50: @ 824DC50 -.string " If we want to move on{COMMA}\n" -.string "I think our only choice is the {COLOR_1 YELLOW_4}Frosty\n" -.string "Forest{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_824DCA0 -gUnknown_824DCA0: @ 824DCA0 -.string " ............{WAIT_PRESS}\n" -.string "I guess that path just loops back to the\n" -.string "start.\0" -.align 2, 0 - -.global gUnknown_824DCE0 -gUnknown_824DCE0: @ 824DCE0 -.string " What the...?{WAIT_PRESS}\n" -.string "Isn{APOSTROPHE}t this where we started from?!\0" -.align 2, 0 - -.global gUnknown_824DD18 -gUnknown_824DD18: @ 824DD18 -.byte 0xf6, 0x00, 0xfe, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x20, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_824DDF8 -gUnknown_824DDF8: @ 824DDF8 -.byte 0xf6, 0x00, 0x0f, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00 -.byte 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824DEC8 -gUnknown_824DEC8: @ 824DEC8 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824DDF8 - -.global gUnknown_824DED4 -gUnknown_824DED4: @ 824DED4 -.byte 0xf6, 0x00, 0x21, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x22, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824D338 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824D30C -closeTextBox -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824E0AC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824E064 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824E064 -gUnknown_824E064: @ 824E064 -.string " This is a harsh place{COMMA}\n" -.string "so let{APOSTROPHE}s do our best to get through{COMMA}\n" -.string "{ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_824E0AC -gUnknown_824E0AC: @ 824E0AC -.string " This is one harsh place{COMMA}\n" -.string "but let{APOSTROPHE}s bear down and get through{COMMA}\n" -.string "{ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_824E0F8 -gUnknown_824E0F8: @ 824E0F8 -.byte 0xf6, 0x00, 0x3d, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BE8C -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824E1C8 -gUnknown_824E1C8: @ 824E1C8 -.byte 0x90, 0x00, 0x00, 0x00, 0x07, 0x1e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824E1E0 -gUnknown_824E1E0: @ 824E1E0 -.byte 0x00, 0x04, 0x00, 0x00, 0x11, 0x23, 0x02, 0x02 -.4byte gUnknown_824BEE4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x11, 0x25, 0x02, 0x02 -.4byte gUnknown_824BF24 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824E210 -gUnknown_824E210: @ 824E210 -.byte 0x00, 0x00, 0x00, 0x00, 0x11, 0x20, 0x00, 0x02 -.4byte gUnknown_824BF64 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x11, 0x1e, 0x00, 0x02 -.4byte gUnknown_824BFA4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824E240 -gUnknown_824E240: @ 824E240 -.byte 0x00, 0x04, 0x00, 0x00, 0x11, 0x23, 0x02, 0x02 -.4byte gUnknown_824BFE4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x11, 0x25, 0x02, 0x02 -.4byte gUnknown_824C024 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824E270 -gUnknown_824E270: @ 824E270 -.byte 0x00, 0x04, 0x00, 0x00, 0x11, 0x23, 0x02, 0x02 -.4byte gUnknown_824C094 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x11, 0x25, 0x02, 0x02 -.4byte gUnknown_824C0C4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824E2A0 -gUnknown_824E2A0: @ 824E2A0 -.byte 0x90, 0x00, 0x00, 0x00, 0x07, 0x1e, 0x02 -warpDungeon 0x00 -.byte 0x00, 0x91, 0x00, 0x00, 0x00 -.byte 0x17, 0x23, 0x00 -warpDungeon 0x00 -.byte 0x00 - -.global gUnknown_824E2D0 -gUnknown_824E2D0: @ 824E2D0 -.byte 0x00, 0x04, 0x00, 0x00, 0x13, 0x20, 0x00, 0x02 -.4byte gUnknown_824C290 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x0f, 0x20, 0x00, 0x02 -.4byte gUnknown_824C670 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824E300 -gUnknown_824E300: @ 824E300 -.byte 0x22, 0x06, 0x00, 0x00, 0x13, 0x20, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824C70C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824E318 -gUnknown_824E318: @ 824E318 -.byte 0x00, 0x06, 0x00, 0x00 -.byte 0x0f, 0x20, 0x00, 0x02 -.4byte gUnknown_824C7D4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x02, 0x00, 0x00, 0x13, 0x20, 0x00, 0x02 -.4byte gUnknown_824CEA4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824E348 -gUnknown_824E348: @ 824E348 -.byte 0x00, 0x00, 0x00, 0x00, 0x13, 0x20, 0x00, 0x02 -.4byte gUnknown_824D0C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x0f, 0x20, 0x00, 0x02 -.4byte gUnknown_824D364 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824E378 -gUnknown_824E378: @ 824E378 -.byte 0x00, 0x06, 0x00, 0x00 -.byte 0x13, 0x20, 0x00, 0x02 -.4byte gUnknown_824D500 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x02, 0x00, 0x00, 0x0f, 0x20, 0x00, 0x02 -.4byte gUnknown_824D834 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824E3A8 -gUnknown_824E3A8: @ 824E3A8 -.byte 0x00, 0x06, 0x00, 0x00, 0x13, 0x1f, 0x00, 0x02 -.4byte gUnknown_824D980 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x02, 0x00, 0x00, 0x0f, 0x1e, 0x00, 0x02 -.4byte gUnknown_824DD18 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824E3D8 -gUnknown_824E3D8: @ 824E3D8 -.byte 0x00, 0x06, 0x00, 0x00 -.byte 0x13, 0x20, 0x00, 0x02 -.4byte gUnknown_824DED4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x02, 0x00, 0x00, 0x0f, 0x20, 0x00, 0x02 -.4byte gUnknown_824E0F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824E408 -gUnknown_824E408: @ 824E408 -.byte 0x04, 0x00, 0x04, 0x02, 0x08, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824BEC4 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824E420 -gUnknown_824E420: @ 824E420 -.byte 0x04, 0x00, 0x04, 0x02, 0x08, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824C0F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x04, 0x03 -.byte 0x17, 0x23, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824C114 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824E450 -gUnknown_824E450: @ 824E450 -.byte 0x00, 0x00, 0x01, 0x01, 0x11, 0x09, 0x00, 0x02 -.4byte gUnknown_824C210 - -.global gUnknown_824E45C -gUnknown_824E45C: @ 824E45C -.byte 0x00, 0x00, 0x01, 0x01, 0x11, 0x21, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824E468 -gUnknown_824E468: @ 824E468 -.byte 0x00, 0x00, 0x01, 0x01, 0x11, 0x21, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824E474 -gUnknown_824E474: @ 824E474 -.byte 0x00, 0x00, 0x01, 0x01, 0x11, 0x21, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824E480 -gUnknown_824E480: @ 824E480 -.byte 0x00, 0x00, 0x01, 0x01, 0x11, 0x21, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824E48C -gUnknown_824E48C: @ 824E48C -.byte 0x04, 0x03, 0x00, 0x00, 0x0f, 0x1b, 0x00, 0x00 -.4byte gUnknown_824C76C - -.global gUnknown_824E498 -gUnknown_824E498: @ 824E498 -.4byte gUnknown_824BEB8 - -.global gUnknown_824E49C -gUnknown_824E49C: @ 824E49C -.4byte gUnknown_824C204 - -.global gUnknown_824E4A0 -gUnknown_824E4A0: @ 824E4A0 -.4byte gUnknown_824C700 - -.global gUnknown_824E4A4 -gUnknown_824E4A4: @ 824E4A4 -.4byte gUnknown_824C7C8 - -.global gUnknown_824E4A8 -gUnknown_824E4A8: @ 824E4A8 -.4byte gUnknown_824D0B4 - -.global gUnknown_824E4AC -gUnknown_824E4AC: @ 824E4AC -.4byte gUnknown_824D4F4 - -.global gUnknown_824E4B0 -gUnknown_824E4B0: @ 824E4B0 -.4byte gUnknown_824D974 - -.global gUnknown_824E4B4 -gUnknown_824E4B4: @ 824E4B4 -.4byte gUnknown_824DEC8 - -.global gUnknown_824E4B8 -gUnknown_824E4B8: @ 824E4B8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824E1C8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824E408 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824E498 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_824E1E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_824E210 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_824E240 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_824E270 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_824E2A0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_824E420 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824E5A8 -gUnknown_824E5A8: @ 824E5A8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_824E2D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824E450 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824E49C - -.global gUnknown_824E5D0 -gUnknown_824E5D0: @ 824E5D0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824E300 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824E48C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824E4A0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_824E318 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824E4A4 - -.global gUnknown_824E620 -gUnknown_824E620: @ 824E620 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_824E348 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824E45C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824E4A8 - -.global gUnknown_824E648 -gUnknown_824E648: @ 824E648 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_824E378 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824E468 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824E4AC - -.global gUnknown_824E670 -gUnknown_824E670: @ 824E670 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_824E3A8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824E474 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824E4B0 - -.global gUnknown_824E698 -gUnknown_824E698: @ 824E698 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_824E3D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824E480 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824E4B4 - -.global gUnknown_824E6C0 -gUnknown_824E6C0: @ 824E6C0 -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_824E4B8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824E5A8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_824E5D0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824E620 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824E648 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824E670 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824E698 - -.global gUnknown_824E6F8 -gUnknown_824E6F8: @ 824E6F8 -.byte 0x11, 0x1b, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00 - -.global gUnknown_824E700 -gUnknown_824E700: @ 824E700 -.byte 0x07, 0x00, 0x00, 0x00 -.4byte gUnknown_824E6C0 -.4byte gUnknown_824E6F8 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_824E714 -gUnknown_824E714: @ 824E714 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824E954 -.byte 0x08, 0x00, 0x00, 0x00, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x03, 0x01, 0x00, 0x11, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x06, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824E954 -gUnknown_824E954: @ 824E954 -.string "../data/ground/ground_data_d10p02_station.c\0" -.align 2, 0 - -.global gUnknown_824E980 -gUnknown_824E980: @ 824E980 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824E714 - -.global gUnknown_824E98C -gUnknown_824E98C: @ 824E98C -.byte 0xf6, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824E954 -.byte 0xd3, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824EA5C -.byte 0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824EA54 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824EA4C -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x1e, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_824EA4C -gUnknown_824EA4C: @ 824EA4C -.string "*No.\0" -.align 2, 0 - -.global gUnknown_824EA54 -gUnknown_824EA54: @ 824EA54 -.string "Yes.\0" -.align 2, 0 - -.global gUnknown_824EA5C -gUnknown_824EA5C: @ 824EA5C -.string "Keep going?\0" -.align 2, 0 - -.global gUnknown_824EA68 -gUnknown_824EA68: @ 824EA68 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824E98C - -.global gUnknown_824EA74 -gUnknown_824EA74: @ 824EA74 -.byte 0xf6, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824E954 -.byte 0xbb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd3, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824EC1C -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824EA54 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824EA4C -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x0a, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x04, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd3, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824EC04 -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824EA54 -.byte 0xd9, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824EA4C -.byte 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x1e, 0x00, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824EC04 -gUnknown_824EC04: @ 824EC04 -.string "Return to the entrance?\0" -.align 2, 0 - -.global gUnknown_824EC1C -gUnknown_824EC1C: @ 824EC1C -.string "Return to the rescue team base?\0" -.align 2, 0 - -.global gUnknown_824EC3C -gUnknown_824EC3C: @ 824EC3C -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824EA74 - -.global gUnknown_824EC48 -gUnknown_824EC48: @ 824EC48 -.byte 0xf6, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824E954 -.byte 0xe9, 0x00, 0x41, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824EC68 -gUnknown_824EC68: @ 824EC68 -.byte 0xf6, 0x00, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824E954 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824ECA8 -gUnknown_824ECA8: @ 824ECA8 -.byte 0xf6, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824E954 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824ECE8 -gUnknown_824ECE8: @ 824ECE8 -.byte 0xf6, 0x00, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824E954 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824ED28 -gUnknown_824ED28: @ 824ED28 -.byte 0xf6, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824E954 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824ED68 -gUnknown_824ED68: @ 824ED68 -.byte 0xf6, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824E954 -.byte 0xe8, 0x00, 0x51, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824ED98 -gUnknown_824ED98: @ 824ED98 -.byte 0xf6, 0x00, 0x89, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824E954 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824EDC8 -gUnknown_824EDC8: @ 824EDC8 -.byte 0xf6, 0x00, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824E954 -.byte 0xab, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00 -.byte 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824EE98 -gUnknown_824EE98: @ 824EE98 -.byte 0x92, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824EDC8 - -.global gUnknown_824EEA4 -gUnknown_824EEA4: @ 824EEA4 -.byte 0xf6, 0x00, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824E954 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824F164 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824F140 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824F124 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824F100 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824F0C4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824F084 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824F084 -gUnknown_824F084: @ 824F084 -.string " But let{APOSTROPHE}s keep trying our\n" -.string "best and get through this{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_824F0C4 -gUnknown_824F0C4: @ 824F0C4 -.string " But let{APOSTROPHE}s give it our best\n" -.string "and get through this{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_824F100 -gUnknown_824F100: @ 824F100 -.string " This is as tough as we\n" -.string "expected...\0" -.align 2, 0 - -.global gUnknown_824F124 -gUnknown_824F124: @ 824F124 -.string " This is a tough place...\0" -.align 2, 0 - -.global gUnknown_824F140 -gUnknown_824F140: @ 824F140 -.string " Hmm...{WAIT_PRESS}\n" -.string "That didn{APOSTROPHE}t work out...\0" -.align 2, 0 - -.global gUnknown_824F164 -gUnknown_824F164: @ 824F164 -.string " Hmm...{WAIT_PRESS}\n" -.string "Well{COMMA} that didn{APOSTROPHE}t go well.\0" -.align 2, 0 - -.global gUnknown_824F190 -gUnknown_824F190: @ 824F190 -.byte 0xf6, 0x00, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824E954 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, east -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824F260 -gUnknown_824F260: @ 824F260 -.byte 0xf6, 0x00, 0xd3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824E954 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824F330 -gUnknown_824F330: @ 824F330 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824F260 - -.global gUnknown_824F33C -gUnknown_824F33C: @ 824F33C -.byte 0xf6, 0x00, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824E954 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x02, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824F680 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824F658 -closeTextBox -setFlag 0x06 -rotate 0x04, shortestDir, west -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824F630 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824F5F8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824F5B8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824F58C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824F554 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824F51C -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824F51C -gUnknown_824F51C: @ 824F51C -.string " It makes no difference.\n" -.string "{ARG_NICKNAME_0}{COMMA} let{APOSTROPHE}s try our best!\0" -.align 2, 0 - -.global gUnknown_824F554 -gUnknown_824F554: @ 824F554 -.string " But why are we forbidden\n" -.string "from entering this forest?\0" -.align 2, 0 - -.global gUnknown_824F58C -gUnknown_824F58C: @ 824F58C -.string " That Pokémon{COMMA}\n" -.string "{ARG_NICKNAME_2}{COMMA} is pretty tough.\0" -.align 2, 0 - -.global gUnknown_824F5B8 -gUnknown_824F5B8: @ 824F5B8 -.string " It doesn{APOSTROPHE}t matter anyway.\n" -.string "Let{APOSTROPHE}s give it our best{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_824F5F8 -gUnknown_824F5F8: @ 824F5F8 -.string " But why aren{APOSTROPHE}t we allowed\n" -.string "to go into this forest?\0" -.align 2, 0 - -.global gUnknown_824F630 -gUnknown_824F630: @ 824F630 -.string " That {ARG_NICKNAME_2}...\n" -.string "He{APOSTROPHE}s one tough customer.\0" -.align 2, 0 - -.global gUnknown_824F658 -gUnknown_824F658: @ 824F658 -.string " Hmm...{WAIT_PRESS}\n" -.string "We didn{APOSTROPHE}t do well at all...\0" -.align 2, 0 - -.global gUnknown_824F680 -gUnknown_824F680: @ 824F680 -.string " Hmmm...{WAIT_PRESS}\n" -.string "Well{COMMA} that didn{APOSTROPHE}t go well.\0" -.align 2, 0 - -.global gUnknown_824F6AC -gUnknown_824F6AC: @ 824F6AC -.byte 0xf6, 0x00, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824E954 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, east -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824F77C -gUnknown_824F77C: @ 824F77C -.byte 0x91, 0x00, 0x00, 0x00, 0x1c, 0x1c, 0x02 -warpDungeon 0x00 -.byte 0x00 - -.global gUnknown_824F794 -gUnknown_824F794: @ 824F794 -.byte 0x00, 0x04, 0x00, 0x00, 0x1c, 0x26, 0x02, 0x02 -.4byte gUnknown_824EC68 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1c, 0x29, 0x02, 0x02 -.4byte gUnknown_824ECA8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824F7C4 -gUnknown_824F7C4: @ 824F7C4 -.byte 0x00, 0x04, 0x00, 0x00, 0x1c, 0x26, 0x02, 0x02 -.4byte gUnknown_824ECE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x04, 0x00, 0x00, 0x1c, 0x29, 0x02, 0x02 -.4byte gUnknown_824ED28 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824F7F4 -gUnknown_824F7F4: @ 824F7F4 -.byte 0x00, 0x04, 0x00, 0x00, 0x1c, 0x26, 0x02, 0x02 -.4byte gUnknown_824ED68 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1c, 0x29, 0x02, 0x02 -.4byte gUnknown_824ED98 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824F824 -gUnknown_824F824: @ 824F824 -.byte 0x00, 0x00, 0x00, 0x00, 0x1f, 0x26, 0x00, 0x02 -.4byte gUnknown_824EEA4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x1a, 0x26, 0x00, 0x02 -.4byte gUnknown_824F190 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824F854 -gUnknown_824F854: @ 824F854 -.byte 0x00, 0x00, 0x00, 0x00, 0x1f, 0x26, 0x00, 0x02 -.4byte gUnknown_824F33C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1a, 0x26, 0x00, 0x02 -.4byte gUnknown_824F6AC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824F884 -gUnknown_824F884: @ 824F884 -.byte 0x04, 0x00, 0x04, 0x03, 0x1c, 0x1c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824EC48 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824F89C -gUnknown_824F89C: @ 824F89C -.byte 0x00, 0x00, 0x01, 0x01, 0x1c, 0x25, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824F8A8 -gUnknown_824F8A8: @ 824F8A8 -.byte 0x00, 0x00, 0x01, 0x01, 0x1c, 0x25, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824F8B4 -gUnknown_824F8B4: @ 824F8B4 -.byte 0x0f, 0x03, 0x00, 0x00, 0x15, 0x0c, 0x00, 0x00 -.4byte gUnknown_824EA68 -.byte 0x0f, 0x03, 0x00, 0x00, 0x15, 0x2a, 0x00, 0x00 -.4byte gUnknown_824EC3C - -.global gUnknown_824F8CC -gUnknown_824F8CC: @ 824F8CC -.4byte gUnknown_824E980 - -.global gUnknown_824F8D0 -gUnknown_824F8D0: @ 824F8D0 -.4byte gUnknown_824EE98 - -.global gUnknown_824F8D4 -gUnknown_824F8D4: @ 824F8D4 -.4byte gUnknown_824F330 - -.global gUnknown_824F8D8 -gUnknown_824F8D8: @ 824F8D8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824F77C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824F884 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_824F8B4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824F8CC -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_824F794 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_824F7C4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_824F7F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824F9A0 -gUnknown_824F9A0: @ 824F9A0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_824F824 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824F89C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824F8D0 - -.global gUnknown_824F9C8 -gUnknown_824F9C8: @ 824F9C8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_824F854 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824F8A8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824F8D4 - -.global gUnknown_824F9F0 -gUnknown_824F9F0: @ 824F9F0 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_824F8D8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824F9A0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_824F9C8 - -.global gUnknown_824FA08 -gUnknown_824FA08: @ 824FA08 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824FA10 -gUnknown_824FA10: @ 824FA10 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_824F9F0 -.4byte gUnknown_824FA08 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_824FA24 -gUnknown_824FA24: @ 824FA24 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824FA64 -.byte 0x08, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824FA64 -gUnknown_824FA64: @ 824FA64 -.string "../data/ground/ground_data_d10p03_station.c\0" -.align 2, 0 - -.global gUnknown_824FA90 -gUnknown_824FA90: @ 824FA90 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824FA24 - -.global gUnknown_824FA9C -gUnknown_824FA9C: @ 824FA9C -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824FA64 -.byte 0x08, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3b, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824FC9C -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824FC5C -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824FC40 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824FC24 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824FBFC -closeTextBox -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0x3b, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_824FBFC -gUnknown_824FBFC: @ 824FBFC -.string "{CENTER_ALIGN}The harsher the conditions became...\0" -.align 2, 0 - -.global gUnknown_824FC24 -gUnknown_824FC24: @ 824FC24 -.string "{CENTER_ALIGN}The more they advanced...\0" -.align 2, 0 - -.global gUnknown_824FC40 -gUnknown_824FC40: @ 824FC40 -.string "{CENTER_ALIGN}Headed further north...\0" -.align 2, 0 - -.global gUnknown_824FC5C -gUnknown_824FC5C: @ 824FC5C -.string "{CENTER_ALIGN}After getting through the Frosty\n" -.string "{CENTER_ALIGN}Forest{COMMA} {ARG_NICKNAME_0}{APOSTROPHE}s team...\0" -.align 2, 0 - -.global gUnknown_824FC9C -gUnknown_824FC9C: @ 824FC9C -.string "{CENTER_ALIGN}And so...\0" -.align 2, 0 - -.global gUnknown_824FCA8 -gUnknown_824FCA8: @ 824FCA8 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824FA9C - -.global gUnknown_824FCB4 -gUnknown_824FCB4: @ 824FCB4 -.byte 0xf6, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824FA64 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825173C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8251704 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82516EC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825173C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82516C0 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82516EC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825173C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825168C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82516EC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8251668 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8251648 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8251648 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8251628 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82515F8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82515C8 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82515C8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82515C8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8251570 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8251538 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8251510 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82514EC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82514D0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825148C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825148C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825148C -.byte 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8251468 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8251430 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82513E0 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8251394 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8251374 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8251344 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82512F0 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825129C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825127C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8251240 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82511EC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825129C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82511BC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x4c, 0x00, 0x00, 0x00, 0xad, 0x02, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xcc, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0xff, 0xcc, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x28, 0x00, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0xff, 0xcc, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xcc, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82511AC -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8251174 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xad, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0xff, 0xcc, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xcc, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x00, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xcc, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0xff, 0xcc, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x4c, 0x00, 0x00, 0x00, 0xad, 0x02, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x28, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8251168 -closeTextBox -.byte 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x00, 0x05, 0x00, 0x28, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825115C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x03, 0x00, 0xfe, 0xff, 0xff, 0xff -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8251130 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82510F8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82510E0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82510D8 -.byte 0x45, 0x00, 0x96, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82510A8 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8251048 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825100C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250FD0 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250FC0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250FB8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250FAC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250FA4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250F6C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250F54 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250F38 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250F18 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250EFC -closeTextBox -.byte 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northeast -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0e, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250EE8 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250E94 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250E40 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250E34 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250DF8 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250DC8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250D84 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250D70 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x4c, 0x00, 0x00, 0x00, 0xcf, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250D54 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250D48 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250D0C -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250CF0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250CD0 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250CB8 -.byte 0xe1, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x3b, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd3, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250CA0 -.byte 0xd9, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250C98 -.byte 0xd9, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8250C94 -.byte 0xf4, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8250C94 -gUnknown_8250C94: @ 8250C94 -.byte 0x4e, 0x6f, 0x2e, 0x00 - -.global gUnknown_8250C98 -gUnknown_8250C98: @ 8250C98 -.string "*Yes.\0" -.align 2, 0 - -.global gUnknown_8250CA0 -gUnknown_8250CA0: @ 8250CA0 -.string "Give a nickname to {ARG_NICKNAME_3}?\0" -.align 2, 0 - -.global gUnknown_8250CB8 -gUnknown_8250CB8: @ 8250CB8 -.string "{CENTER_ALIGN}{ARG_NICKNAME_3} joined the team!\0" -.align 2, 0 - -.global gUnknown_8250CD0 -gUnknown_8250CD0: @ 8250CD0 -.string " Sniffle...\n" -.string "Thank you{COMMA} {ARG_NICKNAME_3}.\0" -.align 2, 0 - -.global gUnknown_8250CF0 -gUnknown_8250CF0: @ 8250CF0 -.string " Let me lend you my powers.\0" -.align 2, 0 - -.global gUnknown_8250D0C -gUnknown_8250D0C: @ 8250D0C -.string " To put an end to the\n" -.string "calamities{COMMA} cooperation is vital.\0" -.align 2, 0 - -.global gUnknown_8250D48 -gUnknown_8250D48: @ 8250D48 -.string " Really.\0" -.align 2, 0 - -.global gUnknown_8250D54 -gUnknown_8250D54: @ 8250D54 -.string " Huh?{WAIT_PRESS}\n" -.string "You will? Really?\0" -.align 2, 0 - -.global gUnknown_8250D70 -gUnknown_8250D70: @ 8250D70 -.string " I will join you.\0" -.align 2, 0 - -.global gUnknown_8250D84 -gUnknown_8250D84: @ 8250D84 -.string " ............{WAIT_PRESS}\n" -.string "I think it would be best if we combined\n" -.string "forces...\0" -.align 2, 0 - -.global gUnknown_8250DC8 -gUnknown_8250DC8: @ 8250DC8 -.string " I was led here by my\n" -.string "feelings of foreboding...\0" -.align 2, 0 - -.global gUnknown_8250DF8 -gUnknown_8250DF8: @ 8250DF8 -.string " I sensed the terrible\n" -.string "power of the natural calamities...\0" -.align 2, 0 - -.global gUnknown_8250E34 -gUnknown_8250E34: @ 8250E34 -.string " Groan...\0" -.align 2, 0 - -.global gUnknown_8250E40 -gUnknown_8250E40: @ 8250E40 -.string " If they are left unchecked{COMMA}\n" -.string "worse will befall us...{WAIT_PRESS}\n" -.string "My instinct warns me so.\0" -.align 2, 0 - -.global gUnknown_8250E94 -gUnknown_8250E94: @ 8250E94 -.string " Rather than saying thanks{COMMA}\n" -.string "focus on stopping the calamities before\n" -.string "they worsen.\0" -.align 2, 0 - -.global gUnknown_8250EE8 -gUnknown_8250EE8: @ 8250EE8 -.string " ..................\0" -.align 2, 0 - -.global gUnknown_8250EFC -gUnknown_8250EFC: @ 8250EFC -.string " Thank you.{WAIT_PRESS}\n" -.string "You saved us.\0" -.align 2, 0 - -.global gUnknown_8250F18 -gUnknown_8250F18: @ 8250F18 -.string " Whew...\n" -.string "That was too close...\0" -.align 2, 0 - -.global gUnknown_8250F38 -gUnknown_8250F38: @ 8250F38 -.string " Yup! We promise{COMMA}\n" -.string "{ARG_NICKNAME_2}!\0" -.align 2, 0 - -.global gUnknown_8250F54 -gUnknown_8250F54: @ 8250F54 -.string " I{APOSTROPHE}m counting on you!\0" -.align 2, 0 - -.global gUnknown_8250F6C -gUnknown_8250F6C: @ 8250F6C -.string " You must try to prevent\n" -.string "the calamities from spreading.\0" -.align 2, 0 - -.global gUnknown_8250FA4 -gUnknown_8250FA4: @ 8250FA4 -.string " Waah!\0" -.align 2, 0 - -.global gUnknown_8250FAC -gUnknown_8250FAC: @ 8250FAC -.string " However!\0" -.align 2, 0 - -.global gUnknown_8250FB8 -gUnknown_8250FB8: @ 8250FB8 -.string " {ARG_NICKNAME_2}!\0" -.align 2, 0 - -.global gUnknown_8250FC0 -gUnknown_8250FC0: @ 8250FC0 -.string " You may pass.\0" -.align 2, 0 - -.global gUnknown_8250FD0 -gUnknown_8250FD0: @ 8250FD0 -.string " ..................{WAIT_PRESS}" -.string "Fine.{WAIT_PRESS}\n" -.string "I will choose to believe you.\0" -.align 2, 0 - -.global gUnknown_825100C -gUnknown_825100C: @ 825100C -.string " ............{WAIT_PRESS}\n" -.string "So{COMMA} there are calamities besides this...\0" -.align 2, 0 - -.global gUnknown_8251048 -gUnknown_8251048: @ 8251048 -.string " The calamities taking place\n" -.string "now are of a special nature.\n" -.string "I{APOSTROPHE}ve never experienced such before.\0" -.align 2, 0 - -.global gUnknown_82510A8 -gUnknown_82510A8: @ 82510A8 -.string " I have the ability to sense\n" -.string "natural disasters.\0" -.align 2, 0 - -.global gUnknown_82510D8 -gUnknown_82510D8: @ 82510D8 -.string " Yes.\0" -.align 2, 0 - -.global gUnknown_82510E0 -gUnknown_82510E0: @ 82510E0 -.string " Is...\n" -.string "Is that true?\0" -.align 2, 0 - -.global gUnknown_82510F8 -gUnknown_82510F8: @ 82510F8 -.string " Calamities are indeed\n" -.string "occurring in nature everywhere.\0" -.align 2, 0 - -.global gUnknown_8251130 -gUnknown_8251130: @ 8251130 -.string " There is nothing false in\n" -.string "what they said.\0" -.align 2, 0 - -.global gUnknown_825115C -gUnknown_825115C: @ 825115C -.string " A-Absol!\0" -.align 2, 0 - -.global gUnknown_8251168 -gUnknown_8251168: @ 8251168 -.string " Stop it!\0" -.align 2, 0 - -.global gUnknown_8251174 -gUnknown_8251174: @ 8251174 -.string " Enough of your foolish talk!{WAIT_PRESS}\n" -.string "Prepare for your end!\0" -.align 2, 0 - -.global gUnknown_82511AC -gUnknown_82511AC: @ 82511AC -.string " Waaaaaaaah!\0" -.align 2, 0 - -.global gUnknown_82511BC -gUnknown_82511BC: @ 82511BC -.string " Is that all?{WAIT_PRESS}\n" -.string "You expect me to believe that?!\0" -.align 2, 0 - -.global gUnknown_82511EC -gUnknown_82511EC: @ 82511EC -.string " It{APOSTROPHE}s not just here.{WAIT_PRESS}\n" -.string "Natural calamities are taking place\n" -.string "everywhere right now.\0" -.align 2, 0 - -.global gUnknown_8251240 -gUnknown_8251240: @ 8251240 -.string " It isn{APOSTROPHE}t our fault that the\n" -.string "snow started melting here.\0" -.align 2, 0 - -.global gUnknown_825127C -gUnknown_825127C: @ 825127C -.string " Please{COMMA} {ARG_NICKNAME_2}.\n" -.string "Hear me out.\0" -.align 2, 0 - -.global gUnknown_825129C -gUnknown_825129C: @ 825129C -.string " The forest{APOSTROPHE}s frigid airflow\n" -.string "would have been disturbed even if we\n" -.string "hadn{APOSTROPHE}t come.\0" -.align 2, 0 - -.global gUnknown_82512F0 -gUnknown_82512F0: @ 82512F0 -.string " It{APOSTROPHE}s not just here.{WAIT_PRESS}\n" -.string "Right now{COMMA} natural calamities are occurring\n" -.string "everywhere.\0" -.align 2, 0 - -.global gUnknown_8251344 -gUnknown_8251344: @ 8251344 -.string " It{APOSTROPHE}s not our fault that the\n" -.string "snow is melting.\0" -.align 2, 0 - -.global gUnknown_8251374 -gUnknown_8251374: @ 8251374 -.string " Please{COMMA} {ARG_NICKNAME_2}.\n" -.string "Listen to me.\0" -.align 2, 0 - -.global gUnknown_8251394 -gUnknown_8251394: @ 8251394 -.string " Even if we hadn{APOSTROPHE}t come{COMMA} the\n" -.string "frigid air here would have been disturbed.\0" -.align 2, 0 - -.global gUnknown_82513E0 -gUnknown_82513E0: @ 82513E0 -.string " It{APOSTROPHE}s not just here.{WAIT_PRESS}\n" -.string "Natural disasters are happening all\n" -.string "over the place.\0" -.align 2, 0 - -.global gUnknown_8251430 -gUnknown_8251430: @ 8251430 -.string " It{APOSTROPHE}s not our fault that the\n" -.string "snow is melting here.\0" -.align 2, 0 - -.global gUnknown_8251468 -gUnknown_8251468: @ 8251468 -.string " Hey{COMMA} {ARG_NICKNAME_2}.\n" -.string "You have to listen.\0" -.align 2, 0 - -.global gUnknown_825148C -gUnknown_825148C: @ 825148C -.string " W-we don{APOSTROPHE}t have anything\n" -.string "to do with that!\n" -.string "It{APOSTROPHE}s a coincidence!\0" -.align 2, 0 - -.global gUnknown_82514D0 -gUnknown_82514D0: @ 82514D0 -.string " Is this not your doing?!\0" -.align 2, 0 - -.global gUnknown_82514EC -gUnknown_82514EC: @ 82514EC -.string " Then you appeared in the\n" -.string "forest.\0" -.align 2, 0 - -.global gUnknown_8251510 -gUnknown_8251510: @ 8251510 -.string " This has never happened{COMMA}\n" -.string "even once.\0" -.align 2, 0 - -.global gUnknown_8251538 -gUnknown_8251538: @ 8251538 -.string " Snow is melting.\n" -.string "Snow that has never melted before.\0" -.align 2, 0 - -.global gUnknown_8251570 -gUnknown_8251570: @ 8251570 -.string " The flow of frigid air has\n" -.string "been disturbed in the forest.{WAIT_PRESS}\n" -.string "Snow has started to melt.\0" -.align 2, 0 - -.global gUnknown_82515C8 -gUnknown_82515C8: @ 82515C8 -.string " W-warmed up?\n" -.string "(I{APOSTROPHE}m still freezing{COMMA} but...)\0" -.align 2, 0 - -.global gUnknown_82515F8 -gUnknown_82515F8: @ 82515F8 -.string " It has warmed considerably\n" -.string "in recent times.\0" -.align 2, 0 - -.global gUnknown_8251628 -gUnknown_8251628: @ 8251628 -.string " The frigid forest{APOSTROPHE}s air...\0" -.align 2, 0 - -.global gUnknown_8251648 -gUnknown_8251648: @ 8251648 -.string " Why?{WAIT_PRESS}\n" -.string "Why can{APOSTROPHE}t we pass?\0" -.align 2, 0 - -.global gUnknown_8251668 -gUnknown_8251668: @ 8251668 -.string " No!\n" -.string "I cannot allow your passage!\0" -.align 2, 0 - -.global gUnknown_825168C -gUnknown_825168C: @ 825168C -.string " We have to get through.\n" -.string "No matter what it takes.\0" -.align 2, 0 - -.global gUnknown_82516C0 -gUnknown_82516C0: @ 82516C0 -.string " We have to get through{COMMA}\n" -.string "no matter what.\0" -.align 2, 0 - -.global gUnknown_82516EC -gUnknown_82516EC: @ 82516EC -.string " Please{COMMA} let us pass!\0" -.align 2, 0 - -.global gUnknown_8251704 -gUnknown_8251704: @ 8251704 -.string " We have to keep moving.\n" -.string "We have to get through this.\0" -.align 2, 0 - -.global gUnknown_825173C -gUnknown_825173C: @ 825173C -.string " Please{COMMA} {ARG_NICKNAME_2}!\0" -.align 2, 0 - -.global gUnknown_825174C -gUnknown_825174C: @ 825174C -.byte 0xf6, 0x00, 0x4d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824FA64 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 45 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -rotate 0x04, CCW, northwest -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xca, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_825190C -gUnknown_825190C: @ 825190C -.byte 0xf6, 0x00, 0x6c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824FA64 -setAnimation 30 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -pause 0x2e -.byte 0x4c, 0x00, 0x00, 0x00, 0xdb, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 24 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xdb, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 25 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 25 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 25 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 25 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 24 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xdb, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 25 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 24 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 5 -.byte 0x4c, 0x00, 0x00, 0x00, 0xdb, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x20 -.byte 0x70, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x08 -.byte 0x4c, 0x00, 0x00, 0x00, 0xcb, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x70, 0x00, 0x00, 0x04, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8251CAC -gUnknown_8251CAC: @ 8251CAC -.byte 0xf6, 0x00, 0xa9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_824FA64 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x01, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0x70, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xf9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -pause 0x20 -setAnimation 2 -rotate 0x08, CCW, north -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CW, north -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, southeast -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8251E2C -gUnknown_8251E2C: @ 8251E2C -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x1d, 0x02, 0x02 -.4byte gUnknown_824FCB4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x25, 0x1d, 0x00, 0x02 -.4byte gUnknown_825174C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x66, 0x00, 0x00, 0x00, 0x21, 0x16, 0x00, 0x02 -.4byte gUnknown_825190C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8251E74 -gUnknown_8251E74: @ 8251E74 -.byte 0x53, 0x02, 0x00, 0x00, 0x21, 0x1a, 0x00, 0x02 -.4byte gUnknown_8251CAC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8251E8C -gUnknown_8251E8C: @ 8251E8C -.byte 0x00, 0x00, 0x01, 0x01, 0x21, 0x1b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8251E98 -gUnknown_8251E98: @ 8251E98 -.4byte gUnknown_824FA90 - -.global gUnknown_8251E9C -gUnknown_8251E9C: @ 8251E9C -.4byte gUnknown_824FCA8 - -.global gUnknown_8251EA0 -gUnknown_8251EA0: @ 8251EA0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8251E98 - -.global gUnknown_8251EC8 -gUnknown_8251EC8: @ 8251EC8 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8251E2C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8251E8C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8251E9C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8251E74 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8251F18 -gUnknown_8251F18: @ 8251F18 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8251EA0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8251EC8 - -.global gUnknown_8251F28 -gUnknown_8251F28: @ 8251F28 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8251F30 -gUnknown_8251F30: @ 8251F30 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8251F18 -.4byte gUnknown_8251F28 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8251F44 -gUnknown_8251F44: @ 8251F44 -.byte 0xf6, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -.byte 0xbb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x01, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x0a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82521E4 -gUnknown_82521E4: @ 82521E4 -.string "../data/ground/ground_data_d11p01_station.c\0" -.align 2, 0 - -.global gUnknown_8252210 -gUnknown_8252210: @ 8252210 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8251F44 - -.global gUnknown_825221C -gUnknown_825221C: @ 825221C -.byte 0xf6, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -.byte 0xe9, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825223C -gUnknown_825223C: @ 825223C -.byte 0xf6, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825227C -gUnknown_825227C: @ 825227C -.byte 0xf6, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82522BC -gUnknown_82522BC: @ 82522BC -.byte 0xf6, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82522FC -gUnknown_82522FC: @ 82522FC -.byte 0xf6, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825233C -gUnknown_825233C: @ 825233C -.byte 0xf6, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825237C -gUnknown_825237C: @ 825237C -.byte 0xf6, 0x00, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82523BC -gUnknown_82523BC: @ 82523BC -.byte 0xf6, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82523EC -gUnknown_82523EC: @ 82523EC -.byte 0xf6, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825241C -gUnknown_825241C: @ 825241C -.byte 0xf6, 0x00, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -.byte 0xe9, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825243C -gUnknown_825243C: @ 825243C -.byte 0xf6, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -.byte 0xe9, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825245C -gUnknown_825245C: @ 825245C -.byte 0xf6, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0d, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3b, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xea, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825253C -gUnknown_825253C: @ 825253C -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825245C - -.global gUnknown_8252548 -gUnknown_8252548: @ 8252548 -.byte 0xf6, 0x00, 0x93, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x02, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253644 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825362C -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82535FC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82535D0 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825362C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825359C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825355C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253510 -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82534E4 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82534C0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82534AC -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825345C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253434 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82534AC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82533E4 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253434 -closeTextBox -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825339C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253348 -.byte 0xd9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825332C -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825332C -.byte 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825331C -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82532E4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82532A0 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253258 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825322C -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253218 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82531E4 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825319C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825315C -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253130 -closeTextBox -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82530F0 -.byte 0xd9, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82530D8 -.byte 0xd9, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82530BC -.byte 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253070 -setFlag 0x06 -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253040 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8252FFC -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8252FE4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8252FAC -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8252F84 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8252F2C -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8252EEC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8252ED4 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8252E9C -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8252E74 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8252E2C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8252DEC -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8252FE4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8252DB4 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8252F84 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8252D6C -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8252D24 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8252CE8 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8252CA8 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8252C6C -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8252C48 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8252C28 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8252C28 -gUnknown_8252C28: @ 8252C28 -.string " {ARG_NICKNAME_0}{COMMA} let{APOSTROPHE}s do our\n" -.string "best!\0" -.align 2, 0 - -.global gUnknown_8252C48 -gUnknown_8252C48: @ 8252C48 -.string " {ARG_NICKNAME_0}{COMMA} let{APOSTROPHE}s give it\n" -.string "our best!\0" -.align 2, 0 - -.global gUnknown_8252C6C -gUnknown_8252C6C: @ 8252C6C -.string " Anyway{COMMA} we{APOSTROPHE}ll know the\n" -.string "truth when we get to the peak.\0" -.align 2, 0 - -.global gUnknown_8252CA8 -gUnknown_8252CA8: @ 8252CA8 -.string " It is strange{COMMA} isn{APOSTROPHE}t it?{WAIT_PRESS}\n" -.string "But{COMMA} {ARG_NICKNAME_0}{COMMA} I believe in you.\0" -.align 2, 0 - -.global gUnknown_8252CE8 -gUnknown_8252CE8: @ 8252CE8 -.string " It is weird{COMMA} isn{APOSTROPHE}t it?{WAIT_PRESS}\n" -.string "But I believe in you{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_8252D24 -gUnknown_8252D24: @ 8252D24 -.string " This is kind of weird{COMMA}\n" -.string "isn{APOSTROPHE}t it?{WAIT_PRESS}\n" -.string "But I believe in you{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_8252D6C -gUnknown_8252D6C: @ 8252D6C -.string " Now that I think about it{COMMA}\n" -.string "there was something different about you.\0" -.align 2, 0 - -.global gUnknown_8252DB4 -gUnknown_8252DB4: @ 8252DB4 -.string " When I first got the idea\n" -.string "to start a rescue team...\0" -.align 2, 0 - -.global gUnknown_8252DEC -gUnknown_8252DEC: @ 8252DEC -.string " But it{APOSTROPHE}s all right.{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_0}{COMMA} you{APOSTROPHE}re a really good sort.\0" -.align 2, 0 - -.global gUnknown_8252E2C -gUnknown_8252E2C: @ 8252E2C -.string " Even back then{COMMA} I sensed\n" -.string "there was something different about you.\0" -.align 2, 0 - -.global gUnknown_8252E74 -gUnknown_8252E74: @ 8252E74 -.string " I met you in the Tiny\n" -.string "Woods{COMMA} {ARG_NICKNAME_0}...\0" -.align 2, 0 - -.global gUnknown_8252E9C -gUnknown_8252E9C: @ 8252E9C -.string " When I first got the idea to\n" -.string "start a rescue team...\0" -.align 2, 0 - -.global gUnknown_8252ED4 -gUnknown_8252ED4: @ 8252ED4 -.string " Do you remember...?\0" -.align 2, 0 - -.global gUnknown_8252EEC -gUnknown_8252EEC: @ 8252EEC -.string " But it doesn{APOSTROPHE}t matter.\n" -.string "I know you{APOSTROPHE}re a good sort{COMMA} {ARG_NICKNAME_0}...\0" -.align 2, 0 - -.global gUnknown_8252F2C -gUnknown_8252F2C: @ 8252F2C -.string " Now that I think about it{COMMA}\n" -.string "there was something different about you.\n" -.string "Just a feeling.\0" -.align 2, 0 - -.global gUnknown_8252F84 -gUnknown_8252F84: @ 8252F84 -.string " I met you in the Tiny\n" -.string "Woods{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_8252FAC -gUnknown_8252FAC: @ 8252FAC -.string " When I first got the idea\n" -.string "to start this rescue team...\0" -.align 2, 0 - -.global gUnknown_8252FE4 -gUnknown_8252FE4: @ 8252FE4 -.string " You know{COMMA} before...\0" -.align 2, 0 - -.global gUnknown_8252FFC -gUnknown_8252FFC: @ 8252FFC -.string " But it doesn{APOSTROPHE}t matter now.{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_0}{COMMA} you{APOSTROPHE}re a really good sort.\0" -.align 2, 0 - -.global gUnknown_8253040 -gUnknown_8253040: @ 8253040 -.string " ...I wonder why?{WAIT_PRESS}\n" -.string "I really don{APOSTROPHE}t know why.\0" -.align 2, 0 - -.global gUnknown_8253070 -gUnknown_8253070: @ 8253070 -.string " Hmm...?{WAIT_PRESS}" -.string " Well{COMMA} there was\n" -.string "a time when I had some doubts...{WAIT_PRESS}\n" -.string "But now...\0" -.align 2, 0 - -.global gUnknown_82530BC -gUnknown_82530BC: @ 82530BC -.string "You believe so much in me?\0" -.align 2, 0 - -.global gUnknown_82530D8 -gUnknown_82530D8: @ 82530D8 -.string "How can you say that?\0" -.align 2, 0 - -.global gUnknown_82530F0 -gUnknown_82530F0: @ 82530F0 -.string " But that{APOSTROPHE}s impossible.\n" -.string "You{APOSTROPHE}re not that human--I{APOSTROPHE}m sure.\0" -.align 2, 0 - -.global gUnknown_8253130 -gUnknown_8253130: @ 8253130 -.string " I can understand how\n" -.string "you could think that.\0" -.align 2, 0 - -.global gUnknown_825315C -gUnknown_825315C: @ 825315C -.string " The heartless human who\n" -.string "abandoned {ARG_NICKNAME_2}...{WAIT_PRESS}\n" -.string "It may be you...\0" -.align 2, 0 - -.global gUnknown_825319C -gUnknown_825319C: @ 825319C -.string " It{APOSTROPHE}s only natural that you\n" -.string "would be scared of meeting {ARG_NICKNAME_3}{COMMA}\n" -.string "{ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_82531E4 -gUnknown_82531E4: @ 82531E4 -.string " ...Don{APOSTROPHE}t be so worried.{WAIT_PRESS}\n" -.string "It will be all right.\0" -.align 2, 0 - -.global gUnknown_8253218 -gUnknown_8253218: @ 8253218 -.string " Listen{COMMA} {ARG_NICKNAME_0}...\0" -.align 2, 0 - -.global gUnknown_825322C -gUnknown_825322C: @ 825322C -.string " I bet you{APOSTROPHE}re scared{COMMA}\n" -.string "thinking that.\0" -.align 2, 0 - -.global gUnknown_8253258 -gUnknown_8253258: @ 8253258 -.string " The heartless human who\n" -.string "abandoned {ARG_NICKNAME_2}...{WAIT_PRESS}\n" -.string "How that might be you...\0" -.align 2, 0 - -.global gUnknown_82532A0 -gUnknown_82532A0: @ 82532A0 -.string " {ARG_NICKNAME_0}{COMMA} I can\n" -.string "understand how it{APOSTROPHE}d be scary for you to\n" -.string "meet {ARG_NICKNAME_3}.\0" -.align 2, 0 - -.global gUnknown_82532E4 -gUnknown_82532E4: @ 82532E4 -.string " You don{APOSTROPHE}t need to look so\n" -.string "worried.{WAIT_PRESS}\n" -.string "It{APOSTROPHE}ll be OK.\0" -.align 2, 0 - -.global gUnknown_825331C -gUnknown_825331C: @ 825331C -.string " Hey{COMMA} {ARG_NICKNAME_0}...\0" -.align 2, 0 - -.global gUnknown_825332C -gUnknown_825332C: @ 825332C -.string "........................\0" -.align 2, 0 - -.global gUnknown_8253348 -gUnknown_8253348: @ 8253348 -.string " We{APOSTROPHE}ll finally get rid of the\n" -.string "suspicions others have about you{COMMA}\n" -.string "{ARG_NICKNAME_0}!{WAIT_PRESS}" -.string " Awesome!\0" -.align 2, 0 - -.global gUnknown_825339C -gUnknown_825339C: @ 825339C -.string " We{APOSTROPHE}ll finally clear your\n" -.string "reputation{COMMA} {ARG_NICKNAME_0}!{WAIT_PRESS}\n" -.string "That{APOSTROPHE}ll be great!\0" -.align 2, 0 - -.global gUnknown_82533E4 -gUnknown_82533E4: @ 82533E4 -.string " All the effort we put into\n" -.string "getting here...\n" -.string "It{APOSTROPHE}s finally going to bear fruit!\0" -.align 2, 0 - -.global gUnknown_8253434 -gUnknown_8253434: @ 8253434 -.string " We{APOSTROPHE}ll meet {ARG_NICKNAME_3}\n" -.string "and get the truth!\0" -.align 2, 0 - -.global gUnknown_825345C -gUnknown_825345C: @ 825345C -.string " All the effort we put into\n" -.string "getting here...\n" -.string "It{APOSTROPHE}s finally going to pay off!\0" -.align 2, 0 - -.global gUnknown_82534AC -gUnknown_82534AC: @ 82534AC -.string " Sniffle...{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_82534C0 -gUnknown_82534C0: @ 82534C0 -.string " And that {ARG_NICKNAME_3} is up\n" -.string "at the peak...\0" -.align 2, 0 - -.global gUnknown_82534E4 -gUnknown_82534E4: @ 82534E4 -.string " And that {ARG_NICKNAME_3} is\n" -.string "at the peak way up there.\0" -.align 2, 0 - -.global gUnknown_8253510 -gUnknown_8253510: @ 8253510 -.string " I{APOSTROPHE}m amazed{COMMA} though...\n" -.string "{ARG_NICKNAME_3} isn{APOSTROPHE}t just a legend.\n" -.string "It really exists...\0" -.align 2, 0 - -.global gUnknown_825355C -gUnknown_825355C: @ 825355C -.string " But{COMMA} wow...\n" -.string "{ARG_NICKNAME_3} isn{APOSTROPHE}t just a legend.\n" -.string "It really exists...\0" -.align 2, 0 - -.global gUnknown_825359C -gUnknown_825359C: @ 825359C -.string " That{APOSTROPHE}s why you were\n" -.string "looking so stunned earlier.\0" -.align 2, 0 - -.global gUnknown_82535D0 -gUnknown_82535D0: @ 82535D0 -.string " ...Oh.\n" -.string "So something like that happened.\0" -.align 2, 0 - -.global gUnknown_82535FC -gUnknown_82535FC: @ 82535FC -.string " So that{APOSTROPHE}s why you were\n" -.string "looking so stunned.\0" -.align 2, 0 - -.global gUnknown_825362C -gUnknown_825362C: @ 825362C -.string " {ARG_NICKNAME_2} appeared to\n" -.string "you...\0" -.align 2, 0 - -.global gUnknown_8253644 -gUnknown_8253644: @ 8253644 -.string " ...OK.\n" -.string "So that{APOSTROPHE}s what happened...\0" -.align 2, 0 - -.global gUnknown_825366C -gUnknown_825366C: @ 825366C -.byte 0xf6, 0x00, 0x08, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x64 -.byte 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northeast -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -.byte 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northeast -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_825380C -gUnknown_825380C: @ 825380C -.byte 0xf6, 0x00, 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825383C -gUnknown_825383C: @ 825383C -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825380C - -.global gUnknown_8253848 -gUnknown_8253848: @ 8253848 -.byte 0xf6, 0x00, 0x2d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -.byte 0x1d, 0x01, 0x02, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8253878 -gUnknown_8253878: @ 8253878 -.byte 0xf6, 0x00, 0x33, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -.byte 0x1d, 0x01, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82538A8 -gUnknown_82538A8: @ 82538A8 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253878 - -.global gUnknown_82538B4 -gUnknown_82538B4: @ 82538B4 -.byte 0xf6, 0x00, 0x3b, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -.byte 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8253904 -gUnknown_8253904: @ 8253904 -.byte 0x91, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82538B4 - -.global gUnknown_8253910 -gUnknown_8253910: @ 8253910 -.byte 0xf6, 0x00, 0x45, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x8e, 0x01, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd8, 0x01, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253F30 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253F14 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253F08 -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253EFC -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253EE8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253EC0 -closeTextBox -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253EA4 -.byte 0xd9, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253E98 -.byte 0xd9, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253E8C -.byte 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253E6C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253E3C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253E28 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253E00 -closeTextBox -.byte 0xc8, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x07, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253E6C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253E28 -closeTextBox -.byte 0xc8, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x09, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x09, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x09, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x09, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x1e, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8253E00 -gUnknown_8253E00: @ 8253E00 -.string " Let{APOSTROPHE}s do our best to reach\n" -.string "the peak!\0" -.align 2, 0 - -.global gUnknown_8253E28 -gUnknown_8253E28: @ 8253E28 -.string " OK!\n" -.string "Let{APOSTROPHE}s go!\0" -.align 2, 0 - -.global gUnknown_8253E3C -gUnknown_8253E3C: @ 8253E3C -.string " We want the peak.\n" -.string "Let{APOSTROPHE}s give it our best!\0" -.align 2, 0 - -.global gUnknown_8253E6C -gUnknown_8253E6C: @ 8253E6C -.string " All right!\n" -.string "Let{APOSTROPHE}s roll out!\0" -.align 2, 0 - -.global gUnknown_8253E8C -gUnknown_8253E8C: @ 8253E8C -.string "Snow Path.\0" -.align 2, 0 - -.global gUnknown_8253E98 -gUnknown_8253E98: @ 8253E98 -.string "Mt. Freeze.\0" -.align 2, 0 - -.global gUnknown_8253EA4 -gUnknown_8253EA4: @ 8253EA4 -.string " Which way should we go?\0" -.align 2, 0 - -.global gUnknown_8253EC0 -gUnknown_8253EC0: @ 8253EC0 -.string " OK.\n" -.string "Let{APOSTROPHE}s go when you{APOSTROPHE}re ready.\0" -.align 2, 0 - -.global gUnknown_8253EE8 -gUnknown_8253EE8: @ 8253EE8 -.string " Hmm? Is that so?\0" -.align 2, 0 - -.global gUnknown_8253EFC -gUnknown_8253EFC: @ 8253EFC -.string "Not yet.\0" -.align 2, 0 - -.global gUnknown_8253F08 -gUnknown_8253F08: @ 8253F08 -.string "All set!\0" -.align 2, 0 - -.global gUnknown_8253F14 -gUnknown_8253F14: @ 8253F14 -.string " Hi{COMMA} {ARG_NICKNAME_0}.\n" -.string "Are you ready?\0" -.align 2, 0 - -.global gUnknown_8253F30 -gUnknown_8253F30: @ 8253F30 -.string " Hey{COMMA} {ARG_NICKNAME_0}.\n" -.string "Are you all ready?\0" -.align 2, 0 - -.global gUnknown_8253F50 -gUnknown_8253F50: @ 8253F50 -.byte 0xf6, 0x00, 0x9a, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x54, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82540C0 -gUnknown_82540C0: @ 82540C0 -.byte 0xf6, 0x00, 0xb4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3b, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82541A0 -gUnknown_82541A0: @ 82541A0 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82540C0 - -.global gUnknown_82541AC -gUnknown_82541AC: @ 82541AC -.byte 0xf6, 0x00, 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825440C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82543E8 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82543B8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8254388 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8254358 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825432C -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825432C -gUnknown_825432C: @ 825432C -.string " Let{APOSTROPHE}s be sure to reach the\n" -.string "peak{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8254358 -gUnknown_8254358: @ 8254358 -.string " This is a seriously tough\n" -.string "challenge{COMMA} but...\0" -.align 2, 0 - -.global gUnknown_8254388 -gUnknown_8254388: @ 8254388 -.string " But let{APOSTROPHE}s storm our way\n" -.string "to the peak{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_82543B8 -gUnknown_82543B8: @ 82543B8 -.string " This is one seriously\n" -.string "rough neighborhood...\0" -.align 2, 0 - -.global gUnknown_82543E8 -gUnknown_82543E8: @ 82543E8 -.string " Ouch...{WAIT_PRESS}\n" -.string "That turned out badly.\0" -.align 2, 0 - -.global gUnknown_825440C -gUnknown_825440C: @ 825440C -.string " Darn...{WAIT_PRESS}\n" -.string "That didn{APOSTROPHE}t go well.\0" -.align 2, 0 - -.global gUnknown_8254430 -gUnknown_8254430: @ 8254430 -.byte 0xf6, 0x00, 0xe3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, east -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8254500 -gUnknown_8254500: @ 8254500 -.byte 0xf6, 0x00, 0xf3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3b, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82545E0 -gUnknown_82545E0: @ 82545E0 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8254500 - -.global gUnknown_82545EC -gUnknown_82545EC: @ 82545EC -.byte 0xf6, 0x00, 0x06, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0x30, 0x80, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82548F4 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -pause 0x0f -.byte 0xe8, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82548B4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825486C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8252C48 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825481C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82547DC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8252C28 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82547DC -gUnknown_82547DC: @ 82547DC -.string " It looks like we have to get\n" -.string "over {COLOR_1 YELLOW_4}Mt. Freeze{END_COLOR_TEXT_1} to move on.\0" -.align 2, 0 - -.global gUnknown_825481C -gUnknown_825481C: @ 825481C -.string " ............{WAIT_PRESS}\n" -.string "I guess that path we took just loops back\n" -.string "to where it started.\0" -.align 2, 0 - -.global gUnknown_825486C -gUnknown_825486C: @ 825486C -.string " If we want to move on{COMMA}\n" -.string "I think our only choice is {COLOR_1 YELLOW_4}Mt. Freeze{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_82548B4 -gUnknown_82548B4: @ 82548B4 -.string " ............{WAIT_PRESS}\n" -.string "I guess that path just loops back to the\n" -.string "start.\0" -.align 2, 0 - -.global gUnknown_82548F4 -gUnknown_82548F4: @ 82548F4 -.string " What the...?{WAIT_PRESS}\n" -.string "Isn{APOSTROPHE}t this where we started from?!\0" -.align 2, 0 - -.global gUnknown_825492C -gUnknown_825492C: @ 825492C -.byte 0xf6, 0x00, 0x28, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0x20, 0x80, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8254A0C -gUnknown_8254A0C: @ 8254A0C -.byte 0xf6, 0x00, 0x39, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0f, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8254AEC -gUnknown_8254AEC: @ 8254AEC -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8254A0C - -.global gUnknown_8254AF8 -gUnknown_8254AF8: @ 8254AF8 -.byte 0xf6, 0x00, 0x4c, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x24, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8254D38 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8254D0C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8254CC0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8254C78 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8254C78 -gUnknown_8254C78: @ 8254C78 -.string " This is a harsh place{COMMA}\n" -.string "so let{APOSTROPHE}s do our best to get through{COMMA}\n" -.string "{ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8254CC0 -gUnknown_8254CC0: @ 8254CC0 -.string " This is one harsh place{COMMA}\n" -.string "but let{APOSTROPHE}s bear down and get through{COMMA}\n" -.string "{ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8254D0C -gUnknown_8254D0C: @ 8254D0C -.string " Ouch...{WAIT_PRESS}\n" -.string "We couldn{APOSTROPHE}t break through...\0" -.align 2, 0 - -.global gUnknown_8254D38 -gUnknown_8254D38: @ 8254D38 -.string " Urrggh...{WAIT_PRESS}\n" -.string "We couldn{APOSTROPHE}t get through...\0" -.align 2, 0 - -.global gUnknown_8254D64 -gUnknown_8254D64: @ 8254D64 -.byte 0xf6, 0x00, 0x67, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8254E34 -gUnknown_8254E34: @ 8254E34 -.byte 0xf6, 0x00, 0x77, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -.byte 0x08, 0x00, 0x00, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8254EA4 -gUnknown_8254EA4: @ 8254EA4 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8254E34 - -.global gUnknown_8254EB0 -gUnknown_8254EB0: @ 8254EB0 -.byte 0xf6, 0x00, 0x83, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8254F30 -gUnknown_8254F30: @ 8254F30 -.byte 0xf6, 0x00, 0x8e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x40, 0x80, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255068 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255040 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8255040 -gUnknown_8255040: @ 8255040 -.string " Don{APOSTROPHE}t forget to take me{COMMA}\n" -.string "kekeh!\0" -.align 2, 0 - -.global gUnknown_8255068 -gUnknown_8255068: @ 8255068 -.string " You{APOSTROPHE}re going to {COLOR_1 YELLOW_4}Mt. Freeze{END_COLOR_TEXT_1}?\0" -.align 2, 0 - -.global gUnknown_825508C -gUnknown_825508C: @ 825508C -.byte 0xf6, 0x00, 0xa2, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82521E4 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x86, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x6b, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_825514C -gUnknown_825514C: @ 825514C -.byte 0x90, 0x00, 0x00, 0x00, 0x0a, 0x12, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8255164 -gUnknown_8255164: @ 8255164 -.byte 0x00, 0x04, 0x00, 0x00, 0x10, 0x1d, 0x02, 0x02 -.4byte gUnknown_825223C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x04, 0x00, 0x00, 0x10, 0x1f, 0x02, 0x02 -.4byte gUnknown_825227C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8255194 -gUnknown_8255194: @ 8255194 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x16, 0x02, 0x02 -.4byte gUnknown_82522BC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1b, 0x14, 0x02, 0x02 -.4byte gUnknown_82522FC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82551C4 -gUnknown_82551C4: @ 82551C4 -.byte 0x00, 0x04, 0x00, 0x00, 0x10, 0x1d, 0x02, 0x02 -.4byte gUnknown_825233C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x04, 0x00, 0x00, 0x10, 0x1f, 0x02, 0x02 -.4byte gUnknown_825237C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82551F4 -gUnknown_82551F4: @ 82551F4 -.byte 0x00, 0x04, 0x00, 0x00, 0x10, 0x1d, 0x02, 0x02 -.4byte gUnknown_82523BC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x10, 0x1f, 0x02, 0x02 -.4byte gUnknown_82523EC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8255224 -gUnknown_8255224: @ 8255224 -.byte 0x90, 0x00, 0x00, 0x00, 0x0a, 0x12, 0x02 -warpDungeon 0x00 -.byte 0x00 -.byte 0x91, 0x00, 0x00, 0x00, 0x19, 0x1e, 0x00 -warpDungeon 0x00 -.byte 0x00 - -.global gUnknown_8255254 -gUnknown_8255254: @ 8255254 -.byte 0x00, 0x06, 0x00, 0x00, 0x15, 0x18, 0x00, 0x02 -.4byte gUnknown_8252548 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x02, 0x00, 0x00, 0x10, 0x18, 0x00, 0x02 -.4byte gUnknown_825366C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8255284 -gUnknown_8255284: @ 8255284 -.byte 0x22, 0x00, 0x00, 0x00, 0x10, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8253848 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825529C -gUnknown_825529C: @ 825529C -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x18, 0x00, 0x02 -.4byte gUnknown_8253910 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x10, 0x18, 0x00, 0x02 -.4byte gUnknown_8253F50 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82552CC -gUnknown_82552CC: @ 82552CC -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x18, 0x00, 0x02 -.4byte gUnknown_82541AC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x10, 0x18, 0x00, 0x02 -.4byte gUnknown_8254430 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82552FC -gUnknown_82552FC: @ 82552FC -.byte 0x00, 0x00, 0x00, 0x00, 0x18, 0x15, 0x00, 0x02 -.4byte gUnknown_82545EC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x12, 0x16, 0x00, 0x02 -.4byte gUnknown_825492C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825532C -gUnknown_825532C: @ 825532C -.byte 0x00, 0x00, 0x00, 0x00, 0x15, 0x18, 0x00, 0x02 -.4byte gUnknown_8254AF8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x10, 0x18, 0x00, 0x02 -.4byte gUnknown_8254D64 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825535C -gUnknown_825535C: @ 825535C -.byte 0x00, 0x04, 0x00, 0x00, 0x15, 0x1b, 0x02, 0x02 -.4byte gUnknown_8254F30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x04, 0x00, 0x00, 0x10, 0x1f, 0x02, 0x02 -.4byte gUnknown_825508C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825538C -gUnknown_825538C: @ 825538C -.byte 0x04, 0x00, 0x05, 0x02, 0x0a, 0x13, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825221C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82553A4 -gUnknown_82553A4: @ 82553A4 -.byte 0x04, 0x00, 0x05, 0x02, 0x0a, 0x13, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825241C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x04, 0x03, 0x19, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825243C -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82553D4 -gUnknown_82553D4: @ 82553D4 -.byte 0x00, 0x00, 0x01, 0x01, 0x13, 0x16, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82553E0 -gUnknown_82553E0: @ 82553E0 -.byte 0x00, 0x00, 0x01, 0x01, 0x13, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82553EC -gUnknown_82553EC: @ 82553EC -.byte 0x00, 0x00, 0x01, 0x01, 0x13, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82553F8 -gUnknown_82553F8: @ 82553F8 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x13, 0x16, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8255404 -gUnknown_8255404: @ 8255404 -.byte 0x00, 0x00, 0x01, 0x01, 0x16, 0x17, 0x02, 0x02 -.4byte gUnknown_8254EB0 - -.global gUnknown_8255410 -gUnknown_8255410: @ 8255410 -.byte 0x03, 0x03, 0x00, 0x00, 0x1a, 0x11, 0x00, 0x00 -.4byte gUnknown_82538A8 - -.global gUnknown_825541C -gUnknown_825541C: @ 825541C -.4byte gUnknown_8252210 - -.global gUnknown_8255420 -gUnknown_8255420: @ 8255420 -.4byte gUnknown_825253C - -.global gUnknown_8255424 -gUnknown_8255424: @ 8255424 -.4byte gUnknown_825383C - -.global gUnknown_8255428 -gUnknown_8255428: @ 8255428 -.4byte gUnknown_8253904 - -.global gUnknown_825542C -gUnknown_825542C: @ 825542C -.4byte gUnknown_82541A0 - -.global gUnknown_8255430 -gUnknown_8255430: @ 8255430 -.4byte gUnknown_82545E0 - -.global gUnknown_8255434 -gUnknown_8255434: @ 8255434 -.4byte gUnknown_8254AEC - -.global gUnknown_8255438 -gUnknown_8255438: @ 8255438 -.4byte gUnknown_8254EA4 - -.global gUnknown_825543C -gUnknown_825543C: @ 825543C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825514C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825538C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825541C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8255164 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8255194 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82551C4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82551F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8255224 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82553A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825552C -gUnknown_825552C: @ 825552C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8255254 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82553D4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8255420 - -.global gUnknown_8255554 -gUnknown_8255554: @ 8255554 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8255284 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8255410 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8255424 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_825529C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8255428 - -.global gUnknown_82555A4 -gUnknown_82555A4: @ 82555A4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82552CC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82553E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825542C - -.global gUnknown_82555CC -gUnknown_82555CC: @ 82555CC -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82552FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82553EC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8255430 - -.global gUnknown_82555F4 -gUnknown_82555F4: @ 82555F4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_825532C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82553F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8255434 - -.global gUnknown_825561C -gUnknown_825561C: @ 825561C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_825535C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8255404 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8255438 - -.global gUnknown_8255644 -gUnknown_8255644: @ 8255644 -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_825543C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825552C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8255554 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82555A4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82555CC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82555F4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825561C - -.global gUnknown_825567C -gUnknown_825567C: @ 825567C -.byte 0x1b, 0x13, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x17, 0x19, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00 - -.global gUnknown_825568C -gUnknown_825568C: @ 825568C -.byte 0x07, 0x00, 0x00, 0x00 -.4byte gUnknown_8255644 -.4byte gUnknown_825567C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_82556A0 -gUnknown_82556A0: @ 82556A0 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255900 -.byte 0x08, 0x00, 0x00, 0x00, 0xca, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcd, 0x03, 0x01, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x06, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8255900 -gUnknown_8255900: @ 8255900 -.string "../data/ground/ground_data_d11p02_station.c\0" -.align 2, 0 - -.global gUnknown_825592C -gUnknown_825592C: @ 825592C -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82556A0 - -.global gUnknown_8255938 -gUnknown_8255938: @ 8255938 -.byte 0xf6, 0x00, 0x35, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255900 -.byte 0xd3, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255A58 -.byte 0xd9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255A50 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255A48 -.byte 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x48, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x02, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x1e, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x1e, 0x00 -.byte 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8255A48 -gUnknown_8255A48: @ 8255A48 -.string "*No.\0" -.align 2, 0 - -.global gUnknown_8255A50 -gUnknown_8255A50: @ 8255A50 -.string "Yes.\0" -.align 2, 0 - -.global gUnknown_8255A58 -gUnknown_8255A58: @ 8255A58 -.string "Keep going?\0" -.align 2, 0 - -.global gUnknown_8255A64 -gUnknown_8255A64: @ 8255A64 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255938 - -.global gUnknown_8255A70 -gUnknown_8255A70: @ 8255A70 -.byte 0xf6, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255900 -.byte 0xbb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd3, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255C18 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255A50 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255A48 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x0a, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x04, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd3, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255C00 -.byte 0xd9, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255A50 -.byte 0xd9, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255A48 -.byte 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x1e, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8255C00 -gUnknown_8255C00: @ 8255C00 -.string "Return to the entrance?\0" -.align 2, 0 - -.global gUnknown_8255C18 -gUnknown_8255C18: @ 8255C18 -.string "Return to the rescue team base?\0" -.align 2, 0 - -.global gUnknown_8255C38 -gUnknown_8255C38: @ 8255C38 -.byte 0x65, 0x01, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255A70 - -.global gUnknown_8255C44 -gUnknown_8255C44: @ 8255C44 -.byte 0xf6, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255900 -.byte 0xe9, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8255C64 -gUnknown_8255C64: @ 8255C64 -.byte 0xf6, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255900 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8255CA4 -gUnknown_8255CA4: @ 8255CA4 -.byte 0xf6, 0x00, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255900 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8255CE4 -gUnknown_8255CE4: @ 8255CE4 -.byte 0xf6, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255900 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8255D24 -gUnknown_8255D24: @ 8255D24 -.byte 0xf6, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255900 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8255D64 -gUnknown_8255D64: @ 8255D64 -.byte 0xf6, 0x00, 0x8a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255900 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8255D94 -gUnknown_8255D94: @ 8255D94 -.byte 0xf6, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255900 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8255DC4 -gUnknown_8255DC4: @ 8255DC4 -.byte 0xf6, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255900 -.byte 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0xca, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0xca, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x00, 0x03, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xca, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x00, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8255EF4 -gUnknown_8255EF4: @ 8255EF4 -.byte 0x92, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255DC4 - -.global gUnknown_8255F00 -gUnknown_8255F00: @ 8255F00 -.byte 0xf6, 0x00, 0xae, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255900 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256180 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825615C -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256138 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256104 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82560E8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82560B0 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82560B0 -gUnknown_82560B0: @ 82560B0 -.string " Let{APOSTROPHE}s be sure to reach the\n" -.string "peak this time{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_82560E8 -gUnknown_82560E8: @ 82560E8 -.string " But we were very close!\0" -.align 2, 0 - -.global gUnknown_8256104 -gUnknown_8256104: @ 8256104 -.string " Let{APOSTROPHE}s storm our way to the\n" -.string "top this time{COMMA} {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8256138 -gUnknown_8256138: @ 8256138 -.string " But we didn{APOSTROPHE}t have far to\n" -.string "go!\0" -.align 2, 0 - -.global gUnknown_825615C -gUnknown_825615C: @ 825615C -.string " Hmm...{WAIT_PRESS}\n" -.string "That didn{APOSTROPHE}t work out...\0" -.align 2, 0 - -.global gUnknown_8256180 -gUnknown_8256180: @ 8256180 -.string " Hmm...{WAIT_PRESS}\n" -.string "Well{COMMA} that didn{APOSTROPHE}t go well.\0" -.align 2, 0 - -.global gUnknown_82561AC -gUnknown_82561AC: @ 82561AC -.byte 0xf6, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255900 -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825628C -gUnknown_825628C: @ 825628C -.byte 0xf6, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255900 -.byte 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82562BC -gUnknown_82562BC: @ 82562BC -.byte 0x93, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825628C - -.global gUnknown_82562C8 -gUnknown_82562C8: @ 82562C8 -.byte 0x91, 0x00, 0x00, 0x00, 0x1c, 0x1c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82562E0 -gUnknown_82562E0: @ 82562E0 -.byte 0x00, 0x04, 0x00, 0x00, 0x1c, 0x26, 0x02, 0x02 -.4byte gUnknown_8255C64 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x1c, 0x29, 0x02, 0x02 -.4byte gUnknown_8255CA4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8256310 -gUnknown_8256310: @ 8256310 -.byte 0x00, 0x04, 0x00, 0x00, 0x1c, 0x26, 0x02, 0x02 -.4byte gUnknown_8255CE4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1c, 0x29, 0x02, 0x02 -.4byte gUnknown_8255D24 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8256340 -gUnknown_8256340: @ 8256340 -.byte 0x00, 0x04, 0x00, 0x00, 0x1c, 0x26, 0x02, 0x02 -.4byte gUnknown_8255D64 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00 -.byte 0x1c, 0x29, 0x02, 0x02 -.4byte gUnknown_8255D94 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8256370 -gUnknown_8256370: @ 8256370 -.byte 0x00, 0x00, 0x00, 0x00, 0x1e, 0x26, 0x00, 0x02 -.4byte gUnknown_8255F00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x1b, 0x26, 0x00, 0x02 -.4byte gUnknown_82561AC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82563A0 -gUnknown_82563A0: @ 82563A0 -.byte 0x04, 0x00, 0x04, 0x03, 0x1c, 0x1c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8255C44 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82563B8 -gUnknown_82563B8: @ 82563B8 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x1c, 0x25, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82563C4 -gUnknown_82563C4: @ 82563C4 -.byte 0x0f, 0x03, 0x00, 0x00, 0x15, 0x0c, 0x00, 0x00 -.4byte gUnknown_8255A64 -.byte 0x0f, 0x03, 0x00, 0x00, 0x15, 0x2a, 0x00, 0x00 -.4byte gUnknown_8255C38 - -.global gUnknown_82563DC -gUnknown_82563DC: @ 82563DC -.4byte gUnknown_825592C - -.global gUnknown_82563E0 -gUnknown_82563E0: @ 82563E0 -.4byte gUnknown_8255EF4 - -.global gUnknown_82563E4 -gUnknown_82563E4: @ 82563E4 -.4byte gUnknown_82562BC - -.global gUnknown_82563E8 -gUnknown_82563E8: @ 82563E8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82562C8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82563A0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82563C4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82563DC -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82562E0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8256310 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8256340 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82564B0 -gUnknown_82564B0: @ 82564B0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8256370 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82563B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82563E0 - -.global gUnknown_82564D8 -gUnknown_82564D8: @ 82564D8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82563E4 - -.global gUnknown_8256500 -gUnknown_8256500: @ 8256500 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_82563E8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82564B0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82564D8 - -.global gUnknown_8256518 -gUnknown_8256518: @ 8256518 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8256520 -gUnknown_8256520: @ 8256520 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8256500 -.4byte gUnknown_8256518 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8256534 -gUnknown_8256534: @ 8256534 -.byte 0xf6, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256574 -.byte 0x08, 0x00, 0x00, 0x00, 0xcb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8256574 -gUnknown_8256574: @ 8256574 -.string "../data/ground/ground_data_d11p03_station.c\0" -.align 2, 0 - -.global gUnknown_82565A0 -gUnknown_82565A0: @ 82565A0 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256534 - -.global gUnknown_82565AC -gUnknown_82565AC: @ 82565AC -.byte 0xf6, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256574 -.byte 0x08, 0x00, 0x00, 0x00, 0xcb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825663C -gUnknown_825663C: @ 825663C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82565AC - -.global gUnknown_8256648 -gUnknown_8256648: @ 8256648 -.byte 0xf6, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256574 -.byte 0x99, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x28, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x30, 0x00, 0x01 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82566F8 -gUnknown_82566F8: @ 82566F8 -.byte 0xf6, 0x00, 0x3d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256574 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x04, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x6b, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x02, 0x00 -.byte 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82579E0 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82579B0 -closeTextBox -.byte 0xdb, 0x00, 0x2d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xfa, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00 -.byte 0x3c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x0d, 0x01, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8257990 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8257980 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825795C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00 -.byte 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8257934 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82578F8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82578C8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82578B0 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825787C -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8257834 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8257814 -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82577DC -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82577A8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x02, 0x00 -.byte 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825778C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x15, 0x02, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8257748 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xd0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825771C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8257704 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82576AC -.byte 0x2e, 0x15, 0x02, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8257688 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825763C -closeTextBox -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82575FC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82575A4 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8257578 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00 -.byte 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8257558 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8257524 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82574FC -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82574A0 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8257450 -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8257404 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82573EC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82573B8 -.byte 0xe1, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8257374 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8257334 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8257328 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82572E8 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82572B0 -.byte 0x2e, 0x15, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8257274 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8257228 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x91, 0x0c, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82571F4 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0xc0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82571C4 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8257170 -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8257118 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8257118 -gUnknown_8257118: @ 8257118 -.string " If he would only realize that\n" -.string "upon reaching the {COLOR_1 YELLOW_4}Murky Cave{END_COLOR_TEXT_1}...{WAIT_PRESS}\n" -.string "If he does not...\0" -.align 2, 0 - -.global gUnknown_8257170 -gUnknown_8257170: @ 8257170 -.string " But he is wavering...{WAIT_PRESS}\n" -.string "His old and new emotions are clashing\n" -.string "within his heart...\0" -.align 2, 0 - -.global gUnknown_82571C4 -gUnknown_82571C4: @ 82571C4 -.string " That oaf...{WAIT_PRESS}\n" -.string "He has changed in many ways...\0" -.align 2, 0 - -.global gUnknown_82571F4 -gUnknown_82571F4: @ 82571F4 -.string " Hey!\n" -.string "I kept you waiting!\n" -.string "Let{APOSTROPHE}s get home! Kekeh!\0" -.align 2, 0 - -.global gUnknown_8257228 -gUnknown_8257228: @ 8257228 -.string " There was a way to lift\n" -.string "the curse after all!{WAIT_PRESS}\n" -.string "You had me scared! Kekeke!\0" -.align 2, 0 - -.global gUnknown_8257274 -gUnknown_8257274: @ 8257274 -.string " Kekeh!\n" -.string "How do you like that?\n" -.string "It{APOSTROPHE}s ridiculously simple!\0" -.align 2, 0 - -.global gUnknown_82572B0 -gUnknown_82572B0: @ 82572B0 -.string " And that breaks the seal{COMMA}\n" -.string "so good-bye to the curse!\0" -.align 2, 0 - -.global gUnknown_82572E8 -gUnknown_82572E8: @ 82572E8 -.string " We just go to this\n" -.string "{COLOR_1 YELLOW_4}Murky Cave{END_COLOR_TEXT_1} and plunk down that rock...\0" -.align 2, 0 - -.global gUnknown_8257328 -gUnknown_8257328: @ 8257328 -.string " Gotcha!\0" -.align 2, 0 - -.global gUnknown_8257334 -gUnknown_8257334: @ 8257334 -.string " The seal can be broken\n" -.string "by that stone.{WAIT_PRESS}\n" -.string "The {COLOR_1 GREEN_2}9-Tail Crest{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_8257374 -gUnknown_8257374: @ 8257374 -.string " Gardevoir{APOSTROPHE}s physical form\n" -.string "is sealed within the {COLOR_1 YELLOW_4}Murky Cave{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_82573B8 -gUnknown_82573B8: @ 82573B8 -.string "{CENTER_ALIGN}{ARG_NICKNAME_2} received the\n" -.string "{CENTER_ALIGN}{COLOR_1 GREEN_2}9-Tail Crest{END_COLOR_TEXT_1} from {ARG_NICKNAME_3}.\0" -.align 2, 0 - -.global gUnknown_82573EC -gUnknown_82573EC: @ 82573EC -.string " Take this with you.\0" -.align 2, 0 - -.global gUnknown_8257404 -gUnknown_8257404: @ 8257404 -.string " For that reason{COMMA} depending\n" -.string "on your heart now{COMMA} the curse may be\n" -.string "lifted.\0" -.align 2, 0 - -.global gUnknown_8257450 -gUnknown_8257450: @ 8257450 -.string " I became enraged at your\n" -.string "treacherous heart...{WAIT_PRESS}\n" -.string "And on it{COMMA} I laid my curse.\0" -.align 2, 0 - -.global gUnknown_82574A0 -gUnknown_82574A0: @ 82574A0 -.string " Our curse is so powerful{COMMA}\n" -.string "even we cannot lift it...{WAIT_PRESS}\n" -.string "There may be a way{COMMA} however...\0" -.align 2, 0 - -.global gUnknown_82574FC -gUnknown_82574FC: @ 82574FC -.string " Once we cast a curse{COMMA}\n" -.string "it is final...\0" -.align 2, 0 - -.global gUnknown_8257524 -gUnknown_8257524: @ 8257524 -.string " We {ARG_POKEMON_3} are known\n" -.string "to be vengeful in the extreme.\0" -.align 2, 0 - -.global gUnknown_8257558 -gUnknown_8257558: @ 8257558 -.string " Gegeh!\n" -.string "What are you saying?!\0" -.align 2, 0 - -.global gUnknown_8257578 -gUnknown_8257578: @ 8257578 -.string " I don{APOSTROPHE}t have the power to\n" -.string "lift curses.\0" -.align 2, 0 - -.global gUnknown_82575A4 -gUnknown_82575A4: @ 82575A4 -.string " Humph. I regret to inform...{WAIT_PRESS}\n" -.string "Even if you could defeat me{COMMA} the curse\n" -.string "would remain.\0" -.align 2, 0 - -.global gUnknown_82575FC -gUnknown_82575FC: @ 82575FC -.string " I{APOSTROPHE}ll see this curse lifted\n" -.string "even if it means taking you on!\0" -.align 2, 0 - -.global gUnknown_825763C -gUnknown_825763C: @ 825763C -.string " ...Well{COMMA} it won{APOSTROPHE}t be me\n" -.string "doing the fighting{COMMA} but those behind me...\0" -.align 2, 0 - -.global gUnknown_8257688 -gUnknown_8257688: @ 8257688 -.string " Turn me down{COMMA} and I{APOSTROPHE}ll\n" -.string "KO you!\0" -.align 2, 0 - -.global gUnknown_82576AC -gUnknown_82576AC: @ 82576AC -.string " Imagine! Me asking anyone\n" -.string "for a favor!{WAIT_PRESS}\n" -.string "I{APOSTROPHE}m breaking out in hives at the thought!\0" -.align 2, 0 - -.global gUnknown_8257704 -gUnknown_8257704: @ 8257704 -.string " Keh! That{APOSTROPHE}s right!\0" -.align 2, 0 - -.global gUnknown_825771C -gUnknown_825771C: @ 825771C -.string " You...{WAIT_PRESS}\n" -.string "You have the nerve to ask that?\0" -.align 2, 0 - -.global gUnknown_8257748 -gUnknown_8257748: @ 8257748 -.string " Anyway...{WAIT_PRESS}\n" -.string "About that curse...{WAIT_PRESS}\n" -.string "How about lifting it already?\0" -.align 2, 0 - -.global gUnknown_825778C -gUnknown_825778C: @ 825778C -.string " Keh! You{APOSTROPHE}re quibbling!\0" -.align 2, 0 - -.global gUnknown_82577A8 -gUnknown_82577A8: @ 82577A8 -.string " It was Gardevoir that bore\n" -.string "my curse{COMMA} not you.\0" -.align 2, 0 - -.global gUnknown_82577DC -gUnknown_82577DC: @ 82577DC -.string " But you became\n" -.string "{ARG_POKEMON_2} because you\n" -.string "abandoned Gardevoir.\0" -.align 2, 0 - -.global gUnknown_8257814 -gUnknown_8257814: @ 8257814 -.string " It was I who cast the curse.\0" -.align 2, 0 - -.global gUnknown_8257834 -gUnknown_8257834: @ 8257834 -.string " You fled from yourself as\n" -.string "a human...{WAIT_PRESS}\n" -.string "And you fled from Gardevoir.\0" -.align 2, 0 - -.global gUnknown_825787C -gUnknown_825787C: @ 825787C -.string " It all arose because you\n" -.string "fled{COMMA} isn{APOSTROPHE}t that so?\0" -.align 2, 0 - -.global gUnknown_82578B0 -gUnknown_82578B0: @ 82578B0 -.string " It is not my fault.\0" -.align 2, 0 - -.global gUnknown_82578C8 -gUnknown_82578C8: @ 82578C8 -.string " What{COMMA} you can{APOSTROPHE}t even begin\n" -.string "by apologizing?\0" -.align 2, 0 - -.global gUnknown_82578F8 -gUnknown_82578F8: @ 82578F8 -.string " Look at me!\n" -.string "Isn{APOSTROPHE}t it your fault that I look like this?!\0" -.align 2, 0 - -.global gUnknown_8257934 -gUnknown_8257934: @ 8257934 -.string " Kekeh!\n" -.string "You want to know what I want?!\0" -.align 2, 0 - -.global gUnknown_825795C -gUnknown_825795C: @ 825795C -.string " ............{WAIT_PRESS}" -.string "What do you want?\0" -.align 2, 0 - -.global gUnknown_8257980 -gUnknown_8257980: @ 8257980 -.string " Recognize me?\0" -.align 2, 0 - -.global gUnknown_8257990 -gUnknown_8257990: @ 8257990 -.string " Kekeh!\n" -.string "Long time{COMMA} Ninetales!\0" -.align 2, 0 - -.global gUnknown_82579B0 -gUnknown_82579B0: @ 82579B0 -.string " Hey{COMMA} Ninetales!{WAIT_PRESS}\n" -.string "Where are you?! Come out!\0" -.align 2, 0 - -.global gUnknown_82579E0 -gUnknown_82579E0: @ 82579E0 -.string " Kekeh! Here at last!\n" -.string "We{APOSTROPHE}re at the peak!\0" -.align 2, 0 - -.global gUnknown_8257A0C -gUnknown_8257A0C: @ 8257A0C -.byte 0xf6, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256574 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0x18, 0x80, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, southeast -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x28, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -rotate 0x04, shortestDir, northeast -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x78, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8257C8C -gUnknown_8257C8C: @ 8257C8C -.byte 0xf6, 0x00, 0x1a, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256574 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, southeast -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, southwest -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x84, 0x00, 0x00, 0x01, 0xef, 0xff, 0xff, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x01, 0x11, 0x00, 0x00, 0x00, 0xe0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, south -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8257E2C -gUnknown_8257E2C: @ 8257E2C -.byte 0xf6, 0x00, 0x37, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256574 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xcb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8257E9C -gUnknown_8257E9C: @ 8257E9C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8257E2C - -.global gUnknown_8257EA8 -gUnknown_8257EA8: @ 8257EA8 -.byte 0xf6, 0x00, 0x43, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256574 -.byte 0x98, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8257EE8 -gUnknown_8257EE8: @ 8257EE8 -.byte 0xf6, 0x00, 0x4a, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256574 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x05, 0x00, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x89, 0x68, 0x00, 0x01 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82589E8 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82589C8 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82589B0 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8258994 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825896C -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8258954 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825892C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8258914 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825890C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x03, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82588D8 -.byte 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82588A0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825888C -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8258868 -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825882C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x2e, 0x15, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8258808 -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82587E4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x2e, 0x03, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82587B0 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8258790 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825875C -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8258724 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8258718 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xdb, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x62, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0x54, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xf1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x00, 0x05, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x04 -.byte 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x80, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x6a, 0x00, 0x00, 0x03 -.byte 0xe0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 12 -.byte 0x6a, 0x00, 0x00, 0x03 -.byte 0xc8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xf1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x8b, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x00, 0x05, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x04 -.byte 0xe0, 0xff, 0xff, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x80, 0x00 -.byte 0xfc, 0xff, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x03, 0x18, 0x00, 0x00, 0x00, 0xc8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x96, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xfa, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x00, 0x05, 0x00 -.byte 0x5a, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x00, 0x5a, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0xe8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8258718 -gUnknown_8258718: @ 8258718 -.string " Get them!\0" -.align 2, 0 - -.global gUnknown_8258724 -gUnknown_8258724: @ 8258724 -.string " We will...{WAIT_PRESS}\n" -.string "crush you with every shred of our power!\0" -.align 2, 0 - -.global gUnknown_825875C -gUnknown_825875C: @ 825875C -.string " The role of a rescue team\n" -.string "is to help bring peace.\0" -.align 2, 0 - -.global gUnknown_8258790 -gUnknown_8258790: @ 8258790 -.string " But this{COMMA} too{COMMA} is fate.\0" -.align 2, 0 - -.global gUnknown_82587B0 -gUnknown_82587B0: @ 82587B0 -.string " {ARG_NICKNAME_0}...{WAIT_PRESS}\n" -.string "I didn{APOSTROPHE}t wish for this conclusion...\0" -.align 2, 0 - -.global gUnknown_82587E4 -gUnknown_82587E4: @ 82587E4 -.string " I don{APOSTROPHE}t know how to show\n" -.string "mercy.\0" -.align 2, 0 - -.global gUnknown_8258808 -gUnknown_8258808: @ 8258808 -.string " {ARG_NICKNAME_1}.{WAIT_PRESS}\n" -.string "Don{APOSTROPHE}t think badly of me.\0" -.align 2, 0 - -.global gUnknown_825882C -gUnknown_825882C: @ 825882C -.string " I can barely contain myself.\n" -.string "I{APOSTROPHE}m itching for a fight.\0" -.align 2, 0 - -.global gUnknown_8258868 -gUnknown_8258868: @ 8258868 -.string " We can finally settle\n" -.string "things here.\0" -.align 2, 0 - -.global gUnknown_825888C -gUnknown_825888C: @ 825888C -.string " Pipe down{COMMA} {ARG_NICKNAME_4}.\0" -.align 2, 0 - -.global gUnknown_82588A0 -gUnknown_82588A0: @ 82588A0 -.string " Your fugitive act dragged\n" -.string "us all the way out here...\0" -.align 2, 0 - -.global gUnknown_82588D8 -gUnknown_82588D8: @ 82588D8 -.string " It{APOSTROPHE}s about time.\n" -.string "We finally caught up to you.\0" -.align 2, 0 - -.global gUnknown_825890C -gUnknown_825890C: @ 825890C -.string " A-{ARG_NICKNAME_2}!\0" -.align 2, 0 - -.global gUnknown_8258914 -gUnknown_8258914: @ 8258914 -.string " All right!\n" -.string "I see them!\0" -.align 2, 0 - -.global gUnknown_825892C -gUnknown_825892C: @ 825892C -.string " There they are!{WAIT_PRESS}\n" -.string "I{APOSTROPHE}ve spotted {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_8258954 -gUnknown_8258954: @ 8258954 -.string " I wonder where\n" -.string "{ARG_NICKNAME_5} is?\0" -.align 2, 0 - -.global gUnknown_825896C -gUnknown_825896C: @ 825896C -.string " This is the summit.{WAIT_PRESS}\n" -.string "...Isn{APOSTROPHE}t it?\0" -.align 2, 0 - -.global gUnknown_8258994 -gUnknown_8258994: @ 8258994 -.string " We{APOSTROPHE}ve finally arrived.\0" -.align 2, 0 - -.global gUnknown_82589B0 -gUnknown_82589B0: @ 82589B0 -.string " Where could {ARG_NICKNAME_5}\n" -.string "be?\0" -.align 2, 0 - -.global gUnknown_82589C8 -gUnknown_82589C8: @ 82589C8 -.string " This is the peak.{WAIT_PRESS}\n" -.string "...Right?\0" -.align 2, 0 - -.global gUnknown_82589E8 -gUnknown_82589E8: @ 82589E8 -.string " We finally made it.\0" -.align 2, 0 - -.global gUnknown_8258A00 -gUnknown_8258A00: @ 8258A00 -.byte 0xf6, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256574 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x68, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 12 -.byte 0x6a, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x04, 0x10, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x80, 0x00, 0x04, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x4c, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8258C30 -gUnknown_8258C30: @ 8258C30 -.byte 0xf6, 0x00, 0xfb, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256574 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x68, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x03 -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xfb, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x8b, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x4c, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8258E20 -gUnknown_8258E20: @ 8258E20 -.byte 0xf6, 0x00, 0x1d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256574 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x50, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x08, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 18 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x8b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x04, 0xc0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x80, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x03, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x8b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x04, 0x20, 0x00, 0x00, 0x00, 0xc0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x80, 0x00, 0x04, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x03, 0xe8, 0xff, 0xff, 0xff, 0x38, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x00, 0x5a, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x18, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8259080 -gUnknown_8259080: @ 8259080 -.byte 0xf6, 0x00, 0x46, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256574 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x50, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, north -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x08, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x8b, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x04, 0xe0, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x80, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x4c, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8259250 -gUnknown_8259250: @ 8259250 -.byte 0xf6, 0x00, 0x66, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256574 -setAnimation 2 -.byte 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x50, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x89, 0x08, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 12 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x62, 0x00, 0x00, 0x04, 0x20, 0x00, 0x00, 0x00, 0xc0, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x80, 0x00, 0xfc, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x91, 0x04, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x4c, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82593C0 -gUnknown_82593C0: @ 82593C0 -.byte 0xf6, 0x00, 0x80, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256574 -.byte 0x08, 0x00, 0x00, 0x00, 0xcb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3b, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825963C -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82595EC -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82595AC -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8259578 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8259540 -closeTextBox -.byte 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3b, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8259540 -gUnknown_8259540: @ 8259540 -.string "{CENTER_ALIGN}And returned to their\n" -.string "{CENTER_ALIGN}welcoming rescue team base.\0" -.align 2, 0 - -.global gUnknown_8259578 -gUnknown_8259578: @ 8259578 -.string "{CENTER_ALIGN}Put an end to their long\n" -.string "{CENTER_ALIGN}and arduous journey...\0" -.align 2, 0 - -.global gUnknown_82595AC -gUnknown_82595AC: @ 82595AC -.string "{CENTER_ALIGN}Meanwhile{COMMA} cleared of all\n" -.string "{CENTER_ALIGN}suspicion{COMMA} {ARG_NICKNAME_0}{APOSTROPHE}s team...\0" -.align 2, 0 - -.global gUnknown_82595EC -gUnknown_82595EC: @ 82595EC -.string "{CENTER_ALIGN}Alakazam{APOSTROPHE}s team made their\n" -.string "{CENTER_ALIGN}way underground to quell\n" -.string "{CENTER_ALIGN}the awakened {ARG_NICKNAME_3}.\0" -.align 2, 0 - -.global gUnknown_825963C -gUnknown_825963C: @ 825963C -.string "{CENTER_ALIGN}And thus...\0" -.align 2, 0 - -.global gUnknown_825964C -gUnknown_825964C: @ 825964C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82593C0 - -.global gUnknown_8259658 -gUnknown_8259658: @ 8259658 -.byte 0xf6, 0x00, 0x9e, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256574 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x06, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x48, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd2, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825BC9C -closeTextBox -.byte 0x27, 0x00, 0x01, 0x00 -.byte 0x1e, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x54, 0x00, 0x32, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x02, 0xf0, 0xff, 0xff, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825BC94 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00 -.byte 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825BC84 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, northeast -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xc7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x03, 0x00 -.byte 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825BC70 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x03, 0x01, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825BC5C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x0d, 0x04, 0x00 -.byte 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825BC3C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825BC1C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825BC00 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825BBEC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825BBB8 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825BB78 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825BB2C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825BAF0 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825BAE0 -.byte 0x34, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825BAC0 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825BA88 -.byte 0x34, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825BA38 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B9F0 -.byte 0x34, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B9B8 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B998 -.byte 0x34, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B970 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B92C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B90C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B8E4 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B8DC -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B8BC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B884 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B83C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B828 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B7DC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B78C -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B73C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B730 -.byte 0xe5, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B724 -.byte 0xe5, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B6EC -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B6CC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B6EC -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B6CC -closeTextBox -.byte 0xe5, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B6B4 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B698 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x04, 0x02, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x91, 0x08, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x91, 0x08, 0x01, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x91, 0x08, 0x02, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x91, 0x08, 0x02, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B668 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B624 -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B5EC -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B5AC -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B574 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B52C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B50C -.byte 0x34, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B4C0 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B460 -.byte 0x34, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B420 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B3FC -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B3DC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B3BC -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B390 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, north -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0x2e, 0x15, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B368 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B334 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x03, 0x00 -.byte 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B304 -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B2C0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B294 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B278 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B264 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B204 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B1F0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, east -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B1B4 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B17C -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B154 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B134 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B114 -.byte 0x48, 0x00, 0x96, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B0F4 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B0AC -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B080 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B068 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B040 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825B000 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825AFCC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825AFB4 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xc5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x06, CW, northeast -.byte 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northwest -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825AF94 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x03, 0x00 -.byte 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825AF80 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x45, 0x00, 0x3c, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825AF5C -.byte 0x34, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825AF34 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825AF0C -.byte 0x34, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825AEAC -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825AE90 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xdb, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825AE74 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825AE68 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x91, 0x04, 0x02, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825AE40 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825AE04 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825ADB8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825AD5C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825AD24 -.byte 0x34, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825AD0C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825ACFC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825ACEC -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825ACD8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825ACD8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825ACB8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825AC78 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825AC64 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825AC10 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825ABC8 -.byte 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825AB80 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825AB58 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x4d, 0x00, 0x00, 0x00 -.byte 0xc5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_825AB58 -gUnknown_825AB58: @ 825AB58 -.string " Fine.\n" -.string "We{APOSTROPHE}re off to quell Groudon!\0" -.align 2, 0 - -.global gUnknown_825AB80 -gUnknown_825AB80: @ 825AB80 -.string " We{APOSTROPHE}ll get the job done{COMMA} and\n" -.string "we{APOSTROPHE}ll be back before you know it.\0" -.align 2, 0 - -.global gUnknown_825ABC8 -gUnknown_825ABC8: @ 825ABC8 -.string " Don{APOSTROPHE}t worry about us.\n" -.string "We didn{APOSTROPHE}t get our Gold Rank the easy way.\0" -.align 2, 0 - -.global gUnknown_825AC10 -gUnknown_825AC10: @ 825AC10 -.string " That{APOSTROPHE}s how it goes.\n" -.string "You go back to your rescue team base\n" -.string "for a well-earned rest.\0" -.align 2, 0 - -.global gUnknown_825AC64 -gUnknown_825AC64: @ 825AC64 -.string " Leave it to us.\0" -.align 2, 0 - -.global gUnknown_825AC78 -gUnknown_825AC78: @ 825AC78 -.string " Groudon is far more\n" -.string "powerful than any Pokémon you have\n" -.string "faced.\0" -.align 2, 0 - -.global gUnknown_825ACB8 -gUnknown_825ACB8: @ 825ACB8 -.string " No.\n" -.string "You must remain behind.\0" -.align 2, 0 - -.global gUnknown_825ACD8 -gUnknown_825ACD8: @ 825ACD8 -.string " We{APOSTROPHE}ll go too!\0" -.align 2, 0 - -.global gUnknown_825ACEC -gUnknown_825ACEC: @ 825ACEC -.string " So will we!\0" -.align 2, 0 - -.global gUnknown_825ACFC -gUnknown_825ACFC: @ 825ACFC -.string " We will go.\0" -.align 2, 0 - -.global gUnknown_825AD0C -gUnknown_825AD0C: @ 825AD0C -.string " It must be stopped!\0" -.align 2, 0 - -.global gUnknown_825AD24 -gUnknown_825AD24: @ 825AD24 -.string " If Groudon were to get\n" -.string "loose{COMMA} there would be chaos.\0" -.align 2, 0 - -.global gUnknown_825AD5C -gUnknown_825AD5C: @ 825AD5C -.string " It is said to have taken to\n" -.string "sleep after catastrophic battles with\n" -.string "its archenemy Kyogre.\0" -.align 2, 0 - -.global gUnknown_825ADB8 -gUnknown_825ADB8: @ 825ADB8 -.string " It is the Pokémon that\n" -.string "raised the land masses and created\n" -.string "continents...\0" -.align 2, 0 - -.global gUnknown_825AE04 -gUnknown_825AE04: @ 825AE04 -.string " A legendary Pokémon that\n" -.string "has been spoken of only in myths.\0" -.align 2, 0 - -.global gUnknown_825AE40 -gUnknown_825AE40: @ 825AE40 -.string " What is that?{WAIT_PRESS}\n" -.string "What{APOSTROPHE}s a Groudon?\0" -.align 2, 0 - -.global gUnknown_825AE68 -gUnknown_825AE68: @ 825AE68 -.string " Groudon?!\0" -.align 2, 0 - -.global gUnknown_825AE74 -gUnknown_825AE74: @ 825AE74 -.string " What?!\n" -.string "Groudon is rising?!\0" -.align 2, 0 - -.global gUnknown_825AE90 -gUnknown_825AE90: @ 825AE90 -.string " Groudon will be awakened!\0" -.align 2, 0 - -.global gUnknown_825AEAC -gUnknown_825AEAC: @ 825AEAC -.string " It will awaken the beast\n" -.string "that embodies the ground...\n" -.string "The beast that slept deep underground...\0" -.align 2, 0 - -.global gUnknown_825AF0C -gUnknown_825AF0C: @ 825AF0C -.string " And...{WAIT_PRESS}\n" -.string "The shifting of the ground...\0" -.align 2, 0 - -.global gUnknown_825AF34 -gUnknown_825AF34: @ 825AF34 -.string " The natural calamities are\n" -.string "worsening.\0" -.align 2, 0 - -.global gUnknown_825AF5C -gUnknown_825AF5C: @ 825AF5C -.string " The world{APOSTROPHE}s crust is\n" -.string "shifting.\0" -.align 2, 0 - -.global gUnknown_825AF80 -gUnknown_825AF80: @ 825AF80 -.string " ...Qu...quake?!\0" -.align 2, 0 - -.global gUnknown_825AF94 -gUnknown_825AF94: @ 825AF94 -.string " Waah! The ground{APOSTROPHE}s heaving!\0" -.align 2, 0 - -.global gUnknown_825AFB4 -gUnknown_825AFB4: @ 825AFB4 -.string " {ARG_NICKNAME_0}...{WAIT_PRESS}\n" -.string "Who are you?\0" -.align 2, 0 - -.global gUnknown_825AFCC -gUnknown_825AFCC: @ 825AFCC -.string " Then{COMMA} how do you explain\n" -.string "{ARG_NICKNAME_0} becoming a Pokémon?\0" -.align 2, 0 - -.global gUnknown_825B000 -gUnknown_825B000: @ 825B000 -.string " I understand that\n" -.string "{ARG_NICKNAME_0} isn{APOSTROPHE}t the human from that\n" -.string "legend...\0" -.align 2, 0 - -.global gUnknown_825B040 -gUnknown_825B040: @ 825B040 -.string " Then why did {ARG_NICKNAME_0}\n" -.string "turn into a Pokémon?\0" -.align 2, 0 - -.global gUnknown_825B068 -gUnknown_825B068: @ 825B068 -.string " {ARG_NICKNAME_0}...{WAIT_PRESS}\n" -.string "Who are you?!\0" -.align 2, 0 - -.global gUnknown_825B080 -gUnknown_825B080: @ 825B080 -.string " Then{COMMA} why would\n" -.string "{ARG_NICKNAME_0} become a Pokémon?\0" -.align 2, 0 - -.global gUnknown_825B0AC -gUnknown_825B0AC: @ 825B0AC -.string " I understand that\n" -.string "{ARG_NICKNAME_0} isn{APOSTROPHE}t the human that\n" -.string "appeared in the legend...\0" -.align 2, 0 - -.global gUnknown_825B0F4 -gUnknown_825B0F4: @ 825B0F4 -.string " Why did {ARG_NICKNAME_0}\n" -.string "become a Pokémon?\0" -.align 2, 0 - -.global gUnknown_825B114 -gUnknown_825B114: @ 825B114 -.string " ...Huh?{WAIT_PRESS}\n" -.string "Oh{COMMA} but wait...\0" -.align 2, 0 - -.global gUnknown_825B134 -gUnknown_825B134: @ 825B134 -.string " ...Hah?{WAIT_PRESS}\n" -.string "But wait a second.\0" -.align 2, 0 - -.global gUnknown_825B154 -gUnknown_825B154: @ 825B154 -.string " Hahaha! Excellent!\n" -.string "I knew I was right!\0" -.align 2, 0 - -.global gUnknown_825B17C -gUnknown_825B17C: @ 825B17C -.string " Hahaha! This is fantastic!\n" -.string "I knew I wasn{APOSTROPHE}t wrong!\0" -.align 2, 0 - -.global gUnknown_825B1B4 -gUnknown_825B1B4: @ 825B1B4 -.string " Hahaha! Isn{APOSTROPHE}t this great?\n" -.string "I was convinced I was right!\0" -.align 2, 0 - -.global gUnknown_825B1F0 -gUnknown_825B1F0: @ 825B1F0 -.string " Impressive{COMMA} {ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_825B204 -gUnknown_825B204: @ 825B204 -.string " You are to be commended\n" -.string "for prevailing through this cruel\n" -.string "journey and discovering the truth.\0" -.align 2, 0 - -.global gUnknown_825B264 -gUnknown_825B264: @ 825B264 -.string " But I must say...\0" -.align 2, 0 - -.global gUnknown_825B278 -gUnknown_825B278: @ 825B278 -.string " If only that were true...\0" -.align 2, 0 - -.global gUnknown_825B294 -gUnknown_825B294: @ 825B294 -.string " It{APOSTROPHE}d be nice if I could\n" -.string "believe that...\0" -.align 2, 0 - -.global gUnknown_825B2C0 -gUnknown_825B2C0: @ 825B2C0 -.string " {ARG_NICKNAME_0} just doesn{APOSTROPHE}t\n" -.string "look like the treacherous type!{WAIT_PRESS}\n" -.string "Hahahahaha...\0" -.align 2, 0 - -.global gUnknown_825B304 -gUnknown_825B304: @ 825B304 -.string " No.{WAIT_PRESS}\n" -.string "I suspected Gengar right from the start.\0" -.align 2, 0 - -.global gUnknown_825B334 -gUnknown_825B334: @ 825B334 -.string " ...We{APOSTROPHE}re sorry.\n" -.string "We got worked up by that Gengar.\0" -.align 2, 0 - -.global gUnknown_825B368 -gUnknown_825B368: @ 825B368 -.string " ...Uh...er...{WAIT_PRESS}\n" -.string "We...uh...apologize.\0" -.align 2, 0 - -.global gUnknown_825B390 -gUnknown_825B390: @ 825B390 -.string " You were wrong to hound\n" -.string "and harass {ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_825B3BC -gUnknown_825B3BC: @ 825B3BC -.string " Hey{COMMA} you!{WAIT_PRESS}\n" -.string "You were wrong!\0" -.align 2, 0 - -.global gUnknown_825B3DC -gUnknown_825B3DC: @ 825B3DC -.string " You doubted and hounded\n" -.string "{ARG_NICKNAME_0}!\0" -.align 2, 0 - -.global gUnknown_825B3FC -gUnknown_825B3FC: @ 825B3FC -.string " Hey! You lot!{WAIT_PRESS}\n" -.string "You were wrong!\0" -.align 2, 0 - -.global gUnknown_825B420 -gUnknown_825B420: @ 825B420 -.string " The cause of the natural\n" -.string "calamities...{WAIT_PRESS}\n" -.string "It exists elsewhere.\0" -.align 2, 0 - -.global gUnknown_825B460 -gUnknown_825B460: @ 825B460 -.string " However{COMMA} that human\n" -.string "becoming a Pokémon and the world{APOSTROPHE}s\n" -.string "balance are not linked in any way.\0" -.align 2, 0 - -.global gUnknown_825B4C0 -gUnknown_825B4C0: @ 825B4C0 -.string " It is true that I foretold\n" -.string "of the world{APOSTROPHE}s balance becoming unstable...\0" -.align 2, 0 - -.global gUnknown_825B50C -gUnknown_825B50C: @ 825B50C -.string " I have another thing to say.\0" -.align 2, 0 - -.global gUnknown_825B52C -gUnknown_825B52C: @ 825B52C -.string " I knew it!{WAIT_PRESS}\n" -.string "There{APOSTROPHE}s no way that {ARG_NICKNAME_0} would\n" -.string "do those terrible things!\0" -.align 2, 0 - -.global gUnknown_825B574 -gUnknown_825B574: @ 825B574 -.string " That{APOSTROPHE}s great!{WAIT_PRESS}\n" -.string "I knew that {ARG_NICKNAME_0} wasn{APOSTROPHE}t involved!\0" -.align 2, 0 - -.global gUnknown_825B5AC -gUnknown_825B5AC: @ 825B5AC -.string " I knew it!{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_0} couldn{APOSTROPHE}t possibly be\n" -.string "anyone that terrible!\0" -.align 2, 0 - -.global gUnknown_825B5EC -gUnknown_825B5EC: @ 825B5EC -.string " That{APOSTROPHE}s great!{WAIT_PRESS}\n" -.string "I knew {ARG_NICKNAME_0} couldn{APOSTROPHE}t be the one!\0" -.align 2, 0 - -.global gUnknown_825B624 -gUnknown_825B624: @ 825B624 -.string " It{APOSTROPHE}s just as I thought!{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_0} wouldn{APOSTROPHE}t do anything like\n" -.string "that!\0" -.align 2, 0 - -.global gUnknown_825B668 -gUnknown_825B668: @ 825B668 -.string " That{APOSTROPHE}s great!{WAIT_PRESS}\n" -.string "I knew {ARG_NICKNAME_0} wasn{APOSTROPHE}t the one!\0" -.align 2, 0 - -.global gUnknown_825B698 -gUnknown_825B698: @ 825B698 -.string " Oh{COMMA} wow{COMMA} fantastic!\0" -.align 2, 0 - -.global gUnknown_825B6B4 -gUnknown_825B6B4: @ 825B6B4 -.string " Oh{COMMA} wow{COMMA} awesome!\0" -.align 2, 0 - -.global gUnknown_825B6CC -gUnknown_825B6CC: @ 825B6CC -.string " ..................{WAIT_PRESS}" -.string "Whew...\0" -.align 2, 0 - -.global gUnknown_825B6EC -gUnknown_825B6EC: @ 825B6EC -.string " Deep breaths...\n" -.string "In... Out... In... Out... In... Out...\0" -.align 2, 0 - -.global gUnknown_825B724 -gUnknown_825B724: @ 825B724 -.string " ...Oof...\0" -.align 2, 0 - -.global gUnknown_825B730 -gUnknown_825B730: @ 825B730 -.string " Oo-oof...\0" -.align 2, 0 - -.global gUnknown_825B73C -gUnknown_825B73C: @ 825B73C -.string " ............{WAIT_PRESS}\n" -.string "What{APOSTROPHE}s happening to me...?{WAIT_PRESS}\n" -.string "I{APOSTROPHE}m too tensed up to move...\0" -.align 2, 0 - -.global gUnknown_825B78C -gUnknown_825B78C: @ 825B78C -.string " ............{WAIT_PRESS}\n" -.string "There{APOSTROPHE}s something wrong...{WAIT_PRESS}\n" -.string "I{APOSTROPHE}m too tensed up to move...\0" -.align 2, 0 - -.global gUnknown_825B7DC -gUnknown_825B7DC: @ 825B7DC -.string " ............{WAIT_PRESS}\n" -.string "What{APOSTROPHE}s wrong with me?{WAIT_PRESS}\n" -.string "I{APOSTROPHE}m too tensed up to move...\0" -.align 2, 0 - -.global gUnknown_825B828 -gUnknown_825B828: @ 825B828 -.string " ...Wh-{WAIT_PRESS}" -.string "what...\0" -.align 2, 0 - -.global gUnknown_825B83C -gUnknown_825B83C: @ 825B83C -.string " {ARG_NICKNAME_0} is not the\n" -.string "human that appears in the legend.\n" -.string "That is what I said.\0" -.align 2, 0 - -.global gUnknown_825B884 -gUnknown_825B884: @ 825B884 -.string " ............{WAIT_PRESS}" -.string "Just now...{WAIT_PRESS}\n" -.string "...What did you just say?\0" -.align 2, 0 - -.global gUnknown_825B8BC -gUnknown_825B8BC: @ 825B8BC -.string " You may relax.\n" -.string "It is not you.\0" -.align 2, 0 - -.global gUnknown_825B8DC -gUnknown_825B8DC: @ 825B8DC -.string " {ARG_NICKNAME_0}...\0" -.align 2, 0 - -.global gUnknown_825B8E4 -gUnknown_825B8E4: @ 825B8E4 -.string " Who is the human that you\n" -.string "speak of?\0" -.align 2, 0 - -.global gUnknown_825B90C -gUnknown_825B90C: @ 825B90C -.string " ...And that human would be?\0" -.align 2, 0 - -.global gUnknown_825B92C -gUnknown_825B92C: @ 825B92C -.string " Transformed into a\n" -.string "Pokémon{COMMA} the human...{WAIT_PRESS}\n" -.string "The human lives on.\0" -.align 2, 0 - -.global gUnknown_825B970 -gUnknown_825B970: @ 825B970 -.string " The human eventually\n" -.string "became a Pokémon.\0" -.align 2, 0 - -.global gUnknown_825B998 -gUnknown_825B998: @ 825B998 -.string " They abandoned\n" -.string "{ARG_NICKNAME_6} and fled.\0" -.align 2, 0 - -.global gUnknown_825B9B8 -gUnknown_825B9B8: @ 825B9B8 -.string " Then{COMMA} the human did a\n" -.string "selfish and cowardly thing.\0" -.align 2, 0 - -.global gUnknown_825B9F0 -gUnknown_825B9F0: @ 825B9F0 -.string " It selflessly bore the full\n" -.string "brunt of the curse meant for the human.\0" -.align 2, 0 - -.global gUnknown_825BA38 -gUnknown_825BA38: @ 825BA38 -.string " It was then{COMMA} however{COMMA} that\n" -.string "{ARG_NICKNAME_6}{COMMA} the human{APOSTROPHE}s partner{COMMA} dashed\n" -.string "in...\0" -.align 2, 0 - -.global gUnknown_825BA88 -gUnknown_825BA88: @ 825BA88 -.string " Many years ago{COMMA} I tried to\n" -.string "lay a curse on a human.\0" -.align 2, 0 - -.global gUnknown_825BAC0 -gUnknown_825BAC0: @ 825BAC0 -.string " However...{WAIT_PRESS}\n" -.string "It did happen.\0" -.align 2, 0 - -.global gUnknown_825BAE0 -gUnknown_825BAE0: @ 825BAE0 -.string " I care not.\0" -.align 2, 0 - -.global gUnknown_825BAF0 -gUnknown_825BAF0: @ 825BAF0 -.string " Whether they consider my\n" -.string "curse to be a legend or not...\0" -.align 2, 0 - -.global gUnknown_825BB2C -gUnknown_825BB2C: @ 825BB2C -.string " Depending on your reply...{WAIT_PRESS}\n" -.string "I may have no choice but to eliminate\n" -.string "them!\0" -.align 2, 0 - -.global gUnknown_825BB78 -gUnknown_825BB78: @ 825BB78 -.string " No{COMMA} even before that{COMMA} was\n" -.string "the legend itself a true event?\0" -.align 2, 0 - -.global gUnknown_825BBB8 -gUnknown_825BBB8: @ 825BBB8 -.string " Who was the human that\n" -.string "appeared in your legend?\0" -.align 2, 0 - -.global gUnknown_825BBEC -gUnknown_825BBEC: @ 825BBEC -.string " Tell us{COMMA} {ARG_NICKNAME_5}!\0" -.align 2, 0 - -.global gUnknown_825BC00 -gUnknown_825BC00: @ 825BC00 -.string " They are...{WAIT_PRESS}\n" -.string "my guests.\0" -.align 2, 0 - -.global gUnknown_825BC1C -gUnknown_825BC1C: @ 825BC1C -.string " Cease fighting at once{COMMA}\n" -.string "{ARG_NICKNAME_2}.\0" -.align 2, 0 - -.global gUnknown_825BC3C -gUnknown_825BC3C: @ 825BC3C -.string " The legend...\n" -.string "It was real...\0" -.align 2, 0 - -.global gUnknown_825BC5C -gUnknown_825BC5C: @ 825BC5C -.string " Th-that{APOSTROPHE}s {ARG_NICKNAME_5}...\0" -.align 2, 0 - -.global gUnknown_825BC70 -gUnknown_825BC70: @ 825BC70 -.string " W-what?!{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_5}?!\0" -.align 2, 0 - -.global gUnknown_825BC84 -gUnknown_825BC84: @ 825BC84 -.string " ...!{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_5}!\0" -.align 2, 0 - -.global gUnknown_825BC94 -gUnknown_825BC94: @ 825BC94 -.string " Wuh!\0" -.align 2, 0 - -.global gUnknown_825BC9C -gUnknown_825BC9C: @ 825BC9C -.string " Cease this at once!\0" -.align 2, 0 - -.global gUnknown_825BCB4 -gUnknown_825BCB4: @ 825BCB4 -.byte 0xf6, 0x00, 0x14, 0x04, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256574 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x10, 0x80, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x10, 0x80, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 46 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x91, 0x04, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 5 -.byte 0x62, 0x00, 0x80, 0x00, 0xfc, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x04, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff -.byte 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0xf0, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0xf8, 0xff, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00 -.byte 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, north -.byte 0xe8, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x91, 0x04, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x12 -.byte 0x91, 0x04, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_825C2F4 -gUnknown_825C2F4: @ 825C2F4 -.byte 0xf6, 0x00, 0x7b, 0x04, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256574 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x02, 0x08, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x4c, 0x00, 0xf8, 0xff, 0xff, 0xff -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, south -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x03 -.byte 0x91, 0x06, 0x0a, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0c -.byte 0x91, 0x04, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x91, 0x06, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x91, 0x06, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x50, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_825C514 -gUnknown_825C514: @ 825C514 -.byte 0xf6, 0x00, 0xa0, 0x04, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256574 -setAnimation 2 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, south -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x06 -.byte 0x91, 0x08, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0c -.byte 0x91, 0x04, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x07, 0x02, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x50, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825C664 -gUnknown_825C664: @ 825C664 -.byte 0xf6, 0x00, 0xb8, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256574 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southwest -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x07 -.byte 0x91, 0x06, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x04, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x50, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825C7A4 -gUnknown_825C7A4: @ 825C7A4 -.byte 0xf6, 0x00, 0xcf, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256574 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_825C854 -gUnknown_825C854: @ 825C854 -.byte 0xf6, 0x00, 0xdd, 0x04, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8256574 -.byte 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x01, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xf8, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x08, 0x08, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0x70, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x91, 0x04, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southwest -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CW, southwest -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, northeast -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x06, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x04, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825CAC4 -gUnknown_825CAC4: @ 825CAC4 -.byte 0x00, 0x04, 0x00, 0x00, 0x23, 0x2b, 0x00, 0x02 -.4byte gUnknown_82566F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x5b, 0x04, 0x00, 0x00, 0x1c, 0x29, 0x00, 0x02 -.4byte gUnknown_8257A0C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825CAF4 -gUnknown_825CAF4: @ 825CAF4 -.byte 0x63, 0x00, 0x00, 0x00, 0x1f, 0x18, 0x02, 0x02 -.4byte gUnknown_8257C8C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825CB0C -gUnknown_825CB0C: @ 825CB0C -.byte 0x00, 0x04, 0x00, 0x00, 0x1d, 0x29, 0x00, 0x02 -.4byte gUnknown_8257EE8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x22, 0x29, 0x00, 0x02 -.4byte gUnknown_8258A00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x53, 0x04, 0x00, 0x00, 0x1f, 0x2c, 0x02, 0x02 -.4byte gUnknown_8258C30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825CB54 -gUnknown_825CB54: @ 825CB54 -.byte 0x58, 0x00, 0x00, 0x00, 0x1f, 0x2a, 0x02, 0x02 -.4byte gUnknown_8258E20 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x1c, 0x2b, 0x00, 0x02 -.4byte gUnknown_8259080 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x23, 0x2b, 0x00, 0x02 -.4byte gUnknown_8259250 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825CB9C -gUnknown_825CB9C: @ 825CB9C -.byte 0x00, 0x04, 0x00, 0x00, 0x1e, 0x1f, 0x00, 0x02 -.4byte gUnknown_8259658 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x23, 0x21, 0x00, 0x02 -.4byte gUnknown_825BCB4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x20, 0x1c, 0x02, 0x02 -.4byte gUnknown_825C2F4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x01, 0x00, 0x00, 0x1a, 0x18, 0x00, 0x02 -.4byte gUnknown_825C514 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x5a, 0x07, 0x00, 0x00, 0x24, 0x19, 0x00, 0x02 -.4byte gUnknown_825C664 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x04, 0x00, 0x00, 0x1f, 0x25, 0x00, 0x02 -.4byte gUnknown_825C7A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825CC2C -gUnknown_825CC2C: @ 825CC2C -.byte 0x63, 0x06, 0x00, 0x00, 0x1e, 0x1e, 0x00, 0x02 -.4byte gUnknown_825C854 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825CC44 -gUnknown_825CC44: @ 825CC44 -.byte 0x00, 0x00, 0x01, 0x01, 0x1f, 0x1c, 0x00, 0x02 -.4byte gUnknown_8256648 - -.global gUnknown_825CC50 -gUnknown_825CC50: @ 825CC50 -.byte 0x00, 0x00, 0x01, 0x01, 0x1f, 0x1e, 0x02, 0x02 -.4byte gUnknown_8257EA8 - -.global gUnknown_825CC5C -gUnknown_825CC5C: @ 825CC5C -.byte 0x00, 0x00, 0x01, 0x01, 0x1f, 0x1e, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825CC68 -gUnknown_825CC68: @ 825CC68 -.4byte gUnknown_82565A0 - -.global gUnknown_825CC6C -gUnknown_825CC6C: @ 825CC6C -.4byte gUnknown_825663C - -.global gUnknown_825CC70 -gUnknown_825CC70: @ 825CC70 -.4byte gUnknown_8257E9C - -.global gUnknown_825CC74 -gUnknown_825CC74: @ 825CC74 -.4byte gUnknown_825964C - -.global gUnknown_825CC78 -gUnknown_825CC78: @ 825CC78 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825CC68 - -.global gUnknown_825CCA0 -gUnknown_825CCA0: @ 825CCA0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_825CAC4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825CC44 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825CC6C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825CAF4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825CCF0 -gUnknown_825CCF0: @ 825CCF0 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_825CB0C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825CC50 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825CC70 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_825CB54 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825CD40 -gUnknown_825CD40: @ 825CD40 -.byte 0x06, 0x00, 0x00, 0x00 -.4byte gUnknown_825CB9C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825CC5C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825CC74 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825CC2C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825CD90 -gUnknown_825CD90: @ 825CD90 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825CC78 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_825CCA0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_825CCF0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_825CD40 - -.global gUnknown_825CDB0 -gUnknown_825CDB0: @ 825CDB0 -.byte 0x23, 0x1f, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x1c, 0x1f, 0x00, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x1e, 0x1e, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1e, 0x1e, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1b, 0x20, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x21, 0x22, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x21, 0x21, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1d, 0x1e, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1a, 0x18, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x22, 0x1e, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01, 0x24, 0x19, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1f, 0x1f, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1e, 0x25, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1e, 0x20, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01 - -.global gUnknown_825CE20 -gUnknown_825CE20: @ 825CE20 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_825CD90 -.4byte gUnknown_825CDB0 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_825CE34 -gUnknown_825CE34: @ 825CE34 -.byte 0xf6, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D004 -.byte 0x08, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825D004 -gUnknown_825D004: @ 825D004 -.string "../data/ground/ground_data_d12p01_station.c\0" -.align 2, 0 - -.global gUnknown_825D030 -gUnknown_825D030: @ 825D030 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825CE34 - -.global gUnknown_825D03C -gUnknown_825D03C: @ 825D03C -.byte 0xf6, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D004 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825D07C -gUnknown_825D07C: @ 825D07C -.byte 0xf6, 0x00, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D004 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825D0BC -gUnknown_825D0BC: @ 825D0BC -.byte 0xf6, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D004 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825D0FC -gUnknown_825D0FC: @ 825D0FC -.byte 0xf6, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D004 -setAnimation 2 -.byte 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825D13C -gUnknown_825D13C: @ 825D13C -.byte 0xf6, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D004 -.byte 0xe8, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825D16C -gUnknown_825D16C: @ 825D16C -.byte 0xf6, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D004 -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825D19C -gUnknown_825D19C: @ 825D19C -.byte 0xf6, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D004 -.byte 0x08, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x1e, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825D21C -gUnknown_825D21C: @ 825D21C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D19C - -.global gUnknown_825D228 -gUnknown_825D228: @ 825D228 -.byte 0xf6, 0x00, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D004 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00 -.byte 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x6b, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe8, 0x00, 0x21, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D6A0 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D678 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D638 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D5FC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D5D4 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D594 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x93, 0x04, 0x0b, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D564 -.byte 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D538 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D50C -.byte 0xd0, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D4E4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D49C -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D478 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_825D478 -gUnknown_825D478: @ 825D478 -.string " Let{APOSTROPHE}s try our best like\n" -.string "always!\0" -.align 2, 0 - -.global gUnknown_825D49C -gUnknown_825D49C: @ 825D49C -.string " There should be other\n" -.string "rescue teams making their way through\n" -.string "even now.\0" -.align 2, 0 - -.global gUnknown_825D4E4 -gUnknown_825D4E4: @ 825D4E4 -.string " Let{APOSTROPHE}s get going and try our\n" -.string "best!\0" -.align 2, 0 - -.global gUnknown_825D50C -gUnknown_825D50C: @ 825D50C -.string " Other rescue teams\n" -.string "should already be here.\0" -.align 2, 0 - -.global gUnknown_825D538 -gUnknown_825D538: @ 825D538 -.string " Let{APOSTROPHE}s get in there and give\n" -.string "it our best!\0" -.align 2, 0 - -.global gUnknown_825D564 -gUnknown_825D564: @ 825D564 -.string " Other rescue teams should\n" -.string "already be inside.\0" -.align 2, 0 - -.global gUnknown_825D594 -gUnknown_825D594: @ 825D594 -.string " It{APOSTROPHE}s going to be scorching\n" -.string "hot in the dungeon{COMMA} I think.\0" -.align 2, 0 - -.global gUnknown_825D5D4 -gUnknown_825D5D4: @ 825D5D4 -.string " Whew...\n" -.string "Look at the streams of lava.\0" -.align 2, 0 - -.global gUnknown_825D5FC -gUnknown_825D5FC: @ 825D5FC -.string " This must be it...{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_2} is in this underground\n" -.string "cavern.\0" -.align 2, 0 - -.global gUnknown_825D638 -gUnknown_825D638: @ 825D638 -.string " It wouldn{APOSTROPHE}t surprise me if\n" -.string "the dungeon is scorching hot...\0" -.align 2, 0 - -.global gUnknown_825D678 -gUnknown_825D678: @ 825D678 -.string " Look at the flowing\n" -.string "streams of lava...\0" -.align 2, 0 - -.global gUnknown_825D6A0 -gUnknown_825D6A0: @ 825D6A0 -.string " So this is it...{WAIT_PRESS}\n" -.string "The underground cavern where\n" -.string "{ARG_NICKNAME_2} is...\0" -.align 2, 0 - -.global gUnknown_825D6DC -gUnknown_825D6DC: @ 825D6DC -.byte 0xf6, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D004 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_825D78C -gUnknown_825D78C: @ 825D78C -.byte 0xf6, 0x00, 0x9c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D004 -.byte 0x08, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x1e, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825D80C -gUnknown_825D80C: @ 825D80C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D78C - -.global gUnknown_825D818 -gUnknown_825D818: @ 825D818 -.byte 0xf6, 0x00, 0xa9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D004 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D97C -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D938 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_825D938 -gUnknown_825D938: @ 825D938 -.string " This time{COMMA} we have to\n" -.string "rescue {ARG_NICKNAME_2}{APOSTROPHE}s team!\n" -.string "Let{APOSTROPHE}s not blow it!\0" -.align 2, 0 - -.global gUnknown_825D97C -gUnknown_825D97C: @ 825D97C -.string " This time{COMMA} we{APOSTROPHE}ll rescue\n" -.string "{ARG_NICKNAME_2}{APOSTROPHE}s team!\n" -.string "Let{APOSTROPHE}s get it done!\0" -.align 2, 0 - -.global gUnknown_825D9BC -gUnknown_825D9BC: @ 825D9BC -.byte 0xf6, 0x00, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825D004 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_825DA4C -gUnknown_825DA4C: @ 825DA4C -.byte 0x00, 0x04, 0x00, 0x00, 0x1a, 0x1d, 0x02, 0x02 -.4byte gUnknown_825D03C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1a, 0x1f, 0x02, 0x02 -.4byte gUnknown_825D07C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825DA7C -gUnknown_825DA7C: @ 825DA7C -.byte 0x00, 0x04, 0x00, 0x00, 0x1a, 0x1d, 0x02, 0x02 -.4byte gUnknown_825D0BC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1a, 0x1f, 0x02, 0x02 -.4byte gUnknown_825D0FC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825DAAC -gUnknown_825DAAC: @ 825DAAC -.byte 0x00, 0x04, 0x00, 0x00, 0x1a, 0x1d, 0x02, 0x02 -.4byte gUnknown_825D13C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1a, 0x1f, 0x02, 0x02 -.4byte gUnknown_825D16C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825DADC -gUnknown_825DADC: @ 825DADC -.byte 0x00, 0x02, 0x00, 0x00, 0x1c, 0x23, 0x02, 0x02 -.4byte gUnknown_825D228 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00, 0x17, 0x22, 0x02, 0x02 -.4byte gUnknown_825D6DC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825DB0C -gUnknown_825DB0C: @ 825DB0C -.byte 0x00, 0x02, 0x00, 0x00, 0x1c, 0x23, 0x00, 0x02 -.4byte gUnknown_825D818 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00, 0x17, 0x22, 0x00, 0x02 -.4byte gUnknown_825D9BC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825DB3C -gUnknown_825DB3C: @ 825DB3C -.byte 0x00, 0x00, 0x01, 0x01, 0x1a, 0x11, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825DB48 -gUnknown_825DB48: @ 825DB48 -.byte 0x00, 0x00, 0x01, 0x01, 0x1a, 0x11, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825DB54 -gUnknown_825DB54: @ 825DB54 -.4byte gUnknown_825D030 - -.global gUnknown_825DB58 -gUnknown_825DB58: @ 825DB58 -.4byte gUnknown_825D21C - -.global gUnknown_825DB5C -gUnknown_825DB5C: @ 825DB5C -.4byte gUnknown_825D80C - -.global gUnknown_825DB60 -gUnknown_825DB60: @ 825DB60 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825DB54 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_825DA4C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_825DA7C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_825DAAC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825DC28 -gUnknown_825DC28: @ 825DC28 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_825DADC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825DB3C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825DB58 - -.global gUnknown_825DC50 -gUnknown_825DC50: @ 825DC50 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_825DB0C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825DB48 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825DB5C - -.global gUnknown_825DC78 -gUnknown_825DC78: @ 825DC78 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_825DB60 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825DC28 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825DC50 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825DC98 -gUnknown_825DC98: @ 825DC98 -.byte 0x1c, 0x13, 0x02, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x17, 0x13, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x1a, 0x0a, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x1a, 0x0b, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00 - -.global gUnknown_825DCB8 -gUnknown_825DCB8: @ 825DCB8 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_825DC78 -.4byte gUnknown_825DC98 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_825DCCC -gUnknown_825DCCC: @ 825DCCC -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825DEBC -.byte 0x08, 0x00, 0x00, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x03, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x03, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x04, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825DEBC -gUnknown_825DEBC: @ 825DEBC -.string "../data/ground/ground_data_d12p02_station.c\0" -.align 2, 0 - -.global gUnknown_825DEE8 -gUnknown_825DEE8: @ 825DEE8 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825DCCC - -.global gUnknown_825DEF4 -gUnknown_825DEF4: @ 825DEF4 -.byte 0xf6, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825DEBC -.byte 0xd3, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825DFC4 -.byte 0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825DFBC -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825DFB4 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x1e, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_825DFB4 -gUnknown_825DFB4: @ 825DFB4 -.string "*No.\0" -.align 2, 0 - -.global gUnknown_825DFBC -gUnknown_825DFBC: @ 825DFBC -.string "Yes.\0" -.align 2, 0 - -.global gUnknown_825DFC4 -gUnknown_825DFC4: @ 825DFC4 -.string "Keep going?\0" -.align 2, 0 - -.global gUnknown_825DFD0 -gUnknown_825DFD0: @ 825DFD0 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825DEF4 - -.global gUnknown_825DFDC -gUnknown_825DFDC: @ 825DFDC -.byte 0xf6, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825DEBC -.byte 0xd3, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825E0BC -.byte 0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825DFBC -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825DFB4 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x48, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x0a, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x1d, 0x00, 0x04, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_825E0BC -gUnknown_825E0BC: @ 825E0BC -.string "Return to the rescue team base?\0" -.align 2, 0 - -.global gUnknown_825E0DC -gUnknown_825E0DC: @ 825E0DC -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825DFDC - -.global gUnknown_825E0E8 -gUnknown_825E0E8: @ 825E0E8 -.byte 0xf6, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825DEBC -.byte 0xe9, 0x00, 0x41, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825E108 -gUnknown_825E108: @ 825E108 -.byte 0xf6, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825DEBC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825E148 -gUnknown_825E148: @ 825E148 -.byte 0xf6, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825DEBC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825E188 -gUnknown_825E188: @ 825E188 -.byte 0xf6, 0x00, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825DEBC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825E1C8 -gUnknown_825E1C8: @ 825E1C8 -.byte 0xf6, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825DEBC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825E208 -gUnknown_825E208: @ 825E208 -.byte 0xf6, 0x00, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825DEBC -.byte 0xe8, 0x00, 0x51, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825E238 -gUnknown_825E238: @ 825E238 -.byte 0xf6, 0x00, 0x79, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825DEBC -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825E268 -gUnknown_825E268: @ 825E268 -.byte 0xf6, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825DEBC -.byte 0xab, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00 -.byte 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825E338 -gUnknown_825E338: @ 825E338 -.byte 0x92, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825E268 - -.global gUnknown_825E344 -gUnknown_825E344: @ 825E344 -.byte 0xf6, 0x00, 0x91, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825DEBC -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825E544 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825E520 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825E4E0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825E4A4 -closeTextBox -.byte 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825E4A4 -gUnknown_825E4A4: @ 825E4A4 -.string " But we were very close!{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s keep trying our best!\0" -.align 2, 0 - -.global gUnknown_825E4E0 -gUnknown_825E4E0: @ 825E4E0 -.string " But we didn{APOSTROPHE}t have far to\n" -.string "go!{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s give it our best!\0" -.align 2, 0 - -.global gUnknown_825E520 -gUnknown_825E520: @ 825E520 -.string " Hmm...{WAIT_PRESS}\n" -.string "That didn{APOSTROPHE}t work out...\0" -.align 2, 0 - -.global gUnknown_825E544 -gUnknown_825E544: @ 825E544 -.string " Hmm...{WAIT_PRESS}\n" -.string "Well{COMMA} that didn{APOSTROPHE}t go well.\0" -.align 2, 0 - -.global gUnknown_825E570 -gUnknown_825E570: @ 825E570 -.byte 0xf6, 0x00, 0xaa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825DEBC -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825E620 -gUnknown_825E620: @ 825E620 -.byte 0x91, 0x00, 0x00, 0x00, 0x1c, 0x1c, 0x02 -warpDungeon 0x00 -.byte 0x00 - -.global gUnknown_825E638 -gUnknown_825E638: @ 825E638 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x1c, 0x26, 0x02, 0x02 -.4byte gUnknown_825E108 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1c, 0x29, 0x02, 0x02 -.4byte gUnknown_825E148 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825E668 -gUnknown_825E668: @ 825E668 -.byte 0x00, 0x04, 0x00, 0x00, 0x1c, 0x26, 0x02, 0x02 -.4byte gUnknown_825E188 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1c, 0x29, 0x02, 0x02 -.4byte gUnknown_825E1C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825E698 -gUnknown_825E698: @ 825E698 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x1c, 0x26, 0x02, 0x02 -.4byte gUnknown_825E208 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1c, 0x29, 0x02, 0x02 -.4byte gUnknown_825E238 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825E6C8 -gUnknown_825E6C8: @ 825E6C8 -.byte 0x00, 0x02, 0x00, 0x00, 0x1f, 0x26, 0x00, 0x02 -.4byte gUnknown_825E344 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x07, 0x06, 0x00, 0x00, 0x1a, 0x26, 0x00, 0x02 -.4byte gUnknown_825E570 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825E6F8 -gUnknown_825E6F8: @ 825E6F8 -.byte 0x04, 0x00, 0x04, 0x03 -.byte 0x1c, 0x1c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825E0E8 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825E710 -gUnknown_825E710: @ 825E710 -.byte 0x00, 0x00, 0x01, 0x01, 0x1c, 0x25, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825E71C -gUnknown_825E71C: @ 825E71C -.byte 0x0f, 0x03, 0x00, 0x00, 0x15, 0x0c, 0x00, 0x00 -.4byte gUnknown_825DFD0 -.byte 0x0f, 0x03, 0x00, 0x00, 0x15, 0x2a, 0x00, 0x00 -.4byte gUnknown_825E0DC - -.global gUnknown_825E734 -gUnknown_825E734: @ 825E734 -.4byte gUnknown_825DEE8 - -.global gUnknown_825E738 -gUnknown_825E738: @ 825E738 -.4byte gUnknown_825E338 - -.global gUnknown_825E73C -gUnknown_825E73C: @ 825E73C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825E620 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825E6F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_825E71C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825E734 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_825E638 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_825E668 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_825E698 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825E804 -gUnknown_825E804: @ 825E804 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_825E6C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825E710 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825E738 - -.global gUnknown_825E82C -gUnknown_825E82C: @ 825E82C -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_825E73C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825E804 - -.global gUnknown_825E83C -gUnknown_825E83C: @ 825E83C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825E844 -gUnknown_825E844: @ 825E844 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_825E82C -.4byte gUnknown_825E83C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_825E858 -gUnknown_825E858: @ 825E858 -.byte 0xf6, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825E898 -.byte 0x08, 0x00, 0x00, 0x00, 0xce, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825E898 -gUnknown_825E898: @ 825E898 -.string "../data/ground/ground_data_d12p04_station.c\0" -.align 2, 0 - -.global gUnknown_825E8C4 -gUnknown_825E8C4: @ 825E8C4 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825E858 - -.global gUnknown_825E8D0 -gUnknown_825E8D0: @ 825E8D0 -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825E898 -.byte 0x08, 0x00, 0x00, 0x00, 0xce, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x3c, 0x00, 0xc5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x01, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825EA90 -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825EA50 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0x3b, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825EA50 -gUnknown_825EA50: @ 825EA50 -.string "{CENTER_ALIGN}And returned to Pokémon Square\n" -.string "{CENTER_ALIGN}together with {ARG_NICKNAME_1}{APOSTROPHE}s team.\0" -.align 2, 0 - -.global gUnknown_825EA90 -gUnknown_825EA90: @ 825EA90 -.string "{CENTER_ALIGN}Having calmed {ARG_NICKNAME_2}{COMMA}\n" -.string "{CENTER_ALIGN}{ARG_NICKNAME_0}{APOSTROPHE}s team left the dungeon...\0" -.align 2, 0 - -.global gUnknown_825EACC -gUnknown_825EACC: @ 825EACC -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825E8D0 - -.global gUnknown_825EAD8 -gUnknown_825EAD8: @ 825EAD8 -.byte 0xf6, 0x00, 0x30, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825E898 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825EB18 -gUnknown_825EB18: @ 825EB18 -.byte 0xf6, 0x00, 0x37, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825E898 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xed, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x27, 0x00, 0x05, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xed, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x00, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825F2E0 -.byte 0xdb, 0x00, 0x78, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x5a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xf3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0c -.byte 0xe4, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -.byte 0x2e, 0x02, 0x01, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825F2B8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825F2AC -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x04, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825F294 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825F280 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825F270 -closeTextBox -.byte 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x10, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825F260 -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825F22C -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x05, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825F208 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825F1D0 -.byte 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825F17C -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825F164 -closeTextBox -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xc5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x15, 0x05, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825F148 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825F138 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x0a -.byte 0xe4, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x78, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_825F138 -gUnknown_825F138: @ 825F138 -.string " Out! Quickly!\0" -.align 2, 0 - -.global gUnknown_825F148 -gUnknown_825F148: @ 825F148 -.string " Waah...{WAIT_PRESS}\n" -.string "Another quake!\0" -.align 2, 0 - -.global gUnknown_825F164 -gUnknown_825F164: @ 825F164 -.string " It should calm down.\0" -.align 2, 0 - -.global gUnknown_825F17C -gUnknown_825F17C: @ 825F17C -.string " It had lost control only\n" -.string "because it was enraged from having its\n" -.string "sleep disturbed.\0" -.align 2, 0 - -.global gUnknown_825F1D0 -gUnknown_825F1D0: @ 825F1D0 -.string " Your concern is unneeded.\n" -.string "It will awaken soon enough.\0" -.align 2, 0 - -.global gUnknown_825F208 -gUnknown_825F208: @ 825F208 -.string " What about {ARG_NICKNAME_2}?{WAIT_PRESS}\n" -.string "Will it be OK?\0" -.align 2, 0 - -.global gUnknown_825F22C -gUnknown_825F22C: @ 825F22C -.string " We will be fine.\n" -.string "But we must get out immediately.\0" -.align 2, 0 - -.global gUnknown_825F260 -gUnknown_825F260: @ 825F260 -.string " Yes{COMMA} fine.\0" -.align 2, 0 - -.global gUnknown_825F270 -gUnknown_825F270: @ 825F270 -.string " Are you OK?\0" -.align 2, 0 - -.global gUnknown_825F280 -gUnknown_825F280: @ 825F280 -.string " Are you all right?\0" -.align 2, 0 - -.global gUnknown_825F294 -gUnknown_825F294: @ 825F294 -.string " Did you do it?\n" -.string "{ARG_NICKNAME_2}?\0" -.align 2, 0 - -.global gUnknown_825F2AC -gUnknown_825F2AC: @ 825F2AC -.string " Urrgggh!\0" -.align 2, 0 - -.global gUnknown_825F2B8 -gUnknown_825F2B8: @ 825F2B8 -.string " Look! It{APOSTROPHE}s {ARG_NICKNAME_3}!{WAIT_PRESS}\n" -.string "{ARG_NICKNAME_4} and {ARG_NICKNAME_5} too!\0" -.align 2, 0 - -.global gUnknown_825F2E0 -gUnknown_825F2E0: @ 825F2E0 -.string "Grgaaaaaah!\0" -.align 2, 0 - -.global gUnknown_825F2EC -gUnknown_825F2EC: @ 825F2EC -.byte 0xf6, 0x00, 0x9d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825E898 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x0a, shortestDir, north -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0x78, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_825F41C -gUnknown_825F41C: @ 825F41C -.byte 0xf6, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825E898 -setAnimation 2 -.byte 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0x78, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_825F49C -gUnknown_825F49C: @ 825F49C -.byte 0xf6, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825E898 -setAnimation 2 -.byte 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0x78, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_825F51C -gUnknown_825F51C: @ 825F51C -.byte 0xf6, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825E898 -setAnimation 22 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0x99, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x4c, 0x00, 0x00, 0x00, 0x96, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_825F5FC -gUnknown_825F5FC: @ 825F5FC -.byte 0xf6, 0x00, 0xda, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825E898 -.byte 0xe3, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x00, 0x00, 0x00, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825F65C -gUnknown_825F65C: @ 825F65C -.byte 0xf6, 0x00, 0xe3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825E898 -.byte 0xe3, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x00, 0x00, 0x00, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825F6BC -gUnknown_825F6BC: @ 825F6BC -.byte 0xf6, 0x00, 0xec, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825E898 -.byte 0xe3, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x00, 0x00, 0x00, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825F71C -gUnknown_825F71C: @ 825F71C -.byte 0xf6, 0x00, 0xf5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825E898 -setAnimation 26 -.byte 0x2d, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x62, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x01, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x01, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -setAnimation 2 -pause 0x1e -rotate 0x0a, CCW, east -pause 0x14 -rotate 0x0a, CW, southwest -pause 0x0a -rotate 0x0a, CCW, southeast -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0x78, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_825F91C -gUnknown_825F91C: @ 825F91C -.byte 0xf6, 0x00, 0x18, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825E898 -setAnimation 25 -.byte 0x2d, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -pause 0x19 -.byte 0x62, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x19 -setAnimation 2 -pause 0x2d -rotate 0x0a, CCW, southeast -pause 0x14 -rotate 0x0a, CW, southwest -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, east -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -rotate 0x04, shortestDir, southeast -.byte 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0x88, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_825FB1C -gUnknown_825FB1C: @ 825FB1C -.byte 0xf6, 0x00, 0x3b, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825E898 -setAnimation 23 -.byte 0x2d, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -pause 0x28 -setAnimation 2 -pause 0x28 -rotate 0x0a, CW, west -pause 0x0a -rotate 0x0a, CCW, southeast -pause 0x05 -rotate 0x0a, CW, west -setFlag 0x05 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -rotate 0x04, shortestDir, southwest -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x88, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_825FDCC -gUnknown_825FDCC: @ 825FDCC -.byte 0x00, 0x04, 0x00, 0x00, 0x22, 0x1d, 0x02, 0x02 -.4byte gUnknown_825EB18 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x1b, 0x1d, 0x02, 0x02 -.4byte gUnknown_825F2EC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0a, 0x04, 0x00, 0x00, 0x1d, 0x22, 0x02, 0x02 -.4byte gUnknown_825F41C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0x04, 0x00, 0x00, 0x21, 0x21, 0x02, 0x02 -.4byte gUnknown_825F49C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x67, 0x00, 0x00, 0x00, 0x1e, 0x16, 0x02, 0x00 -.4byte gUnknown_825F51C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825FE44 -gUnknown_825FE44: @ 825FE44 -.byte 0x58, 0x00, 0x00, 0x00, 0x1e, 0x1a, 0x02, 0x02 -.4byte gUnknown_825F71C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x59, 0x07, 0x00, 0x00, 0x1a, 0x18, 0x00, 0x02 -.4byte gUnknown_825F91C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5a, 0x01, 0x00, 0x00, 0x24, 0x18, 0x00, 0x02 -.4byte gUnknown_825FB1C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825FE8C -gUnknown_825FE8C: @ 825FE8C -.byte 0x00, 0x00, 0x01, 0x01, 0x1f, 0x1a, 0x00, 0x02 -.4byte gUnknown_825EAD8 -.byte 0x04, 0x00, 0x02, 0x01 -.byte 0x1e, 0x1a, 0x02, 0x02 -.4byte gUnknown_825F5FC -.byte 0x04, 0x00, 0x02, 0x01, 0x24, 0x18, 0x02, 0x02 -.4byte gUnknown_825F65C -.byte 0x04, 0x00, 0x02, 0x01, 0x1a, 0x18, 0x02, 0x02 -.4byte gUnknown_825F6BC - -.global gUnknown_825FEBC -gUnknown_825FEBC: @ 825FEBC -.4byte gUnknown_825E8C4 - -.global gUnknown_825FEC0 -gUnknown_825FEC0: @ 825FEC0 -.4byte gUnknown_825EACC - -.global gUnknown_825FEC4 -gUnknown_825FEC4: @ 825FEC4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825FEBC - -.global gUnknown_825FEEC -gUnknown_825FEEC: @ 825FEEC -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_825FDCC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_825FE8C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825FEC0 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_825FE44 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825FF3C -gUnknown_825FF3C: @ 825FF3C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_825FEC4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_825FEEC - -.global gUnknown_825FF4C -gUnknown_825FF4C: @ 825FF4C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825FF54 -gUnknown_825FF54: @ 825FF54 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_825FF3C -.4byte gUnknown_825FF4C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_825FF68 -gUnknown_825FF68: @ 825FF68 -.byte 0xf6, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825FFA8 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_825FFA8 -gUnknown_825FFA8: @ 825FFA8 -.string "../data/ground/ground_data_d13p01_station.c\0" -.align 2, 0 - -.global gUnknown_825FFD4 -gUnknown_825FFD4: @ 825FFD4 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825FF68 - -.global gUnknown_825FFE0 -gUnknown_825FFE0: @ 825FFE0 -.byte 0xf6, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825FFA8 -.byte 0x48, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x08, 0x00, 0x00, 0x00, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8260080 -gUnknown_8260080: @ 8260080 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825FFE0 - -.global gUnknown_826008C -gUnknown_826008C: @ 826008C -.byte 0xf6, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825FFA8 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 48 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x4c, 0x00, 0x00, 0x00, 0xfd, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -setFlag 0x07 -.byte 0x70, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xfe, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x70, 0x00, 0x00, 0x02, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 44 -pause 0x3c -.byte 0x2e, 0x02, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826043C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8260420 -closeTextBox -pause 0x14 -setFlag 0x06 -setFlag 0x07 -setAnimation 2 -.byte 0xe8, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x15, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82603F0 -closeTextBox -rotate 0x04, shortestDir, west -setFlag 0x07 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southwest -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82603E4 -closeTextBox -setFlag 0x06 -rotate 0x04, shortestDir, west -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82603CC -closeTextBox -rotate 0x04, shortestDir, north -setFlag 0x07 -pause 0x1e -setFlag 0x03 -closeThread - -.global gUnknown_82603CC -gUnknown_82603CC: @ 82603CC -.string " {ARG_NICKNAME_0}{COMMA} look up there!\0" -.align 2, 0 - -.global gUnknown_82603E4 -gUnknown_82603E4: @ 82603E4 -.string " Oh{COMMA} wow!\0" -.align 2, 0 - -.global gUnknown_82603F0 -gUnknown_82603F0: @ 82603F0 -.string " Wah!\n" -.string "{ARG_NICKNAME_0}{COMMA} this is cool!{WAIT_PRESS}\n" -.string "We{APOSTROPHE}re on clouds!\0" -.align 2, 0 - -.global gUnknown_8260420 -gUnknown_8260420: @ 8260420 -.string " Owowow...{WAIT_PRESS}\n" -.string "Where are we?\0" -.align 2, 0 - -.global gUnknown_826043C -gUnknown_826043C: @ 826043C -.string " Ouch...{WAIT_PRESS}\n" -.string "Where are we?\0" -.align 2, 0 - -.global gUnknown_8260458 -gUnknown_8260458: @ 8260458 -.byte 0xf6, 0x00, 0x5b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825FFA8 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x30, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00 -.byte 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x2c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 49 -.byte 0x84, 0x00, 0x80, 0x00 -.byte 0xe8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x84, 0x00, 0x80, 0x00 -.byte 0x18, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x27, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xca, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0x00, 0x99, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8260738 -gUnknown_8260738: @ 8260738 -.byte 0xf6, 0x00, 0x8c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825FFA8 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00 -.byte 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe8, 0x00, 0x21, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82608A8 -gUnknown_82608A8: @ 82608A8 -.byte 0xf6, 0x00, 0xa6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825FFA8 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x1e, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8260928 -gUnknown_8260928: @ 8260928 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82608A8 - -.global gUnknown_8260934 -gUnknown_8260934: @ 8260934 -.byte 0xf6, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825FFA8 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x02, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8260B6C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8260B4C -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8260B28 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8260B0C -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, west -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8260AEC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8260AC4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x6b, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8260AC4 -gUnknown_8260AC4: @ 8260AC4 -.string " {ARG_NICKNAME_0}!\n" -.string "Let{APOSTROPHE}s do our best on the climb!\0" -.align 2, 0 - -.global gUnknown_8260AEC -gUnknown_8260AEC: @ 8260AEC -.string " {ARG_NICKNAME_0}!\n" -.string "Let{APOSTROPHE}s give it our best!\0" -.align 2, 0 - -.global gUnknown_8260B0C -gUnknown_8260B0C: @ 8260B0C -.string " That{APOSTROPHE}s where {ARG_NICKNAME_2}\n" -.string "is...\0" -.align 2, 0 - -.global gUnknown_8260B28 -gUnknown_8260B28: @ 8260B28 -.string " It{APOSTROPHE}s at the top of this\n" -.string "tower...\0" -.align 2, 0 - -.global gUnknown_8260B4C -gUnknown_8260B4C: @ 8260B4C -.string " That must be where\n" -.string "{ARG_NICKNAME_2} is...\0" -.align 2, 0 - -.global gUnknown_8260B6C -gUnknown_8260B6C: @ 8260B6C -.string " It must be at the very top...\0" -.align 2, 0 - -.global gUnknown_8260B8C -gUnknown_8260B8C: @ 8260B8C -.byte 0xf6, 0x00, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825FFA8 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x6b, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8260C3C -gUnknown_8260C3C: @ 8260C3C -.byte 0xf6, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825FFA8 -setAnimation 2 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x6b, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8260CAC -gUnknown_8260CAC: @ 8260CAC -.byte 0xf6, 0x00, 0xe8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825FFA8 -.byte 0x08, 0x00, 0x00, 0x00, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x1e, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8260D2C -gUnknown_8260D2C: @ 8260D2C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8260CAC - -.global gUnknown_8260D38 -gUnknown_8260D38: @ 8260D38 -.byte 0xf6, 0x00, 0xf5, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825FFA8 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x30, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00 -.byte 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xfd, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x70, 0x00, 0x00, 0x0a -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x70, 0x00, 0x00, 0x02 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x70, 0x00, 0x00, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8261020 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8260FFC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x91, 0x04, 0x0a, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8260FD0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8260FA8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x6b, 0x00, 0xb3, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8260FA8 -gUnknown_8260FA8: @ 8260FA8 -.string " Let{APOSTROPHE}s head for the top!\n" -.string "This is it!\0" -.align 2, 0 - -.global gUnknown_8260FD0 -gUnknown_8260FD0: @ 8260FD0 -.string " Let{APOSTROPHE}s storm our way to\n" -.string "the top floor!\0" -.align 2, 0 - -.global gUnknown_8260FFC -gUnknown_8260FFC: @ 8260FFC -.string " OK.\n" -.string "Here we are in the sky again.\0" -.align 2, 0 - -.global gUnknown_8261020 -gUnknown_8261020: @ 8261020 -.string " All right.\n" -.string "We{APOSTROPHE}re up in the sky again.\0" -.align 2, 0 - -.global gUnknown_826104C -gUnknown_826104C: @ 826104C -.byte 0xf6, 0x00, 0x20, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825FFA8 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 48 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x70, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x70, 0x00, 0x00, 0x02, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x6b, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82611DC -gUnknown_82611DC: @ 82611DC -.byte 0xf6, 0x00, 0x3c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_825FFA8 -.byte 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x60, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x70, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x70, 0x00, 0x00, 0x02, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_826131C -gUnknown_826131C: @ 826131C -.byte 0x00, 0x06, 0x00, 0x00, 0x1c, 0x12, 0x02, 0x02 -.4byte gUnknown_826008C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00, 0x16, 0x12, 0x02, 0x02 -.4byte gUnknown_8260458 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x06, 0x00, 0x00, 0x19, 0x18, 0x02, 0x00 -.4byte gUnknown_8260738 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8261364 -gUnknown_8261364: @ 8261364 -.byte 0x00, 0x04, 0x00, 0x00, 0x1c, 0x12, 0x02, 0x02 -.4byte gUnknown_8260934 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x04, 0x00, 0x00, 0x16, 0x12, 0x02, 0x02 -.4byte gUnknown_8260B8C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x04, 0x00, 0x00, 0x19, 0x17, 0x02, 0x02 -.4byte gUnknown_8260C3C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82613AC -gUnknown_82613AC: @ 82613AC -.byte 0x00, 0x00, 0x00, 0x00, 0x1c, 0x12, 0x02, 0x02 -.4byte gUnknown_8260D38 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x16, 0x12, 0x02, 0x02 -.4byte gUnknown_826104C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x19, 0x17, 0x02, 0x02 -.4byte gUnknown_82611DC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82613F4 -gUnknown_82613F4: @ 82613F4 -.byte 0x00, 0x00, 0x01, 0x01, 0x19, 0x10, 0x02, 0x02 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8261400 -gUnknown_8261400: @ 8261400 -.byte 0x00, 0x00, 0x01, 0x01, 0x19, 0x10, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826140C -gUnknown_826140C: @ 826140C -.byte 0x00, 0x00, 0x01, 0x01, 0x19, 0x10, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8261418 -gUnknown_8261418: @ 8261418 -.4byte gUnknown_825FFD4 - -.global gUnknown_826141C -gUnknown_826141C: @ 826141C -.4byte gUnknown_8260080 - -.global gUnknown_8261420 -gUnknown_8261420: @ 8261420 -.4byte gUnknown_8260928 - -.global gUnknown_8261424 -gUnknown_8261424: @ 8261424 -.4byte gUnknown_8260D2C - -.global gUnknown_8261428 -gUnknown_8261428: @ 8261428 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8261418 - -.global gUnknown_8261450 -gUnknown_8261450: @ 8261450 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_826131C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82613F4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826141C - -.global gUnknown_8261478 -gUnknown_8261478: @ 8261478 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_8261364 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8261400 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8261420 - -.global gUnknown_82614A0 -gUnknown_82614A0: @ 82614A0 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_82613AC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826140C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8261424 - -.global gUnknown_82614C8 -gUnknown_82614C8: @ 82614C8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8261428 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8261450 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8261478 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82614A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82614F0 -gUnknown_82614F0: @ 82614F0 -.byte 0x19, 0x0c, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00 - -.global gUnknown_82614F8 -gUnknown_82614F8: @ 82614F8 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_82614C8 -.4byte gUnknown_82614F0 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_826150C -gUnknown_826150C: @ 826150C -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82616FC -.byte 0x08, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x03, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x03, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x04, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82616FC -gUnknown_82616FC: @ 82616FC -.string "../data/ground/ground_data_d13p02_station.c\0" -.align 2, 0 - -.global gUnknown_8261728 -gUnknown_8261728: @ 8261728 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826150C - -.global gUnknown_8261734 -gUnknown_8261734: @ 8261734 -.byte 0xf6, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82616FC -.byte 0xd3, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8261804 -.byte 0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82617FC -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82617F4 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x1e, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82617F4 -gUnknown_82617F4: @ 82617F4 -.string "*No.\0" -.align 2, 0 - -.global gUnknown_82617FC -gUnknown_82617FC: @ 82617FC -.string "Yes.\0" -.align 2, 0 - -.global gUnknown_8261804 -gUnknown_8261804: @ 8261804 -.string "Keep going?\0" -.align 2, 0 - -.global gUnknown_8261810 -gUnknown_8261810: @ 8261810 -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8261734 - -.global gUnknown_826181C -gUnknown_826181C: @ 826181C -.byte 0xf6, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82616FC -.byte 0xd3, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82618FC -.byte 0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82617FC -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82617F4 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0x48, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x0a, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x1d, 0x00, 0x04, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82618FC -gUnknown_82618FC: @ 82618FC -.string "Return to the rescue team base?\0" -.align 2, 0 - -.global gUnknown_826191C -gUnknown_826191C: @ 826191C -.byte 0x65, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826181C - -.global gUnknown_8261928 -gUnknown_8261928: @ 8261928 -.byte 0xf6, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82616FC -.byte 0xe9, 0x00, 0x41, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8261948 -gUnknown_8261948: @ 8261948 -.byte 0xf6, 0x00, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82616FC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8261988 -gUnknown_8261988: @ 8261988 -.byte 0xf6, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82616FC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82619C8 -gUnknown_82619C8: @ 82619C8 -.byte 0xf6, 0x00, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82616FC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8261A08 -gUnknown_8261A08: @ 8261A08 -.byte 0xf6, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82616FC -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8261A48 -gUnknown_8261A48: @ 8261A48 -.byte 0xf6, 0x00, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82616FC -.byte 0xe8, 0x00, 0x51, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8261A78 -gUnknown_8261A78: @ 8261A78 -.byte 0xf6, 0x00, 0x79, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82616FC -.byte 0xe8, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8261AA8 -gUnknown_8261AA8: @ 8261AA8 -.byte 0xf6, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82616FC -.byte 0xab, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00 -.byte 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8261B78 -gUnknown_8261B78: @ 8261B78 -.byte 0x92, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8261AA8 - -.global gUnknown_8261B84 -gUnknown_8261B84: @ 8261B84 -.byte 0xf6, 0x00, 0x91, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82616FC -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x02, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8261D94 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8261D70 -.byte 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8261D30 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8261CF4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8261CF4 -gUnknown_8261CF4: @ 8261CF4 -.string " But we were very close!{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s keep trying our best!\0" -.align 2, 0 - -.global gUnknown_8261D30 -gUnknown_8261D30: @ 8261D30 -.string " But we didn{APOSTROPHE}t have far to\n" -.string "go!{WAIT_PRESS}\n" -.string "Let{APOSTROPHE}s give it our best!\0" -.align 2, 0 - -.global gUnknown_8261D70 -gUnknown_8261D70: @ 8261D70 -.string " Hmm...{WAIT_PRESS}\n" -.string "That didn{APOSTROPHE}t work out...\0" -.align 2, 0 - -.global gUnknown_8261D94 -gUnknown_8261D94: @ 8261D94 -.string " Hmm...{WAIT_PRESS}\n" -.string "Well{COMMA} that didn{APOSTROPHE}t go well.\0" -.align 2, 0 - -.global gUnknown_8261DC0 -gUnknown_8261DC0: @ 8261DC0 -.byte 0xf6, 0x00, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82616FC -.byte 0xe8, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe8, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8261E70 -gUnknown_8261E70: @ 8261E70 -.byte 0x91, 0x00, 0x00, 0x00, 0x1c, 0x1c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8261E88 -gUnknown_8261E88: @ 8261E88 -.byte 0x00, 0x04, 0x00, 0x00, 0x1c, 0x26, 0x02, 0x02 -.4byte gUnknown_8261948 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1c, 0x29, 0x02, 0x02 -.4byte gUnknown_8261988 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8261EB8 -gUnknown_8261EB8: @ 8261EB8 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x1c, 0x26, 0x02, 0x02 -.4byte gUnknown_82619C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1c, 0x29, 0x02, 0x02 -.4byte gUnknown_8261A08 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8261EE8 -gUnknown_8261EE8: @ 8261EE8 -.byte 0x00, 0x04, 0x00, 0x00, 0x1c, 0x26, 0x02, 0x02 -.4byte gUnknown_8261A48 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1c, 0x29, 0x02, 0x02 -.4byte gUnknown_8261A78 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8261F18 -gUnknown_8261F18: @ 8261F18 -.byte 0x00, 0x02, 0x00, 0x00 -.byte 0x1f, 0x26, 0x00, 0x02 -.4byte gUnknown_8261B84 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x06, 0x00, 0x00, 0x1a, 0x26, 0x00, 0x02 -.4byte gUnknown_8261DC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8261F48 -gUnknown_8261F48: @ 8261F48 -.byte 0x04, 0x00, 0x04, 0x03, 0x1c, 0x1c, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8261928 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8261F60 -gUnknown_8261F60: @ 8261F60 -.byte 0x00, 0x00, 0x01, 0x01, 0x1c, 0x25, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8261F6C -gUnknown_8261F6C: @ 8261F6C -.byte 0x0f, 0x03, 0x00, 0x00, 0x15, 0x0c, 0x00, 0x00 -.4byte gUnknown_8261810 -.byte 0x0f, 0x03, 0x00, 0x00 -.byte 0x15, 0x2a, 0x00, 0x00 -.4byte gUnknown_826191C - -.global gUnknown_8261F84 -gUnknown_8261F84: @ 8261F84 -.4byte gUnknown_8261728 - -.global gUnknown_8261F88 -gUnknown_8261F88: @ 8261F88 -.4byte gUnknown_8261B78 - -.global gUnknown_8261F8C -gUnknown_8261F8C: @ 8261F8C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8261E70 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8261F48 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8261F6C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8261F84 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8261E88 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8261EB8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8261EE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8262054 -gUnknown_8262054: @ 8262054 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8261F18 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8261F60 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8261F88 - -.global gUnknown_826207C -gUnknown_826207C: @ 826207C -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_8261F8C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8262054 - -.global gUnknown_826208C -gUnknown_826208C: @ 826208C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8262094 -gUnknown_8262094: @ 8262094 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_826207C -.4byte gUnknown_826208C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_82620A8 -gUnknown_82620A8: @ 82620A8 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620E8 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82620E8 -gUnknown_82620E8: @ 82620E8 -.string "../data/ground/ground_data_d13p03_station.c\0" -.align 2, 0 - -.global gUnknown_8262114 -gUnknown_8262114: @ 8262114 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620A8 - -.global gUnknown_8262120 -gUnknown_8262120: @ 8262120 -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620E8 -.byte 0x08, 0x00, 0x00, 0x00, 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x10, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82621B0 -gUnknown_82621B0: @ 82621B0 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8262120 - -.global gUnknown_82621BC -gUnknown_82621BC: @ 82621BC -.byte 0xf6, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620E8 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x20, 0x00, 0x05, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826223C -gUnknown_826223C: @ 826223C -.byte 0xf6, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620E8 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8262814 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xed, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x27, 0x00, 0x05, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x4c, 0x00, 0x00, 0x00, 0xed, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x28, 0x01, 0x05, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x27, 0x00, 0x05, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x50, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x0f, 0x02, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8262804 -pause 0x5a -closeTextBox -pause 0x3c -setFlag 0x07 -setFlag 0x06 -setFlag 0x0a -.byte 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x28, 0x01, 0x05, 0x00, 0x1e, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x00, 0x05, 0x00, 0x10, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x97, 0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x28 -.byte 0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x97, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -setFlag 0x0a -.byte 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x2e, 0x02, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82627DC -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82627C0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8262788 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8262768 -closeTextBox -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x0f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8262738 -closeTextBox -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8262700 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82626CC -closeTextBox -setFlag 0x06 -setFlag 0x07 -setFlag 0x0a -rotate 0x04, shortestDir, north -pause 0x14 -setFlag 0x04 -setFlag 0x03 -closeThread - -.global gUnknown_82626CC -gUnknown_82626CC: @ 82626CC -.string " That{APOSTROPHE}s it! I got it!{WAIT_PRESS}\n" -.string "Look straight up{COMMA} {ARG_NICKNAME_2}!\0" -.align 2, 0 - -.global gUnknown_8262700 -gUnknown_8262700: @ 8262700 -.string " That{APOSTROPHE}s it! I get it now!{WAIT_PRESS}\n" -.string "Look straight up{COMMA} {ARG_NICKNAME_2}!\0" -.align 2, 0 - -.global gUnknown_8262738 -gUnknown_8262738: @ 8262738 -.string " These are shock waves!{WAIT_PRESS}\n" -.string "And they{APOSTROPHE}re huge!\0" -.align 2, 0 - -.global gUnknown_8262768 -gUnknown_8262768: @ 8262768 -.string " We{APOSTROPHE}re on top of clouds...\0" -.align 2, 0 - -.global gUnknown_8262788 -gUnknown_8262788: @ 8262788 -.string " Wh-wh-what?!\n" -.string "An earthquake?!{WAIT_PRESS}\n" -.string "It{APOSTROPHE}s not possible!\0" -.align 2, 0 - -.global gUnknown_82627C0 -gUnknown_82627C0: @ 82627C0 -.string " We{APOSTROPHE}re up on clouds...\0" -.align 2, 0 - -.global gUnknown_82627DC -gUnknown_82627DC: @ 82627DC -.string " Wh-wh-what?! Quake?!{WAIT_PRESS}\n" -.string "It can{APOSTROPHE}t be!\0" -.align 2, 0 - -.global gUnknown_8262804 -gUnknown_8262804: @ 8262804 -.string " ...Gwaargh!\0" -.align 2, 0 - -.global gUnknown_8262814 -gUnknown_8262814: @ 8262814 -.string "Gyaaaaaaaaaaaaaaaah!\0" -.align 2, 0 - -.global gUnknown_826282C -gUnknown_826282C: @ 826282C -.byte 0xf6, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620E8 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_826290C -gUnknown_826290C: @ 826290C -.byte 0xf6, 0x00, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620E8 -setAnimation 2 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82629AC -gUnknown_82629AC: @ 82629AC -.byte 0xf6, 0x00, 0x9a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620E8 -setAnimation 2 -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8262A4C -gUnknown_8262A4C: @ 8262A4C -.byte 0xf6, 0x00, 0xa7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620E8 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 9 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0x4c, 0x00, 0x00, 0x00, 0x8c, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x08 -.byte 0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xa0, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x62, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x62, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x02 -.byte 0x62, 0x00, 0x00, 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x4c, 0x00, 0x00, 0x00, 0xa0, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x62, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x62, 0x00, 0x00, 0x01, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x62, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x62, 0x00, 0x00, 0x01, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x62, 0x00, 0x00, 0x01, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0x06, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 23 -.byte 0x36, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8262DFC -.byte 0x28, 0x01, 0x05, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x27, 0x00, 0x05, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x5a -.byte 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 24 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x28, 0x01, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x03 -.byte 0x27, 0x00, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 25 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 27 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8262DFC -gUnknown_8262DFC: @ 8262DFC -.string "Gyaaaaaaaaaaaaaah!\0" -.align 2, 0 - -.global gUnknown_8262E10 -gUnknown_8262E10: @ 8262E10 -.byte 0xf6, 0x00, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620E8 -.byte 0x08, 0x00, 0x00, 0x00, 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x10, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8262EB0 -gUnknown_8262EB0: @ 8262EB0 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8262E10 - -.global gUnknown_8262EBC -gUnknown_8262EBC: @ 8262EBC -.byte 0xf6, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620E8 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0x14, 0x00, 0x05, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8262F4C -gUnknown_8262F4C: @ 8262F4C -.byte 0xf6, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620E8 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8263650 -closeTextBox -pause 0x0a -.byte 0x2e, 0x02, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8263620 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82635E4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82635B4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826357C -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8263534 -.byte 0xd0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82634F0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82634F0 -closeTextBox -pause 0x0a -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82634D4 -closeTextBox -pause 0x0a -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82634B8 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8263494 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8263454 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8263434 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8263408 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82633E4 -closeTextBox -pause 0x0a -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82633B4 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8263388 -closeTextBox -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826337C -closeTextBox -pause 0x1e -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x98, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826335C -closeTextBox -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -setFlag 0x04 -pause 0x0a -setFlag 0x03 -closeThread - -.global gUnknown_826335C -gUnknown_826335C: @ 826335C -.string " Take charge of your destiny!\0" -.align 2, 0 - -.global gUnknown_826337C -gUnknown_826337C: @ 826337C -.string " Well said!\0" -.align 2, 0 - -.global gUnknown_8263388 -gUnknown_8263388: @ 8263388 -.string " So?!{WAIT_PRESS}\n" -.string "We accepted that from the start!\0" -.align 2, 0 - -.global gUnknown_82633B4 -gUnknown_82633B4: @ 82633B4 -.string " So what?!{WAIT_PRESS}\n" -.string "We knew that right from the start!\0" -.align 2, 0 - -.global gUnknown_82633E4 -gUnknown_82633E4: @ 82633E4 -.string " You would not escape\n" -.string "unscathed!\0" -.align 2, 0 - -.global gUnknown_8263408 -gUnknown_8263408: @ 8263408 -.string " If I were to loose my\n" -.string "Hyper Beam here...\0" -.align 2, 0 - -.global gUnknown_8263434 -gUnknown_8263434: @ 8263434 -.string " The star has come too close.\0" -.align 2, 0 - -.global gUnknown_8263454 -gUnknown_8263454: @ 8263454 -.string " ............{WAIT_PRESS}" -.string "Before I try...{WAIT_PRESS}\n" -.string "I need to know your resolve.\0" -.align 2, 0 - -.global gUnknown_8263494 -gUnknown_8263494: @ 8263494 -.string " Yes!\n" -.string "Please hurry and destroy it!\0" -.align 2, 0 - -.global gUnknown_82634B8 -gUnknown_82634B8: @ 82634B8 -.string " Yes! Hurry!\n" -.string "Destroy it!\0" -.align 2, 0 - -.global gUnknown_82634D4 -gUnknown_82634D4: @ 82634D4 -.string " ...So{COMMA} that is why...\0" -.align 2, 0 - -.global gUnknown_82634F0 -gUnknown_82634F0: @ 82634F0 -.string " That{APOSTROPHE}s why we came{COMMA}\n" -.string "{ARG_NICKNAME_2}.\n" -.string "Please{COMMA} destroy the falling star!\0" -.align 2, 0 - -.global gUnknown_8263534 -gUnknown_8263534: @ 8263534 -.string " That{APOSTROPHE}s why we came{COMMA}\n" -.string "{ARG_NICKNAME_2}. We need you to destroy\n" -.string "that falling star!\0" -.align 2, 0 - -.global gUnknown_826357C -gUnknown_826357C: @ 826357C -.string " It will destroy the world\n" -.string "if it continues on its path!\0" -.align 2, 0 - -.global gUnknown_82635B4 -gUnknown_82635B4: @ 82635B4 -.string " It{APOSTROPHE}s a shooting star!\n" -.string "And it{APOSTROPHE}s enormous!\0" -.align 2, 0 - -.global gUnknown_82635E4 -gUnknown_82635E4: @ 82635E4 -.string " It{APOSTROPHE}s going to destroy\n" -.string "the world if it isn{APOSTROPHE}t stopped!\0" -.align 2, 0 - -.global gUnknown_8263620 -gUnknown_8263620: @ 8263620 -.string " It{APOSTROPHE}s a shooting star!\n" -.string "And it{APOSTROPHE}s gigantic!\0" -.align 2, 0 - -.global gUnknown_8263650 -gUnknown_8263650: @ 8263650 -.string " What is that?!\0" -.align 2, 0 - -.global gUnknown_8263660 -gUnknown_8263660: @ 8263660 -.byte 0xf6, 0x00, 0x4b, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620E8 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82636A0 -gUnknown_82636A0: @ 82636A0 -.byte 0xf6, 0x00, 0x52, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620E8 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82636E0 -gUnknown_82636E0: @ 82636E0 -.byte 0xf6, 0x00, 0x59, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620E8 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8263720 -gUnknown_8263720: @ 8263720 -.byte 0xf6, 0x00, 0x60, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620E8 -.byte 0x54, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 24 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x54, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8263860 -gUnknown_8263860: @ 8263860 -.byte 0xf6, 0x00, 0x77, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620E8 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0xe6, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x56, 0x00, 0x00, 0x00, 0x33, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x34, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8263980 -gUnknown_8263980: @ 8263980 -.byte 0xf6, 0x00, 0x8c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620E8 -.byte 0x08, 0x00, 0x00, 0x00, 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x97, 0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x27, 0x00, 0x05, 0x00, 0x10, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8263A70 -gUnknown_8263A70: @ 8263A70 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8263980 - -.global gUnknown_8263A7C -gUnknown_8263A7C: @ 8263A7C -.byte 0xf6, 0x00, 0xa0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620E8 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -pause 0x1e -.byte 0x2b, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8263B2C -setFlag 0x03 -closeThread - -.global gUnknown_8263B2C -gUnknown_8263B2C: @ 8263B2C -.string " Waaaaaaaaaaaaaaaaaah!\0" -.align 2, 0 - -.global gUnknown_8263B44 -gUnknown_8263B44: @ 8263B44 -.byte 0xf6, 0x00, 0xaf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620E8 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8263B84 -gUnknown_8263B84: @ 8263B84 -.byte 0xf6, 0x00, 0xb6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620E8 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8263BB4 -gUnknown_8263BB4: @ 8263BB4 -.byte 0xf6, 0x00, 0xbc, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620E8 -setAnimation 2 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8263BE4 -gUnknown_8263BE4: @ 8263BE4 -.byte 0xf6, 0x00, 0xc2, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620E8 -.byte 0x54, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8263C24 -gUnknown_8263C24: @ 8263C24 -.byte 0xf6, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82620E8 -.byte 0x56, 0x00, 0x00, 0x00, 0x34, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8263C54 -gUnknown_8263C54: @ 8263C54 -.byte 0x00, 0x04, 0x00, 0x00, 0x25, 0x25, 0x00, 0x02 -.4byte gUnknown_826223C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x20, 0x25, 0x00, 0x02 -.4byte gUnknown_826282C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x04, 0x00, 0x00, 0x22, 0x2a, 0x00, 0x02 -.4byte gUnknown_826290C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0b, 0x04, 0x00, 0x00, 0x26, 0x29, 0x00, 0x02 -.4byte gUnknown_82629AC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x22, 0x22, 0x02, 0x00 -.4byte gUnknown_8262A4C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8263CCC -gUnknown_8263CCC: @ 8263CCC -.byte 0x00, 0x04, 0x00, 0x00, 0x25, 0x25, 0x00, 0x02 -.4byte gUnknown_8262F4C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x20, 0x25, 0x00, 0x02 -.4byte gUnknown_8263660 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0a, 0x04, 0x00, 0x00, 0x22, 0x2a, 0x00, 0x02 -.4byte gUnknown_82636A0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0x04, 0x00, 0x00, 0x26, 0x29, 0x00, 0x02 -.4byte gUnknown_82636E0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x22, 0x22, 0x02, 0x00 -.4byte gUnknown_8263720 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8263D44 -gUnknown_8263D44: @ 8263D44 -.byte 0x00, 0x04, 0x00, 0x00, 0x25, 0x25, 0x00, 0x02 -.4byte gUnknown_8263A7C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x04, 0x00, 0x00, 0x20, 0x25, 0x00, 0x02 -.4byte gUnknown_8263B44 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x04, 0x00, 0x00, 0x22, 0x2a, 0x00, 0x02 -.4byte gUnknown_8263B84 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0x04, 0x00, 0x00, 0x26, 0x29, 0x00, 0x02 -.4byte gUnknown_8263BB4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x22, 0x22, 0x02, 0x00 -.4byte gUnknown_8263BE4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8263DBC -gUnknown_8263DBC: @ 8263DBC -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x23, 0x02, 0x02 -.4byte gUnknown_82621BC - -.global gUnknown_8263DC8 -gUnknown_8263DC8: @ 8263DC8 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x23, 0x02, 0x02 -.4byte gUnknown_8262EBC -.byte 0x04, 0x04, 0x01, 0x01, 0x23, 0x1f, 0x00, 0x00 -.4byte gUnknown_8263860 - -.global gUnknown_8263DE0 -gUnknown_8263DE0: @ 8263DE0 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x23, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x01, 0x23, 0x1c, 0x00, 0x00 -.4byte gUnknown_8263C24 - -.global gUnknown_8263DF8 -gUnknown_8263DF8: @ 8263DF8 -.4byte gUnknown_8262114 - -.global gUnknown_8263DFC -gUnknown_8263DFC: @ 8263DFC -.4byte gUnknown_82621B0 - -.global gUnknown_8263E00 -gUnknown_8263E00: @ 8263E00 -.4byte gUnknown_8262EB0 - -.global gUnknown_8263E04 -gUnknown_8263E04: @ 8263E04 -.4byte gUnknown_8263A70 - -.global gUnknown_8263E08 -gUnknown_8263E08: @ 8263E08 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8263DF8 - -.global gUnknown_8263E30 -gUnknown_8263E30: @ 8263E30 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_8263C54 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8263DBC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8263DFC - -.global gUnknown_8263E58 -gUnknown_8263E58: @ 8263E58 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_8263CCC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8263DC8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8263E00 - -.global gUnknown_8263E80 -gUnknown_8263E80: @ 8263E80 -.byte 0x05, 0x00, 0x00, 0x00 -.4byte gUnknown_8263D44 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8263DE0 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8263E04 - -.global gUnknown_8263EA8 -gUnknown_8263EA8: @ 8263EA8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8263E08 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8263E30 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8263E58 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8263E80 - -.global gUnknown_8263EC8 -gUnknown_8263EC8: @ 8263EC8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8263ED0 -gUnknown_8263ED0: @ 8263ED0 -.byte 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8263EA8 -.4byte gUnknown_8263EC8 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8263EE4 -gUnknown_8263EE4: @ 8263EE4 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8263F24 -.byte 0x08, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8263F24 -gUnknown_8263F24: @ 8263F24 -.string "../data/ground/ground_data_d14p01_station.c\0" -.align 2, 0 - -.global gUnknown_8263F50 -gUnknown_8263F50: @ 8263F50 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8263EE4 - -.global gUnknown_8263F5C -gUnknown_8263F5C: @ 8263F5C -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8263F24 -.byte 0x08, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8263FDC -gUnknown_8263FDC: @ 8263FDC -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8263F5C - -.global gUnknown_8263FE8 -gUnknown_8263FE8: @ 8263FE8 -.byte 0xf6, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8263F24 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8264058 -gUnknown_8264058: @ 8264058 -.byte 0xf6, 0x00, 0x2a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8263F24 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8264098 -gUnknown_8264098: @ 8264098 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x22, 0x1e, 0x02, 0x02 -.4byte gUnknown_8263FE8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x00, 0x22, 0x19, 0x02, 0x02 -.4byte gUnknown_8264058 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82640C8 -gUnknown_82640C8: @ 82640C8 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x1b, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82640D4 -gUnknown_82640D4: @ 82640D4 -.4byte gUnknown_8263F50 - -.global gUnknown_82640D8 -gUnknown_82640D8: @ 82640D8 -.4byte gUnknown_8263FDC - -.global gUnknown_82640DC -gUnknown_82640DC: @ 82640DC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82640D4 - -.global gUnknown_8264104 -gUnknown_8264104: @ 8264104 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8264098 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82640C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82640D8 - -.global gUnknown_826412C -gUnknown_826412C: @ 826412C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82640DC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8264104 - -.global gUnknown_826413C -gUnknown_826413C: @ 826413C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8264144 -gUnknown_8264144: @ 8264144 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_826412C -.4byte gUnknown_826413C -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8264158 -gUnknown_8264158: @ 8264158 -.byte 0xf6, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264198 -.byte 0x08, 0x00, 0x00, 0x00, 0xd3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8264198 -gUnknown_8264198: @ 8264198 -.string "../data/ground/ground_data_d15p01_station.c\0" -.align 2, 0 - -.global gUnknown_82641C4 -gUnknown_82641C4: @ 82641C4 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264158 - -.global gUnknown_82641D0 -gUnknown_82641D0: @ 82641D0 -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264198 -.byte 0x08, 0x00, 0x00, 0x00, 0xd3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8264250 -gUnknown_8264250: @ 8264250 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82641D0 - -.global gUnknown_826425C -gUnknown_826425C: @ 826425C -.byte 0xf6, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264198 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826470C -closeTextBox -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82646E8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82646AC -closeTextBox -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826467C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264658 -closeTextBox -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826461C -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82645D8 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264590 -closeTextBox -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264580 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264550 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264520 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82644F4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82644D0 -closeTextBox -.byte 0x49, 0x00, 0x00, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82644A8 -.byte 0xe1, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826449C -.byte 0x49, 0x00, 0x00, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826446C -.byte 0xe1, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -setFlag 0x03 -closeThread - -.global gUnknown_826446C -gUnknown_826446C: @ 826446C -.string "{CENTER_ALIGN}Gained access to\n" -.string "{CENTER_ALIGN}the {COLOR_1 YELLOW_4}Northwind Field{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_826449C -gUnknown_826449C: @ 826449C -.string "{CENTER_ALIGN}And...\0" -.align 2, 0 - -.global gUnknown_82644A8 -gUnknown_82644A8: @ 82644A8 -.string "{CENTER_ALIGN}{ARG_NICKNAME_0} received\n" -.string "{CENTER_ALIGN}the {COLOR_1 GREEN_2}Sunset Wing{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_82644D0 -gUnknown_82644D0: @ 82644D0 -.string " Perhaps your wish will\n" -.string "come true!\0" -.align 2, 0 - -.global gUnknown_82644F4 -gUnknown_82644F4: @ 82644F4 -.string " If you are lucky enough to\n" -.string "meet Suicune...\0" -.align 2, 0 - -.global gUnknown_8264520 -gUnknown_8264520: @ 8264520 -.string " You will find a Pokémon\n" -.string "there named Suicune.\0" -.align 2, 0 - -.global gUnknown_8264550 -gUnknown_8264550: @ 8264550 -.string " To a place called the\n" -.string "{COLOR_1 YELLOW_4}Northwind Field{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_8264580 -gUnknown_8264580: @ 8264580 -.string " Go northeast!\0" -.align 2, 0 - -.global gUnknown_8264590 -gUnknown_8264590: @ 8264590 -.string "{CENTER_ALIGN}Its subtle gradation of yellow\n" -.string "{CENTER_ALIGN}to red is a truly beauteous sight!\0" -.align 2, 0 - -.global gUnknown_82645D8 -gUnknown_82645D8: @ 82645D8 -.string "{CENTER_ALIGN}The {COLOR_1 GREEN_2}Red Wing{END_COLOR_TEXT_1}...{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}transformed into\n" -.string "{CENTER_ALIGN}the {COLOR_1 GREEN_2}Sunset Wing{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_826461C -gUnknown_826461C: @ 826461C -.string "{CENTER_ALIGN}Raikou{APOSTROPHE}s thunderbolt\n" -.string "{CENTER_ALIGN}electrified the {COLOR_1 GREEN_2}Red Wing{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_8264658 -gUnknown_8264658: @ 8264658 -.string " ............{WAIT_PRESS}" -.string "You...{WAIT_PRESS}\n" -.string "Stand back!\0" -.align 2, 0 - -.global gUnknown_826467C -gUnknown_826467C: @ 826467C -.string " ...Hm?! This...{WAIT_PRESS}\n" -.string "This is the {COLOR_1 GREEN_2}Red Wing{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_82646AC -gUnknown_82646AC: @ 82646AC -.string " But regardless{COMMA} you have\n" -.string "won.{WAIT_PRESS}\n" -.string "Let me hear your wish.\0" -.align 2, 0 - -.global gUnknown_82646E8 -gUnknown_82646E8: @ 82646E8 -.string " How...{WAIT_PRESS}\n" -.string "How did this happen...?\0" -.align 2, 0 - -.global gUnknown_826470C -gUnknown_826470C: @ 826470C -.string " Gwooooooooooh!{WAIT_PRESS}\n" -.string "...H-how dare you!\0" -.align 2, 0 - -.global gUnknown_8264734 -gUnknown_8264734: @ 8264734 -.byte 0xf6, 0x00, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264198 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8264774 -gUnknown_8264774: @ 8264774 -.byte 0x00, 0x04, 0x00, 0x00, 0x22, 0x2a, 0x02, 0x02 -.4byte gUnknown_826425C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x85, 0x00, 0x00, 0x00, 0x22, 0x25, 0x02, 0x02 -.4byte gUnknown_8264734 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82647A4 -gUnknown_82647A4: @ 82647A4 -.byte 0x00, 0x00, 0x01, 0x01, 0x22, 0x27, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82647B0 -gUnknown_82647B0: @ 82647B0 -.4byte gUnknown_82641C4 - -.global gUnknown_82647B4 -gUnknown_82647B4: @ 82647B4 -.4byte gUnknown_8264250 - -.global gUnknown_82647B8 -gUnknown_82647B8: @ 82647B8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82647B0 - -.global gUnknown_82647E0 -gUnknown_82647E0: @ 82647E0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8264774 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82647A4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82647B4 - -.global gUnknown_8264808 -gUnknown_8264808: @ 8264808 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82647B8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82647E0 - -.global gUnknown_8264818 -gUnknown_8264818: @ 8264818 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8264820 -gUnknown_8264820: @ 8264820 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8264808 -.4byte gUnknown_8264818 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8264834 -gUnknown_8264834: @ 8264834 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264874 -.byte 0x08, 0x00, 0x00, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8264874 -gUnknown_8264874: @ 8264874 -.string "../data/ground/ground_data_d16p01_station.c\0" -.align 2, 0 - -.global gUnknown_82648A0 -gUnknown_82648A0: @ 82648A0 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264834 - -.global gUnknown_82648AC -gUnknown_82648AC: @ 82648AC -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264874 -.byte 0x08, 0x00, 0x00, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826494C -gUnknown_826494C: @ 826494C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82648AC - -.global gUnknown_8264958 -gUnknown_8264958: @ 8264958 -.byte 0xf6, 0x00, 0x22, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264874 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8264998 -gUnknown_8264998: @ 8264998 -.byte 0xf6, 0x00, 0x29, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264874 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82649C8 -gUnknown_82649C8: @ 82649C8 -.byte 0xf6, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264874 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xf1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x28, 0x01, 0x05, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x7d, 0x7d, 0xfa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0x7d, 0x7d, 0xfa, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xf1, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xf1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x28, 0x01, 0x05, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xf1, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265180 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265164 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265148 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x6a, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265118 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82650E8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82650CC -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x62, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x28, 0x01, 0x05, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x27, 0x01, 0x05, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x32, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265090 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826504C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xfb, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x01, 0x00 -.byte 0x3c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x01, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xfb, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265034 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265000 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264FE0 -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264FB8 -closeTextBox -.byte 0x62, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x14, 0x01, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x47, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264F94 -.byte 0xe1, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x32, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264F88 -.byte 0x49, 0x00, 0x00, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264F58 -.byte 0xe1, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8264F58 -gUnknown_8264F58: @ 8264F58 -.string "{CENTER_ALIGN}Gained access to\n" -.string "{CENTER_ALIGN}the {COLOR_1 YELLOW_4}Lightning Field{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_8264F88 -gUnknown_8264F88: @ 8264F88 -.string "{CENTER_ALIGN}And...\0" -.align 2, 0 - -.global gUnknown_8264F94 -gUnknown_8264F94: @ 8264F94 -.string "{CENTER_ALIGN}{ARG_NICKNAME_0} received\n" -.string "{CENTER_ALIGN}the {COLOR_1 GREEN_2}Red Wing{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_8264FB8 -gUnknown_8264FB8: @ 8264FB8 -.string " Now go!\n" -.string "To the {COLOR_1 YELLOW_4}Lightning Field{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_8264FE0 -gUnknown_8264FE0: @ 8264FE0 -.string " You will know your path\n" -.string "there!\0" -.align 2, 0 - -.global gUnknown_8265000 -gUnknown_8265000: @ 8265000 -.string " There{COMMA} you will find\n" -.string "the {COLOR_1 YELLOW_4}Lightning Field{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_8265034 -gUnknown_8265034: @ 8265034 -.string " Take this and go west!\0" -.align 2, 0 - -.global gUnknown_826504C -gUnknown_826504C: @ 826504C -.string "{CENTER_ALIGN}The {COLOR_1 GREEN_2}Clear Wing{END_COLOR_TEXT_1}...{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}transformed into the {COLOR_1 GREEN_2}Red Wing{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_8265090 -gUnknown_8265090: @ 8265090 -.string "{CENTER_ALIGN}Entei{APOSTROPHE}s fiery blast made\n" -.string "{CENTER_ALIGN}the {COLOR_1 GREEN_2}Clear Wing{END_COLOR_TEXT_1} flare!\0" -.align 2, 0 - -.global gUnknown_82650CC -gUnknown_82650CC: @ 82650CC -.string " ............{WAIT_PRESS}" -.string "Stand aside.\0" -.align 2, 0 - -.global gUnknown_82650E8 -gUnknown_82650E8: @ 82650E8 -.string " ...I understand now.{WAIT_PRESS}\n" -.string "To meet that Pokémon...\0" -.align 2, 0 - -.global gUnknown_8265118 -gUnknown_8265118: @ 8265118 -.string " ...Wh-what?! This is...\n" -.string "the {COLOR_1 GREEN_2}Clear Wing{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_8265148 -gUnknown_8265148: @ 8265148 -.string " You...{WAIT_PRESS}\n" -.string "What do you wish?\0" -.align 2, 0 - -.global gUnknown_8265164 -gUnknown_8265164: @ 8265164 -.string " Urghgh...{WAIT_PRESS}\n" -.string "I... I lost...\0" -.align 2, 0 - -.global gUnknown_8265180 -gUnknown_8265180: @ 8265180 -.string " Gwooooooh!\0" -.align 2, 0 - -.global gUnknown_826518C -gUnknown_826518C: @ 826518C -.byte 0xf6, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264874 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -setAnimation 2 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe2, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 9 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0x97, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0x97, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0x8d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -setAnimation 2 -closeThread - -.global gUnknown_826539C -gUnknown_826539C: @ 826539C -.byte 0xf6, 0x00, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264874 -.byte 0x56, 0x00, 0x00, 0x00, 0xac, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82653CC -gUnknown_82653CC: @ 82653CC -.byte 0xf6, 0x00, 0xba, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8264874 -.byte 0x56, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x02, 0x01, 0x00, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe3, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x00, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe2, 0x00, 0xe3, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0xe3, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x00, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x02, 0x02, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_826551C -gUnknown_826551C: @ 826551C -.byte 0x00, 0x04, 0x00, 0x00, 0x16, 0x16, 0x02, 0x02 -.4byte gUnknown_82649C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00, 0x16, 0x11, 0x02, 0x02 -.4byte gUnknown_826518C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826554C -gUnknown_826554C: @ 826554C -.byte 0x00, 0x00, 0x01, 0x01, 0x16, 0x15, 0x02, 0x02 -.4byte gUnknown_8264998 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8265564 -gUnknown_8265564: @ 8265564 -.byte 0x43, 0x00, 0x02, 0x02, 0x16, 0x11, 0x02, 0x02 -.4byte gUnknown_82653CC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826557C -gUnknown_826557C: @ 826557C -.byte 0x05, 0x00, 0x01, 0x01, 0x16, 0x11, 0x02, 0x02 -.4byte gUnknown_8264958 - -.global gUnknown_8265588 -gUnknown_8265588: @ 8265588 -.byte 0x05, 0x00, 0x01, 0x01, 0x16, 0x11, 0x02, 0x02 -.4byte gUnknown_826539C - -.global gUnknown_8265594 -gUnknown_8265594: @ 8265594 -.4byte gUnknown_82648A0 - -.global gUnknown_8265598 -gUnknown_8265598: @ 8265598 -.4byte gUnknown_826494C - -.global gUnknown_826559C -gUnknown_826559C: @ 826559C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8265594 - -.global gUnknown_82655C4 -gUnknown_82655C4: @ 82655C4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_826551C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826554C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826557C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8265598 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8265564 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8265588 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8265614 -gUnknown_8265614: @ 8265614 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826559C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82655C4 - -.global gUnknown_8265624 -gUnknown_8265624: @ 8265624 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826562C -gUnknown_826562C: @ 826562C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8265614 -.4byte gUnknown_8265624 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8265640 -gUnknown_8265640: @ 8265640 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265680 -.byte 0x08, 0x00, 0x00, 0x00, 0xd5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8265680 -gUnknown_8265680: @ 8265680 -.string "../data/ground/ground_data_d17p01_station.c\0" -.align 2, 0 - -.global gUnknown_82656AC -gUnknown_82656AC: @ 82656AC -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265640 - -.global gUnknown_82656B8 -gUnknown_82656B8: @ 82656B8 -.byte 0xf6, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265680 -.byte 0x08, 0x00, 0x00, 0x00, 0xd5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8265758 -gUnknown_8265758: @ 8265758 -.byte 0x90, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82656B8 - -.global gUnknown_8265764 -gUnknown_8265764: @ 8265764 -.byte 0xf6, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265680 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0xac, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82657A4 -gUnknown_82657A4: @ 82657A4 -.byte 0xf6, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265680 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82657D4 -gUnknown_82657D4: @ 82657D4 -.byte 0xf6, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265680 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xf1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x70, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x70, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xf1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xf1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x50, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x50, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xf1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xad, 0x02, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266024 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266000 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265FC4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xe8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265F94 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265F70 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x00, 0x05, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x50, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x27, 0x01, 0x05, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x50, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265F34 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265EF0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xfb, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x01, 0x00, 0x3c, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x01, 0x00, 0x3c, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xfb, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265EA8 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265E98 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265E68 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265E38 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265E0C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265DE8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xe8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0xd4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265DC0 -.byte 0xe1, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265DB4 -.byte 0x49, 0x00, 0x00, 0x00, 0xcd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265D84 -.byte 0xe1, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8265D84 -gUnknown_8265D84: @ 8265D84 -.string "{CENTER_ALIGN}Gained access to\n" -.string "{CENTER_ALIGN}the {COLOR_1 YELLOW_4}Northwind Field{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_8265DB4 -gUnknown_8265DB4: @ 8265DB4 -.string "{CENTER_ALIGN}And...\0" -.align 2, 0 - -.global gUnknown_8265DC0 -gUnknown_8265DC0: @ 8265DC0 -.string "{CENTER_ALIGN}{ARG_NICKNAME_0} received\n" -.string "{CENTER_ALIGN}the {COLOR_1 GREEN_2}Sunset Wing{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_8265DE8 -gUnknown_8265DE8: @ 8265DE8 -.string " Perhaps your wish will\n" -.string "come true!\0" -.align 2, 0 - -.global gUnknown_8265E0C -gUnknown_8265E0C: @ 8265E0C -.string " If you are lucky enough to\n" -.string "meet Suicune...\0" -.align 2, 0 - -.global gUnknown_8265E38 -gUnknown_8265E38: @ 8265E38 -.string " You will find a Pokémon\n" -.string "there named Suicune.\0" -.align 2, 0 - -.global gUnknown_8265E68 -gUnknown_8265E68: @ 8265E68 -.string " To a place called the\n" -.string "{COLOR_1 YELLOW_4}Northwind Field{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_8265E98 -gUnknown_8265E98: @ 8265E98 -.string " Go northeast!\0" -.align 2, 0 - -.global gUnknown_8265EA8 -gUnknown_8265EA8: @ 8265EA8 -.string "{CENTER_ALIGN}Its subtle gradation of yellow\n" -.string "{CENTER_ALIGN}to red is a truly beauteous sight!\0" -.align 2, 0 - -.global gUnknown_8265EF0 -gUnknown_8265EF0: @ 8265EF0 -.string "{CENTER_ALIGN}The {COLOR_1 GREEN_2}Red Wing{END_COLOR_TEXT_1}...{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}transformed into\n" -.string "{CENTER_ALIGN}the {COLOR_1 GREEN_2}Sunset Wing{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_8265F34 -gUnknown_8265F34: @ 8265F34 -.string "{CENTER_ALIGN}Raikou{APOSTROPHE}s thunderbolt\n" -.string "{CENTER_ALIGN}electrified the {COLOR_1 GREEN_2}Red Wing{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_8265F70 -gUnknown_8265F70: @ 8265F70 -.string " ............{WAIT_PRESS}" -.string "You...{WAIT_PRESS}\n" -.string "Stand back!\0" -.align 2, 0 - -.global gUnknown_8265F94 -gUnknown_8265F94: @ 8265F94 -.string " ...Hm?! This...{WAIT_PRESS}\n" -.string "This is the {COLOR_1 GREEN_2}Red Wing{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_8265FC4 -gUnknown_8265FC4: @ 8265FC4 -.string " But regardless{COMMA} you have\n" -.string "won.{WAIT_PRESS}\n" -.string "Let me hear your wish.\0" -.align 2, 0 - -.global gUnknown_8266000 -gUnknown_8266000: @ 8266000 -.string " How...{WAIT_PRESS}\n" -.string "How did this happen...?\0" -.align 2, 0 - -.global gUnknown_8266024 -gUnknown_8266024: @ 8266024 -.string " Gwooooooooooh!{WAIT_PRESS}\n" -.string "...H-how dare you!\0" -.align 2, 0 - -.global gUnknown_826604C -gUnknown_826604C: @ 826604C -.byte 0xf6, 0x00, 0x92, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265680 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -setAnimation 2 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe2, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 9 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xc4, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xc4, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -pause 0x0f -.byte 0x4c, 0x00, 0x00, 0x00, 0xdf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xdf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -setAnimation 2 -closeThread - -.global gUnknown_826626C -gUnknown_826626C: @ 826626C -.byte 0xf6, 0x00, 0xb7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265680 -.byte 0x56, 0x00, 0x00, 0x00, 0xad, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_826629C -gUnknown_826629C: @ 826629C -.byte 0xf6, 0x00, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8265680 -.byte 0x4c, 0x00, 0x00, 0x00, 0x96, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x00, 0x00, 0x00, 0xb1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x00, 0x00, 0x00, 0xb2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x02, 0x01, 0x00, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe2, 0x00, 0xd6, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd6, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2d -.byte 0xe2, 0x00, 0xd6, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82663AC -gUnknown_82663AC: @ 82663AC -.byte 0x00, 0x04, 0x00, 0x00, 0x16, 0x13, 0x02, 0x02 -.4byte gUnknown_82657D4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x75, 0x00, 0x00, 0x00, 0x16, 0x0e, 0x02, 0x02 -.4byte gUnknown_826604C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82663DC -gUnknown_82663DC: @ 82663DC -.byte 0x00, 0x00, 0x01, 0x01, 0x16, 0x12, 0x02, 0x02 -.4byte gUnknown_82657A4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82663F4 -gUnknown_82663F4: @ 82663F4 -.byte 0x43, 0x00, 0x02, 0x02, 0x16, 0x0e, 0x02, 0x02 -.4byte gUnknown_826629C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826640C -gUnknown_826640C: @ 826640C -.byte 0x05, 0x00, 0x01, 0x01, 0x16, 0x0e, 0x02, 0x02 -.4byte gUnknown_8265764 - -.global gUnknown_8266418 -gUnknown_8266418: @ 8266418 -.byte 0x05, 0x00, 0x01, 0x01 -.byte 0x16, 0x0e, 0x02, 0x02 -.4byte gUnknown_826626C - -.global gUnknown_8266424 -gUnknown_8266424: @ 8266424 -.4byte gUnknown_82656AC - -.global gUnknown_8266428 -gUnknown_8266428: @ 8266428 -.4byte gUnknown_8265758 - -.global gUnknown_826642C -gUnknown_826642C: @ 826642C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8266424 - -.global gUnknown_8266454 -gUnknown_8266454: @ 8266454 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82663AC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82663DC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826640C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8266428 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82663F4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8266418 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82664A4 -gUnknown_82664A4: @ 82664A4 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826642C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8266454 - -.global gUnknown_82664B4 -gUnknown_82664B4: @ 82664B4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82664BC -gUnknown_82664BC: @ 82664BC -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82664A4 -.4byte gUnknown_82664B4 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_82664D0 -gUnknown_82664D0: @ 82664D0 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266510 -.byte 0x08, 0x00, 0x00, 0x00, 0xd6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8266510 -gUnknown_8266510: @ 8266510 -.string "../data/ground/ground_data_d18p01_station.c\0" -.align 2, 0 - -.global gUnknown_826653C -gUnknown_826653C: @ 826653C -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82664D0 - -.global gUnknown_8266548 -gUnknown_8266548: @ 8266548 -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266510 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0xd6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82665E8 -gUnknown_82665E8: @ 82665E8 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266548 - -.global gUnknown_82665F4 -gUnknown_82665F4: @ 82665F4 -.byte 0xf6, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266510 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8266624 -gUnknown_8266624: @ 8266624 -.byte 0xf6, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266510 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0xad, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8266664 -gUnknown_8266664: @ 8266664 -.byte 0xf6, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266510 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xf1, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x28, 0x01, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x77, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0x77, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xf1, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x4c, 0x00, 0x00, 0x00, 0xf1, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x28, 0x01, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x77, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0x77, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xf1, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266F20 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266F10 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266EF0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xe4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266ED0 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266E9C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266E88 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266E78 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 9 -.byte 0x28, 0x00, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x77, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00, 0x77, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266E40 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266DF8 -closeTextBox -.byte 0xa6, 0x00, 0x39, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00, 0xfb, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x01, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x01, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xfb, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266D94 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266D78 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266D48 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266D34 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266CEC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266CC4 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266CA0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xe8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0xd4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266C78 -.byte 0xe1, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266C6C -.byte 0x49, 0x00, 0x00, 0x00, 0xcd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266C44 -.byte 0xe1, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8266C44 -gUnknown_8266C44: @ 8266C44 -.string "{CENTER_ALIGN}Gained access to\n" -.string "{CENTER_ALIGN}{COLOR_1 YELLOW_4}Mt. Faraway{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_8266C6C -gUnknown_8266C6C: @ 8266C6C -.string "{CENTER_ALIGN}And...\0" -.align 2, 0 - -.global gUnknown_8266C78 -gUnknown_8266C78: @ 8266C78 -.string "{CENTER_ALIGN}{ARG_NICKNAME_0} received\n" -.string "{CENTER_ALIGN}the {COLOR_1 GREEN_2}Rainbow Wing{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_8266CA0 -gUnknown_8266CA0: @ 8266CA0 -.string " The mirage Pokémon is at\n" -.string "its peak!\0" -.align 2, 0 - -.global gUnknown_8266CC4 -gUnknown_8266CC4: @ 8266CC4 -.string " Yes...\n" -.string "Take it to {COLOR_1 YELLOW_4}Mt. Faraway{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_8266CEC -gUnknown_8266CEC: @ 8266CEC -.string " Take it to the mountain so\n" -.string "high that its peak is obscured by clouds.\0" -.align 2, 0 - -.global gUnknown_8266D34 -gUnknown_8266D34: @ 8266D34 -.string " Take this wing...\0" -.align 2, 0 - -.global gUnknown_8266D48 -gUnknown_8266D48: @ 8266D48 -.string " It is the key to meeting\n" -.string "the mirage Pokémon.\0" -.align 2, 0 - -.global gUnknown_8266D78 -gUnknown_8266D78: @ 8266D78 -.string " This {COLOR_1 GREEN_2}Rainbow Wing{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_8266D94 -gUnknown_8266D94: @ 8266D94 -.string "{CENTER_ALIGN}Glittering in the seven colors\n" -.string "{CENTER_ALIGN}of the rainbow{COMMA} this wing is\n" -.string "{CENTER_ALIGN}beautiful beyond description!\0" -.align 2, 0 - -.global gUnknown_8266DF8 -gUnknown_8266DF8: @ 8266DF8 -.string "{CENTER_ALIGN}The {COLOR_1 GREEN_2}Sunset Wing{END_COLOR_TEXT_1}...{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}transformed into the {COLOR_1 GREEN_2}Rainbow Wing{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_8266E40 -gUnknown_8266E40: @ 8266E40 -.string "{CENTER_ALIGN}The north wind swirled\n" -.string "{CENTER_ALIGN}around the {COLOR_1 GREEN_2}Sunset Wing{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_8266E78 -gUnknown_8266E78: @ 8266E78 -.string " Kyuuuuuuuuhn!\0" -.align 2, 0 - -.global gUnknown_8266E88 -gUnknown_8266E88: @ 8266E88 -.string " ...{WAIT_PRESS}" -.string "Step back.\0" -.align 2, 0 - -.global gUnknown_8266E9C -gUnknown_8266E9C: @ 8266E9C -.string " ...I see.{WAIT_PRESS}\n" -.string "You came seeking the mirage Pokémon...\0" -.align 2, 0 - -.global gUnknown_8266ED0 -gUnknown_8266ED0: @ 8266ED0 -.string " This!{WAIT_PRESS}\n" -.string "The {COLOR_1 GREEN_2}Sunset Wing{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_8266EF0 -gUnknown_8266EF0: @ 8266EF0 -.string " I admit it.\n" -.string "You are strong.\0" -.align 2, 0 - -.global gUnknown_8266F10 -gUnknown_8266F10: @ 8266F10 -.string " I have lost...\0" -.align 2, 0 - -.global gUnknown_8266F20 -gUnknown_8266F20: @ 8266F20 -.string " Gwoooooooh!\0" -.align 2, 0 - -.global gUnknown_8266F30 -gUnknown_8266F30: @ 8266F30 -.byte 0xf6, 0x00, 0x95, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266510 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 11 -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 9 -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x98, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0x98, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8267150 -gUnknown_8267150: @ 8267150 -.byte 0xf6, 0x00, 0xba, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266510 -.byte 0x4c, 0x00, 0x00, 0x00, 0x77, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x70, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb4, 0x02, 0x01, 0x00, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x95, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x4c, 0x00, 0x00, 0x00, 0x95, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x4d, 0x00, 0x00, 0x00, 0x95, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8267280 -gUnknown_8267280: @ 8267280 -.byte 0xf6, 0x00, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8266510 -.byte 0x56, 0x00, 0x00, 0x00, 0xae, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82672B0 -gUnknown_82672B0: @ 82672B0 -.byte 0x00, 0x04, 0x00, 0x00, 0x16, 0x16, 0x02, 0x02 -.4byte gUnknown_8266664 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x16, 0x11, 0x02, 0x02 -.4byte gUnknown_8266F30 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82672E0 -gUnknown_82672E0: @ 82672E0 -.byte 0x43, 0x00, 0x02, 0x02, 0x16, 0x11, 0x02, 0x02 -.4byte gUnknown_8267150 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82672F8 -gUnknown_82672F8: @ 82672F8 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x16, 0x15, 0x02, 0x02 -.4byte gUnknown_82665F4 -.byte 0x05, 0x00, 0x01, 0x01, 0x16, 0x11, 0x02, 0x02 -.4byte gUnknown_8266624 - -.global gUnknown_8267310 -gUnknown_8267310: @ 8267310 -.byte 0x05, 0x00, 0x01, 0x01, 0x16, 0x11, 0x02, 0x02 -.4byte gUnknown_8267280 - -.global gUnknown_826731C -gUnknown_826731C: @ 826731C -.4byte gUnknown_826653C - -.global gUnknown_8267320 -gUnknown_8267320: @ 8267320 -.4byte gUnknown_82665E8 - -.global gUnknown_8267324 -gUnknown_8267324: @ 8267324 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826731C - -.global gUnknown_826734C -gUnknown_826734C: @ 826734C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82672B0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_82672F8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8267320 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82672E0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8267310 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826739C -gUnknown_826739C: @ 826739C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8267324 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_826734C - -.global gUnknown_82673AC -gUnknown_82673AC: @ 82673AC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82673B4 -gUnknown_82673B4: @ 82673B4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_826739C -.4byte gUnknown_82673AC -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_82673C8 -gUnknown_82673C8: @ 82673C8 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267408 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0xd7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8267408 -gUnknown_8267408: @ 8267408 -.string "../data/ground/ground_data_d19p01_station.c\0" -.align 2, 0 - -.global gUnknown_8267434 -gUnknown_8267434: @ 8267434 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82673C8 - -.global gUnknown_8267440 -gUnknown_8267440: @ 8267440 -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267408 -.byte 0x08, 0x00, 0x00, 0x00, 0xd7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_82674C0 -gUnknown_82674C0: @ 82674C0 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267440 - -.global gUnknown_82674CC -gUnknown_82674CC: @ 82674CC -.byte 0xf6, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267408 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82679B8 -closeTextBox -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82679A8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267988 -closeTextBox -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267968 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267934 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267920 -closeTextBox -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267910 -closeTextBox -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82678D8 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267890 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826782C -closeTextBox -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267810 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82677E0 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82677CC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267784 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826775C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267738 -closeTextBox -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267710 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267704 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82676DC -closeTextBox -setFlag 0x03 -closeThread - -.global gUnknown_82676DC -gUnknown_82676DC: @ 82676DC -.string "{CENTER_ALIGN}Gained access to\n" -.string "{CENTER_ALIGN}{COLOR_1 YELLOW_4}Mt. Faraway{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_8267704 -gUnknown_8267704: @ 8267704 -.string "{CENTER_ALIGN}And...\0" -.align 2, 0 - -.global gUnknown_8267710 -gUnknown_8267710: @ 8267710 -.string "{CENTER_ALIGN}{ARG_NICKNAME_0} received\n" -.string "{CENTER_ALIGN}the {COLOR_1 GREEN_2}Rainbow Wing{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_8267738 -gUnknown_8267738: @ 8267738 -.string " The mirage Pokémon is at\n" -.string "its peak!\0" -.align 2, 0 - -.global gUnknown_826775C -gUnknown_826775C: @ 826775C -.string " Yes...\n" -.string "Take it to {COLOR_1 YELLOW_4}Mt. Faraway{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_8267784 -gUnknown_8267784: @ 8267784 -.string " Take it to the mountain so\n" -.string "high that its peak is obscured by clouds.\0" -.align 2, 0 - -.global gUnknown_82677CC -gUnknown_82677CC: @ 82677CC -.string " Take this wing...\0" -.align 2, 0 - -.global gUnknown_82677E0 -gUnknown_82677E0: @ 82677E0 -.string " It is the key to meeting\n" -.string "the mirage Pokémon.\0" -.align 2, 0 - -.global gUnknown_8267810 -gUnknown_8267810: @ 8267810 -.string " This {COLOR_1 GREEN_2}Rainbow Wing{END_COLOR_TEXT_1}...\0" -.align 2, 0 - -.global gUnknown_826782C -gUnknown_826782C: @ 826782C -.string "{CENTER_ALIGN}Glittering in the seven colors\n" -.string "{CENTER_ALIGN}of the rainbow{COMMA} this wing is\n" -.string "{CENTER_ALIGN}beautiful beyond description!\0" -.align 2, 0 - -.global gUnknown_8267890 -gUnknown_8267890: @ 8267890 -.string "{CENTER_ALIGN}The {COLOR_1 GREEN_2}Sunset Wing{END_COLOR_TEXT_1}...{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}transformed into the {COLOR_1 GREEN_2}Rainbow Wing{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_82678D8 -gUnknown_82678D8: @ 82678D8 -.string "{CENTER_ALIGN}The north wind swirled\n" -.string "{CENTER_ALIGN}around the {COLOR_1 GREEN_2}Sunset Wing{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_8267910 -gUnknown_8267910: @ 8267910 -.string " Kyuuuuuuuuhn!\0" -.align 2, 0 - -.global gUnknown_8267920 -gUnknown_8267920: @ 8267920 -.string " ...{WAIT_PRESS}" -.string "Step back.\0" -.align 2, 0 - -.global gUnknown_8267934 -gUnknown_8267934: @ 8267934 -.string " ...I see.{WAIT_PRESS}\n" -.string "You came seeking the mirage Pokémon...\0" -.align 2, 0 - -.global gUnknown_8267968 -gUnknown_8267968: @ 8267968 -.string " This!{WAIT_PRESS}\n" -.string "The {COLOR_1 GREEN_2}Sunset Wing{END_COLOR_TEXT_1}!\0" -.align 2, 0 - -.global gUnknown_8267988 -gUnknown_8267988: @ 8267988 -.string " I admit it.\n" -.string "You are strong.\0" -.align 2, 0 - -.global gUnknown_82679A8 -gUnknown_82679A8: @ 82679A8 -.string " I have lost...\0" -.align 2, 0 - -.global gUnknown_82679B8 -gUnknown_82679B8: @ 82679B8 -.string " Gwoooooooh!\0" -.align 2, 0 - -.global gUnknown_82679C8 -gUnknown_82679C8: @ 82679C8 -.byte 0xf6, 0x00, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267408 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8267A08 -gUnknown_8267A08: @ 8267A08 -.byte 0x00, 0x04, 0x00, 0x00, 0x23, 0x20, 0x02, 0x02 -.4byte gUnknown_82674CC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x23, 0x1a, 0x02, 0x02 -.4byte gUnknown_82679C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8267A38 -gUnknown_8267A38: @ 8267A38 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x23, 0x1d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8267A44 -gUnknown_8267A44: @ 8267A44 -.4byte gUnknown_8267434 - -.global gUnknown_8267A48 -gUnknown_8267A48: @ 8267A48 -.4byte gUnknown_82674C0 - -.global gUnknown_8267A4C -gUnknown_8267A4C: @ 8267A4C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8267A44 - -.global gUnknown_8267A74 -gUnknown_8267A74: @ 8267A74 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8267A08 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8267A38 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8267A48 - -.global gUnknown_8267A9C -gUnknown_8267A9C: @ 8267A9C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8267A4C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8267A74 - -.global gUnknown_8267AAC -gUnknown_8267AAC: @ 8267AAC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8267AB4 -gUnknown_8267AB4: @ 8267AB4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8267A9C -.4byte gUnknown_8267AAC -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8267AC8 -gUnknown_8267AC8: @ 8267AC8 -.byte 0xf6, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267B08 -.byte 0x08, 0x00, 0x00, 0x00 -.byte 0xd8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8267B08 -gUnknown_8267B08: @ 8267B08 -.string "../data/ground/ground_data_d20p01_station.c\0" -.align 2, 0 - -.global gUnknown_8267B34 -gUnknown_8267B34: @ 8267B34 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267AC8 - -.global gUnknown_8267B40 -gUnknown_8267B40: @ 8267B40 -.byte 0xf6, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267B08 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267CAC -.byte 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267C80 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x02, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x25, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8267C80 -gUnknown_8267C80: @ 8267C80 -.string "{CENTER_ALIGN}In a small cave\n" -.string "{CENTER_ALIGN}in the distant west...\0" -.align 2, 0 - -.global gUnknown_8267CAC -gUnknown_8267CAC: @ 8267CAC -.string "{CENTER_ALIGN}One day...\0" -.align 2, 0 - -.global gUnknown_8267CBC -gUnknown_8267CBC: @ 8267CBC -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267B40 - -.global gUnknown_8267CC8 -gUnknown_8267CC8: @ 8267CC8 -.byte 0xf6, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267B08 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x6b, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x01, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0c, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8268C78 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00 -.byte 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x03, 0x01, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8268C4C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8268C10 -.byte 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8268BCC -.byte 0x34, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8268BA0 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8268B4C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8268B08 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8268AC0 -.byte 0x34, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8268A88 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd8, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8268A5C -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8268A2C -.byte 0x2e, 0x15, 0x01, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8268A0C -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82689F8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82689C4 -.byte 0x56, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8268974 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826893C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8268918 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xe0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x93, 0x04, 0x0a, 0x00 -.byte 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82688E4 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82688C8 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82688A0 -.byte 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8268880 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x04, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x04, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x04, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826885C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00 -.byte 0x3c, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826883C -.byte 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8268804 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0x92, 0x04, 0x01, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x92, 0x04, 0x02, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x92, 0x04, 0x02, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x92, 0x04, 0x02, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2b, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82687F0 -.byte 0x34, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82687D0 -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x2b, 0x00, 0x00, 0x00 -.byte 0x5a, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82687C8 -.byte 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82687AC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0xc1, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x3c, 0x00, 0xc5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x01, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x27, 0x01, 0x01, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8268790 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x47, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xc1, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x01, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x27, 0x01, 0x01, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x4c, 0x00, 0x00, 0x00 -.byte 0x6d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x01, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00 -.byte 0x78, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826876C -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x25, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x78, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00 -.byte 0x3c, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x02, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0x6d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8268758 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x2e, 0x03, 0x01, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x6d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8268748 -closeTextBox -.byte 0x2b, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8268748 -gUnknown_8268748: @ 8268748 -.string " Gyaaaaaaaah!\0" -.align 2, 0 - -.global gUnknown_8268758 -gUnknown_8268758: @ 8268758 -.string " Gwaaaaaaaaaaaah!\0" -.align 2, 0 - -.global gUnknown_826876C -gUnknown_826876C: @ 826876C -.string "{CENTER_ALIGN}The most powerful of all Pokémon!\0" -.align 2, 0 - -.global gUnknown_8268790 -gUnknown_8268790: @ 8268790 -.string "{CENTER_ALIGN}Created only to fight...\0" -.align 2, 0 - -.global gUnknown_82687AC -gUnknown_82687AC: @ 82687AC -.string " I was...{WAIT_PRESS}\n" -.string "Engineered...\0" -.align 2, 0 - -.global gUnknown_82687C8 -gUnknown_82687C8: @ 82687C8 -.string " Me...?\0" -.align 2, 0 - -.global gUnknown_82687D0 -gUnknown_82687D0: @ 82687D0 -.string " Who are you?!{WAIT_PRESS}\n" -.string "Show yourself!\0" -.align 2, 0 - -.global gUnknown_82687F0 -gUnknown_82687F0: @ 82687F0 -.string " Wh-who{APOSTROPHE}s there?!\0" -.align 2, 0 - -.global gUnknown_8268804 -gUnknown_8268804: @ 8268804 -.string " ......Who...disturbs...my sleep...{WAIT_PRESS}\n" -.string "Is it{WAIT_PRESS}" -.string " you?!\n\0" -.align 2, 0 - -.global gUnknown_826883C -gUnknown_826883C: @ 826883C -.string " ............{WAIT_PRESS}" -.string "Is it{WAIT_PRESS}" -.string " \n" -.string "you...?\0" -.align 2, 0 - -.global gUnknown_826885C -gUnknown_826885C: @ 826885C -.string " ...No?{WAIT_PRESS}\n" -.string "I don{APOSTROPHE}t hear anything.\0" -.align 2, 0 - -.global gUnknown_8268880 -gUnknown_8268880: @ 8268880 -.string " I thought I heard a voice...\0" -.align 2, 0 - -.global gUnknown_82688A0 -gUnknown_82688A0: @ 82688A0 -.string " ...Just now.{WAIT_PRESS}\n" -.string "Did you hear something?\0" -.align 2, 0 - -.global gUnknown_82688C8 -gUnknown_82688C8: @ 82688C8 -.string " ...No. That{APOSTROPHE}s not it.\0" -.align 2, 0 - -.global gUnknown_82688E4 -gUnknown_82688E4: @ 82688E4 -.string " Hm?{WAIT_PRESS}" -.string " What{APOSTROPHE}s wrong?{WAIT_PRESS}\n" -.string "Are you still wiped out?\0" -.align 2, 0 - -.global gUnknown_8268918 -gUnknown_8268918: @ 8268918 -.string " Hey{COMMA} no problem.\n" -.string "Let{APOSTROPHE}s move!\0" -.align 2, 0 - -.global gUnknown_826893C -gUnknown_826893C: @ 826893C -.string " ...!{WAIT_PRESS}\n" -.string "So you did that to motivate me...{WAIT_PRESS}\n" -.string "...Thanks.\0" -.align 2, 0 - -.global gUnknown_8268974 -gUnknown_8268974: @ 8268974 -.string " That{APOSTROPHE}s the spirit!{WAIT_PRESS}\n" -.string "I think we{APOSTROPHE}re getting close.\n" -.string "Let{APOSTROPHE}s keep it going!\0" -.align 2, 0 - -.global gUnknown_82689C4 -gUnknown_82689C4: @ 82689C4 -.string " Hahaha!{WAIT_PRESS}\n" -.string "There! You{APOSTROPHE}re still feeling frisky!\0" -.align 2, 0 - -.global gUnknown_82689F8 -gUnknown_82689F8: @ 82689F8 -.string " Wroooooooaaaaar!\0" -.align 2, 0 - -.global gUnknown_8268A0C -gUnknown_8268A0C: @ 8268A0C -.string " Never...{WAIT_PRESS}\n" -.string "underestimate {ARG_NICKNAME_1}!\0" -.align 2, 0 - -.global gUnknown_8268A2C -gUnknown_8268A2C: @ 8268A2C -.string " What you{APOSTROPHE}ve seen of me\n" -.string "so far is nothing!\0" -.align 2, 0 - -.global gUnknown_8268A5C -gUnknown_8268A5C: @ 8268A5C -.string " Wh-what!{WAIT_PRESS}\n" -.string "Call me pathetic{COMMA} will you?!\0" -.align 2, 0 - -.global gUnknown_8268A88 -gUnknown_8268A88: @ 8268A88 -.string " But you{APOSTROPHE}re pathetic!{WAIT_PRESS}\n" -.string "So much for Mr. Big Shot {ARG_NICKNAME_1}!\0" -.align 2, 0 - -.global gUnknown_8268AC0 -gUnknown_8268AC0: @ 8268AC0 -.string " Heh!{WAIT_PRESS}\n" -.string "I thought a different combo would be\n" -.string "a good change of pace...\0" -.align 2, 0 - -.global gUnknown_8268B08 -gUnknown_8268B08: @ 8268B08 -.string " I didn{APOSTROPHE}t expect it to be\n" -.string "a dungeon this rough...\n" -.string "Gasp{COMMA} gasp...\0" -.align 2, 0 - -.global gUnknown_8268B4C -gUnknown_8268B4C: @ 8268B4C -.string " Yeah...{WAIT_PRESS}\n" -.string "I just happened to be swimming by in\n" -.string "the sea when I spotted this cave...\0" -.align 2, 0 - -.global gUnknown_8268BA0 -gUnknown_8268BA0: @ 8268BA0 -.string " Saying you{APOSTROPHE}d found a new\n" -.string "cave and all!\0" -.align 2, 0 - -.global gUnknown_8268BCC -gUnknown_8268BCC: @ 8268BCC -.string " Let me think--wasn{APOSTROPHE}t it you\n" -.string "who wanted to explore this place?\0" -.align 2, 0 - -.global gUnknown_8268C10 -gUnknown_8268C10: @ 8268C10 -.string " Heh! What{APOSTROPHE}s with you?\n" -.string "You{APOSTROPHE}re gonna whine about it now?\0" -.align 2, 0 - -.global gUnknown_8268C4C -gUnknown_8268C4C: @ 8268C4C -.string " Gasp{COMMA} gasp...{WAIT_PRESS}\n" -.string "This is rough going...\0" -.align 2, 0 - -.global gUnknown_8268C78 -gUnknown_8268C78: @ 8268C78 -.string " Hey!{WAIT_PRESS}\n" -.string "Get a move on!\0" -.align 2, 0 - -.global gUnknown_8268C90 -gUnknown_8268C90: @ 8268C90 -.byte 0xf6, 0x00, 0xea, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267B08 -setAnimation 2 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x4c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0x04, 0x0a, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, northeast -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x08, shortestDir, southeast -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 9 -.byte 0xdb, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x54, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x62, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x5e, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 18 -.byte 0x56, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x62, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x5e, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setAnimation 2 -.byte 0x91, 0x04, 0x0a, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x54, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x62, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x5e, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x93, 0x08, 0x0a, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x04, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x92, 0x04, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x92, 0x04, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x92, 0x04, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x12, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0x12, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x3f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0x3f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x13, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0x13, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x3f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0x3f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x12, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0x12, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x3f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0x3f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_82691D0 -gUnknown_82691D0: @ 82691D0 -.byte 0xf6, 0x00, 0x41, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267B08 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x04, 0x00, 0xe8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x50, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x88, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x50, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x02, 0x78, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0xf4, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x50, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x02, 0x88, 0xff, 0xff, 0xff, 0x78, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x06 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8269390 -gUnknown_8269390: @ 8269390 -.byte 0xf6, 0x00, 0x60, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267B08 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x12, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x40, 0x00, 0xe0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0xe0, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0xe0, 0xff, 0xe8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8269510 -gUnknown_8269510: @ 8269510 -.byte 0xf6, 0x00, 0x7b, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8267B08 -.byte 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0f -.byte 0x4c, 0x00, 0x00, 0x00, 0x3f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0xc8, 0xff, 0xc8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x28, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0xe0, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8269660 -gUnknown_8269660: @ 8269660 -.byte 0x59, 0x04, 0x00, 0x00, 0x14, 0x21, 0x02, 0x02 -.4byte gUnknown_8267CC8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x04, 0x00, 0x00 -.byte 0x18, 0x21, 0x02, 0x02 -.4byte gUnknown_8268C90 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8269690 -gUnknown_8269690: @ 8269690 -.byte 0x00, 0x00, 0x01, 0x01, 0x16, 0x12, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x01, 0x01, 0x18, 0x13, 0x02, 0x02 -.4byte gUnknown_82691D0 -.byte 0x04, 0x00, 0x01, 0x01, 0x12, 0x12, 0x02, 0x02 -.4byte gUnknown_8269390 -.byte 0x04, 0x00, 0x01, 0x01, 0x19, 0x14, 0x02, 0x02 -.4byte gUnknown_8269510 - -.global gUnknown_82696C0 -gUnknown_82696C0: @ 82696C0 -.4byte gUnknown_8267B34 - -.global gUnknown_82696C4 -gUnknown_82696C4: @ 82696C4 -.4byte gUnknown_8267CBC - -.global gUnknown_82696C8 -gUnknown_82696C8: @ 82696C8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82696C0 - -.global gUnknown_82696F0 -gUnknown_82696F0: @ 82696F0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8269660 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_8269690 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82696C4 - -.global gUnknown_8269718 -gUnknown_8269718: @ 8269718 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82696C8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_82696F0 - -.global gUnknown_8269728 -gUnknown_8269728: @ 8269728 -.byte 0x14, 0x10, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x19, 0x13, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01, 0x19, 0x13, 0x00, 0x02 -.byte 0x01, 0x01, 0x02, 0x01 - -.global gUnknown_8269740 -gUnknown_8269740: @ 8269740 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8269718 -.4byte gUnknown_8269728 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8269754 -gUnknown_8269754: @ 8269754 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8269794 -.byte 0x08, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8269794 -gUnknown_8269794: @ 8269794 -.string "../data/ground/ground_data_d21p01_station.c\0" -.align 2, 0 - -.global gUnknown_82697C0 -gUnknown_82697C0: @ 82697C0 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8269754 - -.global gUnknown_82697CC -gUnknown_82697CC: @ 82697CC -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8269794 -.byte 0x08, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x23, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826986C -gUnknown_826986C: @ 826986C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_82697CC - -.global gUnknown_8269878 -gUnknown_8269878: @ 8269878 -.byte 0xf6, 0x00, 0x22, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8269794 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xdb, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x28, 0x01, 0x05, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x01, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xdb, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8269AF8 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8269AC8 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8269A8C -.byte 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8269A58 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xe8, 0x00, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0x6a, 0x00, 0xcc, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xd0, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8269A58 -gUnknown_8269A58: @ 8269A58 -.string " If...I don{APOSTROPHE}t hurry...{WAIT_PRESS}\n" -.string "M-my little sister...\0" -.align 2, 0 - -.global gUnknown_8269A8C -gUnknown_8269A8C: @ 8269A8C -.string " I have to go...{WAIT_PRESS}\n" -.string "There{APOSTROPHE}s somewhere that I have to go...\0" -.align 2, 0 - -.global gUnknown_8269AC8 -gUnknown_8269AC8: @ 8269AC8 -.string " ............{WAIT_PRESS}" -.string "Please...\n" -.string "Please let me go...\0" -.align 2, 0 - -.global gUnknown_8269AF8 -gUnknown_8269AF8: @ 8269AF8 -.string " Urghgh...\0" -.align 2, 0 - -.global gUnknown_8269B04 -gUnknown_8269B04: @ 8269B04 -.byte 0xf6, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8269794 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 19 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 25 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 33 -.byte 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xdb, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 9 -.byte 0xe2, 0x00, 0xdb, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x0b, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x32 -.byte 0x54, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x28 -.byte 0x4c, 0x00, 0x00, 0x00, 0xaa, 0x02, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x00, 0xaa, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8269CB4 -gUnknown_8269CB4: @ 8269CB4 -.byte 0x00, 0x04, 0x00, 0x00, 0x1f, 0x20, 0x02, 0x02 -.4byte gUnknown_8269878 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x1f, 0x17, 0x02, 0x02 -.4byte gUnknown_8269B04 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8269CE4 -gUnknown_8269CE4: @ 8269CE4 -.byte 0x00, 0x00, 0x01, 0x01, 0x1f, 0x1d, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8269CF0 -gUnknown_8269CF0: @ 8269CF0 -.4byte gUnknown_82697C0 - -.global gUnknown_8269CF4 -gUnknown_8269CF4: @ 8269CF4 -.4byte gUnknown_826986C - -.global gUnknown_8269CF8 -gUnknown_8269CF8: @ 8269CF8 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8269CF0 - -.global gUnknown_8269D20 -gUnknown_8269D20: @ 8269D20 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8269CB4 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8269CE4 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8269CF4 - -.global gUnknown_8269D48 -gUnknown_8269D48: @ 8269D48 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8269CF8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_8269D20 - -.global gUnknown_8269D58 -gUnknown_8269D58: @ 8269D58 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8269D60 -gUnknown_8269D60: @ 8269D60 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_8269D48 -.4byte gUnknown_8269D58 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_8269D74 -gUnknown_8269D74: @ 8269D74 -.byte 0xf6, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8269DB4 -.byte 0x08, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8269DB4 -gUnknown_8269DB4: @ 8269DB4 -.string "../data/ground/ground_data_d22p01_station.c\0" -.align 2, 0 - -.global gUnknown_8269DE0 -gUnknown_8269DE0: @ 8269DE0 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8269D74 - -.global gUnknown_8269DEC -gUnknown_8269DEC: @ 8269DEC -.byte 0xf6, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8269DB4 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x28, 0x01, 0x01, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8269E6C -gUnknown_8269E6C: @ 8269E6C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8269DEC - -.global gUnknown_8269E78 -gUnknown_8269E78: @ 8269E78 -.byte 0xf6, 0x00, 0x22, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8269DB4 -.byte 0xe3, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0xa5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xb4 -.byte 0x56, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x56, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0x56, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x05 -.byte 0xe3, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_8269F38 -gUnknown_8269F38: @ 8269F38 -.byte 0xf6, 0x00, 0x31, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8269DB4 -.byte 0x59, 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x56, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0x56, 0x00, 0x00, 0x00 -.byte 0xa4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826A028 -gUnknown_826A028: @ 826A028 -.byte 0xf6, 0x00, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8269DB4 -.byte 0x59, 0x00, 0x00, 0x00 -.byte 0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0xa4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826A108 -gUnknown_826A108: @ 826A108 -.byte 0xf6, 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8269DB4 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826A3F8 -.byte 0x34, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826A3E4 -.byte 0x34, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826A3BC -closeTextBox -.byte 0x45, 0x00, 0x14, 0x00 -.byte 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x22, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x0d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826A394 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826A358 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x6a, 0x00, 0x00, 0x01 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, west -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00 -.byte 0xf4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x08 -.byte 0xe3, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x09 -.byte 0xe4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00 -.byte 0x38, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_826A358 -gUnknown_826A358: @ 826A358 -.string " My wing is still damaged\n" -.string "a little{COMMA} but...{WAIT_PRESS}\n" -.string "I can go.\0" -.align 2, 0 - -.global gUnknown_826A394 -gUnknown_826A394: @ 826A394 -.string " ............{WAIT_PRESS}\n" -.string "Yes{COMMA} I{APOSTROPHE}ll be fine.\0" -.align 2, 0 - -.global gUnknown_826A3BC -gUnknown_826A3BC: @ 826A3BC -.string " ...Did you maybe...{WAIT_PRESS}\n" -.string "come to save me?\0" -.align 2, 0 - -.global gUnknown_826A3E4 -gUnknown_826A3E4: @ 826A3E4 -.string " ...Y-you are...?\0" -.align 2, 0 - -.global gUnknown_826A3F8 -gUnknown_826A3F8: @ 826A3F8 -.string " ............\0" -.align 2, 0 - -.global gUnknown_826A408 -gUnknown_826A408: @ 826A408 -.byte 0xf6, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8269DB4 -.byte 0x54, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, CCW, east -.byte 0xdb, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setAnimation 22 -.byte 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00 -.byte 0x38, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_826A4B8 -gUnknown_826A4B8: @ 826A4B8 -.byte 0x00, 0x04, 0x00, 0x00 -.byte 0x19, 0x21, 0x02, 0x02 -.4byte gUnknown_826A108 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x00, 0x00, 0x19, 0x18, 0x02, 0x02 -.4byte gUnknown_826A408 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826A4E8 -gUnknown_826A4E8: @ 826A4E8 -.byte 0x00, 0x00, 0x01, 0x01, 0x18, 0x1b, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x01, 0x1c, 0x18, 0x00, 0x00 -.4byte gUnknown_8269E78 -.byte 0x04, 0x00, 0x01, 0x01, 0x1d, 0x17, 0x00, 0x02 -.4byte gUnknown_8269F38 -.byte 0x04, 0x00, 0x01, 0x01, 0x19, 0x17, 0x00, 0x02 -.4byte gUnknown_826A028 - -.global gUnknown_826A518 -gUnknown_826A518: @ 826A518 -.4byte gUnknown_8269DE0 - -.global gUnknown_826A51C -gUnknown_826A51C: @ 826A51C -.4byte gUnknown_8269E6C - -.global gUnknown_826A520 -gUnknown_826A520: @ 826A520 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826A518 - -.global gUnknown_826A548 -gUnknown_826A548: @ 826A548 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_826A4B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.4byte gUnknown_826A4E8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826A51C - -.global gUnknown_826A570 -gUnknown_826A570: @ 826A570 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826A520 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826A548 - -.global gUnknown_826A580 -gUnknown_826A580: @ 826A580 -.byte 0x1d, 0x18, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x19, 0x1b, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01 - -.global gUnknown_826A590 -gUnknown_826A590: @ 826A590 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_826A570 -.4byte gUnknown_826A580 -.string "pksdir0\0" -.align 2, 0 - -.global gUnknown_826A5A4 -gUnknown_826A5A4: @ 826A5A4 -.byte 0xf6, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826A5E4 -.byte 0x08, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826A5E4 -gUnknown_826A5E4: @ 826A5E4 -.string "../data/ground/ground_data_d23p01_station.c\0" -.align 2, 0 - -.global gUnknown_826A610 -gUnknown_826A610: @ 826A610 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826A5A4 - -.global gUnknown_826A61C -gUnknown_826A61C: @ 826A61C -.byte 0xf6, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826A5E4 -.byte 0x08, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x48, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x01, 0x00, 0x3c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826A6AC -gUnknown_826A6AC: @ 826A6AC -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826A61C - -.global gUnknown_826A6B8 -gUnknown_826A6B8: @ 826A6B8 -.byte 0xf6, 0x00, 0x25, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826A5E4 -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x02, 0x26, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826A818 -.byte 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826A7D8 -closeTextBox -.byte 0xe4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_826A7D8 -gUnknown_826A7D8: @ 826A7D8 -.string " Look{COMMA} there{APOSTROPHE}s our Pokémon.\n" -.string "We can get this rescue done.\0" -.align 2, 0 - -.global gUnknown_826A818 -gUnknown_826A818: @ 826A818 -.string " Look. Over there.\n" -.string "Let{APOSTROPHE}s get this rescue done.\0" -.align 2, 0 - -.global gUnknown_826A84C -gUnknown_826A84C: @ 826A84C -.byte 0xf6, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826A5E4 -setAnimation 2 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northwest -closeThread - -.global gUnknown_826A8DC -gUnknown_826A8DC: @ 826A8DC -.byte 0xf6, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826A5E4 -setAnimation 2 -.byte 0x2d, 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_826A91C -gUnknown_826A91C: @ 826A91C -.byte 0x00, 0x04, 0x00, 0x00, 0x14, 0x22, 0x02, 0x02 -.4byte gUnknown_826A6B8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x18, 0x22, 0x02, 0x02 -.4byte gUnknown_826A84C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x16, 0x11, 0x00, 0x02 -.4byte gUnknown_826A8DC -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826A964 -gUnknown_826A964: @ 826A964 -.byte 0x00, 0x00, 0x01, 0x01, 0x16, 0x14, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826A970 -gUnknown_826A970: @ 826A970 -.4byte gUnknown_826A610 - -.global gUnknown_826A974 -gUnknown_826A974: @ 826A974 -.4byte gUnknown_826A6AC - -.global gUnknown_826A978 -gUnknown_826A978: @ 826A978 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826A970 - -.global gUnknown_826A9A0 -gUnknown_826A9A0: @ 826A9A0 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_826A91C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826A964 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826A974 - -.global gUnknown_826A9C8 -gUnknown_826A9C8: @ 826A9C8 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826A978 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826A9A0 - -.global gUnknown_826A9D8 -gUnknown_826A9D8: @ 826A9D8 -.byte 0x14, 0x17, 0x02, 0x02 -.byte 0x01, 0x01, 0x01, 0x00, 0x14, 0x13, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x18, 0x17, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x18, 0x13, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00 - -.global gUnknown_826A9F8 -gUnknown_826A9F8: @ 826A9F8 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_826A9C8 -.4byte gUnknown_826A9D8 -.string "pksdir0\0" -.align 2, 0 -@ Murky Cave Depths - -.global gUnknown_826AA0C -gUnknown_826AA0C: @ 826AA0C -.byte 0xf6, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826AA4C -.byte 0x08, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x63, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826AA4C -gUnknown_826AA4C: @ 826AA4C -.string "../data/ground/ground_data_d24p01_station.c\0" -.align 2, 0 - -.global gUnknown_826AA78 -gUnknown_826AA78: @ 826AA78 -.byte 0x94, 0x01, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826AA0C - -.global gUnknown_826AA84 -gUnknown_826AA84: @ 826AA84 -.byte 0xf6, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826AA4C -.byte 0x08, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x01, 0x5a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826AB24 -gUnknown_826AB24: @ 826AB24 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826AA84 - -.global gUnknown_826AB30 -gUnknown_826AB30: @ 826AB30 -.byte 0xf6, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826AA4C -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x01 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x89, 0x48, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826ABB0 -gUnknown_826ABB0: @ 826ABB0 -.byte 0xf6, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826AA4C -setAnimation 2 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x09, 0x03, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0x89, 0x78, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x03, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BE0C -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BDCC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BDA8 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x04 -.byte 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BD6C -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x5c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BD30 -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xf6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x27, 0x00, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xf6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x27, 0x00, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xdb, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xfa, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x1e, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x27, 0x00, 0x05, 0x00, 0x1e, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x78 -.byte 0x2e, 0x15, 0x02, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BD20 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BD04 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BCDC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BCA8 -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xcf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BC70 -closeTextBox -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BC4C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x91, 0x04, 0x0a, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x05 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, northeast -.byte 0xdb, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, north -.byte 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BC10 -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BBFC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x3c -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BBE0 -closeTextBox -.byte 0xdb, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BBC0 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x08, CW, east -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x08, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x91, 0x08, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BB90 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BB80 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BB60 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BB24 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BAEC -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BAC4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x2e, 0x15, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BA94 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BA70 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BA3C -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826BA24 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826B9F8 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826B9CC -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826B99C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826B978 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826B93C -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826B92C -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xf6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x04 -.byte 0x27, 0x00, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x4c, 0x00, 0x00, 0x00, 0xf6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x28, 0x01, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x27, 0x00, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x15, 0x02, 0x00, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826B900 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -rotate 0x04, shortestDir, southeast -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826B8CC -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826B8C4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x1e -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826B8A8 -closeTextBox -.byte 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x80, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xd9, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826B888 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826B860 -.byte 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826B850 -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x07 -.byte 0xe3, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826B80C -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826B7CC -closeTextBox -.byte 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826B7BC -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -pause 0x0a -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826B798 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826B760 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -setFlag 0x03 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826B760 -gUnknown_826B760: @ 826B760 -.string "{CENTER_ALIGN}Please navigate carefully\n" -.string "{CENTER_ALIGN}through {ARG_NICKNAME_2}{APOSTROPHE}s emotions.\0" -.align 2, 0 - -.global gUnknown_826B798 -gUnknown_826B798: @ 826B798 -.string "{CENTER_ALIGN}{ARG_NICKNAME_0} will enter\n" -.string "{CENTER_ALIGN}{ARG_NICKNAME_2}{APOSTROPHE}s heart.\0" -.align 2, 0 - -.global gUnknown_826B7BC -gUnknown_826B7BC: @ 826B7BC -.string " Kekeh?!\n" -.string "What?!\0" -.align 2, 0 - -.global gUnknown_826B7CC -gUnknown_826B7CC: @ 826B7CC -.string "{CENTER_ALIGN}You will probably never show\n" -.string "{CENTER_ALIGN}the truth within your heart.\0" -.align 2, 0 - -.global gUnknown_826B80C -gUnknown_826B80C: @ 826B80C -.string "{CENTER_ALIGN}{ARG_NICKNAME_2}.{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}Your heart is interwoven\n" -.string "{CENTER_ALIGN}with conflicting emotions.\0" -.align 2, 0 - -.global gUnknown_826B850 -gUnknown_826B850: @ 826B850 -.string " Let me do it!\0" -.align 2, 0 - -.global gUnknown_826B860 -gUnknown_826B860: @ 826B860 -.string " Why is someone else\n" -.string "speaking for me?!\0" -.align 2, 0 - -.global gUnknown_826B888 -gUnknown_826B888: @ 826B888 -.string " Gegegeh!\n" -.string "What are you saying?!\0" -.align 2, 0 - -.global gUnknown_826B8A8 -gUnknown_826B8A8: @ 826B8A8 -.string "{CENTER_ALIGN}{ARG_NICKNAME_0}.\n" -.string "{CENTER_ALIGN}You will answer.\0" -.align 2, 0 - -.global gUnknown_826B8C4 -gUnknown_826B8C4: @ 826B8C4 -.string "{CENTER_ALIGN}{ARG_NICKNAME_0}.\0" -.align 2, 0 - -.global gUnknown_826B8CC -gUnknown_826B8CC: @ 826B8CC -.string "{CENTER_ALIGN}{ARG_NICKNAME_2}{COMMA} you will not\n" -.string "{CENTER_ALIGN}be doing the answering...\0" -.align 2, 0 - -.global gUnknown_826B900 -gUnknown_826B900: @ 826B900 -.string " Gegeh?! What the...?!{WAIT_PRESS}\n" -.string "I can{APOSTROPHE}t move!\0" -.align 2, 0 - -.global gUnknown_826B92C -gUnknown_826B92C: @ 826B92C -.string "{CENTER_ALIGN}However...\0" -.align 2, 0 - -.global gUnknown_826B93C -gUnknown_826B93C: @ 826B93C -.string "{CENTER_ALIGN}All that I need is for some\n" -.string "{CENTER_ALIGN}questions to be answered.\0" -.align 2, 0 - -.global gUnknown_826B978 -gUnknown_826B978: @ 826B978 -.string "{CENTER_ALIGN}Oh{COMMA} no.\n" -.string "{CENTER_ALIGN}Nothing so barbaric.\0" -.align 2, 0 - -.global gUnknown_826B99C -gUnknown_826B99C: @ 826B99C -.string " What{COMMA} I have to fight some\n" -.string "boss creature?\0" -.align 2, 0 - -.global gUnknown_826B9CC -gUnknown_826B9CC: @ 826B9CC -.string " Kekeh? What?{WAIT_PRESS}\n" -.string "You{APOSTROPHE}re going to test me?\0" -.align 2, 0 - -.global gUnknown_826B9F8 -gUnknown_826B9F8: @ 826B9F8 -.string "{CENTER_ALIGN}You must bare your\n" -.string "{CENTER_ALIGN}true feelings to me.\0" -.align 2, 0 - -.global gUnknown_826BA24 -gUnknown_826BA24: @ 826BA24 -.string "{CENTER_ALIGN}I must evaluate you.\0" -.align 2, 0 - -.global gUnknown_826BA3C -gUnknown_826BA3C: @ 826BA3C -.string "{CENTER_ALIGN}I must first know if you\n" -.string "{CENTER_ALIGN}have earned the right.\0" -.align 2, 0 - -.global gUnknown_826BA70 -gUnknown_826BA70: @ 826BA70 -.string "{CENTER_ALIGN}I cannot allow that right away.\0" -.align 2, 0 - -.global gUnknown_826BA94 -gUnknown_826BA94: @ 826BA94 -.string " Kekeh! Exactly!{WAIT_PRESS}\n" -.string "Please lift the curse now!\0" -.align 2, 0 - -.global gUnknown_826BAC4 -gUnknown_826BAC4: @ 826BAC4 -.string "{CENTER_ALIGN}The curse...\n" -.string "{CENTER_ALIGN}It is the one on {ARG_NICKNAME_3}?\0" -.align 2, 0 - -.global gUnknown_826BAEC -gUnknown_826BAEC: @ 826BAEC -.string "{CENTER_ALIGN}Just now{COMMA} a key was\n" -.string "{CENTER_ALIGN}inserted to break a curse.\0" -.align 2, 0 - -.global gUnknown_826BB24 -gUnknown_826BB24: @ 826BB24 -.string "{CENTER_ALIGN}You have nothing to fear from me.\n" -.string "{CENTER_ALIGN}I mean you no harm.\0" -.align 2, 0 - -.global gUnknown_826BB60 -gUnknown_826BB60: @ 826BB60 -.string "{CENTER_ALIGN}I am the\n" -.string "{CENTER_ALIGN}judge of darkness.\0" -.align 2, 0 - -.global gUnknown_826BB80 -gUnknown_826BB80: @ 826BB80 -.string " Who are you?\0" -.align 2, 0 - -.global gUnknown_826BB90 -gUnknown_826BB90: @ 826BB90 -.string " What? What?!\n" -.string "Where is that voice coming from?\0" -.align 2, 0 - -.global gUnknown_826BBC0 -gUnknown_826BBC0: @ 826BBC0 -.string "{CENTER_ALIGN}Welcome to\n" -.string "{CENTER_ALIGN}the Murky Cave!\0" -.align 2, 0 - -.global gUnknown_826BBE0 -gUnknown_826BBE0: @ 826BBE0 -.string "{CENTER_ALIGN}...W...e...lc...ome...\0" -.align 2, 0 - -.global gUnknown_826BBFC -gUnknown_826BBFC: @ 826BBFC -.string "{CENTER_ALIGN}...Wel...co...\0" -.align 2, 0 - -.global gUnknown_826BC10 -gUnknown_826BC10: @ 826BC10 -.string " That{APOSTROPHE}s odd...\n" -.string "I could{APOSTROPHE}ve sworn I heard something...\0" -.align 2, 0 - -.global gUnknown_826BC4C -gUnknown_826BC4C: @ 826BC4C -.string " Kekeh!\n" -.string "Did you just say something?\0" -.align 2, 0 - -.global gUnknown_826BC70 -gUnknown_826BC70: @ 826BC70 -.string " ............?{WAIT_PRESS}\n" -.string "Huh? I thought I heard something...\0" -.align 2, 0 - -.global gUnknown_826BCA8 -gUnknown_826BCA8: @ 826BCA8 -.string " Kekeh!\n" -.string "What{APOSTROPHE}s this about?\n" -.string "Nothing{APOSTROPHE}s happening?\0" -.align 2, 0 - -.global gUnknown_826BCDC -gUnknown_826BCDC: @ 826BCDC -.string " ....................................\0" -.align 2, 0 - -.global gUnknown_826BD04 -gUnknown_826BD04: @ 826BD04 -.string " ........................\0" -.align 2, 0 - -.global gUnknown_826BD20 -gUnknown_826BD20: @ 826BD20 -.string " ............\0" -.align 2, 0 - -.global gUnknown_826BD30 -gUnknown_826BD30: @ 826BD30 -.string "{CENTER_ALIGN}{ARG_NICKNAME_2} placed the {COLOR_1 GREEN_2}9-Tail Crest{END_COLOR_TEXT_1}\n" -.string "{CENTER_ALIGN}in the hollow spot.\0" -.align 2, 0 - -.global gUnknown_826BD6C -gUnknown_826BD6C: @ 826BD6C -.string " There{APOSTROPHE}s a hollow spot.\n" -.string "I guess that stone goes in there.\0" -.align 2, 0 - -.global gUnknown_826BDA8 -gUnknown_826BDA8: @ 826BDA8 -.string " Oh{COMMA} look!{WAIT_PRESS}\n" -.string "There{APOSTROPHE}s a dais!\0" -.align 2, 0 - -.global gUnknown_826BDCC -gUnknown_826BDCC: @ 826BDCC -.string " This is it?\n" -.string "This is the deepest floor of the\n" -.string "{COLOR_1 YELLOW_4}Murky Cave{END_COLOR_TEXT_1}?\0" -.align 2, 0 - -.global gUnknown_826BE0C -gUnknown_826BE0C: @ 826BE0C -.string " Kekeh!\n" -.string "We{APOSTROPHE}re here at last!\0" -.align 2, 0 - -.global gUnknown_826BE2C -gUnknown_826BE2C: @ 826BE2C -.byte 0xf6, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826AA4C -setAnimation 2 -loadData 7 2 0 -.byte 0x89, 0x70, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -waitFlag 7 -.byte 0x89, 0x18, 0x80, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 5 -waitFlag 7 -executeScript 0x28 -setFlag 5 -waitFlag 7 -.byte 0x6b, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -waitFlag 7 -.byte 0x89, 0x08, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 5 -waitFlag 7 -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 5 -waitFlag 7 -executeScript 0x28 -executeScript 0x21 -setFlag 5 -waitFlag 7 -rotate 0x04, shortestDir, southwest -setFlag 5 -waitFlag 7 -rotate 0x04, shortestDir, north -setFlag 5 -waitFlag 7 -executeScript 0x21 -.byte 0x62, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -waitFlag 7 -.byte 0x4c, 0x00, 0x00, 0x00, 0x6f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x00, 0x00, 0x00, 0xa2, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x14 -.byte 0x4c, 0x00, 0x00, 0x00, 0xd1, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -executeScript 0x2B -setAnimation 9 -setFlag 5 -waitFlag 7 -setAnimation 2 -setFlag 5 -waitFlag 7 -executeScript 0x2B -setAnimation 9 -pause 0xF -setAnimation 2 -pause 0x14 -setAnimation 9 -setFlag 5 -waitFlag 7 -setAnimation 2 -setFlag 5 -waitFlag 7 -closeThread - -.global gUnknown_826C1AC -gUnknown_826C1AC: @ 826C1AC -.byte 0xf6, 0x00, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826AA4C -changeTileset 0xDC -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -fadeColorOut 1 5 0x5A 0x00ffffff -waitFlag 3 -.byte 0x23, 0x01, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x3C -endFuncAndScript - -.global gUnknown_826C22C -gUnknown_826C22C: @ 826C22C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826C1AC - -.global gUnknown_826C238 -gUnknown_826C238: @ 826C238 -.byte 0xf6, 0x00, 0x46, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826AA4C -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -waitFlag 4 -closeThread - -.global gUnknown_826C278 -gUnknown_826C278: @ 826C278 -.byte 0xf6, 0x00, 0x4d, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826AA4C -setAnimation 2 -loadData 7 0 0 -loadData 9 4 0x21 -loadData 9 3 0x52 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x50 -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826D1CC -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826D1A8 -closeTextBox -pause 0x3C -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826D180 -closeTextBox -pause 0xA -setFlag 7 -waitFlag 5 -rotate 4 shortestDir south -selectFace bottomR 2 0x43 -PicNameTextBox 2 gUnknown_826D174 -closeTextBox -pause 0xA -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826D124 -closeTextBox -pause 0xA -PicNameTextBox 2 gUnknown_826D10C -closeTextBox -pause 0x1E -playSound 0x29A -setFlag 7 -waitFlag 5 -pause 0x78 -setFlag 7 -.byte 0x6a, 0x00, 0x00, 0x01, 0xe8, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -rotate 4 shortestDir southeast -pause 0x14 -PicNameTextBox 2 gUnknown_826D0E8 -closeTextBox -fadeInMusic 0x3C 0x18 -pause 0x3C -PicNameTextBox 2 gUnknown_826D0C0 -PicNameTextBox 2 gUnknown_826D090 -PicNameTextBox 2 gUnknown_826D04C -PicNameTextBox 2 gUnknown_826D004 -closeTextBox -pause 0x1E -selectFace previousLoc 2 0x44 -PicNameTextBox 2 gUnknown_826CFE8 -PicNameTextBox 2 gUnknown_826CFBC -PicNameTextBox 2 gUnknown_826CF84 -PicNameTextBox 2 gUnknown_826CF1C -PicNameTextBox 2 gUnknown_826CEF0 -closeTextBox -pause 0x1E -selectFace previousLoc 2 0x45 -PicNameTextBox 2 gUnknown_826CED0 -PicNameTextBox 2 gUnknown_826CE88 -PicNameTextBox 2 gUnknown_826CE70 -PicNameTextBox 2 gUnknown_826CE30 -PicNameTextBox 2 gUnknown_826CE0C -PicNameTextBox 2 gUnknown_826CDBC -closeTextBox -pause 0x78 -pushR14 -setFlag 0xB -playSound 0x2AE -pause 0xF -playSound 0x2AE -pause 0xF -playSound 0x2AE -pause 0xF -playSound 0x2AE -pause 0xF -playSound 0x2AE -pause 0xF -playSound 0x2AE -pause 0xF -playSound 0x2AE -pause 0xF -playSound 0x2AE -pause 0xF -playSound 0x277 -waitFlag 5 -setFlag 7 -.byte 0xe8, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0xF -.byte 0x33, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826CD88 -closeTextBox -pause 0xA -playSound 0x1FA -fadeColorIn 1 5 0x1E 0x00ffffff -pause 0x5A -.byte 0x0c, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -fadeColorOut 1 5 0x1E 0x00ffffff -pause 0x1E -playSound 0x1D1 -setFlag 7 -waitFlag 5 -rotate 4 shortestDir northeast -selectFace previousLoc 2 0x46 -PicNameTextBox 2 gUnknown_826CD7C -closeTextBox -pause 0xA -fadeInMusic 0x3C 5 -setFlag 7 -pause 0x1E -setFlag 10 -waitFlag 5 -PicNameTextBox 5 gUnknown_826CD68 -closeTextBox -pause 0xA -setFlag 7 -rotate 4 shortestDir southeast -waitFlag 5 -selectFace insetTopR 2 0x44 -PicNameTextBox 2 gUnknown_826CD60 -PicNameTextBox 2 gUnknown_826CD2C -closeTextBox -pause 0xA -PicNameTextBox 5 gUnknown_826CD10 -PicNameTextBox 5 gUnknown_826CCDC -PicNameTextBox 5 gUnknown_826CC8C -PicNameTextBox 5 gUnknown_826CC48 -closeTextBox -pause 0xA -setFlag 7 -waitFlag 5 -PicNameTextBox 2 gUnknown_826CC30 -closeTextBox -pause 0xA -PicNameTextBox 5 gUnknown_826CBEC -PicNameTextBox 5 gUnknown_826CBB4 -PicNameTextBox 5 gUnknown_826CB8C -closeTextBox -pause 0xA -PicNameTextBox 2 gUnknown_826CB64 -PicNameTextBox 2 gUnknown_826CB38 -closeTextBox -pause 0x1E -setFlag 3 -closeThread - -.global gUnknown_826CB38 -gUnknown_826CB38: @ 826CB38 -.string " {ARG_NICKNAME_3} is back.{WAIT_PRESS}\n" -.string "That{APOSTROPHE}s enough for me...\0" -.align 2, 0 - -.global gUnknown_826CB64 -gUnknown_826CB64: @ 826CB64 -.string " ............{WAIT_PRESS}" -.string "That doesn{APOSTROPHE}t matter.\0" -.align 2, 0 - -.global gUnknown_826CB8C -gUnknown_826CB8C: @ 826CB8C -.string " {ARG_NICKNAME_3} will have no\n" -.string "recollection of that.\0" -.align 2, 0 - -.global gUnknown_826CBB4 -gUnknown_826CBB4: @ 826CBB4 -.string " However...{WAIT_PRESS}\n" -.string "That you were her partner in the past...\0" -.align 2, 0 - -.global gUnknown_826CBEC -gUnknown_826CBEC: @ 826CBEC -.string " You may be reassured.\n" -.string "{ARG_NICKNAME_3} has returned.{WAIT_PRESS}\n" -.string "She will soon awaken.\0" -.align 2, 0 - -.global gUnknown_826CC30 -gUnknown_826CC30: @ 826CC30 -.string " Then{COMMA} Gardevoir...?\0" -.align 2, 0 - -.global gUnknown_826CC48 -gUnknown_826CC48: @ 826CC48 -.string " The final key to break the\n" -.string "curse...{WAIT_PRESS}\n" -.string "was your sense of gratitude.\0" -.align 2, 0 - -.global gUnknown_826CC8C -gUnknown_826CC8C: @ 826CC8C -.string " When your heart gained\n" -.string "what it had been missing...\n" -.string "The curse was shattered.\0" -.align 2, 0 - -.global gUnknown_826CCDC -gUnknown_826CCDC: @ 826CCDC -.string " I cast my curse{COMMA} enraged at\n" -.string "your twisted heart.\0" -.align 2, 0 - -.global gUnknown_826CD10 -gUnknown_826CD10: @ 826CD10 -.string " The curse has been broken.\0" -.align 2, 0 - -.global gUnknown_826CD2C -gUnknown_826CD2C: @ 826CD2C -.string " ...But...\n" -.string "I don{APOSTROPHE}t know what you{APOSTROPHE}re saying...\0" -.align 2, 0 - -.global gUnknown_826CD60 -gUnknown_826CD60: @ 826CD60 -.string " N-{ARG_NICKNAME_5}!\0" -.align 2, 0 - -.global gUnknown_826CD68 -gUnknown_826CD68: @ 826CD68 -.string " It worked{COMMA} {ARG_NICKNAME_2}!\0" -.align 2, 0 - -.global gUnknown_826CD7C -gUnknown_826CD7C: @ 826CD7C -.string " Ga-{ARG_NICKNAME_3}!\0" -.align 2, 0 - -.global gUnknown_826CD88 -gUnknown_826CD88: @ 826CD88 -.string "{CENTER_ALIGN}The lock bearing the curse...{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}It has opened.\0" -.align 2, 0 - -.global gUnknown_826CDBC -gUnknown_826CDBC: @ 826CDBC -.string " What I lacked...{WAIT_PRESS}\n" -.string "It was something for the others...{WAIT_PRESS}\n" -.string "A sense of gratitude.\0" -.align 2, 0 - -.global gUnknown_826CE0C -gUnknown_826CE0C: @ 826CE0C -.string " I finally know what I was\n" -.string "missing.\0" -.align 2, 0 - -.global gUnknown_826CE30 -gUnknown_826CE30: @ 826CE30 -.string " {COLOR_1 CYAN}Team {ARG_TEAM_NAME}{END_COLOR_TEXT_1} put up\n" -.string "with my selfishness and brought me here.\0" -.align 2, 0 - -.global gUnknown_826CE70 -gUnknown_826CE70: @ 826CE70 -.string " It{APOSTROPHE}s not just {ARG_NICKNAME_3}.\0" -.align 2, 0 - -.global gUnknown_826CE88 -gUnknown_826CE88: @ 826CE88 -.string " I lived carefree all this\n" -.string "time...{WAIT_PRESS}\n" -.string "I realize now how selfish I was.\0" -.align 2, 0 - -.global gUnknown_826CED0 -gUnknown_826CED0: @ 826CED0 -.string " But I...\n" -.string "How selfish I was.\0" -.align 2, 0 - -.global gUnknown_826CEF0 -gUnknown_826CEF0: @ 826CEF0 -.string " {ARG_NICKNAME_3} kept thinking\n" -.string "about someone like me.\0" -.align 2, 0 - -.global gUnknown_826CF1C -gUnknown_826CF1C: @ 826CF1C -.string " That she considered me an\n" -.string "irreplaceable friend{COMMA} and that she still\n" -.string "believed we would meet again...\0" -.align 2, 0 - -.global gUnknown_826CF84 -gUnknown_826CF84: @ 826CF84 -.string " One night...{WAIT_PRESS}\n" -.string "In {ARG_NICKNAME_4}{APOSTROPHE}s dream{COMMA} {ARG_NICKNAME_3}\n" -.string "said this...\0" -.align 2, 0 - -.global gUnknown_826CFBC -gUnknown_826CFBC: @ 826CFBC -.string " But {ARG_NICKNAME_3}...{WAIT_PRESS}\n" -.string "She never forgot about me.\0" -.align 2, 0 - -.global gUnknown_826CFE8 -gUnknown_826CFE8: @ 826CFE8 -.string " Many long years passed...\0" -.align 2, 0 - -.global gUnknown_826D004 -gUnknown_826D004: @ 826D004 -.string " It didn{APOSTROPHE}t take long for me\n" -.string "to forget about the curse and about\n" -.string "{ARG_NICKNAME_3}.\0" -.align 2, 0 - -.global gUnknown_826D04C -gUnknown_826D04C: @ 826D04C -.string " I had to get away{COMMA} no matter\n" -.string "what...{WAIT_PRESS}\n" -.string "That{APOSTROPHE}s what I thought.\0" -.align 2, 0 - -.global gUnknown_826D090 -gUnknown_826D090: @ 826D090 -.string " I was afraid that the curse\n" -.string "would fall on me.\0" -.align 2, 0 - -.global gUnknown_826D0C0 -gUnknown_826D0C0: @ 826D0C0 -.string " It{APOSTROPHE}s true.\n" -.string "I abandoned {ARG_NICKNAME_3} and ran.\0" -.align 2, 0 - -.global gUnknown_826D0E8 -gUnknown_826D0E8: @ 826D0E8 -.string " Let me...{WAIT_PRESS}\n" -.string "Let me say something!\0" -.align 2, 0 - -.global gUnknown_826D10C -gUnknown_826D10C: @ 826D10C -.string " Wait!\n" -.string "Wait a minute!\0" -.align 2, 0 - -.global gUnknown_826D124 -gUnknown_826D124: @ 826D124 -.string "{CENTER_ALIGN}It is most regrettable{COMMA} but\n" -.string "{CENTER_ALIGN}the curse on {ARG_NICKNAME_3}\n" -.string "{CENTER_ALIGN}will last all eternity...\0" -.align 2, 0 - -.global gUnknown_826D174 -gUnknown_826D174: @ 826D174 -.string " W-wait...\0" -.align 2, 0 - -.global gUnknown_826D180 -gUnknown_826D180: @ 826D180 -.string "{CENTER_ALIGN}The curse...{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}could not be lifted.\0" -.align 2, 0 - -.global gUnknown_826D1A8 -gUnknown_826D1A8: @ 826D1A8 -.string "{CENTER_ALIGN}I will now render\n" -.string "{CENTER_ALIGN}my judgment.\0" -.align 2, 0 - -.global gUnknown_826D1CC -gUnknown_826D1CC: @ 826D1CC -.string "{CENTER_ALIGN}{ARG_NICKNAME_2}.\n" -.string "{CENTER_ALIGN}Whether you have the right\n" -.string "{CENTER_ALIGN}to break the curse or not...\0" -.align 2, 0 - -.global gUnknown_826D210 -gUnknown_826D210: @ 826D210 -.byte 0xf6, 0x00, 0xe7, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826AA4C -setAnimation 2 -loadData 7 2 0 -waitFlag 7 -setAnimation 9 -pause 0xF -setAnimation 2 -pause 0x14 -setAnimation 9 -setFlag 5 -waitFlag 7 -.byte 0x56, 0x00, 0x00, 0x00, 0xa2, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x56, 0x00, 0x00, 0x00, 0xa3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 0x2D -setAnimation 2 -setFlag 5 -waitFlag 7 -.byte 0x89, 0x20, 0x80, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -waitFlag 7 -pause 0xC -executeScript LOOK_AROUND_FUNC -waitFlag 7 -executeScript NOTICE_FUNC -setFlag 5 -waitFlag 7 -.byte 0x89, 0x10, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -waitFlag 7 -rotate 4 shortestDir south -playSound 0x1d1 -executeScript NOTICE_FUNC -setFlag 5 -waitFlag 7 -rotate 4 shortestDir north -setFlag 5 -waitFlag 7 -closeThread - -.global gUnknown_826D470 -gUnknown_826D470: @ 826D470 -.byte 0xf6, 0x00, 0x10, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826AA4C -waitFlag 0xB -.byte 0x56, 0x00, 0x00, 0x00, 0xa4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 5 -closeThreadRemoveObject - -.global gUnknown_826D4D0 -gUnknown_826D4D0: @ 826D4D0 -.byte 0xf6, 0x00, 0x19, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826AA4C -setAnimation 22 -loadData 7 3 0 -closeThread - -.global gUnknown_826D510 -gUnknown_826D510: @ 826D510 -.byte 0xf6, 0x00, 0x20, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826AA4C -setAnimation 2 -loadData 7 5 0 -waitFlag 0xA -gridMoveTo 0xB3 2 -setFlag 5 -waitFlag 0xA -closeThread - -.global gUnknown_826D590 -gUnknown_826D590: @ 826D590 -.byte 0x00, 0x04, 0x00, 0x00, 0x17, 0x2f, 0x00, 0x02 -.4byte gUnknown_826ABB0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x04, 0x00, 0x00, 0x1d, 0x2d, 0x00, 0x02 -.4byte gUnknown_826BE2C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826D5C0 -gUnknown_826D5C0: @ 826D5C0 -.byte 0x00, 0x04, 0x00, 0x00, 0x19, 0x13, 0x02, 0x02 -.4byte gUnknown_826C278 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x04, 0x00, 0x00 -.byte 0x19, 0x17, 0x02, 0x02 -.4byte gUnknown_826D210 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826D5F0 -gUnknown_826D5F0: @ 826D5F0 -.byte 0x52, 0x00, 0x00, 0x00, 0x19, 0x10, 0x02, 0x02 -.4byte gUnknown_826D4D0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x07, 0x00, 0x00, 0x19, 0x23, 0x02, 0x02 -.4byte gUnknown_826D510 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826D620 -gUnknown_826D620: @ 826D620 -.byte 0x00, 0x00, 0x01, 0x01, 0x19, 0x1e, 0x02, 0x02 -.4byte gUnknown_826AB30 - -.global gUnknown_826D62C -gUnknown_826D62C: @ 826D62C -.byte 0x00, 0x00, 0x01, 0x01, 0x19, 0x15, 0x02, 0x02 -.4byte gUnknown_826C238 -.byte 0x04, 0x00, 0x01, 0x01 -.byte 0x1a, 0x15, 0x00, 0x02 -.4byte gUnknown_826D470 - -.global gUnknown_826D644 -gUnknown_826D644: @ 826D644 -.4byte gUnknown_826AA78 - -.global gUnknown_826D648 -gUnknown_826D648: @ 826D648 -.4byte gUnknown_826AB24 - -.global gUnknown_826D64C -gUnknown_826D64C: @ 826D64C -.4byte gUnknown_826C22C - -.global gUnknown_826D650 -gUnknown_826D650: @ 826D650 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826D644 - -.global gUnknown_826D678 -gUnknown_826D678: @ 826D678 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_826D590 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826D620 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826D648 - -.global gUnknown_826D6A0 -gUnknown_826D6A0: @ 826D6A0 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_826D5C0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_826D62C -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826D64C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_826D5F0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826D6F0 -gUnknown_826D6F0: @ 826D6F0 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826D650 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826D678 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_826D6A0 - -.global gUnknown_826D708 -gUnknown_826D708: @ 826D708 -.byte 0x17, 0x16, 0x00, 0x02, 0x01, 0x01, 0x01, 0x00, 0x19, 0x13, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x19, 0x18, 0x02, 0x02 -.byte 0x01, 0x01, 0x01, 0x00 - -.global gUnknown_826D720 -gUnknown_826D720: @ 826D720 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_826D6F0 -.4byte gUnknown_826D708 -.string "pksdir0\0" -.align 2, 0 -@ Murky Cave Entrance - -.global gUnknown_826D734 -gUnknown_826D734: @ 826D734 -.byte 0xf6, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826D774 -changeTileSet 0xDD -pushR14 -msgEnd 0x163 - -.global gUnknown_826D774 -gUnknown_826D774: @ 826D774 -.string "../data/ground/ground_data_d24p02_station.c\0" -.align 2, 0 - -.global gUnknown_826D7A0 -gUnknown_826D7A0: @ 826D7A0 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826D734 - -.global gUnknown_826D7AC -gUnknown_826D7AC: @ 826D7AC -.byte 0xf6, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826D774 -changeTileSet 0xDD -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -playMusic 0x15 -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -waitFlag 3 -endFuncAndScript - -.global gUnknown_826D81C -gUnknown_826D81C: @ 826D81C -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826D7AC - -.global gUnknown_826D828 -gUnknown_826D828: @ 826D828 -.byte 0xf6, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826D774 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -pause 1 -waitFlag 4 -pause 0x14 -fadeOut 1 0x1E 0 -closeThreadRemoveObject - -.global gUnknown_826D898 -gUnknown_826D898: @ 826D898 -.byte 0xf6, 0x00, 0x29, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826D774 -setAnimation 2 -loadData 7 0 0 -setFlag 7 -.byte 0x89, 0x50, 0x99, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -waitFlag 5 -rotate 4 shortestDir south -picNameTextBox 2 gUnknown_826D9B0 -picNameTextBox 2 gUnknown_826D988 -closeTextBox -setFlag 4 -setFlag 7 -.byte 0x89, 0x50, 0x80, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 3 -closeThread - -.global gUnknown_826D988 -gUnknown_826D988: @ 826D988 -.string " Don{APOSTROPHE}t forget to take me{COMMA}\n" -.string "kekeh!\0" -.align 2, 0 - -.global gUnknown_826D9B0 -gUnknown_826D9B0: @ 826D9B0 -.string " You{APOSTROPHE}re going to the\n" -.string "{COLOR_1 YELLOW_4}Murky Cave{END_COLOR_TEXT_1}?\0" -.align 2, 0 - -.global gUnknown_826D9D8 -gUnknown_826D9D8: @ 826D9D8 -.byte 0xf6, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826D774 -loadData 7 2 0 -setAnimation 2 -.byte 0x89, 0x58, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 5 -waitFlag 7 -.byte 0x89, 0x40, 0x80, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -closeThread - -.global gUnknown_826DA58 -gUnknown_826DA58: @ 826DA58 -.byte 0x00, 0x02, 0x00, 0x00 -.byte 0x19, 0x16, 0x02, 0x02 -.4byte gUnknown_826D898 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x04, 0x00, 0x00, 0x19, 0x1e, 0x02, 0x02 -.4byte gUnknown_826D9D8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826DA88 -gUnknown_826DA88: @ 826DA88 -.byte 0x00, 0x00, 0x01, 0x01, 0x19, 0x11, 0x02, 0x02 -.4byte gUnknown_826D828 - -.global gUnknown_826DA94 -gUnknown_826DA94: @ 826DA94 -.4byte gUnknown_826D7A0 - -.global gUnknown_826DA98 -gUnknown_826DA98: @ 826DA98 -.4byte gUnknown_826D81C - -.global gUnknown_826DA9C -gUnknown_826DA9C: @ 826DA9C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826DA94 - -.global gUnknown_826DAC4 -gUnknown_826DAC4: @ 826DAC4 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_826DA58 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826DA88 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826DA98 - -.global gUnknown_826DAEC -gUnknown_826DAEC: @ 826DAEC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826DA9C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826DAC4 - -.global gUnknown_826DAFC -gUnknown_826DAFC: @ 826DAFC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826DB04 -gUnknown_826DB04: @ 826DB04 -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_826DAEC -.4byte gUnknown_826DAFC -.string "pksdir0\0" -.align 2, 0 -@ Howling Forest Heart / Rescuing Smeargle - -.global gUnknown_826DB18 -gUnknown_826DB18: @ 826DB18 -.byte 0xf6, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826DB58 -changeTileSet 0xDE -pushR14 -msgEnd 0x163 - -.global gUnknown_826DB58 -gUnknown_826DB58: @ 826DB58 -.string "../data/ground/ground_data_d25p01_station.c\0" -.align 2, 0 - -.global gUnknown_826DB84 -gUnknown_826DB84: @ 826DB84 -.byte 0x94, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826DB18 - -.global gUnknown_826DB90 -gUnknown_826DB90: @ 826DB90 -.byte 0xf6, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826DB58 -changeTileSet 0xDE -.byte 0x0c, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -playMusic MUS_IN_THE_DEPTHS_OF_THE_PIT -.byte 0x22, 0x01, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -waitFlag 3 -fadeMusicOut 0x78 -fadeColorIn 1 1 0x3C 0x00ffffff -endFuncAndScript - -.global gUnknown_826DC20 -gUnknown_826DC20: @ 826DC20 -.byte 0x90, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826DB90 -@ Player - -.global gUnknown_826DC2C -gUnknown_826DC2C: @ 826DC2C -.byte 0xf6, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826DB58 -setAnimation 2 -loadData 7 0 0 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -setFlag 6 -gridMoveto 0x100 0 -pause 0xF -selectFace bottomR 1 0 -initVariableTextBox 2 0x26 1 -variableTextBox 1 gUnknown_826DD8C -elseTextBox gUnknown_826DD4C -closeTextBox -setFlag 6 -setFlag 3 -pause 1 -gridMoveTo 0xCC 1 -rotate 4 shortestDir northeast -closeThread - -.global gUnknown_826DD4C -gUnknown_826DD4C: @ 826DD4C -.string " Look{COMMA} there{APOSTROPHE}s our Pokémon.\n" -.string "We can get this rescue done.\0" -.align 2, 0 - -.global gUnknown_826DD8C -gUnknown_826DD8C: @ 826DD8C -.string " Look. Over there.\n" -.string "Let{APOSTROPHE}s get this rescue done.\0" -.align 2,0 -@ Partner - -.global gUnknown_826DDC0 -gUnknown_826DDC0: @ 826DDC0 -.byte 0xf6, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826DB58 -setAnimation 2 -loadData 7 1 0 -waitFlag 6 -gridMoveTo 0x100 2 -waitFlag 6 -gridMoveTo 0xCC 3 -rotate 4 shortestDir northwest -closeThread -@ Smeargle - -.global gUnknown_826DE50 -gUnknown_826DE50: @ 826DE50 -.byte 0xf6, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_826DB58 -setAnimation 2 -loadData 7 2 0 -closeThread - -.global gUnknown_826DE90 -gUnknown_826DE90: @ 826DE90 -.byte 0x00, 0x04, 0x00, 0x00, 0x14, 0x22, 0x02, 0x02 -.4byte gUnknown_826DC2C -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x04, 0x00, 0x00, 0x18, 0x22, 0x02, 0x02 -.4byte gUnknown_826DDC0 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x16, 0x11, 0x00, 0x02 -.4byte gUnknown_826DE50 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826DED8 -gUnknown_826DED8: @ 826DED8 -.byte 0x00, 0x00, 0x01, 0x01 -.byte 0x16, 0x14, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_826DEE4 -gUnknown_826DEE4: @ 826DEE4 -.4byte gUnknown_826DB84 - -.global gUnknown_826DEE8 -gUnknown_826DEE8: @ 826DEE8 -.4byte gUnknown_826DC20 - -.global gUnknown_826DEEC -gUnknown_826DEEC: @ 826DEEC -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826DEE4 - -.global gUnknown_826DF14 -gUnknown_826DF14: @ 826DF14 -.byte 0x03, 0x00, 0x00, 0x00 -.4byte gUnknown_826DE90 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826DED8 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826DEE8 - -.global gUnknown_826DF3C -gUnknown_826DF3C: @ 826DF3C -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826DEEC -.byte 0x01, 0x00, 0x00, 0x00 -.4byte gUnknown_826DF14 -HowlingForestHeartWaypoints: -.byte 0x14, 0x17, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00 -.byte 0x14, 0x13, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00 -.byte 0x18, 0x17, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00 -.byte 0x18, 0x13, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00 - -.global gUnknown_826DF6C -gUnknown_826DF6C: @ 826DF6C -.byte 0x02, 0x00, 0x00, 0x00 -.4byte gUnknown_826DF3C -.4byte HowlingForestHeartWaypoints -.string "pksdir0\0" -.align 2,0 -#include "scripts/personality_test.inc" -.string "pksdir0\0" -.align 2,0 -#include "scripts/title.inc" -.string "pksdir0\0" -.align 2,0 -#include "scripts/intro.inc" -.string "pksdir0\0" -.align 2,0 -#include "scripts/company_screens.inc" -.string "pksdir0\0" -.align 2,0 -#include "scripts/health_safety.inc" -.string "pksdir0\0" -.align 2,0 -#include "scripts/world_map.inc" diff --git a/data/data_8115F5C.s b/data/data_8115F5C.s index d7c85f283..059514b4c 100644 --- a/data/data_8115F5C.s +++ b/data/data_8115F5C.s @@ -8611,235 +8611,235 @@ gUnknown_811E230: @ 811E230 .global gMapScriptTable gMapScriptTable: @ 811E258 @ replacing .incbin "baserom.gba", 0x11E258, 0x39C -.4byte gUnknown_8138254 -.4byte gUnknown_817D5F8 -.4byte gUnknown_8189954 -.4byte gUnknown_8189954 -.4byte gUnknown_8197A08 -.4byte gUnknown_8198E0C -.4byte gUnknown_819A3C4 -.4byte gUnknown_819A73C -.4byte gUnknown_819AD04 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81E1940 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EE214 -.4byte gUnknown_81EEAFC -.4byte gUnknown_81EF524 -.4byte gUnknown_81EFCAC -.4byte gUnknown_81F07B4 -.4byte gUnknown_81F0DEC -.4byte gUnknown_81F1424 -.4byte gUnknown_81F1C8C -.4byte gUnknown_81F2770 -.4byte gUnknown_81F3110 -.4byte gUnknown_81F3954 -.4byte gUnknown_81F3F8C -.4byte gUnknown_81F4B04 -.4byte gUnknown_81F560C -.4byte gUnknown_81F6184 -.4byte gUnknown_81F6DDC -.4byte gUnknown_81F7804 -.4byte gUnknown_81F7F1C -.4byte gUnknown_81F8B04 -.4byte gUnknown_81F95F4 -.4byte gUnknown_81F9F88 -.4byte gUnknown_81FAC2C -.4byte gUnknown_81FB4D4 -.4byte gUnknown_81FBB64 -.4byte gUnknown_81FC3F4 -.4byte gUnknown_81FCDAC -.4byte gUnknown_81FD754 -.4byte gUnknown_81FE0E8 -.4byte gUnknown_81FEB10 -.4byte gUnknown_81FF274 -.4byte gUnknown_81FFA9C -.4byte gUnknown_8200374 -.4byte gUnknown_8200BDC -.4byte gUnknown_8201674 -.4byte gUnknown_8201CAC -.4byte gUnknown_8202434 -.4byte gUnknown_8202BA4 -.4byte gUnknown_820371C -.4byte gUnknown_8203FD0 -.4byte gUnknown_8204A68 -.4byte gUnknown_8205500 -.4byte gUnknown_8205DD8 -.4byte gUnknown_82066B0 -.4byte gUnknown_8206F88 -.4byte gUnknown_8207B58 -.4byte gUnknown_8208728 -.4byte gUnknown_8208F90 -.4byte gUnknown_8209B08 -.4byte gUnknown_820A3E0 -.4byte gUnknown_820AC48 -.4byte gUnknown_820B280 -.4byte gUnknown_820B8B8 -.4byte gUnknown_820C120 -.4byte gUnknown_820C884 -.4byte gUnknown_820EA04 -.4byte gUnknown_820F0AC -.4byte gUnknown_820F6E4 -.4byte gUnknown_820FD1C -.4byte gUnknown_82163C0 -.4byte gUnknown_821812C -.4byte gUnknown_821858C -.4byte gUnknown_8218BA8 -.4byte gUnknown_8219770 -.4byte gUnknown_821BA10 -.4byte gUnknown_821CE8C -.4byte gUnknown_821D1D0 -.4byte gUnknown_821F9A8 -.4byte gUnknown_82298A0 -.4byte gUnknown_8229B18 -.4byte gUnknown_822A110 -.4byte gUnknown_822AF6C -.4byte gUnknown_822B658 -.4byte gUnknown_822BDD4 -.4byte gUnknown_822C234 -.4byte gUnknown_822FCA8 -.4byte gUnknown_82302E4 -.4byte gUnknown_8231C5C -.4byte gUnknown_8232110 -.4byte gUnknown_8233244 -.4byte gUnknown_82342E0 -.4byte gUnknown_8234C7C -.4byte gUnknown_82359F0 -.4byte gUnknown_8237B64 -.4byte gUnknown_8239164 -.4byte gUnknown_8239E3C -.4byte gUnknown_823AA00 -.4byte gUnknown_823D7C8 -.4byte gUnknown_823E234 -.4byte gUnknown_8242BA4 -.4byte gUnknown_8245500 -.4byte gUnknown_8245CB4 -.4byte gUnknown_8248A40 -.4byte gUnknown_82496E8 -.4byte gUnknown_824BBE8 -.4byte gUnknown_824E700 -.4byte gUnknown_824FA10 -.4byte gUnknown_8251F30 -.4byte gUnknown_825568C -.4byte gUnknown_8256520 -.4byte gUnknown_825CE20 -.4byte gUnknown_825DCB8 -.4byte gUnknown_825E844 -.4byte gUnknown_825FF54 -.4byte gUnknown_82614F8 -.4byte gUnknown_8262094 -.4byte gUnknown_8263ED0 -.4byte gUnknown_8264144 -.4byte gUnknown_8264820 -.4byte gUnknown_826562C -.4byte gUnknown_82664BC -.4byte gUnknown_82673B4 -.4byte gUnknown_8267AB4 -.4byte gUnknown_8269740 -.4byte gUnknown_8269D60 -.4byte gUnknown_826A590 -.4byte gUnknown_826A9F8 -.4byte gUnknown_826D720 -.4byte gUnknown_826DB04 -.4byte gUnknown_826DF6C -.4byte gUnknown_826E288 -.4byte gUnknown_826EC44 -.4byte gUnknown_826F1A0 -.4byte gUnknown_826F5A0 -.4byte gUnknown_826F7FC -.4byte gUnknown_826F980 +.4byte gGroundScript_gs0 +.4byte gGroundScript_gs1 +.4byte gGroundScript_gs2 +.4byte gGroundScript_gs2 +.4byte gGroundScript_gs4 +.4byte gGroundScript_gs5 +.4byte gGroundScript_gs6 +.4byte gGroundScript_gs7 +.4byte gGroundScript_gs8 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs9 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs12 +.4byte gGroundScript_gs105 +.4byte gGroundScript_gs106 +.4byte gGroundScript_gs107 +.4byte gGroundScript_gs108 +.4byte gGroundScript_gs109 +.4byte gGroundScript_gs110 +.4byte gGroundScript_gs111 +.4byte gGroundScript_gs112 +.4byte gGroundScript_gs113 +.4byte gGroundScript_gs114 +.4byte gGroundScript_gs115 +.4byte gGroundScript_gs116 +.4byte gGroundScript_gs117 +.4byte gGroundScript_gs118 +.4byte gGroundScript_gs119 +.4byte gGroundScript_gs120 +.4byte gGroundScript_gs121 +.4byte gGroundScript_gs122 +.4byte gGroundScript_gs123 +.4byte gGroundScript_gs124 +.4byte gGroundScript_gs125 +.4byte gGroundScript_gs126 +.4byte gGroundScript_gs127 +.4byte gGroundScript_gs128 +.4byte gGroundScript_gs129 +.4byte gGroundScript_gs130 +.4byte gGroundScript_gs131 +.4byte gGroundScript_gs132 +.4byte gGroundScript_gs133 +.4byte gGroundScript_gs134 +.4byte gGroundScript_gs135 +.4byte gGroundScript_gs136 +.4byte gGroundScript_gs137 +.4byte gGroundScript_gs138 +.4byte gGroundScript_gs139 +.4byte gGroundScript_gs140 +.4byte gGroundScript_gs141 +.4byte gGroundScript_gs142 +.4byte gGroundScript_gs143 +.4byte gGroundScript_gs144 +.4byte gGroundScript_gs145 +.4byte gGroundScript_gs146 +.4byte gGroundScript_gs147 +.4byte gGroundScript_gs148 +.4byte gGroundScript_gs149 +.4byte gGroundScript_gs150 +.4byte gGroundScript_gs151 +.4byte gGroundScript_gs152 +.4byte gGroundScript_gs153 +.4byte gGroundScript_gs154 +.4byte gGroundScript_gs155 +.4byte gGroundScript_gs156 +.4byte gGroundScript_gs157 +.4byte gGroundScript_gs158 +.4byte gGroundScript_gs159 +.4byte gGroundScript_gs160 +.4byte gGroundScript_gs161 +.4byte gGroundScript_gs162 +.4byte gGroundScript_gs163 +.4byte gGroundScript_gs164 +.4byte gGroundScript_gs165 +.4byte gGroundScript_gs166 +.4byte gGroundScript_gs167 +.4byte gGroundScript_gs168 +.4byte gGroundScript_gs169 +.4byte gGroundScript_gs170 +.4byte gGroundScript_gs171 +.4byte gGroundScript_gs172 +.4byte gGroundScript_gs173 +.4byte gGroundScript_gs174 +.4byte gGroundScript_gs175 +.4byte gGroundScript_gs176 +.4byte gGroundScript_gs177 +.4byte gGroundScript_gs178 +.4byte gGroundScript_gs179 +.4byte gGroundScript_gs180 +.4byte gGroundScript_gs181 +.4byte gGroundScript_gs182 +.4byte gGroundScript_gs183 +.4byte gGroundScript_gs184 +.4byte gGroundScript_gs185 +.4byte gGroundScript_gs186 +.4byte gGroundScript_gs187 +.4byte gGroundScript_gs188 +.4byte gGroundScript_gs189 +.4byte gGroundScript_gs190 +.4byte gGroundScript_gs191 +.4byte gGroundScript_gs192 +.4byte gGroundScript_gs193 +.4byte gGroundScript_gs194 +.4byte gGroundScript_gs195 +.4byte gGroundScript_gs196 +.4byte gGroundScript_gs197 +.4byte gGroundScript_gs198 +.4byte gGroundScript_gs199 +.4byte gGroundScript_gs200 +.4byte gGroundScript_gs201 +.4byte gGroundScript_gs202 +.4byte gGroundScript_gs203 +.4byte gGroundScript_gs204 +.4byte gGroundScript_gs205 +.4byte gGroundScript_gs206 +.4byte gGroundScript_gs207 +.4byte gGroundScript_gs208 +.4byte gGroundScript_gs209 +.4byte gGroundScript_gs210 +.4byte gGroundScript_gs211 +.4byte gGroundScript_gs212 +.4byte gGroundScript_gs213 +.4byte gGroundScript_gs214 +.4byte gGroundScript_gs215 +.4byte gGroundScript_gs216 +.4byte gGroundScript_gs217 +.4byte gGroundScript_gs218 +.4byte gGroundScript_gs219 +.4byte gGroundScript_gs220 +.4byte gGroundScript_gs221 +.4byte gGroundScript_gs222 +.4byte gGroundScript_gs223 +.4byte gGroundScript_gs224 +.4byte gGroundScript_gs225 +.4byte gGroundScript_gs226 +.4byte gGroundScript_gs227 +.4byte gGroundScript_gs228 .string "pksdir0\0" .align 2, 0 @@ -9214,10003 +9214,7 @@ gGroundObjectTypes: @ 811ED20 .global gGroundEffectTypes gGroundEffectTypes: @ 811EE38 -@ replacing .incbin "baserom.gba", 0x11EE38, 0x103C0 +@ replacing .incbin "baserom.gba", 0x11EE38, 0x103B8 .byte 0x01, 0x00, 0x01, 0x01, 0x01, 0x00, 0x01, 0x01, 0x02, 0x00, 0x01, 0x01, 0x02, 0x00, 0x00, 0x00 .byte 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x01, 0x01, 0x70, 0x6b, 0x73, 0x64, 0x69, 0x72, 0x30, 0x00 - -.global gUnknown_811EE64 -gUnknown_811EE64: @ 811EE64 -.byte 0xf6, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811EEA4 -gUnknown_811EEA4: @ 811EEA4 -.string "../data/ground/ground_event_data.c\0" -.align 2, 0 - -.global gUnknown_811EEC8 -gUnknown_811EEC8: @ 811EEC8 -.byte 0xf6, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe3, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811EEF8 -gUnknown_811EEF8: @ 811EEF8 -.byte 0xf6, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe3, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811EF28 -gUnknown_811EF28: @ 811EF28 -.byte 0xf6, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnregisteredDialogScript -gUnregisteredDialogScript: @ 811EF58 -.byte 0xf6, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EF88 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811EF88 -gUnknown_811EF88: @ 811EF88 -.string "{COLOR_1 RED_2}Unregistered dialog script{END_COLOR_TEXT_1}\0" -.align 2, 0 - -.global gUnknown_811EFA8 -gUnknown_811EFA8: @ 811EFA8 -.byte 0xf6, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe3, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811EFD8 -gUnknown_811EFD8: @ 811EFD8 -.byte 0xf6, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdb, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811F048 -gUnknown_811F048: @ 811F048 -.byte 0xf6, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x2d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x8d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdb, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811F0A8 -gUnknown_811F0A8: @ 811F0A8 -.byte 0xf6, 0x00, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe3, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdb, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811F0E8 -gUnknown_811F0E8: @ 811F0E8 -.byte 0xf6, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811F150 -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811F128 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811F128 -gUnknown_811F128: @ 811F128 -.string "But there was nothing to be found...\0" -.align 2, 0 - -.global gUnknown_811F150 -gUnknown_811F150: @ 811F150 -.string "{ARG_NICKNAME_0} checked underfoot.\0" -.align 2, 0 - -.global gUnknown_811F168 -gUnknown_811F168: @ 811F168 -.byte 0xf6, 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811F188 -gUnknown_811F188: @ 811F188 -.byte 0xf6, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2e, 0x00, 0x01, 0x00, 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811F208 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811F208 -gUnknown_811F208: @ 811F208 -.string "Let{APOSTROPHE}s go.\0" -.align 2, 0 - -.global gUnknown_811F214 -gUnknown_811F214: @ 811F214 -.byte 0xf6, 0x00, 0x64, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x01, 0x00 -.byte 0xfe, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x0a, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x10, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811F354 -.byte 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x10, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811F354 -gUnknown_811F354: @ 811F354 -.string "Pleased to meet you.\0" -.align 2, 0 - -.global gUnknown_811F36C -gUnknown_811F36C: @ 811F36C -.byte 0xf6, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb3, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811F758 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811F71C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811F6D4 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3b, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811F6CC -.byte 0xd5, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811F68C -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811F678 -.byte 0xd9, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811F668 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811F61C -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3b, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811F5D0 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811F56C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811F71C -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811F6D4 -.byte 0xa6, 0x00, 0x2a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3b, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811F56C -gUnknown_811F56C: @ 811F56C -.string " I will do my best to create\n" -.string "a splendid design for you!\n" -.string "Please check the rescue team flag later!\0" -.align 2, 0 - -.global gUnknown_811F5D0 -gUnknown_811F5D0: @ 811F5D0 -.string " Ah{COMMA} very well!{WAIT_PRESS}\n" -.string "I may be unknown{COMMA} but nonetheless{COMMA} I am\n" -.string "an artist.\0" -.align 2, 0 - -.global gUnknown_811F61C -gUnknown_811F61C: @ 811F61C -.string " I see.{WAIT_PRESS}" -.string " If you would like the\n" -.string "flag{APOSTROPHE}s design changed{COMMA} please tell me.\0" -.align 2, 0 - -.global gUnknown_811F668 -gUnknown_811F668: @ 811F668 -.string "Yes{COMMA} please.\0" -.align 2, 0 - -.global gUnknown_811F678 -gUnknown_811F678: @ 811F678 -.string "No need to change.\0" -.align 2, 0 - -.global gUnknown_811F68C -gUnknown_811F68C: @ 811F68C -.string " Oh?{WAIT_PRESS} " -.string "Did you perhaps wish\n" -.string "to change the team flag{APOSTROPHE}s design?\0" -.align 2, 0 - -.global gUnknown_811F6CC -gUnknown_811F6CC: @ 811F6CC -.string " Hello!\0" -.align 2, 0 - -.global gUnknown_811F6D4 -gUnknown_811F6D4: @ 811F6D4 -.string " If so{COMMA} I will change the\n" -.string "design to one perhaps more to your liking.\0" -.align 2, 0 - -.global gUnknown_811F71C -gUnknown_811F71C: @ 811F71C -.string " If my design fails to\n" -.string "impress you{COMMA} please let me know.\0" -.align 2, 0 - -.global gUnknown_811F758 -gUnknown_811F758: @ 811F758 -.string " I will dedicate myself to\n" -.string "creating a fantastic new design.\n" -.string "Please check the rescue team flag later!\0" -.align 2, 0 - -.global gUnknown_811F7C0 -gUnknown_811F7C0: @ 811F7C0 -.byte 0xf6, 0x00, 0x9e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x3b, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8a, 0x18, 0x00, 0x01, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x18, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811F860 -gUnknown_811F860: @ 811F860 -.byte 0xf6, 0x00, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x3b, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8a, 0x18, 0x00, 0x01, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x18, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811F920 -gUnknown_811F920: @ 811F920 -.byte 0xf6, 0x00, 0xba, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811F990 -gUnknown_811F990: @ 811F990 -.byte 0xf6, 0x00, 0xc4, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811FA00 -gUnknown_811FA00: @ 811FA00 -.byte 0xf6, 0x00, 0xce, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x01, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x18, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811FA70 -gUnknown_811FA70: @ 811FA70 -.byte 0xf6, 0x00, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811FAD0 -gUnknown_811FAD0: @ 811FAD0 -.byte 0xf6, 0x00, 0xe1, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811FB30 -gUnknown_811FB30: @ 811FB30 -.byte 0xf6, 0x00, 0xea, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811FB80 -gUnknown_811FB80: @ 811FB80 -.byte 0xf6, 0x00, 0xf2, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811FBD0 -gUnknown_811FBD0: @ 811FBD0 -.byte 0xf6, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811FC20 -gUnknown_811FC20: @ 811FC20 -.byte 0xf6, 0x00, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811FC70 -gUnknown_811FC70: @ 811FC70 -.byte 0xf6, 0x00, 0x0a, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xdb, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811FCA0 -gUnknown_811FCA0: @ 811FCA0 -.byte 0xf6, 0x00, 0x10, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811FD10 -gUnknown_811FD10: @ 811FD10 -.byte 0xf6, 0x00, 0x1a, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811FD80 -gUnknown_811FD80: @ 811FD80 -.byte 0xf6, 0x00, 0x24, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811FDE0 -gUnknown_811FDE0: @ 811FDE0 -.byte 0xf6, 0x00, 0x2d, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8a, 0x18, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811FE40 -gUnknown_811FE40: @ 811FE40 -.byte 0xf6, 0x00, 0x36, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8a, 0x18, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x18, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811FEA0 -gUnknown_811FEA0: @ 811FEA0 -.byte 0xf6, 0x00, 0x3f, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8a, 0x10, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x10, 0x00, 0x18, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_811FF00 -gUnknown_811FF00: @ 811FF00 -.byte 0xf6, 0x00, 0x48, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8120000 -gUnknown_8120000: @ 8120000 -.byte 0xf6, 0x00, 0x5b, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x92, 0x04, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x04, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x04, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8120080 -gUnknown_8120080: @ 8120080 -.byte 0xf6, 0x00, 0x66, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x91, 0x04, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81200F0 -gUnknown_81200F0: @ 81200F0 -.byte 0xf6, 0x00, 0x70, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x91, 0x04, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8120160 -gUnknown_8120160: @ 8120160 -.byte 0xf6, 0x00, 0x7a, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x91, 0x04, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x04, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81201D0 -gUnknown_81201D0: @ 81201D0 -.byte 0xf6, 0x00, 0x84, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x0a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8120240 -gUnknown_8120240: @ 8120240 -.byte 0xf6, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x0a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81202C0 -gUnknown_81202C0: @ 81202C0 -.byte 0xf6, 0x00, 0x99, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8120370 -gUnknown_8120370: @ 8120370 -.byte 0xf6, 0x00, 0xa7, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x56, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81203B0 -gUnknown_81203B0: @ 81203B0 -.byte 0xf6, 0x00, 0xae, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x56, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81203F0 -gUnknown_81203F0: @ 81203F0 -.byte 0xf6, 0x00, 0xb5, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x56, 0x00, 0x00, 0x00, 0x5c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8120430 -gUnknown_8120430: @ 8120430 -.byte 0xf6, 0x00, 0xbc, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8120470 -gUnknown_8120470: @ 8120470 -.byte 0xf6, 0x00, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x56, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81204A0 -gUnknown_81204A0: @ 81204A0 -.byte 0xf6, 0x00, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81204D0 -gUnknown_81204D0: @ 81204D0 -.byte 0xf6, 0x00, 0xcf, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x56, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8120500 -gUnknown_8120500: @ 8120500 -.byte 0xf6, 0x00, 0xd5, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8120530 -gUnknown_8120530: @ 8120530 -.byte 0xf6, 0x00, 0xdb, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x56, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8120560 -gUnknown_8120560: @ 8120560 -.byte 0xf6, 0x00, 0xe1, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8120590 -gUnknown_8120590: @ 8120590 -.byte 0xf6, 0x00, 0xe7, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81205F0 -gUnknown_81205F0: @ 81205F0 -.byte 0xf6, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xbb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8120670 -gUnknown_8120670: @ 8120670 -.byte 0xf6, 0x00, 0xfb, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xbb, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81206E0 -gUnknown_81206E0: @ 81206E0 -.byte 0xf6, 0x00, 0x05, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x3c, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8120770 -gUnknown_8120770: @ 8120770 -.byte 0xf6, 0x00, 0x11, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81207D0 -gUnknown_81207D0: @ 81207D0 -.byte 0xf6, 0x00, 0x1a, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0xe0, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8120840 -gUnknown_8120840: @ 8120840 -.byte 0xf6, 0x00, 0x24, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8120880 -gUnknown_8120880: @ 8120880 -.byte 0xf6, 0x00, 0x2b, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xf2, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_81209AC -.byte 0x3b, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_812096C -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8120910 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8120910 -gUnknown_8120910: @ 8120910 -.string "{CENTER_ALIGN}If you want to add members to\n" -.string "{CENTER_ALIGN}the rescue team{COMMA} go visit\n" -.string "{CENTER_ALIGN}them in their Friend Areas.\0" -.align 2, 0 - -.global gUnknown_812096C -gUnknown_812096C: @ 812096C -.string "{CENTER_ALIGN}The rescue team member(s)\n" -.string "{CENTER_ALIGN}dispersed to the Friend Area(s).\0" -.align 2, 0 - -.global gUnknown_81209AC -gUnknown_81209AC: @ 81209AC -.string "DISMISSAL_SALLY_MEMBER_FUNC\n" -.string "\0" -.align 2, 0 - -.global gUnknown_81209CC -gUnknown_81209CC: @ 81209CC -.byte 0xf6, 0x00, 0x37, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xf2, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8120A5C -.byte 0x3b, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_812096C -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8120910 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8120A5C -gUnknown_8120A5C: @ 8120A5C -.string "DISMISSAL_SALLY_MEMBER2_FUNC\n" -.string "\0" -.align 2, 0 - -.global gUnknown_8120A7C -gUnknown_8120A7C: @ 8120A7C -.byte 0xf6, 0x00, 0x43, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xf2, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8120B0C -.byte 0x3b, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_812096C -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8120910 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8120B0C -gUnknown_8120B0C: @ 8120B0C -.string "DISMISSAL_SALLY_MEMBER3_FUNC\n" -.string "\0" -.align 2, 0 - -.global gUnknown_8120B2C -gUnknown_8120B2C: @ 8120B2C -.byte 0xf6, 0x00, 0x4f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xf2, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8120BBC -.byte 0x3b, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_812096C -.byte 0x32, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8120910 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8120BBC -gUnknown_8120BBC: @ 8120BBC -.string "DISMISSAL_SALLY_MEMBER4_FUNC\n" -.string "\0" -.align 2, 0 - -.global gNextSaveFunc -gNextSaveFunc: @ 8120BDC -.byte 0xf6, 0x00, 0x5b, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xf2, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8120CCC -.byte 0xd3, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8120CA4 -.byte 0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8120CA0 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8120C9C -.byte 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8120C9C -gUnknown_8120C9C: @ 8120C9C -.byte 0x2a, 0x4e, 0x6f, 0x00 - -.global gUnknown_8120CA0 -gUnknown_8120CA0: @ 8120CA0 -.byte 0x59, 0x65, 0x73, 0x00 - -.global gUnknown_8120CA4 -gUnknown_8120CA4: @ 8120CA4 -.string "Would you like to save your adventure?\0" -.align 2, 0 - -.global gUnknown_8120CCC -gUnknown_8120CCC: @ 8120CCC -.string "NEXT_SAVE_FUNC\n" -.string "\0" -.align 2, 0 - -.global gUnknown_8120CDC -gUnknown_8120CDC: @ 8120CDC -.byte 0xf6, 0x00, 0x6a, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xf2, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8120D9C -.byte 0xd3, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8120CA4 -.byte 0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8120CA0 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8120C9C -.byte 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x3c, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8120D9C -gUnknown_8120D9C: @ 8120D9C -.string "NEXT_SAVE2_FUNC\n" -.string "\0" -.align 2, 0 - -.global gUnknown_8120DB0 -gUnknown_8120DB0: @ 8120DB0 -.byte 0xf6, 0x00, 0x79, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff -.4byte gUnknown_8120CA4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8120E60 -gUnknown_8120E60: @ 8120E60 -.byte 0xf6, 0x00, 0x87, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8120EC0 -gUnknown_8120EC0: @ 8120EC0 -.byte 0xf6, 0x00, 0x90, 0x02, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd3, 0x01, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8121018 -.byte 0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8121008 -.byte 0xd9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8121000 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff -.4byte gUnknown_8120CA4 -.byte 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121000 -gUnknown_8121000: @ 8121000 -.string "Save.\0" -.align 2, 0 - -.global gUnknown_8121008 -gUnknown_8121008: @ 8121008 -.string "Check storage.\0" -.align 2, 0 - -.global gUnknown_8121018 -gUnknown_8121018: @ 8121018 -.string "What would you like to do?\0" -.align 2, 0 - -.global gUnknown_8121034 -gUnknown_8121034: @ 8121034 -.byte 0xf6, 0x00, 0xa7, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00 -.byte 0xe4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x01, 0x01, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121074 -gUnknown_8121074: @ 8121074 -.byte 0xf6, 0x00, 0xae, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x23, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x00, 0x03, 0x00 -.byte 0x13, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x13, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa7, 0x00, 0x0f, 0x00 -.byte 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x18, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121124 -gUnknown_8121124: @ 8121124 -.byte 0xf6, 0x00, 0xbc, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1d, 0x01, 0x01, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121154 -gUnknown_8121154: @ 8121154 -.byte 0xf6, 0x00, 0xc2, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x4d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121184 -gUnknown_8121184: @ 8121184 -.byte 0xf6, 0x00, 0xc8, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x4e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81211B4 -gUnknown_81211B4: @ 81211B4 -.byte 0xf6, 0x00, 0xce, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x4f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81211E4 -gUnknown_81211E4: @ 81211E4 -.byte 0xf6, 0x00, 0xd4, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x51, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121214 -gUnknown_8121214: @ 8121214 -.byte 0xf6, 0x00, 0xda, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x52, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121244 -gUnknown_8121244: @ 8121244 -.byte 0xf6, 0x00, 0xe0, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x53, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121274 -gUnknown_8121274: @ 8121274 -.byte 0xf6, 0x00, 0xe6, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x01 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x02 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x04 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x08 -.byte 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x10 -.byte 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x20 -.byte 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x01 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x02 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x04 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x08 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x10 -.byte 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x18 -.byte 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x20 -.byte 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81213C4 -gUnknown_81213C4: @ 81213C4 -.byte 0xf6, 0x00, 0xfe, 0x02 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x01 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x02 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x04 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x08 -.byte 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x10 -.byte 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x20 -.byte 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81214B4 -gUnknown_81214B4: @ 81214B4 -.byte 0xf6, 0x00, 0x10, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x01 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x02 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x04 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x08 -.byte 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x10 -.byte 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x20 -.byte 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81215A4 -gUnknown_81215A4: @ 81215A4 -.byte 0xf6, 0x00, 0x22, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x60, 0x00, 0x00, 0x00 -.byte 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81215F4 -gUnknown_81215F4: @ 81215F4 -.byte 0xf6, 0x00, 0x2a, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00 -.byte 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x20 -.byte 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x10 -.byte 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x08 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x04 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x02 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x40 -.byte 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x20 -.byte 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x10 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x08 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x04 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x02 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81217A4 -gUnknown_81217A4: @ 81217A4 -.byte 0xf6, 0x00, 0x48, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00 -.byte 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x20 -.byte 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x10 -.byte 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x08 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x04 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x02 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81218D4 -gUnknown_81218D4: @ 81218D4 -.byte 0xf6, 0x00, 0x5e, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x54, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x28, 0x00, 0x00 -.byte 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x28, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x20 -.byte 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x10 -.byte 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x08 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x04 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x02 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121A04 -gUnknown_8121A04: @ 8121A04 -.byte 0xf6, 0x00, 0x74, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x60, 0x00, 0x00, 0x00 -.byte 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121A54 -gUnknown_8121A54: @ 8121A54 -.byte 0xf6, 0x00, 0x7c, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x49, 0x00, 0x00, 0x00 -.byte 0xcb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0x00, 0xcb, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121AA4 -gUnknown_8121AA4: @ 8121AA4 -.byte 0xf6, 0x00, 0x84, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x49, 0x00, 0x00, 0x00 -.byte 0xcb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0x00, 0xcb, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121AF4 -gUnknown_8121AF4: @ 8121AF4 -.byte 0xf6, 0x00, 0x8c, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x49, 0x00, 0x00, 0x00 -.byte 0xcb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0x00, 0xcb, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121B44 -gUnknown_8121B44: @ 8121B44 -.byte 0xf6, 0x00, 0x94, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x49, 0x00, 0x00, 0x00 -.byte 0xcb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0x00, 0xcb, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121B94 -gUnknown_8121B94: @ 8121B94 -.byte 0xf6, 0x00, 0x9c, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x49, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0x00, 0xcc, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121BE4 -gUnknown_8121BE4: @ 8121BE4 -.byte 0xf6, 0x00, 0xa4, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x23, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121C14 -gUnknown_8121C14: @ 8121C14 -.byte 0xf6, 0x00, 0xaa, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121C44 -gUnknown_8121C44: @ 8121C44 -.byte 0xf6, 0x00, 0xb0, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121C84 -gUnknown_8121C84: @ 8121C84 -.byte 0xf6, 0x00, 0xb7, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xdb, 0x00, 0x3c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121CB4 -gUnknown_8121CB4: @ 8121CB4 -.byte 0xf6, 0x00, 0xbd, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x23, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x43, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121D04 -gUnknown_8121D04: @ 8121D04 -.byte 0xf6, 0x00, 0xc5, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe0, 0x00, 0x32, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x45, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121D44 -gUnknown_8121D44: @ 8121D44 -.byte 0xf6, 0x00, 0xcc, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe0, 0x00, 0x32, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x45, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121D94 -gUnknown_8121D94: @ 8121D94 -.byte 0xf6, 0x00, 0xd4, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x3b, 0x43, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00 -.byte 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x00, 0x32, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x45, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121DF4 -gUnknown_8121DF4: @ 8121DF4 -.byte 0xf6, 0x00, 0xdd, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x56, 0x00, 0x00, 0x00 -.byte 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121E74 -gUnknown_8121E74: @ 8121E74 -.byte 0xf6, 0x00, 0xe8, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x56, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00 -.byte 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121F14 -gUnknown_8121F14: @ 8121F14 -.byte 0xf6, 0x00, 0xf5, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x56, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121F54 -gUnknown_8121F54: @ 8121F54 -.byte 0xf6, 0x00, 0xfc, 0x03 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x56, 0x00, 0x00, 0x00 -.byte 0xb6, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8121F94 -gUnknown_8121F94: @ 8121F94 -.byte 0xf6, 0x00, 0x03, 0x04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x01, 0x00 -.byte 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x02, 0x00 -.byte 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x03, 0x00 -.byte 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x04, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x05, 0x00 -.byte 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x06, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x07, 0x00 -.byte 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x08, 0x00 -.byte 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x09, 0x00 -.byte 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x0a, 0x00 -.byte 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x0b, 0x00 -.byte 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x0c, 0x00 -.byte 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x0d, 0x00 -.byte 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x0e, 0x00 -.byte 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x0f, 0x00 -.byte 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x10, 0x00 -.byte 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x11, 0x00 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x12, 0x00 -.byte 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x13, 0x00 -.byte 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x14, 0x00 -.byte 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x15, 0x00 -.byte 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x16, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x16, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x15, 0x00 -.byte 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x19, 0x00 -.byte 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x06, 0x1a, 0x00 -.byte 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xec, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x16, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x77, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x18, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x6b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x19, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x6c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x6d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x69, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x62, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x04, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x0a, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x13, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x19, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x1f, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x25, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x27, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x29, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x2b, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x2d, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x34, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x3a, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x3d, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x10, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x43, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x11, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x4d, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x12, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x50, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x5c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x60, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x15, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x1b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x1c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x3a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x3a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x68, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xec, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81226E4 -gUnknown_81226E4: @ 81226E4 -.byte 0xf6, 0x00, 0x7c, 0x04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x69, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x03, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8122724 -gUnknown_8122724: @ 8122724 -.byte 0xf6, 0x00, 0x83, 0x04 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xf2, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8122804 -.byte 0xa6, 0x00, 0x0d, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00 -.byte 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa5, 0x00, 0x24, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x25, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xac, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa5, 0x00, 0x19, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8122804 -gUnknown_8122804: @ 8122804 -.string "EVENT_DIVIDE_INIT_FUNC\n" -.string "\0" -.align 2, 0 - -.global gUnknown_812281C -gUnknown_812281C: @ 812281C -.byte 0xf6, 0x00, 0x94, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xf2, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8122BDC -.byte 0xb9, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb9, 0x01, 0x03, 0x00, 0x12, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb8, 0x03, 0x04, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb4, 0x05, 0x04, 0x00, 0x19, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x13, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb9, 0x05, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb9, 0x06, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb9, 0x07, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xae, 0x01, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb9, 0x09, 0x0c, 0x00, 0x35, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb9, 0x0a, 0x0c, 0x00, 0x35, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0c, 0x00, 0x35, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0c, 0x00, 0x35, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb9, 0x0c, 0x06, 0x00, 0x24, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x1d, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb9, 0x0e, 0x08, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x32, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xb9, 0x10, 0x09, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x38, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8122BDC -gUnknown_8122BDC: @ 8122BDC -.string "EVENT_DIVIDE_NEXT_DAY_FUNC\n" -.string "\0" -.align 2, 0 - -.global gUnknown_8122BF8 -gUnknown_8122BF8: @ 8122BF8 -.byte 0xf6, 0x00, 0xd3, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xf2, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8122E98 -.byte 0xb9, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb9, 0x01, 0x03, 0x00, 0x12, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb8, 0x03, 0x04, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x05, 0x04, 0x00, 0x19, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x1b, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x13, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb9, 0x05, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb9, 0x06, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb9, 0x07, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xae, 0x01, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb9, 0x09, 0x0c, 0x00, 0x35, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb9, 0x0a, 0x0c, 0x00, 0x35, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x0c, 0x00, 0x35, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x0c, 0x00, 0x35, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8122E98 -gUnknown_8122E98: @ 8122E98 -.string "EVENT_DIVIDE_NEXT_DAY2_FUNC\n" -.string "\0" -.align 2, 0 - -.global gUnknown_8122EB8 -gUnknown_8122EB8: @ 8122EB8 -.byte 0xf6, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x04, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x05, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x06, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x07, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x08, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa5, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0d, 0x00, 0xb2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0f, 0x00, 0xb2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa5, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x0d, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa8, 0x00, 0x24, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x0f, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x10, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x11, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa8, 0x00, 0x24, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x25, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x05, 0x12, 0x00, 0x19, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x15, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x06, 0x16, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x17, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x06, 0x18, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x06, 0x19, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa8, 0x00, 0x24, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x05, 0x1a, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x8c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x05, 0x1a, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x25, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x05, 0x1b, 0x00, 0x19, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x05, 0x1c, 0x00, 0x19, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x92, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa5, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x1e, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa8, 0x00, 0x24, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x05, 0x1f, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x05, 0x1f, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa5, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x21, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa8, 0x00, 0x24, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x05, 0x22, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x05, 0x22, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x24, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa8, 0x00, 0x24, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x05, 0x25, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xa7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x05, 0x25, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xa8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x27, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x09, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa8, 0x00, 0x24, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x05, 0x28, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xae, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x05, 0x28, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xaf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x2a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8123A18 -gUnknown_8123A18: @ 8123A18 -.byte 0xf6, 0x00, 0xba, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x01, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x02, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x03, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x04, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x05, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x06, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x09, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x09, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x0a, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0f, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xb7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x25, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xb9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0d, 0x00, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0f, 0x00, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x0e, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0d, 0x00, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0f, 0x00, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x10, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0d, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0f, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x12, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x13, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x14, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x13, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x15, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x13, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x16, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x13, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x17, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa8, 0x00, 0x24, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x05, 0x18, 0x00, 0x19, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xd6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x05, 0x19, 0x00, 0x19, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb8, 0x13, 0x04, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb4, 0x05, 0x1a, 0x00, 0x19, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xda, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x25, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x1c, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0f, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa8, 0x00, 0x24, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xe3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x25, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x11, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa6, 0x00, 0x0f, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xeb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8124268 -gUnknown_8124268: @ 8124268 -.byte 0xf6, 0x00, 0x42, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x01, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x02, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x03, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x04, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x05, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x06, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x07, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x08, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcd, 0x02, 0x09, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xed, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x13, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x14, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x15, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x20, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xf2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x16, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x21, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x2f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xf3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x17, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x21, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x30, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x35, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x18, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x14, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x22, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x30, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x37, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x44, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xf5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x19, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x22, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x30, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x37, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x44, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x1a, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xf6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x22, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x30, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x37, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x45, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x1b, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x54, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xf7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xc5, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xa9, 0x00, 0x03, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x22, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x31, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x37, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x3f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x45, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe8, 0x00, 0x55, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb0, 0x01, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb0, 0x01, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb0, 0x01, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb0, 0x01, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb0, 0x01, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb0, 0x01, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb0, 0x01, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb0, 0x01, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb0, 0x01, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb0, 0x01, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8124BB8 -gUnknown_8124BB8: @ 8124BB8 -.byte 0xf6, 0x00, 0xda, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x03, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x01, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcf, 0x02, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8124F5C -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8124F20 -.byte 0xd0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8124EE0 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8124EBC -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8124E80 -.byte 0xd1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8124E48 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x01, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8124EBC -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8124E28 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x01, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8124E28 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x01, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8124E28 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x2d, 0x09, 0x01, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_8124E28 -.byte 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8124E28 -gUnknown_8124E28: @ 8124E28 -.string " Huh?\n" -.string "Are you ready to leave?\0" -.align 2, 0 - -.global gUnknown_8124E48 -gUnknown_8124E48: @ 8124E48 -.string " Let{APOSTROPHE}s go to the {COLOR_1 CYAN}Pelipper\n" -.string "Post Office{END_COLOR_TEXT_1} at least.\0" -.align 2, 0 - -.global gUnknown_8124E80 -gUnknown_8124E80: @ 8124E80 -.string " We{APOSTROPHE}re already here.\n" -.string "Let me show you around a bit more.\0" -.align 2, 0 - -.global gUnknown_8124EBC -gUnknown_8124EBC: @ 8124EBC -.string " Huh?\n" -.string "You want to go home already?\0" -.align 2, 0 - -.global gUnknown_8124EE0 -gUnknown_8124EE0: @ 8124EE0 -.string " You can go home after we\n" -.string "go to the {COLOR_1 CYAN}Pelipper Post Office{END_COLOR_TEXT_1}.\0" -.align 2, 0 - -.global gUnknown_8124F20 -gUnknown_8124F20: @ 8124F20 -.string " We haven{APOSTROPHE}t gone to the\n" -.string "{COLOR_1 CYAN}Pelipper Post Office{END_COLOR_TEXT_1} yet?\0" -.align 2, 0 - -.global gUnknown_8124F5C -gUnknown_8124F5C: @ 8124F5C -.string " Huh?\n" -.string "Are you going home already?\0" -.align 2, 0 - -.global gUnknown_8124F80 -gUnknown_8124F80: @ 8124F80 -.byte 0xf6, 0x00, 0x06, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x1e, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8124FC0 -gUnknown_8124FC0: @ 8124FC0 -.byte 0xf6, 0x00, 0x0d, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125000 -gUnknown_8125000: @ 8125000 -.byte 0xf6, 0x00, 0x14, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x3c, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x41, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125070 -gUnknown_8125070: @ 8125070 -.byte 0xf6, 0x00, 0x1e, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125090 -gUnknown_8125090: @ 8125090 -.byte 0xf6, 0x00, 0x23, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xe3, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x41, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81250D0 -gUnknown_81250D0: @ 81250D0 -.byte 0xf6, 0x00, 0x2a, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xe2, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x41, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125110 -gUnknown_8125110: @ 8125110 -.byte 0xf6, 0x00, 0x31, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x1d, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xe1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x03, 0x00, 0xe0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x41, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125180 -gUnknown_8125180: @ 8125180 -.byte 0xf6, 0x00, 0x3b, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x04, 0x00, 0xe0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x41, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81251C0 -gUnknown_81251C0: @ 81251C0 -.byte 0xf6, 0x00, 0x42, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xdf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125230 -gUnknown_8125230: @ 8125230 -.byte 0xf6, 0x00, 0x4c, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xb2, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125270 -gUnknown_8125270: @ 8125270 -.byte 0xf6, 0x00, 0x53, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x02, 0x00, 0xb2, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81252A0 -gUnknown_81252A0: @ 81252A0 -.byte 0xf6, 0x00, 0x59, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x3b, 0x39, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xb3, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x03, 0x00, 0xb2, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x11, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x02, 0x00, 0xe0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125350 -gUnknown_8125350: @ 8125350 -.byte 0xf6, 0x00, 0x67, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125390 -gUnknown_8125390: @ 8125390 -.byte 0xf6, 0x00, 0x6e, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81253C0 -gUnknown_81253C0: @ 81253C0 -.byte 0xf6, 0x00, 0x74, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x11, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125400 -gUnknown_8125400: @ 8125400 -.byte 0xf6, 0x00, 0x7b, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x12, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125440 -gUnknown_8125440: @ 8125440 -.byte 0xf6, 0x00, 0x82, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xb4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125490 -gUnknown_8125490: @ 8125490 -.byte 0xf6, 0x00, 0x8a, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x12, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81254C0 -gUnknown_81254C0: @ 81254C0 -.byte 0xf6, 0x00, 0x90, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x02, 0x00, 0xb4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81254F0 -gUnknown_81254F0: @ 81254F0 -.byte 0xf6, 0x00, 0x96, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xb5, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x03, 0x00, 0xb4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x17, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125580 -gUnknown_8125580: @ 8125580 -.byte 0xf6, 0x00, 0xa2, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x02, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xa2, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x13, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81255E0 -gUnknown_81255E0: @ 81255E0 -.byte 0xf6, 0x00, 0xab, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x06, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x25, 0x00, 0x03, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125630 -gUnknown_8125630: @ 8125630 -.byte 0xf6, 0x00, 0xb3, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x0c, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125680 -gUnknown_8125680: @ 8125680 -.byte 0xf6, 0x00, 0xbb, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x02, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x02, 0x00, 0xa2, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x14, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81256F0 -gUnknown_81256F0: @ 81256F0 -.byte 0xf6, 0x00, 0xc5, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x1a, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125730 -gUnknown_8125730: @ 8125730 -.byte 0xf6, 0x00, 0xcc, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xb6, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125770 -gUnknown_8125770: @ 8125770 -.byte 0xf6, 0x00, 0xd3, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x15, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81257A0 -gUnknown_81257A0: @ 81257A0 -.byte 0xf6, 0x00, 0xd9, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x02, 0x00, 0xb6, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81257E0 -gUnknown_81257E0: @ 81257E0 -.byte 0xf6, 0x00, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xb7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x1c, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125860 -gUnknown_8125860: @ 8125860 -.byte 0xf6, 0x00, 0xeb, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x03, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81258A0 -gUnknown_81258A0: @ 81258A0 -.byte 0xf6, 0x00, 0xf2, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x02, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x03, 0x00, 0xa2, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x16, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125900 -gUnknown_8125900: @ 8125900 -.byte 0xf6, 0x00, 0xfb, 0x07, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x1d, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x25, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81259B0 -gUnknown_81259B0: @ 81259B0 -.byte 0xf6, 0x00, 0x09, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb3, 0x00, 0x17, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x05, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x03, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125A50 -gUnknown_8125A50: @ 8125A50 -.byte 0xf6, 0x00, 0x16, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x17, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125AA0 -gUnknown_8125AA0: @ 8125AA0 -.byte 0xf6, 0x00, 0x1e, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x1e, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125AF0 -gUnknown_8125AF0: @ 8125AF0 -.byte 0xf6, 0x00, 0x26, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x18, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125B30 -gUnknown_8125B30: @ 8125B30 -.byte 0xf6, 0x00, 0x2d, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x1f, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125B80 -gUnknown_8125B80: @ 8125B80 -.byte 0xf6, 0x00, 0x35, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xb8, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125BB0 -gUnknown_8125BB0: @ 8125BB0 -.byte 0xf6, 0x00, 0x3b, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x19, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125BF0 -gUnknown_8125BF0: @ 8125BF0 -.byte 0xf6, 0x00, 0x42, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x02, 0x00, 0xb8, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125C20 -gUnknown_8125C20: @ 8125C20 -.byte 0xf6, 0x00, 0x48, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xb9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x22, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125CB0 -gUnknown_8125CB0: @ 8125CB0 -.byte 0xf6, 0x00, 0x54, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x03, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125CF0 -gUnknown_8125CF0: @ 8125CF0 -.byte 0xf6, 0x00, 0x5b, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x1a, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125D30 -gUnknown_8125D30: @ 8125D30 -.byte 0xf6, 0x00, 0x62, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x23, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x24, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125DB0 -gUnknown_8125DB0: @ 8125DB0 -.byte 0xf6, 0x00, 0x6d, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xba, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125DE0 -gUnknown_8125DE0: @ 8125DE0 -.byte 0xf6, 0x00, 0x73, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x1b, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125E20 -gUnknown_8125E20: @ 8125E20 -.byte 0xf6, 0x00, 0x7a, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x02, 0x00, 0x1e, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125E50 -gUnknown_8125E50: @ 8125E50 -.byte 0xf6, 0x00, 0x80, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xbb, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x27, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125EE0 -gUnknown_8125EE0: @ 8125EE0 -.byte 0xf6, 0x00, 0x8c, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x03, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125F20 -gUnknown_8125F20: @ 8125F20 -.byte 0xf6, 0x00, 0x93, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x1c, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125F60 -gUnknown_8125F60: @ 8125F60 -.byte 0xf6, 0x00, 0x9a, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x28, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125FB0 -gUnknown_8125FB0: @ 8125FB0 -.byte 0xf6, 0x00, 0xa2, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xbc, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8125FE0 -gUnknown_8125FE0: @ 8125FE0 -.byte 0xf6, 0x00, 0xa8, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x1d, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126020 -gUnknown_8126020: @ 8126020 -.byte 0xf6, 0x00, 0xaf, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x02, 0x00, 0xbc, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126050 -gUnknown_8126050: @ 8126050 -.byte 0xf6, 0x00, 0xb5, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xbd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126080 -gUnknown_8126080: @ 8126080 -.byte 0xf6, 0x00, 0xbb, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xbe, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126100 -gUnknown_8126100: @ 8126100 -.byte 0xf6, 0x00, 0xc6, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x03, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126140 -gUnknown_8126140: @ 8126140 -.byte 0xf6, 0x00, 0xcd, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x1e, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126180 -gUnknown_8126180: @ 8126180 -.byte 0xf6, 0x00, 0xd4, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x2b, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x08, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81261D0 -gUnknown_81261D0: @ 81261D0 -.byte 0xf6, 0x00, 0xdc, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xbf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126200 -gUnknown_8126200: @ 8126200 -.byte 0xf6, 0x00, 0xe2, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x1f, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126240 -gUnknown_8126240: @ 8126240 -.byte 0xf6, 0x00, 0xe9, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x02, 0x00, 0xbf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - - .global gUnknown_8126270 - gUnknown_8126270: - .byte 0xf6, 0x00, 0xef, 0x08, 0x00, 0x00, 0x00, 0x00 - .byte 0x00, 0x00, 0x00, 0x00 - .4byte gUnknown_811EEA4 - .byte 0x1e, 0x00, 0x02, 0x00, 0xc0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81262F0 -gUnknown_81262F0: @ 81262F0 -.byte 0xf6, 0x00, 0xfa, 0x08, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x03, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126330 -gUnknown_8126330: @ 8126330 -.byte 0xf6, 0x00, 0x01, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x20, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126370 -gUnknown_8126370: @ 8126370 -.byte 0xf6, 0x00, 0x08, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x2d, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81263B0 -gUnknown_81263B0: @ 81263B0 -.byte 0xf6, 0x00, 0x0f, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x03, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81263E0 -gUnknown_81263E0: @ 81263E0 -.byte 0xf6, 0x00, 0x15, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x11, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126420 -gUnknown_8126420: @ 8126420 -.byte 0xf6, 0x00, 0x1c, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x2e, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x0a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126460 -gUnknown_8126460: @ 8126460 -.byte 0xf6, 0x00, 0x23, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x02, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x04, 0x00, 0xa2, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x21, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x12, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x22, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x0a, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81264F0 -gUnknown_81264F0: @ 81264F0 -.byte 0xf6, 0x00, 0x2f, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x2f, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x0a, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126530 -gUnknown_8126530: @ 8126530 -.byte 0xf6, 0x00, 0x36, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x14, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x15, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x30, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126590 -gUnknown_8126590: @ 8126590 -.byte 0xf6, 0x00, 0x3f, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x31, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x25, 0x00, 0x05, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81265E0 -gUnknown_81265E0: @ 81265E0 -.byte 0xf6, 0x00, 0x47, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x03, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x33, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x34, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x35, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xa4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xa5, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81266A0 -gUnknown_81266A0: @ 81266A0 -.byte 0xf6, 0x00, 0x56, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xc1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81266E0 -gUnknown_81266E0: @ 81266E0 -.byte 0xf6, 0x00, 0x5d, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x02, 0x00, 0xc1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126710 -gUnknown_8126710: @ 8126710 -.byte 0xf6, 0x00, 0x63, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xc2, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xa6, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xa7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x02, 0x00, 0xa6, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x18, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81267D0 -gUnknown_81267D0: @ 81267D0 -.byte 0xf6, 0x00, 0x72, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x05, 0x00, 0xc1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126800 -gUnknown_8126800: @ 8126800 -.byte 0xf6, 0x00, 0x78, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x04, 0x00, 0xc1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126830 -gUnknown_8126830: @ 8126830 -.byte 0xf6, 0x00, 0x7e, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xc3, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126870 -gUnknown_8126870: @ 8126870 -.byte 0xf6, 0x00, 0x85, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xaf, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81268A0 -gUnknown_81268A0: @ 81268A0 -.byte 0xf6, 0x00, 0x8b, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x03, 0x00, 0xc3, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81268D0 -gUnknown_81268D0: @ 81268D0 -.byte 0xf6, 0x00, 0x91, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xc4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126900 -gUnknown_8126900: @ 8126900 -.byte 0xf6, 0x00, 0x97, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xc5, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x02, 0x00, 0xa7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x0d, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x1a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81269A0 -gUnknown_81269A0: @ 81269A0 -.byte 0xf6, 0x00, 0xa4, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x05, 0x00, 0xc3, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81269D0 -gUnknown_81269D0: @ 81269D0 -.byte 0xf6, 0x00, 0xaa, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x04, 0x00, 0xc3, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126A00 -gUnknown_8126A00: @ 8126A00 -.byte 0xf6, 0x00, 0xb0, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x3b, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xa8, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x02, 0x00, 0xa8, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xa9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x0d, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126A80 -gUnknown_8126A80: @ 8126A80 -.byte 0xf6, 0x00, 0xbb, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xc6, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126AC0 -gUnknown_8126AC0: @ 8126AC0 -.byte 0xf6, 0x00, 0xc2, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x03, 0x00, 0xc6, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126AF0 -gUnknown_8126AF0: @ 8126AF0 -.byte 0xf6, 0x00, 0xc8, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xbc, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xc7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x02, 0x00, 0xc7, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126B70 -gUnknown_8126B70: @ 8126B70 -.byte 0xf6, 0x00, 0xd3, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xc8, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x0e, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x1c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126BE0 -gUnknown_8126BE0: @ 8126BE0 -.byte 0xf6, 0x00, 0xdd, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x06, 0x00, 0xc6, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126C10 -gUnknown_8126C10: @ 8126C10 -.byte 0xf6, 0x00, 0xe3, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x05, 0x00, 0xc6, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126C40 -gUnknown_8126C40: @ 8126C40 -.byte 0xf6, 0x00, 0xe9, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x3b, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xaa, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x05, 0x00, 0xa2, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x02, 0x00, 0xaa, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x0e, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126CC0 -gUnknown_8126CC0: @ 8126CC0 -.byte 0xf6, 0x00, 0xf4, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xc9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126D00 -gUnknown_8126D00: @ 8126D00 -.byte 0xf6, 0x00, 0xfb, 0x09, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x03, 0x00, 0xc9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126D30 -gUnknown_8126D30: @ 8126D30 -.byte 0xf6, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x02, 0x00, 0xcb, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126D60 -gUnknown_8126D60: @ 8126D60 -.byte 0xf6, 0x00, 0x07, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xca, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126D90 -gUnknown_8126D90: @ 8126D90 -.byte 0xf6, 0x00, 0x0d, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x02, 0x00, 0xcb, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x03, 0x00, 0xcb, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126E10 -gUnknown_8126E10: @ 8126E10 -.byte 0xf6, 0x00, 0x18, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x05, 0x00, 0xc9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126E40 -gUnknown_8126E40: @ 8126E40 -.byte 0xf6, 0x00, 0x1e, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x04, 0x00, 0xc9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126E70 -gUnknown_8126E70: @ 8126E70 -.byte 0xf6, 0x00, 0x24, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x17, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x23, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126ED0 -gUnknown_8126ED0: @ 8126ED0 -.byte 0xf6, 0x00, 0x2d, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x37, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126F10 -gUnknown_8126F10: @ 8126F10 -.byte 0xf6, 0x00, 0x34, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x02, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x06, 0x00, 0xa2, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x24, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x07, 0x00, 0xa2, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x25, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126F90 -gUnknown_8126F90: @ 8126F90 -.byte 0xf6, 0x00, 0x3f, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x39, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8126FD0 -gUnknown_8126FD0: @ 8126FD0 -.byte 0xf6, 0x00, 0x46, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x26, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127010 -gUnknown_8127010: @ 8127010 -.byte 0xf6, 0x00, 0x4d, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x3a, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x1a, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x3b, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127070 -gUnknown_8127070: @ 8127070 -.byte 0xf6, 0x00, 0x56, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x27, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xdb, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81270B0 -gUnknown_81270B0: @ 81270B0 -.byte 0xf6, 0x00, 0x5d, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x1c, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x3c, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x25, 0x00, 0x06, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127110 -gUnknown_8127110: @ 8127110 -.byte 0xf6, 0x00, 0x66, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x02, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x08, 0x00, 0xa2, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x28, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81271A0 -gUnknown_81271A0: @ 81271A0 -.byte 0xf6, 0x00, 0x72, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x3e, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81271F0 -gUnknown_81271F0: @ 81271F0 -.byte 0xf6, 0x00, 0x7a, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127220 -gUnknown_8127220: @ 8127220 -.byte 0xf6, 0x00, 0x80, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x29, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127260 -gUnknown_8127260: @ 8127260 -.byte 0xf6, 0x00, 0x87, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x02, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127290 -gUnknown_8127290: @ 8127290 -.byte 0xf6, 0x00, 0x8d, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xcd, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81272C0 -gUnknown_81272C0: @ 81272C0 -.byte 0xf6, 0x00, 0x93, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xce, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127340 -gUnknown_8127340: @ 8127340 -.byte 0xf6, 0x00, 0x9e, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x03, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x1f, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xab, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xad, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x02, 0x00, 0xab, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x20, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x21, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x25, 0x00, 0x07, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81273F0 -gUnknown_81273F0: @ 81273F0 -.byte 0xf6, 0x00, 0xac, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x03, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x02, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xa3, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x2a, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x02, 0x00, 0xa3, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x09, 0x00, 0xa2, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x2b, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81274B0 -gUnknown_81274B0: @ 81274B0 -.byte 0xf6, 0x00, 0xbb, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x41, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x10, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127510 -gUnknown_8127510: @ 8127510 -.byte 0xf6, 0x00, 0xc4, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x03, 0x00, 0xab, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x0a, 0x00, 0xa2, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x04, 0x00, 0xab, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xcf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xac, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x02, 0x00, 0xcf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127590 -gUnknown_8127590: @ 8127590 -.byte 0xf6, 0x00, 0xcf, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x2c, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81275D0 -gUnknown_81275D0: @ 81275D0 -.byte 0xf6, 0x00, 0xd6, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x03, 0x00, 0xcf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127600 -gUnknown_8127600: @ 8127600 -.byte 0xf6, 0x00, 0xdc, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xd0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127630 -gUnknown_8127630: @ 8127630 -.byte 0xf6, 0x00, 0xe2, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x02, 0x00, 0xad, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x02, 0x00, 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x03, 0x00, 0xad, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x03, 0x00, 0xd1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x11, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81276C0 -gUnknown_81276C0: @ 81276C0 -.byte 0xf6, 0x00, 0xee, 0x0a, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x3b, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xae, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x05, 0x00, 0xab, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x25, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x1b, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x06, 0x00, 0xab, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x07, 0x00, 0xab, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xaf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xb0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x12, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x02, 0x00, 0xaf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x44, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xb1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81277F0 -gUnknown_81277F0: @ 81277F0 -.byte 0xf6, 0x00, 0x04, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x3b, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xaf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xb0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x12, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x02, 0x00, 0xaf, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x44, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xb1, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81278A0 -gUnknown_81278A0: @ 81278A0 -.byte 0xf6, 0x00, 0x12, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x2d, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x12, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81278E0 -gUnknown_81278E0: @ 81278E0 -.byte 0xf6, 0x00, 0x19, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x45, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x12, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127930 -gUnknown_8127930: @ 8127930 -.byte 0xf6, 0x00, 0x21, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x48, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x12, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127970 -gUnknown_8127970: @ 8127970 -.byte 0xf6, 0x00, 0x28, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x03, 0x00, 0x13, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x06, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81279C0 -gUnknown_81279C0: @ 81279C0 -.byte 0xf6, 0x00, 0x30, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x03, 0x00, 0x14, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x06, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127A10 -gUnknown_8127A10: @ 8127A10 -.byte 0xf6, 0x00, 0x38, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x03, 0x00, 0x15, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x06, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127A60 -gUnknown_8127A60: @ 8127A60 -.byte 0xf6, 0x00, 0x40, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x03, 0x00, 0x16, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x06, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127AB0 -gUnknown_8127AB0: @ 8127AB0 -.byte 0xf6, 0x00, 0x48, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x03, 0x00, 0x17, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x06, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127B00 -gUnknown_8127B00: @ 8127B00 -.byte 0xf6, 0x00, 0x50, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x03, 0x00, 0x18, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x06, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127B50 -gUnknown_8127B50: @ 8127B50 -.byte 0xf6, 0x00, 0x58, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x03, 0x00, 0x19, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x06, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127BA0 -gUnknown_8127BA0: @ 8127BA0 -.byte 0xf6, 0x00, 0x60, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x03, 0x00, 0x1a, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x06, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127BF0 -gUnknown_8127BF0: @ 8127BF0 -.byte 0xf6, 0x00, 0x68, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x06, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x1b, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127C30 -gUnknown_8127C30: @ 8127C30 -.byte 0xf6, 0x00, 0x6f, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x07, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127C80 -gUnknown_8127C80: @ 8127C80 -.byte 0xf6, 0x00, 0x77, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x06, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00, 0x39, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127CF0 -gUnknown_8127CF0: @ 8127CF0 -.byte 0xf6, 0x00, 0x81, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x04, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127D20 -gUnknown_8127D20: @ 8127D20 -.byte 0xf6, 0x00, 0x87, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x05, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127D50 -gUnknown_8127D50: @ 8127D50 -.byte 0xf6, 0x00, 0x8d, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x04, 0x00, 0x1d, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x04, 0x00, 0x1d, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127DB0 -gUnknown_8127DB0: @ 8127DB0 -.byte 0xf6, 0x00, 0x96, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x04, 0x00, 0x1d, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x04, 0x00, 0x1d, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xae, 0x01, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127E20 -gUnknown_8127E20: @ 8127E20 -.byte 0xf6, 0x00, 0xa0, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x04, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x04, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x28, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127EA0 -gUnknown_8127EA0: @ 8127EA0 -.byte 0xf6, 0x00, 0xab, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xae, 0x01, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x04, 0x00, 0x1d, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x00, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x04, 0x00, 0x1d, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xec, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127F60 -gUnknown_8127F60: @ 8127F60 -.byte 0xf6, 0x00, 0xbb, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x03, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x04, 0x00, 0x1d, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8127FF0 -gUnknown_8127FF0: @ 8127FF0 -.byte 0xf6, 0x00, 0xc7, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x4b, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128030 -gUnknown_8128030: @ 8128030 -.byte 0xf6, 0x00, 0xce, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa6, 0x00, 0x28, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x4c, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x04, 0x00, 0x1e, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00, 0x1e, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81280C0 -gUnknown_81280C0: @ 81280C0 -.byte 0xf6, 0x00, 0xda, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x08, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81280F0 -gUnknown_81280F0: @ 81280F0 -.byte 0xf6, 0x00, 0xe0, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa6, 0x00, 0x28, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x4e, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x04, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128160 -gUnknown_8128160: @ 8128160 -.byte 0xf6, 0x00, 0xea, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x04, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x04, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xae, 0x01, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xad, 0x01, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x28, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128200 -gUnknown_8128200: @ 8128200 -.byte 0xf6, 0x00, 0xf7, 0x0b, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x04, 0x00, 0x20, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x04, 0x00, 0x20, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x28, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128290 -gUnknown_8128290: @ 8128290 -.byte 0xf6, 0x00, 0x03, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x05, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x04, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128320 -gUnknown_8128320: @ 8128320 -.byte 0xf6, 0x00, 0x0f, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x04, 0x00, 0x20, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x4f, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00, 0x1f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81283B0 -gUnknown_81283B0: @ 81283B0 -.byte 0xf6, 0x00, 0x1b, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x08, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81283F0 -gUnknown_81283F0: @ 81283F0 -.byte 0xf6, 0x00, 0x22, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x04, 0x00, 0x20, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128420 -gUnknown_8128420: @ 8128420 -.byte 0xf6, 0x00, 0x28, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x04, 0x00, 0x20, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128450 -gUnknown_8128450: @ 8128450 -.byte 0xf6, 0x00, 0x2e, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x05, 0x00, 0x21, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x05, 0x00, 0x21, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81284C0 -gUnknown_81284C0: @ 81284C0 -.byte 0xf6, 0x00, 0x38, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x05, 0x00, 0x22, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x05, 0x00, 0x22, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128530 -gUnknown_8128530: @ 8128530 -.byte 0xf6, 0x00, 0x42, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x05, 0x00, 0x21, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128560 -gUnknown_8128560: @ 8128560 -.byte 0xf6, 0x00, 0x48, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x05, 0x00, 0x21, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128590 -gUnknown_8128590: @ 8128590 -.byte 0xf6, 0x00, 0x4e, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xaf, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x05, 0x00, 0x21, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81285D0 -gUnknown_81285D0: @ 81285D0 -.byte 0xf6, 0x00, 0x55, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb0, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x05, 0x00, 0x22, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00, 0x21, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128650 -gUnknown_8128650: @ 8128650 -.byte 0xf6, 0x00, 0x60, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x08, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128690 -gUnknown_8128690: @ 8128690 -.byte 0xf6, 0x00, 0x67, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x05, 0x00, 0x22, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x05, 0x00, 0x22, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128710 -gUnknown_8128710: @ 8128710 -.byte 0xf6, 0x00, 0x72, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x05, 0x00, 0x23, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x05, 0x00, 0x23, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128790 -gUnknown_8128790: @ 8128790 -.byte 0xf6, 0x00, 0x7d, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x05, 0x00, 0x22, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81287C0 -gUnknown_81287C0: @ 81287C0 -.byte 0xf6, 0x00, 0x83, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x02, 0x00, 0x9e, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x05, 0x00, 0x22, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x04, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128820 -gUnknown_8128820: @ 8128820 -.byte 0xf6, 0x00, 0x8c, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb0, 0x01, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x05, 0x00, 0x23, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00, 0x22, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81288A0 -gUnknown_81288A0: @ 81288A0 -.byte 0xf6, 0x00, 0x97, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x08, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81288E0 -gUnknown_81288E0: @ 81288E0 -.byte 0xf6, 0x00, 0x9e, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x06, 0x00, 0x24, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x06, 0x00, 0x24, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128940 -gUnknown_8128940: @ 8128940 -.byte 0xf6, 0x00, 0xa7, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x06, 0x00, 0x24, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x06, 0x00, 0x24, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81289B0 -gUnknown_81289B0: @ 81289B0 -.byte 0xf6, 0x00, 0xb1, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x06, 0x00, 0x25, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x06, 0x00, 0x25, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128A20 -gUnknown_8128A20: @ 8128A20 -.byte 0xf6, 0x00, 0xbb, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xaf, 0x01, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x06, 0x00, 0x24, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x51, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x04, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128A80 -gUnknown_8128A80: @ 8128A80 -.byte 0xf6, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb0, 0x01, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x06, 0x00, 0x25, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00, 0x24, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128B00 -gUnknown_8128B00: @ 8128B00 -.byte 0xf6, 0x00, 0xcf, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x08, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128B40 -gUnknown_8128B40: @ 8128B40 -.byte 0xf6, 0x00, 0xd6, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x07, 0x00, 0x26, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x07, 0x00, 0x26, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128BA0 -gUnknown_8128BA0: @ 8128BA0 -.byte 0xf6, 0x00, 0xdf, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x07, 0x00, 0x2b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x07, 0x00, 0x2b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128C50 -gUnknown_8128C50: @ 8128C50 -.byte 0xf6, 0x00, 0xed, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x07, 0x00, 0x2b, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x07, 0x00, 0x2b, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128D00 -gUnknown_8128D00: @ 8128D00 -.byte 0xf6, 0x00, 0xfb, 0x0c, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x52, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x09, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x07, 0x00, 0x26, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128D60 -gUnknown_8128D60: @ 8128D60 -.byte 0xf6, 0x00, 0x04, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xc0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x07, 0x00, 0x27, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00, 0x26, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128E00 -gUnknown_8128E00: @ 8128E00 -.byte 0xf6, 0x00, 0x11, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128E30 -gUnknown_8128E30: @ 8128E30 -.byte 0xf6, 0x00, 0x17, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xd4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x07, 0x00, 0x28, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00, 0x27, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128ED0 -gUnknown_8128ED0: @ 8128ED0 -.byte 0xf6, 0x00, 0x24, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128F00 -gUnknown_8128F00: @ 8128F00 -.byte 0xf6, 0x00, 0x2a, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xd5, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x07, 0x00, 0x29, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00, 0x28, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128FA0 -gUnknown_8128FA0: @ 8128FA0 -.byte 0xf6, 0x00, 0x37, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8128FD0 -gUnknown_8128FD0: @ 8128FD0 -.byte 0xf6, 0x00, 0x3d, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xd6, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x07, 0x00, 0x2a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00, 0x29, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129070 -gUnknown_8129070: @ 8129070 -.byte 0xf6, 0x00, 0x4a, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81290A0 -gUnknown_81290A0: @ 81290A0 -.byte 0xf6, 0x00, 0x50, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb0, 0x01, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x07, 0x00, 0x2b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00, 0x2a, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129120 -gUnknown_8129120: @ 8129120 -.byte 0xf6, 0x00, 0x5b, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129150 -gUnknown_8129150: @ 8129150 -.byte 0xf6, 0x00, 0x61, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x07, 0x00, 0x2b, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129180 -gUnknown_8129180: @ 8129180 -.byte 0xf6, 0x00, 0x67, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x08, 0x00, 0x2c, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x08, 0x00, 0x2c, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81291E0 -gUnknown_81291E0: @ 81291E0 -.byte 0xf6, 0x00, 0x70, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x08, 0x00, 0x2c, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x08, 0x00, 0x2c, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129250 -gUnknown_8129250: @ 8129250 -.byte 0xf6, 0x00, 0x7a, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x08, 0x00, 0x2d, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x08, 0x00, 0x2d, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81292C0 -gUnknown_81292C0: @ 81292C0 -.byte 0xf6, 0x00, 0x84, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xaf, 0x01, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x08, 0x00, 0x2c, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x01, 0x00, 0xd8, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x2e, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x04, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129330 -gUnknown_8129330: @ 8129330 -.byte 0xf6, 0x00, 0x8e, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb0, 0x01, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x08, 0x00, 0x2d, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00, 0x2c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81293B0 -gUnknown_81293B0: @ 81293B0 -.byte 0xf6, 0x00, 0x99, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81293E0 -gUnknown_81293E0: @ 81293E0 -.byte 0xf6, 0x00, 0x9f, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x09, 0x00, 0x2e, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x09, 0x00, 0x2e, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129440 -gUnknown_8129440: @ 8129440 -.byte 0xf6, 0x00, 0xa8, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x09, 0x00, 0x2e, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x09, 0x00, 0x2e, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81294B0 -gUnknown_81294B0: @ 81294B0 -.byte 0xf6, 0x00, 0xb2, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x09, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x09, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129570 -gUnknown_8129570: @ 8129570 -.byte 0xf6, 0x00, 0xc1, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xaf, 0x01, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x09, 0x00, 0x2e, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x0a, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x53, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x0b, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x2f, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x05, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129600 -gUnknown_8129600: @ 8129600 -.byte 0xf6, 0x00, 0xcd, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xd9, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x09, 0x00, 0x2f, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00, 0x2e, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129680 -gUnknown_8129680: @ 8129680 -.byte 0xf6, 0x00, 0xd8, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe9, 0x00, 0x3b, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81296A0 -gUnknown_81296A0: @ 81296A0 -.byte 0xf6, 0x00, 0xdd, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x30, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x09, 0x00, 0x2f, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x05, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129710 -gUnknown_8129710: @ 8129710 -.byte 0xf6, 0x00, 0xe7, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00, 0xda, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x31, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x09, 0x00, 0x30, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00, 0x2f, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81297B0 -gUnknown_81297B0: @ 81297B0 -.byte 0xf6, 0x00, 0xf4, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x08, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81297F0 -gUnknown_81297F0: @ 81297F0 -.byte 0xf6, 0x00, 0xfb, 0x0d, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x0a, 0x00, 0x31, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0a, 0x00, 0x31, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129850 -gUnknown_8129850: @ 8129850 -.byte 0xf6, 0x00, 0x04, 0x0e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x0a, 0x00, 0x32, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0a, 0x00, 0x32, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81298C0 -gUnknown_81298C0: @ 81298C0 -.byte 0xf6, 0x00, 0x0e, 0x0e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x0a, 0x00, 0x31, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81298F0 -gUnknown_81298F0: @ 81298F0 -.byte 0xf6, 0x00, 0x14, 0x0e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xaf, 0x01, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0a, 0x00, 0x31, 0x00, 0x00, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129930 -gUnknown_8129930: @ 8129930 -.byte 0xf6, 0x00, 0x1b, 0x0e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb0, 0x01, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0a, 0x00, 0x32, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00, 0x31, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81299B0 -gUnknown_81299B0: @ 81299B0 -.byte 0xf6, 0x00, 0x26, 0x0e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x08, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81299F0 -gUnknown_81299F0: @ 81299F0 -.byte 0xf6, 0x00, 0x2d, 0x0e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129A50 -gUnknown_8129A50: @ 8129A50 -.byte 0xf6, 0x00, 0x36, 0x0e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x0b, 0x00, 0x34, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0b, 0x00, 0x34, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129AC0 -gUnknown_8129AC0: @ 8129AC0 -.byte 0xf6, 0x00, 0x40, 0x0e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129AF0 -gUnknown_8129AF0: @ 8129AF0 -.byte 0xf6, 0x00, 0x46, 0x0e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129B20 -gUnknown_8129B20: @ 8129B20 -.byte 0xf6, 0x00, 0x4c, 0x0e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129B50 -gUnknown_8129B50: @ 8129B50 -.byte 0xf6, 0x00, 0x52, 0x0e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129B80 -gUnknown_8129B80: @ 8129B80 -.byte 0xf6, 0x00, 0x58, 0x0e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xae, 0x01, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129BC0 -gUnknown_8129BC0: @ 8129BC0 -.byte 0xf6, 0x00, 0x5f, 0x0e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x07, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0b, 0x00, 0x33, 0x00, 0x00, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129C50 -gUnknown_8129C50: @ 8129C50 -.byte 0xf6, 0x00, 0x6b, 0x0e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x54, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0b, 0x00, 0x34, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00, 0x33, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129CE0 -gUnknown_8129CE0: @ 8129CE0 -.byte 0xf6, 0x00, 0x77, 0x0e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe8, 0x00, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x08, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129D20 -gUnknown_8129D20: @ 8129D20 -.byte 0xf6, 0x00, 0x7e, 0x0e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xe9, 0x00, 0x4f, 0x01, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_8129D40 -gUnknown_8129D40: @ 8129D40 -.byte 0xf6, 0x00, 0x83, 0x0e, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xf2, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_812A020 -.byte 0xc0, 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00, 0x39, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x55, 0x00, 0x09, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x0d, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x06, 0x00, 0x01, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x0e, 0x00, 0x0c, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00, 0x0b, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00, 0x34, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812A020 -gUnknown_812A020: @ 812A020 -.string "S08 SWITCH SELECT\n\0" -.align 2, 0 - -.global gUnknown_812A034 -gUnknown_812A034: @ 812A034 -.byte 0xf6, 0x00, 0xb4, 0x0e -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x05, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812A064 -gUnknown_812A064: @ 812A064 -.byte 0xf6, 0x00, 0xba, 0x0e -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x3b, 0x29, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x0c, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x2a, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x55, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x05, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812A104 -gUnknown_812A104: @ 812A104 -.byte 0xf6, 0x00, 0xc7, 0x0e -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x0d, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x05, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812A144 -gUnknown_812A144: @ 812A144 -.byte 0xf6, 0x00, 0xce, 0x0e -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x0e, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x05, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812A184 -gUnknown_812A184: @ 812A184 -.byte 0xf6, 0x00, 0xd5, 0x0e -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x0c, 0x00 -.byte 0x35, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0c, 0x00 -.byte 0x35, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812A1E4 -gUnknown_812A1E4: @ 812A1E4 -.byte 0xf6, 0x00, 0xde, 0x0e -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xb8, 0x00, 0x0c, 0x00 -.byte 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0c, 0x00 -.byte 0x37, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x00, 0x1d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812A264 -gUnknown_812A264: @ 812A264 -.byte 0xf6, 0x00, 0xe9, 0x0e -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x0c, 0x00 -.byte 0x35, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812A294 -gUnknown_812A294: @ 812A294 -.byte 0xf6, 0x00, 0xef, 0x0e -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x0c, 0x00 -.byte 0x35, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812A2C4 -gUnknown_812A2C4: @ 812A2C4 -.byte 0xf6, 0x00, 0xf5, 0x0e -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x0c, 0x00 -.byte 0x35, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812A2F4 -gUnknown_812A2F4: @ 812A2F4 -.byte 0xf6, 0x00, 0xfb, 0x0e -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x56, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x1d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0c, 0x00 -.byte 0x35, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812A344 -gUnknown_812A344: @ 812A344 -.byte 0xf6, 0x00, 0x03, 0x0f -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x06, 0x00 -.byte 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812A384 -gUnknown_812A384: @ 812A384 -.byte 0xf6, 0x00, 0x0a, 0x0f -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00 -.byte 0xcb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x58, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x00, 0x1d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0c, 0x00 -.byte 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00 -.byte 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x40, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812A424 -gUnknown_812A424: @ 812A424 -.byte 0xf6, 0x00, 0x17, 0x0f -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x08, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812A454 -gUnknown_812A454: @ 812A454 -.byte 0xf6, 0x00, 0x1d, 0x0f -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x59, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0c, 0x00 -.byte 0x36, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812A4A4 -gUnknown_812A4A4: @ 812A4A4 -.byte 0xf6, 0x00, 0x25, 0x0f -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00 -.byte 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 -.byte 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812A4E4 -gUnknown_812A4E4: @ 812A4E4 -.byte 0xf6, 0x00, 0x2c, 0x0f -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x01, 0x00 -.byte 0xdc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x03, 0x00 -.byte 0xa3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x02, 0x00 -.byte 0xdc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x5b, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0c, 0x00 -.byte 0x37, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00 -.byte 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x40, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812A5A4 -gUnknown_812A5A4: @ 812A5A4 -.byte 0xf6, 0x00, 0x3b, 0x0f -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x1e, 0x00, 0x08, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812A5D4 -gUnknown_812A5D4: @ 812A5D4 -.byte 0xf6, 0x00, 0x41, 0x0f -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa9, 0x00, 0x0c, 0x00 -.byte 0x37, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812A604 -gUnknown_812A604: @ 812A604 -.byte 0xf6, 0x00, 0x47, 0x0f -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xa5, 0x00, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x0b, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x02, 0x00, 0x00 -.byte 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x01, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x06, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x03, 0x00 -.byte 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0d, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x0f, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x3b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x11, 0x00 -.byte 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x39, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x40, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x07, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x4f, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812A804 -gUnknown_812A804: @ 812A804 -.byte 0xf6, 0x00, 0x6a, 0x0f -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x10, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812A844 -gUnknown_812A844: @ 812A844 -.byte 0xf6, 0x00, 0x71, 0x0f -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x22, 0x00, 0xff, 0xff -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812A874 -gUnknown_812A874: @ 812A874 -.byte 0xf6, 0x00, 0x77, 0x0f -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x03, 0x00, 0x1e, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812A8D4 -gUnknown_812A8D4: @ 812A8D4 -.byte 0xf6, 0x00, 0x80, 0x0f -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x03, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x04, 0x03, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x79, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x7a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812AA14 -gUnknown_812AA14: @ 812AA14 -.byte 0xf6, 0x00, 0x97, 0x0f -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x03, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x80, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x82, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812AB34 -gUnknown_812AB34: @ 812AB34 -.byte 0xf6, 0x00, 0xac, 0x0f -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x03, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x05, 0x03, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x89, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x07, 0x03, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x08, 0x03, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x09, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x89, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0a, 0x00 -.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0b, 0x00 -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x0c, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff -.byte 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812AE04 -gUnknown_812AE04: @ 812AE04 -.byte 0xf6, 0x00, 0xdc, 0x0f -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x03, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x05, 0x03, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x95, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x07, 0x03, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x08, 0x03, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x09, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x95, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x97, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0a, 0x00 -.byte 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0b, 0x00 -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x0c, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xff, 0xff -.byte 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812B0D4 -gUnknown_812B0D4: @ 812B0D4 -.byte 0xf6, 0x00, 0x0c, 0x10 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x03, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x04, 0x03, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x06, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x9c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x9e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812B224 -gUnknown_812B224: @ 812B224 -.byte 0xf6, 0x00, 0x24, 0x10 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x03, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x05, 0x03, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xa3, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff -.byte 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x07, 0x03, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x08, 0x03, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x09, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xa5, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xa6, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0a, 0x00 -.byte 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0b, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x0c, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x0d, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x0b, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0b, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff -.byte 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812B554 -gUnknown_812B554: @ 812B554 -.byte 0xf6, 0x00, 0x5a, 0x10 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x03, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x04, 0x03, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x08, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xab, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xad, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812B6A4 -gUnknown_812B6A4: @ 812B6A4 -.byte 0xf6, 0x00, 0x72, 0x10 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x03, 0x00 -.byte 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x04, 0x03, 0x00 -.byte 0x0b, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x0b, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xba, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xbb, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812B7F4 -gUnknown_812B7F4: @ 812B7F4 -.byte 0xf6, 0x00, 0x8a, 0x10 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x03, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x05, 0x03, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xc0, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff -.byte 0xc4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x07, 0x03, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x08, 0x03, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x09, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xc1, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xc2, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0a, 0x00 -.byte 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0b, 0x00 -.byte 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x0c, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x0d, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x0b, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0b, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff -.byte 0xc4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812BB24 -gUnknown_812BB24: @ 812BB24 -.byte 0xf6, 0x00, 0xc0, 0x10 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x03, 0x00 -.byte 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x05, 0x03, 0x00 -.byte 0x0d, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x0d, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xc7, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff -.byte 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x07, 0x03, 0x00 -.byte 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x08, 0x03, 0x00 -.byte 0x0d, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x0d, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x09, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xc8, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xc9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0a, 0x00 -.byte 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0b, 0x00 -.byte 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x0c, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x0d, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x0b, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0b, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff -.byte 0xc7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812BE54 -gUnknown_812BE54: @ 812BE54 -.byte 0xf6, 0x00, 0xf6, 0x10 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x03, 0x00 -.byte 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x05, 0x03, 0x00 -.byte 0x0e, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x0e, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xce, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff -.byte 0xca, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x07, 0x03, 0x00 -.byte 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x08, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xd0, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xd1, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x09, 0x00 -.byte 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0a, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x0b, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x0c, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x0b, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0a, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff -.byte 0xca, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812C154 -gUnknown_812C154: @ 812C154 -.byte 0xf6, 0x00, 0x29, 0x11 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x03, 0x00 -.byte 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x05, 0x03, 0x00 -.byte 0x0f, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x0f, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xdf, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff -.byte 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x07, 0x03, 0x00 -.byte 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x08, 0x03, 0x00 -.byte 0x0f, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x0f, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x09, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xe1, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xe2, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0a, 0x00 -.byte 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0b, 0x00 -.byte 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x0c, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x0d, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x0b, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0b, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff -.byte 0xcd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812C484 -gUnknown_812C484: @ 812C484 -.byte 0xf6, 0x00, 0x5f, 0x11 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x03, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x05, 0x03, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xe7, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff -.byte 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x07, 0x03, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x08, 0x03, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x10, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x09, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xe9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xea, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0a, 0x00 -.byte 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0b, 0x00 -.byte 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x0c, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x0d, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x0b, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0b, 0x00 -.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff -.byte 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812C7B4 -gUnknown_812C7B4: @ 812C7B4 -.byte 0xf6, 0x00, 0x95, 0x11 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x01, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x19, 0x00 -.byte 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xfa, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812C894 -gUnknown_812C894: @ 812C894 -.byte 0xf6, 0x00, 0xa6, 0x11 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x04, 0x00 -.byte 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x04, 0x04, 0x00 -.byte 0x1d, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x04, 0x00 -.byte 0x1d, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x02, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812C9E4 -gUnknown_812C9E4: @ 812C9E4 -.byte 0xf6, 0x00, 0xbe, 0x11 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x04, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x04, 0x04, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x04, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x09, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812CB34 -gUnknown_812CB34: @ 812CB34 -.byte 0xf6, 0x00, 0xd6, 0x11 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x05, 0x00 -.byte 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x04, 0x05, 0x00 -.byte 0x21, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x05, 0x00 -.byte 0x21, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x12, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812CC84 -gUnknown_812CC84: @ 812CC84 -.byte 0xf6, 0x00, 0xee, 0x11 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x05, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x04, 0x05, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x05, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x18, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812CDD4 -gUnknown_812CDD4: @ 812CDD4 -.byte 0xf6, 0x00, 0x06, 0x12 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x06, 0x00 -.byte 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x04, 0x06, 0x00 -.byte 0x24, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x06, 0x00 -.byte 0x24, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x1e, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812CF24 -gUnknown_812CF24: @ 812CF24 -.byte 0xf6, 0x00, 0x1e, 0x12 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x07, 0x00 -.byte 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x24, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812D044 -gUnknown_812D044: @ 812D044 -.byte 0xf6, 0x00, 0x34, 0x12 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x07, 0x00 -.byte 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x04, 0x07, 0x00 -.byte 0x27, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x07, 0x00 -.byte 0x27, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x26, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812D194 -gUnknown_812D194: @ 812D194 -.byte 0xf6, 0x00, 0x4c, 0x12 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x07, 0x00 -.byte 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x04, 0x07, 0x00 -.byte 0x28, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x07, 0x00 -.byte 0x28, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x28, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812D2E4 -gUnknown_812D2E4: @ 812D2E4 -.byte 0xf6, 0x00, 0x64, 0x12 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x07, 0x00 -.byte 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x04, 0x07, 0x00 -.byte 0x29, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x07, 0x00 -.byte 0x29, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x2a, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812D434 -gUnknown_812D434: @ 812D434 -.byte 0xf6, 0x00, 0x7c, 0x12 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x07, 0x00 -.byte 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x04, 0x07, 0x00 -.byte 0x2a, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x07, 0x00 -.byte 0x2a, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x2c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812D584 -gUnknown_812D584: @ 812D584 -.byte 0xf6, 0x00, 0x94, 0x12 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x08, 0x00 -.byte 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x04, 0x08, 0x00 -.byte 0x2c, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x08, 0x00 -.byte 0x2c, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x33, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812D6D4 -gUnknown_812D6D4: @ 812D6D4 -.byte 0xf6, 0x00, 0xac, 0x12 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x09, 0x00 -.byte 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x04, 0x09, 0x00 -.byte 0x2e, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x09, 0x00 -.byte 0x2e, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x39, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812D824 -gUnknown_812D824: @ 812D824 -.byte 0xf6, 0x00, 0xc4, 0x12 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x09, 0x00 -.byte 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x04, 0x09, 0x00 -.byte 0x2f, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x09, 0x00 -.byte 0x2f, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x3c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812D974 -gUnknown_812D974: @ 812D974 -.byte 0xf6, 0x00, 0xdc, 0x12 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x0a, 0x00 -.byte 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x04, 0x0a, 0x00 -.byte 0x31, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0a, 0x00 -.byte 0x31, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x42, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812DAC4 -gUnknown_812DAC4: @ 812DAC4 -.byte 0xf6, 0x00, 0xf4, 0x12 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x0b, 0x00 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x04, 0x0b, 0x00 -.byte 0x33, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0b, 0x00 -.byte 0x33, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x4c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812DC14 -gUnknown_812DC14: @ 812DC14 -.byte 0xf6, 0x00, 0x0c, 0x13 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x04, 0x0c, 0x00 -.byte 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff -.byte 0xca, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x07, 0x0c, 0x00 -.byte 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x08, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x5b, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x09, 0x00 -.byte 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0a, 0x00 -.byte 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x0b, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0xff -.byte 0xca, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812DEA4 -gUnknown_812DEA4: @ 812DEA4 -.byte 0xf6, 0x00, 0x39, 0x13 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x01, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x0c, 0x00 -.byte 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x04, 0x0c, 0x00 -.byte 0x36, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x0c, 0x00 -.byte 0x36, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x05, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x5f, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812DFF4 -gUnknown_812DFF4: @ 812DFF4 -.byte 0xf6, 0x00, 0x51, 0x13 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x29, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812E0E4 -gUnknown_812E0E4: @ 812E0E4 -.byte 0xf6, 0x00, 0x63, 0x13 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x2a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812E1D4 -gUnknown_812E1D4: @ 812E1D4 -.byte 0xf6, 0x00, 0x75, 0x13 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x2b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812E2C4 -gUnknown_812E2C4: @ 812E2C4 -.byte 0xf6, 0x00, 0x87, 0x13 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x2c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812E3B4 -gUnknown_812E3B4: @ 812E3B4 -.byte 0xf6, 0x00, 0x99, 0x13 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x2d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8c, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812E4A4 -gUnknown_812E4A4: @ 812E4A4 -.byte 0xf6, 0x00, 0xab, 0x13 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xf2, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_812E5B4 -.byte 0xb9, 0x00, 0x03, 0x00 -.byte 0x12, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x13, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00 -.byte 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x03, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812E5B4 -gUnknown_812E5B4: @ 812E5B4 -.string "GETOUT U00E01A\n\0" -.align 2, 0 - -.global gUnknown_812E5C4 -gUnknown_812E5C4: @ 812E5C4 -.byte 0xf6, 0x00, 0xbf, 0x13 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xf2, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_812E6A4 -.byte 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00 -.byte 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x02, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0xf9, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x02, 0x00 -.byte 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812E6A4 -gUnknown_812E6A4: @ 812E6A4 -.string "GETOUT R00E01A\n\0" -.align 2, 0 - -.global gUnknown_812E6B4 -gUnknown_812E6B4: @ 812E6B4 -.byte 0xf6, 0x00, 0xd0, 0x13 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xf2, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_812EEA8 -.byte 0xb9, 0x00, 0x03, 0x00 -.byte 0x12, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x03, 0x00 -.byte 0x13, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x02, 0x00 -.byte 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf2, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_812EE94 -.byte 0xc0, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x04, 0x00 -.byte 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x05, 0x00 -.byte 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x06, 0x18, 0x00 -.byte 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x07, 0x18, 0x00 -.byte 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x09, 0x00 -.byte 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0a, 0x00 -.byte 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0b, 0x00 -.byte 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0c, 0x00 -.byte 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0d, 0x00 -.byte 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0e, 0x00 -.byte 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x0f, 0x00 -.byte 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x10, 0x00 -.byte 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x11, 0x00 -.byte 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x12, 0x00 -.byte 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x13, 0x00 -.byte 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x14, 0x00 -.byte 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x15, 0x00 -.byte 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x16, 0x00 -.byte 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x17, 0x00 -.byte 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x18, 0x00 -.byte 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x19, 0x00 -.byte 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x1a, 0x00 -.byte 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x1b, 0x00 -.byte 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x1c, 0x00 -.byte 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x1d, 0x00 -.byte 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x1e, 0x00 -.byte 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x1f, 0x00 -.byte 0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x01, 0x00, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x01, 0x01, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x01, 0x02, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x01, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x01, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x01, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x01, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x10, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x01, 0x07, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x11, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x01, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x12, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x01, 0x09, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x01, 0x0a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x01, 0x0b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x15, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x01, 0x0c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x16, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x01, 0x0d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x17, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x01, 0x0e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x18, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x01, 0x0f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x19, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x01, 0x10, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1a, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x01, 0x11, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1b, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x01, 0x12, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1c, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x01, 0x13, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1d, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x01, 0x14, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1e, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x01, 0x15, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x1f, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x03, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x08, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x06, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x20, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x66, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x04, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8e, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x05, 0x00 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x00, 0x8f, 0x01 -.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812EE94 -gUnknown_812EE94: @ 812EE94 -.string "GETOUT T00E01A 7&8\n\0" -.align 2, 0 - -.global gUnknown_812EEA8 -gUnknown_812EEA8: @ 812EEA8 -.string "GETOUT T00E01A\n\0" -.align 2, 0 - -.global gUnknown_812EEB8 -gUnknown_812EEB8: @ 812EEB8 -.byte 0xf6, 0x00, 0x51, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xf2, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_812EFE8 -.byte 0xb3, 0x01, 0x03, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x02, 0x03, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x04, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x03, 0x18, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xbc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x05, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x03, 0x18, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xc4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812EFE8 -gUnknown_812EFE8: @ 812EFE8 -.string "GETOUT M01E07T\n\0" -.align 2, 0 - -.global gUnknown_812EFF8 -gUnknown_812EFF8: @ 812EFF8 -.byte 0xf6, 0x00, 0x68, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0xf2, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_812F128 -.byte 0xb3, 0x01, 0x03, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x02, 0x03, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x04, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x03, 0x18, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xca, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xcb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x05, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xb3, 0x03, 0x18, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xd2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0xd3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe9, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812F128 -gUnknown_812F128: @ 812F128 -.string "GETOUT M01E08T\n\0" -.align 2, 0 - -.global gUnknown_812F138 -gUnknown_812F138: @ 812F138 -.byte 0xf6, 0x00, 0x7f, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x3b, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe3, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_812F198 -gUnknown_812F198: @ 812F198 -.byte 0xf6, 0x00, 0x88, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.4byte gUnknown_811EEA4 -.byte 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x3b, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xe4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0x9a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 -.byte 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - -.global gFunctionScriptTable -gFunctionScriptTable: @ 812F1F8 -.byte 0x00, 0x00, 0x04, 0x00 -.4byte gUnknown_8132368 -.4byte gUnknown_811EE64 -.byte 0x01, 0x00, 0x04, 0x00 -.4byte gUnknown_8132354 -.4byte gUnknown_811EEC8 -.byte 0x02, 0x00, 0x04, 0x00 -.4byte gUnknown_8132340 -.4byte gUnknown_811EEF8 -.byte 0x03, 0x00, 0x04, 0x00 -.4byte gUnknown_8132330 -.4byte gUnknown_811EF28 -.byte 0x04, 0x00, 0x04, 0x00 -.4byte gUnknown_8132320 -.4byte gUnregisteredDialogScript -.byte 0x05, 0x00, 0x04, 0x00 -.4byte gUnknown_8132308 -.4byte gUnknown_811EFA8 -.byte 0x06, 0x00, 0x04, 0x00 -.4byte gUnknown_81322F4 -.4byte gUnknown_811EFD8 -.byte 0x07, 0x00, 0x04, 0x00 -.4byte gUnknown_81322E8 -.4byte gUnknown_811F048 -.byte 0x08, 0x00, 0x04, 0x00 -.4byte gUnknown_81322D4 -.4byte gUnknown_811F0A8 -.byte 0x09, 0x00, 0x04, 0x00 -.4byte gUnknown_81322C4 -.4byte gUnknown_811F0E8 -.byte 0x0a, 0x00, 0x04, 0x00 -.4byte gUnknown_81322B4 -.4byte gUnknown_811F168 -.byte 0x0b, 0x00, 0x04, 0x00 -.4byte gUnknown_81322A8 -.4byte gUnknown_811F188 -.byte 0x0c, 0x00, 0x04, 0x00 -.4byte gUnknown_8132298 -.4byte gUnknown_811F214 -.byte 0x0d, 0x00, 0x04, 0x00 -.4byte gUnknown_8132280 -.4byte gUnknown_811F36C -.byte 0x0e, 0x00, 0x05, 0x00 -.4byte gUnknown_8132270 -.4byte gUnknown_811F7C0 -.byte 0x0f, 0x00, 0x05, 0x00 -.4byte gUnknown_8132260 -.4byte gUnknown_811F860 -.byte 0x10, 0x00, 0x05, 0x00 -.4byte gUnknown_813224C -.4byte gUnknown_811F920 -.byte 0x11, 0x00, 0x05, 0x00 -.4byte gUnknown_8132234 -.4byte gUnknown_811F990 -.byte 0x12, 0x00, 0x05, 0x00 -.4byte gUnknown_813221C -.4byte gUnknown_811FA00 -.byte 0x13, 0x00, 0x05, 0x00 -.4byte gUnknown_8132208 -.4byte gUnknown_811FA70 -.byte 0x14, 0x00, 0x05, 0x00 -.4byte gUnknown_81321F4 -.4byte gUnknown_811FAD0 -.byte 0x15, 0x00, 0x05, 0x00 -.4byte gUnknown_81321E0 -.4byte gUnknown_811FB30 -.byte 0x16, 0x00, 0x05, 0x00 -.4byte gUnknown_81321CC -.4byte gUnknown_811FB80 -.byte 0x17, 0x00, 0x05, 0x00 -.4byte gUnknown_81321B8 -.4byte gUnknown_811FBD0 -.byte 0x18, 0x00, 0x05, 0x00 -.4byte gUnknown_81321A4 -.4byte gUnknown_811FC20 -.byte 0x19, 0x00, 0x05, 0x00 -.4byte gUnknown_8132198 -.4byte gUnknown_811FC70 -.byte 0x1a, 0x00, 0x05, 0x00 -.4byte gUnknown_813218C -.4byte gUnknown_811FCA0 -.byte 0x1b, 0x00, 0x05, 0x00 -.4byte gUnknown_8132180 -.4byte gUnknown_811FD10 -.byte 0x1c, 0x00, 0x05, 0x00 -.4byte gUnknown_8132174 -.4byte gUnknown_811FD80 -.byte 0x1d, 0x00, 0x05, 0x00 -.4byte gUnknown_8132168 -.4byte gUnknown_811FDE0 -.byte 0x1e, 0x00, 0x05, 0x00 -.4byte gUnknown_813215C -.4byte gUnknown_811FE40 -.byte 0x1f, 0x00, 0x05, 0x00 -.4byte gUnknown_8132150 -.4byte gUnknown_811FEA0 -.byte 0x20, 0x00, 0x09, 0x00 -.4byte gUnknown_8132144 -.4byte gUnknown_811FF00 -.byte 0x21, 0x00, 0x09, 0x00 -.4byte gUnknown_8132130 -.4byte gUnknown_8120000 -.byte 0x22, 0x00, 0x09, 0x00 -.4byte gUnknown_8132118 -.4byte gUnknown_8120080 -.byte 0x23, 0x00, 0x09, 0x00 -.4byte gUnknown_8132100 -.4byte gUnknown_81200F0 -.byte 0x24, 0x00, 0x09, 0x00 -.4byte gUnknown_81320E8 -.4byte gUnknown_8120160 -.byte 0x25, 0x00, 0x09, 0x00 -.4byte gUnknown_81320D8 -.4byte gUnknown_81201D0 -.byte 0x26, 0x00, 0x09, 0x00 -.4byte gUnknown_81320C4 -.4byte gUnknown_8120240 -.byte 0x27, 0x00, 0x09, 0x00 -.4byte gUnknown_81320B4 -.4byte gUnknown_81202C0 -.byte 0x28, 0x00, 0x09, 0x00 -.4byte gUnknown_81320A8 -.4byte gUnknown_8120370 -.byte 0x29, 0x00, 0x09, 0x00 -.4byte gUnknown_8132098 -.4byte gUnknown_81203B0 -.byte 0x2a, 0x00, 0x09, 0x00 -.4byte gUnknown_813208C -.4byte gUnknown_81203F0 -.byte 0x2b, 0x00, 0x09, 0x00 -.4byte gUnknown_8132080 -.4byte gUnknown_8120430 -.byte 0x2c, 0x00, 0x09, 0x00 -.4byte gUnknown_813206C -.4byte gUnknown_8120470 -.byte 0x2d, 0x00, 0x09, 0x00 -.4byte gUnknown_813205C -.4byte gUnknown_81204A0 -.byte 0x2e, 0x00, 0x09, 0x00 -.4byte gUnknown_8132048 -.4byte gUnknown_81204D0 -.byte 0x2f, 0x00, 0x09, 0x00 -.4byte gUnknown_8132038 -.4byte gUnknown_8120500 -.byte 0x30, 0x00, 0x09, 0x00 -.4byte gUnknown_8132024 -.4byte gUnknown_8120530 -.byte 0x31, 0x00, 0x09, 0x00 -.4byte gUnknown_8132014 -.4byte gUnknown_8120560 -.byte 0x32, 0x00, 0x05, 0x00 -.4byte gUnknown_8132000 -.4byte gUnknown_8120590 -.byte 0x33, 0x00, 0x09, 0x00 -.4byte gUnknown_8131FE4 -.4byte gUnknown_81205F0 -.byte 0x34, 0x00, 0x09, 0x00 -.4byte gUnknown_8131FC8 -.4byte gUnknown_8120670 -.byte 0x35, 0x00, 0x08, 0x00 -.4byte gUnknown_8131FB8 -.4byte gUnknown_81206E0 -.byte 0x36, 0x00, 0x08, 0x00 -.4byte gUnknown_8131FA8 -.4byte gUnknown_8120770 -.byte 0x37, 0x00, 0x08, 0x00 -.4byte gUnknown_8131F94 -.4byte gUnknown_81207D0 -.byte 0x38, 0x00, 0x07, 0x00 -.4byte gUnknown_8131F84 -.byte 0x00, 0x00, 0x00, 0x00, 0x39, 0x00, 0x07, 0x00 -.4byte gUnknown_8131F74 -.byte 0x00, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x07, 0x00 -.4byte gUnknown_8131F64 -.4byte gUnknown_8120840 -.byte 0x3b, 0x00, 0x07, 0x00 -.4byte gUnknown_8131F48 -.4byte gUnknown_8120880 -.byte 0x3c, 0x00, 0x07, 0x00 -.4byte gUnknown_8131F28 -.4byte gUnknown_81209CC -.byte 0x3d, 0x00, 0x07, 0x00 -.4byte gUnknown_8131F08 -.4byte gUnknown_8120A7C -.byte 0x3e, 0x00, 0x07, 0x00 -.4byte gUnknown_8131EE8 -.4byte gUnknown_8120B2C -.byte 0x3f, 0x00, 0x07, 0x00 -.4byte gUnknown_8131ED8 -.4byte gNextSaveFunc -.byte 0x40, 0x00, 0x07, 0x00 -.4byte gUnknown_8131EC8 -.4byte gUnknown_8120CDC -.byte 0x41, 0x00, 0x07, 0x00 -.4byte gUnknown_8131EBC -.4byte gUnknown_8120DB0 -.byte 0x42, 0x00, 0x07, 0x00 -.4byte gUnknown_8131EAC -.4byte gUnknown_8120E60 -.byte 0x43, 0x00, 0x07, 0x00 -.4byte gUnknown_8131E90 -.4byte gUnknown_8120EC0 -.byte 0x44, 0x00, 0x07, 0x00 -.4byte gUnknown_8131E80 -.4byte gUnknown_8121034 -.byte 0x45, 0x00, 0x07, 0x00 -.4byte gUnknown_8131E70 -.4byte gUnknown_8121074 -.byte 0x46, 0x00, 0x07, 0x00 -.4byte gUnknown_8131E60 -.4byte gUnknown_8121124 -.byte 0x47, 0x00, 0x07, 0x00 -.4byte gUnknown_8131E4C -.4byte gUnknown_8121154 -.byte 0x48, 0x00, 0x07, 0x00 -.4byte gUnknown_8131E38 -.4byte gUnknown_8121184 -.byte 0x49, 0x00, 0x07, 0x00 -.4byte gUnknown_8131E24 -.4byte gUnknown_81211B4 -.byte 0x4a, 0x00, 0x07, 0x00 -.4byte gUnknown_8131E10 -.4byte gUnknown_81211E4 -.byte 0x4b, 0x00, 0x07, 0x00 -.4byte gUnknown_8131DFC -.4byte gUnknown_8121214 -.byte 0x4c, 0x00, 0x07, 0x00 -.4byte gUnknown_8131DE8 -.4byte gUnknown_8121244 -.byte 0x4d, 0x00, 0x07, 0x00 -.4byte gUnknown_8131DD0 -.4byte gUnknown_8121274 -.byte 0x4e, 0x00, 0x07, 0x00 -.4byte gUnknown_8131DB8 -.4byte gUnknown_81213C4 -.byte 0x4f, 0x00, 0x07, 0x00 -.4byte gUnknown_8131DA0 -.4byte gUnknown_81214B4 -.byte 0x50, 0x00, 0x07, 0x00 -.4byte gUnknown_8131D88 -.4byte gUnknown_81215A4 -.byte 0x51, 0x00, 0x07, 0x00 -.4byte gUnknown_8131D70 -.4byte gUnknown_81215F4 -.byte 0x52, 0x00, 0x07, 0x00 -.4byte gUnknown_8131D58 -.4byte gUnknown_81217A4 -.byte 0x53, 0x00, 0x07, 0x00 -.4byte gUnknown_8131D40 -.4byte gUnknown_81218D4 -.byte 0x54, 0x00, 0x07, 0x00 -.4byte gUnknown_8131D28 -.4byte gUnknown_8121A04 -.byte 0x55, 0x00, 0x07, 0x00 -.4byte gUnknown_8131D18 -.4byte gUnknown_8121A54 -.byte 0x56, 0x00, 0x07, 0x00 -.4byte gUnknown_8131D04 -.4byte gUnknown_8121AA4 -.byte 0x57, 0x00, 0x07, 0x00 -.4byte gUnknown_8131CF4 -.4byte gUnknown_8121AF4 -.byte 0x58, 0x00, 0x07, 0x00 -.4byte gUnknown_8131CE0 -.4byte gUnknown_8121B44 -.byte 0x59, 0x00, 0x07, 0x00 -.4byte gUnknown_8131CD4 -.4byte gUnknown_8121B94 -.byte 0x5a, 0x00, 0x07, 0x00 -.4byte gUnknown_8131CC0 -.4byte gUnknown_8121BE4 -.byte 0x5b, 0x00, 0x07, 0x00 -.4byte gUnknown_8131CB0 -.4byte gUnknown_8121C14 -.byte 0x5c, 0x00, 0x07, 0x00 -.4byte gUnknown_8131CA0 -.4byte gUnknown_8121C44 -.byte 0x5d, 0x00, 0x07, 0x00 -.4byte gUnknown_8131C8C -.4byte gUnknown_8121C84 -.byte 0x5e, 0x00, 0x07, 0x00 -.4byte gUnknown_8131C7C -.4byte gUnknown_8121CB4 -.byte 0x5f, 0x00, 0x07, 0x00 -.4byte gUnknown_8131C6C -.4byte gUnknown_8121D04 -.byte 0x60, 0x00, 0x07, 0x00 -.4byte gUnknown_8131C5C -.4byte gUnknown_8121D44 -.byte 0x61, 0x00, 0x07, 0x00 -.4byte gUnknown_8131C4C -.4byte gUnknown_8121D94 -.byte 0x62, 0x00, 0x09, 0x00 -.4byte gUnknown_8131C3C -.4byte gUnknown_8121DF4 -.byte 0x63, 0x00, 0x09, 0x00 -.4byte gUnknown_8131C2C -.4byte gUnknown_8121E74 -.byte 0x64, 0x00, 0x09, 0x00 -.4byte gUnknown_8131C18 -.4byte gUnknown_8121F14 -.byte 0x65, 0x00, 0x09, 0x00 -.4byte gUnknown_8131C04 -.4byte gUnknown_8121F54 -.byte 0x66, 0x00, 0x07, 0x00 -.4byte gUnknown_8131BF4 -.4byte gUnknown_8121F94 -.byte 0x67, 0x00, 0x07, 0x00 -.4byte gUnknown_8131BE0 -.4byte gUnknown_81226E4 -.byte 0x68, 0x00, 0x07, 0x00 -.4byte gUnknown_8131BC8 -.4byte gUnknown_8122724 -.byte 0x69, 0x00, 0x07, 0x00 -.4byte gUnknown_8131BAC -.4byte gUnknown_812281C -.byte 0x6a, 0x00, 0x07, 0x00 -.4byte gUnknown_8131B90 -.4byte gUnknown_8122BF8 -.byte 0x6b, 0x00, 0x07, 0x00 -.4byte gUnknown_8131B7C -.4byte gUnknown_8122EB8 -.byte 0x6c, 0x00, 0x07, 0x00 -.4byte gUnknown_8131B68 -.4byte gUnknown_8123A18 -.byte 0x6d, 0x00, 0x07, 0x00 -.4byte gUnknown_8131B54 -.4byte gUnknown_8124268 -.byte 0x6e, 0x00, 0x07, 0x00 -.4byte gUnknown_8131B38 -.4byte gUnknown_8124BB8 -.byte 0x6f, 0x00, 0x07, 0x00 -.4byte gUnknown_8131B1C -.4byte gUnknown_8124F80 -.byte 0x70, 0x00, 0x07, 0x00 -.4byte gUnknown_8131B0C -.4byte gUnknown_8124FC0 -.byte 0x71, 0x00, 0x07, 0x00 -.4byte gUnknown_8131AFC -.4byte gUnknown_8125000 -.byte 0x72, 0x00, 0x07, 0x00 -.4byte gUnknown_8131AF0 -.4byte gUnknown_8125070 -.byte 0x73, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131AE8 -.4byte gUnknown_8125090 -.byte 0x74, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131AE0 -.4byte gUnknown_81250D0 -.byte 0x75, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131AD8 -.4byte gUnknown_8125110 -.byte 0x76, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131AD0 -.4byte gUnknown_8125180 -.byte 0x77, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131ABC -.4byte gUnknown_81251C0 -.byte 0x78, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131AA8 -.4byte gUnknown_8125230 -.byte 0x79, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131A94 -.4byte gUnknown_8125270 -.byte 0x7a, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131A80 -.4byte gUnknown_81252A0 -.byte 0x7b, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131A6C -.4byte gUnknown_8125350 -.byte 0x7c, 0x00, 0x0c, 0x00 -.4byte gUnknown_8131A58 -.4byte gUnknown_8125390 -.byte 0x7d, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131A44 -.4byte gUnknown_81253C0 -.byte 0x7e, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131A30 -.4byte gUnknown_8125400 -.byte 0x7f, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131A1C -.4byte gUnknown_8125440 -.byte 0x80, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131A08 -.4byte gUnknown_8125490 -.byte 0x81, 0x00, 0x0a, 0x00 -.4byte gUnknown_81319F4 -.4byte gUnknown_81254C0 -.byte 0x82, 0x00, 0x0a, 0x00 -.4byte gUnknown_81319E0 -.4byte gUnknown_81254F0 -.byte 0x83, 0x00, 0x0a, 0x00 -.4byte gUnknown_81319CC -.4byte gUnknown_8125580 -.byte 0x84, 0x00, 0x0a, 0x00 -.4byte gUnknown_81319B8 -.4byte gUnknown_81255E0 -.byte 0x85, 0x00, 0x0a, 0x00 -.4byte gUnknown_81319A4 -.4byte gUnknown_8125630 -.byte 0x86, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131990 -.4byte gUnknown_8125680 -.byte 0x87, 0x00, 0x0a, 0x00 -.4byte gUnknown_813197C -.4byte gUnknown_81256F0 -.byte 0x88, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131968 -.4byte gUnknown_8125730 -.byte 0x89, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131954 -.4byte gUnknown_8125770 -.byte 0x8a, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131940 -.4byte gUnknown_81257A0 -.byte 0x8b, 0x00, 0x0a, 0x00 -.4byte gUnknown_813192C -.4byte gUnknown_81257E0 -.byte 0x8c, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131918 -.4byte gUnknown_8125860 -.byte 0x8d, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131904 -.4byte gUnknown_81258A0 -.byte 0x8e, 0x00, 0x0a, 0x00 -.4byte gUnknown_81318F0 -.4byte gUnknown_8125900 -.byte 0x8f, 0x00, 0x0a, 0x00 -.4byte gUnknown_81318DC -.4byte gUnknown_81259B0 -.byte 0x90, 0x00, 0x0a, 0x00 -.4byte gUnknown_81318C8 -.4byte gUnknown_8125A50 -.byte 0x91, 0x00, 0x0a, 0x00 -.4byte gUnknown_81318B4 -.4byte gUnknown_8125AA0 -.byte 0x92, 0x00, 0x0a, 0x00 -.4byte gUnknown_81318A0 -.4byte gUnknown_8125AF0 -.byte 0x93, 0x00, 0x0a, 0x00 -.4byte gUnknown_813188C -.4byte gUnknown_8125B30 -.byte 0x94, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131878 -.4byte gUnknown_8125B80 -.byte 0x95, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131864 -.4byte gUnknown_8125BB0 -.byte 0x96, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131850 -.4byte gUnknown_8125BF0 -.byte 0x97, 0x00, 0x0a, 0x00 -.4byte gUnknown_813183C -.4byte gUnknown_8125C20 -.byte 0x98, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131828 -.4byte gUnknown_8125CB0 -.byte 0x99, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131814 -.4byte gUnknown_8125CF0 -.byte 0x9a, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131800 -.4byte gUnknown_8125D30 -.byte 0x9b, 0x00, 0x0a, 0x00 -.4byte gUnknown_81317EC -.4byte gUnknown_8125DB0 -.byte 0x9c, 0x00, 0x0a, 0x00 -.4byte gUnknown_81317D8 -.4byte gUnknown_8125DE0 -.byte 0x9d, 0x00, 0x0c, 0x00 -.4byte gUnknown_81317C4 -.4byte gUnknown_8125E20 -.byte 0x9e, 0x00, 0x0a, 0x00 -.4byte gUnknown_81317B0 -.4byte gUnknown_8125E50 -.byte 0x9f, 0x00, 0x0a, 0x00 -.4byte gUnknown_813179C -.4byte gUnknown_8125EE0 -.byte 0xa0, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131788 -.4byte gUnknown_8125F20 -.byte 0xa1, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131774 -.4byte gUnknown_8125F60 -.byte 0xa2, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131760 -.4byte gUnknown_8125FB0 -.byte 0xa3, 0x00, 0x0a, 0x00 -.4byte gUnknown_813174C -.4byte gUnknown_8125FE0 -.byte 0xa4, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131738 -.4byte gUnknown_8126020 -.byte 0xa5, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131724 -.4byte gUnknown_8126050 -.byte 0xa6, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131710 -.4byte gUnknown_8126080 -.byte 0xa7, 0x00, 0x0a, 0x00 -.4byte gUnknown_81316FC -.4byte gUnknown_8126100 -.byte 0xa8, 0x00, 0x0a, 0x00 -.4byte gUnknown_81316E8 -.4byte gUnknown_8126140 -.byte 0xa9, 0x00, 0x0a, 0x00 -.4byte gUnknown_81316D4 -.4byte gUnknown_8126180 -.byte 0xaa, 0x00, 0x0a, 0x00 -.4byte gUnknown_81316C0 -.4byte gUnknown_81261D0 -.byte 0xab, 0x00, 0x0a, 0x00 -.4byte gUnknown_81316AC -.4byte gUnknown_8126200 -.byte 0xac, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131698 -.4byte gUnknown_8126240 -.byte 0xad, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131684 -.4byte gUnknown_8126270 -.byte 0xae, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131670 -.4byte gUnknown_81262F0 -.byte 0xaf, 0x00, 0x0a, 0x00 -.4byte gUnknown_813165C -.4byte gUnknown_8126330 -.byte 0xb0, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131648 -.4byte gUnknown_8126370 -.byte 0xb1, 0x00, 0x0c, 0x00 -.4byte gUnknown_8131634 -.4byte gUnknown_81263B0 -.byte 0xb2, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131620 -.4byte gUnknown_81263E0 -.byte 0xb3, 0x00, 0x0a, 0x00 -.4byte gUnknown_813160C -.4byte gUnknown_8126420 -.byte 0xb4, 0x00, 0x0a, 0x00 -.4byte gUnknown_81315F8 -.4byte gUnknown_8126460 -.byte 0xb5, 0x00, 0x0a, 0x00 -.4byte gUnknown_81315E4 -.4byte gUnknown_81264F0 -.byte 0xb6, 0x00, 0x0a, 0x00 -.4byte gUnknown_81315D0 -.4byte gUnknown_8126530 -.byte 0xb7, 0x00, 0x0a, 0x00 -.4byte gUnknown_81315BC -.4byte gUnknown_8126590 -.byte 0xb8, 0x00, 0x0a, 0x00 -.4byte gUnknown_81315A8 -.4byte gUnknown_81265E0 -.byte 0xb9, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131594 -.4byte gUnknown_81266A0 -.byte 0xba, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131580 -.4byte gUnknown_81266E0 -.byte 0xbb, 0x00, 0x0a, 0x00 -.4byte gUnknown_813156C -.4byte gUnknown_8126710 -.byte 0xbc, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131558 -.4byte gUnknown_81267D0 -.byte 0xbd, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131544 -.4byte gUnknown_8126800 -.byte 0xbe, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131530 -.4byte gUnknown_8126830 -.byte 0xbf, 0x00, 0x0a, 0x00 -.4byte gUnknown_813151C -.4byte gUnknown_8126870 -.byte 0xc0, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131508 -.4byte gUnknown_81268A0 -.byte 0xc1, 0x00, 0x0a, 0x00 -.4byte gUnknown_81314F4 -.4byte gUnknown_81268D0 -.byte 0xc2, 0x00, 0x0a, 0x00 -.4byte gUnknown_81314E0 -.4byte gUnknown_8126900 -.byte 0xc3, 0x00, 0x0a, 0x00 -.4byte gUnknown_81314CC -.4byte gUnknown_81269A0 -.byte 0xc4, 0x00, 0x0a, 0x00 -.4byte gUnknown_81314B8 -.4byte gUnknown_81269D0 -.byte 0xc5, 0x00, 0x0a, 0x00 -.4byte gUnknown_81314A4 -.4byte gUnknown_8126A00 -.byte 0xc6, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131490 -.4byte gUnknown_8126A80 -.byte 0xc7, 0x00, 0x0a, 0x00 -.4byte gUnknown_813147C -.4byte gUnknown_8126AC0 -.byte 0xc8, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131468 -.4byte gUnknown_8126AF0 -.byte 0xc9, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131454 -.4byte gUnknown_8126B70 -.byte 0xca, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131440 -.4byte gUnknown_8126BE0 -.byte 0xcb, 0x00, 0x0a, 0x00 -.4byte gUnknown_813142C -.4byte gUnknown_8126C10 -.byte 0xcc, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131418 -.4byte gUnknown_8126C40 -.byte 0xcd, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131404 -.4byte gUnknown_8126CC0 -.byte 0xce, 0x00, 0x0a, 0x00 -.4byte gUnknown_81313F0 -.4byte gUnknown_8126D00 -.byte 0xcf, 0x00, 0x0a, 0x00 -.4byte gUnknown_81313DC -.4byte gUnknown_8126D30 -.byte 0xd0, 0x00, 0x0a, 0x00 -.4byte gUnknown_81313C8 -.4byte gUnknown_8126D60 -.byte 0xd1, 0x00, 0x0a, 0x00 -.4byte gUnknown_81313B4 -.4byte gUnknown_8126D90 -.byte 0xd2, 0x00, 0x0a, 0x00 -.4byte gUnknown_81313A0 -.4byte gUnknown_8126E10 -.byte 0xd3, 0x00, 0x0a, 0x00 -.4byte gUnknown_813138C -.4byte gUnknown_8126E40 -.byte 0xd4, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131378 -.4byte gUnknown_8126E70 -.byte 0xd5, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131364 -.4byte gUnknown_8126ED0 -.byte 0xd6, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131350 -.4byte gUnknown_8126F10 -.byte 0xd7, 0x00, 0x0a, 0x00 -.4byte gUnknown_813133C -.4byte gUnknown_8126F90 -.byte 0xd8, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131328 -.4byte gUnknown_8126FD0 -.byte 0xd9, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131314 -.4byte gUnknown_8127010 -.byte 0xda, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131300 -.4byte gUnknown_8127070 -.byte 0xdb, 0x00, 0x0a, 0x00 -.4byte gUnknown_81312EC -.4byte gUnknown_81270B0 -.byte 0xdc, 0x00, 0x0a, 0x00 -.4byte gUnknown_81312D8 -.4byte gUnknown_8127110 -.byte 0xdd, 0x00, 0x0a, 0x00 -.4byte gUnknown_81312C4 -.4byte gUnknown_81271A0 -.byte 0xde, 0x00, 0x0a, 0x00 -.4byte gUnknown_81312B0 -.4byte gUnknown_81271F0 -.byte 0xdf, 0x00, 0x0a, 0x00 -.4byte gUnknown_813129C -.4byte gUnknown_8127220 -.byte 0xe0, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131288 -.4byte gUnknown_8127260 -.byte 0xe1, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131274 -.4byte gUnknown_8127290 -.byte 0xe2, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131260 -.4byte gUnknown_81272C0 -.byte 0xe3, 0x00, 0x0a, 0x00 -.4byte gUnknown_813124C -.4byte gUnknown_8127340 -.byte 0xe4, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131238 -.4byte gUnknown_81273F0 -.byte 0xe5, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131224 -.4byte gUnknown_81274B0 -.byte 0xe6, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131210 -.4byte gUnknown_8127510 -.byte 0xe7, 0x00, 0x0a, 0x00 -.4byte gUnknown_81311FC -.4byte gUnknown_8127590 -.byte 0xe8, 0x00, 0x0a, 0x00 -.4byte gUnknown_81311E8 -.4byte gUnknown_81275D0 -.byte 0xe9, 0x00, 0x0a, 0x00 -.4byte gUnknown_81311D4 -.4byte gUnknown_8127600 -.byte 0xea, 0x00, 0x0a, 0x00 -.4byte gUnknown_81311C0 -.4byte gUnknown_8127630 -.byte 0xeb, 0x00, 0x0a, 0x00 -.4byte gUnknown_81311AC -.4byte gUnknown_81276C0 -.byte 0xec, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131198 -.4byte gUnknown_81277F0 -.byte 0xed, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131184 -.4byte gUnknown_81278A0 -.byte 0xee, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131170 -.4byte gUnknown_81278E0 -.byte 0xef, 0x00, 0x0a, 0x00 -.4byte gUnknown_813115C -.4byte gUnknown_8127930 -.byte 0xf0, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131148 -.4byte gUnknown_8127970 -.byte 0xf1, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131134 -.4byte gUnknown_81279C0 -.byte 0xf2, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131120 -.4byte gUnknown_8127A10 -.byte 0xf3, 0x00, 0x0a, 0x00 -.4byte gUnknown_813110C -.4byte gUnknown_8127A60 -.byte 0xf4, 0x00, 0x0a, 0x00 -.4byte gUnknown_81310F8 -.4byte gUnknown_8127AB0 -.byte 0xf5, 0x00, 0x0a, 0x00 -.4byte gUnknown_81310E4 -.4byte gUnknown_8127B00 -.byte 0xf6, 0x00, 0x0a, 0x00 -.4byte gUnknown_81310D0 -.4byte gUnknown_8127B50 -.byte 0xf7, 0x00, 0x0a, 0x00 -.4byte gUnknown_81310BC -.4byte gUnknown_8127BA0 -.byte 0xf8, 0x00, 0x0a, 0x00 -.4byte gUnknown_81310A8 -.4byte gUnknown_8127BF0 -.byte 0xf9, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131094 -.4byte gUnknown_8127C30 -.byte 0xfa, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131080 -.4byte gUnknown_8127C80 -.byte 0xfb, 0x00, 0x0a, 0x00 -.4byte gUnknown_813106C -.4byte gUnknown_8127CF0 -.byte 0xfc, 0x00, 0x0a, 0x00 -.4byte gUnknown_8131058 -.4byte gUnknown_8127D20 -.byte 0xfd, 0x00, 0x0b, 0x00 -.4byte gUnknown_8131044 -.4byte gUnknown_8127D50 -.byte 0xfe, 0x00, 0x0b, 0x00 -.4byte gUnknown_813102C -.4byte gUnknown_8127DB0 -.byte 0xff, 0x00, 0x0b, 0x00 -.4byte gUnknown_8131018 -.4byte gUnknown_8127E20 -.byte 0x00, 0x01, 0x0c, 0x00 -.4byte gUnknown_8131004 -.4byte gUnknown_8127EA0 -.byte 0x01, 0x01, 0x0a, 0x00 -.4byte gUnknown_8130FF0 -.4byte gUnknown_8127F60 -.byte 0x02, 0x01, 0x0a, 0x00 -.4byte gUnknown_8130FDC -.4byte gUnknown_8127FF0 -.byte 0x03, 0x01, 0x0a, 0x00 -.4byte gUnknown_8130FC8 -.4byte gUnknown_8128030 -.byte 0x04, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130FB4 -.4byte gUnknown_81280C0 -.byte 0x05, 0x01, 0x0a, 0x00 -.4byte gUnknown_8130FA0 -.4byte gUnknown_81280F0 -.byte 0x06, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130F8C -.4byte gUnknown_8128160 -.byte 0x07, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130F78 -.4byte gUnknown_8128200 -.byte 0x08, 0x01, 0x0a, 0x00 -.4byte gUnknown_8130F64 -.4byte gUnknown_8128290 -.byte 0x09, 0x01, 0x0a, 0x00 -.4byte gUnknown_8130F50 -.4byte gUnknown_8128320 -.byte 0x0a, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130F3C -.4byte gUnknown_81283B0 -.byte 0x0b, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130F28 -.4byte gUnknown_81283F0 -.byte 0x0c, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130F14 -.4byte gUnknown_8128420 -.byte 0x0d, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130F00 -.4byte gUnknown_8128450 -.byte 0x0e, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130EEC -.4byte gUnknown_81284C0 -.byte 0x0f, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130ED8 -.4byte gUnknown_8128530 -.byte 0x10, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130EC4 -.4byte gUnknown_8128560 -.byte 0x11, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130EB0 -.4byte gUnknown_8128590 -.byte 0x12, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130E9C -.4byte gUnknown_81285D0 -.byte 0x13, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130E88 -.4byte gUnknown_8128650 -.byte 0x14, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130E74 -.4byte gUnknown_8128690 -.byte 0x15, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130E60 -.4byte gUnknown_8128710 -.byte 0x16, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130E4C -.4byte gUnknown_8128790 -.byte 0x17, 0x01, 0x0a, 0x00 -.4byte gUnknown_8130E38 -.4byte gUnknown_81287C0 -.byte 0x18, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130E24 -.4byte gUnknown_8128820 -.byte 0x19, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130E10 -.4byte gUnknown_81288A0 -.byte 0x1a, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130DFC -.4byte gUnknown_81288E0 -.byte 0x1b, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130DE4 -.4byte gUnknown_8128940 -.byte 0x1c, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130DD0 -.4byte gUnknown_81289B0 -.byte 0x1d, 0x01, 0x0a, 0x00 -.4byte gUnknown_8130DBC -.4byte gUnknown_8128A20 -.byte 0x1e, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130DA8 -.4byte gUnknown_8128A80 -.byte 0x1f, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130D94 -.4byte gUnknown_8128B00 -.byte 0x20, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130D80 -.4byte gUnknown_8128B40 -.byte 0x21, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130D6C -.4byte gUnknown_8128BA0 -.byte 0x22, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130D58 -.4byte gUnknown_8128C50 -.byte 0x23, 0x01, 0x0a, 0x00 -.4byte gUnknown_8130D44 -.4byte gUnknown_8128D00 -.byte 0x24, 0x01, 0x0a, 0x00 -.4byte gUnknown_8130D30 -.4byte gUnknown_8128D60 -.byte 0x25, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130D1C -.4byte gUnknown_8128E00 -.byte 0x26, 0x01, 0x0a, 0x00 -.4byte gUnknown_8130D08 -.4byte gUnknown_8128E30 -.byte 0x27, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130CF4 -.4byte gUnknown_8128ED0 -.byte 0x28, 0x01, 0x0a, 0x00 -.4byte gUnknown_8130CE0 -.4byte gUnknown_8128F00 -.byte 0x29, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130CCC -.4byte gUnknown_8128FA0 -.byte 0x2a, 0x01, 0x0a, 0x00 -.4byte gUnknown_8130CB8 -.4byte gUnknown_8128FD0 -.byte 0x2b, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130CA4 -.4byte gUnknown_8129070 -.byte 0x2c, 0x01, 0x0a, 0x00 -.4byte gUnknown_8130C90 -.4byte gUnknown_81290A0 -.byte 0x2d, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130C7C -.4byte gUnknown_8129120 -.byte 0x2e, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130C68 -.4byte gUnknown_8129150 -.byte 0x2f, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130C54 -.4byte gUnknown_8129180 -.byte 0x30, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130C3C -.4byte gUnknown_81291E0 -.byte 0x31, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130C28 -.4byte gUnknown_8129250 -.byte 0x32, 0x01, 0x0a, 0x00 -.4byte gUnknown_8130C14 -.4byte gUnknown_81292C0 -.byte 0x33, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130C00 -.4byte gUnknown_8129330 -.byte 0x34, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130BEC -.4byte gUnknown_81293B0 -.byte 0x35, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130BD8 -.4byte gUnknown_81293E0 -.byte 0x36, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130BC0 -.4byte gUnknown_8129440 -.byte 0x37, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130BAC -.4byte gUnknown_81294B0 -.byte 0x38, 0x01, 0x0a, 0x00 -.4byte gUnknown_8130B98 -.4byte gUnknown_8129570 -.byte 0x39, 0x01, 0x0a, 0x00 -.4byte gUnknown_8130B84 -.4byte gUnknown_8129600 -.byte 0x3a, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130B70 -.4byte gUnknown_8129680 -.byte 0x3b, 0x01, 0x0a, 0x00 -.4byte gUnknown_8130B5C -.4byte gUnknown_81296A0 -.byte 0x3c, 0x01, 0x0a, 0x00 -.4byte gUnknown_8130B48 -.4byte gUnknown_8129710 -.byte 0x3d, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130B34 -.4byte gUnknown_81297B0 -.byte 0x3e, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130B20 -.4byte gUnknown_81297F0 -.byte 0x3f, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130B0C -.4byte gUnknown_8129850 -.byte 0x40, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130AF8 -.4byte gUnknown_81298C0 -.byte 0x41, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130AE4 -.4byte gUnknown_81298F0 -.byte 0x42, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130AD0 -.4byte gUnknown_8129930 -.byte 0x43, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130ABC -.4byte gUnknown_81299B0 -.byte 0x44, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130AA8 -.4byte gUnknown_81299F0 -.byte 0x45, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130A94 -.4byte gUnknown_8129A50 -.byte 0x46, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130A80 -.4byte gUnknown_8129AC0 -.byte 0x47, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130A6C -.4byte gUnknown_8129AF0 -.byte 0x48, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130A58 -.4byte gUnknown_8129B20 -.byte 0x49, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130A44 -.4byte gUnknown_8129B50 -.byte 0x4a, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130A30 -.4byte gUnknown_8129B80 -.byte 0x4b, 0x01, 0x0a, 0x00 -.4byte gUnknown_8130A1C -.4byte gUnknown_8129BC0 -.byte 0x4c, 0x01, 0x0a, 0x00 -.4byte gUnknown_8130A08 -.4byte gUnknown_8129C50 -.byte 0x4d, 0x01, 0x0c, 0x00 -.4byte gUnknown_81309F4 -.4byte gUnknown_8129CE0 -.byte 0x4e, 0x01, 0x0c, 0x00 -.4byte gUnknown_81309E0 -.4byte gUnknown_8129D20 -.byte 0x4f, 0x01, 0x0a, 0x00 -.4byte gUnknown_81309CC -.4byte gUnknown_8129D40 -.byte 0x50, 0x01, 0x0c, 0x00 -.4byte gUnknown_81309B8 -.4byte gUnknown_812A034 -.byte 0x51, 0x01, 0x0a, 0x00 -.4byte gUnknown_81309A4 -.4byte gUnknown_812A064 -.byte 0x52, 0x01, 0x0a, 0x00 -.4byte gUnknown_8130990 -.4byte gUnknown_812A104 -.byte 0x53, 0x01, 0x0a, 0x00 -.4byte gUnknown_813097C -.4byte gUnknown_812A144 -.byte 0x54, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130968 -.4byte gUnknown_812A184 -.byte 0x55, 0x01, 0x0b, 0x00 -.4byte gUnknown_8130954 -.4byte gUnknown_812A1E4 -.byte 0x56, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130940 -.4byte gUnknown_812A264 -.byte 0x57, 0x01, 0x0c, 0x00 -.4byte gUnknown_813092C -.4byte gUnknown_812A294 -.byte 0x58, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130918 -.4byte gUnknown_812A2C4 -.byte 0x59, 0x01, 0x0a, 0x00 -.4byte gUnknown_8130904 -.4byte gUnknown_812A2F4 -.byte 0x5a, 0x01, 0x0a, 0x00 -.4byte gUnknown_81308F0 -.4byte gUnknown_812A344 -.byte 0x5b, 0x01, 0x0a, 0x00 -.4byte gUnknown_81308DC -.4byte gUnknown_812A384 -.byte 0x5c, 0x01, 0x0c, 0x00 -.4byte gUnknown_81308C8 -.4byte gUnknown_812A424 -.byte 0x5d, 0x01, 0x0a, 0x00 -.4byte gUnknown_81308B4 -.4byte gUnknown_812A454 -.byte 0x5e, 0x01, 0x0a, 0x00 -.4byte gUnknown_81308A0 -.4byte gUnknown_812A4A4 -.byte 0x5f, 0x01, 0x0a, 0x00 -.4byte gUnknown_813088C -.4byte gUnknown_812A4E4 -.byte 0x60, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130878 -.4byte gUnknown_812A5A4 -.byte 0x61, 0x01, 0x0c, 0x00 -.4byte gUnknown_8130864 -.4byte gUnknown_812A5D4 -.byte 0x62, 0x01, 0x07, 0x00 -.4byte gUnknown_8130850 -.4byte gUnknown_812A604 -.byte 0x63, 0x01, 0x01, 0x00 -.4byte gUnknown_8130840 -.4byte gUnknown_812A804 -.byte 0x64, 0x01, 0x01, 0x00 -.4byte gUnknown_8130834 -.4byte gUnknown_812A844 -.byte 0x65, 0x01, 0x02, 0x00 -.4byte gUnknown_8130824 -.byte 0x00, 0x00, 0x00, 0x00 - -.global gUnknown_81302C0 -gUnknown_81302C0: @ 81302C0 -.byte 0x66, 0x01, 0x02, 0x00 -.4byte gUnknown_8130814 -.4byte gUnknown_812A874 -.byte 0x67, 0x01, 0x02, 0x00 -.4byte gUnknown_8130804 -.4byte gUnknown_812A8D4 -.byte 0x68, 0x01, 0x02, 0x00 -.4byte gUnknown_81307F4 -.4byte gUnknown_812AA14 -.byte 0x69, 0x01, 0x02, 0x00 -.4byte gUnknown_81307E4 -.4byte gUnknown_812AB34 -.byte 0x6a, 0x01, 0x02, 0x00 -.4byte gUnknown_81307D4 -.4byte gUnknown_812AE04 -.byte 0x6b, 0x01, 0x02, 0x00 -.4byte gUnknown_81307C4 -.4byte gUnknown_812B0D4 -.byte 0x6c, 0x01, 0x02, 0x00 -.4byte gUnknown_81307B4 -.4byte gUnknown_812B224 -.byte 0x6d, 0x01, 0x02, 0x00 -.4byte gUnknown_81307A4 -.4byte gUnknown_812B554 -.byte 0x6e, 0x01, 0x02, 0x00 -.4byte gUnknown_8130794 -.4byte gUnknown_812B6A4 -.byte 0x6f, 0x01, 0x02, 0x00 -.4byte gUnknown_8130784 -.4byte gUnknown_812B7F4 -.byte 0x70, 0x01, 0x02, 0x00 -.4byte gUnknown_8130774 -.4byte gUnknown_812BB24 -.byte 0x71, 0x01, 0x02, 0x00 -.4byte gUnknown_8130764 -.4byte gUnknown_812BE54 -.byte 0x72, 0x01, 0x02, 0x00 -.4byte gUnknown_8130754 -.4byte gUnknown_812C154 -.byte 0x73, 0x01, 0x02, 0x00 -.4byte gUnknown_8130744 -.4byte gUnknown_812C484 -.byte 0x74, 0x01, 0x02, 0x00 -.4byte gUnknown_8130734 -.4byte gUnknown_812C7B4 -.byte 0x75, 0x01, 0x02, 0x00 -.4byte gUnknown_8130724 -.4byte gUnknown_812C894 -.byte 0x76, 0x01, 0x02, 0x00 -.4byte gUnknown_8130714 -.4byte gUnknown_812C9E4 -.byte 0x77, 0x01, 0x02, 0x00 -.4byte gUnknown_8130704 -.4byte gUnknown_812CB34 -.byte 0x78, 0x01, 0x02, 0x00 -.4byte gUnknown_81306F4 -.4byte gUnknown_812CC84 -.byte 0x79, 0x01, 0x02, 0x00 -.4byte gUnknown_81306E4 -.4byte gUnknown_812CDD4 -.byte 0x7a, 0x01, 0x02, 0x00 -.4byte gUnknown_81306D4 -.4byte gUnknown_812CF24 -.byte 0x7b, 0x01, 0x02, 0x00 -.4byte gUnknown_81306C4 -.4byte gUnknown_812D044 -.byte 0x7c, 0x01, 0x02, 0x00 -.4byte gUnknown_81306B4 -.4byte gUnknown_812D194 -.byte 0x7d, 0x01, 0x02, 0x00 -.4byte gUnknown_81306A4 -.4byte gUnknown_812D2E4 -.byte 0x7e, 0x01, 0x02, 0x00 -.4byte gUnknown_8130694 -.4byte gUnknown_812D434 -.byte 0x7f, 0x01, 0x02, 0x00 -.4byte gUnknown_8130684 -.4byte gUnknown_812D584 -.byte 0x80, 0x01, 0x02, 0x00 -.4byte gUnknown_8130674 -.4byte gUnknown_812D6D4 -.byte 0x81, 0x01, 0x02, 0x00 -.4byte gUnknown_8130664 -.4byte gUnknown_812D824 -.byte 0x82, 0x01, 0x02, 0x00 -.4byte gUnknown_8130654 -.4byte gUnknown_812D974 -.byte 0x83, 0x01, 0x02, 0x00 -.4byte gUnknown_8130644 -.4byte gUnknown_812DAC4 -.byte 0x84, 0x01, 0x02, 0x00 -.4byte gUnknown_8130634 -.4byte gUnknown_812DC14 -.byte 0x85, 0x01, 0x02, 0x00 -.4byte gUnknown_8130624 -.4byte gUnknown_812DEA4 -.byte 0x86, 0x01, 0x02, 0x00 -.4byte gUnknown_8130614 -.4byte gUnknown_812DFF4 -.byte 0x87, 0x01, 0x02, 0x00 -.4byte gUnknown_8130604 -.4byte gUnknown_812E0E4 -.byte 0x88, 0x01, 0x02, 0x00 -.4byte gUnknown_81305F4 -.4byte gUnknown_812E1D4 -.byte 0x89, 0x01, 0x02, 0x00 -.4byte gUnknown_81305E4 -.4byte gUnknown_812E2C4 -.byte 0x8a, 0x01, 0x02, 0x00 -.4byte gUnknown_81305D4 -.4byte gUnknown_812E3B4 -.byte 0x8b, 0x01, 0x02, 0x00 -.4byte gUnknown_81305C4 -.4byte gUnknown_812E4A4 -.byte 0x8c, 0x01, 0x02, 0x00 -.4byte gUnknown_81305B4 -.4byte gUnknown_812E5C4 -.byte 0x8d, 0x01, 0x02, 0x00 -.4byte gUnknown_81305A4 -.4byte gUnknown_812E6B4 -.byte 0x8e, 0x01, 0x02, 0x00 -.4byte gUnknown_8130594 -.4byte gUnknown_812EEB8 -.byte 0x8f, 0x01, 0x02, 0x00 -.4byte gUnknown_8130584 -.4byte gUnknown_812EFF8 -.byte 0x90, 0x01, 0x07, 0x00 -.4byte gUnknown_8130574 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x91, 0x01, 0x07, 0x00 -.4byte gUnknown_8130564 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x92, 0x01, 0x07, 0x00 -.4byte gUnknown_8130554 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x93, 0x01, 0x08, 0x00 -.4byte gUnknown_8130544 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x94, 0x01, 0x01, 0x00 -.4byte gUnknown_8130534 -.byte 0x00, 0x00, 0x00, 0x00 -.byte 0x95, 0x01, 0x07, 0x00 -.4byte gUnknown_8130520 -.4byte gUnknown_812F138 -.byte 0x96, 0x01, 0x05, 0x00 -.4byte DebugNameMoveDebugCamera -.4byte gUnknown_812F198 - -.global DebugNameMoveDebugCamera -DebugNameMoveDebugCamera: -.string "MOVE_DEBUG_CAMERA\0" -.align 2,0 - -.global gUnknown_8130520 -gUnknown_8130520: @ 8130520 -.string "SETUP_DEBUG_CAMERA\0" -.align 2, 0 - -.global gUnknown_8130534 -gUnknown_8130534: @ 8130534 -.string "ENTER_CONTROL\0" -.align 2, 0 - -.global gUnknown_8130544 -gUnknown_8130544: @ 8130544 -.string "STATION_CONTROL\0" -.align 2, 0 - -.global gUnknown_8130554 -gUnknown_8130554: @ 8130554 -.string "EVENT_STATION\0" -.align 2, 0 - -.global gUnknown_8130564 -gUnknown_8130564: @ 8130564 -.string "EVENT_WAKEUP\0" -.align 2, 0 - -.global gUnknown_8130574 -gUnknown_8130574: @ 8130574 -.string "EVENT_CONTROL\0" -.align 2, 0 - -.global gUnknown_8130584 -gUnknown_8130584: @ 8130584 -.string "GETOUT_M01E08T\0" -.align 2, 0 - -.global gUnknown_8130594 -gUnknown_8130594: @ 8130594 -.string "GETOUT_M01E07T\0" -.align 2, 0 - -.global gUnknown_81305A4 -gUnknown_81305A4: @ 81305A4 -.string "GETOUT_T00E01A\0" -.align 2, 0 - -.global gUnknown_81305B4 -gUnknown_81305B4: @ 81305B4 -.string "GETOUT_R00E01A\0" -.align 2, 0 - -.global gUnknown_81305C4 -gUnknown_81305C4: @ 81305C4 -.string "GETOUT_U00E01A\0" -.align 2, 0 - -.global gUnknown_81305D4 -gUnknown_81305D4: @ 81305D4 -.string "GETOUT_D46E01A\0" -.align 2, 0 - -.global gUnknown_81305E4 -gUnknown_81305E4: @ 81305E4 -.string "GETOUT_D45E01A\0" -.align 2, 0 - -.global gUnknown_81305F4 -gUnknown_81305F4: @ 81305F4 -.string "GETOUT_D44E01A\0" -.align 2, 0 - -.global gUnknown_8130604 -gUnknown_8130604: @ 8130604 -.string "GETOUT_D43E01A\0" -.align 2, 0 - -.global gUnknown_8130614 -gUnknown_8130614: @ 8130614 -.string "GETOUT_D62E01A\0" -.align 2, 0 - -.global gUnknown_8130624 -gUnknown_8130624: @ 8130624 -.string "GETOUT_S09E01B\0" -.align 2, 0 - -.global gUnknown_8130634 -gUnknown_8130634: @ 8130634 -.string "GETOUT_S09E01A\0" -.align 2, 0 - -.global gUnknown_8130644 -gUnknown_8130644: @ 8130644 -.string "GETOUT_S08E01A\0" -.align 2, 0 - -.global gUnknown_8130654 -gUnknown_8130654: @ 8130654 -.string "GETOUT_S07E01A\0" -.align 2, 0 - -.global gUnknown_8130664 -gUnknown_8130664: @ 8130664 -.string "GETOUT_S06E01B\0" -.align 2, 0 - -.global gUnknown_8130674 -gUnknown_8130674: @ 8130674 -.string "GETOUT_S06E01A\0" -.align 2, 0 - -.global gUnknown_8130684 -gUnknown_8130684: @ 8130684 -.string "GETOUT_S05E01A\0" -.align 2, 0 - -.global gUnknown_8130694 -gUnknown_8130694: @ 8130694 -.string "GETOUT_S04E01E\0" -.align 2, 0 - -.global gUnknown_81306A4 -gUnknown_81306A4: @ 81306A4 -.string "GETOUT_S04E01D\0" -.align 2, 0 - -.global gUnknown_81306B4 -gUnknown_81306B4: @ 81306B4 -.string "GETOUT_S04E01C\0" -.align 2, 0 - -.global gUnknown_81306C4 -gUnknown_81306C4: @ 81306C4 -.string "GETOUT_S04E01B\0" -.align 2, 0 - -.global gUnknown_81306D4 -gUnknown_81306D4: @ 81306D4 -.string "GETOUT_S04E01A\0" -.align 2, 0 - -.global gUnknown_81306E4 -gUnknown_81306E4: @ 81306E4 -.string "GETOUT_S03E01A\0" -.align 2, 0 - -.global gUnknown_81306F4 -gUnknown_81306F4: @ 81306F4 -.string "GETOUT_S02E02A\0" -.align 2, 0 - -.global gUnknown_8130704 -gUnknown_8130704: @ 8130704 -.string "GETOUT_S02E01A\0" -.align 2, 0 - -.global gUnknown_8130714 -gUnknown_8130714: @ 8130714 -.string "GETOUT_S01E02A\0" -.align 2, 0 - -.global gUnknown_8130724 -gUnknown_8130724: @ 8130724 -.string "GETOUT_S01E01A\0" -.align 2, 0 - -.global gUnknown_8130734 -gUnknown_8130734: @ 8130734 -.string "GETOUT_S00E01A\0" -.align 2, 0 - -.global gUnknown_8130744 -gUnknown_8130744: @ 8130744 -.string "GETOUT_M01E10A\0" -.align 2, 0 - -.global gUnknown_8130754 -gUnknown_8130754: @ 8130754 -.string "GETOUT_M01E09A\0" -.align 2, 0 - -.global gUnknown_8130764 -gUnknown_8130764: @ 8130764 -.string "GETOUT_M01E08B\0" -.align 2, 0 - -.global gUnknown_8130774 -gUnknown_8130774: @ 8130774 -.string "GETOUT_M01E08A\0" -.align 2, 0 - -.global gUnknown_8130784 -gUnknown_8130784: @ 8130784 -.string "GETOUT_M01E07B\0" -.align 2, 0 - -.global gUnknown_8130794 -gUnknown_8130794: @ 8130794 -.string "GETOUT_M01E07A\0" -.align 2, 0 - -.global gUnknown_81307A4 -gUnknown_81307A4: @ 81307A4 -.string "GETOUT_M01E05A\0" -.align 2, 0 - -.global gUnknown_81307B4 -gUnknown_81307B4: @ 81307B4 -.string "GETOUT_M01E04B\0" -.align 2, 0 - -.global gUnknown_81307C4 -gUnknown_81307C4: @ 81307C4 -.string "GETOUT_M01E04A\0" -.align 2, 0 - -.global gUnknown_81307D4 -gUnknown_81307D4: @ 81307D4 -.string "GETOUT_M01E03A\0" -.align 2, 0 - -.global gUnknown_81307E4 -gUnknown_81307E4: @ 81307E4 -.string "GETOUT_M01E02B\0" -.align 2, 0 - -.global gUnknown_81307F4 -gUnknown_81307F4: @ 81307F4 -.string "GETOUT_M01E02A\0" -.align 2, 0 - -.global gUnknown_8130804 -gUnknown_8130804: @ 8130804 -.string "GETOUT_M01E01A\0" -.align 2, 0 - -.global gUnknown_8130814 -gUnknown_8130814: @ 8130814 -.string "GETOUT_HABITAT\0" -.align 2, 0 - -.global gUnknown_8130824 -gUnknown_8130824: @ 8130824 -.string "GETOUT_NORMAL\0" -.align 2, 0 - -.global gUnknown_8130834 -gUnknown_8130834: @ 8130834 -.string "DEBUG_ENTER\0" -.align 2, 0 - -.global gUnknown_8130840 -gUnknown_8130840: @ 8130840 -.string "COMMON_ENTER\0" -.align 2, 0 - -.global gUnknown_8130850 -gUnknown_8130850: @ 8130850 -.string "EVENT_R00E01A_L001\0" -.align 2, 0 - -.global gUnknown_8130864 -gUnknown_8130864: @ 8130864 -.string "EVENT_S09E01C_L001\0" -.align 2, 0 - -.global gUnknown_8130878 -gUnknown_8130878: @ 8130878 -.string "EVENT_S09E01B_L002L\0" -.align 2, 0 - -.global gUnknown_813088C -gUnknown_813088C: @ 813088C -.string "EVENT_S09E01B_L002\0" -.align 2, 0 - -.global gUnknown_81308A0 -gUnknown_81308A0: @ 81308A0 -.string "EVENT_S09E01B_L001B\0" -.align 2, 0 - -.global gUnknown_81308B4 -gUnknown_81308B4: @ 81308B4 -.string "EVENT_S09E01B_L001\0" -.align 2, 0 - -.global gUnknown_81308C8 -gUnknown_81308C8: @ 81308C8 -.string "EVENT_S09E01A_L005L\0" -.align 2, 0 - -.global gUnknown_81308DC -gUnknown_81308DC: @ 81308DC -.string "EVENT_S09E01A_L005\0" -.align 2, 0 - -.global gUnknown_81308F0 -gUnknown_81308F0: @ 81308F0 -.string "EVENT_S09E01A_L004B\0" -.align 2, 0 - -.global gUnknown_8130904 -gUnknown_8130904: @ 8130904 -.string "EVENT_S09E01A_L004\0" -.align 2, 0 - -.global gUnknown_8130918 -gUnknown_8130918: @ 8130918 -.string "EVENT_S09E01A_L003\0" -.align 2, 0 - -.global gUnknown_813092C -gUnknown_813092C: @ 813092C -.string "EVENT_S09E01A_L002\0" -.align 2, 0 - -.global gUnknown_8130940 -gUnknown_8130940: @ 8130940 -.string "EVENT_S09E01A_L001\0" -.align 2, 0 - -.global gUnknown_8130954 -gUnknown_8130954: @ 8130954 -.string "EVENT_S09E01A_END\0" -.align 2, 0 - -.global gUnknown_8130968 -gUnknown_8130968: @ 8130968 -.string "EVENT_S09E01A_START\0" -.align 2, 0 - -.global gUnknown_813097C -gUnknown_813097C: @ 813097C -.string "EVENT_S08E01A_L008C\0" -.align 2, 0 - -.global gUnknown_8130990 -gUnknown_8130990: @ 8130990 -.string "EVENT_S08E01A_L008B\0" -.align 2, 0 - -.global gUnknown_81309A4 -gUnknown_81309A4: @ 81309A4 -.string "EVENT_S08E01A_L008A\0" -.align 2, 0 - -.global gUnknown_81309B8 -gUnknown_81309B8: @ 81309B8 -.string "EVENT_S08E01A_L008L\0" -.align 2, 0 - -.global gUnknown_81309CC -gUnknown_81309CC: @ 81309CC -.string "EVENT_S08E01A_L008\0" -.align 2, 0 - -.global gUnknown_81309E0 -gUnknown_81309E0: @ 81309E0 -.string "EVENT_S08E01A_L007\0" -.align 2, 0 - -.global gUnknown_81309F4 -gUnknown_81309F4: @ 81309F4 -.string "EVENT_S08E01A_L006L\0" -.align 2, 0 - -.global gUnknown_8130A08 -gUnknown_8130A08: @ 8130A08 -.string "EVENT_S08E01A_L006\0" -.align 2, 0 - -.global gUnknown_8130A1C -gUnknown_8130A1C: @ 8130A1C -.string "EVENT_S08E01A_L005B\0" -.align 2, 0 - -.global gUnknown_8130A30 -gUnknown_8130A30: @ 8130A30 -.string "EVENT_S08E01A_L005\0" -.align 2, 0 - -.global gUnknown_8130A44 -gUnknown_8130A44: @ 8130A44 -.string "EVENT_S08E01A_L004\0" -.align 2, 0 - -.global gUnknown_8130A58 -gUnknown_8130A58: @ 8130A58 -.string "EVENT_S08E01A_L003\0" -.align 2, 0 - -.global gUnknown_8130A6C -gUnknown_8130A6C: @ 8130A6C -.string "EVENT_S08E01A_L002\0" -.align 2, 0 - -.global gUnknown_8130A80 -gUnknown_8130A80: @ 8130A80 -.string "EVENT_S08E01A_L001\0" -.align 2, 0 - -.global gUnknown_8130A94 -gUnknown_8130A94: @ 8130A94 -.string "EVENT_S08E01A_END\0" -.align 2, 0 - -.global gUnknown_8130AA8 -gUnknown_8130AA8: @ 8130AA8 -.string "EVENT_S08E01A_START\0" -.align 2, 0 - -.global gUnknown_8130ABC -gUnknown_8130ABC: @ 8130ABC -.string "EVENT_S07E01A_L003L\0" -.align 2, 0 - -.global gUnknown_8130AD0 -gUnknown_8130AD0: @ 8130AD0 -.string "EVENT_S07E01A_L003\0" -.align 2, 0 - -.global gUnknown_8130AE4 -gUnknown_8130AE4: @ 8130AE4 -.string "EVENT_S07E01A_L002\0" -.align 2, 0 - -.global gUnknown_8130AF8 -gUnknown_8130AF8: @ 8130AF8 -.string "EVENT_S07E01A_L001\0" -.align 2, 0 - -.global gUnknown_8130B0C -gUnknown_8130B0C: @ 8130B0C -.string "EVENT_S07E01A_END\0" -.align 2, 0 - -.global gUnknown_8130B20 -gUnknown_8130B20: @ 8130B20 -.string "EVENT_S07E01A_START\0" -.align 2, 0 - -.global gUnknown_8130B34 -gUnknown_8130B34: @ 8130B34 -.string "EVENT_S06E01B_L002L\0" -.align 2, 0 - -.global gUnknown_8130B48 -gUnknown_8130B48: @ 8130B48 -.string "EVENT_S06E01B_L002\0" -.align 2, 0 - -.global gUnknown_8130B5C -gUnknown_8130B5C: @ 8130B5C -.string "EVENT_S06E01B_L001\0" -.align 2, 0 - -.global gUnknown_8130B70 -gUnknown_8130B70: @ 8130B70 -.string "EVENT_S06E01A_L002L\0" -.align 2, 0 - -.global gUnknown_8130B84 -gUnknown_8130B84: @ 8130B84 -.string "EVENT_S06E01A_L002\0" -.align 2, 0 - -.global gUnknown_8130B98 -gUnknown_8130B98: @ 8130B98 -.string "EVENT_S06E01A_L001\0" -.align 2, 0 - -.global gUnknown_8130BAC -gUnknown_8130BAC: @ 8130BAC -.string "EVENT_S06E01A_END\0" -.align 2, 0 - -.global gUnknown_8130BC0 -gUnknown_8130BC0: @ 8130BC0 -.string "EVENT_S06E01A_CONTINUE\0" -.align 2, 0 - -.global gUnknown_8130BD8 -gUnknown_8130BD8: @ 8130BD8 -.string "EVENT_S06E01A_START\0" -.align 2, 0 - -.global gUnknown_8130BEC -gUnknown_8130BEC: @ 8130BEC -.string "EVENT_S05E01A_L002L\0" -.align 2, 0 - -.global gUnknown_8130C00 -gUnknown_8130C00: @ 8130C00 -.string "EVENT_S05E01A_L002\0" -.align 2, 0 - -.global gUnknown_8130C14 -gUnknown_8130C14: @ 8130C14 -.string "EVENT_S05E01A_L001\0" -.align 2, 0 - -.global gUnknown_8130C28 -gUnknown_8130C28: @ 8130C28 -.string "EVENT_S05E01A_END\0" -.align 2, 0 - -.global gUnknown_8130C3C -gUnknown_8130C3C: @ 8130C3C -.string "EVENT_S05E01A_CONTINUE\0" -.align 2, 0 - -.global gUnknown_8130C54 -gUnknown_8130C54: @ 8130C54 -.string "EVENT_S05E01A_START\0" -.align 2, 0 - -.global gUnknown_8130C68 -gUnknown_8130C68: @ 8130C68 -.string "EVENT_S04E01F_L001\0" -.align 2, 0 - -.global gUnknown_8130C7C -gUnknown_8130C7C: @ 8130C7C -.string "EVENT_S04E01E_L001L\0" -.align 2, 0 - -.global gUnknown_8130C90 -gUnknown_8130C90: @ 8130C90 -.string "EVENT_S04E01E_L001\0" -.align 2, 0 - -.global gUnknown_8130CA4 -gUnknown_8130CA4: @ 8130CA4 -.string "EVENT_S04E01D_L001L\0" -.align 2, 0 - -.global gUnknown_8130CB8 -gUnknown_8130CB8: @ 8130CB8 -.string "EVENT_S04E01D_L001\0" -.align 2, 0 - -.global gUnknown_8130CCC -gUnknown_8130CCC: @ 8130CCC -.string "EVENT_S04E01C_L001L\0" -.align 2, 0 - -.global gUnknown_8130CE0 -gUnknown_8130CE0: @ 8130CE0 -.string "EVENT_S04E01C_L001\0" -.align 2, 0 - -.global gUnknown_8130CF4 -gUnknown_8130CF4: @ 8130CF4 -.string "EVENT_S04E01B_L001L\0" -.align 2, 0 - -.global gUnknown_8130D08 -gUnknown_8130D08: @ 8130D08 -.string "EVENT_S04E01B_L001\0" -.align 2, 0 - -.global gUnknown_8130D1C -gUnknown_8130D1C: @ 8130D1C -.string "EVENT_S04E01A_L002L\0" -.align 2, 0 - -.global gUnknown_8130D30 -gUnknown_8130D30: @ 8130D30 -.string "EVENT_S04E01A_L002\0" -.align 2, 0 - -.global gUnknown_8130D44 -gUnknown_8130D44: @ 8130D44 -.string "EVENT_S04E01A_L001\0" -.align 2, 0 - -.global gUnknown_8130D58 -gUnknown_8130D58: @ 8130D58 -.string "EVENT_S04E01A_END\0" -.align 2, 0 - -.global gUnknown_8130D6C -gUnknown_8130D6C: @ 8130D6C -.string "EVENT_S04E01A_LAST\0" -.align 2, 0 - -.global gUnknown_8130D80 -gUnknown_8130D80: @ 8130D80 -.string "EVENT_S04E01A_START\0" -.align 2, 0 - -.global gUnknown_8130D94 -gUnknown_8130D94: @ 8130D94 -.string "EVENT_S03E01A_L002L\0" -.align 2, 0 - -.global gUnknown_8130DA8 -gUnknown_8130DA8: @ 8130DA8 -.string "EVENT_S03E01A_L002\0" -.align 2, 0 - -.global gUnknown_8130DBC -gUnknown_8130DBC: @ 8130DBC -.string "EVENT_S03E01A_L001\0" -.align 2, 0 - -.global gUnknown_8130DD0 -gUnknown_8130DD0: @ 8130DD0 -.string "EVENT_S03E01A_END\0" -.align 2, 0 - -.global gUnknown_8130DE4 -gUnknown_8130DE4: @ 8130DE4 -.string "EVENT_S03E01A_CONTINUE\0" -.align 2, 0 - -.global gUnknown_8130DFC -gUnknown_8130DFC: @ 8130DFC -.string "EVENT_S03E01A_START\0" -.align 2, 0 - -.global gUnknown_8130E10 -gUnknown_8130E10: @ 8130E10 -.string "EVENT_S02E02A_L003L\0" -.align 2, 0 - -.global gUnknown_8130E24 -gUnknown_8130E24: @ 8130E24 -.string "EVENT_S02E02A_L003\0" -.align 2, 0 - -.global gUnknown_8130E38 -gUnknown_8130E38: @ 8130E38 -.string "EVENT_S02E02A_L002\0" -.align 2, 0 - -.global gUnknown_8130E4C -gUnknown_8130E4C: @ 8130E4C -.string "EVENT_S02E02A_L001\0" -.align 2, 0 - -.global gUnknown_8130E60 -gUnknown_8130E60: @ 8130E60 -.string "EVENT_S02E02A_END\0" -.align 2, 0 - -.global gUnknown_8130E74 -gUnknown_8130E74: @ 8130E74 -.string "EVENT_S02E02A_START\0" -.align 2, 0 - -.global gUnknown_8130E88 -gUnknown_8130E88: @ 8130E88 -.string "EVENT_S02E01A_L004L\0" -.align 2, 0 - -.global gUnknown_8130E9C -gUnknown_8130E9C: @ 8130E9C -.string "EVENT_S02E01A_L004\0" -.align 2, 0 - -.global gUnknown_8130EB0 -gUnknown_8130EB0: @ 8130EB0 -.string "EVENT_S02E01A_L003\0" -.align 2, 0 - -.global gUnknown_8130EC4 -gUnknown_8130EC4: @ 8130EC4 -.string "EVENT_S02E01A_L002\0" -.align 2, 0 - -.global gUnknown_8130ED8 -gUnknown_8130ED8: @ 8130ED8 -.string "EVENT_S02E01A_L001\0" -.align 2, 0 - -.global gUnknown_8130EEC -gUnknown_8130EEC: @ 8130EEC -.string "EVENT_S02E01A_END\0" -.align 2, 0 - -.global gUnknown_8130F00 -gUnknown_8130F00: @ 8130F00 -.string "EVENT_S02E01A_START\0" -.align 2, 0 - -.global gUnknown_8130F14 -gUnknown_8130F14: @ 8130F14 -.string "EVENT_S01E02B_L002\0" -.align 2, 0 - -.global gUnknown_8130F28 -gUnknown_8130F28: @ 8130F28 -.string "EVENT_S01E02B_L001\0" -.align 2, 0 - -.global gUnknown_8130F3C -gUnknown_8130F3C: @ 8130F3C -.string "EVENT_S01E02A_L002L\0" -.align 2, 0 - -.global gUnknown_8130F50 -gUnknown_8130F50: @ 8130F50 -.string "EVENT_S01E02A_L002\0" -.align 2, 0 - -.global gUnknown_8130F64 -gUnknown_8130F64: @ 8130F64 -.string "EVENT_S01E02A_L001\0" -.align 2, 0 - -.global gUnknown_8130F78 -gUnknown_8130F78: @ 8130F78 -.string "EVENT_S01E02A_END\0" -.align 2, 0 - -.global gUnknown_8130F8C -gUnknown_8130F8C: @ 8130F8C -.string "EVENT_S01E02A_START\0" -.align 2, 0 - -.global gUnknown_8130FA0 -gUnknown_8130FA0: @ 8130FA0 -.string "EVENT_S01E01C_L001\0" -.align 2, 0 - -.global gUnknown_8130FB4 -gUnknown_8130FB4: @ 8130FB4 -.string "EVENT_S01E01B_L001L\0" -.align 2, 0 - -.global gUnknown_8130FC8 -gUnknown_8130FC8: @ 8130FC8 -.string "EVENT_S01E01B_L001\0" -.align 2, 0 - -.global gUnknown_8130FDC -gUnknown_8130FDC: @ 8130FDC -.string "EVENT_S01E01A_L003\0" -.align 2, 0 - -.global gUnknown_8130FF0 -gUnknown_8130FF0: @ 8130FF0 -.string "EVENT_S01E01A_L002\0" -.align 2, 0 - -.global gUnknown_8131004 -gUnknown_8131004: @ 8131004 -.string "EVENT_S01E01A_L001\0" -.align 2, 0 - -.global gUnknown_8131018 -gUnknown_8131018: @ 8131018 -.string "EVENT_S01E01A_END\0" -.align 2, 0 - -.global gUnknown_813102C -gUnknown_813102C: @ 813102C -.string "EVENT_S01E01A_CONTINUE\0" -.align 2, 0 - -.global gUnknown_8131044 -gUnknown_8131044: @ 8131044 -.string "EVENT_S01E01A_START\0" -.align 2, 0 - -.global gUnknown_8131058 -gUnknown_8131058: @ 8131058 -.string "EVENT_S00E01A_L004\0" -.align 2, 0 - -.global gUnknown_813106C -gUnknown_813106C: @ 813106C -.string "EVENT_S00E01A_L003\0" -.align 2, 0 - -.global gUnknown_8131080 -gUnknown_8131080: @ 8131080 -.string "EVENT_S00E01A_L002\0" -.align 2, 0 - -.global gUnknown_8131094 -gUnknown_8131094: @ 8131094 -.string "EVENT_S00E01A_L001\0" -.align 2, 0 - -.global gUnknown_81310A8 -gUnknown_81310A8: @ 81310A8 -.string "EVENT_M02END_L001\0" -.align 2, 0 - -.global gUnknown_81310BC -gUnknown_81310BC: @ 81310BC -.string "EVENT_M02E02H_L001\0" -.align 2, 0 - -.global gUnknown_81310D0 -gUnknown_81310D0: @ 81310D0 -.string "EVENT_M02E02G_L001\0" -.align 2, 0 - -.global gUnknown_81310E4 -gUnknown_81310E4: @ 81310E4 -.string "EVENT_M02E02F_L001\0" -.align 2, 0 - -.global gUnknown_81310F8 -gUnknown_81310F8: @ 81310F8 -.string "EVENT_M02E02E_L001\0" -.align 2, 0 - -.global gUnknown_813110C -gUnknown_813110C: @ 813110C -.string "EVENT_M02E02D_L001\0" -.align 2, 0 - -.global gUnknown_8131120 -gUnknown_8131120: @ 8131120 -.string "EVENT_M02E02C_L001\0" -.align 2, 0 - -.global gUnknown_8131134 -gUnknown_8131134: @ 8131134 -.string "EVENT_M02E02B_L001\0" -.align 2, 0 - -.global gUnknown_8131148 -gUnknown_8131148: @ 8131148 -.string "EVENT_M02E02A_L001\0" -.align 2, 0 - -.global gUnknown_813115C -gUnknown_813115C: @ 813115C -.string "EVENT_M02E01A_L003\0" -.align 2, 0 - -.global gUnknown_8131170 -gUnknown_8131170: @ 8131170 -.string "EVENT_M02E01A_L002\0" -.align 2, 0 - -.global gUnknown_8131184 -gUnknown_8131184: @ 8131184 -.string "EVENT_M02E01A_L001\0" -.align 2, 0 - -.global gUnknown_8131198 -gUnknown_8131198: @ 8131198 -.string "EVENT_M01END_L002\0" -.align 2, 0 - -.global gUnknown_81311AC -gUnknown_81311AC: @ 81311AC -.string "EVENT_M01END_L001\0" -.align 2, 0 - -.global gUnknown_81311C0 -gUnknown_81311C0: @ 81311C0 -.string "EVENT_M01E10A_L008\0" -.align 2, 0 - -.global gUnknown_81311D4 -gUnknown_81311D4: @ 81311D4 -.string "EVENT_M01E10A_L007\0" -.align 2, 0 - -.global gUnknown_81311E8 -gUnknown_81311E8: @ 81311E8 -.string "EVENT_M01E10A_L006\0" -.align 2, 0 - -.global gUnknown_81311FC -gUnknown_81311FC: @ 81311FC -.string "EVENT_M01E10A_L005\0" -.align 2, 0 - -.global gUnknown_8131210 -gUnknown_8131210: @ 8131210 -.string "EVENT_M01E10A_L004\0" -.align 2, 0 - -.global gUnknown_8131224 -gUnknown_8131224: @ 8131224 -.string "EVENT_M01E10A_L003\0" -.align 2, 0 - -.global gUnknown_8131238 -gUnknown_8131238: @ 8131238 -.string "EVENT_M01E10A_L002\0" -.align 2, 0 - -.global gUnknown_813124C -gUnknown_813124C: @ 813124C -.string "EVENT_M01E10A_L001\0" -.align 2, 0 - -.global gUnknown_8131260 -gUnknown_8131260: @ 8131260 -.string "EVENT_M01E09A_L015\0" -.align 2, 0 - -.global gUnknown_8131274 -gUnknown_8131274: @ 8131274 -.string "EVENT_M01E09A_L014\0" -.align 2, 0 - -.global gUnknown_8131288 -gUnknown_8131288: @ 8131288 -.string "EVENT_M01E09A_L013\0" -.align 2, 0 - -.global gUnknown_813129C -gUnknown_813129C: @ 813129C -.string "EVENT_M01E09A_L012\0" -.align 2, 0 - -.global gUnknown_81312B0 -gUnknown_81312B0: @ 81312B0 -.string "EVENT_M01E09A_L011\0" -.align 2, 0 - -.global gUnknown_81312C4 -gUnknown_81312C4: @ 81312C4 -.string "EVENT_M01E09A_L010\0" -.align 2, 0 - -.global gUnknown_81312D8 -gUnknown_81312D8: @ 81312D8 -.string "EVENT_M01E09A_L009\0" -.align 2, 0 - -.global gUnknown_81312EC -gUnknown_81312EC: @ 81312EC -.string "EVENT_M01E09A_L008\0" -.align 2, 0 - -.global gUnknown_8131300 -gUnknown_8131300: @ 8131300 -.string "EVENT_M01E09A_L007\0" -.align 2, 0 - -.global gUnknown_8131314 -gUnknown_8131314: @ 8131314 -.string "EVENT_M01E09A_L006\0" -.align 2, 0 - -.global gUnknown_8131328 -gUnknown_8131328: @ 8131328 -.string "EVENT_M01E09A_L005\0" -.align 2, 0 - -.global gUnknown_813133C -gUnknown_813133C: @ 813133C -.string "EVENT_M01E09A_L004\0" -.align 2, 0 - -.global gUnknown_8131350 -gUnknown_8131350: @ 8131350 -.string "EVENT_M01E09A_L003\0" -.align 2, 0 - -.global gUnknown_8131364 -gUnknown_8131364: @ 8131364 -.string "EVENT_M01E09A_L002\0" -.align 2, 0 - -.global gUnknown_8131378 -gUnknown_8131378: @ 8131378 -.string "EVENT_M01E09A_L001\0" -.align 2, 0 - -.global gUnknown_813138C -gUnknown_813138C: @ 813138C -.string "EVENT_M01E08B_T002\0" -.align 2, 0 - -.global gUnknown_81313A0 -gUnknown_81313A0: @ 81313A0 -.string "EVENT_M01E08B_T001\0" -.align 2, 0 - -.global gUnknown_81313B4 -gUnknown_81313B4: @ 81313B4 -.string "EVENT_M01E08B_L006\0" -.align 2, 0 - -.global gUnknown_81313C8 -gUnknown_81313C8: @ 81313C8 -.string "EVENT_M01E08B_L005\0" -.align 2, 0 - -.global gUnknown_81313DC -gUnknown_81313DC: @ 81313DC -.string "EVENT_M01E08B_L004\0" -.align 2, 0 - -.global gUnknown_81313F0 -gUnknown_81313F0: @ 81313F0 -.string "EVENT_M01E08B_L003\0" -.align 2, 0 - -.global gUnknown_8131404 -gUnknown_8131404: @ 8131404 -.string "EVENT_M01E08B_L002\0" -.align 2, 0 - -.global gUnknown_8131418 -gUnknown_8131418: @ 8131418 -.string "EVENT_M01E08B_L001\0" -.align 2, 0 - -.global gUnknown_813142C -gUnknown_813142C: @ 813142C -.string "EVENT_M01E08A_T002\0" -.align 2, 0 - -.global gUnknown_8131440 -gUnknown_8131440: @ 8131440 -.string "EVENT_M01E08A_T001\0" -.align 2, 0 - -.global gUnknown_8131454 -gUnknown_8131454: @ 8131454 -.string "EVENT_M01E08A_L005\0" -.align 2, 0 - -.global gUnknown_8131468 -gUnknown_8131468: @ 8131468 -.string "EVENT_M01E08A_L004\0" -.align 2, 0 - -.global gUnknown_813147C -gUnknown_813147C: @ 813147C -.string "EVENT_M01E08A_L003\0" -.align 2, 0 - -.global gUnknown_8131490 -gUnknown_8131490: @ 8131490 -.string "EVENT_M01E08A_L002\0" -.align 2, 0 - -.global gUnknown_81314A4 -gUnknown_81314A4: @ 81314A4 -.string "EVENT_M01E08A_L001\0" -.align 2, 0 - -.global gUnknown_81314B8 -gUnknown_81314B8: @ 81314B8 -.string "EVENT_M01E07B_T002\0" -.align 2, 0 - -.global gUnknown_81314CC -gUnknown_81314CC: @ 81314CC -.string "EVENT_M01E07B_T001\0" -.align 2, 0 - -.global gUnknown_81314E0 -gUnknown_81314E0: @ 81314E0 -.string "EVENT_M01E07B_L005\0" -.align 2, 0 - -.global gUnknown_81314F4 -gUnknown_81314F4: @ 81314F4 -.string "EVENT_M01E07B_L004\0" -.align 2, 0 - -.global gUnknown_8131508 -gUnknown_8131508: @ 8131508 -.string "EVENT_M01E07B_L003\0" -.align 2, 0 - -.global gUnknown_813151C -gUnknown_813151C: @ 813151C -.string "EVENT_M01E07B_L002\0" -.align 2, 0 - -.global gUnknown_8131530 -gUnknown_8131530: @ 8131530 -.string "EVENT_M01E07B_L001\0" -.align 2, 0 - -.global gUnknown_8131544 -gUnknown_8131544: @ 8131544 -.string "EVENT_M01E07A_T002\0" -.align 2, 0 - -.global gUnknown_8131558 -gUnknown_8131558: @ 8131558 -.string "EVENT_M01E07A_T001\0" -.align 2, 0 - -.global gUnknown_813156C -gUnknown_813156C: @ 813156C -.string "EVENT_M01E07A_L005\0" -.align 2, 0 - -.global gUnknown_8131580 -gUnknown_8131580: @ 8131580 -.string "EVENT_M01E07A_L004\0" -.align 2, 0 - -.global gUnknown_8131594 -gUnknown_8131594: @ 8131594 -.string "EVENT_M01E07A_L003\0" -.align 2, 0 - -.global gUnknown_81315A8 -gUnknown_81315A8: @ 81315A8 -.string "EVENT_M01E07A_L002\0" -.align 2, 0 - -.global gUnknown_81315BC -gUnknown_81315BC: @ 81315BC -.string "EVENT_M01E07A_L001\0" -.align 2, 0 - -.global gUnknown_81315D0 -gUnknown_81315D0: @ 81315D0 -.string "EVENT_M01E06A_L003\0" -.align 2, 0 - -.global gUnknown_81315E4 -gUnknown_81315E4: @ 81315E4 -.string "EVENT_M01E06A_L002\0" -.align 2, 0 - -.global gUnknown_81315F8 -gUnknown_81315F8: @ 81315F8 -.string "EVENT_M01E06A_L001\0" -.align 2, 0 - -.global gUnknown_813160C -gUnknown_813160C: @ 813160C -.string "EVENT_M01E05B_L005\0" -.align 2, 0 - -.global gUnknown_8131620 -gUnknown_8131620: @ 8131620 -.string "EVENT_M01E05B_L004\0" -.align 2, 0 - -.global gUnknown_8131634 -gUnknown_8131634: @ 8131634 -.string "EVENT_M01E05B_L003\0" -.align 2, 0 - -.global gUnknown_8131648 -gUnknown_8131648: @ 8131648 -.string "EVENT_M01E05B_L002\0" -.align 2, 0 - -.global gUnknown_813165C -gUnknown_813165C: @ 813165C -.string "EVENT_M01E05B_L001\0" -.align 2, 0 - -.global gUnknown_8131670 -gUnknown_8131670: @ 8131670 -.string "EVENT_M01E05B_L000\0" -.align 2, 0 - -.global gUnknown_8131684 -gUnknown_8131684: @ 8131684 -.string "EVENT_M01E05A_L006\0" -.align 2, 0 - -.global gUnknown_8131698 -gUnknown_8131698: @ 8131698 -.string "EVENT_M01E05A_L005\0" -.align 2, 0 - -.global gUnknown_81316AC -gUnknown_81316AC: @ 81316AC -.string "EVENT_M01E05A_L004\0" -.align 2, 0 - -.global gUnknown_81316C0 -gUnknown_81316C0: @ 81316C0 -.string "EVENT_M01E05A_L003\0" -.align 2, 0 - -.global gUnknown_81316D4 -gUnknown_81316D4: @ 81316D4 -.string "EVENT_M01E05A_L002\0" -.align 2, 0 - -.global gUnknown_81316E8 -gUnknown_81316E8: @ 81316E8 -.string "EVENT_M01E05A_L001\0" -.align 2, 0 - -.global gUnknown_81316FC -gUnknown_81316FC: @ 81316FC -.string "EVENT_M01E05A_L000\0" -.align 2, 0 - -.global gUnknown_8131710 -gUnknown_8131710: @ 8131710 -.string "EVENT_M01E04B_L007\0" -.align 2, 0 - -.global gUnknown_8131724 -gUnknown_8131724: @ 8131724 -.string "EVENT_M01E04B_L006\0" -.align 2, 0 - -.global gUnknown_8131738 -gUnknown_8131738: @ 8131738 -.string "EVENT_M01E04B_L005\0" -.align 2, 0 - -.global gUnknown_813174C -gUnknown_813174C: @ 813174C -.string "EVENT_M01E04B_L004\0" -.align 2, 0 - -.global gUnknown_8131760 -gUnknown_8131760: @ 8131760 -.string "EVENT_M01E04B_L003\0" -.align 2, 0 - -.global gUnknown_8131774 -gUnknown_8131774: @ 8131774 -.string "EVENT_M01E04B_L002\0" -.align 2, 0 - -.global gUnknown_8131788 -gUnknown_8131788: @ 8131788 -.string "EVENT_M01E04B_L001\0" -.align 2, 0 - -.global gUnknown_813179C -gUnknown_813179C: @ 813179C -.string "EVENT_M01E04B_L000\0" -.align 2, 0 - -.global gUnknown_81317B0 -gUnknown_81317B0: @ 81317B0 -.string "EVENT_M01E04A_L006\0" -.align 2, 0 - -.global gUnknown_81317C4 -gUnknown_81317C4: @ 81317C4 -.string "EVENT_M01E04A_L005\0" -.align 2, 0 - -.global gUnknown_81317D8 -gUnknown_81317D8: @ 81317D8 -.string "EVENT_M01E04A_L004\0" -.align 2, 0 - -.global gUnknown_81317EC -gUnknown_81317EC: @ 81317EC -.string "EVENT_M01E04A_L003\0" -.align 2, 0 - -.global gUnknown_8131800 -gUnknown_8131800: @ 8131800 -.string "EVENT_M01E04A_L002\0" -.align 2, 0 - -.global gUnknown_8131814 -gUnknown_8131814: @ 8131814 -.string "EVENT_M01E04A_L001\0" -.align 2, 0 - -.global gUnknown_8131828 -gUnknown_8131828: @ 8131828 -.string "EVENT_M01E04A_L000\0" -.align 2, 0 - -.global gUnknown_813183C -gUnknown_813183C: @ 813183C -.string "EVENT_M01E03A_L011\0" -.align 2, 0 - -.global gUnknown_8131850 -gUnknown_8131850: @ 8131850 -.string "EVENT_M01E03A_L010\0" -.align 2, 0 - -.global gUnknown_8131864 -gUnknown_8131864: @ 8131864 -.string "EVENT_M01E03A_L009\0" -.align 2, 0 - -.global gUnknown_8131878 -gUnknown_8131878: @ 8131878 -.string "EVENT_M01E03A_L008\0" -.align 2, 0 - -.global gUnknown_813188C -gUnknown_813188C: @ 813188C -.string "EVENT_M01E03A_L007\0" -.align 2, 0 - -.global gUnknown_81318A0 -gUnknown_81318A0: @ 81318A0 -.string "EVENT_M01E03A_L006\0" -.align 2, 0 - -.global gUnknown_81318B4 -gUnknown_81318B4: @ 81318B4 -.string "EVENT_M01E03A_L005\0" -.align 2, 0 - -.global gUnknown_81318C8 -gUnknown_81318C8: @ 81318C8 -.string "EVENT_M01E03A_L004\0" -.align 2, 0 - -.global gUnknown_81318DC -gUnknown_81318DC: @ 81318DC -.string "EVENT_M01E03A_L003\0" -.align 2, 0 - -.global gUnknown_81318F0 -gUnknown_81318F0: @ 81318F0 -.string "EVENT_M01E03A_L002\0" -.align 2, 0 - -.global gUnknown_8131904 -gUnknown_8131904: @ 8131904 -.string "EVENT_M01E03A_L001\0" -.align 2, 0 - -.global gUnknown_8131918 -gUnknown_8131918: @ 8131918 -.string "EVENT_M01E03A_L000\0" -.align 2, 0 - -.global gUnknown_813192C -gUnknown_813192C: @ 813192C -.string "EVENT_M01E02B_L008\0" -.align 2, 0 - -.global gUnknown_8131940 -gUnknown_8131940: @ 8131940 -.string "EVENT_M01E02B_L007\0" -.align 2, 0 - -.global gUnknown_8131954 -gUnknown_8131954: @ 8131954 -.string "EVENT_M01E02B_L006\0" -.align 2, 0 - -.global gUnknown_8131968 -gUnknown_8131968: @ 8131968 -.string "EVENT_M01E02B_L005\0" -.align 2, 0 - -.global gUnknown_813197C -gUnknown_813197C: @ 813197C -.string "EVENT_M01E02B_L004B\0" -.align 2, 0 - -.global gUnknown_8131990 -gUnknown_8131990: @ 8131990 -.string "EVENT_M01E02B_L004\0" -.align 2, 0 - -.global gUnknown_81319A4 -gUnknown_81319A4: @ 81319A4 -.string "EVENT_M01E02B_L003\0" -.align 2, 0 - -.global gUnknown_81319B8 -gUnknown_81319B8: @ 81319B8 -.string "EVENT_M01E02B_L002\0" -.align 2, 0 - -.global gUnknown_81319CC -gUnknown_81319CC: @ 81319CC -.string "EVENT_M01E02B_L001\0" -.align 2, 0 - -.global gUnknown_81319E0 -gUnknown_81319E0: @ 81319E0 -.string "EVENT_M01E02A_L006\0" -.align 2, 0 - -.global gUnknown_81319F4 -gUnknown_81319F4: @ 81319F4 -.string "EVENT_M01E02A_L005\0" -.align 2, 0 - -.global gUnknown_8131A08 -gUnknown_8131A08: @ 8131A08 -.string "EVENT_M01E02A_L004\0" -.align 2, 0 - -.global gUnknown_8131A1C -gUnknown_8131A1C: @ 8131A1C -.string "EVENT_M01E02A_L003\0" -.align 2, 0 - -.global gUnknown_8131A30 -gUnknown_8131A30: @ 8131A30 -.string "EVENT_M01E02A_L002\0" -.align 2, 0 - -.global gUnknown_8131A44 -gUnknown_8131A44: @ 8131A44 -.string "EVENT_M01E02A_L001C\0" -.align 2, 0 - -.global gUnknown_8131A58 -gUnknown_8131A58: @ 8131A58 -.string "EVENT_M01E02A_L001B\0" -.align 2, 0 - -.global gUnknown_8131A6C -gUnknown_8131A6C: @ 8131A6C -.string "EVENT_M01E02A_L001\0" -.align 2, 0 - -.global gUnknown_8131A80 -gUnknown_8131A80: @ 8131A80 -.string "EVENT_M01E01A_L003\0" -.align 2, 0 - -.global gUnknown_8131A94 -gUnknown_8131A94: @ 8131A94 -.string "EVENT_M01E01A_L002\0" -.align 2, 0 - -.global gUnknown_8131AA8 -gUnknown_8131AA8: @ 8131AA8 -.string "EVENT_M01E01A_L001\0" -.align 2, 0 - -.global gUnknown_8131ABC -gUnknown_8131ABC: @ 8131ABC -.string "EVENT_M00E01A_L001\0" -.align 2, 0 - -.global gUnknown_8131AD0 -gUnknown_8131AD0: @ 8131AD0 -.string "DEMO_04\0" -.align 2, 0 - -.global gUnknown_8131AD8 -gUnknown_8131AD8: @ 8131AD8 -.string "DEMO_03\0" -.align 2, 0 - -.global gUnknown_8131AE0 -gUnknown_8131AE0: @ 8131AE0 -.string "DEMO_02\0" -.align 2, 0 - -.global gUnknown_8131AE8 -gUnknown_8131AE8: @ 8131AE8 -.string "DEMO_01\0" -.align 2, 0 - -.global gUnknown_8131AF0 -gUnknown_8131AF0: @ 8131AF0 -.string "DEMO_CANCEL\0" -.align 2, 0 - -.global gUnknown_8131AFC -gUnknown_8131AFC: @ 8131AFC -.string "DEBUG_SCRIPT\0" -.align 2, 0 - -.global gUnknown_8131B0C -gUnknown_8131B0C: @ 8131B0C -.string "EVENT_RESCUE\0" -.align 2, 0 - -.global gUnknown_8131B1C -gUnknown_8131B1C: @ 8131B1C -.string "EVENT_RESCUE_ENTER_CHECK\0" -.align 2, 0 - -.global gUnknown_8131B38 -gUnknown_8131B38: @ 8131B38 -.string "EVENT_DIVIDE_WARP_LOCK_FUNC\0" -.align 2, 0 - -.global gUnknown_8131B54 -gUnknown_8131B54: @ 8131B54 -.string "EVENT_DIVIDE_AFTER\0" -.align 2, 0 - -.global gUnknown_8131B68 -gUnknown_8131B68: @ 8131B68 -.string "EVENT_DIVIDE_SECOND\0" -.align 2, 0 - -.global gUnknown_8131B7C -gUnknown_8131B7C: @ 8131B7C -.string "EVENT_DIVIDE_FIRST\0" -.align 2, 0 - -.global gUnknown_8131B90 -gUnknown_8131B90: @ 8131B90 -.string "EVENT_DIVIDE_NEXT_DAY2_FUNC\0" -.align 2, 0 - -.global gUnknown_8131BAC -gUnknown_8131BAC: @ 8131BAC -.string "EVENT_DIVIDE_NEXT_DAY_FUNC\0" -.align 2, 0 - -.global gUnknown_8131BC8 -gUnknown_8131BC8: @ 8131BC8 -.string "EVENT_DIVIDE_INIT_FUNC\0" -.align 2, 0 - -.global gUnknown_8131BE0 -gUnknown_8131BE0: @ 8131BE0 -.string "EVENT_DIVIDE_NEXT\0" -.align 2, 0 - -.global gUnknown_8131BF4 -gUnknown_8131BF4: @ 8131BF4 -.string "EVENT_DIVIDE\0" -.align 2, 0 - -.global gUnknown_8131C04 -gUnknown_8131C04: @ 8131C04 -.string "EFFECT_MOVE_WAVE\0" -.align 2, 0 - -.global gUnknown_8131C18 -gUnknown_8131C18: @ 8131C18 -.string "EFFECT_MOVE_DIVE\0" -.align 2, 0 - -.global gUnknown_8131C2C -gUnknown_8131C2C: @ 8131C2C -.string "EFFECT_TEST2\0" -.align 2, 0 - -.global gUnknown_8131C3C -gUnknown_8131C3C: @ 8131C3C -.string "EFFECT_TEST1\0" -.align 2, 0 - -.global gUnknown_8131C4C -gUnknown_8131C4C: @ 8131C4C -.string "SAVE_SOUND_FUNC\0" -.align 2, 0 - -.global gUnknown_8131C5C -gUnknown_8131C5C: @ 8131C5C -.string "SAVE_END_FUNC\0" -.align 2, 0 - -.global gUnknown_8131C6C -gUnknown_8131C6C: @ 8131C6C -.string "SAVE_WAIT_FUNC\0" -.align 2, 0 - -.global gUnknown_8131C7C -gUnknown_8131C7C: @ 8131C7C -.string "SAVE_START_FUNC\0" -.align 2, 0 - -.global gUnknown_8131C8C -gUnknown_8131C8C: @ 8131C8C -.string "LODGE_SOUND_FUNC\0" -.align 2, 0 - -.global gUnknown_8131CA0 -gUnknown_8131CA0: @ 8131CA0 -.string "LODGE_END_FUNC\0" -.align 2, 0 - -.global gUnknown_8131CB0 -gUnknown_8131CB0: @ 8131CB0 -.string "LODGE_WAIT_FUNC\0" -.align 2, 0 - -.global gUnknown_8131CC0 -gUnknown_8131CC0: @ 8131CC0 -.string "LODGE_START_FUNC\0" -.align 2, 0 - -.global gUnknown_8131CD4 -gUnknown_8131CD4: @ 8131CD4 -.string "JOIN_FUNC\0" -.align 2, 0 - -.global gUnknown_8131CE0 -gUnknown_8131CE0: @ 8131CE0 -.string "GET_ITEM2_WAIT_FUNC\0" -.align 2, 0 - -.global gUnknown_8131CF4 -gUnknown_8131CF4: @ 8131CF4 -.string "GET_ITEM2_FUNC\0" -.align 2, 0 - -.global gUnknown_8131D04 -gUnknown_8131D04: @ 8131D04 -.string "GET_ITEM_WAIT_FUNC\0" -.align 2, 0 - -.global gUnknown_8131D18 -gUnknown_8131D18: @ 8131D18 -.string "GET_ITEM_FUNC\0" -.align 2, 0 - -.global gUnknown_8131D28 -gUnknown_8131D28: @ 8131D28 -.string "LIVES_WARP_ARRIVE_SUB\0" -.align 2, 0 - -.global gUnknown_8131D40 -gUnknown_8131D40: @ 8131D40 -.string "LIVES_WARP_ARRIVE3_FUNC\0" -.align 2, 0 - -.global gUnknown_8131D58 -gUnknown_8131D58: @ 8131D58 -.string "LIVES_WARP_ARRIVE2_FUNC\0" -.align 2, 0 - -.global gUnknown_8131D70 -gUnknown_8131D70: @ 8131D70 -.string "LIVES_WARP_ARRIVE_FUNC\0" -.align 2, 0 - -.global gUnknown_8131D88 -gUnknown_8131D88: @ 8131D88 -.string "LIVES_WARP_START_SUB\0" -.align 2, 0 - -.global gUnknown_8131DA0 -gUnknown_8131DA0: @ 8131DA0 -.string "LIVES_WARP_START3_FUNC\0" -.align 2, 0 - -.global gUnknown_8131DB8 -gUnknown_8131DB8: @ 8131DB8 -.string "LIVES_WARP_START2_FUNC\0" -.align 2, 0 - -.global gUnknown_8131DD0 -gUnknown_8131DD0: @ 8131DD0 -.string "LIVES_WARP_START_FUNC\0" -.align 2, 0 - -.global gUnknown_8131DE8 -gUnknown_8131DE8: @ 8131DE8 -.string "WARP_LIVES_ARRIVE3\0" -.align 2, 0 - -.global gUnknown_8131DFC -gUnknown_8131DFC: @ 8131DFC -.string "WARP_LIVES_ARRIVE2\0" -.align 2, 0 - -.global gUnknown_8131E10 -gUnknown_8131E10: @ 8131E10 -.string "WARP_LIVES_ARRIVE\0" -.align 2, 0 - -.global gUnknown_8131E24 -gUnknown_8131E24: @ 8131E24 -.string "WARP_LIVES_START3\0" -.align 2, 0 - -.global gUnknown_8131E38 -gUnknown_8131E38: @ 8131E38 -.string "WARP_LIVES_START2\0" -.align 2, 0 - -.global gUnknown_8131E4C -gUnknown_8131E4C: @ 8131E4C -.string "WARP_LIVES_START\0" -.align 2, 0 - -.global gUnknown_8131E60 -gUnknown_8131E60: @ 8131E60 -.string "EVOLUTION_HERO\0" -.align 2, 0 - -.global gUnknown_8131E70 -gUnknown_8131E70: @ 8131E70 -.string "FORMATION_HERO\0" -.align 2, 0 - -.global gUnknown_8131E80 -gUnknown_8131E80: @ 8131E80 -.string "WORLD_MAP_POINT\0" -.align 2, 0 - -.global gUnknown_8131E90 -gUnknown_8131E90: @ 8131E90 -.string "SAVE_AND_WAREHOUSE_POINT\0" -.align 2, 0 - -.global gUnknown_8131EAC -gUnknown_8131EAC: @ 8131EAC -.string "WAREHOUSE_POINT\0" -.align 2, 0 - -.global gUnknown_8131EBC -gUnknown_8131EBC: @ 8131EBC -.string "SAVE_POINT\0" -.align 2, 0 - -.global gUnknown_8131EC8 -gUnknown_8131EC8: @ 8131EC8 -.string "NEXT_SAVE2_FUNC\0" -.align 2, 0 - -.global gUnknown_8131ED8 -gUnknown_8131ED8: @ 8131ED8 -.string "NEXT_SAVE_FUNC\0" -.align 2, 0 - -.global gUnknown_8131EE8 -gUnknown_8131EE8: @ 8131EE8 -.string "DISMISSAL_SALLY_MEMBER4_FUNC\0" -.align 2, 0 - -.global gUnknown_8131F08 -gUnknown_8131F08: @ 8131F08 -.string "DISMISSAL_SALLY_MEMBER3_FUNC\0" -.align 2, 0 - -.global gUnknown_8131F28 -gUnknown_8131F28: @ 8131F28 -.string "DISMISSAL_SALLY_MEMBER2_FUNC\0" -.align 2, 0 - -.global gUnknown_8131F48 -gUnknown_8131F48: @ 8131F48 -.string "DISMISSAL_SALLY_MEMBER_FUNC\0" -.align 2, 0 - -.global gUnknown_8131F64 -gUnknown_8131F64: @ 8131F64 -.string "NORMAL_CAMERA\0" -.align 2, 0 - -.global gUnknown_8131F74 -gUnknown_8131F74: @ 8131F74 -.string "NORMAL_EVENT\0" -.align 2, 0 - -.global gUnknown_8131F84 -gUnknown_8131F84: @ 8131F84 -.string "NORMAL_MESSAGE\0" -.align 2, 0 - -.global gUnknown_8131F94 -gUnknown_8131F94: @ 8131F94 -.string "INIT_DEBUG_HABITAT\0" -.align 2, 0 - -.global gUnknown_8131FA8 -gUnknown_8131FA8: @ 8131FA8 -.string "INIT_BASE_FUNC\0" -.align 2, 0 - -.global gUnknown_8131FB8 -gUnknown_8131FB8: @ 8131FB8 -.string "INIT_SLEEP_FUNC\0" -.align 2, 0 - -.global gUnknown_8131FC8 -gUnknown_8131FC8: @ 8131FC8 -.string "INIT_PLAZA_SLEEP_TALK_FUNC\0" -.align 2, 0 - -.global gUnknown_8131FE4 -gUnknown_8131FE4: @ 8131FE4 -.string "INIT_PLAZA_SLEEP_STAY_FUNC\0" -.align 2, 0 - -.global gUnknown_8132000 -gUnknown_8132000: @ 8132000 -.string "MOVE_PLAZA_SLEEP\0" -.align 2, 0 - -.global gUnknown_8132014 -gUnknown_8132014: @ 8132014 -.string "ANGRY_END_FUNC\0" -.align 2, 0 - -.global gUnknown_8132024 -gUnknown_8132024: @ 8132024 -.string "ANGRY_START_FUNC\0" -.align 2, 0 - -.global gUnknown_8132038 -gUnknown_8132038: @ 8132038 -.string "SMILE_END_FUNC\0" -.align 2,0 - -.global gUnknown_8132048 -gUnknown_8132048: @ 8132048 -.string "SMILE_START_FUNC\0" -.align 2,0 - -.global gUnknown_813205C -gUnknown_813205C: @ 813205C -.string "SPREE_END_FUNC\0" -.align 2,0 - -.global gUnknown_813206C -gUnknown_813206C: @ 813206C -.string "SPREE_START_FUNC\0" -.align 2,0 - -.global gUnknown_8132080 -gUnknown_8132080: @ 8132080 -.string "SHOCK_FUNC\0" -.align 2,0 - -.global gUnknown_813208C -gUnknown_813208C: @ 813208C -.string "SWEAT_FUNC\0" -.align 2,0 - -.global gUnknown_8132098 -gUnknown_8132098: @ 8132098 -.string "QUESTION_FUNC\0" -.align 2,0 - -.global gUnknown_81320A8 -gUnknown_81320A8: @ 81320A8 -.string "NOTICE_FUNC\0" -.align 2,0 - -.global gUnknown_81320B4 -gUnknown_81320B4: @ 81320B4 -.string "JUMP_ANGRY_FUNC\0" -.align 2,0 - -.global gUnknown_81320C4 -gUnknown_81320C4: @ 81320C4 -.string "JUMP_SURPRISE_FUNC\0" -.align 2,0 - -.global gUnknown_81320D8 -gUnknown_81320D8: @ 81320D8 -.string "JUMP_HAPPY_FUNC\0" -.align 2,0 - -.global gUnknown_81320E8 -gUnknown_81320E8: @ 81320E8 -.string "LOOK_AROUND_LEFT_FUNC\0" -.align 2,0 - -.global gUnknown_8132100 -gUnknown_8132100: @ 8132100 -.string "LOOK_AROUND_RIGHT_FUNC\0" -.align 2,0 - -.global gUnknown_8132118 -gUnknown_8132118: @ 8132118 -.string "LOOK_AROUND_DOWN_FUNC\0" -.align 2,0 - -.global gUnknown_8132130 -gUnknown_8132130: @ 8132130 -.string "LOOK_AROUND_FUNC\0" -.align 2,0 - -.global gUnknown_8132144 -gUnknown_8132144: @ 8132144 -.string "WAKEUP_FUNC\0" -.align 2,0 - -.global gUnknown_8132150 -gUnknown_8132150: @ 8132150 -.string "MOVE_GIRL\0" -.align 2,0 - -.global gUnknown_813215C -gUnknown_813215C: @ 813215C -.string "MOVE_BOY\0" -.align 2,0 - -.global gUnknown_8132168 -gUnknown_8132168: @ 8132168 -.string "MOVE_RANDOM\0" -.align 2,0 - -.global gUnknown_8132174 -gUnknown_8132174: @ 8132174 -.string "MOVE_SLEEP\0" -.align 2,0 - -.global gUnknown_8132180 -gUnknown_8132180: @ 8132180 -.string "MOVE_STAY\0" -.align 2,0 - -.global gUnknown_813218C -gUnknown_813218C: @ 813218C -.string "MOVE_PAUSE\0" -.align 2,0 - -.global gUnknown_8132198 -gUnknown_8132198: @ 8132198 -.string "MOVE_INIT\0" -.align 2,0 - -.global gUnknown_81321A4 -gUnknown_81321A4: @ 81321A4 -.string "EFFECT_MOVE_CHANGE\0" -.align 2,0 - -.global gUnknown_81321B8 -gUnknown_81321B8: @ 81321B8 -.string "EFFECT_MOVE_NORMAL\0" -.align 2,0 - -.global gUnknown_81321CC -gUnknown_81321CC: @ 81321CC -.string "OBJECT_MOVE_CHANGE\0" -.align 2,0 - -.global gUnknown_81321E0 -gUnknown_81321E0: @ 81321E0 -.string "OBJECT_MOVE_NORMAL\0" -.align 2,0 - -.global gUnknown_81321F4 -gUnknown_81321F4: @ 81321F4 -.string "LIVES_MOVE_CHANGE\0" -.align 2,0 - -.global gUnknown_8132208 -gUnknown_8132208: @ 8132208 -.string "LIVES_MOVE_NORMAL\0" -.align 2,0 - -.global gUnknown_813221C -gUnknown_813221C: @ 813221C -.string "HABITAT_MOVE_STAY_TURN\0" -.align 2,0 - -.global gUnknown_8132234 -gUnknown_8132234: @ 8132234 -.string "HABITAT_MOVE_STAY_FIX\0" -.align 2,0 - -.global gUnknown_813224C -gUnknown_813224C: @ 813224C -.string "HABITAT_MOVE_PAUSE\0" -.align 2,0 - -.global gUnknown_8132260 -gUnknown_8132260: @ 8132260 -.string "HABITAT_MOVE2\0" -.align 2,0 - -.global gUnknown_8132270 -gUnknown_8132270: @ 8132270 -.string "HABITAT_MOVE1\0" -.align 2,0 - -.global gUnknown_8132280 -gUnknown_8132280: @ 8132280 -.string "HABITAT_TALK_S01E02A\0" -.align 2,0 - -.global gUnknown_8132298 -gUnknown_8132298: @ 8132298 -.string "HABITAT_TALK\0" -.align 2,0 - -.global gUnknown_81322A8 -gUnknown_81322A8: @ 81322A8 -.string "UNIT_TALK\0" -.align 2,0 - -.global gUnknown_81322B4 -gUnknown_81322B4: @ 81322B4 -.string "ENTER_WAIT_FUNC\0" -.align 2,0 - -.global gUnknown_81322C4 -gUnknown_81322C4: @ 81322C4 -.string "EXAMINE_MISS\0" -.align 2,0 - -.global gUnknown_81322D4 -gUnknown_81322D4: @ 81322D4 -.string "OBJECT_REPLY_NORMAL\0" -.align 2,0 - -.global gUnknown_81322E8 -gUnknown_81322E8: @ 81322E8 -.string "LIVES_REPLY\0" -.align 2,0 - -.global gUnknown_81322F4 -gUnknown_81322F4: @ 81322F4 -.string "LIVES_REPLY_NORMAL\0" -.align 2,0 - -.global gUnknown_8132308 -gUnknown_8132308: @ 8132308 -.string "NORMAL_WAIT_END_TALK\0" -.align 2,0 - -.global gUnknown_8132320 -gUnknown_8132320: @ 8132320 -.string "INCOMPLETE_TALK\0" -.align 2,0 - -.global gUnknown_8132330 -gUnknown_8132330: @ 8132330 -.string "WAIT_START_FUNC\0" -.align 2,0 - -.global gUnknown_8132340 -gUnknown_8132340: @ 8132340 -.string "WAIT_END_EVENT_FUNC\0" -.align 2,0 - -.global gUnknown_8132354 -gUnknown_8132354: @ 8132354 -.string "WAIT_END_TALK_FUNC\0" -.align 2,0 - -.global gUnknown_8132368 -gUnknown_8132368: @ 8132368 -.string "END_TALK\0" -.align 2,0 -.string "pksdir0\0" -.align 2,0 +.byte 0x03, 0x00, 0x01, 0x01 diff --git a/data/friend_area_dialogue.s b/data/friend_area_dialogue.s index 57cb38d23..ae1bc276b 100644 --- a/data/friend_area_dialogue.s +++ b/data/friend_area_dialogue.s @@ -1,5 +1,8 @@ .section .rodata + .string "pksdir0\0" + .align 2,0 + .global gFriendAreaDialogue gFriendAreaDialogue: @ 813237C @ replacing .incbin "baserom.gba", 0x0013237c, 0x13d610 @@ -118,6 +121,3 @@ gFriendAreaDialogue: @ 813237C .string "{CENTER_ALIGN}It seems to be full of energy!\0" .align 2,0 - .string "pksdir0\0" - .align 2,0 - diff --git a/data/scripts/company_screens.inc b/data/scripts/company_screens.inc index b4f4d2a02..6462cbd06 100644 --- a/data/scripts/company_screens.inc +++ b/data/scripts/company_screens.inc @@ -114,8 +114,8 @@ .byte 15, 51, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01 @ Chunsoft coordinates .byte 15, 71, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01 @ Pokemon copyright coordinates - .global gUnknown_826F5A0 - gUnknown_826F5A0: + .global gGroundScript_gs226 + gGroundScript_gs226: .byte 0x02, 0x00, 0x00, 0x00 .4byte CompanyScreensScenes .4byte CompanyScreensWaypoints diff --git a/data/scripts/health_safety.inc b/data/scripts/health_safety.inc index d9e482720..2ad4aafe2 100644 --- a/data/scripts/health_safety.inc +++ b/data/scripts/health_safety.inc @@ -83,8 +83,8 @@ .byte 15, 11, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01 .byte 15, 31, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01 - .global gUnknown_826F7FC - gUnknown_826F7FC: + .global gGroundScript_gs227 + gGroundScript_gs227: .byte 0x02, 0x00, 0x00, 0x00 .4byte HealthSafetyScenes .4byte HealthSafetyWaypoints diff --git a/data/scripts/intro.inc b/data/scripts/intro.inc index 1c0466f1e..441972ca2 100644 --- a/data/scripts/intro.inc +++ b/data/scripts/intro.inc @@ -151,8 +151,8 @@ .byte 0x01, 0x00, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01 .byte 0x0d, 0x26, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01 - .global gUnknown_826F1A0 - gUnknown_826F1A0: + .global gGroundScript_gs225 + gGroundScript_gs225: .byte 0x02, 0x00, 0x00, 0x00 .4byte gUnknown_826F130 .4byte IntroWaypoints diff --git a/data/scripts/personality_test.inc b/data/scripts/personality_test.inc index 3bb3e89cb..a833c716f 100644 --- a/data/scripts/personality_test.inc +++ b/data/scripts/personality_test.inc @@ -100,8 +100,8 @@ .byte 0x00, 0x00, 0x00, 0x00 .byte 0x00, 0x00, 0x00, 0x00 - .global gUnknown_826E288 - gUnknown_826E288: + .global gGroundScript_gs223 + gGroundScript_gs223: .byte 0x02, 0x00, 0x00, 0x00 .4byte PersonalityTestScenes .4byte PersonalityTestWaypoints diff --git a/data/scripts/title.inc b/data/scripts/title.inc index 974f52236..f96981b4e 100644 --- a/data/scripts/title.inc +++ b/data/scripts/title.inc @@ -287,8 +287,8 @@ .byte 0x1a, 0x06, 0x00, 0x02, 0x01, 0x01, 0x02, 0x01 .byte 0x1a, 0x0c, 0x00, 0x00, 0x01, 0x01, 0x02, 0x01 - .global gUnknown_826EC44 - gUnknown_826EC44: + .global gGroundScript_gs224 + gGroundScript_gs224: .byte 0x05, 0x00, 0x00, 0x00 .4byte gUnknown_826EBC4 .4byte TitleWaypoints diff --git a/data/scripts/world_map.inc b/data/scripts/world_map.inc index b6ba0611b..d192863d9 100644 --- a/data/scripts/world_map.inc +++ b/data/scripts/world_map.inc @@ -70,8 +70,8 @@ .byte 0x00, 0x00, 0x00, 0x00 .byte 0x00, 0x00, 0x00, 0x00 - .global gUnknown_826F980 - gUnknown_826F980: + .global gGroundScript_gs228 + gGroundScript_gs228: .byte 0x02, 0x00, 0x00, 0x00 .4byte WorldMapScenes .4byte WorldMapWaypoints diff --git a/include/data_script.h b/include/data_script.h new file mode 100644 index 000000000..ee7cf97ec --- /dev/null +++ b/include/data_script.h @@ -0,0 +1,546 @@ +#include "ground_script.h" +#include "event_flag.h" +#include "constants/item.h" +#define LPARRAY(x) (sizeof(x)/sizeof(*(x))), x + +#define CPOS_HALFTILE 0x2 +#define CPOS_CURRENT 0x4 + +// 01..07: complex map/dungeon selection/check commands +#define SELECT_MAP(m) { 0x08, 0, 0, m, 0, NULL } +#define SELECT_GROUND(m) { 0x09, 0, 0, m, 0, NULL } +#define SELECT_DUNGEON(m,d,f,b) { 0x0A, b, f, d, m, NULL } +#define SELECT_WEATHER(w) { 0x0B, 0, 0, w, 0, NULL } +#define SELECT_ENTITIES(g,s) { 0x0C, s, g, 0, 0, NULL } +#define SELECT_LIVES(g,s) { 0x0D, s, g, 0, 0, NULL } +#define SELECT_OBJECTS(g,s) { 0x0E, s, g, 0, 0, NULL } +#define SELECT_EFFECTS(g,s) { 0x0F, s, g, 0, 0, NULL } +#define SELECT_EVENTS(g,s) { 0x10, s, g, 0, 0, NULL } +#define CANCEL_ENTITIES(g,s) { 0x11, s, g, 0, 0, NULL } +#define CANCEL_LIVES(g,s) { 0x12, s, g, 0, 0, NULL } +#define CANCEL_OBJECTS(g,s) { 0x13, s, g, 0, 0, NULL } +#define CANCEL_EFFECTS(g,s) { 0x14, s, g, 0, 0, NULL } +#define CANCEL_EVENTS(g,s) { 0x15, s, g, 0, 0, NULL } +#define CANCEL_OFFSCREEN_LIVES { 0x16, 0, 0, 0, 0, NULL } +#define CANCEL_OFFSCREEN_OBJECTS {0x17, 0, 0, 0, 0, NULL } +#define CANCEL_OFFSCREEN_EFFECTS {0x18, 0, 0, 0, 0, NULL } +#define SPAWN_OBJECT(k,d,g,s) { 0x19, s, g, d, k, NULL } +#define SPAWN_EFFECT(k,d,g,s) { 0x1A, s, g, d, k, NULL } +#define EXECUTE_FUNCTION(f) { 0x1B, 0, f, 0, 0, NULL } +#define EXECUTE_SUBROUTINE(f) { 0x1C, 0, f, 0, 0, NULL } +#define EXECUTE_STATION(m,g,s) { 0x1D, s, g, m, 0, NULL } +#define EXECUTE_SUBSTATION(m,g,s){0x1E, s, g, m, 0, NULL } +#define RESCUE_SELECT { 0x1F, 0, 0, 0, 0, NULL } +// 20: execute script as parented object, maybe? Unused in ROM +// 21: follow object/make object follow/get parented? +// 22..2f: ??? +// 30..39: various text printing +// 3a: yes/no choice (only used for saving) +// 3b: uber command (conditional jump) +// 3c: unknown textbox-related cjump +// 3d..3f: input boxes? +// 40: unused? +#define REMOVE_ITEMSTACK(i) { 0x41, 0, i, 0, 0, NULL } +#define MUSIC_STOP_ALL { 0x42, 0, 0, 0, 0, NULL } +#define MUSIC_FADEOUT_ALL(f) { 0x43, 0, f, 0, 0, NULL } +#define BGM_SWITCH(i) { 0x44, 0, 0, i, 0, NULL } +#define BGM_FADEIN(f,i) { 0x45, 0, f, i, 0, NULL } +#define BGM_QUEUE(i) { 0x46, 0, 0, i, 0, NULL } +#define BGM_STOP { 0x47, 0, 0, 0, 0, NULL } +#define BGM_FADEOUT(f) { 0x48, 0, f, 0, 0, NULL } +#define FANFARE_PLAY(i) { 0x49, 0, 0, i, 0, NULL } +#define FANFARE_STOP(i) { 0x4a, 0, 0, i, 0, NULL } +#define FANFARE_FADEOUT(f,i) { 0x4b, 0, f, i, 0, NULL } +#define FANFARE_PLAY2(i) { 0x4c, 0, 0, i, 0, NULL } +#define FANFARE_STOP2(i) { 0x4d, 0, 0, i, 0, NULL } +#define FANFARE_FADEOUT2(f,i) { 0x4e, 0, f, i, 0, NULL } +// 4f..57: more movement/position? Some sprite stuff? +// 58..95: position and movement-related +// 96: unused? +// 97..9a: ??? (maybe more camera?) +// 9b..a3: camera-related +#define RESET_ARRAY(v) { 0xA4, 0, v, 0, 0, NULL } +#define CLEAR_ARRAY(v) { 0xA5, 0, v, 0, 0, NULL } +#define UPDATE_VARINT(o,v,i) { 0xA6, o, v, i, 0, NULL } +#define UPDATE_VARVAR(o,a,b) { 0xA7, o, a, b, 0, NULL } +#define SET_ARRAYVAL(v,i,x) { 0xA8, 0, v, i, x, NULL } +#define SCENARIO_CALC(v,a,b) { 0xA9, 0, v, a, b, NULL } +#define SCENARIO_ADVANCE(v,a) { 0xAA, 0, v, a, 0, NULL } +#define SET_DUNGEON_RES(r,e) { 0xAB, 0, r, e, 0, NULL } +#define SET_PLAYER_KIND(k) { 0xAC, 0, k, 0, 0, NULL } +// ad..b2: opaque functions +#define JUMPIF_EQUAL(v,i,l) { 0xB3, l, v, i, 0, NULL } +#define JUMPIF(o,v,i,l) { 0xB4, o, l, v, i, NULL } +#define JUMPIF_2(o,a,b,l) { 0xB5, o, l, a, b, NULL } +#define JUMPIF_ARRAY(v,i,l) { 0xB6, 0, l, v, i, NULL } +#define JUMPIF_SUM(o,v,i,l) { 0xB7, o, l, v, i, NULL } +#define JUMPIF_SCENE_LT(v,a,b,l){ 0xB8, l, v, a, b, NULL } +#define JUMPIF_SCENE_EQ(v,a,b,l){ 0xB9, l, v, a, b, NULL } +#define JUMPIF_SCENE_GT(v,a,b,l){ 0xBA, l, v, a, b, NULL } +#define JUMPIF_SCENARIOCHECK(i,l){0xBB, l, i, 0, 0, NULL } +// functions need reversing +#define JUMPIF_UNK_BC(i,l) { 0xBC, l, i, 0, 0, NULL } +#define JUMPIF_UNK_BD(i,l) { 0xBD, l, 0, i, 0, NULL } +#define JUMPIF_UNK_BE(l) { 0xBE, l, 0, 0, 0, NULL } +#define JUMPIF_HASITEM(i,l) { 0xBF, l, i, 0, 0, NULL } +#define CJUMP_VAR(v) { 0xC0, 0, v, 0, 0, NULL } +#define CJUMP_CALC_VI(o,v,i) { 0xC1, o, v, i, 0, NULL } +#define CJUMP_CALC_VV(o,a,b) { 0xC2, o, a, b, 0, NULL } +#define CJUMP_RANDOM(h) { 0xC3, 0, h, 0, 0, NULL } +#define CJUMP_SCENARIO_0(v) { 0xC4, 0, v, 0, 0, NULL } +#define CJUMP_SCENARIO_1(v) { 0xC5, 0, v, 0, 0, NULL } +// wtf is c6 +#define CJUMP_UNK_C6(a) { 0xC6, 0, 0, a, 0, NULL } +#define CJUMP_DIRECTION { 0xC7, 0, 0, 0, 0, NULL } +// C8: distance calculation with that weird 80A7AE8 +#define CJUMP_UNK_C8(a) { 0xC8, 0, 0, a, 0, NULL } +// C9: ditto, but with one hardcoded pos of four +#define CJUMP_UNK_C9(a) { 0xC9, 0, 0, a, 0, NULL } +#define CJUMP_DIR_TO_LINK(l) { 0xCA, 0, 0, l, 0, NULL } +// wtf is cb +#define CJUMP_UNK_CB(h) { 0xCB, 0, h, 0, 0, NULL } +#define COND_EQUAL(v,t) { 0xCC, 0, t, v, 0, NULL } +#define COND(o,v,t) { 0xCD, o, t, v, 0, NULL } +#define COND_VAR(o,v,t) { 0xCE, o, t, v, 0, NULL } +#define MSG_VAR(b,v,a) { 0xCF, b, v, a, 0, NULL } +#define VARIANT(c,s) { 0xD0, 0, c, 0, 0, s } +#define VARIANT_DEFAULT(s) { 0xD1, 0, 0, 0, 0, s } +#define ASK_DEBUG(b,h,a,s) { 0xD2, b, h, a, 0, s } +#define ASK1(b,h,a,s) { 0xD3, b, h, a, 0, s } +#define ASK2(b,h,a,s) { 0xD4, b, h, a, 0, s } +#define ASK3(b,h,a,s) { 0xD5, b, h, a, 0, s } +#define ASK1_VAR(b,h,a,v) { 0xD6, b, h, a, v, NULL } +#define ASK2_VAR(b,h,a,v) { 0xD7, b, h, a, v, NULL } +#define ASK3_VAR(b,h,a,v) { 0xD8, b, h, a, v, NULL } +#define CHOICE(h,s) { 0xD9, 0, h, 0, 0, s } +#define WAIT(f) { 0xDB, 0, f, 0, 0, NULL } +#define WAIT_RANDOM(a,b) { 0xDC, 0, a, b, 0, NULL } +// dd..e2 - various HandleAction commands +// e3..e5 - locking/condvar commands +#define CALL_LABEL(x) { 0xE6, 0, x, 0, 0, NULL } +#define JUMP_LABEL(x) { 0xE7, 0, x, 0, 0, NULL } +#define CALL_SCRIPT(x) { 0xE8, 0, x, 0, 0, NULL } +#define JUMP_SCRIPT(x) { 0xE9, 0, x, 0, 0, NULL } +#define CALL_STATION(g,s) { 0xEA, s, g,-1, 0, NULL } +#define JUMP_STATION(g,s) { 0xEB, s, g,-1, 0, NULL } +#define EXECUTE_MAP_VAR(v) { 0xEC, 0, v, 0, 0, NULL } +#define RESET_CALLER { 0xED, 0, 0, 0, 0, NULL } +#define RET_DIRECT { 0xEE, 0, 0, 0, 0, NULL } +#define RET { 0xEF, 0, 0, 0, 0, NULL } +#define HALT { 0xF0, 0, 0, 0, 0, NULL } +#define END_DELETE { 0xF1, 0, 0, 0, 0, NULL } +#define LABEL(x) { 0xF4, 0, x, 0, 0, NULL } +#ifdef NONMATCHING +#define DEBUGINFO { 0xF6, 0, __LINE__, 0, 0, __FILE__ } +#else +#define DEBUGINFO { 0xF6, 0, __LINE__, 0, 0, FAKE_FILENAME } +#endif + +// function/trigger/script names +#define END_TALK 0 +#define WAIT_END_TALK_FUNC 1 +#define WAIT_END_EVENT_FUNC 2 +#define WAIT_START_FUNC 3 +#define INCOMPLETE_TALK 4 +#define NORMAL_WAIT_END_TALK 5 +#define LIVES_REPLY_NORMAL 6 +#define LIVES_REPLY 7 +#define OBJECT_REPLY_NORMAL 8 +#define EXAMINE_MISS 9 +#define ENTER_WAIT_FUNC 10 +#define UNIT_TALK 11 +#define HABITAT_TALK 12 +#define HABITAT_TALK_S01E02A 13 +#define HABITAT_MOVE1 14 +#define HABITAT_MOVE2 15 +#define HABITAT_MOVE_PAUSE 16 +#define HABITAT_MOVE_STAY_FIX 17 +#define HABITAT_MOVE_STAY_TURN 18 +#define LIVES_MOVE_NORMAL 19 +#define LIVES_MOVE_CHANGE 20 +#define OBJECT_MOVE_NORMAL 21 +#define OBJECT_MOVE_CHANGE 22 +#define EFFECT_MOVE_NORMAL 23 +#define EFFECT_MOVE_CHANGE 24 +#define MOVE_INIT 25 +#define MOVE_PAUSE 26 +#define MOVE_STAY 27 +#define MOVE_SLEEP 28 +#define MOVE_RANDOM 29 +#define MOVE_BOY 30 +#define MOVE_GIRL 31 +#define WAKEUP_FUNC 32 +#define LOOK_AROUND_FUNC 33 +#define LOOK_AROUND_DOWN_FUNC 34 +#define LOOK_AROUND_RIGHT_FUNC 35 +#define LOOK_AROUND_LEFT_FUNC 36 +#define JUMP_HAPPY_FUNC 37 +#define JUMP_SURPRISE_FUNC 38 +#define JUMP_ANGRY_FUNC 39 +#define NOTICE_FUNC 40 +#define QUESTION_FUNC 41 +#define SWEAT_FUNC 42 +#define SHOCK_FUNC 43 +#define SPREE_START_FUNC 44 +#define SPREE_END_FUNC 45 +#define SMILE_START_FUNC 46 +#define SMILE_END_FUNC 47 +#define ANGRY_START_FUNC 48 +#define ANGRY_END_FUNC 49 +#define MOVE_PLAZA_SLEEP 50 +#define INIT_PLAZA_SLEEP_STAY_FUNC 51 +#define INIT_PLAZA_SLEEP_TALK_FUNC 52 +#define INIT_SLEEP_FUNC 53 +#define INIT_BASE_FUNC 54 +#define INIT_DEBUG_HABITAT 55 +#define NORMAL_MESSAGE 56 +#define NORMAL_EVENT 57 +#define NORMAL_CAMERA 58 +#define DISMISSAL_SALLY_MEMBER_FUNC 59 +#define DISMISSAL_SALLY_MEMBER2_FUNC 60 +#define DISMISSAL_SALLY_MEMBER3_FUNC 61 +#define DISMISSAL_SALLY_MEMBER4_FUNC 62 +#define NEXT_SAVE_FUNC 63 +#define NEXT_SAVE2_FUNC 64 +#define SAVE_POINT 65 +#define WAREHOUSE_POINT 66 +#define SAVE_AND_WAREHOUSE_POINT 67 +#define WORLD_MAP_POINT 68 +#define FORMATION_HERO 69 +#define EVOLUTION_HERO 70 +#define WARP_LIVES_START 71 +#define WARP_LIVES_START2 72 +#define WARP_LIVES_START3 73 +#define WARP_LIVES_ARRIVE 74 +#define WARP_LIVES_ARRIVE2 75 +#define WARP_LIVES_ARRIVE3 76 +#define LIVES_WARP_START_FUNC 77 +#define LIVES_WARP_START2_FUNC 78 +#define LIVES_WARP_START3_FUNC 79 +#define LIVES_WARP_START_SUB 80 +#define LIVES_WARP_ARRIVE_FUNC 81 +#define LIVES_WARP_ARRIVE2_FUNC 82 +#define LIVES_WARP_ARRIVE3_FUNC 83 +#define LIVES_WARP_ARRIVE_SUB 84 +#define GET_ITEM_FUNC 85 +#define GET_ITEM_WAIT_FUNC 86 +#define GET_ITEM2_FUNC 87 +#define GET_ITEM2_WAIT_FUNC 88 +#define JOIN_FUNC 89 +#define LODGE_START_FUNC 90 +#define LODGE_WAIT_FUNC 91 +#define LODGE_END_FUNC 92 +#define LODGE_SOUND_FUNC 93 +#define SAVE_START_FUNC 94 +#define SAVE_WAIT_FUNC 95 +#define SAVE_END_FUNC 96 +#define SAVE_SOUND_FUNC 97 +#define EFFECT_TEST1 98 +#define EFFECT_TEST2 99 +#define EFFECT_MOVE_DIVE 100 +#define EFFECT_MOVE_WAVE 101 +#define EVENT_DIVIDE 102 +#define EVENT_DIVIDE_NEXT 103 +#define EVENT_DIVIDE_INIT_FUNC 104 +#define EVENT_DIVIDE_NEXT_DAY_FUNC 105 +#define EVENT_DIVIDE_NEXT_DAY2_FUNC 106 +#define EVENT_DIVIDE_FIRST 107 +#define EVENT_DIVIDE_SECOND 108 +#define EVENT_DIVIDE_AFTER 109 +#define EVENT_DIVIDE_WARP_LOCK_FUNC 110 +#define EVENT_RESCUE_ENTER_CHECK 111 +#define EVENT_RESCUE 112 +#define DEBUG_SCRIPT 113 +#define DEMO_CANCEL 114 +#define DEMO_01 115 +#define DEMO_02 116 +#define DEMO_03 117 +#define DEMO_04 118 +#define EVENT_M00E01A_L001 119 +#define EVENT_M01E01A_L001 120 +#define EVENT_M01E01A_L002 121 +#define EVENT_M01E01A_L003 122 +#define EVENT_M01E02A_L001 123 +#define EVENT_M01E02A_L001B 124 +#define EVENT_M01E02A_L001C 125 +#define EVENT_M01E02A_L002 126 +#define EVENT_M01E02A_L003 127 +#define EVENT_M01E02A_L004 128 +#define EVENT_M01E02A_L005 129 +#define EVENT_M01E02A_L006 130 +#define EVENT_M01E02B_L001 131 +#define EVENT_M01E02B_L002 132 +#define EVENT_M01E02B_L003 133 +#define EVENT_M01E02B_L004 134 +#define EVENT_M01E02B_L004B 135 +#define EVENT_M01E02B_L005 136 +#define EVENT_M01E02B_L006 137 +#define EVENT_M01E02B_L007 138 +#define EVENT_M01E02B_L008 139 +#define EVENT_M01E03A_L000 140 +#define EVENT_M01E03A_L001 141 +#define EVENT_M01E03A_L002 142 +#define EVENT_M01E03A_L003 143 +#define EVENT_M01E03A_L004 144 +#define EVENT_M01E03A_L005 145 +#define EVENT_M01E03A_L006 146 +#define EVENT_M01E03A_L007 147 +#define EVENT_M01E03A_L008 148 +#define EVENT_M01E03A_L009 149 +#define EVENT_M01E03A_L010 150 +#define EVENT_M01E03A_L011 151 +#define EVENT_M01E04A_L000 152 +#define EVENT_M01E04A_L001 153 +#define EVENT_M01E04A_L002 154 +#define EVENT_M01E04A_L003 155 +#define EVENT_M01E04A_L004 156 +#define EVENT_M01E04A_L005 157 +#define EVENT_M01E04A_L006 158 +#define EVENT_M01E04B_L000 159 +#define EVENT_M01E04B_L001 160 +#define EVENT_M01E04B_L002 161 +#define EVENT_M01E04B_L003 162 +#define EVENT_M01E04B_L004 163 +#define EVENT_M01E04B_L005 164 +#define EVENT_M01E04B_L006 165 +#define EVENT_M01E04B_L007 166 +#define EVENT_M01E05A_L000 167 +#define EVENT_M01E05A_L001 168 +#define EVENT_M01E05A_L002 169 +#define EVENT_M01E05A_L003 170 +#define EVENT_M01E05A_L004 171 +#define EVENT_M01E05A_L005 172 +#define EVENT_M01E05A_L006 173 +#define EVENT_M01E05B_L000 174 +#define EVENT_M01E05B_L001 175 +#define EVENT_M01E05B_L002 176 +#define EVENT_M01E05B_L003 177 +#define EVENT_M01E05B_L004 178 +#define EVENT_M01E05B_L005 179 +#define EVENT_M01E06A_L001 180 +#define EVENT_M01E06A_L002 181 +#define EVENT_M01E06A_L003 182 +#define EVENT_M01E07A_L001 183 +#define EVENT_M01E07A_L002 184 +#define EVENT_M01E07A_L003 185 +#define EVENT_M01E07A_L004 186 +#define EVENT_M01E07A_L005 187 +#define EVENT_M01E07A_T001 188 +#define EVENT_M01E07A_T002 189 +#define EVENT_M01E07B_L001 190 +#define EVENT_M01E07B_L002 191 +#define EVENT_M01E07B_L003 192 +#define EVENT_M01E07B_L004 193 +#define EVENT_M01E07B_L005 194 +#define EVENT_M01E07B_T001 195 +#define EVENT_M01E07B_T002 196 +#define EVENT_M01E08A_L001 197 +#define EVENT_M01E08A_L002 198 +#define EVENT_M01E08A_L003 199 +#define EVENT_M01E08A_L004 200 +#define EVENT_M01E08A_L005 201 +#define EVENT_M01E08A_T001 202 +#define EVENT_M01E08A_T002 203 +#define EVENT_M01E08B_L001 204 +#define EVENT_M01E08B_L002 205 +#define EVENT_M01E08B_L003 206 +#define EVENT_M01E08B_L004 207 +#define EVENT_M01E08B_L005 208 +#define EVENT_M01E08B_L006 209 +#define EVENT_M01E08B_T001 210 +#define EVENT_M01E08B_T002 211 +#define EVENT_M01E09A_L001 212 +#define EVENT_M01E09A_L002 213 +#define EVENT_M01E09A_L003 214 +#define EVENT_M01E09A_L004 215 +#define EVENT_M01E09A_L005 216 +#define EVENT_M01E09A_L006 217 +#define EVENT_M01E09A_L007 218 +#define EVENT_M01E09A_L008 219 +#define EVENT_M01E09A_L009 220 +#define EVENT_M01E09A_L010 221 +#define EVENT_M01E09A_L011 222 +#define EVENT_M01E09A_L012 223 +#define EVENT_M01E09A_L013 224 +#define EVENT_M01E09A_L014 225 +#define EVENT_M01E09A_L015 226 +#define EVENT_M01E10A_L001 227 +#define EVENT_M01E10A_L002 228 +#define EVENT_M01E10A_L003 229 +#define EVENT_M01E10A_L004 230 +#define EVENT_M01E10A_L005 231 +#define EVENT_M01E10A_L006 232 +#define EVENT_M01E10A_L007 233 +#define EVENT_M01E10A_L008 234 +#define EVENT_M01END_L001 235 +#define EVENT_M01END_L002 236 +#define EVENT_M02E01A_L001 237 +#define EVENT_M02E01A_L002 238 +#define EVENT_M02E01A_L003 239 +#define EVENT_M02E02A_L001 240 +#define EVENT_M02E02B_L001 241 +#define EVENT_M02E02C_L001 242 +#define EVENT_M02E02D_L001 243 +#define EVENT_M02E02E_L001 244 +#define EVENT_M02E02F_L001 245 +#define EVENT_M02E02G_L001 246 +#define EVENT_M02E02H_L001 247 +#define EVENT_M02END_L001 248 +#define EVENT_S00E01A_L001 249 +#define EVENT_S00E01A_L002 250 +#define EVENT_S00E01A_L003 251 +#define EVENT_S00E01A_L004 252 +#define EVENT_S01E01A_START 253 +#define EVENT_S01E01A_CONTINUE 254 +#define EVENT_S01E01A_END 255 +#define EVENT_S01E01A_L001 256 +#define EVENT_S01E01A_L002 257 +#define EVENT_S01E01A_L003 258 +#define EVENT_S01E01B_L001 259 +#define EVENT_S01E01B_L001L 260 +#define EVENT_S01E01C_L001 261 +#define EVENT_S01E02A_START 262 +#define EVENT_S01E02A_END 263 +#define EVENT_S01E02A_L001 264 +#define EVENT_S01E02A_L002 265 +#define EVENT_S01E02A_L002L 266 +#define EVENT_S01E02B_L001 267 +#define EVENT_S01E02B_L002 268 +#define EVENT_S02E01A_START 269 +#define EVENT_S02E01A_END 270 +#define EVENT_S02E01A_L001 271 +#define EVENT_S02E01A_L002 272 +#define EVENT_S02E01A_L003 273 +#define EVENT_S02E01A_L004 274 +#define EVENT_S02E01A_L004L 275 +#define EVENT_S02E02A_START 276 +#define EVENT_S02E02A_END 277 +#define EVENT_S02E02A_L001 278 +#define EVENT_S02E02A_L002 279 +#define EVENT_S02E02A_L003 280 +#define EVENT_S02E02A_L003L 281 +#define EVENT_S03E01A_START 282 +#define EVENT_S03E01A_CONTINUE 283 +#define EVENT_S03E01A_END 284 +#define EVENT_S03E01A_L001 285 +#define EVENT_S03E01A_L002 286 +#define EVENT_S03E01A_L002L 287 +#define EVENT_S04E01A_START 288 +#define EVENT_S04E01A_LAST 289 +#define EVENT_S04E01A_END 290 +#define EVENT_S04E01A_L001 291 +#define EVENT_S04E01A_L002 292 +#define EVENT_S04E01A_L002L 293 +#define EVENT_S04E01B_L001 294 +#define EVENT_S04E01B_L001L 295 +#define EVENT_S04E01C_L001 296 +#define EVENT_S04E01C_L001L 297 +#define EVENT_S04E01D_L001 298 +#define EVENT_S04E01D_L001L 299 +#define EVENT_S04E01E_L001 300 +#define EVENT_S04E01E_L001L 301 +#define EVENT_S04E01F_L001 302 +#define EVENT_S05E01A_START 303 +#define EVENT_S05E01A_CONTINUE 304 +#define EVENT_S05E01A_END 305 +#define EVENT_S05E01A_L001 306 +#define EVENT_S05E01A_L002 307 +#define EVENT_S05E01A_L002L 308 +#define EVENT_S06E01A_START 309 +#define EVENT_S06E01A_CONTINUE 310 +#define EVENT_S06E01A_END 311 +#define EVENT_S06E01A_L001 312 +#define EVENT_S06E01A_L002 313 +#define EVENT_S06E01A_L002L 314 +#define EVENT_S06E01B_L001 315 +#define EVENT_S06E01B_L002 316 +#define EVENT_S06E01B_L002L 317 +#define EVENT_S07E01A_START 318 +#define EVENT_S07E01A_END 319 +#define EVENT_S07E01A_L001 320 +#define EVENT_S07E01A_L002 321 +#define EVENT_S07E01A_L003 322 +#define EVENT_S07E01A_L003L 323 +#define EVENT_S08E01A_START 324 +#define EVENT_S08E01A_END 325 +#define EVENT_S08E01A_L001 326 +#define EVENT_S08E01A_L002 327 +#define EVENT_S08E01A_L003 328 +#define EVENT_S08E01A_L004 329 +#define EVENT_S08E01A_L005 330 +#define EVENT_S08E01A_L005B 331 +#define EVENT_S08E01A_L006 332 +#define EVENT_S08E01A_L006L 333 +#define EVENT_S08E01A_L007 334 +#define EVENT_S08E01A_L008 335 +#define EVENT_S08E01A_L008L 336 +#define EVENT_S08E01A_L008A 337 +#define EVENT_S08E01A_L008B 338 +#define EVENT_S08E01A_L008C 339 +#define EVENT_S09E01A_START 340 +#define EVENT_S09E01A_END 341 +#define EVENT_S09E01A_L001 342 +#define EVENT_S09E01A_L002 343 +#define EVENT_S09E01A_L003 344 +#define EVENT_S09E01A_L004 345 +#define EVENT_S09E01A_L004B 346 +#define EVENT_S09E01A_L005 347 +#define EVENT_S09E01A_L005L 348 +#define EVENT_S09E01B_L001 349 +#define EVENT_S09E01B_L001B 350 +#define EVENT_S09E01B_L002 351 +#define EVENT_S09E01B_L002L 352 +#define EVENT_S09E01C_L001 353 +#define EVENT_R00E01A_L001 354 +#define COMMON_ENTER 355 +#define DEBUG_ENTER 356 +#define GETOUT_NORMAL 357 +#define GETOUT_HABITAT 358 +#define GETOUT_M01E01A 359 +#define GETOUT_M01E02A 360 +#define GETOUT_M01E02B 361 +#define GETOUT_M01E03A 362 +#define GETOUT_M01E04A 363 +#define GETOUT_M01E04B 364 +#define GETOUT_M01E05A 365 +#define GETOUT_M01E07A 366 +#define GETOUT_M01E07B 367 +#define GETOUT_M01E08A 368 +#define GETOUT_M01E08B 369 +#define GETOUT_M01E09A 370 +#define GETOUT_M01E10A 371 +#define GETOUT_S00E01A 372 +#define GETOUT_S01E01A 373 +#define GETOUT_S01E02A 374 +#define GETOUT_S02E01A 375 +#define GETOUT_S02E02A 376 +#define GETOUT_S03E01A 377 +#define GETOUT_S04E01A 378 +#define GETOUT_S04E01B 379 +#define GETOUT_S04E01C 380 +#define GETOUT_S04E01D 381 +#define GETOUT_S04E01E 382 +#define GETOUT_S05E01A 383 +#define GETOUT_S06E01A 384 +#define GETOUT_S06E01B 385 +#define GETOUT_S07E01A 386 +#define GETOUT_S08E01A 387 +#define GETOUT_S09E01A 388 +#define GETOUT_S09E01B 389 +#define GETOUT_D62E01A 390 +#define GETOUT_D43E01A 391 +#define GETOUT_D44E01A 392 +#define GETOUT_D45E01A 393 +#define GETOUT_D46E01A 394 +#define GETOUT_U00E01A 395 +#define GETOUT_R00E01A 396 +#define GETOUT_T00E01A 397 +#define GETOUT_M01E07T 398 +#define GETOUT_M01E08T 399 +#define EVENT_CONTROL 400 +#define EVENT_WAKEUP 401 +#define EVENT_STATION 402 +#define STATION_CONTROL 403 +#define ENTER_CONTROL 404 +#define SETUP_DEBUG_CAMERA 405 +#define MOVE_DEBUG_CAMERA 406 diff --git a/include/ground_script.h b/include/ground_script.h index cf8b70f5c..678a54c25 100644 --- a/include/ground_script.h +++ b/include/ground_script.h @@ -10,13 +10,13 @@ typedef struct ScriptCommand { /* 0x2 */ s16 argShort; /* 0x4 */ s32 arg1; /* 0x8 */ s32 arg2; - /* 0xC */ u8* argPtr; + /* 0xC */ const u8* argPtr; } ScriptCommand; typedef struct ScriptInfoSmall { // size: 0xC (3 padding) - /* 0x0 */ ScriptCommand *ptr; + /* 0x0 */ const ScriptCommand *ptr; /* 0x4 */ s16 state; /* 0x6 */ s16 group; /* 0x8 */ s8 sector; @@ -25,8 +25,8 @@ typedef struct ScriptInfoSmall typedef struct ScriptInfo { // size: 0xC (1 padding) - /* 0x0 */ ScriptCommand *ptr; - /* 0x4 */ ScriptCommand *ptr2; + /* 0x0 */ const ScriptCommand *ptr; + /* 0x4 */ const ScriptCommand *ptr2; /* 0x8 */ s16 group; /* 0xA */ s8 sector; } ScriptInfo; @@ -45,7 +45,7 @@ typedef struct ScriptData // padding /* 0x10 */ ScriptInfo savedScript; // padding - /* 0x1C */ ScriptCommand *curPtr; + /* 0x1C */ const ScriptCommand *curPtr; /* 0x20 */ u8 curScriptOp; // padding /* 0x22 */ u16 unk22; @@ -109,7 +109,7 @@ typedef struct Action /* 0x10 */ s16 group; /* 0x12 */ s8 sector; // padding - /* 0x14 */ ScriptCommand *predefinedScripts[4]; + /* 0x14 */ const ScriptCommand *predefinedScripts[4]; /* 0x24 */ ScriptData scriptData; /* 0x84 */ ScriptData scriptData2; } Action; @@ -125,15 +125,83 @@ typedef struct GroundMapAction /* .... */ u8 fillE8[0x110 - 0xE6]; } GroundMapAction; -typedef struct FunctionScript +typedef struct ScriptRef { - u16 unk0; - s16 unk2; - u8 *funcName; - ScriptCommand *script; -} FunctionScript; + u16 id; + s16 type; + u8 *name; + const ScriptCommand *script; +} ScriptRef; -extern FunctionScript gFunctionScriptTable[]; +extern const ScriptRef gFunctionScriptTable[]; + +struct CompactPos { + u8 xTiles; + u8 yTiles; + u8 xFlags; + u8 yFlags; +}; +struct GroundLink { + struct CompactPos pos; + u8 width; + u8 height; + u8 ret; + u8 unk7; +}; +typedef struct GroundLivesData { + u8 kind; + u8 unk1; + u8 width; + u8 height; + struct CompactPos pos; + const ScriptCommand *scripts[4]; +} GroundLivesData; +typedef struct GroundObjectData { + u8 kind; + u8 unk1; + u8 width; + u8 height; + struct CompactPos pos; + const ScriptCommand *scripts[4]; +} GroundObjectData; +typedef struct GroundEffectData { + u8 kind; + u8 unk1; + u8 width; + u8 height; + struct CompactPos pos; + const ScriptCommand *script; +} GroundEffectData; +typedef struct GroundEventData { + u8 kind; + u8 unk1; + u8 width; + u8 height; + struct CompactPos pos; + const ScriptRef *script; +} GroundEventData; + +struct GroundScriptSector { + u32 nLives; + const GroundLivesData *lives; + u32 nObjects; + const GroundObjectData *objects; + u32 nEffects; + const GroundEffectData *effects; + u32 nEvents; + const GroundEventData *events; + u32 hasStation; + const ScriptRef * const *station; +}; +struct GroundScriptGroup { + u32 nSectors; + const struct GroundScriptSector *sectors; +}; +struct GroundScriptHeader { + u32 nGroups; + const struct GroundScriptGroup *groups; + const struct GroundLink *links; +}; #include "debug.h" @@ -144,8 +212,8 @@ void GetFunctionScript(Action *param_1, ScriptInfoSmall *script, s16 index); bool8 GroundScriptLockCond(Action *param_1, s16 index, u32 param_3); bool8 ActionResetScriptData(Action *param_1, const DebugLocation *unused); bool8 GroundScript_ExecutePP(Action *, s32 *, ScriptInfoSmall *, const DebugLocation *unused); -ScriptCommand *FindLabel(Action *action, s32 r1); -ScriptCommand *ResolveJump(Action *action, s32 r1); +const ScriptCommand *FindLabel(Action *action, s32 r1); +const ScriptCommand *ResolveJump(Action *action, s32 r1); void InitActionWithParams(Action *action, const CallbackData *callbacks, void *parent, s16 group, s8 sector); #endif // GUARD_GROUND_SCRIPT_H diff --git a/ld_script.txt b/ld_script.txt index d8b9407ee..67d447236 100755 --- a/ld_script.txt +++ b/ld_script.txt @@ -581,9 +581,142 @@ SECTIONS { data/data_8115EB8.o(.rodata); src/ground_main.o(.rodata); data/data_8115F5C.o(.rodata); + src/ground_event_data.o(.rodata); data/friend_area_dialogue.o(.rodata); - data/cutscenes.o(.rodata); - data/cutscenes_1.o(.rodata); + src/ground_data_t00p01_station.o(.rodata); + src/ground_data_t01p01_station.o(.rodata); + src/ground_data_t01p02a_station.o(.rodata); + src/ground_data_t01p03_station.o(.rodata); + src/ground_data_t01p04_station.o(.rodata); + src/ground_data_t01p05_station.o(.rodata); + src/ground_data_t01p06_station.o(.rodata); + src/ground_data_t01p07_station.o(.rodata); + src/ground_data_b01p01a_station.o(.rodata); + src/ground_data_b01p02a_station.o(.rodata); + src/ground_data_h01p01_station.o(.rodata); + src/ground_data_h01p02_station.o(.rodata); + src/ground_data_h01p03_station.o(.rodata); + src/ground_data_h02p01_station.o(.rodata); + src/ground_data_h02p02_station.o(.rodata); + src/ground_data_h02p03_station.o(.rodata); + src/ground_data_h03p01_station.o(.rodata); + src/ground_data_h04p01_station.o(.rodata); + src/ground_data_h04p02_station.o(.rodata); + src/ground_data_h05p01_station.o(.rodata); + src/ground_data_h05p02_station.o(.rodata); + src/ground_data_h06p01_station.o(.rodata); + src/ground_data_h06p02_station.o(.rodata); + src/ground_data_h06p03_station.o(.rodata); + src/ground_data_h06p04_station.o(.rodata); + src/ground_data_h06p05_station.o(.rodata); + src/ground_data_h06p06_station.o(.rodata); + src/ground_data_h07p01_station.o(.rodata); + src/ground_data_h07p02_station.o(.rodata); + src/ground_data_h07p03_station.o(.rodata); + src/ground_data_h07p04_station.o(.rodata); + src/ground_data_h07p05_station.o(.rodata); + src/ground_data_h07p06_station.o(.rodata); + src/ground_data_h07p07_station.o(.rodata); + src/ground_data_h07p08_station.o(.rodata); + src/ground_data_h08p01_station.o(.rodata); + src/ground_data_h09p01_station.o(.rodata); + src/ground_data_h09p02_station.o(.rodata); + src/ground_data_h10p01_station.o(.rodata); + src/ground_data_h10p02_station.o(.rodata); + src/ground_data_h11p01_station.o(.rodata); + src/ground_data_h12p01_station.o(.rodata); + src/ground_data_h13p01_station.o(.rodata); + src/ground_data_h13p02_station.o(.rodata); + src/ground_data_h13p03_station.o(.rodata); + src/ground_data_h13p04_station.o(.rodata); + src/ground_data_h14p01_station.o(.rodata); + src/ground_data_h15p01_station.o(.rodata); + src/ground_data_h16p01_station.o(.rodata); + src/ground_data_h17p01_station.o(.rodata); + src/ground_data_h18p01_station.o(.rodata); + src/ground_data_h19p01_station.o(.rodata); + src/ground_data_h20p01_station.o(.rodata); + src/ground_data_h21p01_station.o(.rodata); + src/ground_data_h21p02_station.o(.rodata); + src/ground_data_h22p01_station.o(.rodata); + src/ground_data_h23p01_station.o(.rodata); + src/ground_data_h24p01_station.o(.rodata); + src/ground_data_h25p01_station.o(.rodata); + src/ground_data_h26p01_station.o(.rodata); + src/ground_data_h27p01_station.o(.rodata); + src/ground_data_h28p01_station.o(.rodata); + src/ground_data_h28p02_station.o(.rodata); + src/ground_data_h29p01_station.o(.rodata); + src/ground_data_h29p02_station.o(.rodata); + src/ground_data_h29p03_station.o(.rodata); + src/ground_data_h29p04_station.o(.rodata); + src/ground_data_a01p01_station.o(.rodata); + src/ground_data_a01p02_station.o(.rodata); + src/ground_data_a02p01_station.o(.rodata); + src/ground_data_a02p02_station.o(.rodata); + src/ground_data_a02p03_station.o(.rodata); + src/ground_data_a02p04_station.o(.rodata); + src/ground_data_a03p01_station.o(.rodata); + src/ground_data_a03p02_station.o(.rodata); + src/ground_data_a03p03_station.o(.rodata); + src/ground_data_a04p01_station.o(.rodata); + src/ground_data_a04p02_station.o(.rodata); + src/ground_data_a04p03_station.o(.rodata); + src/ground_data_a04p04_station.o(.rodata); + src/ground_data_a05p01_station.o(.rodata); + src/ground_data_a05p02_station.o(.rodata); + src/ground_data_a05p03_station.o(.rodata); + src/ground_data_d01p01_station.o(.rodata); + src/ground_data_d01p02_station.o(.rodata); + src/ground_data_d02p01_station.o(.rodata); + src/ground_data_d02p02_station.o(.rodata); + src/ground_data_d03p01_station.o(.rodata); + src/ground_data_d03p02_station.o(.rodata); + src/ground_data_d04p01_station.o(.rodata); + src/ground_data_d04p02_station.o(.rodata); + src/ground_data_d05p01_station.o(.rodata); + src/ground_data_d05p02_station.o(.rodata); + src/ground_data_d06p01_station.o(.rodata); + src/ground_data_d06p02_station.o(.rodata); + src/ground_data_d06p03_station.o(.rodata); + src/ground_data_d07p01_station.o(.rodata); + src/ground_data_d07p02_station.o(.rodata); + src/ground_data_d08p01_station.o(.rodata); + src/ground_data_d08p02_station.o(.rodata); + src/ground_data_d09p01_station.o(.rodata); + src/ground_data_d09p02_station.o(.rodata); + src/ground_data_d09p03_station.o(.rodata); + src/ground_data_d10p01_station.o(.rodata); + src/ground_data_d10p02_station.o(.rodata); + src/ground_data_d10p03_station.o(.rodata); + src/ground_data_d11p01_station.o(.rodata); + src/ground_data_d11p02_station.o(.rodata); + src/ground_data_d11p03_station.o(.rodata); + src/ground_data_d12p01_station.o(.rodata); + src/ground_data_d12p02_station.o(.rodata); + src/ground_data_d12p04_station.o(.rodata); + src/ground_data_d13p01_station.o(.rodata); + src/ground_data_d13p02_station.o(.rodata); + src/ground_data_d13p03_station.o(.rodata); + src/ground_data_d14p01_station.o(.rodata); + src/ground_data_d15p01_station.o(.rodata); + src/ground_data_d16p01_station.o(.rodata); + src/ground_data_d17p01_station.o(.rodata); + src/ground_data_d18p01_station.o(.rodata); + src/ground_data_d19p01_station.o(.rodata); + src/ground_data_d20p01_station.o(.rodata); + src/ground_data_d21p01_station.o(.rodata); + src/ground_data_d22p01_station.o(.rodata); + src/ground_data_d23p01_station.o(.rodata); + src/ground_data_d24p01_station.o(.rodata); + src/ground_data_d24p02_station.o(.rodata); + src/ground_data_d25p01_station.o(.rodata); + src/ground_data_s01_station.o(.rodata); + src/ground_data_s02_station.o(.rodata); + src/ground_data_s03_station.o(.rodata); + src/ground_data_s04_station.o(.rodata); + src/ground_data_s05_station.o(.rodata); + src/ground_data_s06_station.o(.rodata); src/m4a_tables.o(.rodata); src/agb_flash.o(.rodata); src/agb_flash_1m.o(.rodata); diff --git a/src/data/ground/ground_data_a01p01_station.h b/src/data/ground/ground_data_a01p01_station.h new file mode 100644 index 000000000..98d57a76f --- /dev/null +++ b/src/data/ground/ground_data_a01p01_station.h @@ -0,0 +1,1488 @@ + + + + + + + + +static const struct ScriptCommand s_gs162_g0_s0_station_sref_script[] = { /* 0x820fd30 */ + DEBUGINFO, + SELECT_MAP(162), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs162_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs162_g0_s0_station_sref_script }; /* 0x820fd9c */ + +static const struct ScriptCommand s_gs162_g1_s0_station_sref_script[] = { /* 0x820fda8 */ + DEBUGINFO, + SELECT_MAP(162), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(4), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(90), + RET, +}; + +static const struct ScriptRef s_gs162_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs162_g1_s0_station_sref_script }; /* 0x820fe48 */ + +static const struct ScriptCommand s_gs162_g1_s0_lives0_dlg0[] = { /* 0x820fe54 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("..................") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Where...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Where am I?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Maybe...#W Is this a dream...?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...Oh?#W There's someone here.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Who is it...?#W Someone I know...?") }, + { 0x2e, 0x02, 0x0000, 0x00000004, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......#WHmm... I can't remember.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + +static const struct ScriptCommand s_gs162_g2_s0_station_sref_script[] = { /* 0x8210084 */ + DEBUGINFO, + SELECT_MAP(162), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(4), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + FANFARE_FADEOUT2(60, 453), + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0x97, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs162_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs162_g2_s0_station_sref_script }; /* 0x8210144 */ + +static const struct ScriptCommand s_gs162_g2_s0_eff0_script[] = { /* 0x8210150 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + END_DELETE, +}; + +static const struct ScriptCommand s_gs162_g2_s0_lives0_dlg0[] = { /* 0x8210190 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("........................") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...Again?#W Am I dreaming again...?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...It's that Pokémon again.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Huh?#W\nThey're...talking to me...?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...#WI can't hear them clearly.\nWhat are they saying?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(453), + { 0x97, 0x00, 0x0002, 0x00000001, 0x00000003, NULL }, + WAIT(30), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Huh? It's shaking.#W An earthquake...?") }, + { 0x97, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0000, 0x0000000c, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Whoa! It's getting worse.") }, + { 0x2e, 0x15, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("For a dream, this feels strangely\nreal, but...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("........................") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + +static const struct ScriptCommand s_gs162_g3_s0_station_sref_script[] = { /* 0x82104bc */ + DEBUGINFO, + SELECT_MAP(162), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(4), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(90), + RET, +}; + +static const struct ScriptRef s_gs162_g3_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs162_g3_s0_station_sref_script }; /* 0x821055c */ + +static const struct ScriptCommand s_gs162_g3_s0_lives0_dlg0[] = { /* 0x8210568 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000052, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......Again...#W\nIt's that dream again.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + SELECT_LIVES(-1, 1), + WAIT(60), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("That Pokémon... Who could it be...?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Huh?#W I'm hearing better this time...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...What?#W Human?#W My role?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0000, 0x00000007, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("W-wait.\nPlease, tell me more.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......#W\nI can't... Drifting off...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("........................") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs162_g3_s1_lives0_dlg0[] = { /* 0x82107fc */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x001f, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + END_DELETE, +}; + +static const struct ScriptCommand s_gs162_g4_s0_station_sref_script[] = { /* 0x8210bbc */ + DEBUGINFO, + SELECT_MAP(162), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(4), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(90), + RET, +}; + +static const struct ScriptRef s_gs162_g4_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs162_g4_s0_station_sref_script }; /* 0x8210c5c */ + +static const struct ScriptCommand s_gs162_g4_s0_lives0_dlg0[] = { /* 0x8210c68 */ + DEBUGINFO, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000052, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("........................") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......#WAgain.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + SELECT_LIVES(-1, 1), + WAIT(60), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......It's that dream again.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I always see this silhouette...#W\nWho could it be?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Oh?#W It's saying something!") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("But... I can't quite make it out...#W\nIt's clearer than it was before, but...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I'll try talking to it.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Hello.#W Please, tell me.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("You...#W\nWho are you?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ...#WI am...") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I am $n2.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0000, 0x0000000c, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Ga-$n2...?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0f, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm so glad. Finally...#W\nI finally got to meet you...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...?#W Finally met me...?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("You knew me from before?\nWhat about me?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I am your...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0000, 0x0000000c, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Oh! Wait.#W Just a little longer...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0000, 0x00000005, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I want to know more...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("No... It's fading...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("........................") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + +static const struct ScriptCommand s_gs162_g4_s1_lives0_dlg0[] = { /* 0x821124c */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x001f, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + END_DELETE, +}; + +static const struct ScriptCommand s_gs162_g5_s0_station_sref_script[] = { /* 0x821161c */ + DEBUGINFO, + SELECT_MAP(162), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(5), + { 0x27, 0x00, 0x0005, 0x00000020, 0x00ffffff, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(506), + { 0x28, 0x01, 0x0005, 0x00000020, 0x00ffffff, NULL }, + RET, +}; + +static const struct ScriptRef s_gs162_g5_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs162_g5_s0_station_sref_script }; /* 0x82116ac */ + +static const struct ScriptCommand s_gs162_g5_s0_lives0_dlg0[] = { /* 0x82116b8 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x91, 0x0a, 0x0001, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I've been waiting for you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0000, 0x0000000c, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Ga...#W$n2!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + +static const struct ScriptCommand s_gs162_g6_s0_station_sref_script[] = { /* 0x82117e4 */ + DEBUGINFO, + SELECT_MAP(162), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(5), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + FANFARE_FADEOUT2(60, 453), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(90), + RET, +}; + +static const struct ScriptRef s_gs162_g6_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs162_g6_s0_station_sref_script }; /* 0x8211894 */ + +static const struct ScriptCommand s_gs162_g6_s0_lives0_dlg0[] = { /* 0x82118a0 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000052, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......This............") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......That dream...... Again......") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......It's been a while......") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(477), + SELECT_LIVES(-1, 1), + WAIT(60), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......You're......#W $n2...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...$n2.#W\nThere's so much I want to ask you.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Why do you appear in my dreams?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" As an agent of spirits...#W\nI must watch over you...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Because that is my role\nnow.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...An agent of spirits?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I fell under the curse of\nNinetales in the place of a Trainer...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And became a presence\nwithout a physical form like this.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Trainer...?#W\nYou mean the human that was in the\nlegend about Ninetales?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("It's awful that your Trainer would abandon\nyou and run away.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.#W My Trainer was\na terrible person.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Mean and conniving...\nMy Trainer wasn't a nice person. Truly.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But...#W\nI don't hate my Trainer.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Huh? Don't hate your Trainer?#W\nWhy not?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Well...#W\nI wonder why myself.\nI don't quite understand...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" My Trainer did some\nterrible things, but somehow, I can't\nbring myself to feel hatred...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" My Trainer had some quirks,\nbut there were good qualities too.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And, when it happened,\nI was desperate...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("When it happened...?#W\nYou mean Ninetales's curse?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I protected my Trainer\nfrom Ninetales's curse with my\nentire being.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If the Trainer is facing\ndanger...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It is our duty to protect\nthe Trainer with our lives...#W\nWe $m2 are that way.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I kept my Trainer safe...#W\nThat alone was enough to make me happy.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...Protect the Trainer even at the risk\nof your own life...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...It's amazing what $m2\ndid.)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh, I must mention, I don't\nmind the form I have taken.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I live on this way with\npride in the role I have been given.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...Role?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" All things have a role.\nThey all serve a purpose.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Just as I have my own\nrole to play...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You, too, have a role to\nfill...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You have...#W\ncome here to perform a certain role...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And, for that role...#W\nyou became a Pokémon.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("What...?#W\nWhat are you saying?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(453), + { 0x97, 0x00, 0x0002, 0x00000001, 0x00000003, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0000, 0x0000000c, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Wah!\nE-earthquake?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("No! Wait!#W\nI need to know more...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs162_g6_s1_lives0_dlg0[] = { /* 0x8212774 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x001f, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x91, 0x04, 0x000b, 0x00000007, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + END_DELETE, +}; + +static const struct ScriptCommand s_gs162_g7_s0_station_sref_script[] = { /* 0x8212df4 */ + DEBUGINFO, + SELECT_MAP(162), + SELECT_ENTITIES(-1, -1), + { 0x27, 0x01, 0x000e, 0x0000001e, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x000e, 0x0000001e, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs162_g7_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs162_g7_s0_station_sref_script }; /* 0x8212e64 */ + +static const struct ScriptCommand s_gs162_g7_s0_lives0_dlg0[] = { /* 0x8212e70 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000052, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x0f, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You have...#W\ncome here to perform a certain role...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And, for that role...#W\nyou became a Pokémon.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs162_g7_s0_lives1_dlg0[] = { /* 0x8212f40 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs162_g8_s0_station_sref_script[] = { /* 0x8212f90 */ + DEBUGINFO, + SELECT_MAP(162), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(5), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(90), + RET, +}; + +static const struct ScriptRef s_gs162_g8_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs162_g8_s0_station_sref_script }; /* 0x8213030 */ + +static const struct ScriptCommand s_gs162_g8_s0_lives0_dlg0[] = { /* 0x821303c */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000052, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......I'm......#W\nIn that dream again...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(477), + SELECT_LIVES(-1, 1), + WAIT(60), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............#W$n1...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x0f, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's tomorrow, isn't it?#W\nThat you take to that underground dungeon.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Yes.#W They make it sound like one\nterrible place...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I wonder if we'll be OK...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You will be fine.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I am certain that you\nwill succeed, $n0.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You have my support.\nPlease, go with strength.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0000, 0x00000009, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I will. Thank you.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I'm feeling a little braver now.\nI will go for it.") }, + { 0x2e, 0x15, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("By the way...#W\nGardevoir, do you know?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("What it's like underground?#W\nOr what Groudon is like?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000042, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" No... I'm sorry to say...#W\nI can't envision it...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...OK.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I thought maybe you knew something,\nthe way you said it.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" No. I only wanted to give\nyou encouragement...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm sorry...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0000, 0x00000009, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("No, no.\nThat's fine, too.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I'm happy you tried to cheer me up.\nThank you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But...#W\nThere is one thing that I can foresee.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...Huh?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Your role...#W\nis coming to its end, little by little.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("My role...#W\nis ending...?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You became a Pokémon in\norder to fulfill a certain role...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And that role brought\nyou here.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Now, that role...#W\nis finally drawing to its conclusion.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Gardevoir, tell me!") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("What is my role?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Why did I become a Pokémon?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" When the time comes...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I think I can tell you when\nthis adventure is finished.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Au revoir...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs162_g8_s1_lives0_dlg0[] = { /* 0x8213b50 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x001f, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x91, 0x04, 0x000b, 0x00000007, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x001f, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs162_g9_s0_station_sref_script[] = { /* 0x8214480 */ + DEBUGINFO, + SELECT_MAP(162), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(5), + { 0x27, 0x00, 0x0005, 0x0000003c, 0x00ffffff, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(90), + RET, +}; + +static const struct ScriptRef s_gs162_g9_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs162_g9_s0_station_sref_script }; /* 0x8214520 */ + +static const struct ScriptCommand s_gs162_g9_s0_lives0_dlg0[] = { /* 0x821452c */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000052, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............#WGardevoir...?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(477), + SELECT_LIVES(-1, 1), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Gardevoir...#W\nWill you tell me now?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Who or what I am...?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The time has arrived.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Why you have come here?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I will tell you all there is\nto tell.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n0, you have...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Come to save this world.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............#W\nCame to save the world of Pokémon?#W\nI did...?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.#W We learned that\nthis world faced extinction.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And so we sought a hero.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But though we searched,\nnowhere could we find our hero.\nWe were becoming discouraged...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" When we came across\na human.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n0...#W\nYou were that human.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0000, 0x0000000c, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Wa... #WWait a second!#W\nHero? Me? That's too much!") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I'm not anything special like that?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.#W That is also what you\nsaid the first time we met.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You said you were not\nstrong.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But what we sought was\nnot power merely for display...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We sought true courage.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("True courage...?#W\nThat...#W I'm even less confident about that.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That, too, is what\nyou said when we met.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It was then that you said\nthis.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" To see if you were worthy\nto be our hero or not...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You asked that we put you\nto the test.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And only if you were found\nto be truly worthy...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Then you were to be told\nthe truth.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" To fulfill your role\nclear of heart and mind, you then chose\nto erase your memory as a human...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And became a Pokémon of\nyour own will to fight alongside your\nfriends.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That is how you came to\nbe in this world.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I...#W\nI did that?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Your courage has been\nproven.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Without question, you bear\nthe role of saving the world.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And that role...#W\nIt is soon coming to its end.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...#WStopping the meteor from\ncrashing into this world...?#W\nThat's my role?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.#W\nAnd when that is accomplished...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You can return to your\nhuman world.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Oh...#W\nSo I can go back to being a human...") }, + { 0x2e, 0x15, 0x0000, 0x0000000c, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Wait!#W\nBut that means...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.#W It means...#W\nParting ways with $n1.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0000, 0x00000005, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("$n1......#W\nI have to leave?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n1 feels great\nkinship with you, $n0.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" So, $n0, if you\nwere to leave...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Your friend would be\nheartbroken.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...But there can be nothing\ndone.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Because there are\nencounters, there are also farewells...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...#WI, too, once had\na friend beyond value.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Truly, I cherished our\nfriendship...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But my friend has gone\naway.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It fills me with sadness\nstill, losing my friend...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ......#W\nBut...#W We will meet again...#W\nThat is what I believe.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(485), + { 0x28, 0x01, 0x0005, 0x00000018, 0x00ffffff, NULL }, + WAIT(10), + { 0x27, 0x00, 0x0005, 0x00000018, 0x00ffffff, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0000, 0x0000000c, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...!#W W-what was that?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#WWho was it?#W\nSomeone appears to have been looking\ninto your dream.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But it is fine now.\nWhoever it was ran off.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...All that remains in this\ndream is a feeling of sadness.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...That Pokémon...\nI think ran off crying...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#W\nIt will be morning soon.#W\nAu revoir.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs162_g9_s1_lives0_dlg0[] = { /* 0x82157b8 */ + DEBUGINFO, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x91, 0x04, 0x000b, 0x00000007, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs162_g10_s0_station_sref_script[] = { /* 0x8215d28 */ + DEBUGINFO, + SELECT_MAP(162), + SELECT_ENTITIES(-1, 0), + { 0x27, 0x01, 0x000e, 0x0000001e, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x000e, 0x0000001e, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs162_g10_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs162_g10_s0_station_sref_script }; /* 0x8215d98 */ + +static const struct ScriptCommand s_gs162_g10_s0_lives0_dlg0[] = { /* 0x8215da4 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You can return to your\nhuman world.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs162_g10_s0_lives1_dlg0[] = { /* 0x8215e54 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs162_g1_s0_lives[] = { /* 0x8215ea4 */ + /* 0 */ { 0, 0, 0, 0, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs162_g1_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs162_g2_s0_lives[] = { /* 0x8215ebc */ + /* 0 */ { 0, 0, 0, 0, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs162_g2_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs162_g3_s0_lives[] = { /* 0x8215ed4 */ + /* 0 */ { 0, 0, 0, 0, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs162_g3_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs162_g3_s1_lives[] = { /* 0x8215eec */ + /* 0 */ { 82, 0, 0, 0, { 30, 17, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs162_g3_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs162_g4_s0_lives[] = { /* 0x8215f04 */ + /* 0 */ { 0, 0, 0, 0, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs162_g4_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs162_g4_s1_lives[] = { /* 0x8215f1c */ + /* 0 */ { 82, 0, 0, 0, { 30, 17, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs162_g4_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs162_g5_s0_lives[] = { /* 0x8215f34 */ + /* 0 */ { 82, 4, 0, 0, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs162_g5_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs162_g6_s0_lives[] = { /* 0x8215f4c */ + /* 0 */ { 0, 0, 0, 0, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs162_g6_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs162_g6_s1_lives[] = { /* 0x8215f64 */ + /* 0 */ { 82, 0, 0, 0, { 30, 17, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs162_g6_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs162_g7_s0_lives[] = { /* 0x8215f7c */ + /* 0 */ { 0, 0, 0, 0, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs162_g7_s0_lives0_dlg0, + } }, + /* 1 */ { 82, 7, 0, 0, { 30, 17, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs162_g7_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs162_g8_s0_lives[] = { /* 0x8215fac */ + /* 0 */ { 0, 0, 0, 0, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs162_g8_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs162_g8_s1_lives[] = { /* 0x8215fc4 */ + /* 0 */ { 82, 0, 0, 0, { 30, 17, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs162_g8_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs162_g9_s0_lives[] = { /* 0x8215fdc */ + /* 0 */ { 0, 0, 0, 0, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs162_g9_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs162_g9_s1_lives[] = { /* 0x8215ff4 */ + /* 0 */ { 82, 0, 0, 0, { 30, 17, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs162_g9_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs162_g10_s0_lives[] = { /* 0x821600c */ + /* 0 */ { 0, 0, 0, 0, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs162_g10_s0_lives0_dlg0, + } }, + /* 1 */ { 82, 7, 0, 0, { 30, 17, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs162_g10_s0_lives1_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs162_g1_s0_effs[] = { /* 0x821603c */ + /* 0 */ { 0, 0, 1, 1, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs162_g2_s0_effs[] = { /* 0x8216048 */ + /* 0 */ { 0, 0, 1, 1, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs162_g2_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs162_g3_s0_effs[] = { /* 0x8216054 */ + /* 0 */ { 0, 0, 1, 1, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs162_g4_s0_effs[] = { /* 0x8216060 */ + /* 0 */ { 0, 0, 1, 1, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs162_g5_s0_effs[] = { /* 0x821606c */ + /* 0 */ { 0, 0, 1, 1, { 30, 19, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs162_g6_s0_effs[] = { /* 0x8216078 */ + /* 0 */ { 0, 0, 1, 1, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs162_g7_s0_effs[] = { /* 0x8216084 */ + /* 0 */ { 0, 0, 1, 1, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs162_g8_s0_effs[] = { /* 0x8216090 */ + /* 0 */ { 0, 0, 1, 1, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs162_g9_s0_effs[] = { /* 0x821609c */ + /* 0 */ { 0, 0, 1, 1, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs162_g10_s0_effs[] = { /* 0x82160a8 */ + /* 0 */ { 0, 0, 1, 1, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x82160b4 */ + &s_gs162_g0_s0_station_sref, + &s_gs162_g1_s0_station_sref, + &s_gs162_g2_s0_station_sref, + &s_gs162_g3_s0_station_sref, + &s_gs162_g4_s0_station_sref, + &s_gs162_g5_s0_station_sref, + &s_gs162_g6_s0_station_sref, + &s_gs162_g7_s0_station_sref, + &s_gs162_g8_s0_station_sref, + &s_gs162_g9_s0_station_sref, + &s_gs162_g10_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs162_g0_sectors[] = { /* 0x82160e0 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs162_g1_sectors[] = { /* 0x8216108 */ + { LPARRAY(s_gs162_g1_s0_lives), 0,NULL, LPARRAY(s_gs162_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs162_g2_sectors[] = { /* 0x8216130 */ + { LPARRAY(s_gs162_g2_s0_lives), 0,NULL, LPARRAY(s_gs162_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptSector s_gs162_g3_sectors[] = { /* 0x8216158 */ + { LPARRAY(s_gs162_g3_s0_lives), 0,NULL, LPARRAY(s_gs162_g3_s0_effs), 0,NULL, 1,&sStationScripts[3], }, + { LPARRAY(s_gs162_g3_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs162_g4_sectors[] = { /* 0x82161a8 */ + { LPARRAY(s_gs162_g4_s0_lives), 0,NULL, LPARRAY(s_gs162_g4_s0_effs), 0,NULL, 1,&sStationScripts[4], }, + { LPARRAY(s_gs162_g4_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs162_g5_sectors[] = { /* 0x82161f8 */ + { LPARRAY(s_gs162_g5_s0_lives), 0,NULL, LPARRAY(s_gs162_g5_s0_effs), 0,NULL, 1,&sStationScripts[5], }, +}; + +static const struct GroundScriptSector s_gs162_g6_sectors[] = { /* 0x8216220 */ + { LPARRAY(s_gs162_g6_s0_lives), 0,NULL, LPARRAY(s_gs162_g6_s0_effs), 0,NULL, 1,&sStationScripts[6], }, + { LPARRAY(s_gs162_g6_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs162_g7_sectors[] = { /* 0x8216270 */ + { LPARRAY(s_gs162_g7_s0_lives), 0,NULL, LPARRAY(s_gs162_g7_s0_effs), 0,NULL, 1,&sStationScripts[7], }, +}; + +static const struct GroundScriptSector s_gs162_g8_sectors[] = { /* 0x8216298 */ + { LPARRAY(s_gs162_g8_s0_lives), 0,NULL, LPARRAY(s_gs162_g8_s0_effs), 0,NULL, 1,&sStationScripts[8], }, + { LPARRAY(s_gs162_g8_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs162_g9_sectors[] = { /* 0x82162e8 */ + { LPARRAY(s_gs162_g9_s0_lives), 0,NULL, LPARRAY(s_gs162_g9_s0_effs), 0,NULL, 1,&sStationScripts[9], }, + { LPARRAY(s_gs162_g9_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs162_g10_sectors[] = { /* 0x8216338 */ + { LPARRAY(s_gs162_g10_s0_lives), 0,NULL, LPARRAY(s_gs162_g10_s0_effs), 0,NULL, 1,&sStationScripts[10], }, +}; + +static const struct GroundScriptGroup s_gs162_groups[] = { /* 0x8216360 */ + { LPARRAY(s_gs162_g0_sectors) }, + { LPARRAY(s_gs162_g1_sectors) }, + { LPARRAY(s_gs162_g2_sectors) }, + { LPARRAY(s_gs162_g3_sectors) }, + { LPARRAY(s_gs162_g4_sectors) }, + { LPARRAY(s_gs162_g5_sectors) }, + { LPARRAY(s_gs162_g6_sectors) }, + { LPARRAY(s_gs162_g7_sectors) }, + { LPARRAY(s_gs162_g8_sectors) }, + { LPARRAY(s_gs162_g9_sectors) }, + { LPARRAY(s_gs162_g10_sectors) }, +}; + +static const struct GroundLink s_gs162_links[] = { /* 0x82163b8 */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs162 = { LPARRAY(s_gs162_groups), s_gs162_links }; /* 0x82163c0 */ diff --git a/src/data/ground/ground_data_a01p02_station.h b/src/data/ground/ground_data_a01p02_station.h new file mode 100644 index 000000000..39598afb8 --- /dev/null +++ b/src/data/ground/ground_data_a01p02_station.h @@ -0,0 +1,336 @@ + + + + + + + + +static const struct ScriptCommand s_gs163_g0_s0_station_sref_script[] = { /* 0x82163d4 */ + DEBUGINFO, + SELECT_MAP(163), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs163_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs163_g0_s0_station_sref_script }; /* 0x8216440 */ + +static const struct ScriptCommand s_gs163_g1_s0_station_sref_script[] = { /* 0x821644c */ + DEBUGINFO, + BGM_STOP, + SELECT_MAP(163), + { 0x2d, 0x09, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0000, 0x00000002, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...Urgggh...#W I feel horrible...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + SELECT_ENTITIES(-1, -1), + BGM_FADEIN(120, 29), + { 0x22, 0x01, 0x005a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs163_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs163_g1_s0_station_sref_script }; /* 0x8216588 */ + + +static const struct ScriptCommand s_gs163_g1_s0_lives0_dlg0[] = { /* 0x8216594 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x02, 0x0000, 0x00000002, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("This is a dream...#W Isn't it...?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...But why...?#W\nWhy do I feel this terrible...?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("This is...#W The first time...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs163_g2_s0_station_sref_script[] = { /* 0x82166dc */ + DEBUGINFO, + SELECT_MAP(163), + SELECT_ENTITIES(-1, -1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x0005, 0x0000003c, 0x00ffffff, NULL }, + RET, +}; + +static const struct ScriptRef s_gs163_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs163_g2_s0_station_sref_script }; /* 0x821674c */ + +static const struct ScriptCommand s_gs163_g2_s0_lives0_dlg0[] = { /* 0x8216758 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + BGM_FADEOUT(120), + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("..................") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......The pain......") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......It's going away............") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs163_g3_s0_station_sref_script[] = { /* 0x8216898 */ + DEBUGINFO, + SELECT_MAP(163), + SELECT_ENTITIES(-1, -1), + BGM_FADEIN(60, 37), + { 0x22, 0x01, 0x005a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(506), + BGM_FADEOUT(90), + { 0x28, 0x01, 0x0005, 0x0000001e, 0x00ffffff, NULL }, + WAIT(60), + RET, +}; + +static const struct ScriptRef s_gs163_g3_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs163_g3_s0_station_sref_script }; /* 0x8216948 */ + +static const struct ScriptCommand s_gs163_g3_s0_lives0_dlg0[] = { /* 0x8216954 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000052, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+If you fail to draw out $n2's\n#+true feelings...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The curse will never be broken.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0002, 0x00000046, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gegege!\nHey, $n0!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Don't you dare fool around!\nI'll make you pay for it!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+You have but one chance.#W\n#+$n0,\n#+do your best.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Fine...#W It is time.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+First of all...") }, + LABEL(2), /* = 0x02 */ + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+Why does $n2 wish to\n#+break this curse?")), + CHOICE(/* label */ 4, _("To help $n3.")), + CHOICE(/* label */ 5, _("Just a whim.")), + LABEL(5), /* = 0x05 */ + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+............#WDo you mean that?") }, + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+Do you truly...#W\n#+truly believe that?")), + CHOICE(/* label */ 7, _("Yes.")), + CHOICE(/* label */ 8, _("No.")), + LABEL(7), /* = 0x07 */ + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+............#W\n#+If that is truly how you feel...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+My questions\n#+will end now.") }, + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+You have\n#+no regrets?")), + CHOICE(/* label */ 10, _("None.")), + CHOICE(/* label */ 8, _("I do.")), + LABEL(8), /* = 0x08 */ + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+............#W\n#+Please be serious.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Let me ask you again.") }, + JUMP_LABEL(2), + LABEL(4), /* = 0x04 */ + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+That's a lie, isn't it?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Didn't $n2 abandon\n#+$n3 long ago?") }, + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+Why would $n2\n#+want to save Gardevoir now?")), + CHOICE(/* label */ 12, _("For taking the curse.")), + CHOICE(/* label */ 13, _("Came to understand $n3.")), + LABEL(12), /* = 0x0c */ + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n3 certainly did protect\n#+$n2 from the curse.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Sacrificing herself to do so.") }, + LABEL(14), /* = 0x0e */ + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+But what did $n2\n#+do then?")), + CHOICE(/* label */ 5, _("Tried to protect $n3.")), + CHOICE(/* label */ 15, _("Abandoned Gardevoir and ran.")), + LABEL(15), /* = 0x0f */ + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Yes...#W $n2 abandoned\n#+$n3 and fled.") }, + LABEL(16), /* = 0x10 */ + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+Why did $n2\n#+abandon $n3?")), + CHOICE(/* label */ 17, _("Gengar only cared about himself.")), + CHOICE(/* label */ 5, _("Gengar intended to help later.")), + LABEL(17), /* = 0x11 */ + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+That's right.#W\n#+$n2 didn't want to\n#+be cursed himself...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+And abandoned $n3.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+When $n2 was a human,\n#+$n3 was his partner.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+But to $n2, $n3\n#+was merely a tool.") }, + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+The bond between $n2 and\n#+$n3 was that flimsy...#W\n#+Is that what I am hearing?")), + CHOICE(/* label */ 19, _("Yes.")), + CHOICE(/* label */ 20, _("No.")), + LABEL(20), /* = 0x14 */ + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The bond between $n2 and\n#+$n3 you claim to be strong?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+But that makes no sense.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n3 saved $n2 from\n#+the curse. That much is true.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+It was from her depth of\n#+feeling for $n2.") }, + JUMP_LABEL(14), + LABEL(19), /* = 0x13 */ + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+............#W\n#+If that is truly how you feel...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+My questions\n#+will end now.") }, + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+You have\n#+no regrets?")), + CHOICE(/* label */ 10, _("None.")), + CHOICE(/* label */ 22, _("I do.")), + LABEL(22), /* = 0x16 */ + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+You claim that isn't true?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+But $n2 abandoned\n#+$n3.") }, + JUMP_LABEL(16), + LABEL(13), /* = 0x0d */ + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Came to understand\n#+$n3's feelings?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+What is it you claim to understand?") }, + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+What do you claim to be\n#+$n3's feelings?")), + CHOICE(/* label */ 24, _("Caring for $n2.")), + CHOICE(/* label */ 25, _("Hatred for $n2.")), + LABEL(24), /* = 0x18 */ + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Caring for $n2.#W\n#+I see...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n3 became a presence\n#+without a physical form because\n#+she bore the curse...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+But even then, Gardevoir never\n#+stopped caring for $n2...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Having learned that, $n2\n#+now wants to save $n3...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+It makes sense...#W However...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Until now, $n2 had\n#+forgotten entirely about\n#+$n3, correct?") }, + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+But now Gengar wants to save\n#+Gardevoir. Isn't that asking a lot?")), + CHOICE(/* label */ 27, _("Yes.")), + CHOICE(/* label */ 28, _("No.")), + LABEL(27), /* = 0x1b */ + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+I see...\n#+You say this because Gengar is\n#+willing to face the consequences?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Gengar is coming to the help of\n#+Gardevoir because he wants to help...#W\n#+Is that what you claim?") }, + JUMP_LABEL(10), + LABEL(28), /* = 0x1c */ + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+You say that is not so...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+You believe that this is another matter?\n#+And to help is only natural?#W\n#+That is what you believe?") }, + JUMP_LABEL(10), + LABEL(25), /* = 0x19 */ + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Hatred for $n2...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n3 felt hatred toward\n#+$n2 for abandonment...#W\n#+That is what you claim?") }, + LABEL(29), /* = 0x1d */ + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+In spite of that, $n2\n#+is trying to help Gardevoir...#W\n#+Why should that be so?")), + CHOICE(/* label */ 30, _("To clear up misunderstandings.")), + CHOICE(/* label */ 31, _("To punish Gardevoir.")), + LABEL(30), /* = 0x1e */ + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+I see.\n#+To clear up misunderstandings.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Gengar hopes to help $n3\n#+and clear up misunderstandings...#W\n#+That is what you claim?") }, + JUMP_LABEL(10), + LABEL(31), /* = 0x1f */ + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Gengar would go through the trouble\n#+of helping $n3 just so she\n#+could be punished?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Do you claim that seriously?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+If that is true...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+My queries will\n#+end now.") }, + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+May I finish now?")), + CHOICE(/* label */ 10, _("Yes.")), + CHOICE(/* label */ 33, _("No.")), + LABEL(33), /* = 0x21 */ + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+This isn't the end?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Is there anything else you wish to say?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Oh? You are confused?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+............#W\n#+You must be more serious.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Let me go back to my inquiry.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n3 felt hatred toward\n#+$n2 for abandonment...") }, + JUMP_LABEL(29), + LABEL(10), /* = 0x0a */ + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+I understand now...\n#+My questions are finished.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + +static const struct ScriptCommand s_gs163_g3_s0_lives1_dlg0[] = { /* 0x8217f50 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs163_g1_s0_lives[] = { /* 0x8217fd0 */ + /* 0 */ { 0, 0, 0, 0, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs163_g1_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs163_g2_s0_lives[] = { /* 0x8217fe8 */ + /* 0 */ { 0, 0, 0, 0, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs163_g2_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs163_g3_s0_lives[] = { /* 0x8218000 */ + /* 0 */ { 0, 4, 0, 0, { 30, 17, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs163_g3_s0_lives0_dlg0, + } }, + /* 1 */ { 91, 4, 0, 0, { 30, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs163_g3_s0_lives1_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs163_g1_s0_effs[] = { /* 0x8218030 */ + /* 0 */ { 0, 0, 1, 1, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs163_g2_s0_effs[] = { /* 0x821803c */ + /* 0 */ { 0, 0, 1, 1, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs163_g3_s0_effs[] = { /* 0x8218048 */ + /* 0 */ { 0, 0, 1, 1, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8218054 */ + &s_gs163_g0_s0_station_sref, + &s_gs163_g1_s0_station_sref, + &s_gs163_g2_s0_station_sref, + &s_gs163_g3_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs163_g0_sectors[] = { /* 0x8218064 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs163_g1_sectors[] = { /* 0x821808c */ + { LPARRAY(s_gs163_g1_s0_lives), 0,NULL, LPARRAY(s_gs163_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs163_g2_sectors[] = { /* 0x82180b4 */ + { LPARRAY(s_gs163_g2_s0_lives), 0,NULL, LPARRAY(s_gs163_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptSector s_gs163_g3_sectors[] = { /* 0x82180dc */ + { LPARRAY(s_gs163_g3_s0_lives), 0,NULL, LPARRAY(s_gs163_g3_s0_effs), 0,NULL, 1,&sStationScripts[3], }, +}; + +static const struct GroundScriptGroup s_gs163_groups[] = { /* 0x8218104 */ + { LPARRAY(s_gs163_g0_sectors) }, + { LPARRAY(s_gs163_g1_sectors) }, + { LPARRAY(s_gs163_g2_sectors) }, + { LPARRAY(s_gs163_g3_sectors) }, +}; + +static const struct GroundLink s_gs163_links[] = { /* 0x8218124 */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs163 = { LPARRAY(s_gs163_groups), s_gs163_links }; /* 0x821812c */ diff --git a/src/data/ground/ground_data_a02p01_station.h b/src/data/ground/ground_data_a02p01_station.h new file mode 100644 index 000000000..85d7f60c4 --- /dev/null +++ b/src/data/ground/ground_data_a02p01_station.h @@ -0,0 +1,107 @@ + + + + + + + + + + +static const struct ScriptCommand s_gs164_g0_s0_station_sref_script[] = { /* 0x8218140 */ + DEBUGINFO, + SELECT_MAP(164), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs164_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs164_g0_s0_station_sref_script }; /* 0x82181ac */ + +static const struct ScriptCommand s_gs164_g1_s0_station_sref_script[] = { /* 0x82181b8 */ + DEBUGINFO, + BGM_SWITCH(24), + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(164), + { 0x2d, 0x09, 0x0000, 0x00000021, 0x00000000, NULL }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Thus began\n#+$n0's") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+cruel and arduous\n#+journey as a fugitive.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Over forbidding mountains...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs164_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs164_g1_s0_station_sref_script }; /* 0x8218330 */ + + +static const struct ScriptCommand s_gs164_g1_s0_lives0_dlg0[] = { /* 0x821833c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Whoa!\nThese cracks go down deep!")), + VARIANT_DEFAULT(_(" Wow!\nAren't these fissures amazing?!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs164_g1_s0_lives1_dlg0[] = { /* 0x8218458 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs164_g1_s0_lives[] = { /* 0x82184d8 */ + /* 0 */ { 0, 2, 0, 0, { 25, 19, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs164_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 2, 0, 0, { 26, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs164_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs164_g1_s0_effs[] = { /* 0x8218508 */ + /* 0 */ { 0, 0, 1, 1, { 40, 20, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8218514 */ + &s_gs164_g0_s0_station_sref, + &s_gs164_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs164_g0_sectors[] = { /* 0x821851c */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs164_g1_sectors[] = { /* 0x8218544 */ + { LPARRAY(s_gs164_g1_s0_lives), 0,NULL, LPARRAY(s_gs164_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs164_groups[] = { /* 0x821856c */ + { LPARRAY(s_gs164_g0_sectors) }, + { LPARRAY(s_gs164_g1_sectors) }, +}; + +static const struct GroundLink s_gs164_links[] = { /* 0x821857c */ + /* link 0 */ { { /*x*/ 34, /*y*/ 19, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 35, /*y*/ 21, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs164 = { LPARRAY(s_gs164_groups), s_gs164_links }; /* 0x821858c */ diff --git a/src/data/ground/ground_data_a02p02_station.h b/src/data/ground/ground_data_a02p02_station.h new file mode 100644 index 000000000..fcb424ce3 --- /dev/null +++ b/src/data/ground/ground_data_a02p02_station.h @@ -0,0 +1,127 @@ + + + + + + + + + + +static const struct ScriptCommand s_gs165_g0_s0_station_sref_script[] = { /* 0x82185a0 */ + DEBUGINFO, + SELECT_MAP(165), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs165_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs165_g0_s0_station_sref_script }; /* 0x821860c */ + +static const struct ScriptCommand s_gs165_g1_s0_station_sref_script[] = { /* 0x8218618 */ + DEBUGINFO, + BGM_SWITCH(24), + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(165), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Across fields of fire...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0000, 0x00000021, 0x00000000, NULL }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+But throughout it all,\n#+$n0's team kept\n#+their heads held high.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Without a complaint,\n#+they marched on.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(120), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(60), + RET, +}; + +static const struct ScriptRef s_gs165_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs165_g1_s0_station_sref_script }; /* 0x8218828 */ + + + +static const struct ScriptCommand s_gs165_g1_s0_lives0_dlg0[] = { /* 0x8218834 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x00cc, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0001, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Nature's gone savage\nhere too...")), + VARIANT(/* == */ 1, _(" The forest fires are still\nburning out of control...")), + VARIANT_DEFAULT(_(" The environment is out\nof control here too...")), + VARIANT_DEFAULT(_(" The forest fire is still\nraging...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x00, 0x0064, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x80, 0x00cc, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs165_g1_s0_lives1_dlg0[] = { /* 0x8218a34 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x00cc, 0x00000001, 0x00000000, NULL }, + { 0x91, 0x08, 0x000b, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x80, 0x00cc, 0x00000002, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs165_g1_s0_lives[] = { /* 0x8218af4 */ + /* 0 */ { 0, 2, 0, 0, { 6, 12, 0, CPOS_HALFTILE }, { + [0] = s_gs165_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 2, 0, 0, { 1, 12, 0, CPOS_HALFTILE }, { + [0] = s_gs165_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs165_g1_s0_effs[] = { /* 0x8218b24 */ + /* 0 */ { 0, 0, 1, 1, { 16, 11, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8218b30 */ + &s_gs165_g0_s0_station_sref, + &s_gs165_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs165_g0_sectors[] = { /* 0x8218b38 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs165_g1_sectors[] = { /* 0x8218b60 */ + { LPARRAY(s_gs165_g1_s0_lives), 0,NULL, LPARRAY(s_gs165_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs165_groups[] = { /* 0x8218b88 */ + { LPARRAY(s_gs165_g0_sectors) }, + { LPARRAY(s_gs165_g1_sectors) }, +}; + +static const struct GroundLink s_gs165_links[] = { /* 0x8218b98 */ + /* link 0 */ { { /*x*/ 18, /*y*/ 12, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 14, /*y*/ 12, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs165 = { LPARRAY(s_gs165_groups), s_gs165_links }; /* 0x8218ba8 */ diff --git a/src/data/ground/ground_data_a02p03_station.h b/src/data/ground/ground_data_a02p03_station.h new file mode 100644 index 000000000..a5d4ef1a6 --- /dev/null +++ b/src/data/ground/ground_data_a02p03_station.h @@ -0,0 +1,226 @@ + + + + + + + + + + +static const struct ScriptCommand s_gs166_g0_s0_station_sref_script[] = { /* 0x8218bbc */ + DEBUGINFO, + SELECT_MAP(166), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs166_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs166_g0_s0_station_sref_script }; /* 0x8218c28 */ + +static const struct ScriptCommand s_gs166_g1_s0_station_sref_script[] = { /* 0x8218c34 */ + DEBUGINFO, + SELECT_MAP(166), + SELECT_ENTITIES(-1, 0), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs166_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs166_g1_s0_station_sref_script }; /* 0x8218ca4 */ + +static const struct ScriptCommand s_gs166_g1_s0_lives0_dlg0[] = { /* 0x8218cb0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + BGM_FADEOUT(60), + WAIT(20), + { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Gasp... Gasp...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, no! Look!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(38), + { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs166_g1_s0_lives1_dlg0[] = { /* 0x8218e38 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x00000001, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + WAIT(20), + FANFARE_PLAY2(455), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs166_g2_s0_station_sref_script[] = { /* 0x8218f08 */ + DEBUGINFO, + SELECT_MAP(166), + SELECT_ENTITIES(-1, 0), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Look at them go!\nThey're running for Mt. Blaze!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Are they insane?\nMt. Blaze is doomed desolation!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" No one's ever come this far\nbefore!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I don't wanna go anywhere like that.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" It can't be helped.\nOnly those brave enough will give chase!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(90), + WAIT(120), + { 0x3b, 0x39, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs166_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs166_g2_s0_station_sref_script }; /* 0x8219150 */ + + +static const struct ScriptCommand s_gs166_g2_s0_lives0_dlg0[] = { /* 0x821915c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It... It's a mountain of fire!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Look at all that lava\npouring from the crater...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Can we even make it\nthrough there?") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But they're catching up to\nus...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000001, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What'll we do,\n$n0?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Look! There they are!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Get them!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There's no choice now!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Let's go, $n0!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x00, 0x0028, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x89, 0x50, 0x0200, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + +static const struct ScriptCommand s_gs166_g2_s0_lives1_dlg0[] = { /* 0x821952c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x50, 0x0200, 0x00000002, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs166_g1_s0_lives[] = { /* 0x821964c */ + /* 0 */ { 0, 2, 0, 0, { 14, 25, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs166_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 2, 0, 0, { 18, 27, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs166_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs166_g2_s0_lives[] = { /* 0x821967c */ + /* 0 */ { 0, 2, 0, 0, { 28, 25, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs166_g2_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 2, 0, 0, { 32, 27, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs166_g2_s0_lives1_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs166_g1_s0_effs[] = { /* 0x82196ac */ + /* 0 */ { 0, 0, 1, 1, { 30, 28, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs166_g2_s0_effs[] = { /* 0x82196b8 */ + /* 0 */ { 0, 0, 1, 1, { 30, 28, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x82196c4 */ + &s_gs166_g0_s0_station_sref, + &s_gs166_g1_s0_station_sref, + &s_gs166_g2_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs166_g0_sectors[] = { /* 0x82196d0 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs166_g1_sectors[] = { /* 0x82196f8 */ + { LPARRAY(s_gs166_g1_s0_lives), 0,NULL, LPARRAY(s_gs166_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs166_g2_sectors[] = { /* 0x8219720 */ + { LPARRAY(s_gs166_g2_s0_lives), 0,NULL, LPARRAY(s_gs166_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptGroup s_gs166_groups[] = { /* 0x8219748 */ + { LPARRAY(s_gs166_g0_sectors) }, + { LPARRAY(s_gs166_g1_sectors) }, + { LPARRAY(s_gs166_g2_sectors) }, +}; + +static const struct GroundLink s_gs166_links[] = { /* 0x8219760 */ + /* link 0 */ { { /*x*/ 28, /*y*/ 25, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 32, /*y*/ 27, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs166 = { LPARRAY(s_gs166_groups), s_gs166_links }; /* 0x8219770 */ diff --git a/src/data/ground/ground_data_a02p04_station.h b/src/data/ground/ground_data_a02p04_station.h new file mode 100644 index 000000000..a1f3b93a7 --- /dev/null +++ b/src/data/ground/ground_data_a02p04_station.h @@ -0,0 +1,367 @@ + + + + + + + + + + + + + +static const struct ScriptCommand s_gs167_g0_s0_station_sref_script[] = { /* 0x8219784 */ + DEBUGINFO, + SELECT_MAP(167), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs167_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs167_g0_s0_station_sref_script }; /* 0x82197f0 */ + +static const struct ScriptCommand s_gs167_g1_s0_station_sref_script[] = { /* 0x82197fc */ + DEBUGINFO, + SELECT_MAP(167), + SELECT_ENTITIES(-1, 0), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs167_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs167_g1_s0_station_sref_script }; /* 0x821986c */ + +static const struct ScriptCommand s_gs167_g2_s0_station_sref_script[] = { /* 0x8219878 */ + DEBUGINFO, + SELECT_MAP(167), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(24), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0000, 0x00000021, 0x00000000, NULL }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And so, $n0's\n#+harrowing journey continued.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Seeking refuge in\n#+even harsher places...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+They fled north.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+They crossed row upon\n#+row of mountains...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Forded fetid swamps...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Scaled frozen cliffs...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Till finally, $n0's tiny team\n#+arrived in a world of snow...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+A frigid wasteland of\n#+driving blizzards.") }, + BGM_FADEOUT(120), + { 0xe0, 0x00, 0x0018, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + RET, +}; + +static const struct ScriptRef s_gs167_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs167_g2_s0_station_sref_script }; /* 0x8219b4c */ + + +static const struct ScriptCommand s_gs167_g2_s0_eff0_script[] = { /* 0x8219b58 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0099, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x23, 0x00, 0x005a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs167_g2_s0_lives0_dlg0[] = { /* 0x8219c28 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000022, 0x00000000, NULL }, + WAIT(80), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Gasp, gasp...\nWe've done a lot of walking.")), + VARIANT(/* == */ 1, _(" I'm beat.\nLet's get some rest.")), + VARIANT(/* == */ 3, _(" Pant, pant...\nWe walked a lot, didn't we?")), + VARIANT(/* == */ 3, _(" I'm tired.\nLet's get a little rest.")), + VARIANT_DEFAULT(_(" Pant, pant...\nWe sure walked a lot.")), + VARIANT_DEFAULT(_(" I'm bushed.\nLet's rest up.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x000b, 0x00000004, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Haaah!\nThe view's great here.")), + VARIANT_DEFAULT(_(" Mmm...\nThe view's fantastic.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Oh, hey!\n$n0, you have to see this!")), + VARIANT_DEFAULT(_(" Oh, look!\n$n0, look over there!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Look at that.\nSee how small Mt. Blaze looks?")), + VARIANT(/* == */ 1, _(" We sure came a long way...")), + VARIANT_DEFAULT(_(" See how small Mt. Blaze\nlooks from here?")), + VARIANT_DEFAULT(_(" We've come a really long\nway, haven't we?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ............#WHey, $n0.")), + VARIANT(/* == */ 3, _(" ............#WUm, $n0?")), + VARIANT_DEFAULT(_(" ............#W$n0.")), + { 0x91, 0x04, 0x000b, 0x00000003, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" You remember how tough it\nwas getting over Mt. Blaze, right?")), + VARIANT(/* == */ 1, _(" I don't think many Pokémon\ncan get through there.")), + VARIANT(/* == */ 1, _(" And, after that, we\nreally went at it hard to get here.")), + VARIANT(/* == */ 1, _(" You know what I really\nthink?")), + VARIANT(/* == */ 3, _(" Wasn't it hard getting over\nMt. Blaze?")), + VARIANT(/* == */ 3, _(" I doubt that many Pokémon\nwill be able to get through it.")), + VARIANT(/* == */ 3, _(" And it wasn't easy coming\nthis far after that mountain.")), + VARIANT(/* == */ 3, _(" Do you want to know what\nI think?")), + VARIANT_DEFAULT(_(" Do you remember how hard\nit was to get across Mt. Blaze?")), + VARIANT_DEFAULT(_(" I don't think too many\nPokémon can get through there.")), + VARIANT_DEFAULT(_(" And then we gave it our\nall to get out here.")), + VARIANT_DEFAULT(_(" Do you know what I'm\nthinking?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, -0x00000002, 0x00000000, NULL }, + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" Maybe there aren't any more\nPokémon that can chase us all the way\nhere.")), + VARIANT(/* == */ 3, _(" Do you think, maybe, that no\nPokémon will be able to get to us here?")), + VARIANT_DEFAULT(_(" We've come so far, maybe\nthere aren't any more Pokémon that can\nget to us.")), + CHOICE(/* label */ 2, _("No. There are others.")), + CHOICE(/* label */ 3, _("You're right. No one can get us, hahaha...")), + LABEL(2), /* = 0x02 */ + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(455), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" What?#W There are others?")), + VARIANT(/* == */ 1, _(" Who might they be?")), + VARIANT_DEFAULT(_(" Oh?#W There's someone else?")), + VARIANT_DEFAULT(_(" Well, who do you mean?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...#WOh, right.#W\nAlakazam's still out there.")), + VARIANT(/* == */ 1, _(" Their team should be able\nto get here...")), + VARIANT_DEFAULT(_(" ...#WOh, I get it.#W\nThere's Alakazam.")), + VARIANT_DEFAULT(_(" You're right.\nAlakazam's team should be able to get\nhere.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(4), + LABEL(3), /* = 0x03 */ + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + { 0x2e, 0x03, 0x0001, 0x0000000b, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I knew it!\nI knew you'd say that too, $n0!")), + VARIANT_DEFAULT(_(" I thought so!\nYou think so too, $n0, right?!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yeah, you're right.\nThere can't be anyone else.\nHahahahaha.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" All right!\nWe can say good-bye to living like\nfugitives.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We don't have to keep\nrunning away anymore!\nHahahahaha.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hahahaha...#W Haha...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x15, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ..................#W\nThis is no good, $n0.")), + VARIANT(/* == */ 1, _(" We forgot about some\ntough customers.")), + VARIANT(/* == */ 1, _(" Alakazam.#W\nHis team won't drop the chase ever.")), + VARIANT_DEFAULT(_(" ........................#W\nIt's no good, $n0.")), + VARIANT_DEFAULT(_(" We've forgotten some\ntough customers.")), + VARIANT_DEFAULT(_(" It's Alakazam's team.#W\nThey'll keep chasing us wherever we go.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(4), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + LABEL(4), /* = 0x04 */ + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" We're not out of this yet.\nLet's get going.")), + VARIANT(/* == */ 1, _(" We'd better go somewhere\nnobody can get to.\nThat'd be best.")), + VARIANT_DEFAULT(_(" Yup! We don't have a choice.\nWe have to keep going.")), + VARIANT_DEFAULT(_(" I think we need to go\nsomewhere no one else can get to.")), + { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Let's knuckle down and keep\ngoing.")), + VARIANT_DEFAULT(_(" Let's be positive and keep\nmoving.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Huh?#W What's the matter?\nAren't you coming, $n0?")), + VARIANT(/* == */ 3, _(" Oh?#W What's wrong?\nAren't we going, $n0?")), + VARIANT_DEFAULT(_(" Huh?#W What's the matter?\nAren't you coming, $n0?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x000b, 0x00000007, 0x00000000, NULL }, + WAIT(30), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...#WWhat?#W\nAren't I tired, you're asking?")), + VARIANT(/* == */ 1, _(" We're being chased!\nWe can't rest.")), + VARIANT(/* == */ 1, _(" And...#W\nI told you, didn't I?")), + VARIANT(/* == */ 1, _(" I said I'd go with you,\n$n0.")), + VARIANT(/* == */ 3, _(" ...#WPardon?#W\nAm I tired?")), + VARIANT(/* == */ 3, _(" They're trying to catch us.\nWe don't have time to rest.")), + VARIANT(/* == */ 3, _(" And...#W\nRemember what I said?")), + VARIANT(/* == */ 3, _(" I said I would go with\nyou, $n0.")), + VARIANT_DEFAULT(_(" ...#WHuh?#W\nAm I tired?")), + VARIANT_DEFAULT(_(" They're chasing us down.\nWe can't afford to rest.\n")), + VARIANT_DEFAULT(_(" And...#W\nI told you already.")), + VARIANT_DEFAULT(_(" I said I would go with\nyou, $n0.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...Don't look that way\nat me!\nI'm good. I'm good!")), + VARIANT(/* == */ 1, _(" Let's roll, $n0!\nI'll go with you wherever you go!")), + VARIANT(/* == */ 3, _(" ...Oh, please don't look\nlike that.\nHonest, I'm fine.")), + VARIANT(/* == */ 3, _(" Let's go, $n0!\nI'll always stick with you!")), + VARIANT_DEFAULT(_(" ...Oh, come on.\nNo need for that long face.\nI'm fine.")), + VARIANT_DEFAULT(_(" Let's go, $n0!\nI'll go wherever you go!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x6b, 0x00, 0x0099, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + +static const struct ScriptCommand s_gs167_g2_s0_lives1_dlg0[] = { /* 0x821b5d4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + WAIT(10), + { 0x6b, 0x00, 0x0099, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x002d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x10, 0x0099, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + WAIT(15), + { 0x91, 0x04, 0x000b, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 0), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 0, /* to label */ 1), + LABEL(0), /* = 0x00 */ + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(30), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0x54, 0x00, 0x002d, 0x00000000, 0x00000000, NULL }, + WAIT(160), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0099, 0x00000003, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x000b, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0099, 0x00000004, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs167_g2_s0_lives[] = { /* 0x821b904 */ + /* 0 */ { 0, 6, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs167_g2_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 6, 0, 0, { 31, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs167_g2_s0_lives1_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs167_g1_s0_effs[] = { /* 0x821b934 */ + /* 0 */ { 0, 0, 1, 1, { 16, 8, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs167_g2_s0_effs[] = { /* 0x821b940 */ + /* 0 */ { 0, 0, 1, 1, { 16, 8, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs167_g2_s0_eff0_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x821b94c */ + &s_gs167_g0_s0_station_sref, + &s_gs167_g1_s0_station_sref, + &s_gs167_g2_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs167_g0_sectors[] = { /* 0x821b958 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs167_g1_sectors[] = { /* 0x821b980 */ + { 0,NULL, 0,NULL, LPARRAY(s_gs167_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs167_g2_sectors[] = { /* 0x821b9a8 */ + { LPARRAY(s_gs167_g2_s0_lives), 0,NULL, LPARRAY(s_gs167_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptGroup s_gs167_groups[] = { /* 0x821b9d0 */ + { LPARRAY(s_gs167_g0_sectors) }, + { LPARRAY(s_gs167_g1_sectors) }, + { LPARRAY(s_gs167_g2_sectors) }, +}; + +static const struct GroundLink s_gs167_links[] = { /* 0x821b9e8 */ + /* link 0 */ { { /*x*/ 16, /*y*/ 37, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 14, /*y*/ 38, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 2 */ { { /*x*/ 18, /*y*/ 38, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 3 */ { { /*x*/ 12, /*y*/ 40, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 4 */ { { /*x*/ 1, /*y*/ 40, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs167 = { LPARRAY(s_gs167_groups), s_gs167_links }; /* 0x821ba10 */ diff --git a/src/data/ground/ground_data_a03p01_station.h b/src/data/ground/ground_data_a03p01_station.h new file mode 100644 index 000000000..d43cf63bd --- /dev/null +++ b/src/data/ground/ground_data_a03p01_station.h @@ -0,0 +1,338 @@ + + + + + + + + +static const struct ScriptCommand s_gs168_g0_s0_station_sref_script[] = { /* 0x821ba24 */ + DEBUGINFO, + SELECT_MAP(168), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs168_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs168_g0_s0_station_sref_script }; /* 0x821ba90 */ + +static const struct ScriptCommand s_gs168_g1_s0_station_sref_script[] = { /* 0x821ba9c */ + DEBUGINFO, + SELECT_MAP(168), + SELECT_WEATHER(-1), + SELECT_ENTITIES(-1, 0), + BGM_FADEIN(120, 36), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs168_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs168_g1_s0_station_sref_script }; /* 0x821bb2c */ + +static const struct ScriptCommand s_gs168_g1_s0_eff0_script[] = { /* 0x821bb38 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x50, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x50, 0x0100, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(1), + END_DELETE, +}; + +static const struct ScriptCommand s_gs168_g1_s0_lives0_dlg0[] = { /* 0x821bbf8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x36, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(80), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x36, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...Brr... It's cold!#W") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(8), + FANFARE_PLAY2(480), + { 0x2e, 0x02, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hachoo!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(8), + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + WAIT(24), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yuck...#W\nMy nose is running, and it's freezing.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0x3b, 0x36, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ..................")), + VARIANT(/* == */ 1, _(" This is one barren place...")), + VARIANT(/* == */ 1, _(" That snow's deep.")), + VARIANT(/* == */ 1, _(" There haven't been any\nPokémon around for a while, either.")), + VARIANT(/* == */ 1, _(" Maybe there isn't anyone\nelse out here but us.")), + VARIANT_DEFAULT(_(" ..................")), + VARIANT_DEFAULT(_(" Isn't this one lonely place?")), + VARIANT_DEFAULT(_(" See how deep the snow is.")), + VARIANT_DEFAULT(_(" I haven't seen any other\nPokémon for a while, either.")), + VARIANT_DEFAULT(_(" Maybe we're all alone here.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x36, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Huh? What's up?")), + VARIANT_DEFAULT(_(" Oh? What's the matter?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ........................") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wh-what's that?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(40), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...#WWhat was that?#W\nIt looked like a Pokémon, but...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Was I seeing things?#W\nNo, that can't be right.#W\nI'm sure there was someone there...")), + VARIANT_DEFAULT(_(" Did I imagine that?#W\nNo, I don't think so.#W\nI'm sure there was somebody there.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wonder what they were\ndoing in this lonely place?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Well, thinking about it\nisn't going to help.#W\nLet's keep moving.")), + VARIANT_DEFAULT(_(" I guess thinking about it\nwon't help us.#W\nWe should keep moving.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x36, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(64), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + +static const struct ScriptCommand s_gs168_g1_s0_lives1_dlg0[] = { /* 0x821c620 */ + DEBUGINFO, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000018, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x002f, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x0c, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs168_g1_s0_lives2_dlg0[] = { /* 0x821c8e0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0x54, 0x00, 0x0020, 0x00000000, 0x00000000, NULL }, + WAIT(9), + FANFARE_PLAY2(478), + { 0x89, 0x50, 0x0400, 0x00000002, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs168_g2_s0_station_sref_script[] = { /* 0x821c980 */ + DEBUGINFO, + SELECT_MAP(168), + SELECT_WEATHER(-1), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(36), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs168_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs168_g2_s0_station_sref_script }; /* 0x821ca10 */ + +static const struct ScriptCommand s_gs168_g2_s0_lives0_dlg0[] = { /* 0x821ca1c */ + DEBUGINFO, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x36, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x36, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x0000000b, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Wow!")), + VARIANT_DEFAULT(_(" Oh!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0!\nCheck that out!")), + VARIANT_DEFAULT(_(" $n0! Look!")), + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" See that?#W\nThose trees are frozen!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs168_g2_s0_lives1_dlg0[] = { /* 0x821cc58 */ + DEBUGINFO, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000058, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs168_g1_s0_lives[] = { /* 0x821cd58 */ + /* 0 */ { 0, 2, 0, 0, { 64, 23, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs168_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 2, 0, 0, { 64, 25, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs168_g1_s0_lives1_dlg0, + } }, + /* 2 */ { 83, 6, 0, 0, { 82, 22, 0, CPOS_HALFTILE }, { + [0] = s_gs168_g1_s0_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs168_g2_s0_lives[] = { /* 0x821cda0 */ + /* 0 */ { 0, 2, 0, 0, { 78, 23, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs168_g2_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 2, 0, 0, { 81, 25, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs168_g2_s0_lives1_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs168_g1_s0_effs[] = { /* 0x821cdd0 */ + /* 0 */ { 0, 0, 1, 1, { 64, 24, 0, CPOS_HALFTILE }, s_gs168_g1_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs168_g2_s0_effs[] = { /* 0x821cddc */ + /* 0 */ { 0, 0, 1, 1, { 79, 24, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x821cde8 */ + &s_gs168_g0_s0_station_sref, + &s_gs168_g1_s0_station_sref, + &s_gs168_g2_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs168_g0_sectors[] = { /* 0x821cdf4 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs168_g1_sectors[] = { /* 0x821ce1c */ + { LPARRAY(s_gs168_g1_s0_lives), 0,NULL, LPARRAY(s_gs168_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs168_g2_sectors[] = { /* 0x821ce44 */ + { LPARRAY(s_gs168_g2_s0_lives), 0,NULL, LPARRAY(s_gs168_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptGroup s_gs168_groups[] = { /* 0x821ce6c */ + { LPARRAY(s_gs168_g0_sectors) }, + { LPARRAY(s_gs168_g1_sectors) }, + { LPARRAY(s_gs168_g2_sectors) }, +}; + +static const struct GroundLink s_gs168_links[] = { /* 0x821ce84 */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs168 = { LPARRAY(s_gs168_groups), s_gs168_links }; /* 0x821ce8c */ diff --git a/src/data/ground/ground_data_a03p02_station.h b/src/data/ground/ground_data_a03p02_station.h new file mode 100644 index 000000000..690d8d58d --- /dev/null +++ b/src/data/ground/ground_data_a03p02_station.h @@ -0,0 +1,91 @@ + + + + + + + + +static const struct ScriptCommand s_gs169_g0_s0_station_sref_script[] = { /* 0x821cea0 */ + DEBUGINFO, + SELECT_MAP(169), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs169_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs169_g0_s0_station_sref_script }; /* 0x821cf0c */ + +static const struct ScriptCommand s_gs169_g1_s0_station_sref_script[] = { /* 0x821cf18 */ + DEBUGINFO, + SELECT_MAP(169), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(36), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs169_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs169_g1_s0_station_sref_script }; /* 0x821cf98 */ + +static const struct ScriptCommand s_gs169_g1_s0_lives0_dlg0[] = { /* 0x821cfa4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + WAIT(90), + { 0x2e, 0x02, 0x0001, 0x0000000b, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wow!#W\nThe snow is like frozen powder!") }, + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It looks pretty, but...#W\nIt must be harsh there...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs169_g1_s0_lives1_dlg0[] = { /* 0x821d0e4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs169_g1_s0_lives[] = { /* 0x821d124 */ + /* 0 */ { 0, 4, 0, 0, { 15, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs169_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 19, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs169_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs169_g1_s0_effs[] = { /* 0x821d154 */ + /* 0 */ { 0, 0, 1, 1, { 17, 18, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x821d160 */ + &s_gs169_g0_s0_station_sref, + &s_gs169_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs169_g0_sectors[] = { /* 0x821d168 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs169_g1_sectors[] = { /* 0x821d190 */ + { LPARRAY(s_gs169_g1_s0_lives), 0,NULL, LPARRAY(s_gs169_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs169_groups[] = { /* 0x821d1b8 */ + { LPARRAY(s_gs169_g0_sectors) }, + { LPARRAY(s_gs169_g1_sectors) }, +}; + +static const struct GroundLink s_gs169_links[] = { /* 0x821d1c8 */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs169 = { LPARRAY(s_gs169_groups), s_gs169_links }; /* 0x821d1d0 */ diff --git a/src/data/ground/ground_data_a03p03_station.h b/src/data/ground/ground_data_a03p03_station.h new file mode 100644 index 000000000..7ba29dd45 --- /dev/null +++ b/src/data/ground/ground_data_a03p03_station.h @@ -0,0 +1,485 @@ + + + + + + + + +static const struct ScriptCommand s_gs170_g0_s0_station_sref_script[] = { /* 0x821d1e4 */ + DEBUGINFO, + SELECT_MAP(170), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs170_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs170_g0_s0_station_sref_script }; /* 0x821d250 */ + +static const struct ScriptCommand s_gs170_g1_s0_station_sref_script[] = { /* 0x821d25c */ + DEBUGINFO, + SELECT_MAP(170), + SELECT_ENTITIES(-1, 0), + BGM_FADEIN(30, 36), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(506), + { 0x28, 0x01, 0x0005, 0x00000010, 0x00ffffff, NULL }, + RET, +}; + +static const struct ScriptRef s_gs170_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs170_g1_s0_station_sref_script }; /* 0x821d2ec */ + +static const struct ScriptCommand s_gs170_g1_s0_lives0_dlg0[] = { /* 0x821d2f8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x36, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + WAIT(120), + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(This icy mountain path seems to go\non forever...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(We've walked a long way here...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("($n1 looks exhausted, too...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(We've been running all this time out\nof desperation...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(What's in store for us ahead?)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Are we really doing the right thing?)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x14, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0001, 0x00000000, 0x00000002, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Brr... It's too cold!#W\nThere's only snow around us now.")), + VARIANT(/* == */ 1, _(" The scenery hasn't changed\nat all for a while now...")), + VARIANT(/* == */ 1, _(" Are we even getting\nsomewhere?")), + VARIANT_DEFAULT(_(" Brr... This is too cold!#W\nThere's nothing but snow now.")), + VARIANT_DEFAULT(_(" The scenery's been\nthe same for a while...")), + VARIANT_DEFAULT(_(" I wonder if we're really\nmaking progress...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...Hey, $n0?\nYou know what I'm thinking...?")), + VARIANT(/* == */ 1, _(" I think we've finally reached\na place where there's no one else but us.")), + VARIANT(/* == */ 1, _(" I also have this feeling\nthere's nothing ahead of us here...")), + VARIANT(/* == */ 1, _(" And, I'm feeling pretty\nbeat...")), + VARIANT(/* == */ 3, _(" ...Um, $n0?\nI was thinking...")), + VARIANT(/* == */ 3, _(" It looks like we've finally\nreached somewhere that's deserted...")), + VARIANT(/* == */ 3, _(" I also have a feeling that\nthere isn't anything ahead...")), + VARIANT(/* == */ 3, _(" And, I am pretty tired...")), + VARIANT_DEFAULT(_(" ...Hey, $n0?\nI was thinking...")), + VARIANT_DEFAULT(_(" I think we've come to\na place that's empty except for us...")), + VARIANT_DEFAULT(_(" I have this feeling there's\nnothing ahead of here, even if we keep\nmoving...")), + VARIANT_DEFAULT(_(" And I'm getting exhausted...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" We two...\nWhat's going to happen to us?")), + VARIANT(/* == */ 3, _(" The two of us...\nWhat's going to happen to us?")), + VARIANT_DEFAULT(_(" We two...\nWhat's going to happen to us?")), + CHOICE(/* label */ 3, _("Don't worry. We'll be fine!")), + CHOICE(/* label */ 4, _("I don't know...")), + LABEL(3), /* = 0x03 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x3b, 0x36, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0001, 0x00000000, 0x00000002, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ............#W\nYeah, you're right.")), + VARIANT(/* == */ 1, _(" We came out here.\nThere's no point wondering about it.")), + VARIANT(/* == */ 1, _(" Sorry, $n0.#W\nI got to feeling sorry for myself.")), + VARIANT(/* == */ 1, _(" $n0, I came out\nhere because I believed in you.")), + VARIANT(/* == */ 1, _(" And that's not changing.\nI'll keep believing in you, $n0...")), + VARIANT(/* == */ 3, _(" ............#W\nYou're right.")), + VARIANT(/* == */ 3, _(" There isn't any point in\nwondering about what we did.\nNot after all this.")), + VARIANT(/* == */ 3, _(" Sorry, $n0.#W\nI was just getting down on myself.")), + VARIANT(/* == */ 3, _(" $n0, I believed in\nyou, and that's what got me this far.")), + VARIANT(/* == */ 3, _(" And that's not changing.\nI have faith in you, $n0...")), + VARIANT_DEFAULT(_(" ............#W\nSure, that's right.")), + VARIANT_DEFAULT(_(" There isn't any point in\nwondering about what might happen.\nNot after coming this far.")), + VARIANT_DEFAULT(_(" Sorry, $n0.#W\nI was just feeling sorry for myself.")), + VARIANT_DEFAULT(_(" I have faith in you, \n$n0.\nThat's what brought me here.")), + VARIANT_DEFAULT(_(" And that's not changing.\nI still have faith in you, $n0...")), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I'll go wherever you go.")), + VARIANT(/* == */ 3, _(" I'll go with you, always.")), + VARIANT_DEFAULT(_(" I'll keep going wherever\nyou go.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(5), + LABEL(4), /* = 0x04 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x3b, 0x36, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0001, 0x00000000, 0x00000002, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" .........#WSorry.#W\nI shouldn't have said that.\nIt doesn't help scaring you like that.")), + VARIANT(/* == */ 1, _(" We came out here.\nThere's no point wondering about it.")), + VARIANT(/* == */ 1, _(" Even if we don't know\nwhat's ahead...#W\nWe just have to keep going.")), + VARIANT(/* == */ 1, _(" Don't worry!\nThere's got to be something ahead.")), + VARIANT(/* == */ 1, _(" $n0, I came out\nhere because I believed in you.")), + VARIANT(/* == */ 1, _(" And that's not changing.\nI'll keep believing in you, $n0...")), + VARIANT(/* == */ 3, _(" .........#WI'm sorry.#W\nI shouldn't have said anything to bring\nyou down...")), + VARIANT(/* == */ 3, _(" There isn't any point in\nwondering about what we did.\nNot after all this.")), + VARIANT(/* == */ 3, _(" Even though we don't know\nwhat's ahead...#W\nWe'll find out if we keep moving!")), + VARIANT(/* == */ 3, _(" Don't worry!\nThere's got to be something ahead.")), + VARIANT(/* == */ 3, _(" $n0, I believed in\nyou, and that's what got me this far.")), + VARIANT(/* == */ 3, _(" And that's not changing.\nI have faith in you, $n0...")), + VARIANT_DEFAULT(_(" .........#WI'm sorry.#W\nI said something stupid to frighten you...")), + VARIANT_DEFAULT(_(" There isn't any point in\nwondering about what might happen.\nNot after coming this far.")), + VARIANT_DEFAULT(_(" Even though we don't know\nwhat's ahead...#W\nWe'll only know by pressing on!")), + VARIANT_DEFAULT(_(" Don't worry!\nThere's got to be something ahead.")), + VARIANT_DEFAULT(_(" I have faith in you, \n$n0.\nThat's what brought me here.")), + VARIANT_DEFAULT(_(" And that's not changing.\nI still have faith in you, $n0...")), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I'll go wherever you go.")), + VARIANT(/* == */ 3, _(" I'll go with you, always.")), + VARIANT_DEFAULT(_(" I'll keep going wherever\nyou go.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(5), /* = 0x05 */ + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Yes...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("($n1 trusts me without any\ndoubt.)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(I can't afford to be indecisive.)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(I have to believe in myself more.)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + BGM_FADEOUT(30), + FANFARE_PLAY2(476), + { 0x28, 0x01, 0x0007, 0x00000004, 0x00806040, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0x27, 0x01, 0x0007, 0x00000008, 0x00806040, NULL }, + { 0x28, 0x01, 0x0007, 0x00000008, 0x00806040, NULL }, + { 0x27, 0x01, 0x0007, 0x0000000c, 0x00806040, NULL }, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x15, 0x0000, 0x00000002, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...#WWh-what?#W What was that?)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(476), + { 0x28, 0x01, 0x0007, 0x00000004, 0x00806040, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0x27, 0x01, 0x0007, 0x00000008, 0x00806040, NULL }, + { 0x28, 0x01, 0x0007, 0x00000008, 0x00806040, NULL }, + { 0x27, 0x01, 0x0007, 0x0000000c, 0x00806040, NULL }, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...D-dizzy?#W Or what?)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(469), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0001, 0x00000000, 0x00000002, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Huh?#W What's the matter?\n$n0?")), + VARIANT_DEFAULT(_(" Huh?#W Is something wrong?\n$n0?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(476), + { 0x28, 0x01, 0x0007, 0x00000004, 0x00806040, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0x27, 0x01, 0x0007, 0x00000008, 0x00806040, NULL }, + { 0x28, 0x01, 0x0007, 0x00000008, 0x00806040, NULL }, + { 0x27, 0x01, 0x0007, 0x0000000c, 0x00806040, NULL }, + { 0x28, 0x01, 0x0005, 0x00000008, 0x00000000, NULL }, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ...Finally.") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ...Finally, you have arrived...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Someone...#W\nSomeone is talking to me...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("($n1...?#W No.\nThis voice isn't $n1...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(This voice...#W\nI've heard it somewhere...)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(477), + SELECT_ENTITIES(-1, 1), + { 0x27, 0x01, 0x0005, 0x00000030, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Finally...") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" You have arrived...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + +static const struct ScriptCommand s_gs170_g1_s0_lives1_dlg0[] = { /* 0x821ec08 */ + DEBUGINFO, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005d, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(QUESTION_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs170_g1_s0_lives2_dlg0[] = { /* 0x821ed08 */ + DEBUGINFO, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs170_g1_s1_lives0_dlg0[] = { /* 0x821ed78 */ + DEBUGINFO, + { 0x54, 0x00, 0x001f, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs170_g2_s0_station_sref_script[] = { /* 0x821edd8 */ + DEBUGINFO, + SELECT_MAP(170), + SELECT_ENTITIES(-1, 0), + { 0x27, 0x00, 0x0005, 0x00000020, 0x00ffffff, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(120), + { 0x23, 0x01, 0x0078, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs170_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs170_g2_s0_station_sref_script }; /* 0x821ee58 */ + +static const struct ScriptCommand s_gs170_g2_s0_lives0_dlg0[] = { /* 0x821ee64 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I am so glad.#W\nFinally, we get to meet.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...You're...#W What...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0001, 0x00000000, 0x00000002, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, $n0.\nWhat's up with you?")), + VARIANT(/* == */ 1, _(" Talking to yourself like\nthat...")), + VARIANT_DEFAULT(_(" $n0, is something\nthe matter?")), + VARIANT_DEFAULT(_(" Why are you talking to\nyourself?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + WAIT(64), + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + WAIT(16), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I cannot be seen by others.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I am visible only to you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(64), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" A little farther ahead...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There is a jagged mountain\nrange topped by #CDMt. Freeze#R.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Inside its peak...#W\nNinetales lives.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0000, 0x0000000c, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...Ninetales?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ninetales awaits your\narrival.") }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Beware...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Oh! W-wait...!") }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + WAIT(60), + { 0x2e, 0x15, 0x0000, 0x00000005, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("..................") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, $n0!\nCome on, $n0!")), + VARIANT(/* == */ 1, _(" What were you doing?#W\nWhat just happened to you...?")), + VARIANT_DEFAULT(_(" Hey, $n0!\n$n0!")), + VARIANT_DEFAULT(_(" What's the matter?#W\nWhat happened...?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + +static const struct ScriptCommand s_gs170_g2_s0_lives1_dlg0[] = { /* 0x821f534 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs170_g2_s0_lives2_dlg0[] = { /* 0x821f5e4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_RIGHT_FUNC), + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_LEFT_FUNC), + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs170_g2_s0_lives3_dlg0[] = { /* 0x821f684 */ + DEBUGINFO, + { 0x54, 0x00, 0x001f, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x001f, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 0, /* to label */ 0), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x54, 0x00, 0x0018, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct GroundLivesData s_gs170_g1_s0_lives[] = { /* 0x821f804 */ + /* 0 */ { 0, 2, 0, 0, { 100, 15, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs170_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 2, 0, 0, { 103, 17, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs170_g1_s0_lives1_dlg0, + } }, + /* 2 */ { 83, 2, 0, 0, { 96, 17, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs170_g1_s0_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs170_g1_s1_lives[] = { /* 0x821f84c */ + /* 0 */ { 82, 6, 0, 0, { 106, 15, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs170_g1_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs170_g2_s0_lives[] = { /* 0x821f864 */ + /* 0 */ { 0, 2, 0, 0, { 100, 15, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs170_g2_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 5, 0, 0, { 103, 17, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs170_g2_s0_lives1_dlg0, + } }, + /* 2 */ { 83, 3, 0, 0, { 96, 17, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs170_g2_s0_lives2_dlg0, + } }, + /* 3 */ { 82, 6, 0, 0, { 106, 15, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs170_g2_s0_lives3_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs170_g1_s0_effs[] = { /* 0x821f8c4 */ + /* 0 */ { 0, 0, 1, 1, { 103, 15, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs170_g2_s0_effs[] = { /* 0x821f8d0 */ + /* 0 */ { 0, 0, 1, 1, { 103, 15, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x821f8dc */ + &s_gs170_g0_s0_station_sref, + &s_gs170_g1_s0_station_sref, + &s_gs170_g2_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs170_g0_sectors[] = { /* 0x821f8e8 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs170_g1_sectors[] = { /* 0x821f910 */ + { LPARRAY(s_gs170_g1_s0_lives), 0,NULL, LPARRAY(s_gs170_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, + { LPARRAY(s_gs170_g1_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs170_g2_sectors[] = { /* 0x821f960 */ + { LPARRAY(s_gs170_g2_s0_lives), 0,NULL, LPARRAY(s_gs170_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptGroup s_gs170_groups[] = { /* 0x821f988 */ + { LPARRAY(s_gs170_g0_sectors) }, + { LPARRAY(s_gs170_g1_sectors) }, + { LPARRAY(s_gs170_g2_sectors) }, +}; + +static const struct GroundLink s_gs170_links[] = { /* 0x821f9a0 */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs170 = { LPARRAY(s_gs170_groups), s_gs170_links }; /* 0x821f9a8 */ diff --git a/src/data/ground/ground_data_a04p01_station.h b/src/data/ground/ground_data_a04p01_station.h new file mode 100644 index 000000000..c210b232d --- /dev/null +++ b/src/data/ground/ground_data_a04p01_station.h @@ -0,0 +1,2667 @@ + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs171_g0_s0_station_sref_script[] = { /* 0x821f9bc */ + DEBUGINFO, + SELECT_MAP(171), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs171_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs171_g0_s0_station_sref_script }; /* 0x821fa28 */ + +static const struct ScriptCommand s_gs171_g1_s0_station_sref_script[] = { /* 0x821fa34 */ + DEBUGINFO, + SELECT_MAP(171), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(19), + { 0x27, 0x00, 0x0005, 0x00000020, 0x00ffffff, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs171_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs171_g1_s0_station_sref_script }; /* 0x821fab4 */ + +static const struct ScriptCommand s_gs171_g1_s0_eff0_script[] = { /* 0x821fac0 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0xa0, 0x0180, 0x00000004, 0x00000000, NULL }, + { 0x3b, 0x38, 0x0000, 0x00000001, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g1_s0_lives0_dlg0[] = { /* 0x821fb60 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x38, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" From the sky!\nComes a star!") }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" ...It is huge...#W\nA giant of a star!") }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" The star, it falls.\nIt falls straight to us.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs171_g2_s0_station_sref_script[] = { /* 0x821fcb8 */ + DEBUGINFO, + SELECT_MAP(171), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(19), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x0005, 0x00000020, 0x00ffffff, NULL }, + RET, +}; + +static const struct ScriptRef s_gs171_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs171_g2_s0_station_sref_script }; /* 0x821fd38 */ + +static const struct ScriptCommand s_gs171_g2_s0_eff0_script[] = { /* 0x821fd44 */ + DEBUGINFO, + { 0x59, 0x00, 0x0000, -0x000000e0, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x70, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs171_g2_s0_lives0_dlg0[] = { /* 0x821fdc4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x00, 0x0000, -0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Disasters in nature...\nThere were many...") }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" The balance of the world,\nit has been upset...") }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" All because of the star.\nThe star that slowly comes closer.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" ...If it keeps coming...\nIt will crash into this world.#W\nIt shall be terrible.") }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Something must be done...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs171_g3_s0_station_sref_script[] = { /* 0x8220004 */ + DEBUGINFO, + BGM_FADEOUT(30), + WAIT(60), + SELECT_MAP(171), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(19), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs171_g3_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs171_g3_s0_station_sref_script }; /* 0x82200a4 */ + +static const struct ScriptCommand s_gs171_g3_s0_lives0_dlg0[] = { /* 0x82200b0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x68, 0x0100, 0x00000004, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0002, 0x00000000, 0x00000002, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ah, good of you to come.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Kwaaaaaaaaaah!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wh-#Wwhat's going on?#W\nWhat is $n3 doing?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It is almost ready.#W\nThe #C4Teleport Gem#R...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Teleport Gem?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Kwaaaaaaaaaah!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(489), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" .........#WIt is made.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" This...\nThis is the #C4Teleport Gem#R.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" This will deliver you\nto the world of the sky.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Now, $n0.#W\nAccept!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x84, 0x00, 0x0100, -0x00000018, -0x00000018, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY(212), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0's team received\n#+the #C4Teleport Gem#R.") }, + { 0xe1, 0x00, 0x00d4, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x84, 0x00, 0x0100, 0x00000018, 0x00000018, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" That was made using\nthe powers of psychics.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" By me, $n2,\nand...#W\nOh?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" A Ghost-type Pokémon.\nWe received help from it.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...Gone away, it seems...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Who could it be?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000042, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hahaha! It must be bashful.\nLet it be.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Now...#W\nI must ask you this one last time.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This journey will be fraught\nwith considerable danger.#W\nWill you still go?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" You bet we will!")), + VARIANT(/* == */ 1, _(" We need to see Rayquaza\nand ask it to blow up that falling\nstar, right?")), + VARIANT(/* == */ 1, _(" If that's what's going to\nbring back peace, I'm not going to think\ntwice about giving up my life!")), + VARIANT(/* == */ 1, _(" That's what I want to\nmake happen.")), + VARIANT(/* == */ 3, _(" Of course!")), + VARIANT(/* == */ 3, _(" We have to persuade\nRayquaza to destroy that falling star.")), + VARIANT(/* == */ 3, _(" If that will bring peace,\nI'm willing to give up my life.")), + VARIANT(/* == */ 3, _(" That's my wish.")), + VARIANT_DEFAULT(_(" Of course we will!")), + VARIANT_DEFAULT(_(" We have to get Rayquaza\nto destroy that falling star, right?")), + VARIANT_DEFAULT(_(" If that will bring peace,\nI'll gladly give my life for it!")), + VARIANT_DEFAULT(_(" That's my wish.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...Yes...#W\nAnd when that wish comes true...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Gardevoir said...)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + +static const struct ScriptCommand s_gs171_g3_s0_lives1_dlg0[] = { /* 0x8220df0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x68, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g3_s0_lives2_dlg0[] = { /* 0x8220f50 */ + DEBUGINFO, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g3_s0_lives3_dlg0[] = { /* 0x8221070 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g3_s0_lives4_dlg0[] = { /* 0x8221180 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x60, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g3_s0_eff1_script[] = { /* 0x82211e0 */ + DEBUGINFO, + { 0x59, 0x00, -0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000069, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0000, 0x0000006a, 0x00000000, NULL }, + WAIT(120), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0000, 0x0000006b, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0000, 0x0000006c, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x70, 0x0033, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g4_s0_station_sref_script[] = { /* 0x8221360 */ + DEBUGINFO, + SELECT_MAP(171), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(19), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs171_g4_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs171_g4_s0_station_sref_script }; /* 0x82213f0 */ + +static const struct ScriptCommand s_gs171_g4_s0_lives0_dlg0[] = { /* 0x82213fc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(............)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(This will be my last adventure...#W\nWith $n1...)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0!\nLet's do this right!")), + VARIANT_DEFAULT(_(" $n0!\nLet's get this done!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x54, 0x00, 0x002f, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0002, 0x00000000, 0x00000002, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We're counting on you!\n$n1! $n0!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(500), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + CJUMP_UNK_C6(10), + COND_EQUAL(0, /* to label */ 3), + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + LABEL(3), /* = 0x03 */ + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x0000, -0x000000c8, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(90), + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + +static const struct ScriptCommand s_gs171_g4_s0_lives1_dlg0[] = { /* 0x8221794 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0x89, 0x10, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x0000, -0x000000c8, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g4_s0_lives2_dlg0[] = { /* 0x8221864 */ + DEBUGINFO, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g4_s0_lives3_dlg0[] = { /* 0x8221904 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g4_s0_lives4_dlg0[] = { /* 0x8221944 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00010000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0x89, 0x10, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0x89, 0x08, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x0000, -0x000000c8, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g4_s0_eff1_script[] = { /* 0x8221a04 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00020000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x000000a5, 0x00000000, NULL }, + WAIT(180), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0000, 0x000000a6, 0x00000000, NULL }, + WAIT(120), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g4_s0_eff2_script[] = { /* 0x8221ad4 */ + DEBUGINFO, + { 0x59, 0x00, 0x0000, -0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x000000a0, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x000000a1, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0000, 0x000000a4, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g4_s0_eff3_script[] = { /* 0x8221bc4 */ + DEBUGINFO, + { 0x59, 0x00, 0x0000, -0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x000000a0, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x000000a1, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0000, 0x000000a4, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g4_s0_eff4_script[] = { /* 0x8221cb4 */ + DEBUGINFO, + { 0x59, 0x00, 0x0000, -0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x000000a0, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x000000a1, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0000, 0x000000a4, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g5_s0_station_sref_script[] = { /* 0x8221da4 */ + DEBUGINFO, + { 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(171), + SELECT_ENTITIES(5, 0), + BGM_STOP, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(41), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs171_g5_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs171_g5_s0_station_sref_script }; /* 0x8221e34 */ + +static const struct ScriptCommand s_gs171_g5_s0_eff0_script[] = { /* 0x8221e40 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x24, 0x0200, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x40, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs171_g5_s0_lives0_dlg0[] = { /* 0x8221f00 */ + DEBUGINFO, + { 0x54, 0x00, 0x0034, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000058, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" .........Hey.") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ...Hey, can you hear...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Snap out of it!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x27, 0x01, 0x0005, 0x0000003c, 0x00ffffff, NULL }, + WAIT(60), + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...#WHuh...?#W This place...)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x39, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_LABEL(3), + WAIT(30), + { 0x2e, 0x03, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("............Urgggh......") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _("...Regained consciousness!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Oooooooohhhhh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + WAIT(15), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...#WI'm sure of it...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(I'm sure... Back there...#W\nGengar saved me...)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...Maybe...#W\nDid Gengar save $n0 too?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + CALL_LABEL(3), + WAIT(30), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0004, 0x00000042, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0004, -0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Awesome, you're alive!#W\nYou really had all of us worried!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0c, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" You were incredible!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0006, 0x00000042, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Snivel...\nI'm so glad you're safe!#W\nIt's fantastic!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Everyone... Thank you.#W\nBut...") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What about the star?!#W\nWhat happened to it?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(474), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Kwaaaaaaaaah!") }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(3), + { 0x91, 0x01, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x31, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Fear not!\nThe star is no more.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Though it will not be\nright away...#W\nThe disasters shall soon be calmed.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + CJUMP_UNK_C6(10), + COND_EQUAL(0, /* to label */ 10), + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + CJUMP_UNK_C6(11), + COND_EQUAL(0, /* to label */ 12), + JUMP_LABEL(13), + LABEL(12), /* = 0x0c */ + { 0x2d, 0x09, 0x0008, 0x0000000a, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What about our team\nmember?\nWhere's $n8?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Be calm.\n$n8 is safe.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + JUMP_LABEL(10), + LABEL(13), /* = 0x0d */ + { 0x2d, 0x09, 0x0008, 0x0000000a, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0009, 0x0000000b, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What about our team\nmembers? Where are $n8 and\n$n9?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Be calm.\nBoth are unharmed.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + LABEL(10), /* = 0x0a */ + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Really!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + CALL_LABEL(3), + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" We did it, $n0!#W\nWe got it done!")), + VARIANT(/* == */ 1, _(" We've won peace!")), + VARIANT_DEFAULT(_(" We did it, $n0!#W\nEverything worked!")), + VARIANT_DEFAULT(_(" We've won peace!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, + LABEL(3), /* = 0x03 */ + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, + HALT, +}; + + + + + + + + + + + + +static const struct ScriptCommand s_gs171_g5_s0_lives1_dlg0[] = { /* 0x8222c44 */ + DEBUGINFO, + { 0x54, 0x00, 0x0034, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_RIGHT_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x06, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x06, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x06, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x01, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CJUMP_UNK_C6(10), + COND_EQUAL(0, /* to label */ 0), + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + WAIT(20), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g5_s0_lives2_dlg0[] = { /* 0x8222ec4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x01, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g5_s0_lives3_dlg0[] = { /* 0x8222fb4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x0a, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g5_s0_lives4_dlg0[] = { /* 0x8223084 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(3), + { 0x89, 0x08, 0x0100, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(7), + { 0x91, 0x01, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g5_s0_lives5_dlg0[] = { /* 0x82231b4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(3), + { 0x89, 0x08, 0x0100, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(7), + { 0x91, 0x01, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(3), + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g5_s0_lives6_dlg0[] = { /* 0x82232e4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(8), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x89, 0x08, 0x0100, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x01, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g5_s0_lives7_dlg0[] = { /* 0x82233f4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(8), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(8), + { 0x89, 0x08, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x91, 0x01, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g5_s0_lives8_dlg0[] = { /* 0x8223504 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + WAIT(1), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + WAIT(3), + { 0x89, 0x08, 0x0100, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + WAIT(3), + { 0x91, 0x01, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + WAIT(8), + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g5_s0_lives9_dlg0[] = { /* 0x8223604 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x89, 0x08, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x01, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + WAIT(11), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g5_s0_lives10_dlg0[] = { /* 0x82236e4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + WAIT(5), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + WAIT(7), + { 0x89, 0x08, 0x0100, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x91, 0x01, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + WAIT(7), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g5_s0_lives11_dlg0[] = { /* 0x82237e4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + WAIT(8), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x89, 0x08, 0x0100, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x91, 0x01, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + WAIT(12), + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g5_s0_lives12_dlg0[] = { /* 0x82238e4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + WAIT(3), + { 0x89, 0x08, 0x0100, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x91, 0x01, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + WAIT(9), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g5_s0_lives13_dlg0[] = { /* 0x82239c4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT(2), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x89, 0x08, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x01, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT(9), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g5_s0_lives14_dlg0[] = { /* 0x8223ac4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x89, 0x08, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(3), + { 0x91, 0x01, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g6_s0_station_sref_script[] = { /* 0x8223bb4 */ + DEBUGINFO, + SELECT_MAP(171), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(41), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs171_g6_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs171_g6_s0_station_sref_script }; /* 0x8223c34 */ + +static const struct ScriptCommand s_gs171_g6_s0_eff0_script[] = { /* 0x8223c40 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x50, 0x0080, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x28, 0x0080, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x18, 0x0099, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0xa0, 0x004c, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs171_g6_s0_lives0_dlg0[] = { /* 0x8223d40 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000058, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0007, 0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" Yippee!\nThis is the greatest!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2d, 0x09, 0x0009, 0x00000059, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" This calls for a celebration!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2d, 0x09, 0x0009, 0x00000068, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Let me shoot my Hydro\nPump to kick it off!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0004, -0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Whoa, hold on there!\nDon't you point those things at me!#W\nFace the other way! The other way!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2d, 0x09, 0x0009, 0x00000055, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x05, 0x0009, 0x00000042, 0x00000000, NULL }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" No, no!\nLet it loose! Hahaha!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(2), + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(80), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Y-you've gotta be kidding\nme!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(2), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(120), + { 0x2e, 0x0c, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" I'll secure him so he can't\nget away.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0009, 0x00000059, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Oh?#W Not bad!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(2), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CLEAR_ARRAY(EVENT_LOCAL), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(150), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" What, you're serious?!\nNooooo! Don't!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + CALL_LABEL(2), + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Ahahahahaha!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" $n0...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(180), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + CLEAR_ARRAY(EVENT_LOCAL), + CALL_LABEL(2), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_RIGHT_FUNC), + WAIT(60), + FANFARE_PLAY2(477), + SELECT_LIVES(-1, 1), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(............#W\n$n5...)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + BGM_SWITCH(42), + { 0x2e, 0x03, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" We owe everything to you,\n$n0, and your friends.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Peace has returned to\nour world.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Thank you for everything.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" And now...#W\n$n0, your role here has ended.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Soon, you must return to\nyour own world.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" It is time to bid farewell.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(It's finally come...#W\nThis time has finally arrived...)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" $n0...#W\nI am so sorry for this...#W\nTo everyone...#W Please bid farewell...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + WAIT(120), + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Oh? $n0?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(2), + WAIT(45), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0001, 0x00000000, 0x00000003, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...!#W $n0...!#W\nYour body...#W What's happening?")), + VARIANT_DEFAULT(_(" ...!#W $n0...!#W\nYour body...#W What's happening to you?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(30), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("$n1...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x0a, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x0a, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(30), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("And, everyone...#W I'm sorry.#W\nBut I have to leave.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(465), + CALL_LABEL(2), + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0007, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" What?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0009, 0x0000004f, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0009, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Wh-what are you saying?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Everyone...#W\nThank you for everything all this time.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...Huh?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...#WLeave...?#W\nWhat do you mean, leave?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("My role as a Pokémon has ended.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I have to return to the human world.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Unbelievable!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2d, 0x09, 0x0009, 0x0000005a, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0009, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Go back...#W\nTo the human world?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh? W-why...?#W\nWhy?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I don't understand!\nWhy do you have to leave?!") }, + { 0x2e, 0x15, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Didn't we...#W\nAren't we friends?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Yes.#W\nYou will always be my friend,\n$n1.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I will never forget you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000008, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Wait, $n0......")), + VARIANT_DEFAULT(_(" Don't go, $n0......")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I'm blessed to have met you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I...\nWhat am I going to do when you're\ngone, $n0?")), + VARIANT(/* == */ 3, _(" I...\nWhat am I going to do when you're\ngone, $n0?")), + VARIANT_DEFAULT(_(" I...\nWhat am I going to do when you're\ngone, $n0?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I'm so very sorry.\nThis is good-bye...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(60), + CALL_LABEL(2), + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2b, 0x00, 0x0000, 0x0000003c, 0x0000003c, NULL }, + { 0x2d, 0x09, 0x0009, 0x0000004e, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0009, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" $n0!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0009, 0x00000059, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0009, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" $n0!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0009, 0x0000004f, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0009, 0x00000041, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0009, -0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" $n0!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0006, 0x00000042, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0006, -0x00000001, 0x00000002, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" $n0...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x0000, -0x000000c8, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2b, 0x00, 0x0000, 0x000000b4, 0x000000b4, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0!!! Nooooo!!!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, + LABEL(2), /* = 0x02 */ + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, + HALT, +}; + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs171_g6_s0_lives1_dlg0[] = { /* 0x8225528 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x6b, 0x00, 0x00b3, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0080, 0x00000000, 0x00000008, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0033, 0x00000000, 0x0000000a, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(110), + { 0x91, 0x0c, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(40), + { 0x89, 0x50, 0x004c, 0x00000004, 0x00000000, NULL }, + WAIT(10), + { 0x89, 0x28, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g6_s0_lives2_dlg0[] = { /* 0x8225728 */ + DEBUGINFO, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x00b3, 0x00000001, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(30), + LABEL(0), /* = 0x00 */ + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(90), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + CALL_SCRIPT(SMILE_END_FUNC), + WAIT(90), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + WAIT(1), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x6a, 0x00, 0x0100, 0x00000000, 0x00000008, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(170), + { 0x91, 0x0c, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(25), + { 0x6a, 0x00, 0x0080, 0x00000010, -0x00000010, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g6_s0_lives3_dlg0[] = { /* 0x8225a58 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0080, 0x00000000, 0x0000000c, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(260), + { 0x91, 0x0c, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g6_s0_lives4_dlg0[] = { /* 0x8225b08 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000047, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x7e, 0x00, 0x004c, 0x00000000, -0x00000028, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000047, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + LABEL(0), /* = 0x00 */ + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT(10), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + WAIT(30), + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(10), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(30), + LABEL(2), /* = 0x02 */ + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + WAIT(60), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 3), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + WAIT(50), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(50), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + WAIT(1), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x6a, 0x00, 0x0100, 0x00000000, 0x0000000a, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(170), + { 0x91, 0x0c, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6a, 0x00, 0x00b3, 0x00000000, -0x00000010, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g6_s0_lives5_dlg0[] = { /* 0x8225f38 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(7), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x00b3, 0x00000002, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x000a, 0x00000001, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x6a, 0x00, 0x00cc, 0x00000000, 0x0000000a, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0x91, 0x0c, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x6a, 0x00, 0x00b3, 0x00000000, -0x00000010, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g6_s0_lives6_dlg0[] = { /* 0x8226168 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6b, 0x00, 0x00b3, 0x00000004, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(3), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(8), + { 0x6a, 0x00, 0x0100, 0x00000000, 0x00000008, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(190), + { 0x91, 0x0c, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x6a, 0x00, 0x004c, 0x00000000, -0x00000010, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g6_s0_lives7_dlg0[] = { /* 0x82263c8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(35), + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000040, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000010, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0x54, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(15), + LABEL(0), /* = 0x00 */ + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + CALL_SCRIPT(SMILE_END_FUNC), + WAIT(60), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + WAIT(1), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x6a, 0x00, 0x00b3, 0x00000000, 0x00000006, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(200), + { 0x91, 0x0c, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x6a, 0x00, 0x004c, 0x00000000, -0x00000010, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g6_s0_lives8_dlg0[] = { /* 0x82266e8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + WAIT(40), + { 0x6b, 0x00, 0x00b3, 0x00000006, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + WAIT(45), + LABEL(0), /* = 0x00 */ + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(90), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + CALL_SCRIPT(SMILE_END_FUNC), + WAIT(90), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + WAIT(1), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x6a, 0x00, 0x0100, 0x00000000, 0x00000008, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + WAIT(170), + { 0x91, 0x0c, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + WAIT(40), + { 0x6a, 0x00, 0x00b3, 0x00000000, -0x00000010, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g6_s0_lives9_dlg0[] = { /* 0x8226a08 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + WAIT(40), + { 0x6b, 0x00, 0x00b3, 0x00000007, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + WAIT(3), + { 0x6a, 0x00, 0x0100, 0x00000000, 0x00000008, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0x91, 0x0c, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + WAIT(40), + { 0x6a, 0x00, 0x00b3, 0x00000000, -0x00000010, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g6_s0_lives10_dlg0[] = { /* 0x8226c68 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + WAIT(8), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + WAIT(40), + { 0x6b, 0x00, 0x00b3, 0x0000000a, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + WAIT(7), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, 0x00000008, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0x91, 0x0c, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + WAIT(55), + { 0x6a, 0x00, 0x0066, 0x00000000, -0x00000010, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g6_s0_lives11_dlg0[] = { /* 0x8226e68 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + WAIT(7), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x6b, 0x00, 0x00b3, 0x00000003, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + WAIT(7), + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x6a, 0x00, 0x0100, 0x00000000, 0x00000008, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + WAIT(170), + { 0x91, 0x0c, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + WAIT(40), + { 0x6a, 0x00, 0x0080, 0x00000000, -0x00000010, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g6_s0_lives12_dlg0[] = { /* 0x8227098 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + WAIT(35), + { 0x6b, 0x00, 0x00b3, 0x00000005, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe3, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x6a, 0x00, 0x00b3, 0x00000000, 0x00000006, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + WAIT(210), + { 0x91, 0x0c, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + WAIT(25), + { 0x6a, 0x00, 0x00b3, 0x00000000, -0x00000010, NULL }, + { 0xe3, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g6_s0_lives13_dlg0[] = { /* 0x82272c8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT(7), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x6b, 0x00, 0x00b3, 0x00000008, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + WAIT(20), + LABEL(0), /* = 0x00 */ + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(90), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + CALL_SCRIPT(SMILE_END_FUNC), + WAIT(90), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + WAIT(1), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, 0x0000000c, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0x91, 0x0c, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT(50), + { 0x6a, 0x00, 0x0066, 0x00000000, -0x00000010, NULL }, + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g6_s0_lives14_dlg0[] = { /* 0x82275c8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT(40), + { 0x6b, 0x00, 0x00b3, 0x00000009, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + WAIT(20), + LABEL(0), /* = 0x00 */ + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(90), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + CALL_SCRIPT(SMILE_END_FUNC), + WAIT(90), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + WAIT(1), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT(7), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x6a, 0x00, 0x0100, 0x00000000, 0x00000008, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT(130), + { 0x91, 0x0c, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x6a, 0x00, 0x00b3, 0x00000000, -0x00000010, NULL }, + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g6_s0_eff1_script[] = { /* 0x82278c8 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x000000a7, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0000, 0x000000a8, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0000, 0x000000a9, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0000, 0x000000aa, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + WAIT(1), + FANFARE_PLAY2(511), + { 0x56, 0x00, 0x0003, 0x0000016c, 0x00000000, NULL }, + { 0x59, 0x00, 0x0000, 0x00000003, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0003, 0x0000016d, 0x00000000, NULL }, + WAIT(120), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0066, 0x00000000, -0x00000080, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT(160), + { 0x56, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0003, 0x0000016e, 0x00000000, NULL }, + FANFARE_PLAY2(514), + WAIT(160), + { 0x56, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0003, 0x0000016f, 0x00000000, NULL }, + WAIT(60), + { 0x89, 0x90, 0x0099, 0x00000004, 0x00000000, NULL }, + FANFARE_FADEOUT2(180, 514), + { 0x56, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g6_s1_lives0_dlg0[] = { /* 0x8227d08 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x54, 0x00, 0x001f, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0018, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs171_g7_s0_station_sref_script[] = { /* 0x8227eb8 */ + DEBUGINFO, + BGM_FADEOUT(240), + WAIT(180), + SELECT_MAP(171), + SELECT_ENTITIES(-1, 0), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs171_g7_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs171_g7_s0_station_sref_script }; /* 0x8227f48 */ + +static const struct ScriptCommand s_gs171_g7_s0_lives0_dlg0[] = { /* 0x8227f54 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000058, 0x00000000, NULL }, + WAIT(90), + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0x2b, 0x00, 0x0000, -0x00000001, -0x00000001, NULL }, + { 0x2e, 0x02, 0x0006, 0x00000042, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Snivel... $n0...#W\nWhy...#W I don't understand...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2d, 0x09, 0x0009, 0x00000059, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0009, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Why?#W\nWhy was it necessary to leave us...?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2d, 0x09, 0x0009, 0x00000055, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0009, 0x00000043, 0x00000000, NULL }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" $n0 saved my\nlife...") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" But I hadn't done anything\nto show my thanks...") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Left...#W\nBefore I could even say thanks...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0e, 0x0004, 0x00000043, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0004, -0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You're right...") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Just upped and went like\nthat...") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Why now?\nWhy when the world's been saved?") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Just when things were\ngoing to get better...#W Sob...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" This was coming...#W\nOur world, it was saved by $n0.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I look back now...#W\nWhen bound for the sky, $n0\nseemed...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" As if resigned.\nResigned to accept what was to come.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............#W\nI think I know...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + CALL_LABEL(1), + WAIT(60), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I think I understand now...")), + VARIANT(/* == */ 1, _(" $n0 became\na Pokémon to save us...")), + VARIANT(/* == */ 3, _(" $n0 must have...")), + VARIANT(/* == */ 3, _(" $n0 must have\nbecome a Pokémon to save us.")), + VARIANT_DEFAULT(_(" $n0 must have...")), + VARIANT_DEFAULT(_(" $n0 must have\nbecome a Pokémon to save us.")), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And when...#W\nWhen the star was destroyed...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0 knew that\nwould be the time to leave...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000008, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Why...#W\nWhy didn't $n0 tell me earlier...?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If this was coming...#W\nWhy didn't $n0 tell me?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Those words couldn't be\nspoken.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" As much as you are heart-\nbroken now...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n0 must have felt\nthe same pain of leaving.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Try to understand,\n$n1.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sob...#W\n$n0...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, + LABEL(1), /* = 0x01 */ + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, + HALT, +}; + + + + +static const struct ScriptCommand s_gs171_g7_s0_lives1_dlg0[] = { /* 0x8228974 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x002d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g7_s0_lives2_dlg0[] = { /* 0x8228a14 */ + DEBUGINFO, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 15), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g7_s0_lives3_dlg0[] = { /* 0x8228ab4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0080, 0x00000000, 0x00000008, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 15), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g7_s0_lives4_dlg0[] = { /* 0x8228b64 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 15), + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g7_s0_lives5_dlg0[] = { /* 0x8228be4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 15), + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g7_s0_lives6_dlg0[] = { /* 0x8228c64 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 15), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g7_s0_lives7_dlg0[] = { /* 0x8228ce4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 15), + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g7_s0_lives8_dlg0[] = { /* 0x8228d64 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 15), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g7_s0_lives9_dlg0[] = { /* 0x8228dd4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 15), + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g7_s0_lives10_dlg0[] = { /* 0x8228e44 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 15), + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g7_s0_lives11_dlg0[] = { /* 0x8228eb4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 15), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g7_s0_lives12_dlg0[] = { /* 0x8228f24 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 15), + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g7_s0_lives13_dlg0[] = { /* 0x8228f94 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 15), + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs171_g7_s0_lives14_dlg0[] = { /* 0x8229004 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 15), + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs171_g1_s0_lives[] = { /* 0x8229074 */ + /* 0 */ { 97, 4, 0, 0, { 20, 36, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g1_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs171_g2_s0_lives[] = { /* 0x822908c */ + /* 0 */ { 97, 4, 0, 0, { 20, 36, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g2_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs171_g3_s0_lives[] = { /* 0x82290a4 */ + /* 0 */ { 0, 4, 0, 0, { 23, 51, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g3_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 17, 51, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g3_s0_lives1_dlg0, + } }, + /* 2 */ { 88, 4, 0, 0, { 17, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g3_s0_lives2_dlg0, + } }, + /* 3 */ { 97, 4, 0, 0, { 20, 33, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g3_s0_lives3_dlg0, + } }, + /* 4 */ { 10, 4, 0, 0, { 20, 55, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g3_s0_lives4_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs171_g4_s0_lives[] = { /* 0x822911c */ + /* 0 */ { 0, 5, 0, 0, { 23, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g4_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 17, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g4_s0_lives1_dlg0, + } }, + /* 2 */ { 88, 0, 0, 0, { 17, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g4_s0_lives2_dlg0, + } }, + /* 3 */ { 97, 0, 0, 0, { 20, 33, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g4_s0_lives3_dlg0, + } }, + /* 4 */ { 10, 4, 0, 0, { 20, 42, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g4_s0_lives4_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs171_g5_s0_lives[] = { /* 0x8229194 */ + /* 0 */ { 0, 4, 0, 0, { 18, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g5_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 22, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g5_s0_lives1_dlg0, + } }, + /* 2 */ { 88, 0, 0, 0, { 20, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g5_s0_lives2_dlg0, + } }, + /* 3 */ { 97, 4, 0, 0, { 20, 33, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g5_s0_lives3_dlg0, + } }, + /* 4 */ { 77, 1, 0, 0, { 15, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g5_s0_lives4_dlg0, + } }, + /* 5 */ { 54, 3, 0, 0, { 14, 46, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g5_s0_lives5_dlg0, + } }, + /* 6 */ { 80, 7, 0, 0, { 25, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g5_s0_lives6_dlg0, + } }, + /* 7 */ { 105, 2, 0, 0, { 12, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g5_s0_lives7_dlg0, + } }, + /* 8 */ { 89, 6, 0, 0, { 28, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g5_s0_lives8_dlg0, + } }, + /* 9 */ { 85, 4, 0, 0, { 20, 48, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g5_s0_lives9_dlg0, + } }, + /* 10 */ { 104, 5, 0, 0, { 26, 47, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g5_s0_lives10_dlg0, + } }, + /* 11 */ { 90, 3, 0, 0, { 12, 47, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g5_s0_lives11_dlg0, + } }, + /* 12 */ { 79, 7, 0, 0, { 28, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g5_s0_lives12_dlg0, + } }, + /* 13 */ { 78, 4, 0, 0, { 17, 49, 0, 0 }, { + [0] = s_gs171_g5_s0_lives13_dlg0, + } }, + /* 14 */ { 95, 4, 0, 0, { 23, 49, 0, 0 }, { + [0] = s_gs171_g5_s0_lives14_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs171_g6_s0_lives[] = { /* 0x82292fc */ + /* 0 */ { 0, 2, 0, 0, { 18, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g6_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 6, 0, 0, { 22, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g6_s0_lives1_dlg0, + } }, + /* 2 */ { 88, 0, 0, 0, { 20, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g6_s0_lives2_dlg0, + } }, + /* 3 */ { 97, 0, 0, 0, { 20, 33, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g6_s0_lives3_dlg0, + } }, + /* 4 */ { 77, 1, 0, 0, { 16, 42, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g6_s0_lives4_dlg0, + } }, + /* 5 */ { 54, 3, 0, 0, { 15, 45, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g6_s0_lives5_dlg0, + } }, + /* 6 */ { 80, 7, 0, 0, { 24, 42, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g6_s0_lives6_dlg0, + } }, + /* 7 */ { 105, 2, 0, 0, { 13, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g6_s0_lives7_dlg0, + } }, + /* 8 */ { 89, 6, 0, 0, { 27, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g6_s0_lives8_dlg0, + } }, + /* 9 */ { 104, 5, 0, 0, { 25, 46, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g6_s0_lives9_dlg0, + } }, + /* 10 */ { 85, 4, 0, 0, { 20, 47, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g6_s0_lives10_dlg0, + } }, + /* 11 */ { 90, 3, 0, 0, { 13, 46, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g6_s0_lives11_dlg0, + } }, + /* 12 */ { 79, 7, 0, 0, { 27, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g6_s0_lives12_dlg0, + } }, + /* 13 */ { 78, 4, 0, 0, { 17, 48, 0, 0 }, { + [0] = s_gs171_g6_s0_lives13_dlg0, + } }, + /* 14 */ { 95, 4, 0, 0, { 23, 48, 0, 0 }, { + [0] = s_gs171_g6_s0_lives14_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs171_g6_s1_lives[] = { /* 0x8229464 */ + /* 0 */ { 82, 6, 0, 0, { 22, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g6_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs171_g7_s0_lives[] = { /* 0x822947c */ + /* 0 */ { 0, 4, 0, 0, { 20, 5, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g7_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 20, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g7_s0_lives1_dlg0, + } }, + /* 2 */ { 88, 0, 0, 0, { 23, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g7_s0_lives2_dlg0, + } }, + /* 3 */ { 97, 0, 0, 0, { 20, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g7_s0_lives3_dlg0, + } }, + /* 4 */ { 77, 1, 0, 0, { 16, 39, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g7_s0_lives4_dlg0, + } }, + /* 5 */ { 54, 3, 0, 0, { 14, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g7_s0_lives5_dlg0, + } }, + /* 6 */ { 80, 1, 0, 0, { 28, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g7_s0_lives6_dlg0, + } }, + /* 7 */ { 105, 6, 0, 0, { 10, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g7_s0_lives7_dlg0, + } }, + /* 8 */ { 89, 6, 0, 0, { 25, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g7_s0_lives8_dlg0, + } }, + /* 9 */ { 104, 5, 0, 0, { 15, 45, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g7_s0_lives9_dlg0, + } }, + /* 10 */ { 85, 4, 0, 0, { 15, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g7_s0_lives10_dlg0, + } }, + /* 11 */ { 90, 3, 0, 0, { 24, 45, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g7_s0_lives11_dlg0, + } }, + /* 12 */ { 79, 7, 0, 0, { 29, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs171_g7_s0_lives12_dlg0, + } }, + /* 13 */ { 78, 3, 0, 0, { 10, 39, 0, 0 }, { + [0] = s_gs171_g7_s0_lives13_dlg0, + } }, + /* 14 */ { 95, 7, 0, 0, { 12, 37, 0, 0 }, { + [0] = s_gs171_g7_s0_lives14_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs171_g1_s0_effs[] = { /* 0x82295e4 */ + /* 0 */ { 0, 0, 1, 1, { 20, 34, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs171_g1_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs171_g2_s0_effs[] = { /* 0x82295f0 */ + /* 0 */ { 0, 0, 1, 1, { 20, 34, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs171_g2_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs171_g3_s0_effs[] = { /* 0x82295fc */ + /* 0 */ { 0, 0, 1, 1, { 20, 35, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, + /* 1 */ { 4, 0, 1, 1, { 20, 30, 0, 0 }, s_gs171_g3_s0_eff1_script }, +}; + +static const struct GroundEffectData s_gs171_g4_s0_effs[] = { /* 0x8229614 */ + /* 0 */ { 0, 0, 1, 1, { 20, 35, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, + /* 1 */ { 5, 0, 1, 1, { 21, 38, 0, 0 }, s_gs171_g4_s0_eff1_script }, + /* 2 */ { 4, 0, 1, 1, { 23, 38, 0, CPOS_HALFTILE }, s_gs171_g4_s0_eff2_script }, + /* 3 */ { 4, 0, 1, 1, { 19, 38, 0, CPOS_HALFTILE }, s_gs171_g4_s0_eff3_script }, + /* 4 */ { 4, 0, 1, 1, { 21, 40, 0, CPOS_HALFTILE }, s_gs171_g4_s0_eff4_script }, +}; + +static const struct GroundEffectData s_gs171_g5_s0_effs[] = { /* 0x8229650 */ + /* 0 */ { 0, 0, 1, 1, { 20, 47, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs171_g5_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs171_g6_s0_effs[] = { /* 0x822965c */ + /* 0 */ { 0, 0, 1, 1, { 20, 46, CPOS_HALFTILE, 0 }, s_gs171_g6_s0_eff0_script }, + /* 1 */ { 4, 0, 1, 1, { 18, 44, 0, CPOS_HALFTILE }, s_gs171_g6_s0_eff1_script }, +}; + +static const struct GroundEffectData s_gs171_g7_s0_effs[] = { /* 0x8229674 */ + /* 0 */ { 0, 0, 1, 1, { 20, 42, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8229680 */ + &s_gs171_g0_s0_station_sref, + &s_gs171_g1_s0_station_sref, + &s_gs171_g2_s0_station_sref, + &s_gs171_g3_s0_station_sref, + &s_gs171_g4_s0_station_sref, + &s_gs171_g5_s0_station_sref, + &s_gs171_g6_s0_station_sref, + &s_gs171_g7_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs171_g0_sectors[] = { /* 0x82296a0 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs171_g1_sectors[] = { /* 0x82296c8 */ + { LPARRAY(s_gs171_g1_s0_lives), 0,NULL, LPARRAY(s_gs171_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs171_g2_sectors[] = { /* 0x82296f0 */ + { LPARRAY(s_gs171_g2_s0_lives), 0,NULL, LPARRAY(s_gs171_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptSector s_gs171_g3_sectors[] = { /* 0x8229718 */ + { LPARRAY(s_gs171_g3_s0_lives), 0,NULL, LPARRAY(s_gs171_g3_s0_effs), 0,NULL, 1,&sStationScripts[3], }, +}; + +static const struct GroundScriptSector s_gs171_g4_sectors[] = { /* 0x8229740 */ + { LPARRAY(s_gs171_g4_s0_lives), 0,NULL, LPARRAY(s_gs171_g4_s0_effs), 0,NULL, 1,&sStationScripts[4], }, +}; + +static const struct GroundScriptSector s_gs171_g5_sectors[] = { /* 0x8229768 */ + { LPARRAY(s_gs171_g5_s0_lives), 0,NULL, LPARRAY(s_gs171_g5_s0_effs), 0,NULL, 1,&sStationScripts[5], }, +}; + +static const struct GroundScriptSector s_gs171_g6_sectors[] = { /* 0x8229790 */ + { LPARRAY(s_gs171_g6_s0_lives), 0,NULL, LPARRAY(s_gs171_g6_s0_effs), 0,NULL, 1,&sStationScripts[6], }, + { LPARRAY(s_gs171_g6_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs171_g7_sectors[] = { /* 0x82297e0 */ + { LPARRAY(s_gs171_g7_s0_lives), 0,NULL, LPARRAY(s_gs171_g7_s0_effs), 0,NULL, 1,&sStationScripts[7], }, +}; + +static const struct GroundScriptGroup s_gs171_groups[] = { /* 0x8229808 */ + { LPARRAY(s_gs171_g0_sectors) }, + { LPARRAY(s_gs171_g1_sectors) }, + { LPARRAY(s_gs171_g2_sectors) }, + { LPARRAY(s_gs171_g3_sectors) }, + { LPARRAY(s_gs171_g4_sectors) }, + { LPARRAY(s_gs171_g5_sectors) }, + { LPARRAY(s_gs171_g6_sectors) }, + { LPARRAY(s_gs171_g7_sectors) }, +}; + +static const struct GroundLink s_gs171_links[] = { /* 0x8229848 */ + /* link 0 */ { { /*x*/ 18, /*y*/ 39, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 18, /*y*/ 37, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 2 */ { { /*x*/ 15, /*y*/ 39, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 3 */ { { /*x*/ 13, /*y*/ 37, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 4 */ { { /*x*/ 20, /*y*/ 36, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 5 */ { { /*x*/ 22, /*y*/ 35, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 6 */ { { /*x*/ 22, /*y*/ 37, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 7 */ { { /*x*/ 21, /*y*/ 39, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 8 */ { { /*x*/ 13, /*y*/ 39, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 9 */ { { /*x*/ 24, /*y*/ 38, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 10 */ { { /*x*/ 22, /*y*/ 40, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs171 = { LPARRAY(s_gs171_groups), s_gs171_links }; /* 0x82298a0 */ diff --git a/src/data/ground/ground_data_a04p02_station.h b/src/data/ground/ground_data_a04p02_station.h new file mode 100644 index 000000000..f1844e489 --- /dev/null +++ b/src/data/ground/ground_data_a04p02_station.h @@ -0,0 +1,73 @@ + + + + + + + + +static const struct ScriptCommand s_gs172_g0_s0_station_sref_script[] = { /* 0x82298b4 */ + DEBUGINFO, + SELECT_MAP(172), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs172_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs172_g0_s0_station_sref_script }; /* 0x8229920 */ + +static const struct ScriptCommand s_gs172_g1_s0_station_sref_script[] = { /* 0x822992c */ + DEBUGINFO, + SELECT_MAP(172), + SELECT_ENTITIES(-1, 0), + { 0x2d, 0x09, 0x0000, 0x00000022, 0x00000000, NULL }, + BGM_SWITCH(22), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" It's a huge tower of\nclouds...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs172_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs172_g1_s0_station_sref_script }; /* 0x8229a20 */ + + +static const struct ScriptCommand s_gs172_g1_s0_eff0_script[] = { /* 0x8229a2c */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0xe0, 0x004c, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundEffectData s_gs172_g1_s0_effs[] = { /* 0x8229a9c */ + /* 0 */ { 0, 0, 1, 1, { 18, 19, 0, CPOS_HALFTILE }, s_gs172_g1_s0_eff0_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8229aa8 */ + &s_gs172_g0_s0_station_sref, + &s_gs172_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs172_g0_sectors[] = { /* 0x8229ab0 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs172_g1_sectors[] = { /* 0x8229ad8 */ + { 0,NULL, 0,NULL, LPARRAY(s_gs172_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs172_groups[] = { /* 0x8229b00 */ + { LPARRAY(s_gs172_g0_sectors) }, + { LPARRAY(s_gs172_g1_sectors) }, +}; + +static const struct GroundLink s_gs172_links[] = { /* 0x8229b10 */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs172 = { LPARRAY(s_gs172_groups), s_gs172_links }; /* 0x8229b18 */ diff --git a/src/data/ground/ground_data_a04p03_station.h b/src/data/ground/ground_data_a04p03_station.h new file mode 100644 index 000000000..dc149e2d6 --- /dev/null +++ b/src/data/ground/ground_data_a04p03_station.h @@ -0,0 +1,161 @@ + + + + + + + + + +static const struct ScriptCommand s_gs173_g0_s0_station_sref_script[] = { /* 0x8229b2c */ + DEBUGINFO, + SELECT_MAP(173), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs173_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs173_g0_s0_station_sref_script }; /* 0x8229b98 */ + +static const struct ScriptCommand s_gs173_g1_s0_station_sref_script[] = { /* 0x8229ba4 */ + DEBUGINFO, + SELECT_MAP(173), + SELECT_ENTITIES(-1, -1), + WAIT(60), + { 0x97, 0x00, 0x0002, 0x00000001, 0x00000001, NULL }, + BGM_SWITCH(19), + FANFARE_PLAY2(508), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + WAIT(240), + FANFARE_FADEOUT2(60, 508), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + WAIT(60), + RET, +}; + +static const struct ScriptRef s_gs173_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs173_g1_s0_station_sref_script }; /* 0x8229c74 */ + +static const struct ScriptCommand s_gs173_g1_s0_eff0_script[] = { /* 0x8229c80 */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x6b, 0x00, 0x00b3, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs173_g2_s0_station_sref_script[] = { /* 0x8229cd0 */ + DEBUGINFO, + SELECT_MAP(173), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(26), + FANFARE_PLAY2(508), + { 0x97, 0x00, 0x0002, 0x00000001, 0x00000001, NULL }, + { 0x22, 0x01, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(210), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + FANFARE_FADEOUT2(30, 508), + RET, +}; + +static const struct ScriptRef s_gs173_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs173_g2_s0_station_sref_script }; /* 0x8229d90 */ + +static const struct ScriptCommand s_gs173_g2_s0_eff0_script[] = { /* 0x8229d9c */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x30, 0x0300, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs173_g3_s0_station_sref_script[] = { /* 0x8229e1c */ + DEBUGINFO, + SELECT_MAP(173), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(26), + { 0x97, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x27, 0x00, 0x0005, 0x00000010, 0x00ffffff, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0x28, 0x01, 0x0005, 0x00000008, 0x00ffffff, NULL }, + WAIT(5), + { 0x27, 0x00, 0x0005, 0x00000008, 0x00ffffff, NULL }, + WAIT(20), + { 0x28, 0x01, 0x0005, 0x00000008, 0x00ffffff, NULL }, + WAIT(5), + { 0x27, 0x00, 0x0005, 0x00000008, 0x00ffffff, NULL }, + WAIT(30), + { 0x28, 0x01, 0x0005, 0x0000002d, 0x00ffffff, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs173_g3_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs173_g3_s0_station_sref_script }; /* 0x8229f4c */ + +static const struct ScriptCommand s_gs173_g3_s0_eff0_script[] = { /* 0x8229f58 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x18, 0x0400, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs173_g3_s0_eff1_script[] = { /* 0x8229fd8 */ + DEBUGINFO, + { 0x56, 0x00, 0x0000, 0x00000135, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundEffectData s_gs173_g1_s0_effs[] = { /* 0x822a008 */ + /* 0 */ { 0, 0, 1, 1, { 17, 41, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs173_g1_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs173_g2_s0_effs[] = { /* 0x822a014 */ + /* 0 */ { 0, 0, 1, 1, { 17, 41, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs173_g2_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs173_g3_s0_effs[] = { /* 0x822a020 */ + /* 0 */ { 0, 0, 1, 1, { 17, 36, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs173_g3_s0_eff0_script }, + /* 1 */ { 3, 0, 1, 1, { 18, 33, 0, CPOS_HALFTILE }, s_gs173_g3_s0_eff1_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x822a038 */ + &s_gs173_g0_s0_station_sref, + &s_gs173_g1_s0_station_sref, + &s_gs173_g2_s0_station_sref, + &s_gs173_g3_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs173_g0_sectors[] = { /* 0x822a048 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs173_g1_sectors[] = { /* 0x822a070 */ + { 0,NULL, 0,NULL, LPARRAY(s_gs173_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs173_g2_sectors[] = { /* 0x822a098 */ + { 0,NULL, 0,NULL, LPARRAY(s_gs173_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptSector s_gs173_g3_sectors[] = { /* 0x822a0c0 */ + { 0,NULL, 0,NULL, LPARRAY(s_gs173_g3_s0_effs), 0,NULL, 1,&sStationScripts[3], }, +}; + +static const struct GroundScriptGroup s_gs173_groups[] = { /* 0x822a0e8 */ + { LPARRAY(s_gs173_g0_sectors) }, + { LPARRAY(s_gs173_g1_sectors) }, + { LPARRAY(s_gs173_g2_sectors) }, + { LPARRAY(s_gs173_g3_sectors) }, +}; + +static const struct GroundLink s_gs173_links[] = { /* 0x822a108 */ + /* link 0 */ { { /*x*/ 18, /*y*/ 6, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs173 = { LPARRAY(s_gs173_groups), s_gs173_links }; /* 0x822a110 */ diff --git a/src/data/ground/ground_data_a04p04_station.h b/src/data/ground/ground_data_a04p04_station.h new file mode 100644 index 000000000..545f38a0f --- /dev/null +++ b/src/data/ground/ground_data_a04p04_station.h @@ -0,0 +1,220 @@ + + + + + + + + +static const struct ScriptCommand s_gs174_g0_s0_station_sref_script[] = { /* 0x822a124 */ + DEBUGINFO, + SELECT_MAP(174), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs174_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs174_g0_s0_station_sref_script }; /* 0x822a190 */ + +static const struct ScriptCommand s_gs174_g1_s0_station_sref_script[] = { /* 0x822a19c */ + DEBUGINFO, + { 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(174), + SELECT_ENTITIES(-1, -1), + BGM_STOP, + { 0x27, 0x01, 0x0005, 0x0000003c, 0x00ffffff, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(150), + { 0x28, 0x01, 0x0005, 0x0000003c, 0x00ffffff, NULL }, + WAIT(180), + RET, +}; + +static const struct ScriptRef s_gs174_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs174_g1_s0_station_sref_script }; /* 0x822a24c */ + +static const struct ScriptCommand s_gs174_g1_s0_lives0_dlg0[] = { /* 0x822a258 */ + DEBUGINFO, + { 0x54, 0x00, 0x0034, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEIN(30, 37), + WAIT(60), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("........................") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...Is this...\na dream...?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("........................") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("No...#W\nThis is no dream...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Yes...#W\nThe star's explosion swallowed me...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("And I'm now adrift...#W\nas a spirit...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("..................") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("What's going to happen...?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(485), + { 0x28, 0x01, 0x0005, 0x0000003c, 0x00ffffff, NULL }, + WAIT(30), + SELECT_LIVES(-1, 1), + { 0x27, 0x01, 0x0005, 0x0000003c, 0x00ffffff, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(............)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...This shadow...#W\n$n4...)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Keke! $n0!#W\nDidn't take much to put you down!#W\nServes you right!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Kekeke!\nNow, what to do with you?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0004, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I know!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I'll drag you into the dark\nworld. That'll do it.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0033, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x36, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0000, 0x00000005, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(............)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Gengar is dragging me...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...#WGengar said...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(He would drag me into the dark\nworld...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(What is the dark world...?)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Am I going to be abandoned in a world\nI don't know?)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0x2e, 0x14, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ......") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ............") }, + { 0x3b, 0x36, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0034, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0004, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ..................#WHunh?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Darn it...\nI took the wrong path...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(......What?)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" This isn't like me...#W\nI can't tell which way is which...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0f, 0x0004, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Keh! To heck with this.#W\nI'll just ditch you here...") }, + { 0x2e, 0x15, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" That's it. Good-bye to you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + +static const struct ScriptCommand s_gs174_g1_s1_lives0_dlg0[] = { /* 0x822abd8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0080, 0x00000010, 0x00000020, NULL }, + { 0x91, 0x08, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(60), + { 0x91, 0x0a, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(45), + { 0x54, 0x00, 0x001f, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x06, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x06, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x06, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x06, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x06, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x06, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(60), + { 0x89, 0x10, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x50, 0x0099, 0x00000002, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs174_g1_s0_lives[] = { /* 0x822ae98 */ + /* 0 */ { 0, 4, 0, 0, { 20, 11, 0, CPOS_HALFTILE }, { + [0] = s_gs174_g1_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs174_g1_s1_lives[] = { /* 0x822aeb0 */ + /* 0 */ { 91, 0, 0, 0, { 20, 7, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs174_g1_s1_lives0_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs174_g1_s0_effs[] = { /* 0x822aec8 */ + /* 0 */ { 0, 0, 1, 1, { 20, 12, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x822aed4 */ + &s_gs174_g0_s0_station_sref, + &s_gs174_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs174_g0_sectors[] = { /* 0x822aedc */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs174_g1_sectors[] = { /* 0x822af04 */ + { LPARRAY(s_gs174_g1_s0_lives), 0,NULL, LPARRAY(s_gs174_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, + { LPARRAY(s_gs174_g1_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs174_groups[] = { /* 0x822af54 */ + { LPARRAY(s_gs174_g0_sectors) }, + { LPARRAY(s_gs174_g1_sectors) }, +}; + +static const struct GroundLink s_gs174_links[] = { /* 0x822af64 */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs174 = { LPARRAY(s_gs174_groups), s_gs174_links }; /* 0x822af6c */ diff --git a/src/data/ground/ground_data_a05p01_station.h b/src/data/ground/ground_data_a05p01_station.h new file mode 100644 index 000000000..be8da236e --- /dev/null +++ b/src/data/ground/ground_data_a05p01_station.h @@ -0,0 +1,142 @@ + + + + + + + + +static const struct ScriptCommand s_gs175_g0_s0_station_sref_script[] = { /* 0x822af80 */ + DEBUGINFO, + SELECT_MAP(175), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs175_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs175_g0_s0_station_sref_script }; /* 0x822afdc */ + +static const struct ScriptCommand s_gs175_g1_s0_station_sref_script[] = { /* 0x822afe8 */ + DEBUGINFO, + BGM_STOP, + WAIT(180), + SELECT_MAP(175), + SELECT_ENTITIES(-1, 0), + { 0x3b, 0x36, 0x0000, -0x00000002, 0x00000000, NULL }, + { 0x22, 0x01, 0x00b4, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + WAIT(0), + { 0x28, 0x01, 0x0001, 0x0000001e, 0x00ffffff, NULL }, + WAIT(45), + RET, + LABEL(0), /* = 0x00 */ + { 0x28, 0x01, 0x0001, 0x0000001e, 0x00ffffff, NULL }, + WAIT(60), + RET, +}; + +static const struct ScriptRef s_gs175_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs175_g1_s0_station_sref_script }; /* 0x822b0e8 */ + +static const struct ScriptCommand s_gs175_g1_s0_eff1_script[] = { /* 0x822b0f4 */ + DEBUGINFO, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(40), + BGM_SWITCH(44), + WAIT(300), + { 0x2b, 0x00, 0x0000, -0x000000c8, 0x0000003c, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(..................)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(What is this...?)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(I'm rising into the sky...)") }, + { 0x2b, 0x00, 0x0000, -0x000000be, 0x0000003c, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Is this my spirit...?)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(I wonder where I'm going?)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0x2b, 0x00, 0x0000, -0x0000006e, 0x0000003c, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(......!)") }, + { 0x2b, 0x00, 0x0000, -0x000000d2, 0x00000032, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Voices...#W\nI hear voices...)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs175_g2_s0_station_sref_script[] = { /* 0x822b2f4 */ + DEBUGINFO, + SELECT_MAP(175), + SELECT_ENTITIES(-1, 0), + { 0x3b, 0x36, 0x0000, -0x00000002, 0x00000000, NULL }, + BGM_STOP, + { 0x22, 0x01, 0x00b4, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x0001, 0x0000003c, 0x00ffffff, NULL }, + WAIT(170), + { 0x28, 0x01, 0x0002, 0x0000003c, 0x00ffffff, NULL }, + WAIT(90), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs175_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs175_g2_s0_station_sref_script }; /* 0x822b3c4 */ + +static const struct ScriptCommand s_gs175_g2_s0_eff1_script[] = { /* 0x822b3d0 */ + DEBUGINFO, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(120), + BGM_SWITCH(45), + WAIT(60), + { 0x2b, 0x00, 0x0000, 0x000000be, 0x000000be, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("\n#+I don't want to leave...") }, + WAIT(100), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("\n#+I want to stay longer...") }, + WAIT(100), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("\n#+With my invaluable...") }, + WAIT(100), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("\n#+Irreplaceable friend...") }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundEffectData s_gs175_g1_s0_effs[] = { /* 0x822b584 */ + /* 0 */ { 0, 0, 1, 1, { 21, 15, 0, CPOS_HALFTILE }, NULL }, + /* 1 */ { 3, 4, 2, 1, { 22, 15, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs175_g1_s0_eff1_script }, +}; + +static const struct GroundEffectData s_gs175_g2_s0_effs[] = { /* 0x822b59c */ + /* 0 */ { 0, 0, 1, 1, { 21, 18, 0, CPOS_HALFTILE }, NULL }, + /* 1 */ { 3, 4, 2, 1, { 22, 15, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs175_g2_s0_eff1_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x822b5b4 */ + &s_gs175_g0_s0_station_sref, + &s_gs175_g1_s0_station_sref, + &s_gs175_g2_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs175_g0_sectors[] = { /* 0x822b5c0 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs175_g1_sectors[] = { /* 0x822b5e8 */ + { 0,NULL, 0,NULL, LPARRAY(s_gs175_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs175_g2_sectors[] = { /* 0x822b610 */ + { 0,NULL, 0,NULL, LPARRAY(s_gs175_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptGroup s_gs175_groups[] = { /* 0x822b638 */ + { LPARRAY(s_gs175_g0_sectors) }, + { LPARRAY(s_gs175_g1_sectors) }, + { LPARRAY(s_gs175_g2_sectors) }, +}; + +static const struct GroundLink s_gs175_links[] = { /* 0x822b650 */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs175 = { LPARRAY(s_gs175_groups), s_gs175_links }; /* 0x822b658 */ diff --git a/src/data/ground/ground_data_a05p02_station.h b/src/data/ground/ground_data_a05p02_station.h new file mode 100644 index 000000000..62077c02d --- /dev/null +++ b/src/data/ground/ground_data_a05p02_station.h @@ -0,0 +1,143 @@ + + + + + + + + +static const struct ScriptCommand s_gs176_g0_s0_station_sref_script[] = { /* 0x822b66c */ + DEBUGINFO, + BGM_STOP, + SELECT_MAP(176), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs176_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs176_g0_s0_station_sref_script }; /* 0x822b6d8 */ + +static const struct ScriptCommand s_gs176_g1_s0_station_sref_script[] = { /* 0x822b6e4 */ + DEBUGINFO, + SELECT_MAP(176), + SELECT_ENTITIES(-1, 0), + { 0x3b, 0x36, 0x0000, -0x00000002, 0x00000000, NULL }, + { 0x27, 0x01, 0x0001, 0x0000001e, 0x00ffffff, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x0005, 0x00000078, 0x00ffffff, NULL }, + WAIT(90), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x27, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, + WAIT(90), + { 0x3c, 0x2e, 0x0000, 0x00000000, 0x000000c8, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x00000001, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x00000002, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x00000003, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x00000004, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x00000005, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x00000006, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x00000007, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x00000008, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x00000009, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x0000000a, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x0000000b, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x0000000c, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x0000000d, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x0000000e, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x0000000f, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x00000010, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x00000011, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x00000012, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x00000013, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x00000014, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x00000015, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x00000016, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x00000017, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x00000018, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x00000019, 0x000000b5, NULL }, + WAIT(45), + { 0x3c, 0x2e, 0x0000, 0x0000001a, 0x000000b5, NULL }, + WAIT(120), + BGM_FADEOUT(330), + { 0x23, 0x01, 0x0078, 0x00000000, 0x00000000, NULL }, + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(210), + RET, +}; + +static const struct ScriptRef s_gs176_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs176_g1_s0_station_sref_script }; /* 0x822bb44 */ + +static const struct ScriptCommand s_gs176_g1_s0_eff1_script[] = { /* 0x822bb50 */ + DEBUGINFO, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0x2b, 0x00, 0x0000, 0x000000b4, 0x000000b4, NULL }, + WAIT(60), + { 0x39, 0x00, 0x005a, 0x00000000, 0x00000000, _("#+Your friend is heartbroken...") }, + WAIT(80), + { 0x39, 0x00, 0x005a, 0x00000000, 0x00000000, _("#+A true friend...\n#+A friend for life...") }, + WAIT(80), + { 0x39, 0x00, 0x005a, 0x00000000, 0x00000000, _("#+You finally realize it now...") }, + WAIT(80), + { 0x39, 0x00, 0x005a, 0x00000000, 0x00000000, _("#+If you wish...\n#+And wish very strongly...") }, + WAIT(80), + { 0x39, 0x00, 0x005a, 0x00000000, 0x00000000, _("#+Perhaps you will meet again.") }, + { 0x31, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundEffectData s_gs176_g1_s0_effs[] = { /* 0x822bd4c */ + /* 0 */ { 0, 0, 1, 1, { 21, 15, 0, CPOS_HALFTILE }, NULL }, + /* 1 */ { 3, 4, 2, 1, { 22, 15, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs176_g1_s0_eff1_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x822bd64 */ + &s_gs176_g0_s0_station_sref, + &s_gs176_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs176_g0_sectors[] = { /* 0x822bd6c */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs176_g1_sectors[] = { /* 0x822bd94 */ + { 0,NULL, 0,NULL, LPARRAY(s_gs176_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs176_groups[] = { /* 0x822bdbc */ + { LPARRAY(s_gs176_g0_sectors) }, + { LPARRAY(s_gs176_g1_sectors) }, +}; + +static const struct GroundLink s_gs176_links[] = { /* 0x822bdcc */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs176 = { LPARRAY(s_gs176_groups), s_gs176_links }; /* 0x822bdd4 */ diff --git a/src/data/ground/ground_data_a05p03_station.h b/src/data/ground/ground_data_a05p03_station.h new file mode 100644 index 000000000..47f603a27 --- /dev/null +++ b/src/data/ground/ground_data_a05p03_station.h @@ -0,0 +1,84 @@ + + + + + + + + +static const struct ScriptCommand s_gs177_g0_s0_station_sref_script[] = { /* 0x822bde8 */ + DEBUGINFO, + SELECT_MAP(177), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs177_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs177_g0_s0_station_sref_script }; /* 0x822be54 */ + +static const struct ScriptCommand s_gs177_g1_s0_station_sref_script[] = { /* 0x822be60 */ + DEBUGINFO, + SELECT_MAP(177), + SELECT_ENTITIES(-1, -1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe0, 0x00, 0x002d, 0x00000000, 0x00000000, NULL }, + WAIT(240), + { 0x2b, 0x00, 0x0000, -0x00000001, -0x00000001, NULL }, + { 0x38, 0x00, -0x0001, 0x00000000, 0x00000000, _("\n") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x23, 0x01, 0x0078, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0x2d, 0x09, 0x0000, 0x00000001, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The story of $n0 and\n#+$n1 ends here.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+But $t isn't done yet!\n#+There are many rescues to be done!") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+A new adventure begins!") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The legendary Pokémon are set\n#+to make their appearance!") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Don't go away!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x3b, 0x09, 0x0000, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Would you like to save your adventure?")), + CHOICE(/* label */ 0, _("Yes.")), + CHOICE(/* label */ 1, _("No.")), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + { 0x3c, 0x0e, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + RET, +}; + +static const struct ScriptRef s_gs177_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs177_g1_s0_station_sref_script }; /* 0x822c1ac */ +static const struct GroundEffectData s_gs177_g1_s0_effs[] = { /* 0x822c1b8 */ + /* 0 */ { 0, 0, 1, 1, { 21, 15, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x822c1c4 */ + &s_gs177_g0_s0_station_sref, + &s_gs177_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs177_g0_sectors[] = { /* 0x822c1cc */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs177_g1_sectors[] = { /* 0x822c1f4 */ + { 0,NULL, 0,NULL, LPARRAY(s_gs177_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs177_groups[] = { /* 0x822c21c */ + { LPARRAY(s_gs177_g0_sectors) }, + { LPARRAY(s_gs177_g1_sectors) }, +}; + +static const struct GroundLink s_gs177_links[] = { /* 0x822c22c */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs177 = { LPARRAY(s_gs177_groups), s_gs177_links }; /* 0x822c234 */ diff --git a/src/data/ground/ground_data_b01p01a_station.h b/src/data/ground/ground_data_b01p01a_station.h new file mode 100644 index 000000000..bdb2ee2bd --- /dev/null +++ b/src/data/ground/ground_data_b01p01a_station.h @@ -0,0 +1,16502 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs9_g0_s0_station_sref_script[] = { /* 0x819ad18 */ + DEBUGINFO, + SELECT_MAP(9), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 2, /* to label */ 0), + COND(JUDGE_EQ, 3, /* to label */ 1), + COND(JUDGE_EQ, 4, /* to label */ 2), + COND(JUDGE_EQ, 5, /* to label */ 3), + COND(JUDGE_EQ, 6, /* to label */ 4), + COND(JUDGE_EQ, 7, /* to label */ 5), + COND(JUDGE_EQ, 8, /* to label */ 6), + COND(JUDGE_EQ, 9, /* to label */ 7), + COND(JUDGE_EQ, 10, /* to label */ 8), + COND(JUDGE_EQ, 11, /* to label */ 9), + COND(JUDGE_LT, 15, /* to label */ 10), + COND(JUDGE_EQ, 15, /* to label */ 11), + COND(JUDGE_EQ, 16, /* to label */ 12), + COND(JUDGE_EQ, 18, /* to label */ 13), + JUMP_LABEL(14), + LABEL(0), /* = 0x00 */ + JUMP_LABEL(10), + LABEL(1), /* = 0x01 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 4, /* to label */ 15), + COND_EQUAL(5, /* to label */ 16), + JUMP_LABEL(17), + LABEL(15), /* = 0x0f */ + JUMP_SCRIPT(EVENT_M01E02A_L002), + LABEL(16), /* = 0x10 */ + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + CALL_STATION( 19, 0), + JUMP_LABEL(10), + LABEL(17), /* = 0x11 */ + CALL_STATION( 22, 0), + JUMP_LABEL(10), + LABEL(2), /* = 0x02 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 18), + COND_EQUAL(4, /* to label */ 19), + COND_EQUAL(5, /* to label */ 20), + JUMP_LABEL(10), + LABEL(18), /* = 0x12 */ + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + CALL_STATION( 24, 0), + JUMP_LABEL(10), + LABEL(19), /* = 0x13 */ + JUMPIF(JUDGE_GE, CLEAR_COUNT, 2, /* to label */ 21), + JUMP_LABEL(10), + LABEL(21), /* = 0x15 */ + JUMP_SCRIPT(EVENT_M01E02B_L004), + LABEL(20), /* = 0x14 */ + JUMP_SCRIPT(EVENT_M01E02B_L004B), + LABEL(3), /* = 0x03 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 10), + COND_EQUAL(2, /* to label */ 22), + COND(JUDGE_LE, 5, /* to label */ 10), + COND_EQUAL(6, /* to label */ 23), + COND(JUDGE_LE, 7, /* to label */ 10), + COND_EQUAL(8, /* to label */ 24), + CALL_STATION( 32, 0), + JUMP_LABEL(10), + LABEL(22), /* = 0x16 */ + JUMP_SCRIPT(EVENT_M01E03A_L002), + LABEL(23), /* = 0x17 */ + JUMP_SCRIPT(EVENT_M01E03A_L005), + LABEL(24), /* = 0x18 */ + JUMP_SCRIPT(EVENT_M01E03A_L007), + LABEL(4), /* = 0x04 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 25), + COND_EQUAL(2, /* to label */ 26), + CALL_STATION( 37, 0), + JUMP_LABEL(10), + LABEL(25), /* = 0x19 */ + JUMP_LABEL(10), + LABEL(26), /* = 0x1a */ + JUMP_SCRIPT(EVENT_M01E04A_L002), + LABEL(5), /* = 0x05 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 27), + COND_EQUAL(2, /* to label */ 28), + CALL_STATION( 41, 0), + JUMP_LABEL(10), + LABEL(27), /* = 0x1b */ + CALL_STATION( 37, 0), + JUMP_LABEL(10), + LABEL(28), /* = 0x1c */ + JUMP_SCRIPT(EVENT_M01E04B_L002), + LABEL(6), /* = 0x06 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 29), + COND_EQUAL(2, /* to label */ 30), + CALL_STATION( 41, 0), + JUMP_LABEL(10), + LABEL(29), /* = 0x1d */ + CALL_STATION( 41, 0), + JUMP_LABEL(10), + LABEL(30), /* = 0x1e */ + JUMP_SCRIPT(EVENT_M01E05A_L002), + LABEL(7), /* = 0x07 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 31), + COND_EQUAL(2, /* to label */ 32), + LABEL(31), /* = 0x1f */ + CALL_STATION( 41, 0), + JUMP_LABEL(10), + LABEL(32), /* = 0x20 */ + JUMP_SCRIPT(EVENT_M01E05B_L002), + LABEL(8), /* = 0x08 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 33), + CALL_STATION( 41, 0), + JUMP_LABEL(10), + LABEL(33), /* = 0x21 */ + JUMP_SCRIPT(EVENT_M01E06A_L002), + LABEL(9), /* = 0x09 */ + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, WARP_LOCK, 5), + CALL_STATION( 50, 0), + JUMP_LABEL(10), + LABEL(11), /* = 0x0b */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 34), + COND_EQUAL(4, /* to label */ 35), + COND_EQUAL(6, /* to label */ 36), + COND_EQUAL(8, /* to label */ 37), + COND_EQUAL(9, /* to label */ 38), + COND_EQUAL(10, /* to label */ 39), + CALL_STATION( 56, 0), + JUMP_LABEL(10), + LABEL(34), /* = 0x22 */ + JUMP_SCRIPT(EVENT_M01E09A_L002), + LABEL(35), /* = 0x23 */ + JUMP_SCRIPT(EVENT_M01E09A_L004), + LABEL(36), /* = 0x24 */ + JUMP_SCRIPT(EVENT_M01E09A_L006), + LABEL(37), /* = 0x25 */ + JUMP_SCRIPT(EVENT_M01E09A_L008), + LABEL(38), /* = 0x26 */ + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, WARP_LOCK, 6), + CALL_STATION( 61, 0), + JUMP_LABEL(10), + LABEL(39), /* = 0x27 */ + JUMP_SCRIPT(EVENT_M01E09A_L010), + LABEL(12), /* = 0x0c */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 40), + COND_EQUAL(3, /* to label */ 41), + CALL_STATION( 66, 0), + JUMP_LABEL(10), + LABEL(40), /* = 0x28 */ + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, WARP_LOCK, 7), + CALL_STATION( 64, 0), + JUMP_LABEL(10), + LABEL(41), /* = 0x29 */ + JUMP_SCRIPT(EVENT_M01E10A_L003), + LABEL(13), /* = 0x0d */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 42), + CALL_STATION( 70, 0), + JUMP_LABEL(10), + LABEL(42), /* = 0x2a */ + JUMP_SCRIPT(EVENT_M02E01A_L002), + LABEL(14), /* = 0x0e */ + JUMPIF_SCENE_EQ(SCENARIO_SUB9, 53, 5, /* to label */ 43), + JUMPIF_SCENE_EQ(SCENARIO_SUB9, 54, 0, /* to label */ 44), + CALL_STATION( 3, 0), + JUMP_LABEL(10), + LABEL(43), /* = 0x2b */ + JUMP_SCRIPT(EVENT_S09E01A_L004), + LABEL(44), /* = 0x2c */ + JUMP_SCRIPT(EVENT_S09E01B_L001), + LABEL(10), /* = 0x0a */ + CJUMP_VAR(DUNGEON_RESULT), + COND_EQUAL(4, /* to label */ 45), + COND_EQUAL(5, /* to label */ 46), + CJUMP_VAR(START_MODE), + COND_EQUAL(1, /* to label */ 47), + COND_EQUAL(3, /* to label */ 48), + COND_EQUAL(2, /* to label */ 49), + COND_EQUAL(4, /* to label */ 45), + COND_EQUAL(5, /* to label */ 46), + COND_EQUAL(9, /* to label */ 46), + COND_EQUAL(10, /* to label */ 46), + JUMP_LABEL(47), + LABEL(49), /* = 0x31 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 50), + COND_EQUAL(2, /* to label */ 50), + COND_EQUAL(3, /* to label */ 50), + COND_EQUAL(4, /* to label */ 50), + COND_EQUAL(5, /* to label */ 50), + COND_EQUAL(6, /* to label */ 50), + COND_EQUAL(7, /* to label */ 50), + COND_EQUAL(8, /* to label */ 50), + COND_EQUAL(12, /* to label */ 51), + COND_EQUAL(13, /* to label */ 51), + COND_EQUAL(14, /* to label */ 51), + COND_EQUAL(178, /* to label */ 46), + JUMP_LABEL(45), + LABEL(47), /* = 0x2f */ + SELECT_LIVES(0, 5), + JUMP_LABEL(52), + LABEL(48), /* = 0x30 */ + SELECT_LIVES(0, 6), + JUMP_LABEL(52), + LABEL(50), /* = 0x32 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(52), + LABEL(45), /* = 0x2d */ + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + SELECT_LIVES(0, 2), + JUMP_LABEL(52), + LABEL(46), /* = 0x2e */ + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + SELECT_LIVES(0, 3), + JUMP_LABEL(52), + LABEL(51), /* = 0x33 */ + CJUMP_VAR(DUNGEON_RESULT), + COND_EQUAL(4, /* to label */ 45), + COND_EQUAL(5, /* to label */ 46), + COND_EQUAL(12, /* to label */ 53), + COND_EQUAL(11, /* to label */ 53), + COND_EQUAL(10, /* to label */ 54), + COND_EQUAL(9, /* to label */ 54), + COND_EQUAL(6, /* to label */ 54), + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + SELECT_LIVES(0, 4), + JUMP_LABEL(52), + LABEL(52), /* = 0x34 */ + WAIT(0), + JUMP_LABEL(56), + LABEL(55), /* = 0x37 */ + SELECT_ENTITIES(0, 7), + LABEL(56), /* = 0x38 */ + BGM_SWITCH(1), + JUMP_SCRIPT(COMMON_ENTER), + LABEL(53), /* = 0x35 */ + JUMPIF_SCENARIOCHECK(8, /* to label */ 57), + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(1, /* to label */ 58), + COND_EQUAL(2, /* to label */ 59), + COND_EQUAL(4, /* to label */ 60), + COND_EQUAL(6, /* to label */ 61), + COND_EQUAL(7, /* to label */ 62), + COND_EQUAL(9, /* to label */ 63), + COND_EQUAL(17, /* to label */ 64), + COND_EQUAL(19, /* to label */ 65), + LABEL(57), /* = 0x39 */ + EXECUTE_SUBSTATION(9, 5, 0), + RET, + LABEL(58), /* = 0x3a */ + EXECUTE_SUBSTATION(9, 21, 0), + RET, + LABEL(59), /* = 0x3b */ + EXECUTE_SUBSTATION(9, 27, 0), + RET, + LABEL(60), /* = 0x3c */ + EXECUTE_SUBSTATION(9, 33, 0), + RET, + LABEL(61), /* = 0x3d */ + EXECUTE_SUBSTATION(9, 38, 0), + RET, + LABEL(62), /* = 0x3e */ + EXECUTE_SUBSTATION(9, 42, 0), + RET, + LABEL(63), /* = 0x3f */ + EXECUTE_SUBSTATION(9, 44, 0), + RET, + LABEL(64), /* = 0x40 */ + EXECUTE_SUBSTATION(9, 63, 0), + RET, + LABEL(65), /* = 0x41 */ + EXECUTE_SUBSTATION(9, 67, 0), + RET, + LABEL(54), /* = 0x36 */ + EXECUTE_SUBSTATION(9, 7, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs9_g0_s0_station_sref_script }; /* 0x819bec8 */ + + +static const struct ScriptCommand s_gs9_g0_s0_evt0_sref_script[] = { /* 0x819bed4 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_MAIN, 4, 3, /* to label */ 0), + { 0x01, 0x00, -0x0001, 0x00000001, 0x00000000, NULL }, + HALT, + LABEL(0), /* = 0x00 */ + EXECUTE_STATION(-1, 22, 1), + HALT, +}; + +static const struct ScriptRef s_gs9_g0_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs9_g0_s0_evt0_sref_script }; /* 0x819bf44 */ + +static const struct ScriptCommand s_gs9_g0_s0_evt1_sref_script[] = { /* 0x819bf50 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_MAIN, 4, 3, /* to label */ 0), + JUMPIF_SCENARIOCHECK(4, /* to label */ 1), + LABEL(2), /* = 0x02 */ + { 0x3b, 0x12, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 3), + { 0x3c, 0x16, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(-2, /* to label */ 3), + COND_EQUAL(-1, /* to label */ 4), + COND_EQUAL(0, /* to label */ 4), + HALT, + LABEL(3), /* = 0x03 */ + { 0x03, 0x00, 0x001e, 0x00000001, 0x00000000, NULL }, + COND_EQUAL(-1, /* to label */ 4), + HALT, + LABEL(4), /* = 0x04 */ + RET, + LABEL(0), /* = 0x00 */ + EXECUTE_STATION(-1, 22, 2), + HALT, + LABEL(1), /* = 0x01 */ + JUMPIF(JUDGE_LE, FRIEND_SUM, 2, /* to label */ 2), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0000, 0x00000004, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("This will be a dangerous journey.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I'd better leave without telling\nthe others.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs9_g0_s0_evt1_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs9_g0_s0_evt1_sref_script }; /* 0x819c174 */ + +static const struct ScriptCommand s_gs9_g0_s0_evt2_sref_script[] = { /* 0x819c180 */ + DEBUGINFO, + JUMPIF_EQUAL(WARP_LOCK, 0, /* to label */ 0), + JUMPIF_EQUAL(WARP_LOCK, 5, /* to label */ 1), + JUMPIF_EQUAL(WARP_LOCK, 6, /* to label */ 2), + JUMPIF_EQUAL(WARP_LOCK, 7, /* to label */ 3), + JUMP_LABEL(0), + CALL_SCRIPT(EVENT_DIVIDE_WARP_LOCK_FUNC), + RET, + LABEL(0), /* = 0x00 */ + JUMPIF_SCENE_EQ(SCENARIO_MAIN, 18, 3, /* to label */ 5), + { 0x04, 0x00, 0x001e, -0x00000001, 0x00000000, NULL }, + COND_EQUAL(-1, /* to label */ 6), + HALT, + LABEL(6), /* = 0x06 */ + RET, + LABEL(1), /* = 0x01 */ + EXECUTE_STATION(-1, 50, 3), + HALT, + LABEL(2), /* = 0x02 */ + EXECUTE_STATION(-1, 61, 1), + HALT, + LABEL(3), /* = 0x03 */ + EXECUTE_STATION(-1, 64, 1), + HALT, + LABEL(5), /* = 0x05 */ + EXECUTE_STATION(9, 71, 0), + HALT, +}; + +static const struct ScriptRef s_gs9_g0_s0_evt2_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs9_g0_s0_evt2_sref_script }; /* 0x819c330 */ + + +static const struct ScriptCommand s_gs9_g0_s0_evt3_sref_script[] = { /* 0x819c33c */ + DEBUGINFO, + { 0x01, 0x00, -0x0001, 0x0000000c, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptRef s_gs9_g0_s0_evt3_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs9_g0_s0_evt3_sref_script }; /* 0x819c36c */ + +static const struct ScriptCommand s_gs9_g0_s0_obj0_dlg2[] = { /* 0x819c378 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + CJUMP_DIR_TO_LINK(0), + COND_EQUAL(0, /* to label */ 0), + JUMPIF_SCENE_EQ(SCENARIO_SUB7, 49, 1, /* to label */ 1), + LABEL(2), /* = 0x02 */ + { 0x3c, 0x21, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+There is a warning tag\n#+on the side of the Mailbox.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+- Open the Mailbox at the front -") }, + JUMP_SCRIPT(END_TALK), + EXECUTE_FUNCTION(EVENT_S01E02A_L001), + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + { 0x3b, 0x08, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 2), + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+\n#+= Extra! =") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Buried Relic Discovered!") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Mystery ruin\n#+found underground!") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Its site had been hidden by the crater\n#+of a meteor strike in ancient times.") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The Buried Relic is thought to date\n#+back beyond recorded history.") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+There are rumors of treasures...") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+And perhaps even Pokémon\n#+that lived in ancient times.") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The Buried Relic is the main\n#+topic in Pokémon Square.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB7, 49, 2), + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs9_g0_s0_obj2_dlg2[] = { /* 0x819c748 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("\n ← Friend Areas") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMPIF_SCENARIOCHECK(4, /* to label */ 0), + LABEL(1), /* = 0x01 */ + { 0x3c, 0x16, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(-2, /* to label */ 2), + COND_EQUAL(-1, /* to label */ 2), + COND_EQUAL(0, /* to label */ 2), + HALT, + LABEL(2), /* = 0x02 */ + { 0xe4, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, + LABEL(0), /* = 0x00 */ + JUMPIF(JUDGE_LE, FRIEND_SUM, 2, /* to label */ 1), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0000, 0x00000004, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("This will be a dangerous journey.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I'd better leave without telling\nthe others.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g0_s0_obj3_dlg0[] = { /* 0x819c8f4 */ + DEBUGINFO, + JUMPIF_SCENARIOCHECK(29, /* to label */ 0), + JUMPIF_ARRAY(EVENT_B01P01, 2, /* to label */ 0), + END_DELETE, + LABEL(0), /* = 0x00 */ + { 0x53, 0x00, 0x0000, 0x000001e0, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g0_s0_obj4_dlg0[] = { /* 0x819c974 */ + DEBUGINFO, + JUMPIF_ARRAY(EVENT_B01P01, 0, /* to label */ 0), + END_DELETE, + LABEL(0), /* = 0x00 */ + { 0x53, 0x00, 0x0000, 0x000001e0, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g0_s0_obj5_dlg0[] = { /* 0x819c9e4 */ + DEBUGINFO, + JUMPIF_ARRAY(EVENT_B01P01, 1, /* to label */ 0), + END_DELETE, + LABEL(0), /* = 0x00 */ + { 0x53, 0x00, 0x0000, 0x000001e0, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g0_s0_obj6_dlg0[] = { /* 0x819ca54 */ + DEBUGINFO, + JUMPIF_ARRAY(EVENT_B01P01, 3, /* to label */ 0), + END_DELETE, + LABEL(0), /* = 0x00 */ + { 0x53, 0x00, 0x0000, 0x000001e0, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g0_s1_lives0_dlg0[] = { /* 0x819cac4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs9_g0_s1_lives1_dlg0[] = { /* 0x819cb04 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs9_g0_s2_lives0_dlg0[] = { /* 0x819cb44 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs9_g0_s2_lives1_dlg0[] = { /* 0x819cb84 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs9_g0_s3_lives0_dlg0[] = { /* 0x819cbc4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs9_g0_s3_lives1_dlg0[] = { /* 0x819cc04 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs9_g0_s4_lives0_dlg0[] = { /* 0x819cc44 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs9_g0_s4_lives1_dlg0[] = { /* 0x819cc84 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs9_g0_s5_lives0_dlg0[] = { /* 0x819ccc4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs9_g0_s5_lives1_dlg0[] = { /* 0x819cd04 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs9_g0_s6_lives0_dlg0[] = { /* 0x819cd44 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs9_g0_s6_lives1_dlg0[] = { /* 0x819cd74 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs9_g0_s7_lives0_dlg2[] = { /* 0x819cda4 */ + DEBUGINFO, + { 0x2d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + LABEL(0), /* = 0x00 */ + ASK3( TRUE, /*default*/ 0, /* speaker */ 1, _("The rescue team base can be changed.")), + CHOICE(/* label */ 1, _("Change level")), + CHOICE(/* label */ 2, _("Change type")), + CHOICE(/* label */ 3, _("Placement of fixtures")), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("Farewell") }, + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + ASK3( TRUE, /*default*/ 0, /* speaker */ 1, _("The rescue team base's level can\nbe changed.")), + CHOICE(/* label */ 4, _("Change to level 1")), + CHOICE(/* label */ 5, _("Change to level 2")), + CHOICE(/* label */ 6, _("Change to level 3")), + JUMP_LABEL(0), + LABEL(4), /* = 0x04 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("It will be changed to level 1.") }, + UPDATE_VARINT(CALC_SET, BASE_LEVEL, 0), + JUMP_LABEL(7), + LABEL(5), /* = 0x05 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("It will be changed to level 2.") }, + UPDATE_VARINT(CALC_SET, BASE_LEVEL, 1), + JUMP_LABEL(7), + LABEL(6), /* = 0x06 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("It will be changed to level 3.") }, + UPDATE_VARINT(CALC_SET, BASE_LEVEL, 2), + JUMP_LABEL(7), + LABEL(2), /* = 0x02 */ + ASK3( TRUE, /*default*/ 0, /* speaker */ 1, _("The rescue team base's type can\nbe changed.")), + CHOICE(/* label */ 8, _("Change to rescue team base 7 〜")), + CHOICE(/* label */ 9, _("Change to rescue team base 1")), + CHOICE(/* label */ 10, _("Change to rescue team base 2")), + CHOICE(/* label */ 11, _("Change to rescue team base 3")), + CHOICE(/* label */ 12, _("Change to rescue team base 4")), + CHOICE(/* label */ 13, _("Change to rescue team base 5")), + CHOICE(/* label */ 14, _("Change to rescue team base 6")), + JUMP_LABEL(0), + LABEL(9), /* = 0x09 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("It will be changed to rescue team\nbase 1.") }, + UPDATE_VARINT(CALC_SET, BASE_KIND, 0), + JUMP_LABEL(7), + LABEL(10), /* = 0x0a */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("It will be changed to rescue team\nbase 2.") }, + UPDATE_VARINT(CALC_SET, BASE_KIND, 1), + JUMP_LABEL(7), + LABEL(11), /* = 0x0b */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("It will be changed to rescue team\nbase 3.") }, + UPDATE_VARINT(CALC_SET, BASE_KIND, 2), + JUMP_LABEL(7), + LABEL(12), /* = 0x0c */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("It will be changed to rescue team\nbase 4.") }, + UPDATE_VARINT(CALC_SET, BASE_KIND, 3), + JUMP_LABEL(7), + LABEL(13), /* = 0x0d */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("It will be changed to rescue team\nbase 5.") }, + UPDATE_VARINT(CALC_SET, BASE_KIND, 4), + JUMP_LABEL(7), + LABEL(14), /* = 0x0e */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("It will be changed to rescue team\nbase 6.") }, + UPDATE_VARINT(CALC_SET, BASE_KIND, 5), + JUMP_LABEL(7), + LABEL(8), /* = 0x08 */ + ASK3( TRUE, /*default*/ 0, /* speaker */ 1, _("The rescue team base's type will\nbe changed.")), + CHOICE(/* label */ 15, _("Change to rescue team base 14 〜")), + CHOICE(/* label */ 16, _("Change to rescue team base 7")), + CHOICE(/* label */ 17, _("Change to rescue team base 8")), + CHOICE(/* label */ 18, _("Change to rescue team base 9")), + CHOICE(/* label */ 19, _("Change to rescue team base 10")), + CHOICE(/* label */ 20, _("Change to rescue team base 11")), + CHOICE(/* label */ 21, _("Change to rescue team base 12")), + JUMP_LABEL(0), + LABEL(16), /* = 0x10 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("It will be changed to rescue team\nbase 7.") }, + UPDATE_VARINT(CALC_SET, BASE_KIND, 6), + JUMP_LABEL(7), + LABEL(17), /* = 0x11 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("It will be changed to rescue team\nbase 8.") }, + UPDATE_VARINT(CALC_SET, BASE_KIND, 7), + JUMP_LABEL(7), + LABEL(18), /* = 0x12 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("It will be changed to rescue team\nbase 9.") }, + UPDATE_VARINT(CALC_SET, BASE_KIND, 8), + JUMP_LABEL(7), + LABEL(19), /* = 0x13 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("It will be changed to rescue team\nbase 10.") }, + UPDATE_VARINT(CALC_SET, BASE_KIND, 9), + JUMP_LABEL(7), + LABEL(20), /* = 0x14 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("It will be changed to rescue team\nbase 11.") }, + UPDATE_VARINT(CALC_SET, BASE_KIND, 10), + JUMP_LABEL(7), + LABEL(21), /* = 0x15 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("It will be changed to rescue team\nbase 12.") }, + UPDATE_VARINT(CALC_SET, BASE_KIND, 11), + JUMP_LABEL(7), + LABEL(15), /* = 0x0f */ + ASK3( TRUE, /*default*/ 0, /* speaker */ 1, _("The rescue team base's type will\nbe changed.")), + CHOICE(/* label */ 2, _("Change to rescue team base 1 〜")), + CHOICE(/* label */ 22, _("Change to rescue team base 13")), + CHOICE(/* label */ 23, _("Change to rescue team base 14")), + CHOICE(/* label */ 24, _("Change to rescue team base 15")), + CHOICE(/* label */ 25, _("Change to rescue team base 16")), + JUMP_LABEL(0), + LABEL(22), /* = 0x16 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("It will be changed to rescue team base 13.") }, + UPDATE_VARINT(CALC_SET, BASE_KIND, 12), + JUMP_LABEL(7), + LABEL(23), /* = 0x17 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("It will be changed to rescue team base 14.") }, + UPDATE_VARINT(CALC_SET, BASE_KIND, 13), + JUMP_LABEL(7), + LABEL(24), /* = 0x18 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("It will be changed to rescue team base 15.") }, + UPDATE_VARINT(CALC_SET, BASE_KIND, 14), + JUMP_LABEL(7), + LABEL(25), /* = 0x19 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("It will be changed to rescue team base 16.") }, + UPDATE_VARINT(CALC_SET, BASE_KIND, 15), + JUMP_LABEL(7), + LABEL(3), /* = 0x03 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("Fixtures will be placed.") }, + SET_ARRAYVAL(EVENT_B01P01, 0, 1), + SET_ARRAYVAL(EVENT_B01P01, 1, 1), + SET_ARRAYVAL(EVENT_B01P01, 2, 1), + SET_ARRAYVAL(EVENT_B01P01, 3, 1), + JUMP_LABEL(7), + LABEL(7), /* = 0x07 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + { 0x01, 0x00, -0x0001, 0x00000009, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g1_s0_station_sref_script[] = { /* 0x819dcc8 */ + DEBUGINFO, + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 2, /* to label */ 0), + COND(JUDGE_EQ, 3, /* to label */ 1), + COND(JUDGE_EQ, 4, /* to label */ 2), + COND(JUDGE_EQ, 5, /* to label */ 3), + COND(JUDGE_EQ, 6, /* to label */ 4), + COND(JUDGE_EQ, 7, /* to label */ 5), + COND(JUDGE_EQ, 8, /* to label */ 6), + COND(JUDGE_EQ, 9, /* to label */ 7), + COND(JUDGE_EQ, 10, /* to label */ 8), + COND(JUDGE_EQ, 11, /* to label */ 9), + COND(JUDGE_LT, 15, /* to label */ 10), + COND(JUDGE_EQ, 15, /* to label */ 11), + COND(JUDGE_EQ, 16, /* to label */ 12), + COND(JUDGE_EQ, 18, /* to label */ 13), + JUMP_LABEL(14), + LABEL(0), /* = 0x00 */ + JUMP_LABEL(10), + LABEL(1), /* = 0x01 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 15), + COND_EQUAL(3, /* to label */ 16), + JUMP_LABEL(17), + LABEL(15), /* = 0x0f */ + JUMP_LABEL(10), + LABEL(16), /* = 0x10 */ + CALL_STATION( 19, 0), + JUMP_LABEL(10), + LABEL(17), /* = 0x11 */ + CALL_STATION( 22, 0), + JUMP_LABEL(10), + LABEL(2), /* = 0x02 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 18), + COND_EQUAL(4, /* to label */ 19), + COND_EQUAL(5, /* to label */ 20), + JUMP_LABEL(10), + LABEL(18), /* = 0x12 */ + CALL_STATION( 24, 0), + JUMP_LABEL(10), + LABEL(19), /* = 0x13 */ + JUMP_LABEL(10), + JUMP_LABEL(10), + LABEL(20), /* = 0x14 */ + JUMP_LABEL(10), + LABEL(3), /* = 0x03 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 10), + COND_EQUAL(2, /* to label */ 22), + COND(JUDGE_LE, 5, /* to label */ 10), + COND_EQUAL(6, /* to label */ 23), + COND(JUDGE_LE, 7, /* to label */ 10), + COND_EQUAL(8, /* to label */ 24), + CALL_STATION( 32, 0), + JUMP_LABEL(10), + LABEL(22), /* = 0x16 */ + JUMP_LABEL(10), + LABEL(23), /* = 0x17 */ + JUMP_LABEL(10), + LABEL(24), /* = 0x18 */ + JUMP_LABEL(10), + LABEL(4), /* = 0x04 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 25), + COND_EQUAL(2, /* to label */ 26), + CALL_STATION( 37, 0), + JUMP_LABEL(10), + LABEL(25), /* = 0x19 */ + JUMP_LABEL(10), + LABEL(26), /* = 0x1a */ + JUMP_LABEL(10), + LABEL(5), /* = 0x05 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 27), + COND_EQUAL(2, /* to label */ 28), + CALL_STATION( 41, 0), + JUMP_LABEL(10), + LABEL(27), /* = 0x1b */ + CALL_STATION( 37, 0), + JUMP_LABEL(10), + LABEL(28), /* = 0x1c */ + JUMP_LABEL(10), + LABEL(6), /* = 0x06 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 29), + COND_EQUAL(2, /* to label */ 30), + CALL_STATION( 41, 0), + JUMP_LABEL(10), + LABEL(29), /* = 0x1d */ + CALL_STATION( 41, 0), + JUMP_LABEL(10), + LABEL(30), /* = 0x1e */ + JUMP_LABEL(10), + LABEL(7), /* = 0x07 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 31), + COND_EQUAL(2, /* to label */ 32), + LABEL(31), /* = 0x1f */ + CALL_STATION( 41, 0), + JUMP_LABEL(10), + LABEL(32), /* = 0x20 */ + JUMP_LABEL(10), + LABEL(8), /* = 0x08 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 33), + CALL_STATION( 41, 0), + JUMP_LABEL(10), + LABEL(33), /* = 0x21 */ + JUMP_LABEL(10), + LABEL(9), /* = 0x09 */ + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + CALL_STATION( 50, 0), + JUMP_LABEL(10), + LABEL(11), /* = 0x0b */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 34), + COND_EQUAL(4, /* to label */ 35), + COND_EQUAL(6, /* to label */ 36), + COND_EQUAL(8, /* to label */ 37), + COND_EQUAL(9, /* to label */ 38), + COND_EQUAL(10, /* to label */ 39), + CALL_STATION( 56, 0), + JUMP_LABEL(10), + LABEL(34), /* = 0x22 */ + JUMP_LABEL(10), + LABEL(35), /* = 0x23 */ + JUMP_LABEL(10), + LABEL(36), /* = 0x24 */ + JUMP_LABEL(10), + LABEL(37), /* = 0x25 */ + JUMP_LABEL(10), + LABEL(38), /* = 0x26 */ + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + CALL_STATION( 61, 0), + JUMP_LABEL(10), + LABEL(39), /* = 0x27 */ + JUMP_LABEL(10), + LABEL(12), /* = 0x0c */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 40), + COND_EQUAL(3, /* to label */ 41), + CALL_STATION( 66, 0), + JUMP_LABEL(10), + LABEL(40), /* = 0x28 */ + CALL_STATION( 64, 0), + JUMP_LABEL(10), + LABEL(41), /* = 0x29 */ + JUMP_LABEL(10), + LABEL(13), /* = 0x0d */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 42), + CALL_STATION( 70, 0), + JUMP_LABEL(10), + LABEL(42), /* = 0x2a */ + JUMP_LABEL(10), + LABEL(14), /* = 0x0e */ + JUMPIF_SCENE_EQ(SCENARIO_SUB9, 53, 5, /* to label */ 43), + CALL_STATION( 3, 0), + JUMP_LABEL(10), + LABEL(43), /* = 0x2b */ + JUMP_LABEL(10), + LABEL(10), /* = 0x0a */ + WAIT(0), + JUMP_LABEL(46), + LABEL(45), /* = 0x2d */ + SELECT_ENTITIES(0, 7), + LABEL(46), /* = 0x2e */ + RET_DIRECT, +}; + +static const struct ScriptRef s_gs9_g1_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs9_g1_s0_station_sref_script }; /* 0x819e758 */ + + + +static const struct ScriptCommand s_gs9_g1_s1_lives0_dlg2[] = { /* 0x819e764 */ + DEBUGINFO, + JUMP_SCRIPT(UNIT_TALK), +}; + +static const struct ScriptCommand s_gs9_g1_s1_lives1_dlg2[] = { /* 0x819e784 */ + DEBUGINFO, + JUMP_SCRIPT(UNIT_TALK), +}; + +static const struct ScriptCommand s_gs9_g1_s1_lives2_dlg2[] = { /* 0x819e7a4 */ + DEBUGINFO, + JUMP_SCRIPT(UNIT_TALK), +}; + +static const struct ScriptCommand s_gs9_g1_s1_lives3_dlg2[] = { /* 0x819e7c4 */ + DEBUGINFO, + JUMP_SCRIPT(UNIT_TALK), +}; + +static const struct ScriptCommand s_gs9_g2_s0_station_sref_script[] = { /* 0x819e7e4 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 0), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMPIF_ARRAY(EVENT_B01P01, 3, /* to label */ 0), + { 0x3b, 0x0f, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 0), + SET_ARRAYVAL(EVENT_B01P01, 3, 1), + SELECT_ENTITIES(-1, 2), + LABEL(0), /* = 0x00 */ + RET_DIRECT, +}; + +static const struct ScriptRef s_gs9_g2_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g2_s0_station_sref_script }; /* 0x819e8b4 */ + +static const struct ScriptCommand s_gs9_g2_s0_eff0_script[] = { /* 0x819e8c0 */ + DEBUGINFO, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(1), + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g2_s1_lives0_dlg0[] = { /* 0x819e920 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x60, 0x00, 0x0000, 0x00000030, 0x00000000, NULL }, + FANFARE_PLAY2(451), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Flap! Flap!") }, + { 0x6b, 0x00, 0x0100, 0x00000003, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x1e, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x68, 0x00, 0x0100, 0x00000008, 0x00000000, NULL }, + FANFARE_STOP2(451), + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + WAIT(20), + FANFARE_PLAY2(501), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Clunk!") }, + WAIT(60), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(451), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x68, 0x00, 0x0100, 0x00000030, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x1e, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000004, 0x00000000, NULL }, + FANFARE_STOP2(451), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g2_s1_eff0_script[] = { /* 0x819eaf4 */ + DEBUGINFO, + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Flap! Flap!") }, + WAIT(60), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g2_s2_obj0_dlg0[] = { /* 0x819eb44 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x000001e0, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g3_s0_station_sref_script[] = { /* 0x819eb84 */ + DEBUGINFO, + JUMP_STATION( 4, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g3_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs9_g3_s0_station_sref_script }; /* 0x819ebb4 */ + +static const struct ScriptCommand s_gs9_g4_s0_station_sref_script[] = { /* 0x819ebc0 */ + DEBUGINFO, + JUMPIF_EQUAL(WARP_LOCK, 0, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_0(SCENARIO_SUB2), + COND(JUDGE_EQ, 33, /* to label */ 1), + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + JUMPIF_SCENE_EQ(SCENARIO_SUB2, 33, 1, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + SELECT_ENTITIES(80, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_SCENE_EQ(SCENARIO_SUB1, 29, 1, /* to label */ 5), + JUMPIF_EQUAL(SCENARIO_SUB1, 30, /* to label */ 6), + JUMP_LABEL(7), + LABEL(5), /* = 0x05 */ + SELECT_ENTITIES(73, 0), + RET_DIRECT, + LABEL(6), /* = 0x06 */ + SELECT_ENTITIES(77, 0), + RET_DIRECT, + LABEL(7), /* = 0x07 */ + JUMPIF_SCENE_GT(SCENARIO_MAIN, 18, 0, /* to label */ 8), + RET_DIRECT, + LABEL(8), /* = 0x08 */ + RET_DIRECT, + JUMPIF_SCENE_GT(SCENARIO_SUB3, 36, 1, /* to label */ 10), + SELECT_ENTITIES(10, 0), + LABEL(10), /* = 0x0a */ + JUMPIF_SCENE_GT(SCENARIO_SUB4, 38, 0, /* to label */ 12), + SELECT_ENTITIES(11, 0), + LABEL(12), /* = 0x0c */ + JUMPIF_SCENE_GT(SCENARIO_SUB5, 44, 1, /* to label */ 14), + SELECT_ENTITIES(12, 0), + LABEL(14), /* = 0x0e */ + JUMPIF_SCENE_GT(SCENARIO_SUB6, 46, 1, /* to label */ 16), + SELECT_ENTITIES(13, 0), + LABEL(16), /* = 0x10 */ + JUMPIF_SCENE_GT(SCENARIO_SUB7, 49, 0, /* to label */ 18), + SELECT_ENTITIES(14, 0), + LABEL(18), /* = 0x12 */ + JUMPIF_SCENE_GT(SCENARIO_SUB8, 51, 0, /* to label */ 20), + SELECT_ENTITIES(15, 0), + LABEL(20), /* = 0x14 */ + JUMPIF_SCENE_GT(SCENARIO_SUB9, 53, 0, /* to label */ 22), + SELECT_ENTITIES(16, 0), + LABEL(22), /* = 0x16 */ + RET_DIRECT, +}; + +static const struct ScriptRef s_gs9_g4_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs9_g4_s0_station_sref_script }; /* 0x819eee0 */ + + + + + + + + + +static const struct ScriptCommand s_gs9_g5_s0_station_sref_script[] = { /* 0x819eeec */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + JUMPIF_SCENARIOCHECK(8, /* to label */ 0), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + SELECT_MAP(9), + SELECT_ENTITIES(-1, 1), + LABEL(1), /* = 0x01 */ + SELECT_EVENTS(0, 0), + CALL_STATION( 4, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_STATION( 8, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g5_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g5_s0_station_sref_script }; /* 0x819f03c */ + +static const struct ScriptCommand s_gs9_g5_s0_lives0_dlg0[] = { /* 0x819f048 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Morning, $n0.")), + VARIANT(/* == */ 1, _(" We blew it yesterday,\nso let's get it right this time.")), + VARIANT_DEFAULT(_(" Good morning, $n0.")), + VARIANT_DEFAULT(_(" We failed yesterday,\nso let's try harder this time.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g5_s0_lives1_dlg0[] = { /* 0x819f1cc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g5_s1_lives0_dlg0[] = { /* 0x819f20c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g6_s0_station_sref_script[] = { /* 0x819f26c */ + DEBUGINFO, + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + JUMPIF_EQUAL(PARTNER1_KIND, 0, /* to label */ 0), + { 0x3b, 0x13, 0x0004, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 0), + SELECT_ENTITIES(-1, 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + SELECT_ENTITIES(-1, 2), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(60), + RET, +}; + +static const struct ScriptRef s_gs9_g6_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g6_s0_station_sref_script }; /* 0x819f39c */ + + +static const struct ScriptCommand s_gs9_g6_s1_lives0_dlg0[] = { /* 0x819f3a8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" We did good today.#W\nLet's knock off and call it a night.")), + VARIANT(/* == */ 1, _(" See you tomorrow!")), + VARIANT_DEFAULT(_(" Didn't we do good today?#W\nLet's call it a night and get some rest.")), + VARIANT_DEFAULT(_(" OK, see you tomorrow!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g6_s1_lives1_dlg0[] = { /* 0x819f554 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g6_s2_lives0_dlg0[] = { /* 0x819f594 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("That was good work today.\nI should get some rest.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g7_s0_station_sref_script[] = { /* 0x819f668 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + JUMPIF_SCENARIOCHECK(8, /* to label */ 0), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + SELECT_MAP(9), + SELECT_ENTITIES(-1, 1), + LABEL(1), /* = 0x01 */ + SELECT_EVENTS(0, 0), + CALL_STATION( 4, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_STATION( 8, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g7_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g7_s0_station_sref_script }; /* 0x819f7b8 */ + +static const struct ScriptCommand s_gs9_g7_s0_lives0_dlg0[] = { /* 0x819f7c4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Good morning, $n0.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g7_s0_lives1_dlg0[] = { /* 0x819f854 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g7_s1_lives0_dlg0[] = { /* 0x819f894 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g8_s0_station_sref_script[] = { /* 0x819f8f4 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 0), + { 0x3b, 0x04, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 0), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, + LABEL(0), /* = 0x00 */ + CALL_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g8_s0_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs9_g8_s0_station_sref_script }; /* 0x819f9a4 */ + +static const struct ScriptCommand s_gs9_g8_s0_lives0_dlg0[] = { /* 0x819f9b0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g8_s0_lives1_dlg0[] = { /* 0x819fa40 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g9_s0_lives0_dlg2[] = { /* 0x819fac0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + ASK3( TRUE, /*default*/ 0, /* speaker */ -1, _("Trigger sub-scenario 1-2\n\"Team Flag\"?")), + CHOICE(/* label */ 1, _("Yes.")), + CHOICE(/* label */ 2, _("*Not yet.")), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB1, 31, 1), + { 0xae, 0x01, 0x000f, 0x00000000, 0x00000000, NULL }, + CANCEL_ENTITIES(9, 0), + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs9_g10_s0_lives0_dlg2[] = { /* 0x819fbf0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + ASK3( TRUE, /*default*/ 0, /* speaker */ -1, _("Trigger sub-scenario 3\n\"Meteor Cave\"?")), + CHOICE(/* label */ 1, _("Yes.")), + CHOICE(/* label */ 2, _("*Not yet.")), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S03E01A_L001), + HALT, +}; + + +static const struct ScriptCommand s_gs9_g11_s0_lives0_dlg2[] = { /* 0x819fcfc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + ASK3( TRUE, /*default*/ 0, /* speaker */ -1, _("Trigger sub-scenario 4\n\"Rainbow Wing\"?")), + CHOICE(/* label */ 1, _("Yes.")), + CHOICE(/* label */ 2, _("*Not yet.")), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB4, 38, 1), + CANCEL_ENTITIES(11, 0), + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs9_g12_s0_lives0_dlg2[] = { /* 0x819fe08 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + ASK3( TRUE, /*default*/ 0, /* speaker */ -1, _("Trigger sub-scenario 5\n\"The Toughest Pokémon\"?")), + CHOICE(/* label */ 1, _("Yes.")), + CHOICE(/* label */ 2, _("*Not yet.")), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S05E01A_L001), + HALT, +}; + + +static const struct ScriptCommand s_gs9_g13_s0_lives0_dlg2[] = { /* 0x819ff1c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + ASK3( TRUE, /*default*/ 0, /* speaker */ -1, _("Trigger sub-scenario 6\n\"Latios and Latias\"?")), + CHOICE(/* label */ 1, _("Yes.")), + CHOICE(/* label */ 2, _("*Not yet.")), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S06E01A_L001), + HALT, +}; + + +static const struct ScriptCommand s_gs9_g14_s0_lives0_dlg2[] = { /* 0x81a002c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + ASK3( TRUE, /*default*/ 0, /* speaker */ -1, _("Trigger sub-scenario 1-2\n\"Buried Relic\"?")), + CHOICE(/* label */ 1, _("Yes.")), + CHOICE(/* label */ 2, _("*Not yet.")), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + SCENARIO_CALC(SCENARIO_SUB7, 49, 1), + { 0xae, 0x01, 0x001b, 0x00000000, 0x00000000, NULL }, + CANCEL_ENTITIES(14, 0), + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs9_g15_s0_lives0_dlg2[] = { /* 0x81a013c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + ASK3( TRUE, /*default*/ 0, /* speaker */ -1, _("Trigger sub-scenario 8\n\"Wish Cave\"?")), + CHOICE(/* label */ 1, _("Yes.")), + CHOICE(/* label */ 2, _("*Not yet.")), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S08E01A_L001), + CANCEL_ENTITIES(15, 0), + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs9_g16_s0_lives0_dlg2[] = { /* 0x81a0244 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + ASK3( TRUE, /*default*/ 0, /* speaker */ -1, _("Trigger sub-scenario 9\n\"Gengar and Gardevoir\"?")), + CHOICE(/* label */ 1, _("Yes.")), + CHOICE(/* label */ 2, _("*Not yet.")), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S09E01A_L001), + CANCEL_ENTITIES(16, 0), + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs9_g17_s0_station_sref_script[] = { /* 0x81a0358 - PART 1 0:18:53-0:22:13 - First base cutscene */ + DEBUGINFO, + { 0x3b, 0x39, 0x0004, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(120), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0000, 0x00000021, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + WAIT(60), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And that is how") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+$n0 and $n1\n#+began their careers together") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+as a rescue team.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs9_g17_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g17_s0_station_sref_script }; /* 0x81a0500 */ + + +static const struct ScriptCommand s_gs9_g17_s0_eff0_script[] = { /* 0x81a050c - PART 1 0:18:58-0:19:03 - Possibly the camera scroll? WAIT timing seems to match */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000005, 0x00000000, NULL }, + WAIT(70), + { 0x6b, 0x00, 0x0100, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g17_s0_lives0_dlg0[] = { /* 0x81a05ac - PART 1 0:18:53-0:22:03 - Player */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000007, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Well, this is the place...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(465), + CALL_SCRIPT(SHOCK_FUNC), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + CALL_SCRIPT(SMILE_START_FUNC), + FANFARE_PLAY2(455), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + CALL_SCRIPT(SMILE_END_FUNC), + WAIT(20), + { 0x2e, 0x15, 0x0000, 0x0000000b, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Wow!)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(I can't explain, but I'm happy!)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(I'm a human being, but I like this place.\nI feel weirdly happy!)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(It might be an instinct thing for\nPokémon...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Maybe this is what it feels like to want\nto wag your tail...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(It doesn't matter! I'm happy!)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Maybe I feel that way because I'm\n$m0!)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Oh? $n0.\nI can tell you're impressed.")), + VARIANT(/* == */ 1, _(" I thought you'd like it.\nI figured you'd find this an easy place\nto live, $n0.")), + VARIANT_DEFAULT(_(" Oh, $n0.\nYou're impressed, aren't you?")), + VARIANT_DEFAULT(_(" I thought so.\nI thought this would make a good place\nfor you to live, $n0.")), + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" In fact, I was sure that\nyou'd like it.")), + VARIANT_DEFAULT(_(" I was sure you would\nlike it.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" This is your #C5Mailbox#R.#W\nThis is where you'll get mail from\nother Pokémon.")), + VARIANT_DEFAULT(_(" This is your #C5Mailbox#R.#W\nThey deliver mail from Pokémon here.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000036, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" You know that fissure\n$n2 fell into?")), + VARIANT(/* == */ 1, _(" There've been other\nnatural disasters like that all of a sudden.")), + VARIANT(/* == */ 1, _(" A lot of Pokémon out there\nare hurting from those disasters.")), + VARIANT(/* == */ 1, _(" I want to help Pokémon like\nthat.")), + VARIANT(/* == */ 1, _(" I want to help make\nthis a safer place for Pokémon.")), + VARIANT(/* == */ 1, _(" And, uh...#W\nI think you're capable after seeing\nhow you did rescuing $n2.")), + VARIANT(/* == */ 1, _(" How would you like to form\na rescue team with me?")), + VARIANT(/* == */ 3, _(" Just like the fissure\n$n2 fell into...")), + VARIANT(/* == */ 3, _(" There have been all sorts\nof natural disasters recently.")), + VARIANT(/* == */ 3, _(" Many Pokémon are suffering\nfrom these natural disasters.")), + VARIANT(/* == */ 3, _(" I want to do good.\nI want to help Pokémon like that.")), + VARIANT(/* == */ 3, _(" I want to help make the\nworld a safer place for Pokémon.")), + VARIANT(/* == */ 3, _(" So, um...#W\nWell, I saw how good you were when\nwe rescued $n2...")), + VARIANT(/* == */ 3, _(" Would you like to form\na rescue team with me?")), + VARIANT_DEFAULT(_(" You know, just like the\nfissure $n2 fell into...")), + VARIANT_DEFAULT(_(" For some reason, there have\nbeen many natural disasters lately.")), + VARIANT_DEFAULT(_(" Because of those disasters,\nmany Pokémon are suffering.")), + VARIANT_DEFAULT(_(" I want to help Pokémon in\nthese tough times.")), + VARIANT_DEFAULT(_(" I want to help change things\nso all the Pokémon can live in peace.")), + VARIANT_DEFAULT(_(" So, uh...#W\nWell, I liked how you handled yourself\nwhen we rescued $n2.")), + VARIANT_DEFAULT(_(" Would you like to join me\non a rescue team?")), + LABEL(4), /* = 0x04 */ + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" $n0, I think we'd\nmake the world's greatest rescue team.\nHow about it?")), + VARIANT(/* == */ 3, _(" I think we could become\nthe world's number-one rescue team,\n$n0. What do you think?")), + VARIANT_DEFAULT(_(" $n0, with you,\nI think we could even become the world's\nbest rescue team. How about it?")), + CHOICE(/* label */ 6, _("Form a rescue team.")), + CHOICE(/* label */ 7, _("Refuse.")), + LABEL(7), /* = 0x07 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + SELECT_LIVES(-1, 2), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + BGM_FADEIN(30, 1), + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hah? Oh, no, come on!")), + VARIANT(/* == */ 3, _(" Huh?! Oh, no, please!")), + VARIANT_DEFAULT(_(" Huh?! Oh, but...")), + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0, I'm positive\nwe'd make a first-class rescue team!")), + VARIANT(/* == */ 3, _(" But, $n0!\nI'm sure that we would make a first-class\nrescue team together!")), + VARIANT_DEFAULT(_(" $n0, I'm sure\nthat the two of us would make a\nfirst-class rescue team.")), + ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" So come on, I'm begging you.\nLet's form a rescue team, you and me.")), + VARIANT(/* == */ 3, _(" Please?\nWill you please form a rescue team\nwith me?")), + VARIANT_DEFAULT(_(" So, come on now.\nLet's form a rescue team together.")), + CHOICE(/* label */ 6, _("Form a rescue team.")), + CHOICE(/* label */ 7, _("Refuse.")), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + SELECT_LIVES(-1, 3), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" OK! That's done it!")), + VARIANT(/* == */ 1, _(" Starting right now, me and\nyou, $n0, we're partners in\nour rescue team! I'm counting on you!")), + VARIANT(/* == */ 3, _(" OK! Done deal!")), + VARIANT(/* == */ 3, _(" From now on, $n0,\nwe're partners in our rescue team!\nI'm so glad you joined!")), + VARIANT_DEFAULT(_(" Perfect! That's it, then!")), + VARIANT_DEFAULT(_(" We're partners in our\nrescue team from now on, $n0!\nGlad to have you on board!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" The team's name...\nActually, I haven't thought of one yet.")), + VARIANT(/* == */ 1, _(" Hey, $n0.\nWhat do you think would be a good name?")), + VARIANT(/* == */ 3, _(" The team's name is...\nI haven't decided on one.")), + VARIANT(/* == */ 3, _(" Listen, $n0.\nWhat would be a good name for us?")), + VARIANT_DEFAULT(_(" The team name...\nWell, I don't have one yet.")), + VARIANT_DEFAULT(_(" So, $n0.\nWhat do you think would be a good\nname for us?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xb0, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 3, 0), + { 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x39, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" #C5$t#R!#W\nYeah... That's a good name! It suits us!")), + VARIANT_DEFAULT(_(" #C5$t#R!#W\nI like it! It's a good name!\nIt's perfect for us!")), + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Rescue Team\n#C5$t#R!#W\nWe begin tomorrow! Let's do it!")), + VARIANT_DEFAULT(_(" Rescue Team\n$t#R!#W\nLet's do good starting tomorrow!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x06, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x54, 0x00, 0x002a, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + +static const struct ScriptCommand s_gs9_g17_s0_lives1_dlg0[] = { /* 0x81a1e94 - PART 1 0:18:53-0:20:11 - Partner */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000008, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0099, 0x0000000a, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xda, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 0), + COND_EQUAL(2, /* to label */ 1), + { 0xf2, 0x00, 0x0039, 0x00000000, 0x00000000, _("SWITCH MENU RESULT CANCEL\n") }, + HALT, + LABEL(0), /* = 0x00 */ + { 0xf2, 0x00, 0x0039, 0x00000000, 0x00000000, _("SWITCH MENU RESULT 1\n") }, + HALT, + LABEL(1), /* = 0x01 */ + { 0xf2, 0x00, 0x0039, 0x00000000, 0x00000000, _("SWITCH MENU RESULT 2\n") }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g17_s2_lives0_dlg0[] = { /* 0x81a20f0 - PART 1 0:20:11-0:20:39 - Partner - refused Rescue Team question */ + DEBUGINFO, + BGM_FADEOUT(5), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0001, 0x00000000, 0x00000000, NULL }, + WAIT(10), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + FANFARE_PLAY2(473), + CALL_SCRIPT(SHOCK_FUNC), + WAIT(60), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g17_s3_lives0_dlg0[] = { /* 0x81a21b0 - PART 1 0:20:40-0:22:03 - Partner - accepted Rescue Team question */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0001, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0xe2, 0x00, 0x01d1, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x002a, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g18_s0_station_sref_script[] = { /* 0x81a22b0 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + CALL_STATION( 19, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g18_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g18_s0_station_sref_script }; /* 0x81a2390 */ + +static const struct ScriptCommand s_gs9_g18_s0_eff0_script[] = { /* 0x81a239c */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000000c, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g18_s0_lives0_dlg0[] = { /* 0x81a23fc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000036, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x0000003c, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0004, 0x0000003f, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...Hunh?! Oh, no!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(468), + { 0xe2, 0x00, 0x01d4, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(468), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hahaha, sorry!#W\nI was so excited, I've been waiting out\nhere since dawn...")), + VARIANT(/* == */ 1, _(" I guess I just fell asleep!")), + VARIANT(/* == */ 3, _(" Ahaha, sorry!#W\nI was so excited about today, I've been\nwaiting here since dawn...")), + VARIANT(/* == */ 3, _(" I must have fallen asleep.")), + VARIANT_DEFAULT(_(" Hahaha, sorry!#W\nI was so excited, I came out here at\ndawn to wait for you.")), + VARIANT_DEFAULT(_(" I must have snoozed off.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Anyway...#W\nOur rescue team officially begins!\nLet's do this right!")), + VARIANT_DEFAULT(_(" Anyway...#W\nToday marks the start of our rescue team!\nLet's always do our best!")), + { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ......")), + VARIANT_DEFAULT(_(" ......")), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ............")), + VARIANT_DEFAULT(_(" ............")), + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...So, anyway...\nWe don't have any job offers yet...\nHahahaha...")), + VARIANT_DEFAULT(_(" ...But, anyway...\nWe don't have any job offers yet...\nHahahaha...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(470), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, yeah!#W\nMaybe there's something in the Mailbox...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x6b, 0x00, 0x0100, 0x0000000e, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x3b, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n1 checked the Mailbox.") }, + FANFARE_PLAY(213), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The Mailbox contained\n#+a #C5Rescue Team Starter Set#R!") }, + { 0xe1, 0x00, 0x00d5, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I knew it'd be there!#W\nIt's the #C5Rescue Team Starter Set#R!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" You always get one when\nyou start a rescue team.")), + VARIANT_DEFAULT(_(" They always give you one\nif you start a rescue team.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n1 opened\n#+the #C5Rescue Team Starter Set#R.") }, + FANFARE_PLAY(213), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+There was\n#+a #C5Rescue Team Badge#R inside!") }, + { 0xe1, 0x00, 0x00d5, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY(213), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+There was a #C5Toolbox#R inside!") }, + { 0xe1, 0x00, 0x00d5, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY(213), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+There was also an issue of\n#+#C5Pokémon News#R inside!") }, + { 0xe1, 0x00, 0x00d5, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Yeah!#W\nThere's all sorts of good stuff in it!")), + VARIANT_DEFAULT(_(" Yes!#W\nThere are some good things here!")), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" This #C5Rescue Team Badge#R...#W\nIt's proof that you're in a rescue team.")), + VARIANT(/* == */ 1, _(" This #C5Toolbox#R too...#W\nYou can use it for keeping items that you\nfind in dungeons.")), + VARIANT(/* == */ 1, _(" I'll put the stuff that\nButterfree gave us in here.\nMight as well put it to good use.")), + VARIANT(/* == */ 1, _(" But items are really useful.\nLet's use them on our adventures.")), + VARIANT(/* == */ 1, _(" And we have here a copy of\nthe #C5Pokémon News#R.#W\nIt has useful information for rescuers.")), + VARIANT(/* == */ 1, _(" I'll leave the #C5Pokémon News#R\nin the Mailbox.\nYou should read it later.")), + VARIANT_DEFAULT(_(" First off,\nthe #C5Rescue Team Badge#R.#W\nIt shows that we're a rescue team.")), + VARIANT_DEFAULT(_(" This is a #C5Toolbox#R.#W\nYou use it for carrying items you find in\ndungeons.")), + VARIANT_DEFAULT(_(" Let's put the stuff\nButterfree gave us in here for now.")), + VARIANT_DEFAULT(_(" Items are very useful,\nso let's use them on our adventures.")), + VARIANT_DEFAULT(_(" And finally, a copy of\nthe #C5Pokémon News#R.#W\nIt's useful for rescue teams.")), + VARIANT_DEFAULT(_(" I'll put the #C5Pokémon News#R\nin the Mailbox.\nYou should read it later on.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" And, let's see...#W\nIs there any other mail...?#W\nDid we miss anything?")), + VARIANT_DEFAULT(_(" Anything else?#W\nIs there any other mail...?#W\nMaybe not?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n1 checked the Mailbox.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+But the Mailbox was empty.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" OK, so there isn't any\nmail for us after all...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If there were any rescue\njobs, we would be getting mail, but...") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I guess no one knows us\nbecause we just started this team.\nHahaha...")), + VARIANT_DEFAULT(_(" Nobody knows about us\nsince we're so new a team, I guess.\nHahaha...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Flap! Flap!") }, + FANFARE_PLAY2(451), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(60), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x1e, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Huh? What's up?")), + VARIANT_DEFAULT(_(" Oh?\nI wonder what it could be.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x95, 0x04, 0x000a, 0x0000000f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_STOP2(451), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + + + + + + + + + + +static const struct ScriptCommand s_gs9_g18_s0_lives1_dlg0[] = { /* 0x81a3a10 */ + DEBUGINFO, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(482), + CALL_SCRIPT(SHOCK_FUNC), + WAIT(30), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + WAIT(20), + { 0x93, 0x08, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x95, 0x04, 0x000a, 0x0000000c, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000000c, 0x00000000, NULL }, + { 0x95, 0x04, 0x000a, 0x0000000d, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000000d, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x95, 0x04, 0x000a, 0x0000000f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x95, 0x04, 0x000a, 0x0000000f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000003, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x95, 0x04, 0x000a, 0x0000000f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x95, 0x04, 0x000a, 0x0000000c, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000000c, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x95, 0x04, 0x000a, 0x0000000b, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000000b, 0x00000000, NULL }, + { 0x95, 0x04, 0x000a, 0x0000000f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x1e, 0x0001, 0x00000006, 0x00000000, NULL }, + CALL_SCRIPT(QUESTION_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x95, 0x04, 0x000a, 0x0000000f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g18_s0_lives2_dlg0[] = { /* 0x81a3ef0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x60, 0x00, 0x0000, 0x00000030, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000003, 0x00000000, NULL }, + { 0x91, 0x1e, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x68, 0x00, 0x0100, 0x00000008, 0x00000000, NULL }, + FANFARE_STOP2(451), + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + WAIT(20), + FANFARE_PLAY2(501), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Clunk!") }, + WAIT(60), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(451), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x68, 0x00, 0x0100, 0x00000030, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x1e, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g19_s0_station_sref_script[] = { /* 0x81a40b0 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs9_g19_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs9_g19_s0_station_sref_script }; /* 0x81a40e0 */ + +static const struct ScriptCommand s_gs9_g19_s0_lives0_dlg0[] = { /* 0x81a40ec */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000400, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g19_s0_lives0_dlg2[] = { /* 0x81a411c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Maybe this is it...")), + VARIANT(/* == */ 1, _(" $n0, how about\nchecking your Mailbox?")), + VARIANT_DEFAULT(_(" Could this be...?")), + VARIANT_DEFAULT(_(" $n0, will you\ncheck the Mailbox, please?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs9_g19_s0_obj0_dlg2[] = { /* 0x81a4254 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + CJUMP_DIR_TO_LINK(0), + COND_EQUAL(0, /* to label */ 0), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 checked the Mailbox.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_STATION(-1, 20, 0), + HALT, + LABEL(0), /* = 0x00 */ + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+There is a warning tag\n#+on the side of the Mailbox.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+- Open the Mailbox at the front -") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs9_g19_s0_evt0_sref_script[] = { /* 0x81a4350 */ + DEBUGINFO, + EXECUTE_STATION(-1, 19, 1), + HALT, +}; + +static const struct ScriptRef s_gs9_g19_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs9_g19_s0_evt0_sref_script }; /* 0x81a4380 */ + +static const struct ScriptCommand s_gs9_g19_s1_station_sref_script[] = { /* 0x81a438c */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + CANCEL_ENTITIES(-1, 0), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g19_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs9_g19_s1_station_sref_script }; /* 0x81a43ec */ + +static const struct ScriptCommand s_gs9_g19_s1_lives0_dlg0[] = { /* 0x81a43f8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, $n0, aren't\nyou going to check the Mailbox?")), + VARIANT_DEFAULT(_(" $n0, please check\nthe Mailbox.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g19_s1_lives1_dlg0[] = { /* 0x81a4504 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000400, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g19_s1_lives1_dlg2[] = { /* 0x81a4574 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" Oh, hey!\nAre you all ready to roll?")), + VARIANT_DEFAULT(_(" OK!\nAre you all ready?")), + CHOICE(/* label */ 1, _("All set!")), + CHOICE(/* label */ 2, _("*Not yet.")), + LABEL(2), /* = 0x02 */ + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Oh, all right.\nI'll wait here until you're ready.")), + VARIANT(/* == */ 1, _(" Give me a shout when you're\nready.\nWe'll get going then.")), + VARIANT_DEFAULT(_(" Oh, OK.\nI'll wait until you're all set.")), + VARIANT_DEFAULT(_(" Tell me when you're\nready.#W\nWe'll leave right away then.")), + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + EXECUTE_FUNCTION(EVENT_M01E07A_L002), + HALT, +}; + + +static const struct ScriptCommand s_gs9_g20_s0_station_sref_script[] = { /* 0x81a47dc */ + DEBUGINFO, + SELECT_ENTITIES(-1, 0), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xaf, 0x01, 0x0001, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 3, 6), + { 0x04, 0x00, 0x001e, 0x00000001, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs9_g20_s0_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs9_g20_s0_station_sref_script }; /* 0x81a484c */ + +static const struct ScriptCommand s_gs9_g20_s0_eff0_script[] = { /* 0x81a4858 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(1), + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g20_s0_lives0_dlg0[] = { /* 0x81a48c8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000036, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x0000003c, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0004, 0x0000003f, 0x00000000, NULL }, + WAIT(1), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0001, 0x0000000b, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Maybe it's a rescue job\nrequest?!#W\nCome on, what's it say?")), + VARIANT_DEFAULT(_(" Maybe it's a rescue job\noffer!#W\nWhat does it say?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x1e, 0x0000, 0x00000022, 0x00000000, NULL }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 read the letter.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("“BZZ BZZ BZZ!") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I HEARD ABOUT YOU FROM CATERPIE.") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _(" PLEASE. WE NEED YOUR HELP.\n MAGNEMITE IS IN TROUBLE.") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _(" A STRANGE ELECTROMAGNETIC WAVE\n FLOWED THROUGH A DUNGEON...") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _(" AND IT STUCK TOGETHER MAGNEMITE\n AND MAGNEMITE...") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _(" THAT ISN'T ENOUGH TO FORM\n A MAGNETON. IT'S NOT COMPLETE\n THE WAY IT IS NOW.") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _(" PLEASE. WE NEED HELP. BZZ BZZ BZZ.\n\n FROM MAGNEMITE'S FRIEND”") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0f, 0x0001, 0x00000000, 0x00000000, NULL }, + ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" What do you think?\nShould we go for it?")), + VARIANT_DEFAULT(_(" What do you think?\nDo you think we should go?")), + CHOICE(/* label */ 3, _("Yes! Let's go!")), + CHOICE(/* label */ 4, _("Let's not go.")), + LABEL(4), /* = 0x04 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + BGM_STOP, + SELECT_ENTITIES(-1, 1), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + BGM_SWITCH(1), + WAIT(30), + { 0x2e, 0x0f, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hah? Why?")), + VARIANT_DEFAULT(_(" Huh? Why?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" It's our very first job?\nLet's do it!")), + VARIANT_DEFAULT(_(" It's our first job!\nLet's go!")), + CHOICE(/* label */ 3, _("Yes! Let's go!")), + CHOICE(/* label */ 4, _("Let's not go.")), + LABEL(3), /* = 0x03 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + SELECT_ENTITIES(-1, 2), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" That's what I want to hear!\nLet's do this right!")), + VARIANT_DEFAULT(_(" That's the spirit!\nLet's do our best!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x002a, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + +static const struct ScriptCommand s_gs9_g20_s0_lives1_dlg0[] = { /* 0x81a50ac */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000010, 0x00000000, NULL }, + { 0x8e, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g20_s1_lives0_dlg0[] = { /* 0x81a512c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(473), + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0x54, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x0000000a, 0x00000000, NULL }, + WAIT(1), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g20_s2_lives0_dlg0[] = { /* 0x81a51fc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x002a, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g21_s0_station_sref_script[] = { /* 0x81a529c */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g21_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g21_s0_station_sref_script }; /* 0x81a536c */ + +static const struct ScriptCommand s_gs9_g21_s0_lives0_dlg0[] = { /* 0x81a5378 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x0000003c, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Morning, $n0.") }, + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" We sure loused up on\n$n2's rescue yesterday.")), + VARIANT_DEFAULT(_(" We failed $n2's\nrescue badly yesterday, didn't we?")), + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Let's get it done right today!")), + VARIANT_DEFAULT(_(" Let's try to get it right\ntoday!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs9_g21_s0_lives1_dlg0[] = { /* 0x81a55ac */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x0000, 0x00000060, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000060, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g22_s0_station_sref_script[] = { /* 0x81a564c */ + DEBUGINFO, + RET_DIRECT, +}; + +static const struct ScriptRef s_gs9_g22_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs9_g22_s0_station_sref_script }; /* 0x81a566c */ + +static const struct ScriptCommand s_gs9_g22_s1_station_sref_script[] = { /* 0x81a5678 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET, +}; + +static const struct ScriptRef s_gs9_g22_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs9_g22_s1_station_sref_script }; /* 0x81a56a8 */ + +static const struct ScriptCommand s_gs9_g22_s1_lives0_dlg0[] = { /* 0x81a56b4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0!\nThe dungeon isn't that way.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" #CDThunderwave Cave#R is\nover this way!")), + VARIANT_DEFAULT(_(" #CDThunderwave Cave#R is \nout this way.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Let's go rescue Magnemite\nalready!")), + VARIANT_DEFAULT(_(" We have to hurry.\nMagnemite's waiting to be rescued!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g22_s1_lives1_dlg0[] = { /* 0x81a5930 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x95, 0x08, 0x000a, 0x00000011, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g22_s2_station_sref_script[] = { /* 0x81a5a40 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET, +}; + +static const struct ScriptRef s_gs9_g22_s2_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs9_g22_s2_station_sref_script }; /* 0x81a5a70 */ + +static const struct ScriptCommand s_gs9_g22_s2_lives0_dlg0[] = { /* 0x81a5a7c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0!\nThe dungeon isn't that way.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" #CDThunderwave Cave#R is\nover this way!")), + VARIANT_DEFAULT(_(" #CDThunderwave Cave#R is \nout this way.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Let's go rescue Magnemite\nalready!")), + VARIANT_DEFAULT(_(" We have to hurry.\nMagnemite's waiting to be rescued!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g22_s2_lives1_dlg0[] = { /* 0x81a5c1c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x95, 0x08, 0x000a, 0x00000011, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g23_s0_station_sref_script[] = { /* 0x81a5d2c */ + DEBUGINFO, + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(60), + RET, +}; + +static const struct ScriptRef s_gs9_g23_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g23_s0_station_sref_script }; /* 0x81a5dcc */ + +static const struct ScriptCommand s_gs9_g23_s0_lives0_dlg0[] = { /* 0x81a5dd8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Boy, I'm sure glad our\nrescue went well today.")), + VARIANT(/* == */ 3, _(" I'm so glad our rescue\nmission went so well today.")), + VARIANT_DEFAULT(_(" I'm glad our rescue mission\nwent well today.")), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I have to admit, since\nthat was our first job as a rescue team...")), + VARIANT(/* == */ 1, _(" I was really nervous.")), + VARIANT(/* == */ 1, _(" I'm wiped out.\nI'll go home and get some sleep.")), + VARIANT(/* == */ 1, _(" Let's do this again\ntomorrow.\nSee you.")), + VARIANT(/* == */ 3, _(" I need to confess.\nSince that was our first job as a rescue\nteam...")), + VARIANT(/* == */ 3, _(" I was really, really nervous.")), + VARIANT(/* == */ 3, _(" I can't believe how tired\nI am.\nI'm going to go home and get some sleep.")), + VARIANT(/* == */ 3, _(" Let's do good again\ntomorrow.\nSee you!")), + VARIANT_DEFAULT(_(" Actually, since this was our\nfirst job as a proper rescue team...")), + VARIANT_DEFAULT(_(" I was really tense and\nnervous.")), + VARIANT_DEFAULT(_(" I'm exhausted now.\nI've got to go get some sleep.")), + VARIANT_DEFAULT(_(" Let's keep up our good work\ntomorrow.\nSee you.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x0a, 0x0001, 0x00000006, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs9_g23_s0_lives1_dlg0[] = { /* 0x81a62e8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000012, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g24_s0_station_sref_script[] = { /* 0x81a6348 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs9_g24_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs9_g24_s0_station_sref_script }; /* 0x81a6378 */ + +static const struct ScriptCommand s_gs9_g24_s0_obj0_dlg2[] = { /* 0x81a6384 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + CJUMP_DIR_TO_LINK(0), + COND_EQUAL(0, /* to label */ 0), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 checked the Mailbox.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+But there was no mail seeking\n#+help from the rescue team.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_STATION(-1, 25, 0), + HALT, + LABEL(0), /* = 0x00 */ + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+There is a warning tag\n#+on the side of the Mailbox.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+- Open the Mailbox at the front -") }, + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs9_g24_s0_evt0_sref_script[] = { /* 0x81a64b4 */ + DEBUGINFO, + EXECUTE_STATION(-1, 24, 1), + HALT, +}; + +static const struct ScriptRef s_gs9_g24_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs9_g24_s0_evt0_sref_script }; /* 0x81a64e4 */ + +static const struct ScriptCommand s_gs9_g24_s1_station_sref_script[] = { /* 0x81a64f0 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + CANCEL_ENTITIES(-1, 0), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g24_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs9_g24_s1_station_sref_script }; /* 0x81a6550 */ + +static const struct ScriptCommand s_gs9_g24_s1_lives0_dlg0[] = { /* 0x81a655c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Oops!#W\nI'd better check the Mailbox.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000008, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g25_s0_station_sref_script[] = { /* 0x81a6614 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E02B_L002), + RET, +}; + +static const struct ScriptRef s_gs9_g25_s0_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs9_g25_s0_station_sref_script }; /* 0x81a6684 */ + +static const struct ScriptCommand s_gs9_g25_s0_eff0_script[] = { /* 0x81a6690 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(1), + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g25_s0_lives0_dlg0[] = { /* 0x81a6700 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Morning, $n0!\nYou're up early.")), + VARIANT_DEFAULT(_(" Good morning, $n0!\nAren't you up early?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Oh!\nYou checked the Mailbox, did you?")), + VARIANT_DEFAULT(_(" Oh!\nSo, you checked the Mailbox.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...So, what's the word?\nWere there any rescue jobs for us?")), + VARIANT_DEFAULT(_(" ...So, was there anything?\nWere there any rescue requests?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(455), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hah?\nIt was empty?!")), + VARIANT_DEFAULT(_(" Huh?\nEmpty?!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Awww...\nWell, I guess so.")), + VARIANT(/* == */ 1, _(" After all, we only just\nstarted up...")), + VARIANT(/* == */ 3, _(" Hmm...\nI guess so.")), + VARIANT(/* == */ 3, _(" After all, we've only just\nbegun.")), + VARIANT_DEFAULT(_(" Hmm...\nI suppose so.")), + VARIANT_DEFAULT(_(" We've only started, after\nall.")), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Well, no point moping.\nLet's go check Pokémon Square.")), + VARIANT(/* == */ 1, _(" I think there will be jobs\nposted at the #C5Pelipper Post Office#R.")), + VARIANT(/* == */ 1, _(" Pokémon Square's over\nthis way.\nLet's go.")), + VARIANT(/* == */ 3, _(" Oh, well.\nWe should go to Pokémon Square.")), + VARIANT(/* == */ 3, _(" We should check the\n#C5Pelipper#R #C5Post Office#R.\nI think they'll have jobs posted.")), + VARIANT(/* == */ 3, _(" Pokémon Square is over\nhere.\nLet's go.")), + VARIANT_DEFAULT(_(" Well, too bad.\nWant to go to Pokémon Square?")), + VARIANT_DEFAULT(_(" I think if we go to the\n#C5Pelipper#R #C5Post Office#R, there'll be jobs\nposted.")), + VARIANT_DEFAULT(_(" Pokémon Square's over\nthis way.\nLet's go.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(150), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000014, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x000000a0, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs9_g25_s0_lives1_dlg0[] = { /* 0x81a6f34 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000013, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000015, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x000000a0, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g26_s0_station_sref_script[] = { /* 0x81a7064 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g26_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g26_s0_station_sref_script }; /* 0x81a7134 */ + +static const struct ScriptCommand s_gs9_g26_s0_lives0_dlg0[] = { /* 0x81a7140 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000042, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000044, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Morning, $n0!")), + VARIANT_DEFAULT(_(" Good morning, $n0!")), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ............#WHah?!")), + VARIANT_DEFAULT(_(" ............#WHuh?!")), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Someone just asked you to\ngo out on a rescue?")), + VARIANT_DEFAULT(_(" You were just asked to go\non a rescue mission?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Yes!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 1), + WAIT(15), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000004, NULL }, + WAIT(60), + { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Our child, $n3,\nwas kidnapped!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" He was taken to #CDMt. Steel#R's\nsummit!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Please, we need your help!#W\nBye-bye!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(50), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(470), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...#WI see...#W\nI guess we'd better go...")), + VARIANT_DEFAULT(_(" ...#WUh, OK...#W\nLet's go...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + + + +static const struct ScriptCommand s_gs9_g26_s0_lives1_dlg0[] = { /* 0x81a7614 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x0000, 0x00000060, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000060, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000008, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g26_s1_lives0_dlg0[] = { /* 0x81a7744 */ + DEBUGINFO, + { 0x57, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(454), + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(486), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x57, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g27_s0_station_sref_script[] = { /* 0x81a7834 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g27_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g27_s0_station_sref_script }; /* 0x81a7904 */ + +static const struct ScriptCommand s_gs9_g27_s0_lives0_dlg0[] = { /* 0x81a7910 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Morning, $n0.")), + VARIANT(/* == */ 1, _(" We blew it yesterday.\nLet's save that little guy today for sure.")), + VARIANT_DEFAULT(_(" Good morning, $n0.")), + VARIANT_DEFAULT(_(" We couldn't do it yesterday,\nso let's be sure to do this rescue today.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs9_g27_s0_lives1_dlg0[] = { /* 0x81a7ab4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x0000, 0x00000060, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000060, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g28_s0_station_sref_script[] = { /* 0x81a7b54 */ + DEBUGINFO, + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(103), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(90), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(60), + RET, +}; + +static const struct ScriptRef s_gs9_g28_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g28_s0_station_sref_script }; /* 0x81a7bf4 */ + +static const struct ScriptCommand s_gs9_g28_s0_eff0_script[] = { /* 0x81a7c00 */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000019, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g28_s0_lives0_dlg0[] = { /* 0x81a7c70 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0005, 0x00000043, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0e, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ohhh...\nI was very scared.") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Maybe because I was\nsomewhere up so high...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" My feet feel like they're\nstill walking on air...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(470), + CALL_SCRIPT(SWEAT_FUNC), + WAIT(30), + { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" (Feet...?)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0f, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" (HE HAS THEM? FEET?)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Oh, well, you're safe now.\nGood thing, huh?")), + VARIANT_DEFAULT(_(" Well, you're safe now.\nThat's what counts.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.\nThank you very much.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Oh! You've been rescued!\nGreat! Great!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + WAIT_RANDOM(10, 20), + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + WAIT_RANDOM(10, 20), + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(10, 20), + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + WAIT(45), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(QUESTION_FUNC), + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hah? What was that?#W\nWho said that?")), + VARIANT_DEFAULT(_(" Huh? What was that?#W\nAm I hearing voices?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ...Whoops! You can't see us?#W\nThat's terribly rude of us!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 1), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(SHOCK_FUNC), + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Hello. $n4 here.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh! Papa!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" $n2!\nYou had us worried!\nYou're not hurt?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Nope!\nIt was scary, but I'm all right.#W\nIt's all thanks to $n0's team.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Thank you for everything.\nYou're heroes.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" If you want to thank\nanyone, thank our $n3 friends.")), + VARIANT(/* == */ 1, _(" We couldn't have done this\nrescue on our own, right?")), + VARIANT(/* == */ 3, _(" Please thank our\n$n3 friends.")), + VARIANT(/* == */ 3, _(" We couldn't have done this\nrescue by ourselves.")), + VARIANT_DEFAULT(_(" You should be thanking our\n$n3 friends.")), + VARIANT_DEFAULT(_(" This rescue was impossible\nfor us to do on our own.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Oh, how rude of us!\nThank you so much!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" NO, NO.#W\nIT WAS THE ONLY THING TO DO.#W\nAND...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" HOW BOTH OUR EVOLVED\nFORMS ARE JOINED TRIOS...#W\nI FELT A CERTAIN KINSHIP.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" AFTER ALL, POKéMON MUST\nHELP EACH OTHER.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I'm impressed.\nSincerely, thank you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0f, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" We must be going.\n$n0.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n1.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0b, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Thank you.") }, + { 0x2e, 0x0b, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Farewell!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0x3c, 0x2b, 0x0000, 0x00000006, 0x00000001, NULL }, + { 0x3c, 0x2c, 0x0000, 0x00000014, 0x00000001, NULL }, + { 0x3c, 0x2c, 0x0000, 0x00000049, 0x00000001, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(80), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" WE'LL BE ON OUR WAY\nTOO...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Wait a sec!\nHold on!")), + VARIANT_DEFAULT(_(" Oh, wait!\nDon't go away!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" WHAT IS IT?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Listen, um...#W\nHow would you like to join us?")), + VARIANT(/* == */ 3, _(" Um...#W\nWould you like to join our team?")), + VARIANT_DEFAULT(_(" Uh...#W\nWould you like to join our team?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" JOIN YOUR TEAM?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yes.#W\nWe couldn't have done the last job\nif you weren't around, $n3.") }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I thought we would need\nmore help for doing rescues in the future.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0001, 0x00000000, 0x00000000, NULL }, + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" Hey, $n0.\nYou think so too, right?")), + VARIANT_DEFAULT(_(" $n0, don't you\nthink so too?")), + CHOICE(/* label */ 27, _("Yes! More members needed!")), + CHOICE(/* label */ 28, _("We don't need any help.")), + LABEL(28), /* = 0x1c */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" Hah? Why?!\nDon't you want more members?")), + VARIANT_DEFAULT(_(" Huh? Why?!\nDon't you want more members?")), + CHOICE(/* label */ 29, _("Just joking!")), + CHOICE(/* label */ 30, _("Two is plenty.")), + LABEL(29), /* = 0x1d */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0001, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Sheesh!\nDon't joke around like that!\nIt's not funny!")), + VARIANT_DEFAULT(_(" Aww, sheesh.\nDon't joke around.\nIt's not funny.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + JUMP_LABEL(27), + LABEL(30), /* = 0x1e */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But we couldn't have saved\nDiglett by ourselves, right?")), + VARIANT(/* == */ 1, _(" If the $n3 pair\nweren't there to airlift Diglett out,\nwe would've been stuck.")), + VARIANT(/* == */ 1, _(" Or, are you trying to tell\nme that you could've pulled off that\nrescue yourself, $n0?")), + VARIANT(/* == */ 3, _(" But we couldn't have\nrescued Diglett on our own.")), + VARIANT(/* == */ 3, _(" If it weren't for the two\n$n3 to fly Diglett out, we\nwould have been stuck.")), + VARIANT(/* == */ 3, _(" Or, $n0, are you\nsaying that you could have done that\nrescue?")), + VARIANT_DEFAULT(_(" But, you know, we couldn't\nhave rescued Diglett just by ourselves.")), + VARIANT_DEFAULT(_(" If it weren't for the two\n$n3 that flew Diglett out,\nwe would have been helpless.")), + VARIANT_DEFAULT(_(" Or, $n0, you're\nsaying that you could have done that\nrescue by yourself?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" $n0, do you have\na special ability that'd let you do that?")), + VARIANT(/* == */ 3, _(" Do you have some special\nability that would make you say that,\n$n0?")), + VARIANT_DEFAULT(_(" $n0, do you have\nsome special ability that would let\nyou do that?")), + CHOICE(/* label */ 32, _("My body stretches.")), + CHOICE(/* label */ 32, _("I can fly.")), + LABEL(32), /* = 0x20 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" Really? You're serious?#W\n...So how about showing me?")), + VARIANT_DEFAULT(_(" Oh, really?!#W\n...Can you show us?")), + CHOICE(/* label */ 33, _("Sorry, I can't...")), + CHOICE(/* label */ 33, _("I just can't...")), + LABEL(33), /* = 0x21 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000003, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" What the...?\nWhat, you were just joshing me?!\nSheesh!")), + VARIANT(/* == */ 3, _(" Now, look here!\nWere you just making fun of me?!")), + VARIANT_DEFAULT(_(" Aww!\nWere you just making fun of me?!\nSheesh!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + LABEL(27), /* = 0x1b */ + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000009, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" So, come on! How about it?")), + VARIANT(/* == */ 1, _(" Join our rescue team!\nWhat do you say?")), + VARIANT(/* == */ 3, _(" So, will you?")), + VARIANT(/* == */ 3, _(" Will you join our rescue\nteam?")), + VARIANT_DEFAULT(_(" So, how about it?")), + VARIANT_DEFAULT(_(" Will you join us as members\nof our rescue team?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" RESCUE TEAM...#W\nTHAT SOUNDS FUN! BZZ BZZ BZZ!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...BUT...IF YOU NEED US\nTO RUSH OVER TO RESCUES...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" WE NEED SOMEWHERE TO\nLIVE CLOSE BY.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" IS THERE ANYWHERE WE\nCAN LIVE IN THIS AREA?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...Ummm...well...") }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" OH...\nTHERE ISN'T...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" TOO BAD.#W\nSORRY, BUT WE CAN'T JOIN YOU.#W\nSEE YOU! BZZ BZZ BZZ!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0c, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" That is too bad.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I guess we need somewhere\nPokémon can live if we want them to\njoin the rescue team...")), + VARIANT_DEFAULT(_(" It looks like we need to\nfind places for Pokémon to live if we\nwant some to join our rescue team...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I know!#W\nLet's go out to #C5Pokémon Square#R\ntomorrow.")), + VARIANT(/* == */ 1, _(" There's this interesting\nshop called the #C5Wigglytuff Club#R.")), + VARIANT(/* == */ 1, _(" It wasn't open the other\nday when we went to the square.#W\nIt might be open tomorrow, though.")), + VARIANT(/* == */ 1, _(" The shop is next to\n#C5Felicity Bank#R.#W\nUsually, #C6Wigglytuff#R is there.")), + VARIANT(/* == */ 1, _(" We might be able to get\nsome useful information there.")), + VARIANT(/* == */ 1, _(" All right, so that's what\nwe'll do tomorrow.#W\nWe'll go down to Pokémon Square.")), + VARIANT(/* == */ 3, _(" Oh, I know!#W\nWe should go out to #C5Pokémon Square#R\ntomorrow.")), + VARIANT(/* == */ 3, _(" There's an interesting\nshop called the #C5Wigglytuff Club#R.")), + VARIANT(/* == */ 3, _(" There wasn't anyone when\nwe went to the square the other day.#W\nIt might be open tomorrow, though.")), + VARIANT(/* == */ 3, _(" The shop is beside\n#C5Felicity Bank#R.#W\n#C6Wigglytuff#R is usually there.")), + VARIANT(/* == */ 3, _(" We might get some useful\ninformation there.")), + VARIANT(/* == */ 3, _(" So that's tomorrow.#W\nWe'll go to Pokémon Square!")), + VARIANT_DEFAULT(_(" I know!#W\nLet's go out to #C5Pokémon Square#R\ntomorrow.")), + VARIANT_DEFAULT(_(" There's an interesting\nplace called the #C5Wigglytuff Club#R.")), + VARIANT_DEFAULT(_(" It wasn't open the other\nday when we went to the square.#W\nIt should be open tomorrow, though.")), + VARIANT_DEFAULT(_(" It's next door to \n#C5Felicity Bank#R.#W\n#C6Wigglytuff#R is usually there every day.")), + VARIANT_DEFAULT(_(" We may be able to get\nsome information.")), + VARIANT_DEFAULT(_(" OK, that's what we'll do\ntomorrow.#W\nWe'll go to Pokémon Square.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs9_g28_s0_lives1_dlg0[] = { /* 0x81aa778 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + WAIT_RANDOM(10, 20), + { 0x91, 0x04, 0x0002, 0x00000007, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(469), + CALL_SCRIPT(QUESTION_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(0, /* to label */ 0), + FANFARE_PLAY2(482), + CALL_SCRIPT(SHOCK_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(0, /* to label */ 0), + FANFARE_PLAY2(473), + CALL_SCRIPT(SHOCK_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(470), + { 0x54, 0x00, 0x002c, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(472), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0c, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g28_s0_lives2_dlg0[] = { /* 0x81aac28 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(486), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000044, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g28_s0_lives3_dlg0[] = { /* 0x81aade8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT_RANDOM(10, 20), + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT_RANDOM(10, 20), + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT_RANDOM(10, 20), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(QUESTION_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x0000003c, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(0, /* to label */ 0), + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005c, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6b, 0x00, 0x0100, 0x00000018, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g28_s0_lives4_dlg0[] = { /* 0x81ab198 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT_RANDOM(10, 20), + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT_RANDOM(10, 20), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT_RANDOM(10, 20), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(QUESTION_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x0000003c, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(0, /* to label */ 0), + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005c, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000018, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g28_s1_lives0_dlg0[] = { /* 0x81ab488 */ + DEBUGINFO, + { 0x57, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(454), + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(486), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0004, 0x00000042, 0x00000000, NULL }, + { 0x57, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g29_s0_station_sref_script[] = { /* 0x81ab648 */ + DEBUGINFO, + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs9_g29_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g29_s0_station_sref_script }; /* 0x81ab6c8 */ + +static const struct ScriptCommand s_gs9_g29_s0_lives0_dlg0[] = { /* 0x81ab6d4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000052, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000009, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Morning, $n0!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Ahaha!\nWhat's with that dazed and confused look?\nYou look half asleep!")), + VARIANT_DEFAULT(_(" Ahaha!\nWhat's the matter?\nYou haven't woken up yet?")), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...Hah?#W\nYou've been having weird dreams?")), + VARIANT(/* == */ 1, _(" What sort of weird\ndreams?")), + VARIANT_DEFAULT(_(" ...Oh?#W\nYou've been having strange dreams?")), + VARIANT_DEFAULT(_(" What was strange about\nthem?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(16), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 told $n1\n#+about the dreams.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(16), + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hmmm, uh-huh...")), + VARIANT(/* == */ 1, _(" $n0, you said\nyou're really a human, right?")), + VARIANT(/* == */ 1, _(" So I was thinking...")), + VARIANT(/* == */ 1, _(" Maybe those dreams have\nsomething to do with how you became\na Pokémon?")), + VARIANT_DEFAULT(_(" Hmmm, OK...")), + VARIANT_DEFAULT(_(" $n0, you said\nyou're actually a human, right?")), + VARIANT_DEFAULT(_(" So maybe...")), + VARIANT_DEFAULT(_(" Those dreams have some\nconnection to how you became a Pokémon,\n$n0.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" So let me ask you,\n$n0.\nWhat are you thinking?")), + VARIANT(/* == */ 1, _(" Do you want to go back to\nbeing a human?")), + VARIANT_DEFAULT(_(" By the way, $n0.\nWhat do you want to do?")), + VARIANT_DEFAULT(_(" Do you want to turn back\ninto a human?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(16), + { 0x2e, 0x0f, 0x0000, 0x00000004, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...It's true...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(I haven't thought about it much, but...)") }, + ASK2(FALSE, /*default*/ -1, /* speaker */ 0, _("(Do I want to become a human again?)")), + CHOICE(/* label */ 5, _("I'm not sure...")), + CHOICE(/* label */ 6, _("I want to be a human again.")), + LABEL(6), /* = 0x06 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Oh, OK.")), + VARIANT_DEFAULT(_(" Oh, OK.")), + { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I guess that's only natural.")), + VARIANT(/* == */ 1, _(" If you were a human\nto begin with, it's only natural that\nyou'd want to go back to being one.")), + VARIANT_DEFAULT(_(" Well, I suppose so.")), + VARIANT_DEFAULT(_(" Since you were a human to\nbegin with, it's only natural that you\nwould want to go back to being one.")), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" So, tell me.\nWhat sort of a human being were you,\n$n0?")), + VARIANT_DEFAULT(_(" Anyway, when you were\na human, what kind of person were you,\n$n0?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0000, 0x00000004, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(When I was a human...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Huh? What was I like when I was\na human, anyway...?)") }, + FANFARE_PLAY2(470), + CALL_SCRIPT(SWEAT_FUNC), + { 0xe2, 0x00, 0x01d6, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0000, 0x00000005, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(............#W\nNope. I can't remember a thing...)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Oh, wow.\nSo you forgot everything?")), + VARIANT(/* == */ 1, _(" Well, that's all right.\nYou can take your time remembering.")), + VARIANT(/* == */ 1, _(" But you know,\n$n0? I'm positive that you\nwere a good human being.")), + VARIANT(/* == */ 3, _(" Oh, no, you've forgotten?")), + VARIANT(/* == */ 3, _(" It's OK.\nThere's no rush to remember.")), + VARIANT(/* == */ 3, _(" But, $n0?\nI can't picture you as anything but\na good human.")), + VARIANT_DEFAULT(_(" Oh, wow, you've forgotten?")), + VARIANT_DEFAULT(_(" That's OK.\nThere's no rush to remember anything.")), + VARIANT_DEFAULT(_(" But this is you,\n$n0. I'm sure you were a good\nhuman being.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + JUMP_LABEL(9), + LABEL(5), /* = 0x05 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Huh? What's wrong?\nYou can't decide?")), + VARIANT(/* == */ 3, _(" Huh? What's the matter?\nHaving trouble deciding?")), + VARIANT_DEFAULT(_(" Huh? What's wrong?\nIs this a dilemma for you?")), + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Well, I guess so!\nIt's a lot more fun hanging around\nwith me!")), + VARIANT(/* == */ 3, _(" Well, maybe so.\nIt must be more fun for you to be\nhere with me!")), + VARIANT_DEFAULT(_(" Well, I hope so!\nIt sure must be more fun to be here\nwith me!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(60), + LABEL(9), /* = 0x09 */ + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Anyway, I promised we'd\ngo to Pokémon Square today.")), + VARIANT(/* == */ 1, _(" Remember?\nWe're supposed to go ask about how we\ncan add members to our team.")), + VARIANT(/* == */ 1, _(" Let's roll, already.")), + VARIANT_DEFAULT(_(" Anyway, we were supposed\nto go to Pokémon Square today.")), + VARIANT_DEFAULT(_(" Do you remember?\nWe need to get information on how we\ncan add members to the rescue team.")), + VARIANT_DEFAULT(_(" Let's get going.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(120), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000001b, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + +static const struct ScriptCommand s_gs9_g29_s0_lives1_dlg0[] = { /* 0x81aca18 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000001a, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(30), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000001b, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g30_s0_station_sref_script[] = { /* 0x81acb68 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEIN(60, 1), + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g30_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g30_s0_station_sref_script }; /* 0x81acc48 */ + +static const struct ScriptCommand s_gs9_g30_s0_eff0_script[] = { /* 0x81acc54 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x3c, 0x0180, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000001d, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g30_s0_lives0_dlg0[] = { /* 0x81acd04 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Morning!\nLet's keep up our good work today!")), + VARIANT_DEFAULT(_(" Good morning!\nLet's do good again today!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Is this the place?\nWhere that team named #C5$t#R\nis based?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + BGM_SWITCH(10), + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" There's nothing here.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Depressing, isn't it.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x05, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0002, 0x00000000, -0x00000003, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Keh!\nWho'd run a rescue team from a dump\nlike this? Unbelievable.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0e, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" What's with you?")), + VARIANT_DEFAULT(_(" Who are you people?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0004, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Oh!#W\nOver there. A Mailbox〜♪") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x04, 0x0000, 0x0000005b, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh, yeah!\nCheck it out!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0001, 0x00000003, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Whoa, hey!\nWhat do you think you're doing?")), + VARIANT_DEFAULT(_(" Now wait a second!\nWhat do you think you're doing?!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0003, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Yessss!\nRescue job offers!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0004, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Oo-la-la!\nIsn't that rather tasty〜♪") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0f, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We'll have them all.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0001, 0x00000003, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey!#W\nThose rescue jobs were meant for us!")), + VARIANT(/* == */ 1, _(" Don't butt in!")), + VARIANT(/* == */ 3, _(" Wait a second!#W\nThose belong to us!")), + VARIANT(/* == */ 3, _(" Don't butt in!")), + VARIANT_DEFAULT(_(" Stop!#W\nThose were meant for us!")), + VARIANT_DEFAULT(_(" Don't butt in!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Keh!#W\nIt doesn't matter who does it!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0004, 0x00000043, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" We're a rescue team too,\nI'll have you know〜♪") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0003, 0x00000042, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...But all we ever get up\nto is no good.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wanna know how it works?#W\nIf we have the cover of a rescue team,\nwe can get away with so much more!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0004, 0x00000043, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" We have our eyes on\nworld domination〜♪") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wha...#W\nWorld domination?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh!\nYou heard right!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That's why we're raking in\nthe cash and adding to our gang!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The world will be ours!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The rescue team of evil!\nTeam #C5Meanies#R is who we are!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" See you around!\nKekeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x08, 0x0100, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000003, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey! Wait!")), + VARIANT_DEFAULT(_(" Now wait a second!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...They took off.#W\nWhat a bunch of creeps.")), + VARIANT(/* == */ 3, _(" ...They're gone.#W\nWhat a horrible bunch.")), + VARIANT_DEFAULT(_(" ...They took off.#W\nWhat an unbelievable bunch.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000006, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Wah!\nThis is empty!")), + VARIANT_DEFAULT(_(" Oh, no!\nIt is empty!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(473), + CALL_SCRIPT(SHOCK_FUNC), + { 0x6b, 0x00, 0x0200, 0x0000001f, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + WAIT(16), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Those guys cleaned us out!")), + VARIANT_DEFAULT(_(" They took everything!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x06, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000007, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0001, 0x00000009, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" We lucked out!\nPelipper's brought us some more mail!")), + VARIANT(/* == */ 1, _(" We can go back to rescuing.")), + VARIANT_DEFAULT(_(" We're in luck!\nPelipper delivered some mail!")), + VARIANT_DEFAULT(_(" We can go on rescue\nmissions again with this.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000003, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But those guys...\nThey're not getting away with anything\nthe next time I see them.")), + VARIANT_DEFAULT(_(" But those guys...\nThey'd better not try anything if we\nsee them again.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x9d, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs9_g30_s0_lives1_dlg0[] = { /* 0x81ae20c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000001a, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000005, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(SHOCK_FUNC), + WAIT(1), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(457), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe2, 0x00, 0x01c9, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(458), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe2, 0x00, 0x01ca, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(473), + CALL_SCRIPT(SHOCK_FUNC), + WAIT(20), + { 0xe2, 0x00, 0x01d9, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x08, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x10, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(463), + CALL_SCRIPT(NOTICE_FUNC), + WAIT(10), + { 0x6b, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0x90, 0x01, 0x0000, 0x0000001c, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(ANGRY_START_FUNC), + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(ANGRY_END_FUNC), + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g30_s0_lives2_dlg0[] = { /* 0x81ae61c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000001e, 0x00000000, NULL }, + { 0x8e, 0x04, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x0000001f, 0x00000000, NULL }, + { 0x90, 0x01, 0x0000, 0x0000001c, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x00000020, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g30_s0_lives3_dlg0[] = { /* 0x81ae78c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000021, 0x00000000, NULL }, + { 0x8e, 0x04, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x00000022, 0x00000000, NULL }, + { 0x90, 0x01, 0x0000, 0x0000001c, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(463), + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x00000023, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g30_s0_lives4_dlg0[] = { /* 0x81ae8ac */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000024, 0x00000000, NULL }, + { 0x8e, 0x04, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(463), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x00000025, 0x00000000, NULL }, + { 0x90, 0x01, 0x0000, 0x0000001c, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(30), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x00000026, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g30_s0_lives5_dlg0[] = { /* 0x81aea0c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x60, 0x00, 0x0000, 0x00000030, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Flap! Flap!") }, + FANFARE_PLAY2(451), + { 0x6b, 0x00, 0x0100, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x1e, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x68, 0x00, 0x0100, 0x00000008, 0x00000000, NULL }, + FANFARE_STOP2(451), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + WAIT(20), + FANFARE_PLAY2(501), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Clunk! Clunk!") }, + WAIT(60), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(451), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x68, 0x00, 0x0100, 0x00000030, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x1e, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000004, 0x00000000, NULL }, + FANFARE_STOP2(451), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g31_s0_station_sref_script[] = { /* 0x81aec4c */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + CALL_STATION( 32, 0), + BGM_FADEIN(60, 1), + RET, +}; + +static const struct ScriptRef s_gs9_g31_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g31_s0_station_sref_script }; /* 0x81aed3c */ + +static const struct ScriptCommand s_gs9_g31_s0_eff0_script[] = { /* 0x81aed48 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x18, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x20, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x20, 0x0080, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g31_s0_lives0_dlg0[] = { /* 0x81aee18 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Morning, $n0!\nLet's keep up our good work today!")), + VARIANT_DEFAULT(_("")), + VARIANT_DEFAULT(_(" Good morning, $n0!\nLet's do good again today!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" $n0!\n$n1!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hunh? Who's that?")), + VARIANT_DEFAULT(_(" Huh?\nWho was that?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x84, 0x00, 0x0100, 0x00000010, 0x0000001e, NULL }, + { 0x93, 0x04, 0x000a, 0x00000036, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Oh, if it isn't $n5!\nLong time no see!")), + VARIANT_DEFAULT(_(" Oh, $n5?\nHow have you been?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Please!#W\nPlease help my friend!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" What's wrong?")), + VARIANT_DEFAULT(_(" What's the matter?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" I was playing with my\nfriend Metapod...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" But Metapod got lost in the\nwoods...\nHe's still lost out there...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Oh, I see, I see!\nThat does sound bad!\nKekeke!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(10), + WAIT(16), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey! Not you again!")), + VARIANT_DEFAULT(_(" Hey! What do you think\nyou're doing?!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(16), + { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Have no fear!\nWe're here to save your chum Metapod.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000003, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey!\n$n5 came to us for help!")), + VARIANT(/* == */ 3, _(" Wait a second!\n$n5 was asking us to help!")), + VARIANT_DEFAULT(_(" Hold on!\n$n5 came to us for help!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Keh!\nYou think you can do this rescue with\nyour amateur-level skills?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" What?!")), + VARIANT_DEFAULT(_(" What did you say?!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It doesn't matter who does\nthe rescuing, see?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The guy that does the\nrescuing gets to be the hero.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Listen, $n5.\nHow about we do this?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" How about you give the\nreward to the team that brings back your\nchum first?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0f, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" But I...#W\nI don't have any money...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh, don't you worry about\nthat, my little friend!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm sure we can persuade\nyour parents to reward us with interest\nafterward, kekeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh, yeah.#W\nYou can even join our team.\nThere's an offer you can't refuse.") }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" When you join us, \n$n5, we'll let you be a big wheel\nin Team #C5Meanies#R, kekekeke!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That's the deal,\n$n1.\nThe first to rescue wins!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Come on, move!\nLet's get this done, already!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + BGM_FADEOUT(60), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x15, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" ...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Don't worry.\nWe'll save your friend first.")), + VARIANT(/* == */ 3, _(" Don't worry about a thing.\nWe'll rescue your friend first.")), + VARIANT_DEFAULT(_(" Don't worry.\nWe'll save your friend first.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0!#W\nLet's roll, and quick!")), + VARIANT_DEFAULT(_(" $n0!#W\nLet's get going!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs9_g31_s0_lives1_dlg0[] = { /* 0x81b002c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00020000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000001a, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000003, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000036, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + WAIT(10), + { 0x6a, 0x00, 0x0100, -0x00000008, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000036, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0xe2, 0x00, 0x01d1, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(457), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0xe2, 0x00, 0x01c9, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(ANGRY_START_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(ANGRY_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00020000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g31_s0_lives2_dlg0[] = { /* 0x81b02dc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x24, 0x0200, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x08, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(16), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(16), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000020, 0x00000000, NULL }, + WAIT(32), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(28), + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g31_s0_lives3_dlg0[] = { /* 0x81b04bc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x24, 0x0200, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000023, 0x00000000, NULL }, + WAIT(60), + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g31_s0_lives4_dlg0[] = { /* 0x81b057c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x24, 0x0200, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000026, 0x00000000, NULL }, + WAIT(60), + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g31_s0_lives5_dlg0[] = { /* 0x81b063c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000027, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(457), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000004, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g32_s0_station_sref_script[] = { /* 0x81b07ac */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs9_g32_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs9_g32_s0_station_sref_script }; /* 0x81b07dc */ + +static const struct ScriptCommand s_gs9_g32_s0_lives0_dlg0[] = { /* 0x81b07e8 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000400, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g32_s0_lives0_dlg2[] = { /* 0x81b0818 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...What should I do?#W\nI don't have any money, and...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I don't want to join those\n#C5Meanies#R...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Please, $n0,\nhelp us...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs9_g33_s0_station_sref_script[] = { /* 0x81b0924 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g33_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g33_s0_station_sref_script }; /* 0x81b09f4 */ + +static const struct ScriptCommand s_gs9_g33_s0_lives0_dlg0[] = { /* 0x81b0a00 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Morning, $n0.")), + VARIANT(/* == */ 1, _(" We bungled it yesterday.\nWe've got to get it right today.")), + VARIANT_DEFAULT(_(" Good morning, $n0.")), + VARIANT_DEFAULT(_(" We came up short\nyesterday, so let's be sure to do things\nright today.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g33_s0_lives1_dlg0[] = { /* 0x81b0b8c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g34_s0_station_sref_script[] = { /* 0x81b0bec */ + DEBUGINFO, + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(103), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(90), + { 0x23, 0x01, 0x005a, 0x00000000, 0x00000000, NULL }, + WAIT(60), + RET, +}; + +static const struct ScriptRef s_gs9_g34_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g34_s0_station_sref_script }; /* 0x81b0c8c */ + +static const struct ScriptCommand s_gs9_g34_s0_lives0_dlg0[] = { /* 0x81b0c98 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0002, 0x00000042, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This is great!\nWelcome back, $n3!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Thank you, $n2!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(16), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And thank you,\n$n1 and $n0!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But I don't have any money...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" It's OK, OK!\nWe don't need a reward.")), + VARIANT_DEFAULT(_(" Oh, no, no.\nWe don't need a reward.")), + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" It's just great to see\nthat $n3 is back safe and sound.")), + VARIANT_DEFAULT(_(" We're happy to see that\n$n3 is back safe and sound.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#W\nCool...") }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You're even more cool\nthan I thought!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I want to go on rescues\nwhen I grow up!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hahaha!\nThat'd be awesome!\nGo for it!")), + VARIANT_DEFAULT(_(" Hahaha!\nThat would be great!\nChase that dream!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I have an idea!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0, how about we\ndo something right here?")), + VARIANT(/* == */ 1, _(" Why don't we make\na properly impressive rescue team base?")), + VARIANT(/* == */ 3, _(" $n0, why don't\nwe do something right here??")), + VARIANT(/* == */ 3, _(" We should make a proper\nrescue team base here.\nSomething impressive.")), + VARIANT_DEFAULT(_(" $n0, we should\ndo something with this place.")), + VARIANT_DEFAULT(_(" We should make a proper\nrescue team base here.\nSomething impressive.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That's cool!\nA rescue team base is cool!") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + WAIT(4), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I want to work here when\nI grow up!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Me too! Me too!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Haha!\nThat's settled, then!")), + VARIANT_DEFAULT(_(" Haha!\nThat's what we'll do!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Let's make sure we build\nourselves a proper rescue team base!")), + VARIANT(/* == */ 3, _(" Let's be sure to build\nour own rescue team base!")), + VARIANT_DEFAULT(_(" Let's work hard and build\nour own rescue team base!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" $n0 and\n$n1, thank you again!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" See you around.\nTake care going home!")), + VARIANT_DEFAULT(_(" OK, bye!\nBe careful going home.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Sigh...\nWell, we ended up working for free,\nbut that had to be done.")), + VARIANT_DEFAULT(_(" Sigh...\nWell, we ended up working for free,\nbut that was the right thing to do.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And we got to show\nGengar's team a thing or two, so it's all\ngood!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I'm just beat today.\nLet's keep up our good work tomorrow!\nSee you!")), + VARIANT_DEFAULT(_(" That was a tiring day.#W\nLet's do some more good tomorrow!\nSee you!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + +static const struct ScriptCommand s_gs9_g34_s0_lives1_dlg0[] = { /* 0x81b1da4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_STOP2(465), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g34_s0_lives2_dlg0[] = { /* 0x81b2054 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005e, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(455), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(470), + CALL_SCRIPT(SWEAT_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_STOP2(470), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(457), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + WAIT(20), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(458), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + WAIT(5), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x04, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000028, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g34_s0_lives3_dlg0[] = { /* 0x81b2384 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000036, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000028, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g35_s0_station_sref_script[] = { /* 0x81b24b4 */ + DEBUGINFO, + SELECT_MAP(9), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs9_g35_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g35_s0_station_sref_script }; /* 0x81b2534 */ + +static const struct ScriptCommand s_gs9_g35_s0_lives0_dlg0[] = { /* 0x81b2540 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + SELECT_ENTITIES(-1, 1), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0, morning!\nLet's keep up our good work today!")), + VARIANT_DEFAULT(_(" $n0, good morning!\nLet's do good again today!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Umm... Hello?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(469), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh? Who could that be?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(120), + SELECT_ENTITIES(-1, 2), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Umm... Is rescue team\n#C5$t#R here?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" That's right...#W Huh?#W\nWait, aren't you...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + +static const struct ScriptCommand s_gs9_g35_s1_lives0_dlg0[] = { /* 0x81b2854 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000002b, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(QUESTION_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(70), + { 0x86, 0x00, 0x00cc, 0x0000002c, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g35_s2_lives0_dlg0[] = { /* 0x81b2944 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6b, 0x00, 0x0100, 0x0000002d, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g36_s0_station_sref_script[] = { /* 0x81b29c4 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, -1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(1), + SELECT_EVENTS(0, 0), + CALL_STATION( 37, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g36_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g36_s0_station_sref_script }; /* 0x81b2aa4 */ + +static const struct ScriptCommand s_gs9_g36_s0_lives0_dlg0[] = { /* 0x81b2ab0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000055, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I remember now!#W\nYou're the $n2 in Pokémon\nSquare.")), + VARIANT(/* == */ 1, _(" We saw $n3's\nteam accepting your rescue job.")), + VARIANT(/* == */ 3, _(" I remember!#W\nYou're the $n2 in Pokémon\nSquare.")), + VARIANT(/* == */ 3, _(" We saw $n3\nagreeing to do your rescue job.")), + VARIANT_DEFAULT(_(" I remember now!#W\n$n2, we saw you in Pokémon\nSquare.")), + VARIANT_DEFAULT(_(" We watched $n3\nagreeing to take on your rescue job.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.#W\nBut, $n3...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" He hasn't come back yet\nfrom the rescue mission.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(455), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + WAIT(30), + BGM_SWITCH(9), + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Are you serious?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Our friend $n2 got\nwedged between some rocks.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We $n2 can go\nanywhere if we can catch a wind, but...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Even though the skies are\nfilled with thunderclouds, for some\nodd reason, the winds haven't blown.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(469), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Not even a breeze?#W\nThat is strange...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n3's leafy fans\ncan whip up powerful winds.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We thought $n3's\nwind would be able to dislodge our friend,\nbut...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But $n3 hasn't\ncome back...")), + VARIANT(/* == */ 1, _(" It doesn't sound like that\ntough of a rescue...#W\nThat is weird...")), + VARIANT_DEFAULT(_(" But $n3 hasn't\nreturned...?")), + VARIANT_DEFAULT(_(" It doesn't sound like all\nthat challenging of a rescue mission...#W\nIt is strange...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(120), + WAIT(150), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x0c, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT(40), + { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Oh?#W\nThat's the spirit, $n0.#W\nYour look says you won't need to be asked.")), + VARIANT_DEFAULT(_(" Oh?#W That's the spirit,\n$n0.#W\nYour expression tells me you're ready.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" That's it, then!\nWe'll go look for them!")), + VARIANT(/* == */ 3, _(" OK!\nWe'll go look for them!")), + VARIANT_DEFAULT(_(" OK, then!\nWe'll go look for them!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" R-really?\nThank you!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Leave it to us!")), + VARIANT_DEFAULT(_(" No problem!\nYou can count on us!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000001, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Let's get to it,\n$n0!")), + VARIANT_DEFAULT(_(" Let's go, $n0!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + + + + + + + + + +static const struct ScriptCommand s_gs9_g36_s0_lives1_dlg0[] = { /* 0x81b3680 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(QUESTION_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g36_s0_lives2_dlg0[] = { /* 0x81b37f0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(30), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g37_s0_station_sref_script[] = { /* 0x81b38a0 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 0), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs9_g37_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs9_g37_s0_station_sref_script }; /* 0x81b38d0 */ + +static const struct ScriptCommand s_gs9_g37_s0_lives0_dlg0[] = { /* 0x81b38dc */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000400, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g37_s0_lives0_dlg2[] = { /* 0x81b390c */ + DEBUGINFO, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" My friend is stuck in\na place called #CDSilent Chasm#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I hate to burden you,\nbut you're our only hope...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs9_g38_s0_station_sref_script[] = { /* 0x81b39f0 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g38_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g38_s0_station_sref_script }; /* 0x81b3ac0 */ + +static const struct ScriptCommand s_gs9_g38_s0_lives0_dlg0[] = { /* 0x81b3acc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Morning!#W\nLet's try to get things right today!")), + VARIANT_DEFAULT(_(" Good morning!#W\nLet's do our best like always!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g38_s0_lives1_dlg0[] = { /* 0x81b3c24 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g39_s0_station_sref_script[] = { /* 0x81b3c84 */ + DEBUGINFO, + SELECT_MAP(9), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(60), + RET, +}; + +static const struct ScriptRef s_gs9_g39_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g39_s0_station_sref_script }; /* 0x81b3d24 */ + +static const struct ScriptCommand s_gs9_g39_s0_eff0_script[] = { /* 0x81b3d30 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x24, 0x0200, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x1e, 0x0100, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g39_s0_lives0_dlg0[] = { /* 0x81b3de0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yay! Saved!\nI'm so happy!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0003, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" But even though I'm safe,\nShiftry is in trouble...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Tell us.\nWhat went down, exactly?")), + VARIANT_DEFAULT(_(" Please tell us.\nExactly what happened?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...Yes...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Shiftry whipped up winds\nwith his fans...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" And released me from\nbetween the rocks.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" But those winds tore\na thundercloud in two...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" And that was when that\nmonster appeared in the sky.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" That monster...#W\nIt said it was Zapdos or something.")), + VARIANT_DEFAULT(_(" That monster...#W\nIt said it was Zapdos...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + BGM_FADEOUT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Did you say Zapdos?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(466), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n4!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(64), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000003, 0x00000000, NULL }, + BGM_SWITCH(114), + { 0x2e, 0x10, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Zapdos...#W\nIt's one of the legendary bird Pokémon.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I heard it had been\nsleeping for a long time...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" So Shiftry woke it up?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" No.#W\nShiftry's winds were only the trigger.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" To begin with, the absence\nof winds there was unnatural.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" It must have been caused\nby the rash of natural disasters recently.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Zapdos is enraged from\nhaving been awoken from its sleep.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Shiftry must be saved.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" But Zapdos won't be easy.#W\nIts electric attacks are wicked nasty.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0b, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I know that.#W\nWe will need to be cautious.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" We'll go too!\nWe'll go help Shiftry!")), + VARIANT(/* == */ 3, _(" We'll go too!\nWe'll go help Shiftry!")), + VARIANT_DEFAULT(_(" We'll go too!\nWe'll go help Shiftry!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x2e, 0x10, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" What?!#W\nThat is dangerous!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Zapdos is powerful.#W\nIt will be too much for your skill level.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000003, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, now!\nWe're not that wimpy!")), + VARIANT(/* == */ 3, _(" Wait a second!\nWe're not that weak!")), + VARIANT_DEFAULT(_(" Hey!\nWe're not that weak!")), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" And we're not afraid of no\nZapdos!#W\nIsn't that right, $n0?!")), + VARIANT_DEFAULT(_(" Besides, Zapdos doesn't\nscare us.#W\nRight, $n0?")), + CHOICE(/* label */ 15, _("Yup! I'm not scared!")), + CHOICE(/* label */ 16, _("Owowow... My stomach!")), + LABEL(15), /* = 0x0f */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Have you ever been hit\nwith an electric blast?") }, + { 0x2e, 0x15, 0x0006, -0x00000002, 0x00000000, NULL }, + ASK3(FALSE, /*default*/ -1, /* speaker */ 6, _(" It'll leave you stunned and\nshaking!")), + CHOICE(/* label */ 18, _("No problem!")), + CHOICE(/* label */ 16, _("Owowow... My stomach!")), + LABEL(18), /* = 0x12 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Zapdos is wickedly tough!") }, + ASK3(FALSE, /*default*/ -1, /* speaker */ 5, _(" It might gobble you up for\na snack!\nCan you face that?")), + CHOICE(/* label */ 20, _("I'm not scared!")), + CHOICE(/* label */ 16, _("Owowow... My stomach!")), + LABEL(20), /* = 0x14 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000003, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" We're a rescue team too!")), + VARIANT(/* == */ 1, _(" We want to help Shiftry!")), + VARIANT(/* == */ 3, _(" We're a rescue team too!")), + VARIANT(/* == */ 3, _(" We want to help Shiftry!")), + VARIANT_DEFAULT(_(" We're a rescue team too!")), + VARIANT_DEFAULT(_(" We want to help Shiftry!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(21), + LABEL(16), /* = 0x10 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + FANFARE_PLAY2(457), + { 0x56, 0x00, 0x0000, 0x00000047, 0x00000000, NULL }, + { 0x54, 0x00, 0x002d, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" No problem!#W\nMy partner always puts on this act.")), + VARIANT(/* == */ 1, _(" Always faking these\nstomachaches...\nIt's a big headache, I tell you!")), + VARIANT(/* == */ 3, _(" No problem!#W\n$n0 always puts on this act.")), + VARIANT(/* == */ 3, _(" Always faking a\nstomachache...\nIt gets to be annoying.")), + VARIANT_DEFAULT(_(" No problem!#W\n$n0 always does this act.")), + VARIANT_DEFAULT(_(" It's always a fake\nstomachache.\nIt bugs me a little.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(470), + CALL_SCRIPT(SWEAT_FUNC), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(30), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" We're a rescue team too!")), + VARIANT(/* == */ 1, _(" We want to help Shiftry!")), + VARIANT(/* == */ 3, _(" We're a rescue team too!")), + VARIANT(/* == */ 3, _(" We want to help Shiftry!")), + VARIANT_DEFAULT(_(" We're a rescue team too!")), + VARIANT_DEFAULT(_(" We want to help Shiftry!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(21), /* = 0x15 */ + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0x2e, 0x10, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ......") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Fine.#W\nI see that you have courage.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(455), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yes!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x10, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Our two teams should make\nour ways separately through #CDMt. Thunder#R.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" We will go when we have\ngeared up for battle.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Knowing how strong our\nopponent is, we have no choice but to\nbe cautious.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You should make way for\n#CDMt. Thunder#R only when you are fully\nprepared.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Our objective is to rescue\nShiftry!\nLet us find success!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Yes!\nI'm getting stoked for this!")), + VARIANT_DEFAULT(_(" Yes!\nI'm getting excited over this!")), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0!\nLet's give it our best, partner!")), + VARIANT(/* == */ 3, _(" $n0!\nLet's do good!")), + VARIANT_DEFAULT(_(" $n0!\nLet's do our best!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x002a, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs9_g39_s0_lives1_dlg0[] = { /* 0x81b56f0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x00000007, 0x00000000, NULL }, + WAIT(1), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 0, /* to label */ 0), + { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, + WAIT(16), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x00000007, 0x00000000, NULL }, + WAIT(1), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x002a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g39_s0_lives2_dlg0[] = { /* 0x81b59c0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(30), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g39_s0_lives3_dlg0[] = { /* 0x81b5b60 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g39_s0_lives4_dlg0[] = { /* 0x81b5c80 */ + DEBUGINFO, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x58, 0x0100, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x04, 0x0002, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g39_s0_lives5_dlg0[] = { /* 0x81b5da0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x58, 0x0100, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0002, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, -0x00000005, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g39_s0_lives6_dlg0[] = { /* 0x81b5ea0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x58, 0x0100, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, -0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g40_s0_station_sref_script[] = { /* 0x81b5f60 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g40_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g40_s0_station_sref_script }; /* 0x81b6030 */ + +static const struct ScriptCommand s_gs9_g40_s0_lives0_dlg0[] = { /* 0x81b603c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000055, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Morning, $n0!\nGet a good night's sleep?")), + VARIANT_DEFAULT(_(" Good morning, $n0!\nDid you sleep well?")), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" So now...#W\nWe're supposed to be rescuing Shiftry at\n#CDMt. Thunder#R, right?")), + VARIANT(/* == */ 1, _(" But Alakazam said we should\nbe prepared before going...")), + VARIANT(/* == */ 1, _(" What do you think?#W\nWe can go off to #CDMt. Thunder#R right away,\nor we can put it off. It's your choice.")), + VARIANT(/* == */ 1, _(" But whatever we do today,\nlet's give it our best like always!")), + VARIANT_DEFAULT(_(" OK...#W\nWe should be heading to #CDMt. Thunder#R to\ndo the Shiftry rescue, right?")), + VARIANT_DEFAULT(_(" But Alakazam said that we\nshould be properly prepared before we\ntry...")), + VARIANT_DEFAULT(_(" What should we do?#W\nWe can go to #CDMt. Thunder#R right now\nor later. It's up to you.")), + VARIANT_DEFAULT(_(" But anyway, let's do our\nbest like always!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs9_g40_s0_lives1_dlg0[] = { /* 0x81b64a8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x60, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g41_s0_station_sref_script[] = { /* 0x81b6528 */ + DEBUGINFO, + RET_DIRECT, +}; + +static const struct ScriptRef s_gs9_g41_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs9_g41_s0_station_sref_script }; /* 0x81b6548 */ + +static const struct ScriptCommand s_gs9_g42_s0_station_sref_script[] = { /* 0x81b6554 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g42_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g42_s0_station_sref_script }; /* 0x81b6624 */ + +static const struct ScriptCommand s_gs9_g42_s0_lives0_dlg0[] = { /* 0x81b6630 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Morning!#W\nLet's keep giving it our best!")), + VARIANT_DEFAULT(_(" Good morning!#W\nLet's do our best like always!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g42_s0_lives1_dlg0[] = { /* 0x81b6750 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g43_s0_station_sref_script[] = { /* 0x81b67b0 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g43_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g43_s0_station_sref_script }; /* 0x81b6880 */ + +static const struct ScriptCommand s_gs9_g43_s0_eff0_script[] = { /* 0x81b688c */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x28, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g43_s0_lives0_dlg0[] = { /* 0x81b690c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0, morning!")), + VARIANT(/* == */ 1, _(" I did a little checking\naround yesterday.")), + VARIANT(/* == */ 1, _(" The #C5Hill of the Ancients#R\nis in the #CDGreat Canyon#R.")), + VARIANT(/* == */ 1, _(" So let's roll!\nOff we go to the #CDGreat Canyon#R!")), + VARIANT_DEFAULT(_(" $n0, good morning!")), + VARIANT_DEFAULT(_(" Yesterday, I did some\nchecking around.")), + VARIANT_DEFAULT(_(" It turns out that the\n#C5Hill of the Ancients#R is apparently in\nthe #CDGreat Canyon#R.")), + VARIANT_DEFAULT(_(" We should go there right\naway!\nOff to the #CDGreat Canyon#R!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" Huh? What's up with you?")), + VARIANT_DEFAULT(_(" Huh? What's the matter?")), + CHOICE(/* label */ 1, _("Listen, $n1.")), + CHOICE(/* label */ 2, _("It's OK, it's nothing.")), + LABEL(1), /* = 0x01 */ + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Huh?")), + VARIANT_DEFAULT(_(" Huh?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(3), + LABEL(2), /* = 0x02 */ + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Huh?")), + VARIANT(/* == */ 1, _(" Didn't you want to ask me\nsomething?")), + VARIANT(/* == */ 3, _(" Huh?")), + VARIANT(/* == */ 3, _(" Weren't you going to ask\nme something?")), + VARIANT_DEFAULT(_(" Huh?")), + VARIANT_DEFAULT(_(" Weren't you about to ask\nme something?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" So what's the matter?\nGet it off your chest.")), + VARIANT(/* == */ 3, _(" What's wrong?\nDon't you want to talk about it?")), + VARIANT_DEFAULT(_(" What's the matter?\nGo on, say it.")), + CHOICE(/* label */ 4, _("Why do you try so hard?")), + CHOICE(/* label */ 4, _("Why are you so happy?")), + LABEL(3), /* = 0x03 */ + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" What's that?")), + VARIANT_DEFAULT(_(" Huh?")), + CHOICE(/* label */ 4, _("Why do you try so hard?")), + CHOICE(/* label */ 4, _("Why are you so happy?")), + LABEL(4), /* = 0x04 */ + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 3, _(" Why...?#W\nYou need to ask me that?")), + VARIANT_DEFAULT(_(" Why...?#W\nWhat, you need to ask?")), + CHOICE(/* label */ 6, _("It's not for you...")), + CHOICE(/* label */ 7, _("It's for someone else...")), + LABEL(6), /* = 0x06 */ + { 0x2e, 0x02, 0x0001, 0x00000009, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Well, sure.")), + VARIANT(/* == */ 1, _(" It lets me try harder to do\nmy best because it's not about me.")), + VARIANT(/* == */ 1, _(" You and me--we're friends,\nright, $n0?")), + VARIANT(/* == */ 3, _(" That's why.")), + VARIANT(/* == */ 3, _(" Because it's not about me,\nI can try that much harder to do my best.")), + VARIANT(/* == */ 3, _(" We're friends, aren't we,\n$n0?")), + VARIANT_DEFAULT(_(" You said it.")), + VARIANT_DEFAULT(_(" It lets me try harder to do\nmy best because it's not about me.")), + VARIANT_DEFAULT(_(" We're friends, aren't we,\n$n0?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I want to do my best\nbecause it's for you, $n0.")), + VARIANT(/* == */ 3, _(" I want to do my best\nbecause it's for you, $n0.")), + VARIANT_DEFAULT(_(" I want to do my best\nbecause it's for you, $n0.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + { 0x2e, 0x02, 0x0001, 0x00000009, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" For someone else?\nNow that's cold.")), + VARIANT(/* == */ 1, _(" You and me--we're friends,\nright, $n0?")), + VARIANT(/* == */ 3, _(" For someone else?\nNow isn't that cold?")), + VARIANT(/* == */ 3, _(" We're friends, aren't we,\n$n0?")), + VARIANT_DEFAULT(_(" Someone else?\nCome on, what do you think I am?")), + VARIANT_DEFAULT(_(" We're friends, aren't we,\n$n0?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I want to do my best\nbecause it's for you, $n0.")), + VARIANT(/* == */ 3, _(" I want to do my best\nbecause it's for you, $n0.")), + VARIANT_DEFAULT(_(" I want to do my best\nbecause it's for you, $n0.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" That's what it's about.\nSo anyway, let's give it our best as\nusual!")), + VARIANT_DEFAULT(_(" That's what this is about.\nSo, as always, let's try our best to \ndo well!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + + +static const struct ScriptCommand s_gs9_g43_s0_lives1_dlg0[] = { /* 0x81b7674 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000002e, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0099, 0x0000002f, 0x00000000, NULL }, + FANFARE_PLAY2(463), + CALL_SCRIPT(NOTICE_FUNC), + WAIT(30), + FANFARE_STOP2(463), + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + CALL_SCRIPT(QUESTION_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g44_s0_station_sref_script[] = { /* 0x81b77e4 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g44_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g44_s0_station_sref_script }; /* 0x81b78b4 */ + +static const struct ScriptCommand s_gs9_g44_s0_lives0_dlg0[] = { /* 0x81b78c0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Morning, $n0!")), + VARIANT(/* == */ 1, _(" Like always, let's give\nit our best!")), + VARIANT_DEFAULT(_(" Good morning, $n0!")), + VARIANT_DEFAULT(_(" Let's do our best like we\nalways do!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g44_s0_lives1_dlg0[] = { /* 0x81b7a14 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g45_s0_station_sref_script[] = { /* 0x81b7a74 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g45_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g45_s0_station_sref_script }; /* 0x81b7b44 */ + +static const struct ScriptCommand s_gs9_g45_s0_lives0_dlg0[] = { /* 0x81b7b50 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000061, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Morning, $n0!")), + VARIANT(/* == */ 1, _(" Let's keep doing our best...#W\nActually, I need to ask you something.")), + VARIANT_DEFAULT(_(" Good morning, $n0!")), + VARIANT_DEFAULT(_(" Let's keep on doing good...#W\nActually, I want to ask you something.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" Remember what\n$n3 said yesterday?#W\nDoes it bother you?")), + VARIANT_DEFAULT(_(" What do you think about\nwhat $n3 said yesterday?#W\nDoes it bother you?")), + CHOICE(/* label */ 0, _("Yes.")), + CHOICE(/* label */ 1, _("No.")), + LABEL(0), /* = 0x00 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Yeah, I guess so.\nIt would bother you too, $n0.")), + VARIANT(/* == */ 1, _(" He said that there is a link\nbetween the world's balance being upset\nand how you became a Pokémon...")), + VARIANT(/* == */ 1, _(" And how the upset balance\nis causing natural disasters...")), + VARIANT(/* == */ 1, _(" And, worst of all, he said\nhow our world will be ruined if the\nbalance isn't restored.")), + VARIANT_DEFAULT(_(" Yes, I guess you would be\nconcerned too, $n0.")), + VARIANT_DEFAULT(_(" There's supposed to be\na link between the world's balance being\nupset and how you became a Pokémon...")), + VARIANT_DEFAULT(_(" And because of the world's\nupset balance, natural disasters have been\noccurring...")), + VARIANT_DEFAULT(_(" And more than anything,\nhe said that the world will be ruined\nif the balance isn't restored...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hah?!\nIt doesn't have anything to do with you?!")), + VARIANT(/* == */ 1, _(" $n0!\nThat's not funny!")), + VARIANT(/* == */ 1, _(" The world might be\ndestroyed!")), + VARIANT(/* == */ 1, _(" And how you became a\nPokémon, $n0...\nThat's all supposed to be related!")), + VARIANT_DEFAULT(_(" Huh?!\nIt doesn't concern you?!")), + VARIANT_DEFAULT(_(" $n0!\nDon't joke around--it's not funny!")), + VARIANT_DEFAULT(_(" The world might be\ndestroyed!")), + VARIANT_DEFAULT(_(" And how you became a\nPokémon, $n0...\nThat's all supposed to be related!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Oh!\n...I get it.")), + VARIANT(/* == */ 1, _(" On second thought, you must\nbe more worried than I am,\n$n0...")), + VARIANT(/* == */ 1, _(" You're in the middle of this.\nOf course you're worried...")), + VARIANT(/* == */ 1, _(" Sorry, $n0.\nI wasn't thinking.")), + VARIANT(/* == */ 3, _(" Oh!\n...I understand now.")), + VARIANT(/* == */ 3, _(" How stupid of me...\nOf course you would be more worried\nthan I am, $n0...")), + VARIANT(/* == */ 3, _(" You're involved in all of\nthis.\nIt's only natural you'd be worried...")), + VARIANT(/* == */ 3, _(" Sorry, $n0.\nIt was inconsiderate of me.")), + VARIANT_DEFAULT(_(" Oh!\n...I get it.")), + VARIANT_DEFAULT(_(" I wasn't thinking.\nYou should be more worried than I am,\n$n0...")), + VARIANT_DEFAULT(_(" You're in the middle of this.\nOf course you're worried...")), + VARIANT_DEFAULT(_(" I'm sorry, $n0.\nI should have realized...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x02, 0x0001, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n3 said the world\nwill be destroyed if nothing's done...")), + VARIANT_DEFAULT(_(" $n3 said that the\nworld will be ruined if nothing is done...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I want to do something...#W\nBut I don't really get it...")), + VARIANT(/* == */ 1, _(" Tell me.\nThe world's balance...#W\nWhat is that?")), + VARIANT_DEFAULT(_(" I want to do something...#W\nBut there's something I don't understand.")), + VARIANT_DEFAULT(_(" So, uh...\nThe world's balance...#W\nWhat is it?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + ASK3(FALSE, /*default*/ -1, /* speaker */ 1, _(" $n0, do you know?\nWhat the world's balance is?")), + CHOICE(/* label */ 3, _("Of course.")), + CHOICE(/* label */ 4, _("Don't know.")), + CLEAR_ARRAY(EVENT_LOCAL), + LABEL(3), /* = 0x03 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Oh, really?!#W\n$n0, you know?!")), + VARIANT_DEFAULT(_(" Oh, really?!#W\n$n0, you know?!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CLEAR_ARRAY(EVENT_LOCAL), + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" So, what is it?\nWhat is the world's balance?")), + VARIANT_DEFAULT(_(" Please, tell me.\nWhat is the world's balance?")), + CHOICE(/* label */ 5, _("It's in space.")), + CHOICE(/* label */ 6, _("Sorry. I don't know.")), + LABEL(5), /* = 0x05 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + FANFARE_PLAY2(473), + { 0x54, 0x00, 0x002a, 0x00000000, 0x00000000, NULL }, + WAIT(100), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" In space...?#W\nLike where the stars and the moon are?\nThat space?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hmm...\nI'm getting even more confused here...")), + VARIANT_DEFAULT(_(" Hmm...\nI'm getting even more confused...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CLEAR_ARRAY(EVENT_LOCAL), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" So, the world's balance is\nwhere out in space?")), + VARIANT_DEFAULT(_(" OK, so where exactly in\nspace is the world's balance?")), + CHOICE(/* label */ 7, _("If you go, you'll see.")), + CHOICE(/* label */ 6, _("Sorry. I don't know.")), + LABEL(7), /* = 0x07 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hah?!#W\nGo out to space?!")), + VARIANT_DEFAULT(_(" Huh?!#W\nGo out to space?!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CLEAR_ARRAY(EVENT_LOCAL), + { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" How are we supposed to do\nthat?!")), + VARIANT_DEFAULT(_(" And how do we go out to\nspace?!")), + CHOICE(/* label */ 8, _("Fly there.")), + CHOICE(/* label */ 9, _("On guts.")), + LABEL(8), /* = 0x08 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hah?!\nNo way! I can't fly!")), + VARIANT(/* == */ 3, _(" Huh?!\nHow am I supposed to fly?!")), + VARIANT_DEFAULT(_(" Huh?!\nI can't fly!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + SELECT_LIVES(-1, 1), + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey! $n2!")), + VARIANT(/* == */ 1, _(" You came at the right time!#W\nWe want you to carry us out to space...")), + VARIANT(/* == */ 3, _(" Oh! $n2!")), + VARIANT(/* == */ 3, _(" You came at the right time!#W\nI was wondering if you could carry us\nout to space...")), + VARIANT_DEFAULT(_(" Oh! $n2!")), + VARIANT_DEFAULT(_(" Just who we need!#W\nYou see, we're wondering if you could\ncarry us to space...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" No way!\nNot a chance!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000003, 0x00000000, NULL }, + ASK3(FALSE, /*default*/ -1, /* speaker */ 1, _(" ........................")), + CHOICE(/* label */ 10, _("It appears to be impossible...")), + CHOICE(/* label */ 10, _("It's impossible, after all...")), + LABEL(10), /* = 0x0a */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000003, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" What is it with you?!\nGoofing around like that!")), + VARIANT(/* == */ 1, _(" Think a little more before\nyou say anything!")), + VARIANT_DEFAULT(_(" What's wrong with you?!\nSaying all these ridiculous things!")), + VARIANT_DEFAULT(_(" I wish you'd be more\nconsiderate before making jokes!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" So, you don't know anything\nat all, $n0...")), + VARIANT_DEFAULT(_(" So, you don't know either,\n$n0...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(11), + LABEL(9), /* = 0x09 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0x54, 0x00, 0x0029, 0x00000000, 0x00000000, NULL }, + WAIT(100), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000003, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" What do you mean, guts?!")), + VARIANT(/* == */ 1, _(" If that's all it took, we\nwouldn't be talking about it!")), + VARIANT_DEFAULT(_(" What are you saying?!\nGuts?!")), + VARIANT_DEFAULT(_(" If that's all it took,\nnone of this would be necessary!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" So, you don't know anything\nat all, $n0...")), + VARIANT_DEFAULT(_(" So, you don't know either,\n$n0...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(11), + LABEL(6), /* = 0x06 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000003, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" What?!\nThat's really lame!")), + VARIANT(/* == */ 1, _(" Cut it out!")), + VARIANT_DEFAULT(_(" Sheesh!\nThat is so lame!")), + VARIANT_DEFAULT(_(" Don't joke around like that!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...But, yeah, I guess it's\nimpossible to tell what it is...")), + VARIANT_DEFAULT(_(" ...But I guess it isn't\npossible to know what it is...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(11), + LABEL(4), /* = 0x04 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...OK.#W\nYeah, I guess so.\nIt'd be impossible to know.")), + VARIANT_DEFAULT(_(" ...OK.#W\nI guess so. You wouldn't know.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(11), /* = 0x0b */ + { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I don't have a clue what\nthe world's balance is about...")), + VARIANT(/* == */ 1, _(" Honest, I don't know what\nto do...")), + VARIANT_DEFAULT(_(" I can't imagine what the\nworld's balance is about...")), + VARIANT_DEFAULT(_(" To be honest, I don't know\nwhat we should do...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I guess we'll just have to\ndo what we can.")), + VARIANT(/* == */ 1, _(" One thing at a time...")), + VARIANT(/* == */ 3, _(" Well, I guess we'll have to\nkeep doing what we can.")), + VARIANT(/* == */ 3, _(" One thing at a time...")), + VARIANT_DEFAULT(_(" I guess we'll just have to\ndo what we can.")), + VARIANT_DEFAULT(_(" One thing at a time...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g45_s0_lives1_dlg0[] = { /* 0x81b9ee8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000002e, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 0, /* to label */ 0), + FANFARE_PLAY2(455), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 0, /* to label */ 2), + FANFARE_PLAY2(463), + CALL_SCRIPT(SHOCK_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 0, /* to label */ 4), + FANFARE_PLAY2(470), + CALL_SCRIPT(SWEAT_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 0, /* to label */ 4), + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 0, /* to label */ 5), + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(470), + { 0x54, 0x00, 0x002c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(471), + CALL_SCRIPT(ANGRY_START_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(ANGRY_END_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(2), + LABEL(5), /* = 0x05 */ + FANFARE_PLAY2(471), + CALL_SCRIPT(ANGRY_START_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(ANGRY_END_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + LABEL(4), /* = 0x04 */ + FANFARE_PLAY2(471), + CALL_SCRIPT(ANGRY_START_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(ANGRY_END_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + LABEL(2), /* = 0x02 */ + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + + + + +static const struct ScriptCommand s_gs9_g45_s1_lives0_dlg0[] = { /* 0x81ba378 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x60, 0x00, 0x0000, 0x00000030, 0x00000000, NULL }, + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Flap! Flap!") }, + FANFARE_PLAY2(451), + { 0x6b, 0x00, 0x0100, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x1e, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x68, 0x00, 0x0100, 0x00000008, 0x00000000, NULL }, + FANFARE_STOP2(451), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(470), + CALL_SCRIPT(SWEAT_FUNC), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(451), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x68, 0x00, 0x0100, 0x00000030, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x1e, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000004, 0x00000000, NULL }, + FANFARE_STOP2(451), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g46_s0_station_sref_script[] = { /* 0x81ba5b8 */ + DEBUGINFO, + SELECT_MAP(9), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(90), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(90), + RET, +}; + +static const struct ScriptRef s_gs9_g46_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g46_s0_station_sref_script }; /* 0x81ba658 */ + +static const struct ScriptCommand s_gs9_g46_s0_lives0_dlg0[] = { /* 0x81ba664 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000061, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x2e, 0x03, 0x0001, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I'm sorry.\nSorry for wanting to go home before\ngetting the job done.")), + VARIANT(/* == */ 1, _(" But I just can't get into it.")), + VARIANT(/* == */ 1, _(" I guess it's because I heard\nthat story.\nAhahaha...")), + VARIANT(/* == */ 1, _(" I'm going to call it a day\nand get some sleep.")), + VARIANT(/* == */ 1, _(" I'll see you tomorrow.")), + VARIANT_DEFAULT(_(" I'm sorry.\nFor wanting to go home before we're done.")), + VARIANT_DEFAULT(_(" But I just can't seem to\nget motivated.")), + VARIANT_DEFAULT(_(" I guess it's because I heard\nthat story.\nAhahaha...")), + VARIANT_DEFAULT(_(" I'll go home and try to get\nsome sleep.")), + VARIANT_DEFAULT(_(" I'll see you tomorrow.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(160), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x0c, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x1e, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0001, 0x00000007, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0!\nSorry!")), + VARIANT(/* == */ 3, _(" $n0!\nSorry!")), + VARIANT_DEFAULT(_(" $n0!\nSorry!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe2, 0x00, 0x01d1, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I started doubting you\na little, $n0...")), + VARIANT(/* == */ 3, _(" I started doubting you\na little, $n0...")), + VARIANT_DEFAULT(_(" I started doubting you\na little, $n0...")), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But I've made up my mind.")), + VARIANT(/* == */ 1, _(" I'm going to believe in you,\n$n0.")), + VARIANT(/* == */ 1, _(" Because you're my friend,\n$n0.\nAn important friend.")), + VARIANT(/* == */ 1, _(" Yes, a really important...#W\nfriend...")), + VARIANT(/* == */ 3, _(" I'm not going to worry\nanymore.")), + VARIANT(/* == */ 3, _(" I believe in you,\n$n0.")), + VARIANT(/* == */ 3, _(" Because...\nYou're a friend like no other,\n$n0.")), + VARIANT(/* == */ 3, _(" You're an invaluable...#W\nfriend...")), + VARIANT_DEFAULT(_(" But I'm not going to worry\nanymore.")), + VARIANT_DEFAULT(_(" I believe in you,\n$n0.")), + VARIANT_DEFAULT(_(" Because you're a friend\nlike no other, $n0.")), + VARIANT_DEFAULT(_(" You're a friend...#W\nLike I'd never get again...")), + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" All right, $n0!\nLet's get back to doing our best tomorrow!")), + VARIANT(/* == */ 3, _(" OK, $n0!\nLet's try our best to do well tomorrow!")), + VARIANT_DEFAULT(_(" OK, $n0!\nLet's do our best tomorrow like always!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0c, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(150), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g46_s0_lives1_dlg0[] = { /* 0x81baf28 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0080, 0x00000030, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0099, 0x00000031, 0x00000000, NULL }, + WAIT(90), + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x00000004, 0x00000000, NULL }, + WAIT(1), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000032, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g47_s0_station_sref_script[] = { /* 0x81bb078 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g47_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g47_s0_station_sref_script }; /* 0x81bb148 */ + +static const struct ScriptCommand s_gs9_g47_s0_lives0_dlg0[] = { /* 0x81bb154 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000052, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000009, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Morning, $n0!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...Huh?#W\nYou look pale.\nWhat's up with you?")), + VARIANT_DEFAULT(_(" ...Oh?#W\nYou look pale.\nIs something the matter?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Well, anyway.\nLet's give it our best like always!")), + VARIANT_DEFAULT(_(" Well, anyway.\nAs always, let's try to do our best!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, yeah!") }, + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" When I was on the way\nhere, I think there was a commotion at\nPokémon Square.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wonder if something\nhappened...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs9_g47_s0_lives1_dlg0[] = { /* 0x81bb4d0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x0000, 0x00000060, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000060, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g48_s0_station_sref_script[] = { /* 0x81bb5b0 */ + DEBUGINFO, + SELECT_MAP(9), + SELECT_ENTITIES(-1, -1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs9_g48_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g48_s0_station_sref_script }; /* 0x81bb620 */ + +static const struct ScriptCommand s_gs9_g48_s0_eff0_script[] = { /* 0x81bb62c */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x00b3, 0x00000014, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0080, -0x00000018, 0x00000000, NULL }, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g48_s0_lives0_dlg0[] = { /* 0x81bb6cc */ + DEBUGINFO, + { 0x57, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0006, 0x00000063, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0007, 0x00000052, 0x00000000, NULL }, + { 0x59, 0x00, 0x00a0, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6a, 0x00, 0x0300, -0x000000a0, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(150), + { 0x2e, 0x14, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Gasp, gasp...#W\nWow, that was a real shock!") }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x0002, 0x00000022, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I never expected everyone\nto attack us like that.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But, hey, $n0.")), + VARIANT_DEFAULT(_(" But listen, $n0.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000003, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Why didn't you say anything?")), + VARIANT(/* == */ 1, _(" Why didn't you say it's not\nyou?!")), + VARIANT_DEFAULT(_(" Why didn't you say anything?")), + VARIANT_DEFAULT(_(" Why didn't you argue that\nit's not you?!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" Why didn't you say you're\nnot the human that appears in the legend\nof $n6?")), + VARIANT_DEFAULT(_(" You should have said you're\nnot the human that appears in the legend\nof $n6!")), + CHOICE(/* label */ 1, _("...Listen, $n1.")), + CHOICE(/* label */ 1, _("...Hey, $n1.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + LABEL(1), /* = 0x01 */ + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" Hah?\nWhat's up?")), + VARIANT_DEFAULT(_(" Huh?\nWhat is it?")), + CHOICE(/* label */ 2, _("Want to end the team?")), + CHOICE(/* label */ 3, _("I'm tired of this...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + LABEL(2), /* = 0x02 */ + FANFARE_PLAY2(473), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Wh-what's the matter now?\nWhat are you saying all of a sudden?")), + VARIANT(/* == */ 1, _(" Give up our rescue team?#W\nThat doesn't sound like you, $n0.")), + VARIANT(/* == */ 1, _(" What's up with that?")), + VARIANT_DEFAULT(_(" Wh-what's the matter?\nWhat makes you say that all of a sudden?")), + VARIANT_DEFAULT(_(" Give up on our rescue\nteam?#W\nIt's not like you to say that, $n0.")), + VARIANT_DEFAULT(_(" Is something the matter?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(4), + LABEL(3), /* = 0x03 */ + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hah? You're tired?\nWhat are you saying?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x54, 0x00, 0x0800, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(473), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...Hah?#W\nYou're saying you don't deserve to be on\nour rescue team?!")), + VARIANT(/* == */ 1, _(" What's wrong with you?!#W\nWhy are you saying that?!")), + VARIANT(/* == */ 1, _(" It's not like you at all,\n$n0!#W\nWhat happened to you?!")), + VARIANT_DEFAULT(_(" ...Huh?!#W\nYou don't think you deserve to be on our\nrescue team?!")), + VARIANT_DEFAULT(_(" What's wrong?!#W\nWhat makes you say that?!")), + VARIANT_DEFAULT(_(" That doesn't sound like you\nat all, $n0.#W\nTell me, what's the matter?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(4), + LABEL(4), /* = 0x04 */ + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x54, 0x00, 0x0800, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............#WHuh?\nYou had a dream?") }, + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And $n7 appeared\nin it?") }, + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...And that made you think\nthat maybe you were that human after\nall...") }, + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...So that's what it is.\nThat's what happened...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000003, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, $n0!")), + VARIANT(/* == */ 1, _(" That doesn't mean you\nremembered what you were like as\na human, does it?")), + VARIANT(/* == */ 1, _(" So you don't know what\nactually happened!")), + VARIANT(/* == */ 3, _(" Listen, $n0!")), + VARIANT(/* == */ 3, _(" You didn't remember\nwhat you were like as a human being,\ndid you?")), + VARIANT(/* == */ 3, _(" So you don't know what\nreally happened.")), + VARIANT_DEFAULT(_(" Listen, $n0.")), + VARIANT_DEFAULT(_(" Did your dream make\nyou remember what you were like as a\nhuman being?")), + VARIANT_DEFAULT(_(" Since it didn't, you don't\nknow what really happened.")), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I...#W\nYou know that I believe in you,\n$n0, right?")), + VARIANT(/* == */ 1, _(" So...")), + VARIANT(/* == */ 3, _(" I...#W\nI believe in you, $n0.\nYou know that, right?")), + VARIANT(/* == */ 3, _(" So...")), + VARIANT_DEFAULT(_(" I...#W\nI have faith in you, $n0.\nYou know that?")), + VARIANT_DEFAULT(_(" So...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 1), + WAIT(90), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe5, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" After that scene in\nPokémon Square...#W\nWe held a town meeting...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" On what we must do to\nsave the world...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And we arrived at a\nconsensus.#W\nWe must get rid of you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(9), + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Wh-what did you say?!")), + VARIANT_DEFAULT(_(" You're kidding!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I was incredulous too...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I had hoped it would not\ncome to this, but...#W\nIt is unfortunate.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We will...\nDefeat you with all our might!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x62, 0x00, 0x0080, -0x00000004, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0e, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" (W-we're fighting here...?)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(90), + WAIT(30), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We will give you tonight.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Pack your supplies and get\nout of here.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Come tomorrow, rescue\nteams of all sorts will take up the chase...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And attack you without\nhesitation.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And not just you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Anyone that goes with\n$n0 will be considered an enemy.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The trackers will attack\nwithout mercy.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That goes for us too.\nWe will join the hunt to be rid of you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Against all odds, you must\nrun.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Run, run...#W\nAnd survive.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You must run till you\nuncover the truth.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000008, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n2...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There will be no mercy\nthe next time we meet.#W\nFarewell.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x93, 0x0a, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0...")), + VARIANT(/* == */ 1, _(" In their own way,\n$n2's team believes in you too.")), + VARIANT(/* == */ 1, _(" Didn't I say this before?")), + VARIANT(/* == */ 1, _(" I'm not going to doubt you\nanymore.")), + VARIANT(/* == */ 1, _(" Whatever happens, I'll\nalways believe in you, $n0.")), + VARIANT(/* == */ 1, _(" I won't be scared, even if\nother rescue teams attack us.")), + VARIANT(/* == */ 3, _(" $n0...")), + VARIANT(/* == */ 3, _(" Did you see?\n$n2's team has faith in you too.")), + VARIANT(/* == */ 3, _(" I said this before, didn't I?")), + VARIANT(/* == */ 3, _(" I'm not going to worry\nanymore.")), + VARIANT(/* == */ 3, _(" Whatever happens, I have\nfaith in you, $n0.")), + VARIANT(/* == */ 3, _(" Even if other rescue teams\nstalk us, I won't be scared.")), + VARIANT_DEFAULT(_(" $n0...")), + VARIANT_DEFAULT(_(" In their own way,\n$n2's team has faith in you too.")), + VARIANT_DEFAULT(_(" Didn't I say this before?")), + VARIANT_DEFAULT(_(" I'm not going to worry\nanymore.")), + VARIANT_DEFAULT(_(" Whatever happens, I'll\nalways have faith in you, $n0.")), + VARIANT_DEFAULT(_(" Even if we're attacked\nby other rescue teams, I won't be\nscared.")), + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" So what's all this about\nnot believing in yourself, $n0?")), + VARIANT(/* == */ 3, _(" So what are we supposed to\ndo if you don't have faith in yourself,\n$n0?")), + VARIANT_DEFAULT(_(" What good will it do if\nyou don't believe in yourself,\n$n0?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 2), + WAIT(1), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" $n0.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0x93, 0x0a, 0x000a, 0x00000036, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0e, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n5...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" $n0...\nI made a promise, remember?") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" That we would make a\nrescue team base here.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" That I would join your\nrescue team when I grew up.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" $n0...\nDon't give up.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" You're a hero to me,\n$n0.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" I believe in you too,\n$n0.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0001, 0x00000000, 0x00000000, NULL }, + ASK3(FALSE, /*default*/ -1, /* speaker */ 1, _(" So, what do you say,\n$n0?")), + CHOICE(/* label */ 18, _("OK! I won't give up!")), + CHOICE(/* label */ 18, _("I'm over it! No giving up!")), + LABEL(18), /* = 0x12 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(7), + { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" That's right!\nThat's the spirit!\nThat's what I wanted to hear!")), + VARIANT(/* == */ 1, _(" That's the $n0 we\nall know!")), + VARIANT(/* == */ 3, _(" Exactly!\nThat's the spirit!\nThat's more like it!")), + VARIANT(/* == */ 3, _(" That's what we expect from\nour $n0!")), + VARIANT_DEFAULT(_(" Yeah!\nThat's right!\nThat's more like it!")), + VARIANT_DEFAULT(_(" That's what we expect from\nour $n0!")), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" We'll have to leave here for\nnow...")), + VARIANT(/* == */ 1, _(" But we're going to come\nback, make no mistake!")), + VARIANT(/* == */ 1, _(" We're going to find the\ntruth!")), + VARIANT(/* == */ 3, _(" We'll have to leave for\nthe time being...")), + VARIANT(/* == */ 3, _(" But we're going to come\nback for sure!")), + VARIANT(/* == */ 3, _(" And we'll bring the truth\nback with us!")), + VARIANT_DEFAULT(_(" We'll have to leave for\nthe time being...")), + VARIANT_DEFAULT(_(" But let's be sure to come\nback!")), + VARIANT_DEFAULT(_(" And we'll bring the truth\nback with us!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + BGM_FADEOUT(90), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs9_g48_s0_lives1_dlg0[] = { /* 0x81bddd8 */ + DEBUGINFO, + { 0x57, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x00a0, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6a, 0x00, 0x0300, -0x000000a0, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(ANGRY_START_FUNC), + FANFARE_PLAY2(457), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + WAIT(30), + CALL_SCRIPT(ANGRY_END_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000058, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(464), + { 0x56, 0x00, 0x0000, 0x00000058, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x004c, -0x00000008, -0x00000010, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0x62, 0x00, 0x0080, -0x00000004, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x06, 0x0001, 0x00000007, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x06, 0x0002, 0x00000001, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x06, 0x0001, 0x00000007, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x06, 0x0002, 0x00000001, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x0a, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0x93, 0x05, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g48_s1_lives0_dlg0[] = { /* 0x81be318 */ + DEBUGINFO, + { 0x57, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x0064, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x00cc, -0x00000064, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x00cc, -0x00000010, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(497), + { 0x54, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x62, 0x00, 0x004c, 0x00000008, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0099, 0x000000a0, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g48_s1_lives1_dlg0[] = { /* 0x81be4f8 */ + DEBUGINFO, + { 0x57, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x0064, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x00cc, -0x00000064, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x004c, -0x00000010, 0x00000008, NULL }, + FANFARE_PLAY2(497), + { 0x54, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x004c, 0x00000008, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0099, 0x000000a0, -0x00000010, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g48_s1_lives2_dlg0[] = { /* 0x81be618 */ + DEBUGINFO, + { 0x57, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x0064, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x00cc, -0x00000064, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x004c, -0x00000010, -0x00000008, NULL }, + { 0x54, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x004c, 0x00000008, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0099, 0x000000a0, 0x00000010, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g48_s2_lives0_dlg0[] = { /* 0x81be728 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x59, 0x00, 0x0064, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0080, -0x00000028, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, -0x00000050, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0x93, 0x05, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g49_s0_station_sref_script[] = { /* 0x81be908 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(9), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next dawn...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, -1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 50, 0), + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g49_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g49_s0_station_sref_script }; /* 0x81bea5c */ + + +static const struct ScriptCommand s_gs9_g49_s0_lives0_dlg0[] = { /* 0x81bea68 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000052, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Morning, $n0!\nIt's early, but I guessed you would be up!")), + VARIANT_DEFAULT(_(" Morning, $n0!#W\nIt's early, but of course you'd be up by\nnow!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" Are you ready to roll?")), + VARIANT_DEFAULT(_(" Are you ready to leave?")), + CHOICE(/* label */ 2, _("All set!")), + CHOICE(/* label */ 3, _("*Not yet.")), + LABEL(3), /* = 0x03 */ + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" All right, I'll wait while\nyou get ready.")), + VARIANT(/* == */ 1, _(" Tell me when you're set.#W\nWe'll roll out then.")), + VARIANT_DEFAULT(_(" Oh, OK.\nI'll wait while you get ready.")), + VARIANT_DEFAULT(_(" Tell me when you're\nready.#W\nLet's leave then.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, + LABEL(2), /* = 0x02 */ + EXECUTE_FUNCTION(EVENT_M01E07A_L002), + HALT, +}; + + + +static const struct ScriptCommand s_gs9_g49_s0_lives1_dlg0[] = { /* 0x81bedfc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000033, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g50_s0_station_sref_script[] = { /* 0x81bee7c */ + DEBUGINFO, + SELECT_ENTITIES(-1, 0), + SELECT_ENTITIES(-1, 1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs9_g50_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs9_g50_s0_station_sref_script }; /* 0x81beebc */ + +static const struct ScriptCommand s_gs9_g50_s0_lives0_dlg0[] = { /* 0x81beec8 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000400, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g50_s0_lives0_dlg2[] = { /* 0x81beef8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" Hey!\nYou all ready to go?")), + VARIANT_DEFAULT(_(" Oh!\nAre you ready to go?")), + CHOICE(/* label */ 1, _("All set!")), + CHOICE(/* label */ 2, _("*Not yet.")), + LABEL(2), /* = 0x02 */ + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" All right. I'll wait while\nyou get ready.")), + VARIANT(/* == */ 1, _(" Tell me when you're set.#W\nWe'll roll out then.")), + VARIANT_DEFAULT(_(" Oh, OK.\nI'll wait while you get ready.")), + VARIANT_DEFAULT(_(" Tell me when you're\nready.#W\nLet's leave then.")), + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + EXECUTE_FUNCTION(EVENT_M01E07A_L002), + HALT, +}; + + +static const struct ScriptCommand s_gs9_g50_s1_evt0_sref_script[] = { /* 0x81bf0b0 */ + DEBUGINFO, + JUMPIF_SCENE_GT(SCENARIO_MAIN, 11, 2, /* to label */ 0), + EXECUTE_STATION(-1, 50, 2), + HALT, + LABEL(0), /* = 0x00 */ + RET, +}; + +static const struct ScriptRef s_gs9_g50_s1_evt0_sref = { 57, 7, NULL /* NORMAL_EVENT */, s_gs9_g50_s1_evt0_sref_script }; /* 0x81bf110 */ + +static const struct ScriptCommand s_gs9_g50_s2_station_sref_script[] = { /* 0x81bf11c */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + SCENARIO_CALC(SCENARIO_MAIN, 11, 3), + RET, +}; + +static const struct ScriptRef s_gs9_g50_s2_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs9_g50_s2_station_sref_script }; /* 0x81bf17c */ + +static const struct ScriptCommand s_gs9_g50_s2_lives0_dlg0[] = { /* 0x81bf188 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Are you going to the\nsquare?")), + VARIANT(/* == */ 1, _(" Be careful if you are.\nThere are other Pokémon in the square.")), + VARIANT(/* == */ 1, _(" It's still early, so I think\neveryone's still asleep, but...")), + VARIANT(/* == */ 1, _(" But make sure you don't\nwake anyone up.")), + VARIANT_DEFAULT(_(" Are you going out to\nPokémon Square?")), + VARIANT_DEFAULT(_(" There are other Pokémon in\nthe square, so be really careful.")), + VARIANT_DEFAULT(_(" It's still early, so I think\neveryone will still be asleep...")), + VARIANT_DEFAULT(_(" But be sure not to wake\nanyone up.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g50_s2_lives1_dlg0[] = { /* 0x81bf44c */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000400, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x01, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g50_s2_lives1_dlg2[] = { /* 0x81bf4bc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" Hey!\nYou all ready to go?")), + VARIANT_DEFAULT(_(" Oh!\nAre you ready to go?")), + CHOICE(/* label */ 1, _("All set!")), + CHOICE(/* label */ 2, _("*Not yet.")), + LABEL(2), /* = 0x02 */ + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" All right, I'll wait while\nyou get ready.")), + VARIANT(/* == */ 1, _(" Tell me when you're set.#W\nWe'll roll out then.")), + VARIANT_DEFAULT(_(" Oh, OK.\nI'll wait while you get ready.")), + VARIANT_DEFAULT(_(" Tell me when you're\nready.#W\nLet's leave then.")), + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + EXECUTE_FUNCTION(EVENT_M01E07A_L002), + HALT, +}; + + +static const struct ScriptCommand s_gs9_g50_s3_station_sref_script[] = { /* 0x81bf5ec */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g50_s3_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs9_g50_s3_station_sref_script }; /* 0x81bf63c */ + +static const struct ScriptCommand s_gs9_g50_s3_lives0_dlg0[] = { /* 0x81bf648 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x0b, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh?\nAre you ready to leave?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g50_s3_lives1_dlg0[] = { /* 0x81bf708 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g51_s0_station_sref_script[] = { /* 0x81bf778 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs9_g51_s0_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs9_g51_s0_station_sref_script }; /* 0x81bf7c8 */ + +static const struct ScriptCommand s_gs9_g51_s0_lives0_dlg0[] = { /* 0x81bf7d4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000058, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Yep!\nLooks like we're all set.")), + VARIANT(/* == */ 1, _(" From now on, we're\nfugitives.")), + VARIANT(/* == */ 3, _(" Yup.\nI guess we're ready to go.")), + VARIANT(/* == */ 3, _(" From now on, we're\nfugitives.")), + VARIANT_DEFAULT(_(" Yup.\nLooks like we're ready.")), + VARIANT_DEFAULT(_(" From now on, we're\nfugitives.")), + JUMPIF(JUDGE_LE, FRIEND_SUM, 2, /* to label */ 1), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" This is going to be one\nrough trip...")), + VARIANT(/* == */ 1, _(" I want to keep our team\nmembers out of all this...")), + VARIANT(/* == */ 1, _(" Let's not tell our friends...#W\nAnd we'll go, just you and me.")), + VARIANT(/* == */ 3, _(" I'm sure that this will be a\ndangerous journey...")), + VARIANT(/* == */ 3, _(" I don't want to get our team\nmembers involved in this...")), + VARIANT(/* == */ 3, _(" Let's not tell them...#W\nWe should go by ourselves.")), + VARIANT_DEFAULT(_(" This is going to be a\ndangerous trip...")), + VARIANT_DEFAULT(_(" I don't want to get our team\nmembers involved...")), + VARIANT_DEFAULT(_(" Let's not tell them...#W\nWe'll just leave by ourselves.")), + LABEL(1), /* = 0x01 */ + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" You know what we have\nto do, right?")), + VARIANT(/* == */ 1, _(" We've got to run and keep\nrunning from the rescue teams chasing us.")), + VARIANT(/* == */ 3, _(" We have to run from the\nrescue teams stalking us.")), + VARIANT(/* == */ 3, _(" We have to keep running\nbecause we can't afford to be caught.")), + VARIANT_DEFAULT(_(" We have to get away from\nthe rescue teams hunting us.")), + VARIANT_DEFAULT(_(" We have to get away at\nall cost.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + BGM_SWITCH(24), + { 0x2e, 0x03, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...Yes. We have to escape.)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Like $n2 said that time...)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x5f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + +static const struct ScriptCommand s_gs9_g51_s0_lives1_dlg0[] = { /* 0x81bfe94 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x5f, 0x00, 0x0000, 0x00000001, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g52_s0_station_sref_script[] = { /* 0x81bfee4 */ + DEBUGINFO, + SELECT_MAP(9), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(24), + { 0x27, 0x01, 0x000e, 0x0000001e, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x000e, 0x0000001e, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs9_g52_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g52_s0_station_sref_script }; /* 0x81bff64 */ + +static const struct ScriptCommand s_gs9_g52_s0_lives0_dlg0[] = { /* 0x81bff70 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, -0x0004, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Against all odds, you must\nrun.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Run, run...#W\nAnd survive.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You must run till you\nuncover the truth.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs9_g52_s0_lives1_dlg0[] = { /* 0x81c0040 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, -0x0004, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g52_s0_lives2_dlg0[] = { /* 0x81c0090 */ + DEBUGINFO, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g52_s0_lives3_dlg0[] = { /* 0x81c00f0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g52_s0_lives4_dlg0[] = { /* 0x81c0130 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g53_s0_station_sref_script[] = { /* 0x81c0170 */ + DEBUGINFO, + SELECT_MAP(9), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(24), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs9_g53_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g53_s0_station_sref_script }; /* 0x81c01f0 */ + +static const struct ScriptCommand s_gs9_g53_s0_eff0_script[] = { /* 0x81c01fc */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x50, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x28, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x18, 0x0099, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0xf0, 0x0099, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0xa0, 0x0100, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g53_s0_lives0_dlg0[] = { /* 0x81c02fc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x5e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Yes...\nWho am I?)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Until I discover that truth, I have to\nrun and survive.)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Even if it means going to the edge\nof this world...)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" OK!\nLet's roll out!")), + VARIANT_DEFAULT(_(" OK!\nLet's get going!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" $n0!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x00000034, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0001, 0x0000000b, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Caterpie! And Metapod too!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, and even Jumpluff!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Wow, I'm glad!\nWe made it!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" We wanted to see you off,\n$n0.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" M-me too!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(469), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(QUESTION_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + WAIT(30), + FANFARE_PLAY2(454), + SELECT_ENTITIES(-1, 2), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000001, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + WAIT(30), + { 0x2e, 0x0d, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Good morning.\nIt's me, Diglett.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I wanted to send you off\ntoo.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000008, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Everyone...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's a letter.\n$n0, can you read it?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x00000039, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000004, 0x00000000, NULL }, + WAIT(30), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 began reading the letter.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("“Take care!\n It's farewell, but only for now.") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Until the day I can deliver mail\n to you again...") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I'll always be waiting.") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _(" - The wandering postal carrier,\n Pelipper -”") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0001, 0x0000000b, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Even Pelipper...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000008, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sniff...\nEveryone, thank you!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" The other Pokémon will\nbe waking up soon.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You have to go!\nHurry!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yup.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0!\nLet's go! Hit the road!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x89, 0xe0, 0x0099, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2b, 0x00, 0x0000, -0x00000001, -0x00000001, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" OK! Thanks!")), + VARIANT(/* == */ 1, _(" We'll be back!\nCount on it!")), + VARIANT(/* == */ 1, _(" Until then, you guys be\ngood!")), + VARIANT(/* == */ 3, _(" Yup! Thank you!")), + VARIANT(/* == */ 3, _(" We'll be back!\nThat's for certain!")), + VARIANT(/* == */ 3, _(" Until then, take care!")), + VARIANT_DEFAULT(_(" Yup! Thank you!")), + VARIANT_DEFAULT(_(" We'll be back!\nThat's for sure!")), + VARIANT_DEFAULT(_(" Take care until then!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x78, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs9_g53_s0_lives1_dlg0[] = { /* 0x81c1318 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x5e, 0x00, 0x0000, 0x00000001, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(12), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000044, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x0a, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x0a, 0x000b, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(20), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0080, -0x00000004, 0x00000004, NULL }, + WAIT(30), + { 0x91, 0x04, 0x000b, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(25), + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x0000003a, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, -0x00000008, 0x00000008, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0xe0, 0x0099, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x78, 0x0100, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g53_s0_lives2_dlg0[] = { /* 0x81c1678 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x40, 0x0080, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x00000035, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(30), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000003, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(22), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x0000003b, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x2b, 0x00, 0x0000, 0x0000003c, 0x0000003c, NULL }, + { 0x2e, 0x0b, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Take care!") }, + { 0x31, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2b, 0x00, 0x0000, -0x00000001, -0x00000001, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g53_s0_lives3_dlg0[] = { /* 0x81c1904 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x40, 0x0080, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x00000036, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(QUESTION_FUNC), + WAIT(4), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000044, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x0000003c, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g53_s0_lives4_dlg0[] = { /* 0x81c1a94 */ + DEBUGINFO, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x60, 0x00, 0x0000, 0x00000030, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Flap! Flap!") }, + FANFARE_PLAY2(451), + { 0x6b, 0x00, 0x0100, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x1e, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x68, 0x00, 0x0100, 0x00000008, 0x00000000, NULL }, + FANFARE_STOP2(451), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + WAIT(20), + FANFARE_PLAY2(501), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Clunk!") }, + WAIT(60), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(451), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x68, 0x00, 0x0100, 0x00000030, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x1e, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000004, 0x00000000, NULL }, + FANFARE_STOP2(451), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g53_s0_lives5_dlg0[] = { /* 0x81c1d74 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x40, 0x0080, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x00000037, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(12), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000044, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(25), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x0000003d, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(110), + { 0x2b, 0x00, 0x0000, 0x00000050, 0x00000050, NULL }, + { 0x2e, 0x0b, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" We'll be waiting for both\nof you to return!") }, + { 0x31, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2b, 0x00, 0x0000, -0x00000001, -0x00000001, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g53_s0_lives6_dlg0[] = { /* 0x81c2004 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x40, 0x0080, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x00000038, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(QUESTION_FUNC), + WAIT(8), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000044, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g53_s2_lives0_dlg0[] = { /* 0x81c2174 */ + DEBUGINFO, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g55_s0_station_sref_script[] = { /* 0x81c22c4 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x04, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + CALL_STATION( 4, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g55_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g55_s0_station_sref_script }; /* 0x81c23b4 */ + +static const struct ScriptCommand s_gs9_g55_s0_lives0_dlg0[] = { /* 0x81c23c0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Morning, $n0.\nGet a good night's sleep?")), + VARIANT_DEFAULT(_(" Good morning, $n0.\nDid you sleep well?")), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" OK, we're back in the\nrescue team business!")), + VARIANT_DEFAULT(_(" All right!\nWe'll get right back into doing\nrescues.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + SELECT_ENTITIES(-1, 1), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Flap! Flap!") }, + WAIT(5), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x93, 0x04, 0x000b, 0x00000037, 0x00000000, NULL }, + WAIT(100), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x93, 0x04, 0x000b, 0x00000007, 0x00000000, NULL }, + WAIT(10), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n2's brought us\nmail already, too.")), + VARIANT_DEFAULT(_(" And look, $n2 is\nbringing us mail already.")), + { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Let's give it our best like\nwe always used to, $n0!")), + VARIANT_DEFAULT(_(" Let's try to do our best like\nwe always did, $n0!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + + +static const struct ScriptCommand s_gs9_g55_s0_lives1_dlg0[] = { /* 0x81c2858 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000003e, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x93, 0x04, 0x000b, 0x00000037, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g55_s1_lives0_dlg0[] = { /* 0x81c2958 */ + DEBUGINFO, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x60, 0x00, 0x0000, 0x00000030, 0x00000000, NULL }, + FANFARE_PLAY2(451), + { 0x6b, 0x00, 0x0100, 0x00000003, 0x00000000, NULL }, + { 0x91, 0x1e, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x68, 0x00, 0x0100, 0x00000008, 0x00000000, NULL }, + FANFARE_STOP2(451), + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + WAIT(20), + FANFARE_PLAY2(501), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Clunk! Clunk!") }, + WAIT(60), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(451), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x68, 0x00, 0x0100, 0x00000030, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x1e, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000004, 0x00000000, NULL }, + FANFARE_STOP2(451), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g56_s0_station_sref_script[] = { /* 0x81c2b28 */ + DEBUGINFO, + JUMP_STATION( 4, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g56_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs9_g56_s0_station_sref_script }; /* 0x81c2b58 */ + +static const struct ScriptCommand s_gs9_g57_s0_station_sref_script[] = { /* 0x81c2b64 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + CALL_STATION( 4, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g57_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g57_s0_station_sref_script }; /* 0x81c2c44 */ + +static const struct ScriptCommand s_gs9_g57_s0_lives0_dlg0[] = { /* 0x81c2c50 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000052, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Good morning, $n0!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(468), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...Hunh? What's up?\nIs something wrong?")), + VARIANT_DEFAULT(_(" ...Huh? What's the matter?\nIs something wrong?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(463), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Oh, right!#W\nThat earthquake earlier!")), + VARIANT(/* == */ 1, _(" $n0, you're\nworried the same way I am.\nI should've known, $n0.")), + VARIANT(/* == */ 1, _(" Alakazam's team hasn't come\nback yet...")), + VARIANT(/* == */ 1, _(" And they say Groudon is\nwickedly strong, so yeah, it is a bit\nworrying...")), + VARIANT(/* == */ 1, _(" But, then again, Alakazam's\nbunch is tough, too.\nThey should be OK...")), + VARIANT(/* == */ 1, _(" Well, we did leave Groudon\nup to Alakazam...")), + VARIANT(/* == */ 1, _(" So we can't do much of\nanything but wait for them to come back.")), + VARIANT(/* == */ 3, _(" Oh, right!#W\nThat earthquake earlier!")), + VARIANT(/* == */ 3, _(" $n0, you're\nworried about the same thing I am.\nI should have guessed, $n0.")), + VARIANT(/* == */ 3, _(" Alakazam's team still hasn't\ncome back...")), + VARIANT(/* == */ 3, _(" People say that Groudon is\nvery powerful, so I am a little worried...")), + VARIANT(/* == */ 3, _(" But Alakazam's team is also\nvery strong.\nThey must be OK.")), + VARIANT(/* == */ 3, _(" Anyway, we agreed to let\nAlakazam handle Groudon.")), + VARIANT(/* == */ 3, _(" So we'll just have to wait\nfor them to come back.")), + VARIANT_DEFAULT(_(" Oh, I get it!#W\nThat earthquake earlier!")), + VARIANT_DEFAULT(_(" $n0, you're\nworried about the same thing I am.\nI should've guessed, $n0.")), + VARIANT_DEFAULT(_(" Alakazam's team hasn't come\nback yet...")), + VARIANT_DEFAULT(_(" They say that Groudon is\npowerful.\nThat has me a little worried.")), + VARIANT_DEFAULT(_(" But Alakazam's team is\ntough too.\nThey should be fine.")), + VARIANT_DEFAULT(_(" Anyway, we agreed to let\nAlakazam deal with Groudon.")), + VARIANT_DEFAULT(_(" We don't have any choice.\nWe have to wait for them to come back.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" We've got to do what we\ncan do.")), + VARIANT(/* == */ 1, _(" So let's give it our best\nfor our rescue team!")), + VARIANT(/* == */ 3, _(" We'll just have to keep on\ndoing what we can do.")), + VARIANT(/* == */ 3, _(" So let's do our best with\nthe rescue team!")), + VARIANT_DEFAULT(_(" We have to do what we can\nfor our part.")), + VARIANT_DEFAULT(_(" So let's do our best with\nthe rescue team!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g57_s0_lives1_dlg0[] = { /* 0x81c35ec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(QUESTION_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g58_s0_station_sref_script[] = { /* 0x81c36ac */ + DEBUGINFO, + SELECT_MAP(9), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs9_g58_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g58_s0_station_sref_script }; /* 0x81c372c */ + +static const struct ScriptCommand s_gs9_g58_s0_eff0_script[] = { /* 0x81c3738 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x20, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g58_s0_lives0_dlg0[] = { /* 0x81c37c8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Oh, already awake,\n$n0?")), + VARIANT(/* == */ 1, _(" There was another\nearthquake earlier, right?")), + VARIANT(/* == */ 1, _(" There've been so many...\nI can't get a decent night's sleep.")), + VARIANT_DEFAULT(_(" Oh, hi!\nYou're up early, $n0.")), + VARIANT_DEFAULT(_(" Did you notice the\nearthquake earlier?")), + VARIANT_DEFAULT(_(" It's hard to get decent sleep\nwhen there are so many earthquakes.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + SELECT_ENTITIES(-1, 1), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(90), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Hey!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(463), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + WAIT(15), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x0000003f, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0e, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, $n2.#W\nWhat's up?")), + VARIANT_DEFAULT(_(" Oh, $n2.#W\nWhat's the matter?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We need you at the square!\nEveryone's gathering there.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(469), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Is there something wrong?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm not really sure...\nShiftry's calling everyone out.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" He's getting the other rescue\nteams to come.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0, let's go!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x89, 0x20, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x60, 0x0200, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + +static const struct ScriptCommand s_gs9_g58_s0_lives1_dlg0[] = { /* 0x81c3df4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(QUESTION_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x89, 0x20, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x60, 0x0200, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g58_s1_lives0_dlg0[] = { /* 0x81c3f14 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x00000040, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x00000041, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x00000040, 0x00000000, NULL }, + { 0x89, 0x60, 0x0200, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g59_s0_station_sref_script[] = { /* 0x81c4014 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 9), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + CALL_STATION( 4, 0), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g59_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g59_s0_station_sref_script }; /* 0x81c40f4 */ + +static const struct ScriptCommand s_gs9_g59_s0_lives0_dlg0[] = { /* 0x81c4100 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000068, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I wish we could've gone too,\nbut that's just too bad.")), + VARIANT(/* == */ 1, _(" We'll let $n2's\nteam take care of things underground.")), + VARIANT(/* == */ 1, _(" We'll keep giving it our\nbest in our rescue work.")), + VARIANT(/* == */ 3, _(" I wish we could have gone\ntoo, but that can't be helped.")), + VARIANT(/* == */ 3, _(" $n2's team can\ntake care of things underground.")), + VARIANT(/* == */ 3, _(" And we'll keep doing the best\nwe can in our rescue work.")), + VARIANT_DEFAULT(_(" I wish we could have gone\ntoo, but there's nothing we can do about\nthat.")), + VARIANT_DEFAULT(_(" $n2's team can\ntake care of things underground.")), + VARIANT_DEFAULT(_(" We'll keep doing the best we\ncan in our rescue work.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs9_g59_s0_lives1_dlg0[] = { /* 0x81c444c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g60_s0_station_sref_script[] = { /* 0x81c44ac */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + CALL_STATION( 61, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g60_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g60_s0_station_sref_script }; /* 0x81c458c */ + +static const struct ScriptCommand s_gs9_g60_s0_eff0_script[] = { /* 0x81c4598 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g60_s0_lives0_dlg0[] = { /* 0x81c45d8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x0000005b, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" We got held up by the\ntrouble we had with $n2.")), + VARIANT(/* == */ 1, _(" But now, we're finally\ngoing off to the underground dungeon.")), + VARIANT(/* == */ 1, _(" I know we're not leaving\ntill tomorrow, but I'm, like, buzzing with\nexcitement.")), + VARIANT(/* == */ 1, _(" We should spend today\ngetting ready.")), + VARIANT(/* == */ 1, _(" Let me know when you're\nready to roll.")), + VARIANT_DEFAULT(_(" We were held up by that\ntrouble with $n2...")), + VARIANT_DEFAULT(_(" But now, we're getting the\nchance to go to the underground dungeon.")), + VARIANT_DEFAULT(_(" We're not leaving until\ntomorrow, but I'm jumpy with anticipation.")), + VARIANT_DEFAULT(_(" Let's spend today getting\nready for the dungeon.")), + VARIANT_DEFAULT(_(" Let me know when you're\nall ready to go.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs9_g60_s0_lives1_dlg0[] = { /* 0x81c4994 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g61_s0_station_sref_script[] = { /* 0x81c49f4 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + JUMP_STATION( 4, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g61_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs9_g61_s0_station_sref_script }; /* 0x81c4a34 */ + +static const struct ScriptCommand s_gs9_g61_s0_lives0_dlg0[] = { /* 0x81c4a40 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000400, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g61_s0_lives0_dlg2[] = { /* 0x81c4a70 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" Oh, hey!\nAre you all ready to roll?")), + VARIANT_DEFAULT(_(" OK!\nAre you all ready?")), + CHOICE(/* label */ 1, _("All set!")), + CHOICE(/* label */ 2, _("*Not yet.")), + LABEL(2), /* = 0x02 */ + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Oh, all right.\nI'll wait here until you're ready.")), + VARIANT(/* == */ 1, _(" Give me a shout when you're\nready.")), + VARIANT_DEFAULT(_(" Oh, OK.\nI'll wait until you're all set.")), + VARIANT_DEFAULT(_(" Tell me when you're\nready.")), + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" All right!\nAll set!")), + VARIANT(/* == */ 1, _(" We should get a good night's\nsleep, then.")), + VARIANT(/* == */ 1, _(" We'll roll out tomorrow!")), + VARIANT_DEFAULT(_(" OK!\nAll set!")), + VARIANT_DEFAULT(_(" We should both get\na good night's sleep.")), + VARIANT_DEFAULT(_(" And we'll set out tomorrow!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(90), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(60), + EXECUTE_FUNCTION(EVENT_M01E09A_L009), + HALT, +}; + + +static const struct ScriptCommand s_gs9_g61_s1_station_sref_script[] = { /* 0x81c4d58 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g61_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs9_g61_s1_station_sref_script }; /* 0x81c4da8 */ + +static const struct ScriptCommand s_gs9_g61_s1_lives0_dlg0[] = { /* 0x81c4db4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh?\nAre you ready to leave?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g61_s1_lives1_dlg0[] = { /* 0x81c4e54 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g62_s0_station_sref_script[] = { /* 0x81c4ec4 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g62_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g62_s0_station_sref_script }; /* 0x81c4f94 */ + +static const struct ScriptCommand s_gs9_g62_s0_eff0_script[] = { /* 0x81c4fa0 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x89, 0x40, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x30, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g62_s0_lives0_dlg0[] = { /* 0x81c5060 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000058, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000052, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Morning, $n0!\nGet a good night's sleep?")), + VARIANT_DEFAULT(_(" Good morning, $n0!\nDid you sleep well?")), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" This is it!#W\nLet's give it our best and rescue\n$n2!")), + VARIANT_DEFAULT(_(" OK, this is it!#W\nLet's do our best and save $n2's\nteam!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + BGM_FADEOUT(150), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x89, 0x40, 0x0100, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x2e, 0x0f, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Gardevoir said...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(She will tell me everything when this\nadventure is over...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Is going underground the adventure\nshe meant...?)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Will she tell me if we rescue Alakazam's\nteam...?)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey.")), + VARIANT_DEFAULT(_(" Hello!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(15), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" What, are you stunned?\nLet's go, already!")), + VARIANT_DEFAULT(_(" Are you asleep still?\nLet's get going!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(463), + CALL_SCRIPT(NOTICE_FUNC), + BGM_SWITCH(1), + { 0x89, 0x48, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + + + +static const struct ScriptCommand s_gs9_g62_s0_lives1_dlg0[] = { /* 0x81c5538 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0xa0, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x20, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g63_s0_station_sref_script[] = { /* 0x81c55d8 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g63_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g63_s0_station_sref_script }; /* 0x81c56a8 */ + +static const struct ScriptCommand s_gs9_g63_s0_lives0_dlg0[] = { /* 0x81c56b4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0001, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ............#W\nWe didn't do well, did we?")), + VARIANT_DEFAULT(_(" ............#W\nWe didn't do very well, did we?")), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But we knew that it would\nbe a tough dungeon.\nWe don't need to get down on ourselves.")), + VARIANT(/* == */ 1, _(" Other rescue teams should\nbe trying to get through the underground\ndungeon.")), + VARIANT(/* == */ 1, _(" We should go to the square.\nWe might be able to get some information.")), + VARIANT_DEFAULT(_(" But we knew that it would\nbe a very challenging dungeon.\nWe shouldn't be discouraged.")), + VARIANT_DEFAULT(_(" Other rescue teams should\nhave gone underground too.")), + VARIANT_DEFAULT(_(" We might be able to get\nsome information if we go to the square.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs9_g63_s0_lives1_dlg0[] = { /* 0x81c5a54 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g64_s0_station_sref_script[] = { /* 0x81c5ab4 */ + DEBUGINFO, + RET_DIRECT, +}; + +static const struct ScriptRef s_gs9_g64_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs9_g64_s0_station_sref_script }; /* 0x81c5ad4 */ + +static const struct ScriptCommand s_gs9_g64_s1_station_sref_script[] = { /* 0x81c5ae0 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g64_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs9_g64_s1_station_sref_script }; /* 0x81c5b30 */ + +static const struct ScriptCommand s_gs9_g64_s1_lives0_dlg0[] = { /* 0x81c5b3c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Whoops.\nI'd better get packed to leave.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g65_s0_station_sref_script[] = { /* 0x81c5bf8 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g65_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g65_s0_station_sref_script }; /* 0x81c5cc8 */ + +static const struct ScriptCommand s_gs9_g65_s0_lives0_dlg0[] = { /* 0x81c5cd4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Morning!\nGet a good night's sleep?")), + VARIANT(/* == */ 1, _(" This is it!#W\nLet's roll, $n0!\nTo the sky we go!")), + VARIANT_DEFAULT(_(" Good morning!\nDid you sleep well?")), + VARIANT_DEFAULT(_(" This is it!#W\nLet's go, $n0!\nWe're off to the sky!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs9_g65_s0_lives1_dlg0[] = { /* 0x81c5eb4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x60, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g66_s0_station_sref_script[] = { /* 0x81c5f44 */ + DEBUGINFO, + JUMP_STATION( 4, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g66_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs9_g66_s0_station_sref_script }; /* 0x81c5f74 */ + +static const struct ScriptCommand s_gs9_g67_s0_station_sref_script[] = { /* 0x81c5f80 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g67_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g67_s0_station_sref_script }; /* 0x81c6050 */ + +static const struct ScriptCommand s_gs9_g67_s0_lives0_dlg0[] = { /* 0x81c605c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Morning!")), + VARIANT(/* == */ 1, _(" Even while we do this,\nthat falling star is coming closer and\ncloser...")), + VARIANT(/* == */ 1, _(" The #CDSky Tower#R is one harsh\nplace...")), + VARIANT(/* == */ 1, _(" But I'm not giving up!")), + VARIANT(/* == */ 1, _(" Let's give it our best,\n$n0!")), + VARIANT(/* == */ 3, _(" Good morning!")), + VARIANT(/* == */ 3, _(" Even now, that falling star\nis getting closer and closer...")), + VARIANT(/* == */ 3, _(" The #CDSky Tower#R is incredibly\nharsh too...")), + VARIANT(/* == */ 3, _(" But I'm not giving up!")), + VARIANT(/* == */ 3, _(" Let's keep doing our best,\n$n0!")), + VARIANT_DEFAULT(_(" Good morning!")), + VARIANT_DEFAULT(_(" That falling star is coming\ncloser and closer even now...")), + VARIANT_DEFAULT(_(" The #CDSky Tower#R is also very\nchallenging...")), + VARIANT_DEFAULT(_(" But I'm not giving up!")), + VARIANT_DEFAULT(_(" Let's keep doing our best,\n$n0!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g67_s0_lives1_dlg0[] = { /* 0x81c63e4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g68_s0_station_sref_script[] = { /* 0x81c6444 */ + DEBUGINFO, + SELECT_MAP(9), + SELECT_ENTITIES(-1, -1), + { 0x27, 0x01, 0x000d, 0x0000001e, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + WAIT(0), + { 0x28, 0x01, 0x000d, 0x00000023, 0x00000000, NULL }, + WAIT(90), + RET, + LABEL(0), /* = 0x00 */ + { 0x28, 0x01, 0x000d, 0x00000078, 0x00000000, NULL }, + WAIT(80), + RET, +}; + +static const struct ScriptRef s_gs9_g68_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g68_s0_station_sref_script }; /* 0x81c6514 */ + +static const struct ScriptCommand s_gs9_g68_s0_eff0_script[] = { /* 0x81c6520 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000042, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x30, 0x004c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g68_s0_lives0_dlg0[] = { /* 0x81c65e0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x59, 0x00, 0x00c8, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(150), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0xe4, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(80), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0xe4, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, -0x00c8, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x78, 0x004c, 0x00000004, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(0), + WAIT(100), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(0), + { 0x6b, 0x00, 0x0100, 0x00000043, 0x00000000, NULL }, + WAIT(140), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, + LABEL(0), /* = 0x00 */ + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, + HALT, +}; + +static const struct ScriptCommand s_gs9_g68_s0_lives1_dlg0[] = { /* 0x81c68e0 */ + DEBUGINFO, + { 0x54, 0x00, 0x002d, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(50), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x0a, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + WAIT(30), + WAIT(20), + { 0x89, 0x28, 0x004c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x28, 0x004c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000044, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g68_s0_eff1_script[] = { /* 0x81c6a20 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g68_s0_lives2_dlg0[] = { /* 0x81c6a60 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(10), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x10, 0x0080, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(40), + { 0x89, 0x08, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT(30), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g68_s0_lives3_dlg0[] = { /* 0x81c6be0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(NOTICE_FUNC), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(40), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(35), + { 0x89, 0x08, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + WAIT(30), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + WAIT(45), + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g68_s0_lives4_dlg0[] = { /* 0x81c6dc0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(10), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x91, 0x0c, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(40), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + WAIT(10), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(20), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + WAIT(20), + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(45), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g68_s0_lives5_dlg0[] = { /* 0x81c6fc0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(7), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(50), + { 0x91, 0x0c, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + WAIT(40), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + WAIT(40), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(35), + { 0x6b, 0x00, 0x0100, 0x00000045, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g68_s0_lives6_dlg0[] = { /* 0x81c7170 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(25), + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(20), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x89, 0x20, 0x0080, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(35), + { 0x6b, 0x00, 0x0100, 0x00000047, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g68_s0_lives7_dlg0[] = { /* 0x81c72a0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(5), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(30), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT(30), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x6b, 0x00, 0x00cc, 0x00000048, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g68_s0_lives8_dlg0[] = { /* 0x81c73e0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0080, -0x00000008, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(10), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(40), + { 0x6b, 0x00, 0x0100, 0x00000049, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + WAIT(45), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + WAIT(45), + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g68_s0_lives9_dlg0[] = { /* 0x81c7630 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x08, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(10), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + WAIT(20), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(50), + { 0x6b, 0x00, 0x0100, 0x00000046, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g68_s0_lives10_dlg0[] = { /* 0x81c77c0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(10), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x06, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(70), + { 0x89, 0x28, 0x0080, 0x00000002, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x10, 0x0080, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x08, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g68_s0_lives11_dlg0[] = { /* 0x81c7940 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x91, 0x08, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0c, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x0c, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x89, 0x08, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0x91, 0x0c, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT(30), + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g68_s0_lives12_dlg0[] = { /* 0x81c7b10 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(10), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x91, 0x0c, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + WAIT(35), + { 0x89, 0x0c, 0x0100, 0x00000005, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g68_s0_eff2_script[] = { /* 0x81c7cb0 */ + DEBUGINFO, + { 0x59, 0x00, 0x0000, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0003, 0x000001b7, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0003, 0x00000180, 0x00000000, NULL }, + WAIT(100), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0003, 0x00000181, 0x00000000, NULL }, + WAIT(1), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0000, 0x000000aa, 0x00000000, NULL }, + WAIT(90), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x000000a9, 0x00000000, NULL }, + WAIT(70), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0000, 0x000000a8, 0x00000000, NULL }, + WAIT(60), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0000, 0x000000a7, 0x00000000, NULL }, + WAIT(30), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g69_s0_station_sref_script[] = { /* 0x81c8040 */ + DEBUGINFO, + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs9_g69_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g69_s0_station_sref_script }; /* 0x81c80b0 */ + +static const struct ScriptCommand s_gs9_g69_s0_eff0_script[] = { /* 0x81c80bc */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x30, 0x0080, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(90), + BGM_FADEOUT(60), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g69_s0_lives0_dlg0[] = { /* 0x81c817c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x15, 0x0080, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0002, -0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n0!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x18, 0x0080, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0f, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, hi, $n2 and\n$n3.#W\nWhat's the matter?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's Snubbull!#W\nThere's something weird going on!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Snubbull is weird...?#W\nWeird, how?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" He looks completely\ndifferent...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0!\nLet's go to the square!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x89, 0x50, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x50, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + +static const struct ScriptCommand s_gs9_g69_s0_lives1_dlg0[] = { /* 0x81c8584 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x18, 0x0080, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x0000004a, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x89, 0x48, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x50, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g69_s0_lives2_dlg0[] = { /* 0x81c86f4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x89, 0x40, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x89, 0x40, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x68, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g69_s0_lives3_dlg0[] = { /* 0x81c8804 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x89, 0x48, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x89, 0x38, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x68, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g70_s0_station_sref_script[] = { /* 0x81c88e4 */ + DEBUGINFO, + JUMP_STATION( 4, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g70_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs9_g70_s0_station_sref_script }; /* 0x81c8914 */ + +static const struct ScriptCommand s_gs9_g71_s0_station_sref_script[] = { /* 0x81c8920 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 0), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + WAIT(30), + EXECUTE_FUNCTION(EVENT_M02E01A_L003), + HALT, +}; + +static const struct ScriptRef s_gs9_g71_s0_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs9_g71_s0_station_sref_script }; /* 0x81c8990 */ + +static const struct ScriptCommand s_gs9_g71_s0_lives0_dlg0[] = { /* 0x81c899c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Oh, yeah, $n0!\nHang on a second!")), + VARIANT(/* == */ 1, _(" There's something I wanted\nto bounce off you before we go to any\ndungeon.")), + VARIANT(/* == */ 3, _(" Oh, yeah, $n0!\nHold on a second!")), + VARIANT(/* == */ 3, _(" There's something I wanted\nto discuss before we go to a dungeon.")), + VARIANT_DEFAULT(_(" Oh, yeah, $n0!\nWait a second!")), + VARIANT_DEFAULT(_(" There's something I wanted\nto talk over with you before we go to\na dungeon.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs9_g71_s0_lives1_dlg0[] = { /* 0x81c8c24 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g72_s0_station_sref_script[] = { /* 0x81c8ca4 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + CALL_STATION( 4, 0), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g72_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g72_s0_station_sref_script }; /* 0x81c8d84 */ + +static const struct ScriptCommand s_gs9_g72_s0_lives0_dlg0[] = { /* 0x81c8d90 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" You know how we always\nwent into dungeons, me and you,\n$n0?")), + VARIANT(/* == */ 1, _(" But I think we're going to\nbe facing even more different types of\ndungeons from now on.")), + VARIANT(/* == */ 1, _(" With just us two, I think\nwe might have some tough times.")), + VARIANT(/* == */ 1, _(" So, this is what I was\nthinking...")), + VARIANT(/* == */ 1, _(" Instead of just us two,\nwe should let our team members do more.")), + VARIANT(/* == */ 1, _(" For instance, how about\npicking different rescue team leaders\nand members to go to dungeons?")), + VARIANT(/* == */ 1, _(" Depending on the dungeon,\nwe might not even get to go anymore...")), + VARIANT(/* == */ 1, _(" But that way, we could have\ndifferent types of Pokémon go in.\nI think that'd be good for us.")), + VARIANT(/* == */ 3, _(" You know how we always\ngo to dungeons together, $n0?")), + VARIANT(/* == */ 3, _(" But from now on, I expect\nto be seeing different types of dungeons.")), + VARIANT(/* == */ 3, _(" With just us, I think there\nwill be times when we find it tough going.")), + VARIANT(/* == */ 3, _(" So, this is my idea.")), + VARIANT(/* == */ 3, _(" Instead of just us, we\nshould be delegating more to the whole\nteam.")), + VARIANT(/* == */ 3, _(" How about we make it\npossible to pick different leaders and\nmembers for rescue teams?")), + VARIANT(/* == */ 3, _(" I think there will even be\ntimes we don't go on rescues, depending\non the dungeon.")), + VARIANT(/* == */ 3, _(" But I think that will let us\nmount rescues with Pokémon of different\ntypes. It will make the team better.")), + VARIANT_DEFAULT(_(" You know how we always\ngo to dungeons together, $n0?")), + VARIANT_DEFAULT(_(" But I think we'll be seeing\nall sorts of different dungeons from\nnow on...")), + VARIANT_DEFAULT(_(" I think some of them will\nbe tough even for us.")), + VARIANT_DEFAULT(_(" So, I have an idea.")), + VARIANT_DEFAULT(_(" Instead of us running things\nall the time, we should let the team as\na whole do it.")), + VARIANT_DEFAULT(_(" How about we change things\nso we can pick the leader and members\nto go into dungeons?")), + VARIANT_DEFAULT(_(" That might mean we won't\nbe going on rescues to certain dungeons...")), + VARIANT_DEFAULT(_(" But that will let us handle\nrescues better by having more Pokémon\ntypes available.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" What do you say?#W\n$n0, do you think it would be\ngood if we could make anyone the leader?")), + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" What do you say?#W\n$n0, do you think it would be\ngood if we could make anyone the leader?")), + VARIANT(/* == */ 3, _(" Do you like the idea?#W\n$n0, do you think it'd be good\nto be able to freely choose leaders?")), + VARIANT_DEFAULT(_(" Do you like the idea?#W\n$n0, do you think it'd be good to\nbe able to freely choose leaders?")), + CHOICE(/* label */ 2, _("Yes.")), + CHOICE(/* label */ 3, _("No.")), + LABEL(3), /* = 0x03 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + SELECT_ENTITIES(-1, 1), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hah? Why?")), + VARIANT(/* == */ 1, _(" Even up to now, we had\nsome tough times against enemies\nthat could hit our weak points, right?")), + VARIANT(/* == */ 1, _(" In times like that, it's\nbetter to go with different types of\nPokémon.")), + VARIANT(/* == */ 3, _(" Huh? Why?")), + VARIANT(/* == */ 3, _(" Even up to now, we had\ndifficulties against opponents that\nhad type advantages over us.")), + VARIANT(/* == */ 3, _(" It would be a lot more\neffective to go with different types\nof Pokémon, wouldn't it?")), + VARIANT_DEFAULT(_(" Huh? Why?")), + VARIANT_DEFAULT(_(" Even up to now, we've\nfaced tight situations where we had\ntype disadvantages, right?")), + VARIANT_DEFAULT(_(" Don't you think it would be\nbetter if different types of Pokémon\nwent in instead of us?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" Right, $n0?#W\nIt's better to be able to change leaders\nand members in any way, agreed?")), + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" Right, $n0?#W\nIt's better to be able to change leaders\nand members in any way, agreed?")), + VARIANT(/* == */ 3, _(" Right, $n0?#W\nYou agree that it'd be better if we could\nfreely choose team leaders and members?")), + VARIANT_DEFAULT(_(" Right, $n0?#W\nYou agree that it'd be better if we could\nfreely choose team leaders and members?")), + CHOICE(/* label */ 2, _("Yes.")), + CHOICE(/* label */ 3, _("No.")), + LABEL(2), /* = 0x02 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + SELECT_ENTITIES(-1, 2), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Yeah, that's right!#W\nYou think so too, $n0!")), + VARIANT(/* == */ 1, _(" OK! That's settled!#W\nWe'll make it so we can choose the\nPokémon going into dungeons from now on.")), + VARIANT_DEFAULT(_(" Yup, that's right!#W\nI thought you'd agree, $n0!")), + VARIANT_DEFAULT(_(" OK! New rule!#W\nWe can now freely pick the Pokémon that\nare going into dungeons.")), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" This is how we should\npick a rescue team's leader.")), + VARIANT_DEFAULT(_(" I think this is how we\nshould pick the leader of a team going\ninto a dungeon.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" In its Friend Area, face the\nteam member you want to make the leader,\nthen select #C6Make Leader#R on the menu.")), + VARIANT(/* == */ 1, _(" That Pokémon will be the\nteam leader from then on.\nWe should do that before dungeons.")), + VARIANT(/* == */ 1, _(" Oh, there's one more thing.")), + VARIANT(/* == */ 1, _(" Let's also make it so\nthe leader can go to dungeons alone\nif it wants.")), + VARIANT(/* == */ 1, _(" Don't forget!#W To pick a\nleader,#W go to them in their Friend Area...#W\nand select #C6Make Leader#R.")), + VARIANT(/* == */ 1, _(" Let's get in the habit of\ngoing out to Friend Areas and picking\na leader before leaving for a dungeon.")), + VARIANT_DEFAULT(_(" In its Friend Area, face the\nteam member you want as the leader,\nthen select #C6Make Leader#R on the menu.")), + VARIANT_DEFAULT(_(" That will make the Pokémon\nthe team leader.\nWe should do that before every dungeon.")), + VARIANT_DEFAULT(_(" One more thing.")), + VARIANT_DEFAULT(_(" We should make it so\na team leader can go into a dungeon\nalone if it wants.")), + VARIANT_DEFAULT(_(" Anyway...#W To choose the\nleader of a dungeon-bound team...#W\nIn a Friend Area, use...#W #C6Make Leader#R.")), + VARIANT_DEFAULT(_(" We should always choose\nthe team leader in its Friend Area\nbefore sending the team to any dungeon.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + + + +static const struct ScriptCommand s_gs9_g72_s0_lives1_dlg0[] = { /* 0x81ca410 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g72_s1_lives0_dlg0[] = { /* 0x81ca470 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g72_s2_lives0_dlg0[] = { /* 0x81ca500 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g73_s0_evt0_sref_script[] = { /* 0x81ca580 */ + DEBUGINFO, + EXECUTE_STATION(-1, 74, 0), + HALT, +}; + +static const struct ScriptRef s_gs9_g73_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs9_g73_s0_evt0_sref_script }; /* 0x81ca5b0 */ + +static const struct ScriptCommand s_gs9_g74_s0_station_sref_script[] = { /* 0x81ca5bc */ + DEBUGINFO, + SELECT_ENTITIES(-1, 0), + CANCEL_ENTITIES(73, 0), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S01E01A_L001), + RET, +}; + +static const struct ScriptRef s_gs9_g74_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g74_s0_station_sref_script }; /* 0x81ca61c */ + +static const struct ScriptCommand s_gs9_g74_s0_eff0_script[] = { /* 0x81ca628 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0080, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g74_s0_lives0_dlg0[] = { /* 0x81ca698 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Uh...#W Um...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(45), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000004b, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Um...#W\nI'm Wynaut, and this is...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x03, 0x0003, 0x0000006e, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0003, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wobbuffet!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x0000006e, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We have a notice on the\nBulletin Board outside the Pelipper Post\nOffice.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0003, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wobbuffet!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Please look at it for me.\nPlease, please.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wobbuffet!!!#W") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Please help me.#W\nI have to go now.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wobbuffet!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x91, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" What was that?\nWhat just happened?")), + VARIANT(/* == */ 1, _(" That little Pokémon...#W\nWhat was the boy called? Wynaut?")), + VARIANT(/* == */ 1, _(" He wanted us to check the\nBulletin Board at the Pelipper Post Office.")), + VARIANT(/* == */ 1, _(" Maybe those two have a\nproblem or something...")), + VARIANT(/* == */ 1, _(" And they put up a rescue\njob notice on the Bulletin Board.")), + VARIANT(/* == */ 1, _(" There's only one way to\nfind out.#W Let's go to the Pelipper Post\nOffice and check the Bulletin Board.")), + VARIANT_DEFAULT(_(" What was that?\nWhat was that all about?")), + VARIANT_DEFAULT(_(" That little Pokémon...#W\nDid the boy say he was Wynaut?")), + VARIANT_DEFAULT(_(" I think he wanted us to look\nat the Bulletin Board at the Pelipper Post\nOffice.")), + VARIANT_DEFAULT(_(" Maybe Wynaut and his\nfriend have a problem on their hands...")), + VARIANT_DEFAULT(_(" So, they may have a help-\nwanted notice on the Bulletin Board.")), + VARIANT_DEFAULT(_(" Only one thing to do.#W\nLet's go check the Pelipper Post Office's\nBulletin Board.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + + +static const struct ScriptCommand s_gs9_g74_s0_lives1_dlg0[] = { /* 0x81cb178 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000004c, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(470), + CALL_SCRIPT(SWEAT_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe2, 0x00, 0x01d6, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g74_s0_lives2_dlg0[] = { /* 0x81cb3a8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x2d, 0x01, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000004d, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000004e, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000052, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000004f, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g74_s0_lives3_dlg0[] = { /* 0x81cb508 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000050, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000052, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000051, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g75_s0_station_sref_script[] = { /* 0x81cb768 */ + DEBUGINFO, + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(10), + RET, +}; + +static const struct ScriptRef s_gs9_g75_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g75_s0_station_sref_script }; /* 0x81cb7f8 */ + +static const struct ScriptCommand s_gs9_g75_s0_eff0_script[] = { /* 0x81cb804 */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x00000053, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000054, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g75_s0_lives0_dlg0[] = { /* 0x81cb8b4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x57, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0003, -0x00000002, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Just like we promised,\nwe punished that gang of $n4.")), + VARIANT(/* == */ 1, _(" I'm hoping that they'll\nsmarten up and settle down.")), + VARIANT_DEFAULT(_(" Like we promised, we\nshowed the $n4 gang they\nshouldn't monkey around.")), + VARIANT_DEFAULT(_(" That should teach them not\nto be so wild.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Everyone, thank you for\neverything, really.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wobbuffet!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes, we're filled with\ngratitude!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This is our thanks.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY(203), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0's team received\n#+a peeled #C4Chestnut#R as their reward.") }, + { 0xe1, 0x00, 0x00cb, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ..................#W\nThis...#W\nA peeled Chestnut?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes. It's a peeled Chestnut.#W\nYou see, we...") }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Don't have any money.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wobbuffet!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" So we can only give you\na Chestnut as our reward.#W\nAre you unhappy?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Uh... No, no...#W\nWe're OK with this.")), + VARIANT(/* == */ 1, _(" Peeled Chestnuts are\ndelicious...")), + VARIANT(/* == */ 3, _(" Uh... No, no...#W\nWe're not upset.")), + VARIANT(/* == */ 3, _(" I mean, peeled Chestnuts\nare tasty...")), + VARIANT_DEFAULT(_(" Um... No. No...#W\nWe're fine with this.")), + VARIANT_DEFAULT(_(" Peeled Chestnuts are\ndelicious...")), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I like them! Hahahaha!\n(Though I wish we did get some money...)")), + VARIANT(/* == */ 3, _(" I love them! Hahahaha!\n(Some money would have been nice, but...)")), + VARIANT_DEFAULT(_(" I think they're great!\nHahahaha!\n(A little money would have been nice...)")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(470), + CALL_SCRIPT(SWEAT_FUNC), + { 0xe2, 0x00, 0x01d6, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Hey, you!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + WAIT(1), + { 0x91, 0x08, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe2, 0x00, 0x01d1, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(90), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x2e, 0x0f, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Aww, no, the $n4\ngang!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wobbuffet?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Did those goons...")), + VARIANT(/* == */ 1, _(" Did they follow us here\nfor revenge?")), + VARIANT_DEFAULT(_(" That $n4 gang...")), + VARIANT_DEFAULT(_(" Did they chase us here to\nget us back?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(10), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" That's right, you!") }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You got lucky!\nYou don't mess with us!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" We're not gonna lose this\ntime!\nWe'll pulverize you!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Mukkeeeeh!\nCrush them!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x91, 0x08, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0029, 0x00000000, 0x00000000, NULL }, + BGM_STOP, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Whoa!\nL-look at that!") }, + { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Ch-Chestnut!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" It is!\nIt's a peeled Chestnut!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0001, -0x00000001, -0x00000004, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Wh-what?")), + VARIANT_DEFAULT(_(" Wh-what?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Whisper, whisper...") }, + { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Mutter, mutter...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" What's going on?")), + VARIANT_DEFAULT(_(" What are they doing?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They look like...#W\nThey're having a discussion.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wobbuffet!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" What is this all about?")), + VARIANT_DEFAULT(_(" What's going on?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEIN(30, 1), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ...Uh, listen.#W\nYou got something we want...") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" That peeled Chestnut you\nhave...#W\nCan we have it?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" We, uh...#W\nLove peeled Chestnuts!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Like, we love them so much,\nwe can't think of a life without Chestnuts!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Why don't you just go get\nChestnuts on your own?")), + VARIANT_DEFAULT(_(" Can't you just get Chestnuts\nby yourselves?")), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You know how Chestnuts\nhave that spiky shell?") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Trying to peel that spiky\nshell... It hurts.#W\nAnd we end up losing our tempers!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" That's why we're asking.\nGive us that peeled Chestnut.#W\nWe'll do whatever you want.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hmmm...\n$n0, what do you think?") }, + ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" Should we give our peeled\nChestnut to the $n4 gang?")), + CHOICE(/* label */ 15, _("Yes.")), + CHOICE(/* label */ 16, _("No.")), + LABEL(16), /* = 0x10 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 1), + WAIT(2), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" What?!\nYou won't give it up for us?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Who do you think you are?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Mukkeeeeeh!\nGet them!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0xe5, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0029, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x01, 0x0000, 0x00000059, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+$n0 was suddenly attacked\n#+by the $n4 gang!") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+However...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The $n4 gang was weak.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(10), + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x8b, 0x01, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0200, -0x00000010, -0x00000010, NULL }, + WAIT(20), + { 0x54, 0x00, 0x0029, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0500, 0x00000008, 0x00000008, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + WAIT(1), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Ow, ow, ow...") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ...W-we lost...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + BGM_FADEIN(30, 1), + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ...Maybe we can't do this...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You have to understand.\nWe love peeled Chestnuts.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Please?\nWe'll do anything you want if you'll just\ngive us your peeled Chestnut...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0001, -0x00000001, -0x00000004, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hmmm...\n$n0, what do you think?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The $n4 are saying\nthey'll do anything we want.") }, + WAIT(10), + ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" Should we give our peeled\nChestnut to the $n4 gang?")), + CHOICE(/* label */ 15, _("Yes.")), + CHOICE(/* label */ 16, _("No.")), + LABEL(15), /* = 0x0f */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + { 0x8b, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 2), + WAIT(2), + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0001, -0x00000001, -0x00000004, NULL }, + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0003, -0x00000002, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I know!#W\nHey, $n4 gang, how are you guys\nwith physical labor?")), + VARIANT_DEFAULT(_(" I know!#W\nListen, $n4 gang, how are you\nwith physical labor?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Physical labor?\nYou mean muscle work?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" We have muscles...#W\nBut we don't like work.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" But if it's for that\npeeled Chestnut...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" OK!\nThen this is what we'll do!")), + VARIANT(/* == */ 1, _(" We're aiming to rebuild\nour rescue team base so it will be more\nimpressive than this.")), + VARIANT(/* == */ 3, _(" OK!\nThis is what we'll do!")), + VARIANT(/* == */ 3, _(" You see, we want to make\nthis rescue team base more impressive.")), + VARIANT_DEFAULT(_(" OK!\nThis is what we'll do!")), + VARIANT_DEFAULT(_(" We were going to make\nour rescue team base something more\nimpressive than this.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Rescue team base?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" You got it!#W\nOur rescue team base!")), + VARIANT(/* == */ 1, _(" If you'd help us build our\nrescue team base, we could give you this\npeeled Chestnut!")), + VARIANT(/* == */ 1, _(" What do you say?")), + VARIANT_DEFAULT(_(" That's right!#W\nOur rescue team base!")), + VARIANT_DEFAULT(_(" If you would help us with\nthe building of our rescue team base,\nwe could give you this peeled Chestnut!")), + VARIANT_DEFAULT(_(" How does that sound?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Whisper, whisper...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Mutter, mutter...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" OK.\nWe'll help!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Really?#W\nYou'll help us?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Yeah.\nLeave it to us!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" We'll carry in the materials\nand get the place built. Double-quick!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ...In return...#W\nHand over that peeled Chestnut.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0007, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" Me too!\nI'll help too!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" I'll spit silk for gluing\nthings together!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe5, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'll help too!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wobbuffet!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I felt bad because we only\nhad a peeled Chestnut for your reward.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wobbuffet!!!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x0000000b, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sniff...\nThanks, everyone!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" OK!#W\nLet's get a move on!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" OK!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" OK!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x002a, 0x00000000, 0x00000000, NULL }, + WAIT(80), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs9_g75_s0_lives1_dlg0[] = { /* 0x81ce8cc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(30), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + WAIT(1), + { 0x91, 0x08, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0029, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(468), + CALL_SCRIPT(QUESTION_FUNC), + { 0xe2, 0x00, 0x01d4, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x02, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g75_s0_lives2_dlg0[] = { /* 0x81cea9c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x10, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x10, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x61, 0x00, 0x0200, 0x00000128, 0x00000138, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 1), + { 0x91, 0x08, 0x0001, 0x00000007, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x08, 0x0002, 0x00000001, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x08, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000055, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g75_s0_lives3_dlg0[] = { /* 0x81cee3c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x61, 0x00, 0x0200, 0x00000100, 0x00000138, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 1), + { 0x91, 0x08, 0x0001, 0x00000007, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x08, 0x0002, 0x00000001, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x08, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000056, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g75_s0_lives4_dlg0[] = { /* 0x81cf1ac */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000057, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000058, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + WAIT(30), + { 0x63, 0x00, 0x0040, 0x00000057, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0002, 0x00000004, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g75_s0_lives5_dlg0[] = { /* 0x81cf33c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000005a, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(458), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000005b, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + WAIT(30), + { 0x63, 0x00, 0x0040, 0x0000005a, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g75_s0_lives6_dlg0[] = { /* 0x81cf49c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000005c, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(457), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000005d, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + WAIT(30), + { 0x63, 0x00, 0x0040, 0x0000005c, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(455), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g75_s0_lives7_dlg0[] = { /* 0x81cf60c */ + DEBUGINFO, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0400, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0180, 0x0000005e, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000005f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000060, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g75_s1_lives0_dlg0[] = { /* 0x81cf72c */ + DEBUGINFO, + { 0x57, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0029, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x58, 0x01, 0x0000, 0x00000148, 0x00000168, NULL }, + { 0x8b, 0x01, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x62, 0x00, 0x0100, 0x00000010, -0x00000010, NULL }, + { 0x54, 0x00, 0x0029, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0a00, -0x00000010, 0x00000010, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + WAIT(1), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g75_s1_lives1_dlg0[] = { /* 0x81cf94c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(472), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000058, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x01, 0x0000, 0x00000061, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(40), + { 0x63, 0x00, 0x0100, 0x00000059, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x63, 0x00, 0x0100, 0x00000057, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g75_s1_lives2_dlg0[] = { /* 0x81cfacc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(458), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x01, 0x0000, 0x0000005a, 0x00000000, NULL }, + { 0x8b, 0x01, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g75_s1_lives3_dlg0[] = { /* 0x81cfbec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(457), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000005d, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x01, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x58, 0x01, 0x0000, 0x00000130, 0x00000180, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x62, 0x00, 0x0200, 0x00000010, -0x00000010, NULL }, + WAIT(40), + FANFARE_PLAY2(497), + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x63, 0x00, 0x0100, 0x0000005c, 0x00000000, NULL }, + WAIT(10), + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g75_s2_lives0_dlg0[] = { /* 0x81cfd9c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(455), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x002a, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g75_s2_lives1_dlg0[] = { /* 0x81cff1c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g75_s2_lives2_dlg0[] = { /* 0x81cffdc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000062, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g75_s2_lives3_dlg0[] = { /* 0x81d009c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000063, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000064, 0x00000000, NULL }, + { 0x91, 0x01, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0001, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g76_s0_station_sref_script[] = { /* 0x81d018c */ + DEBUGINFO, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(9), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And so...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Construction work began on\n#+the rescue team base of") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+$n0's team\n#+$t.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Several days later...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + BGM_FADEIN(60, 1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs9_g76_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g76_s0_station_sref_script }; /* 0x81d0340 */ + + +static const struct ScriptCommand s_gs9_g76_s0_eff0_script[] = { /* 0x81d034c */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000066, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0200, 0x00000067, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000068, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g76_s0_lives0_dlg0[] = { /* 0x81d041c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Whew...#W\nOur base is coming along quickly.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wobbuffet!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We owe everyone for this.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wobbuffet!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(80), + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" But there's still lots to do.") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" We still have difficult\nthings to do.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wobbuffet!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Yeah...#W But we're getting\nclose, right, $n4 gang?#W\n...#WHah?")), + VARIANT_DEFAULT(_(" That's true.#W But we're\ngetting close, right, $n4 gang?#W\n...#WHuh?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Look!\nOver there!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x53, 0x00, 0x0000, 0x00000001, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000069, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000006a, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0007, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" What's up with you guys?")), + VARIANT_DEFAULT(_(" What's the matter?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" We need to keep working.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0b, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0004, -0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Don't wanna.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(455), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + WAIT(20), + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" This work's too boring!#W\nHow do you expect us to keep going?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0c, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Yeah, that's right.\nI don't wanna do this anymore.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" We might change our minds\nif you get us more peeled Chestnuts.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...What is it with these\nguys...?")), + VARIANT_DEFAULT(_(" ...What is this about?")), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" We just can't be bothered.\nWe need peeled Chestnuts to motivate us.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Problem, $n0.")), + VARIANT(/* == */ 1, _(" It looks like the\n$n4 gang won't work unless\nwe get them another peeled Chestnut.")), + VARIANT(/* == */ 1, _(" I guess we have to find\nmore peeled Chestnuts and give them to\nthe $n4 gang.")), + VARIANT_DEFAULT(_(" We have a problem,\n$n0.")), + VARIANT_DEFAULT(_(" I don't think the\n$n4 gang will work unless\nwe get them another peeled Chestnut.")), + VARIANT_DEFAULT(_(" I guess we'll have to give\nthe $n4 gang any peeled\nChestnuts that we find.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + +static const struct ScriptCommand s_gs9_g76_s0_lives1_dlg0[] = { /* 0x81d11b8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(30), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + WAIT(5), + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + WAIT(1), + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe2, 0x00, 0x01d1, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000001, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000006b, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000006c, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT(1), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g76_s0_lives2_dlg0[] = { /* 0x81d1408 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(16), + { 0x53, 0x00, 0x0000, 0x00000001, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000073, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000074, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000075, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00000001, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + HALT, +}; + +static const struct ScriptCommand s_gs9_g76_s0_lives3_dlg0[] = { /* 0x81d1578 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000001, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000070, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000071, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000072, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00000001, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + HALT, +}; + +static const struct ScriptCommand s_gs9_g76_s0_lives4_dlg0[] = { /* 0x81d17f8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g76_s0_lives5_dlg0[] = { /* 0x81d1888 */ + DEBUGINFO, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x01, 0x0000, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g76_s0_lives6_dlg0[] = { /* 0x81d1918 */ + DEBUGINFO, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g76_s0_lives7_dlg0[] = { /* 0x81d1998 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0002, 0x00000007, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(30), + CALL_SCRIPT(SMILE_END_FUNC), + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, -0x00000010, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000001, 0x00000000, NULL }, + WAIT(20), + { 0x6b, 0x00, 0x00cc, 0x0000006d, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000006e, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000006f, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + HALT, +}; + +static const struct ScriptCommand s_gs9_g77_s0_station_sref_script[] = { /* 0x81d1b28 */ + DEBUGINFO, + JUMPIF_EQUAL(WARP_LOCK, 0, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_SUB1, 30, /* to label */ 1), + RET_DIRECT, + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(-1, 0), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs9_g77_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs9_g77_s0_station_sref_script }; /* 0x81d1bb8 */ + +static const struct ScriptCommand s_gs9_g77_s0_lives0_dlg0[] = { /* 0x81d1bc4 */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g77_s0_lives0_dlg2[] = { /* 0x81d1bf4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_HASITEM(ITEM_CHESTNUT, /* to label */ 0), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hunh?\nDid you bring us a peeled Chestnut?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What?!\nYou don't have any?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Then we can't work!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you want us to renovate\nyour rescue team base, bring us \na Chestnut. A peeled one!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We see peeled #CIChestnuts#R\nsometimes in #CDUproar Forest#R.\nWe want them out of the shell.") }, + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + + +static const struct ScriptCommand s_gs9_g77_s0_lives1_dlg0[] = { /* 0x81d1df4 */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g77_s0_lives1_dlg2[] = { /* 0x81d1e24 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_HASITEM(ITEM_CHESTNUT, /* to label */ 0), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hunh?\nDid you bring us a peeled Chestnut?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What?!\nYou don't have any?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Then we can't work!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you want us to renovate\nyour rescue team base, bring us \na Chestnut. A peeled one!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We see #CIChestnuts#R\nsometimes in #CDUproar Forest#R.\nWe want them out of the shell.") }, + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + + +static const struct ScriptCommand s_gs9_g77_s0_lives2_dlg0[] = { /* 0x81d1f5c */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g77_s0_lives2_dlg2[] = { /* 0x81d1f8c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_HASITEM(ITEM_CHESTNUT, /* to label */ 0), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hunh?\nDid you bring us a peeled Chestnut?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What?!\nYou don't have any?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Then we can't work!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you want us to renovate\nyour rescue team base, bring us \na Chestnut. A peeled one!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We see #CIChestnuts#R\nsometimes in #CDUproar Forest#R.\nWe want them out of the shell.") }, + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + + +static const struct ScriptCommand s_gs9_g77_s0_lives3_dlg0[] = { /* 0x81d206c */ + DEBUGINFO, + RET, +}; + +static const struct ScriptCommand s_gs9_g77_s0_lives3_dlg2[] = { /* 0x81d208c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We're going to work hard!\nWe'll finish the rescue team base!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs9_g77_s0_lives4_dlg2[] = { /* 0x81d2130 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000041, 0x00000000, NULL }, + WAIT(1), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wobbuffet!") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs9_g77_s0_lives4_dlg3[] = { /* 0x81d21f0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_END_TALK_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs9_g77_s1_station_sref_script[] = { /* 0x81d22c0 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 1), + RET, +}; + +static const struct ScriptRef s_gs9_g77_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs9_g77_s1_station_sref_script }; /* 0x81d22f0 */ + +static const struct ScriptCommand s_gs9_g77_s1_eff0_script[] = { /* 0x81d22fc */ + DEBUGINFO, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000053, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000054, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g77_s1_lives0_dlg0[] = { /* 0x81d23bc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x0c, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMPIF_EQUAL(PARTNER1_KIND, 0, /* to label */ 1), + { 0xe5, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0xe5, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0b, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Huh?\nDid you bring us a peeled Chestnut?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0e, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh!\nA Chestnut!\nWe want a peeled Chestnut!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0b, 0x0002, 0x00000000, 0x00000000, NULL }, + ASK3( TRUE, /*default*/ -1, /* speaker */ 2, _(" Come on, give it to us!\nWe'll work hard for it.")), + CHOICE(/* label */ 3, _("Give.")), + CHOICE(/* label */ 4, _("Don't give.")), + LABEL(4), /* = 0x04 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 2), + WAIT(2), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x2e, 0x0b, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What?!\nYou won't give it up for us?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0e, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Who do you think you are?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0b, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0002, -0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Mukkeeeeeh!\nGet them!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+$n0 was suddenly attacked\n#+by the $n2 gang!") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+However...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The $n2 gang was weak.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x22, 0x00, 0x0028, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0b, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ow, ow, ow...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...W-we lost...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + BGM_FADEIN(30, 1), + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), + LABEL(3), /* = 0x03 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 peeled the spiny shell\n#+and handed the peeled Chestnut over.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + SELECT_ENTITIES(-1, 3), + WAIT(1), + { 0x2e, 0x0c, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0b, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes!\nA peeled Chestnut!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe5, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" All right, you layabouts!\nGet it together! Chop, chop!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0e, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Why don't you quit lounging\naround yourself?!\nGet moving!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe5, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0b, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We'll get hustling on\nrenovating your rescue team base!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0b, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0002, -0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We'll carry in the materials\nand get the place built. Double-quick!#W\nYou just wait!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SCENARIO_ADVANCE(SCENARIO_SUB1, /*unused*/ 30), + REMOVE_ITEMSTACK(ITEM_CHESTNUT), + JUMPIF_SCENE_LT(SCENARIO_SUB1, 30, 2, /* to label */ 7), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And so...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Supplied with another peeled Chestnut,\n#+the $n2 gang got motivated...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And returned to work on\n#+the rescue team base's renovation.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+As a result...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The rescue team base's completion\n#+moved a little closer.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(1), + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), + LABEL(8), /* = 0x08 */ + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S01E01C_L001), + HALT, +}; + + + + + +static const struct ScriptCommand s_gs9_g77_s1_lives1_dlg0[] = { /* 0x81d3084 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g77_s1_lives2_dlg0[] = { /* 0x81d3104 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g77_s1_lives3_dlg0[] = { /* 0x81d3164 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g77_s1_lives4_dlg0[] = { /* 0x81d31c4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g77_s2_lives0_dlg0[] = { /* 0x81d3224 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x6f, 0x08, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g77_s2_lives1_dlg0[] = { /* 0x81d3314 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x6f, 0x08, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g77_s2_lives2_dlg0[] = { /* 0x81d33e4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x6f, 0x08, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g77_s3_lives0_dlg0[] = { /* 0x81d34b4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g77_s3_lives1_dlg0[] = { /* 0x81d35a4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x91, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g77_s3_lives2_dlg0[] = { /* 0x81d3694 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g78_s0_station_sref_script[] = { /* 0x81d3774 */ + DEBUGINFO, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(9), + { 0x2d, 0x09, 0x0000, 0x0000006f, 0x00000000, NULL }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And so...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Supplied with another peeled Chestnut,\n#+the $n0 gang got motivated...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And returned to work on\n#+the rescue team base's renovation.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And finally...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The rescue team base was completed!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2d, 0x09, 0x0000, 0x0000006f, 0x00000000, NULL }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+As a result of everyone's desperate\n#+efforts to stop the $n0 gang...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The rescue team base was saved.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+As for the $n4 gang, they\n#+promised to keep from rampaging...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+In return for more peeled Chestnuts,\n#+they returned to their forest.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And that is how...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The chaotic renovation of\n#+the rescue team base came to an end.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CANCEL_ENTITIES(-1, 0), + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x00, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs9_g78_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g78_s0_station_sref_script }; /* 0x81d3b78 */ + + + +static const struct ScriptCommand s_gs9_g78_s0_eff0_script[] = { /* 0x81d3b84 */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000076, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000077, 0x00000000, NULL }, + BGM_STOP, + WAIT(20), + FANFARE_PLAY(201), + { 0xe1, 0x00, 0x00c9, 0x00000000, 0x00000000, NULL }, + WAIT(30), + BGM_FADEIN(120, 1), + { 0x6b, 0x00, 0x0100, 0x00000076, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x00000078, 0x00000000, NULL }, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g78_s0_lives0_dlg0[] = { /* 0x81d3cc4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Sniff...#W\nFinally...#W\nThis day has finally come...")), + VARIANT_DEFAULT(_(" Sniff...#W\nFinally...#W\nThis day has finally arrived...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0!\nIt's finally finished!")), + VARIANT(/* == */ 1, _(" Our... #C5$t#R's\nrescue team base!")), + VARIANT(/* == */ 3, _(" $n0!\nIt's finally ready!")), + VARIANT(/* == */ 3, _(" Our... #C5$t#R's\nrescue team base!")), + VARIANT_DEFAULT(_(" $n0!\nIt's ready! Finally!")), + VARIANT_DEFAULT(_(" Our... #C5$t#R's\nrescue team base!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Sniff... This is so cool.#W\nI can stare at it forever! Our rescue team\nbase is so cool.")), + VARIANT_DEFAULT(_(" Sniff... It's so cool.#W\nEvery time I take a look at our rescue\nteam base, I only see coolness.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" The way it looks like you\nis a nice touch, $n0!")), + VARIANT_DEFAULT(_(" Its resemblance to you\nis a nice touch, $n0!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" We all worked very hard!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It was very hard, but it\nwas worth it!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wobbuffet!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x0001, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x0a, 0x0002, 0x00000001, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x0a, 0x0001, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x0a, 0x0002, 0x00000001, 0x00000000, NULL }, + WAIT(20), + { 0x2e, 0x15, 0x0001, 0x0000000a, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sniff... Everyone...#W\nThank you!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0b, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0004, -0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Say, there.#W\nThere's something I want to ask...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe5, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" If this rescue team base is\nfinished...") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Does that maybe mean...#W\nYou won't bring us peeled Chestnuts\nanymore?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hahaha!\nWell, what do you think?")), + VARIANT(/* == */ 1, _(" We don't need to keep\nworking on the base anymore.")), + VARIANT(/* == */ 1, _(" To our $n4 gang!#W\nThanks for everything!")), + VARIANT_DEFAULT(_(" Hahaha!\nOf course!")), + VARIANT_DEFAULT(_(" We're finished with work\non our rescue team base.")), + VARIANT_DEFAULT(_(" To our $n4 gang!#W\nSincerely, thank you for everything!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(120), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x10, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0004, -0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ............") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0c, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ........................") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ....................................") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe5, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Ukkeeeeeeeeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CLEAR_ARRAY(EVENT_LOCAL), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0xe5, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wh-what?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(10), + { 0xe5, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Whoa, whoa, whoa!\nWhat are you doing?!\nStop that!")), + VARIANT_DEFAULT(_(" Waah! What are you doing?!\nStop that!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x6a, 0x00, 0x0180, 0x00000000, -0x00000030, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + WAIT(20), + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000047, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000008, NULL }, + WAIT(10), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + +static const struct ScriptCommand s_gs9_g78_s0_lives1_dlg0[] = { /* 0x81d4d24 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x0001, 0x00000006, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x0a, 0x0002, 0x00000007, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x0a, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x0a, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(10), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + WAIT(10), + { 0x91, 0x06, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0180, -0x00000010, -0x00000040, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000007a, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000079, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(100), + { 0x54, 0x00, 0x0028, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000004, NULL }, + WAIT(30), + { 0x56, 0x00, 0x0000, 0x00000047, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000004, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g78_s0_lives2_dlg0[] = { /* 0x81d5054 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(70), + { 0x6b, 0x00, 0x0100, 0x0000007e, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + HALT, +}; + +static const struct ScriptCommand s_gs9_g78_s0_lives3_dlg0[] = { /* 0x81d5184 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + WAIT(10), + { 0x91, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0x6a, 0x00, 0x0200, -0x00000020, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000038, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g78_s0_lives4_dlg0[] = { /* 0x81d52f4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x57, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(472), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe2, 0x00, 0x01d8, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x0000007b, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(702), + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(24), + FANFARE_PLAY2(610), + { 0xe2, 0x00, 0x0262, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 1), + { 0x54, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(702), + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(24), + FANFARE_PLAY2(610), + { 0xe2, 0x00, 0x0262, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + FANFARE_FADEOUT2(100, 702), + FANFARE_FADEOUT2(100, 610), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000004, NULL }, + WAIT(30), + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000004, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g78_s0_lives5_dlg0[] = { /* 0x81d5644 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x57, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x0000007c, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 1), + { 0x54, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(20), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000008, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g78_s0_lives6_dlg0[] = { /* 0x81d5854 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x57, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x0000007c, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x0000007d, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 1), + { 0x54, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(16), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + { 0x54, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x54, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(1), + HALT, +}; + +static const struct ScriptCommand s_gs9_g78_s0_lives7_dlg0[] = { /* 0x81d5a84 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + WAIT(5), + { 0x91, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x06, 0x000a, 0x00000072, 0x00000000, NULL }, + WAIT(80), + { 0x6b, 0x00, 0x00cc, 0x0000007f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g79_s0_station_sref_script[] = { /* 0x81d5b94 */ + DEBUGINFO, + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs9_g79_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g79_s0_station_sref_script }; /* 0x81d5c34 */ + +static const struct ScriptCommand s_gs9_g79_s0_eff0_script[] = { /* 0x81d5c40 */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x00000080, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0200, 0x00000000, -0x00000074, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0xa8, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0x89, 0x48, 0x0100, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g79_s0_lives0_dlg0[] = { /* 0x81d5d20 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0e, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Thank you so much.\nYou saved me from great peril.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" That's cool, $n2.#W\nBut why'd you run away?")), + VARIANT(/* == */ 1, _(" Your letter said something\nabout not wanting to be a grown-up, but...")), + VARIANT_DEFAULT(_(" No problem, $n2.#W\nBut what made you run away in the first\nplace?")), + VARIANT_DEFAULT(_(" Your letter said something\nabout not wanting to become an adult...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That is...") }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Look, there he is!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Yeah, I see him.\nWe've got to get him back quick!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0001, -0x00000001, -0x00000004, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" More $n2?#W\nTwo of them, even...")), + VARIANT_DEFAULT(_(" More $n2?#W\nTwo of them...")), + WAIT(20), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, $n2.#W\nWho are those guys?")), + VARIANT_DEFAULT(_(" Hey, $n2.#W\nWhat do they want?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They're...#W\nMy friends.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Now, come with us.#W\nThe grown-up ritual is ready for you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Quit fighting this.\nHave the paw print applied without a fuss.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" N-no!") }, + WAIT(20), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If I have to get that\npaw print on my back...#W\nI'd rather not become a grown-up!") }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" What is that?#W\nThis grown-up ritual?")), + VARIANT_DEFAULT(_(" What was that?#W\nWhat grown-up ritual?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" It is a custom among us $m2.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" When we reach a certain age, they\nmark our backs with paw prints to show\nwe are grown-ups.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" They do that by taking the\nfront paw...#W\nand pushing doooooowwnn on the back...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I can't live with anything\nso tasteless.") }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I have dreams of creating\ngreat art, so I have certain standards\nfor design that I swear by.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...I know!#W\nI have decided!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I shall join $n0's\nrescue team!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I will participate in your\nrescue activities!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" So...\nI won't return to the pack!#W\nThis is where I will dedicate myself!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Is... Is that so?\nThen there is nothing we can do.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" We will inform our elders of your\ndecision.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" We wish you luck in your new career\nas a rescuer.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, wow...\nThat's one pushy way of getting a job.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But, that's OK.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Welcome to the team!#W\nWe expect your best, $n2!")), + VARIANT_DEFAULT(_(" You're on the team now!#W\nWe expect your best, $n2!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes!\nThank you!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" One thing I am good at is\ndrawing and painting.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" For example...#W\nLet me see...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ah, how about that?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + SELECT_LIVES(79, 1), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000081, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Observe, the design of that\nflag.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I could perhaps redesign\nthe flag?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If you wish to alter the\nflag's design, you must tell me, please.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x1d, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 16), + FANFARE_PLAY(204), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n2 joined the rescue team!") }, + { 0xe1, 0x00, 0x00cc, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x3b, 0x1e, 0x0000, 0x00000000, 0x00000000, NULL }, + ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to $n2?")), + CHOICE(/* label */ 17, _("*Yes")), + CHOICE(/* label */ 18, _("No")), + LABEL(17), /* = 0x11 */ + { 0x3d, 0x00, 0x0000, -0x00000001, 0x00000000, NULL }, + LABEL(18), /* = 0x12 */ + { 0x3b, 0x1f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB1, 32, 3), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I will find my own place\nin the #C4Sky Blue Plains#R.\nUntil then...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, + LABEL(16), /* = 0x10 */ + SCENARIO_CALC(SCENARIO_SUB1, 32, 2), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...But wait! I see that\nmy Friend Area is full...#W\nThis is most unfortunate.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I could join your rescue\nteam if there were room for me in the\n#C4Sky Blue Plains#R...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Please speak with me\nagain then.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs9_g79_s0_lives1_dlg0[] = { /* 0x81d764c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000005, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x0001, 0x00000005, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(469), + CALL_SCRIPT(QUESTION_FUNC), + { 0xe2, 0x00, 0x01d5, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(SHOCK_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000070, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g79_s0_lives2_dlg0[] = { /* 0x81d797c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe2, 0x00, 0x01d1, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0200, -0x00000010, 0x00000000, NULL }, + FANFARE_PLAY2(457), + { 0x56, 0x00, 0x0000, 0x00000047, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000010, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0200, -0x00000010, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000010, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x08, 0x0001, 0x00000007, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x08, 0x0002, 0x00000001, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x08, 0x0001, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe2, 0x00, 0x01d1, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0200, 0x00000000, 0x00000020, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(1), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + WAIT(20), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + WAIT(20), + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe2, 0x00, 0x01d1, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x00000081, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g79_s0_lives3_dlg0[] = { /* 0x81d7dcc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x01, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000020, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000058, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(455), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000004, 0x00000000, NULL }, + WAIT(5), + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000004, 0x00000000, NULL }, + WAIT(60), + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, 0x00000050, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g79_s0_lives4_dlg0[] = { /* 0x81d7fbc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x01, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000010, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000068, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + WAIT(30), + { 0x62, 0x00, 0x0100, -0x00000004, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(35), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000004, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, 0x00000050, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g79_s1_lives0_dlg0[] = { /* 0x81d81ec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + HALT, +}; + +static const struct ScriptCommand s_gs9_g80_s0_lives0_dlg1[] = { /* 0x81d825c */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0x51, 0x00, 0x0083, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(MOVE_RANDOM), +}; + +static const struct ScriptCommand s_gs9_g80_s0_lives0_dlg2[] = { /* 0x81d829c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Pshehehehehe!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" That Lombre... He amuses\nme so!\nPshehehehehe!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, long time no see.\nYou are well?") }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You see, I have heard about\nLombre's tale.\nIt is too funny.") }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I have heard that Lombre\nalmost drowned at sea!") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But that Lombre--he lives\nin water! How very pathetic!\nPshehehehehe!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMPIF_SCENE_GT(SCENARIO_SUB2, 33, 2, /* to label */ 1), + SCENARIO_CALC(SCENARIO_SUB2, 33, 2), + LABEL(1), /* = 0x01 */ + SELECT_LIVES(80, 0), + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs9_g80_s0_lives0_dlg3[] = { /* 0x81d8594 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g81_s0_station_sref_script[] = { /* 0x81d86b4 */ + DEBUGINFO, + BGM_STOP, + SELECT_MAP(9), + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(60), + RET, +}; + +static const struct ScriptRef s_gs9_g81_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g81_s0_station_sref_script }; /* 0x81d87cc */ + +static const struct ScriptCommand s_gs9_g81_s0_lives0_dlg0[] = { /* 0x81d87d8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hi, $n2, long time!#W\nYou're here to visit us?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" After all that's happened...")), + VARIANT(/* == */ 3, _(" After everything that\nwe went through...")), + VARIANT_DEFAULT(_(" After everything that\nwe went through...")), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n2, you must be\ninterested in our adventures!\nHahahaha!")), + VARIANT(/* == */ 3, _(" $n2, you must be\ninterested in our achievements!\nHahahaha!")), + VARIANT_DEFAULT(_(" $n2, you must be\nintrigued by our achievements!\nHahahaha!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000061, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0x2e, 0x0b, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kwaaaaaah!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Wrong!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Shopping in Pokémon\nSquare is what I came to do.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I come here only because\nit is on the way...\nThis is not very important.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(470), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh...\nIs that all...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Hey, $n2!") }, + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh, hey!\nThere you are!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Didn't know you'd be here.\nYou had me looking, $n2.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What is it?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Well, to the northeast of\n#CDMt. Thunder#R...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" There's a gigantic cave!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" There wasn't anything like\nthat there before, hey?") }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" So, I figured $n2\nwould know something...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + WAIT(60), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000061, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kwaaaah!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe5, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I shall call it...#W\nThe #CDMeteor Cave#R.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x00, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" #CDMeteor Cave#R?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It was when Rayquaza\ndestroyed the falling star...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Its pieces broken, they\nscattered across the skies.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" One tumbled to earth.\nIt fell into a mountain, and made the\ncavern you speak of.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Say, $n3.")), + VARIANT_DEFAULT(_(" Um, $n3.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Did you explore inside the\n#CDMeteor Cave#R?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Uh, yeah...#W\nJust a little...") }, + { 0x2e, 0x0d, 0x0003, 0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" But the place was crawling\nwith these weird things...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" It freaked me out.\nI couldn't stay there long...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000a, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Ahaha!\nWho would've thought it?\n$n3's kind of cowardly!")), + VARIANT_DEFAULT(_(" Hahaha!\nSurprise, surprise!\n$n3's kind of cowardly!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" What's that?!") }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Hey, you, $n1.#W\nIf you were to see that dungeon, you'd be\nintimidated too!") }, + { 0x2e, 0x15, 0x0003, 0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I've never seen anything\nlike it before...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" There were downright\nbizarre things in there that I'm not\nsure were even Pokémon.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000061, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" $n2, do you have\nany idea what are in that place?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...I draw a blank.#W\nI do not know...") }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" However...#W\nThat cavern. The collision that caused \nit had to be enormous.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If there were things that\nsurvived the crash...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Perhaps...\nOf this world they may not be.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" You mean...#W\nThey came from that falling star?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Perhaps that is so...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0.\nWe should go investigate.#W\nThe #CDMeteor Cave#R.")), + VARIANT_DEFAULT(_(" $n0.\nWant to go investigate?#W\nThe #CDMeteor Cave#R.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + BGM_STOP, + FANFARE_PLAY(205), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The rescue team gained\n#+access to the #CDMeteor Cave#R!") }, + { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs9_g81_s0_lives1_dlg0[] = { /* 0x81d9bb4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005d, 0x00000000, NULL }, + WAIT(60), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000061, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000061, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005d, 0x00000000, NULL }, + WAIT(60), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000061, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g81_s0_lives2_dlg0[] = { /* 0x81d9e14 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(474), + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(474), + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g81_s0_lives3_dlg0[] = { /* 0x81da054 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000084, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005e, 0x00000000, NULL }, + WAIT(60), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs9_g82_s0_station_sref_script[] = { /* 0x81da204 */ + DEBUGINFO, + SELECT_MAP(9), + BGM_STOP, + SELECT_ENTITIES(-1, 0), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs9_g82_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g82_s0_station_sref_script }; /* 0x81da284 */ + +static const struct ScriptCommand s_gs9_g83_s0_station_sref_script[] = { /* 0x81da290 */ + DEBUGINFO, + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs9_g83_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g83_s0_station_sref_script }; /* 0x81da310 */ + +static const struct ScriptCommand s_gs9_g83_s0_eff1_script[] = { /* 0x81da31c */ + DEBUGINFO, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + UPDATE_VARINT(CALC_ADD, EVENT_LOCAL, 1), + { 0x56, 0x00, 0x0000, 0x00000063, 0x00000000, NULL }, + { 0x62, 0x00, 0x0800, -0x00000008, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 30, /* to label */ 1), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g83_s0_lives0_dlg0[] = { /* 0x81da3bc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x97, 0x00, 0x0002, 0x00000001, 0x00000003, NULL }, + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Whooooooosh!") }, + { 0x6a, 0x00, 0x0200, 0x00000000, 0x00000050, NULL }, + WAIT(60), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0000, 0x0000000c, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...This sound...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...Something's coming closer?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Whoooooooooooooooooooooooshhh!") }, + WAIT(20), + FANFARE_STOP2(508), + FANFARE_PLAY2(779), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x97, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 30, /* to label */ 2), + JUMP_LABEL(1), + LABEL(2), /* = 0x02 */ + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6a, 0x00, 0x0200, 0x00000000, 0x00000028, NULL }, + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + FANFARE_PLAY2(469), + CALL_SCRIPT(QUESTION_FUNC), + { 0x2e, 0x07, 0x0000, 0x00000004, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Wh-what was that...?#W\nWhat just happened?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Something huge flew by at an incredible\nspeed...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("It seemed to be going...\nToward the mountain range in the north?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............#W\nYawwwwwn...\nStill sleepy...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("It's still early.\nI'll catch a little more sleep...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x6a, 0x00, 0x0099, 0x00000000, -0x00000028, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0099, 0x00000000, -0x00000028, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs9_g83_s0_lives1_dlg0[] = { /* 0x81da88c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x1400, -0x00000078, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x1400, -0x00000078, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g84_s0_station_sref_script[] = { /* 0x81da91c */ + DEBUGINFO, + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(60), + RET, +}; + +static const struct ScriptRef s_gs9_g84_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g84_s0_station_sref_script }; /* 0x81da9bc */ + +static const struct ScriptCommand s_gs9_g84_s0_lives0_dlg0[] = { /* 0x81da9c8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0003, 0x00000002, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0003, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" $n2!#W\nYou're safe! Yesssss!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0e, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0002, -0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm so sorry, $n3.#W\nThat dungeon--it was too much for me.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Thank you for saving me.#W\nI appreciate it〜♪") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x15, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ow, ow, ow...#W\nMy body--it hurts all over even now...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...But that dungeon...\nWhat is it about it?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They say it makes a wish\ncome true. So, I went...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But it was very hard in\nthere--most terribly so!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kiiih!\nI never want to go again!\nSuch a terrible place!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" At first, I made an SOS Call\nbecause I did not want to lose this...") }, + { 0x2e, 0x15, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But I will give it to you.#W\nHere! Your reward for my rescue〜♪") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005d, 0x00000000, NULL }, + WAIT(30), + { 0x3c, 0x2c, 0x0000, 0x00000036, 0x00000000, NULL }, + WAIT(30), + JUMP_LABEL(4), + LABEL(4), /* = 0x04 */ + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They say if you take that\nstone to the #CDWish Cave#R...\nTo its very depths...") }, + { 0x2e, 0x15, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Wonder of wonders!#W\nA wish--it comes true!") }, + { 0x2e, 0x15, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You see〜♪\nA rich reward, won't you agree?") }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" However...#W\nIf you lose that #CIWish Stone#R on\nthe way, the wish cannot come true.") }, + { 0x2e, 0x15, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" For me, it was impossible.\nBut you must try〜♪") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + +static const struct ScriptCommand s_gs9_g84_s0_lives1_dlg0[] = { /* 0x81db1f8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x0002, 0x0000005c, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x0002, 0x0000005c, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(ANGRY_START_FUNC), + WAIT(60), + CALL_SCRIPT(ANGRY_END_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, 0x00000020, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000020, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g84_s0_lives1_dlg2[] = { /* 0x81db3d8 */ + DEBUGINFO, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" They say if you take that\nWish Stone to the Wish Cave...\nTo its very depths...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wonder of wonders!#W\nA wish--it comes true!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You see〜♪\nA rich reward, won't you agree?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" However...#W\nIf you lose that #CIWish Stone#R on\nthe way, the wish cannot come true.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" For me, it was impossible.\nBut you must try〜♪") }, + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs9_g84_s0_lives2_dlg0[] = { /* 0x81db4b8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005d, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005d, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g84_s0_lives2_dlg2[] = { /* 0x81db5e8 */ + DEBUGINFO, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I give up too.\nI'll live with my weak chin.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Well, just give it a try\nand make that wish come true!") }, + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs9_g85_s0_station_sref_script[] = { /* 0x81db6b4 */ + DEBUGINFO, + SELECT_MAP(9), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs9_g85_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g85_s0_station_sref_script }; /* 0x81db734 */ + +static const struct ScriptCommand s_gs9_g85_s0_lives0_dlg0[] = { /* 0x81db740 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n2 is our newest\nfriend!#W\nGlad to have you with us!")), + VARIANT_DEFAULT(_(" From now on, $n2\nis our friend!#W\nGlad to meet you!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The latest recruit to\n#+Team #C5$t#R!") }, + FANFARE_PLAY(204), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n2 joined\n#+the rescue team!") }, + { 0xe1, 0x00, 0x00cc, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x2a, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 2), + COND_EQUAL(1, /* to label */ 2), + WAIT(10), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+And more!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The Friend Area\n#+#CH$h#R was obtained!") }, + FANFARE_PLAY(212), + { 0xe1, 0x00, 0x00d4, 0x00000000, 0x00000000, NULL }, + { 0x31, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(2), /* = 0x02 */ + { 0x3b, 0x2b, 0x0000, 0x00000000, 0x00000000, NULL }, + ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to $n2?")), + CHOICE(/* label */ 3, _("*Yes.")), + CHOICE(/* label */ 4, _("No.")), + LABEL(3), /* = 0x03 */ + { 0x3d, 0x00, 0x0000, -0x00000001, 0x00000000, NULL }, + LABEL(4), /* = 0x04 */ + { 0x3b, 0x2c, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + +static const struct ScriptCommand s_gs9_g85_s0_lives1_dlg0[] = { /* 0x81dba98 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g85_s0_lives2_dlg0[] = { /* 0x81dbad8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g86_s0_station_sref_script[] = { /* 0x81dbb18 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + SELECT_ENTITIES(-1, 1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(87, 0), + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g86_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g86_s0_station_sref_script }; /* 0x81dbc08 */ + +static const struct ScriptCommand s_gs9_g86_s0_lives0_dlg0[] = { /* 0x81dbc14 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh!\nLate riser!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Like always, slow to rise,\naren't you, Team #C5$t#R! Kekeke!") }, + { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Tchah!#W\nBut that's not what I came here to say.\nNot today.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It irks me to say this, but...#W\nI need your help.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Can you take me up\n#CDMt. Freeze#R?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I tried going up over and\nover, but...#W Keh...\nIt's steep and harsh...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ninetales is up on\n#CDMt. Freeze#R.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I've got to see Ninetales.\nI'm prepared to do whatever it takes.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + ASK3(FALSE, /*default*/ -1, /* speaker */ 2, _(" That's why I'm asking you.#W\nTake me up #CDMt. Freeze#R.")), + CHOICE(/* label */ 2, _("Yes.")), + CHOICE(/* label */ 3, _("No.")), + LABEL(2), /* = 0x02 */ + WAIT(4), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 2), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Keke! That's settled!\nYou have my trust!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(4), + LABEL(3), /* = 0x03 */ + { 0x2e, 0x15, 0x0002, 0x00000043, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Keh!\nYeah, I saw that coming!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm the fool here for even\nbelieving in you lot.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Who needs your help?\nI'll be seeing you around!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + SELECT_ENTITIES(-1, 3), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#W\nI'd like to say that, but I need your help.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I've got to see Ninetales.\nI'm prepared to do whatever it takes.") }, + ASK3(FALSE, /*default*/ -1, /* speaker */ 2, _(" That's why I'm asking you.#W\nTake me up #CDMt. Freeze#R!")), + CHOICE(/* label */ 2, _("Yes.")), + CHOICE(/* label */ 3, _("No.")), + LABEL(4), /* = 0x04 */ + WAIT(10), + BGM_STOP, + FANFARE_PLAY(204), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n2 can now tag\n#+along with the rescue team!") }, + { 0xe1, 0x00, 0x00cc, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(1), + WAIT(30), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The only place I want to go\nis #CDMt. Freeze#R.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm not about to tag along\nif you're going to other dungeons.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'll only tag along when you\ngo off to #CDMt. Freeze#R. Keke!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + + + +static const struct ScriptCommand s_gs9_g86_s1_lives0_dlg0[] = { /* 0x81dc418 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g86_s2_lives0_dlg0[] = { /* 0x81dc458 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g86_s3_lives0_dlg0[] = { /* 0x81dc4d8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x30, 0x0080, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0x91, 0x06, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(30), + { 0x89, 0x18, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g87_s0_lives0_dlg2[] = { /* 0x81dc588 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The only place I want to go\nis #CDMt. Freeze#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm not about to tag along\nif you're going to other dungeons.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll only tag along when you\ngo off to #CDMt. Freeze#R. Keke!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs9_g88_s0_station_sref_script[] = { /* 0x81dc618 */ + DEBUGINFO, + SELECT_MAP(9), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(60), + RET, +}; + +static const struct ScriptRef s_gs9_g88_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g88_s0_station_sref_script }; /* 0x81dc6b8 */ + +static const struct ScriptCommand s_gs9_g88_s0_lives0_dlg0[] = { /* 0x81dc6c4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Keke!\nYou did good today.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Next, we go to that\n#CDMurky Cave#R place...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That sounds like another\nchallenging place, so I'll need your\nhelp still! Keke!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs9_g88_s0_lives1_dlg0[] = { /* 0x81dc828 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g88_s0_lives1_dlg2[] = { /* 0x81dc878 */ + DEBUGINFO, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" They say, if you take that\nWish Stone to the Wish Cave...\nTo its very depths...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wonder of wonders!#W\nA wish--it comes true!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You see〜♪\nA rich reward, won't you agree?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" However...#W\nIf you lose that #CIWish Stone#R on\nthe way, the wish cannot come true.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" For me, it was impossible.\nBut you must try〜♪") }, + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs9_g89_s0_station_sref_script[] = { /* 0x81dc95c */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(90, 0), + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs9_g89_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs9_g89_s0_station_sref_script }; /* 0x81dca3c */ + +static const struct ScriptCommand s_gs9_g89_s0_lives0_dlg0[] = { /* 0x81dca48 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh!\nLate riser!") }, + ASK3(FALSE, /*default*/ -1, /* speaker */ 2, _(" It's the #CDMurky Cave#R next.#W\nI'll need your help for that.")), + CHOICE(/* label */ 2, _("Yes.")), + CHOICE(/* label */ 3, _("No.")), + LABEL(2), /* = 0x02 */ + WAIT(4), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 1), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Keke! Then, we'll go!\nTo the #CDMurky Cave#R!") }, + { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gardevoir's physical form...\nThat's where it is.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" For my sake, Gardevoir...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Nah, that's not important.#W\nI just feel like going! Keke!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...OK, go there for me!\nTo the #CDMurky Cave#R!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(4), + LABEL(3), /* = 0x03 */ + { 0x2e, 0x15, 0x0002, 0x00000043, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Keh!\nIs that right.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" See you around!\nKeke!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 2), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#W\nI thought that, but I need your help.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I have to go to the\n#CDMurky Cave#R.\nI'm prepared to do whatever it takes.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" When I get there, I...") }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + ASK3(FALSE, /*default*/ -1, /* speaker */ 2, _(" It doesn't matter.\nI just need your help.#W\nTake me to the #CDMurky Cave#R!")), + CHOICE(/* label */ 2, _("Yes.")), + CHOICE(/* label */ 3, _("No.")), + LABEL(4), /* = 0x04 */ + WAIT(10), + BGM_STOP, + FANFARE_PLAY(204), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n2 can now tag\n#+along with the rescue team!") }, + { 0xe1, 0x00, 0x00cc, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(1), + WAIT(30), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The only place I want to go\nis the #CDMurky Cave#R.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm not about to tag along\nif you're going to other dungeons.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'll only tag along when you\ngo off to the #CDMurky Cave#R. Keke!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + + + +static const struct ScriptCommand s_gs9_g89_s0_lives1_dlg0[] = { /* 0x81dd114 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g89_s1_lives0_dlg0[] = { /* 0x81dd154 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g89_s2_lives0_dlg0[] = { /* 0x81dd224 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x30, 0x0080, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0x91, 0x06, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(30), + { 0x89, 0x18, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs9_g90_s0_lives0_dlg2[] = { /* 0x81dd2d4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The only place I want to go\nis the #CDMurky Cave#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm not about to tag along\nif you're going to other dungeons.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll only tag along when you\ngo off to the #CDMurky Cave#R. Keke!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs9_g91_s0_station_sref_script[] = { /* 0x81dd364 */ + DEBUGINFO, + SELECT_MAP(9), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(5), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(60), + RET, +}; + +static const struct ScriptRef s_gs9_g91_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs9_g91_s0_station_sref_script }; /* 0x81dd404 */ + +static const struct ScriptCommand s_gs9_g91_s0_lives0_dlg0[] = { /* 0x81dd410 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0e, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Thank you so much...#W\nMy curse has been lifted.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" You did this for me, even\nthough I had never met you before...#W\nI have no idea how to thank you...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" From the bottom of my\nheart...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Thank you so very much for\nsaving me.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0002, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#W\nGood for you, $n3.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hey, $n0.\nThanks for getting me through this.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This is my thanks.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x3c, 0x2c, 0x0000, 0x00000009, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Adios.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + BGM_FADEOUT(60), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh, wait, please!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What is it now?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Your name...#W\nPlease, what is your name?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Keh!") }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The name's $n2.#W\nGlad to meet you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0003, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" My name is $n3.#W\nI am also glad to meet you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + +static const struct ScriptCommand s_gs9_g91_s0_lives1_dlg0[] = { /* 0x81dd9c8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x18, 0x0100, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x28, 0x0080, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs9_g91_s0_lives2_dlg0[] = { /* 0x81ddad8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct GroundLivesData s_gs9_g0_s1_lives[] = { /* 0x81ddb58 */ + /* 0 */ { 0, 6, 0, 0, { 61, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 6, 0, 0, { 64, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g0_s2_lives[] = { /* 0x81ddb88 */ + /* 0 */ { 0, 2, 0, 0, { 8, 46, 0, 0 }, { + [0] = s_gs9_g0_s2_lives0_dlg0, + } }, + /* 1 */ { 4, 2, 0, 0, { 5, 46, 0, 0 }, { + [0] = s_gs9_g0_s2_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g0_s3_lives[] = { /* 0x81ddbb8 */ + /* 0 */ { 0, 4, 0, 0, { 34, 62, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 34, 64, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g0_s4_lives[] = { /* 0x81ddbe8 */ + /* 0 */ { 0, 0, 0, 0, { 34, 29, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 34, 27, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g0_s5_lives[] = { /* 0x81ddc18 */ + /* 0 */ { 0, 4, 0, 0, { 34, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g0_s5_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 34, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g0_s5_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g0_s6_lives[] = { /* 0x81ddc48 */ + /* 0 */ { 0, 4, 0, 0, { 34, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g0_s6_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 34, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g0_s6_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g0_s7_lives[] = { /* 0x81ddc78 */ + /* 0 */ { 51, 0, 0, 0, { 63, 40, 0, 0 }, { + [2] = s_gs9_g0_s7_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs9_g1_s1_lives[] = { /* 0x81ddc90 */ + /* 0 */ { 10, 0, 0, 0, { 30, 49, 0, CPOS_HALFTILE }, { + [2] = s_gs9_g1_s1_lives0_dlg2, + } }, + /* 1 */ { 11, 0, 0, 0, { 30, 52, 0, CPOS_HALFTILE }, { + [2] = s_gs9_g1_s1_lives1_dlg2, + } }, + /* 2 */ { 12, 0, 0, 0, { 27, 49, 0, CPOS_HALFTILE }, { + [2] = s_gs9_g1_s1_lives2_dlg2, + } }, + /* 3 */ { 13, 0, 0, 0, { 27, 52, 0, CPOS_HALFTILE }, { + [2] = s_gs9_g1_s1_lives3_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs9_g2_s1_lives[] = { /* 0x81ddcf0 */ + /* 0 */ { 55, 4, 0, 0, { 54, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g2_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g5_s0_lives[] = { /* 0x81ddd08 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g5_s0_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g5_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g5_s1_lives[] = { /* 0x81ddd38 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g5_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g6_s1_lives[] = { /* 0x81ddd50 */ + /* 0 */ { 0, 2, 0, 0, { 32, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g6_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 6, 0, 0, { 37, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g6_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g6_s2_lives[] = { /* 0x81ddd80 */ + /* 0 */ { 0, 4, 0, 0, { 34, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g6_s2_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g7_s0_lives[] = { /* 0x81ddd98 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g7_s0_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g7_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g7_s1_lives[] = { /* 0x81dddc8 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g7_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g8_s0_lives[] = { /* 0x81ddde0 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g8_s0_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g8_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g9_s0_lives[] = { /* 0x81dde10 */ + /* 0 */ { 124, 0, 0, 0, { 27, 37, 0, CPOS_HALFTILE }, { + [2] = s_gs9_g9_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs9_g10_s0_lives[] = { /* 0x81dde28 */ + /* 0 */ { 134, 0, 0, 0, { 46, 39, 0, CPOS_HALFTILE }, { + [2] = s_gs9_g10_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs9_g11_s0_lives[] = { /* 0x81dde40 */ + /* 0 */ { 115, 0, 0, 0, { 49, 39, 0, CPOS_HALFTILE }, { + [2] = s_gs9_g11_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs9_g12_s0_lives[] = { /* 0x81dde58 */ + /* 0 */ { 120, 0, 0, 0, { 52, 39, 0, CPOS_HALFTILE }, { + [2] = s_gs9_g12_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs9_g13_s0_lives[] = { /* 0x81dde70 */ + /* 0 */ { 70, 0, 0, 0, { 55, 39, 0, CPOS_HALFTILE }, { + [2] = s_gs9_g13_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs9_g14_s0_lives[] = { /* 0x81dde88 */ + /* 0 */ { 128, 0, 0, 0, { 58, 39, 0, CPOS_HALFTILE }, { + [2] = s_gs9_g14_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs9_g15_s0_lives[] = { /* 0x81ddea0 */ + /* 0 */ { 123, 0, 0, 0, { 61, 39, 0, CPOS_HALFTILE }, { + [2] = s_gs9_g15_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs9_g16_s0_lives[] = { /* 0x81ddeb8 */ + /* 0 */ { 82, 0, 0, 0, { 64, 39, 0, CPOS_HALFTILE }, { + [2] = s_gs9_g16_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs9_g17_s0_lives[] = { /* 0x81dded0 */ + /* 0 */ { 0, 4, 0, 0, { 34, 46, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g17_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 37, 46, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g17_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g17_s2_lives[] = { /* 0x81ddf00 */ + /* 0 */ { 34, 0, 0, 0, { 34, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g17_s2_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g17_s3_lives[] = { /* 0x81ddf18 */ + /* 0 */ { 34, 0, 0, 0, { 34, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g17_s3_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g18_s0_lives[] = { /* 0x81ddf30 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g18_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 0, 0, 0, { 34, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g18_s0_lives1_dlg0, + } }, + /* 2 */ { 55, 4, 0, 0, { 54, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g18_s0_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g19_s0_lives[] = { /* 0x81ddf78 */ + /* 0 */ { 34, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g19_s0_lives0_dlg0, + [2] = s_gs9_g19_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs9_g19_s1_lives[] = { /* 0x81ddf90 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g19_s1_lives0_dlg0, + } }, + /* 1 */ { 34, 0, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g19_s1_lives1_dlg0, + [2] = s_gs9_g19_s1_lives1_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs9_g20_s0_lives[] = { /* 0x81ddfc0 */ + /* 0 */ { 0, 4, 0, 0, { 31, 36, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g20_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 0, 0, 0, { 34, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g20_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g20_s1_lives[] = { /* 0x81ddff0 */ + /* 0 */ { 34, 0, 0, 0, { 34, 34, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g20_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g20_s2_lives[] = { /* 0x81de008 */ + /* 0 */ { 34, 0, 0, 0, { 34, 34, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g20_s2_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g21_s0_lives[] = { /* 0x81de020 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g21_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g21_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g22_s1_lives[] = { /* 0x81de050 */ + /* 0 */ { 0, 2, 0, 0, { 5, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g22_s1_lives0_dlg0, + } }, + /* 1 */ { 7, 2, 0, 0, { 8, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g22_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g22_s2_lives[] = { /* 0x81de080 */ + /* 0 */ { 0, 2, 0, 0, { 5, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g22_s2_lives0_dlg0, + } }, + /* 1 */ { 7, 2, 0, 0, { 8, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g22_s2_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g23_s0_lives[] = { /* 0x81de0b0 */ + /* 0 */ { 0, 2, 0, 0, { 32, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g23_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 6, 0, 0, { 37, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g23_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g24_s1_lives[] = { /* 0x81de0e0 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g24_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g25_s0_lives[] = { /* 0x81de0f8 */ + /* 0 */ { 0, 2, 0, 0, { 31, 36, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g25_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 6, 0, 0, { 34, 50, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g25_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g26_s0_lives[] = { /* 0x81de128 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g26_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g26_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g26_s1_lives[] = { /* 0x81de158 */ + /* 0 */ { 66, 0, 0, 0, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g26_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g27_s0_lives[] = { /* 0x81de170 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g27_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g27_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g28_s0_lives[] = { /* 0x81de1a0 */ + /* 0 */ { 0, 4, 0, 0, { 32, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g28_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 36, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g28_s0_lives1_dlg0, + } }, + /* 2 */ { 68, 0, 0, 0, { 32, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g28_s0_lives2_dlg0, + } }, + /* 3 */ { 61, 0, 0, 0, { 36, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g28_s0_lives3_dlg0, + } }, + /* 4 */ { 62, 0, 0, 0, { 34, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g28_s0_lives4_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g28_s1_lives[] = { /* 0x81de218 */ + /* 0 */ { 66, 0, 0, 0, { 34, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g28_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g29_s0_lives[] = { /* 0x81de230 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g29_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 34, 45, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g29_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g30_s0_lives[] = { /* 0x81de260 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g30_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 34, 45, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g30_s0_lives1_dlg0, + } }, + /* 2 */ { 91, 4, 0, 0, { 34, 45, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g30_s0_lives2_dlg0, + } }, + /* 3 */ { 92, 4, 0, 0, { 37, 45, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g30_s0_lives3_dlg0, + } }, + /* 4 */ { 93, 4, 0, 0, { 31, 45, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g30_s0_lives4_dlg0, + } }, + /* 5 */ { 55, 6, 0, 0, { 54, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g30_s0_lives5_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g31_s0_lives[] = { /* 0x81de2f0 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g31_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 34, 45, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g31_s0_lives1_dlg0, + } }, + /* 2 */ { 91, 2, 0, 0, { 34, 49, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g31_s0_lives2_dlg0, + } }, + /* 3 */ { 92, 2, 0, 0, { 37, 49, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g31_s0_lives3_dlg0, + } }, + /* 4 */ { 93, 2, 0, 0, { 31, 49, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g31_s0_lives4_dlg0, + } }, + /* 5 */ { 54, 2, 0, 0, { 34, 50, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g31_s0_lives5_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g32_s0_lives[] = { /* 0x81de380 */ + /* 0 */ { 54, 4, 0, 0, { 34, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g32_s0_lives0_dlg0, + [2] = s_gs9_g32_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs9_g33_s0_lives[] = { /* 0x81de398 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g33_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g33_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g34_s0_lives[] = { /* 0x81de3c8 */ + /* 0 */ { 0, 4, 0, 0, { 32, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g34_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 36, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g34_s0_lives1_dlg0, + } }, + /* 2 */ { 54, 0, 0, 0, { 32, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g34_s0_lives2_dlg0, + } }, + /* 3 */ { 94, 0, 0, 0, { 36, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g34_s0_lives3_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g35_s0_lives[] = { /* 0x81de428 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g35_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g35_s1_lives[] = { /* 0x81de440 */ + /* 0 */ { 34, 6, 0, 0, { 34, 43, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g35_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g35_s2_lives[] = { /* 0x81de458 */ + /* 0 */ { 78, 4, 0, 0, { 34, 43, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g35_s2_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g36_s0_lives[] = { /* 0x81de470 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g36_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 7, 0, 0, { 37, 30, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g36_s0_lives1_dlg0, + } }, + /* 2 */ { 78, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g36_s0_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g37_s0_lives[] = { /* 0x81de4b8 */ + /* 0 */ { 78, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g37_s0_lives0_dlg0, + [2] = s_gs9_g37_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs9_g38_s0_lives[] = { /* 0x81de4d0 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g38_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g38_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g39_s0_lives[] = { /* 0x81de500 */ + /* 0 */ { 0, 4, 0, 0, { 33, 45, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g39_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 36, 45, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g39_s0_lives1_dlg0, + } }, + /* 2 */ { 78, 0, 0, 0, { 33, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g39_s0_lives2_dlg0, + } }, + /* 3 */ { 95, 0, 0, 0, { 36, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g39_s0_lives3_dlg0, + } }, + /* 4 */ { 88, 6, 0, 0, { 52, 43, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g39_s0_lives4_dlg0, + } }, + /* 5 */ { 90, 6, 0, 0, { 54, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g39_s0_lives5_dlg0, + } }, + /* 6 */ { 89, 6, 0, 0, { 54, 45, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g39_s0_lives6_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g40_s0_lives[] = { /* 0x81de5a8 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g40_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 34, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g40_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g42_s0_lives[] = { /* 0x81de5d8 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g42_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g42_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g43_s0_lives[] = { /* 0x81de608 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g43_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 34, 45, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g43_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g44_s0_lives[] = { /* 0x81de638 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g44_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g44_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g45_s0_lives[] = { /* 0x81de668 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g45_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 34, 45, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g45_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g45_s1_lives[] = { /* 0x81de698 */ + /* 0 */ { 55, 0, 0, 0, { 54, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g45_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g46_s0_lives[] = { /* 0x81de6b0 */ + /* 0 */ { 0, 2, 0, 0, { 32, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g46_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 6, 0, 0, { 36, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g46_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g47_s0_lives[] = { /* 0x81de6e0 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g47_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g47_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g48_s0_lives[] = { /* 0x81de710 */ + /* 0 */ { 0, 2, 0, 0, { 34, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g48_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 6, 0, 0, { 38, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g48_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g48_s1_lives[] = { /* 0x81de740 */ + /* 0 */ { 88, 6, 0, 0, { 42, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g48_s1_lives0_dlg0, + } }, + /* 1 */ { 89, 6, 0, 0, { 43, 45, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g48_s1_lives1_dlg0, + } }, + /* 2 */ { 90, 6, 0, 0, { 43, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g48_s1_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g48_s2_lives[] = { /* 0x81de788 */ + /* 0 */ { 54, 6, 0, 0, { 42, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g48_s2_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g49_s0_lives[] = { /* 0x81de7a0 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g49_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 34, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g49_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g50_s0_lives[] = { /* 0x81de7d0 */ + /* 0 */ { 34, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g50_s0_lives0_dlg0, + [2] = s_gs9_g50_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs9_g50_s2_lives[] = { /* 0x81de7e8 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g50_s2_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g50_s2_lives1_dlg0, + [2] = s_gs9_g50_s2_lives1_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs9_g50_s3_lives[] = { /* 0x81de818 */ + /* 0 */ { 0, 2, 0, 0, { 5, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g50_s3_lives0_dlg0, + } }, + /* 1 */ { 34, 0, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g50_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g51_s0_lives[] = { /* 0x81de848 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g51_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 0, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g51_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g52_s0_lives[] = { /* 0x81de878 */ + /* 0 */ { 0, 2, 0, 0, { 34, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g52_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 1, 0, 0, { 37, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g52_s0_lives1_dlg0, + } }, + /* 2 */ { 88, 6, 0, 0, { 41, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g52_s0_lives2_dlg0, + } }, + /* 3 */ { 89, 6, 0, 0, { 42, 46, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g52_s0_lives3_dlg0, + } }, + /* 4 */ { 90, 6, 0, 0, { 42, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g52_s0_lives4_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g53_s0_lives[] = { /* 0x81de8f0 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g53_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 0, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g53_s0_lives1_dlg0, + } }, + /* 2 */ { 54, 4, 0, 0, { 37, 45, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g53_s0_lives2_dlg0, + } }, + /* 3 */ { 94, 4, 0, 0, { 33, 45, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g53_s0_lives3_dlg0, + } }, + /* 4 */ { 55, 0, 0, 0, { 54, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g53_s0_lives4_dlg0, + } }, + /* 5 */ { 78, 4, 0, 0, { 34, 47, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g53_s0_lives5_dlg0, + } }, + /* 6 */ { 95, 4, 0, 0, { 36, 47, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g53_s0_lives6_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g53_s2_lives[] = { /* 0x81de998 */ + /* 0 */ { 68, 0, 0, 0, { 39, 33, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g53_s2_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g55_s0_lives[] = { /* 0x81de9b0 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g55_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 34, 45, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g55_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g55_s1_lives[] = { /* 0x81de9e0 */ + /* 0 */ { 55, 4, 0, 0, { 54, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g55_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g57_s0_lives[] = { /* 0x81de9f8 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g57_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g57_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g58_s0_lives[] = { /* 0x81dea28 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g58_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g58_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g58_s1_lives[] = { /* 0x81dea58 */ + /* 0 */ { 77, 4, 0, 0, { 52, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g58_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g59_s0_lives[] = { /* 0x81dea70 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g59_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g59_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g60_s0_lives[] = { /* 0x81deaa0 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g60_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g60_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g61_s0_lives[] = { /* 0x81dead0 */ + /* 0 */ { 34, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g61_s0_lives0_dlg0, + [2] = s_gs9_g61_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs9_g61_s1_lives[] = { /* 0x81deae8 */ + /* 0 */ { 0, 2, 0, 0, { 5, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g61_s1_lives0_dlg0, + } }, + /* 1 */ { 34, 0, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g61_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g62_s0_lives[] = { /* 0x81deb18 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g62_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g62_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g63_s0_lives[] = { /* 0x81deb48 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g63_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g63_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g64_s1_lives[] = { /* 0x81deb78 */ + /* 0 */ { 0, 2, 0, 0, { 5, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g64_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g65_s0_lives[] = { /* 0x81deb90 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g65_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 34, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g65_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g67_s0_lives[] = { /* 0x81debc0 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g67_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g67_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g68_s0_lives[] = { /* 0x81debf0 */ + /* 0 */ { 0, 4, 0, 0, { 34, 51, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g68_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 34, 36, CPOS_HALFTILE, 0 }, { + [0] = s_gs9_g68_s0_lives1_dlg0, + } }, + /* 2 */ { 54, 3, 0, 0, { 32, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g68_s0_lives2_dlg0, + } }, + /* 3 */ { 94, 5, 0, 0, { 36, 39, CPOS_HALFTILE, 0 }, { + [0] = s_gs9_g68_s0_lives3_dlg0, + } }, + /* 4 */ { 78, 5, 0, 0, { 38, 43, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g68_s0_lives4_dlg0, + } }, + /* 5 */ { 95, 5, 0, 0, { 40, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g68_s0_lives5_dlg0, + } }, + /* 6 */ { 80, 5, 0, 0, { 25, 43, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g68_s0_lives6_dlg0, + } }, + /* 7 */ { 79, 0, 0, 0, { 28, 39, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g68_s0_lives7_dlg0, + } }, + /* 8 */ { 77, 6, 0, 0, { 38, 36, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g68_s0_lives8_dlg0, + } }, + /* 9 */ { 85, 2, 0, 0, { 44, 42, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g68_s0_lives9_dlg0, + } }, + /* 10 */ { 88, 6, 0, 0, { 34, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g68_s0_lives10_dlg0, + } }, + /* 11 */ { 89, 0, 0, 0, { 30, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g68_s0_lives11_dlg0, + } }, + /* 12 */ { 90, 1, 0, 0, { 38, 46, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g68_s0_lives12_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g69_s0_lives[] = { /* 0x81ded28 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g69_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 0, 0, 0, { 34, 26, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g69_s0_lives1_dlg0, + } }, + /* 2 */ { 54, 4, 0, 0, { 34, 43, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g69_s0_lives2_dlg0, + } }, + /* 3 */ { 94, 4, 0, 0, { 37, 45, CPOS_HALFTILE, 0 }, { + [0] = s_gs9_g69_s0_lives3_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g71_s0_lives[] = { /* 0x81ded88 */ + /* 0 */ { 0, 0, 0, 0, { 34, 62, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g71_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 0, 0, 0, { 34, 64, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g71_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g72_s0_lives[] = { /* 0x81dedb8 */ + /* 0 */ { 0, 6, 0, 0, { 37, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g72_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 2, 0, 0, { 32, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g72_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g72_s1_lives[] = { /* 0x81dede8 */ + /* 0 */ { 7, 2, 0, 0, { 32, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g72_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g72_s2_lives[] = { /* 0x81dee00 */ + /* 0 */ { 7, 2, 0, 0, { 32, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g72_s2_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g74_s0_lives[] = { /* 0x81dee18 */ + /* 0 */ { 0, 6, 0, 0, { 34, 46, CPOS_HALFTILE, 0 }, { + [0] = s_gs9_g74_s0_lives0_dlg0, + } }, + /* 1 */ { 4, 6, 0, 0, { 34, 43, CPOS_HALFTILE, 0 }, { + [0] = s_gs9_g74_s0_lives1_dlg0, + } }, + /* 2 */ { 109, 6, 0, 0, { 57, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g74_s0_lives2_dlg0, + } }, + /* 3 */ { 110, 6, 0, 0, { 60, 43, CPOS_HALFTILE, 0 }, { + [0] = s_gs9_g74_s0_lives3_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g75_s0_lives[] = { /* 0x81dee78 */ + /* 0 */ { 0, 4, 0, 0, { 32, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g75_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 36, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g75_s0_lives1_dlg0, + } }, + /* 2 */ { 109, 0, 0, 0, { 36, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g75_s0_lives2_dlg0, + } }, + /* 3 */ { 110, 0, 0, 0, { 32, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g75_s0_lives3_dlg0, + } }, + /* 4 */ { 112, 4, 0, 0, { 34, 57, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g75_s0_lives4_dlg0, + } }, + /* 5 */ { 113, 4, 0, 0, { 32, 60, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g75_s0_lives5_dlg0, + } }, + /* 6 */ { 114, 4, 0, 0, { 36, 60, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g75_s0_lives6_dlg0, + } }, + /* 7 */ { 54, 0, 0, 0, { 53, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g75_s0_lives7_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g75_s1_lives[] = { /* 0x81def38 */ + /* 0 */ { 34, 4, 0, 0, { 36, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g75_s1_lives0_dlg0, + } }, + /* 1 */ { 112, 4, 0, 0, { 34, 48, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g75_s1_lives1_dlg0, + } }, + /* 2 */ { 113, 4, 0, 0, { 32, 50, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g75_s1_lives2_dlg0, + } }, + /* 3 */ { 114, 4, 0, 0, { 36, 50, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g75_s1_lives3_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g75_s2_lives[] = { /* 0x81def98 */ + /* 0 */ { 34, 4, 0, 0, { 36, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g75_s2_lives0_dlg0, + } }, + /* 1 */ { 112, 4, 0, 0, { 34, 48, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g75_s2_lives1_dlg0, + } }, + /* 2 */ { 113, 4, 0, 0, { 32, 50, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g75_s2_lives2_dlg0, + } }, + /* 3 */ { 114, 4, 0, 0, { 36, 50, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g75_s2_lives3_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g76_s0_lives[] = { /* 0x81deff8 */ + /* 0 */ { 0, 4, 0, 0, { 37, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g76_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 35, 32, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g76_s0_lives1_dlg0, + } }, + /* 2 */ { 109, 4, 0, 0, { 32, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g76_s0_lives2_dlg0, + } }, + /* 3 */ { 110, 3, 0, 0, { 29, 30, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g76_s0_lives3_dlg0, + } }, + /* 4 */ { 112, 0, 0, 0, { 24, 45, CPOS_HALFTILE, 0 }, { + [0] = s_gs9_g76_s0_lives4_dlg0, + } }, + /* 5 */ { 113, 0, 0, 0, { 24, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g76_s0_lives5_dlg0, + } }, + /* 6 */ { 114, 0, 0, 0, { 27, 43, CPOS_HALFTILE, 0 }, { + [0] = s_gs9_g76_s0_lives6_dlg0, + } }, + /* 7 */ { 54, 5, 0, 0, { 39, 30, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g76_s0_lives7_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g77_s0_lives[] = { /* 0x81df0b8 */ + /* 0 */ { 112, 0, 0, 0, { 23, 43, CPOS_HALFTILE, 0 }, { + [0] = s_gs9_g77_s0_lives0_dlg0, + [2] = s_gs9_g77_s0_lives0_dlg2, + } }, + /* 1 */ { 113, 0, 0, 0, { 24, 39, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g77_s0_lives1_dlg0, + [2] = s_gs9_g77_s0_lives1_dlg2, + } }, + /* 2 */ { 114, 0, 0, 0, { 27, 41, CPOS_HALFTILE, 0 }, { + [0] = s_gs9_g77_s0_lives2_dlg0, + [2] = s_gs9_g77_s0_lives2_dlg2, + } }, + /* 3 */ { 109, 2, 0, 0, { 29, 34, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g77_s0_lives3_dlg0, + [2] = s_gs9_g77_s0_lives3_dlg2, + } }, + /* 4 */ { 110, 6, 0, 0, { 43, 22, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs9_g77_s0_lives4_dlg2, + [3] = s_gs9_g77_s0_lives4_dlg3, + } }, +}; + +static const struct GroundLivesData s_gs9_g77_s1_lives[] = { /* 0x81df130 */ + /* 0 */ { 0, 4, 0, 0, { 32, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g77_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 36, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g77_s1_lives1_dlg0, + } }, + /* 2 */ { 112, 0, 0, 0, { 23, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g77_s1_lives2_dlg0, + } }, + /* 3 */ { 113, 0, 0, 0, { 24, 39, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g77_s1_lives3_dlg0, + } }, + /* 4 */ { 114, 0, 0, 0, { 27, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g77_s1_lives4_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g77_s2_lives[] = { /* 0x81df1a8 */ + /* 0 */ { 112, 4, 0, 0, { 23, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g77_s2_lives0_dlg0, + } }, + /* 1 */ { 113, 4, 0, 0, { 24, 39, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g77_s2_lives1_dlg0, + } }, + /* 2 */ { 114, 4, 0, 0, { 27, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g77_s2_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g77_s3_lives[] = { /* 0x81df1f0 */ + /* 0 */ { 112, 4, 0, 0, { 22, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g77_s3_lives0_dlg0, + } }, + /* 1 */ { 113, 4, 0, 0, { 24, 39, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g77_s3_lives1_dlg0, + } }, + /* 2 */ { 114, 4, 0, 0, { 27, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g77_s3_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g78_s0_lives[] = { /* 0x81df238 */ + /* 0 */ { 0, 4, 0, 0, { 34, 43, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g78_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 38, 43, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g78_s0_lives1_dlg0, + } }, + /* 2 */ { 109, 4, 0, 0, { 37, 47, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g78_s0_lives2_dlg0, + } }, + /* 3 */ { 110, 4, 0, 0, { 40, 46, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g78_s0_lives3_dlg0, + } }, + /* 4 */ { 112, 4, 0, 0, { 31, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g78_s0_lives4_dlg0, + } }, + /* 5 */ { 113, 4, 0, 0, { 28, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g78_s0_lives5_dlg0, + } }, + /* 6 */ { 114, 4, 0, 0, { 30, 46, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g78_s0_lives6_dlg0, + } }, + /* 7 */ { 54, 4, 0, 0, { 34, 46, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g78_s0_lives7_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g79_s0_lives[] = { /* 0x81df2f8 */ + /* 0 */ { 1, 4, 0, 0, { 32, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g79_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 36, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g79_s0_lives1_dlg0, + } }, + /* 2 */ { 124, 0, 0, 0, { 34, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g79_s0_lives2_dlg0, + } }, + /* 3 */ { 126, 4, 0, 0, { 32, 63, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g79_s0_lives3_dlg0, + } }, + /* 4 */ { 125, 4, 0, 0, { 36, 63, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g79_s0_lives4_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g79_s1_lives[] = { /* 0x81df370 */ + /* 0 */ { 124, 0, 0, 0, { 25, 24, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g79_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g80_s0_lives[] = { /* 0x81df388 */ + /* 0 */ { 93, 0, 0, 0, { 63, 45, 0, CPOS_HALFTILE }, { + [1] = s_gs9_g80_s0_lives0_dlg1, + [2] = s_gs9_g80_s0_lives0_dlg2, + [3] = s_gs9_g80_s0_lives0_dlg3, + } }, +}; + +static const struct GroundLivesData s_gs9_g81_s0_lives[] = { /* 0x81df3a0 */ + /* 0 */ { 1, 4, 0, 0, { 32, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g81_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 36, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g81_s0_lives1_dlg0, + } }, + /* 2 */ { 97, 0, 0, 0, { 34, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g81_s0_lives2_dlg0, + } }, + /* 3 */ { 104, 6, 0, 0, { 52, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g81_s0_lives3_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g83_s0_lives[] = { /* 0x81df400 */ + /* 0 */ { 33, 0, 0, 0, { 34, 27, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g83_s0_lives0_dlg0, + } }, + /* 1 */ { 121, 6, 0, 0, { 54, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g83_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g84_s0_lives[] = { /* 0x81df430 */ + /* 0 */ { 0, 4, 0, 0, { 34, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g84_s0_lives0_dlg0, + } }, + /* 1 */ { 93, 0, 0, 0, { 31, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g84_s0_lives1_dlg0, + [2] = s_gs9_g84_s0_lives1_dlg2, + } }, + /* 2 */ { 92, 0, 0, 0, { 37, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g84_s0_lives2_dlg0, + [2] = s_gs9_g84_s0_lives2_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs9_g85_s0_lives[] = { /* 0x81df478 */ + /* 0 */ { 33, 4, 0, 0, { 37, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g85_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 32, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs9_g85_s0_lives1_dlg0, + } }, + /* 2 */ { 32, 0, 0, 0, { 34, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g85_s0_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g86_s0_lives[] = { /* 0x81df4c0 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g86_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g86_s1_lives[] = { /* 0x81df4d8 */ + /* 0 */ { 91, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g86_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g86_s2_lives[] = { /* 0x81df4f0 */ + /* 0 */ { 91, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g86_s2_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g86_s3_lives[] = { /* 0x81df508 */ + /* 0 */ { 91, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g86_s3_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g87_s0_lives[] = { /* 0x81df520 */ + /* 0 */ { 91, 0, 0, 0, { 25, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs9_g87_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs9_g88_s0_lives[] = { /* 0x81df538 */ + /* 0 */ { 0, 4, 0, 0, { 34, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g88_s0_lives0_dlg0, + } }, + /* 1 */ { 91, 0, 0, 0, { 34, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g88_s0_lives1_dlg0, + [2] = s_gs9_g88_s0_lives1_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs9_g89_s0_lives[] = { /* 0x81df568 */ + /* 0 */ { 0, 0, 0, 0, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g89_s0_lives0_dlg0, + } }, + /* 1 */ { 91, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g89_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g89_s1_lives[] = { /* 0x81df598 */ + /* 0 */ { 91, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g89_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g89_s2_lives[] = { /* 0x81df5b0 */ + /* 0 */ { 91, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g89_s2_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs9_g90_s0_lives[] = { /* 0x81df5c8 */ + /* 0 */ { 91, 0, 0, 0, { 25, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs9_g90_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs9_g91_s0_lives[] = { /* 0x81df5e0 */ + /* 0 */ { 0, 4, 0, 0, { 31, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g91_s0_lives0_dlg0, + } }, + /* 1 */ { 91, 4, 0, 0, { 37, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g91_s0_lives1_dlg0, + } }, + /* 2 */ { 82, 0, 0, 0, { 34, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs9_g91_s0_lives2_dlg0, + } }, +}; + +static const struct GroundObjectData s_gs9_g0_s0_objs[] = { /* 0x81df628 */ + /* 0 */ { 13, 0, 3, 4, { 31, 34, CPOS_HALFTILE, 0 }, { + [2] = s_gs9_g0_s0_obj0_dlg2, + } }, + /* 1 */ { 26, 0, 4, 3, { 27, 16, 0, CPOS_HALFTILE }, {} }, + /* 2 */ { 15, 0, 3, 2, { 8, 42, CPOS_HALFTILE, 0 }, { + [2] = s_gs9_g0_s0_obj2_dlg2, + } }, + /* 3 */ { 65, 0, 2, 2, { 50, 33, 0, 0 }, { + [0] = s_gs9_g0_s0_obj3_dlg0, + } }, + /* 4 */ { 62, 0, 2, 2, { 54, 34, 0, 0 }, { + [0] = s_gs9_g0_s0_obj4_dlg0, + } }, + /* 5 */ { 63, 0, 2, 2, { 63, 32, 0, 0 }, { + [0] = s_gs9_g0_s0_obj5_dlg0, + } }, + /* 6 */ { 64, 0, 2, 2, { 59, 34, 0, 0 }, { + [0] = s_gs9_g0_s0_obj6_dlg0, + } }, +}; + +static const struct GroundObjectData s_gs9_g2_s2_objs[] = { /* 0x81df6d0 */ + /* 0 */ { 64, 0, 2, 2, { 59, 34, 0, 0 }, { + [0] = s_gs9_g2_s2_obj0_dlg0, + } }, +}; + +static const struct GroundObjectData s_gs9_g19_s0_objs[] = { /* 0x81df6e8 */ + /* 0 */ { 13, 0, 3, 4, { 31, 34, CPOS_HALFTILE, 0 }, { + [2] = s_gs9_g19_s0_obj0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs9_g24_s0_objs[] = { /* 0x81df700 */ + /* 0 */ { 13, 0, 3, 4, { 31, 34, CPOS_HALFTILE, 0 }, { + [2] = s_gs9_g24_s0_obj0_dlg2, + } }, +}; + +static const struct GroundEffectData s_gs9_g2_s0_effs[] = { /* 0x81df718 */ + /* 0 */ { 0, 0, 1, 1, { 34, 35, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g2_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs9_g2_s1_effs[] = { /* 0x81df724 */ + /* 0 */ { 2, 4, 1, 1, { 54, 35, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g2_s1_eff0_script }, +}; + +static const struct GroundEffectData s_gs9_g5_s0_effs[] = { /* 0x81df730 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g6_s0_effs[] = { /* 0x81df73c */ + /* 0 */ { 0, 0, 1, 1, { 34, 42, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g7_s0_effs[] = { /* 0x81df748 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g17_s0_effs[] = { /* 0x81df754 */ + /* 0 */ { 0, 0, 1, 1, { 34, 38, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g17_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs9_g18_s0_effs[] = { /* 0x81df760 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g18_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs9_g20_s0_effs[] = { /* 0x81df76c */ + /* 0 */ { 0, 0, 1, 1, { 34, 36, 0, CPOS_HALFTILE }, s_gs9_g20_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs9_g21_s0_effs[] = { /* 0x81df778 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g23_s0_effs[] = { /* 0x81df784 */ + /* 0 */ { 0, 0, 1, 1, { 34, 42, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g25_s0_effs[] = { /* 0x81df790 */ + /* 0 */ { 0, 0, 1, 1, { 34, 36, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g25_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs9_g26_s0_effs[] = { /* 0x81df79c */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g27_s0_effs[] = { /* 0x81df7a8 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g28_s0_effs[] = { /* 0x81df7b4 */ + /* 0 */ { 0, 0, 1, 1, { 34, 42, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g28_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs9_g29_s0_effs[] = { /* 0x81df7c0 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g30_s0_effs[] = { /* 0x81df7cc */ + /* 0 */ { 0, 0, 1, 1, { 34, 31, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g30_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs9_g31_s0_effs[] = { /* 0x81df7d8 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g31_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs9_g33_s0_effs[] = { /* 0x81df7e4 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g34_s0_effs[] = { /* 0x81df7f0 */ + /* 0 */ { 0, 0, 1, 1, { 34, 42, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g35_s0_effs[] = { /* 0x81df7fc */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g36_s0_effs[] = { /* 0x81df808 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g38_s0_effs[] = { /* 0x81df814 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g39_s0_effs[] = { /* 0x81df820 */ + /* 0 */ { 0, 0, 1, 1, { 34, 43, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g39_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs9_g40_s0_effs[] = { /* 0x81df82c */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g42_s0_effs[] = { /* 0x81df838 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g43_s0_effs[] = { /* 0x81df844 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g43_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs9_g44_s0_effs[] = { /* 0x81df850 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g45_s0_effs[] = { /* 0x81df85c */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g46_s0_effs[] = { /* 0x81df868 */ + /* 0 */ { 0, 0, 1, 1, { 34, 42, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g47_s0_effs[] = { /* 0x81df874 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g48_s0_effs[] = { /* 0x81df880 */ + /* 0 */ { 0, 0, 1, 1, { 36, 44, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g48_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs9_g49_s0_effs[] = { /* 0x81df88c */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g52_s0_effs[] = { /* 0x81df898 */ + /* 0 */ { 0, 0, 1, 1, { 39, 44, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g53_s0_effs[] = { /* 0x81df8a4 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g53_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs9_g55_s0_effs[] = { /* 0x81df8b0 */ + /* 0 */ { 0, 0, 1, 1, { 34, 31, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g57_s0_effs[] = { /* 0x81df8bc */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g58_s0_effs[] = { /* 0x81df8c8 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g58_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs9_g59_s0_effs[] = { /* 0x81df8d4 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g60_s0_effs[] = { /* 0x81df8e0 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g60_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs9_g62_s0_effs[] = { /* 0x81df8ec */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g62_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs9_g63_s0_effs[] = { /* 0x81df8f8 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g65_s0_effs[] = { /* 0x81df904 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g67_s0_effs[] = { /* 0x81df910 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g68_s0_effs[] = { /* 0x81df91c */ + /* 0 */ { 0, 0, 1, 1, { 34, 22, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g68_s0_eff0_script }, + /* 1 */ { 5, 0, 1, 1, { 34, 37, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g68_s0_eff1_script }, + /* 2 */ { 4, 0, 1, 1, { 34, 51, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g68_s0_eff2_script }, +}; + +static const struct GroundEffectData s_gs9_g69_s0_effs[] = { /* 0x81df940 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g69_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs9_g72_s0_effs[] = { /* 0x81df94c */ + /* 0 */ { 0, 0, 1, 1, { 34, 41, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g74_s0_effs[] = { /* 0x81df958 */ + /* 0 */ { 0, 0, 1, 1, { 34, 45, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g74_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs9_g75_s0_effs[] = { /* 0x81df964 */ + /* 0 */ { 0, 0, 1, 1, { 34, 42, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g75_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs9_g76_s0_effs[] = { /* 0x81df970 */ + /* 0 */ { 0, 0, 1, 1, { 34, 8, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g76_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs9_g77_s1_effs[] = { /* 0x81df97c */ + /* 0 */ { 0, 0, 1, 1, { 34, 42, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g77_s1_eff0_script }, +}; + +static const struct GroundEffectData s_gs9_g78_s0_effs[] = { /* 0x81df988 */ + /* 0 */ { 0, 0, 1, 1, { 34, 48, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g78_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs9_g79_s0_effs[] = { /* 0x81df994 */ + /* 0 */ { 0, 0, 1, 1, { 34, 43, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs9_g79_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs9_g81_s0_effs[] = { /* 0x81df9a0 */ + /* 0 */ { 0, 0, 1, 1, { 34, 42, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g82_s0_effs[] = { /* 0x81df9ac */ + /* 0 */ { 0, 0, 1, 1, { 34, 28, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g83_s0_effs[] = { /* 0x81df9b8 */ + /* 0 */ { 0, 0, 1, 1, { 34, 42, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, + /* 1 */ { 5, 0, 1, 1, { 49, 40, 0, CPOS_HALFTILE }, s_gs9_g83_s0_eff1_script }, +}; + +static const struct GroundEffectData s_gs9_g84_s0_effs[] = { /* 0x81df9d0 */ + /* 0 */ { 0, 0, 1, 1, { 34, 42, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g85_s0_effs[] = { /* 0x81df9dc */ + /* 0 */ { 0, 0, 1, 1, { 34, 42, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g86_s0_effs[] = { /* 0x81df9e8 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g88_s0_effs[] = { /* 0x81df9f4 */ + /* 0 */ { 0, 0, 1, 1, { 34, 42, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g89_s0_effs[] = { /* 0x81dfa00 */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs9_g91_s0_effs[] = { /* 0x81dfa0c */ + /* 0 */ { 0, 0, 1, 1, { 34, 42, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEventData s_gs9_g0_s0_evts[] = { /* 0x81dfa18 */ + /* 0 */ { 3, 12, 0, 0, { 66, 37, 0, 0 }, &s_gs9_g0_s0_evt0_sref }, + /* 1 */ { 3, 12, 0, 0, { 0, 39, 0, 0 }, &s_gs9_g0_s0_evt1_sref }, + /* 2 */ { 23, 3, 0, 0, { 24, 66, 0, 0 }, &s_gs9_g0_s0_evt2_sref }, + /* 3 */ { 3, 3, 0, 0, { 33, 24, 0, 0 }, &s_gs9_g0_s0_evt3_sref }, +}; + +static const struct GroundEventData s_gs9_g19_s0_evts[] = { /* 0x81dfa48 */ + /* 0 */ { 15, 3, 0, 0, { 27, 39, 0, 0 }, &s_gs9_g19_s0_evt0_sref }, +}; + +static const struct GroundEventData s_gs9_g24_s0_evts[] = { /* 0x81dfa54 */ + /* 0 */ { 15, 3, 0, 0, { 27, 39, 0, 0 }, &s_gs9_g24_s0_evt0_sref }, +}; + +static const struct GroundEventData s_gs9_g50_s1_evts[] = { /* 0x81dfa60 */ + /* 0 */ { 9, 3, 0, 0, { 30, 36, 0, 0 }, &s_gs9_g50_s1_evt0_sref }, +}; + +static const struct GroundEventData s_gs9_g73_s0_evts[] = { /* 0x81dfa6c */ + /* 0 */ { 15, 3, 0, 0, { 27, 39, 0, 0 }, &s_gs9_g73_s0_evt0_sref }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81dfa78 */ + &s_gs9_g0_s0_station_sref, + &s_gs9_g1_s0_station_sref, + &s_gs9_g2_s0_station_sref, + &s_gs9_g3_s0_station_sref, + &s_gs9_g4_s0_station_sref, + &s_gs9_g5_s0_station_sref, + &s_gs9_g6_s0_station_sref, + &s_gs9_g7_s0_station_sref, + &s_gs9_g8_s0_station_sref, + &s_gs9_g17_s0_station_sref, + &s_gs9_g18_s0_station_sref, + &s_gs9_g19_s0_station_sref, + &s_gs9_g19_s1_station_sref, + &s_gs9_g20_s0_station_sref, + &s_gs9_g21_s0_station_sref, + &s_gs9_g22_s0_station_sref, + &s_gs9_g22_s1_station_sref, + &s_gs9_g22_s2_station_sref, + &s_gs9_g23_s0_station_sref, + &s_gs9_g24_s0_station_sref, + &s_gs9_g24_s1_station_sref, + &s_gs9_g25_s0_station_sref, + &s_gs9_g26_s0_station_sref, + &s_gs9_g27_s0_station_sref, + &s_gs9_g28_s0_station_sref, + &s_gs9_g29_s0_station_sref, + &s_gs9_g30_s0_station_sref, + &s_gs9_g31_s0_station_sref, + &s_gs9_g32_s0_station_sref, + &s_gs9_g33_s0_station_sref, + &s_gs9_g34_s0_station_sref, + &s_gs9_g35_s0_station_sref, + &s_gs9_g36_s0_station_sref, + &s_gs9_g37_s0_station_sref, + &s_gs9_g38_s0_station_sref, + &s_gs9_g39_s0_station_sref, + &s_gs9_g40_s0_station_sref, + &s_gs9_g41_s0_station_sref, + &s_gs9_g42_s0_station_sref, + &s_gs9_g43_s0_station_sref, + &s_gs9_g44_s0_station_sref, + &s_gs9_g45_s0_station_sref, + &s_gs9_g46_s0_station_sref, + &s_gs9_g47_s0_station_sref, + &s_gs9_g48_s0_station_sref, + &s_gs9_g49_s0_station_sref, + &s_gs9_g50_s0_station_sref, + &s_gs9_g50_s2_station_sref, + &s_gs9_g50_s3_station_sref, + &s_gs9_g51_s0_station_sref, + &s_gs9_g52_s0_station_sref, + &s_gs9_g53_s0_station_sref, + &s_gs9_g55_s0_station_sref, + &s_gs9_g56_s0_station_sref, + &s_gs9_g57_s0_station_sref, + &s_gs9_g58_s0_station_sref, + &s_gs9_g59_s0_station_sref, + &s_gs9_g60_s0_station_sref, + &s_gs9_g61_s0_station_sref, + &s_gs9_g61_s1_station_sref, + &s_gs9_g62_s0_station_sref, + &s_gs9_g63_s0_station_sref, + &s_gs9_g64_s0_station_sref, + &s_gs9_g64_s1_station_sref, + &s_gs9_g65_s0_station_sref, + &s_gs9_g66_s0_station_sref, + &s_gs9_g67_s0_station_sref, + &s_gs9_g68_s0_station_sref, + &s_gs9_g69_s0_station_sref, + &s_gs9_g70_s0_station_sref, + &s_gs9_g71_s0_station_sref, + &s_gs9_g72_s0_station_sref, + &s_gs9_g74_s0_station_sref, + &s_gs9_g75_s0_station_sref, + &s_gs9_g76_s0_station_sref, + &s_gs9_g77_s0_station_sref, + &s_gs9_g77_s1_station_sref, + &s_gs9_g78_s0_station_sref, + &s_gs9_g79_s0_station_sref, + &s_gs9_g81_s0_station_sref, + &s_gs9_g82_s0_station_sref, + &s_gs9_g83_s0_station_sref, + &s_gs9_g84_s0_station_sref, + &s_gs9_g85_s0_station_sref, + &s_gs9_g86_s0_station_sref, + &s_gs9_g88_s0_station_sref, + &s_gs9_g89_s0_station_sref, + &s_gs9_g91_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs9_g0_sectors[] = { /* 0x81dfbd8 */ + { 0,NULL, LPARRAY(s_gs9_g0_s0_objs), 0,NULL, LPARRAY(s_gs9_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs9_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs9_g0_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs9_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs9_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs9_g0_s5_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs9_g0_s6_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs9_g0_s7_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g1_sectors[] = { /* 0x81dfd18 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[1], }, + { LPARRAY(s_gs9_g1_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g2_sectors[] = { /* 0x81dfd68 */ + { 0,NULL, 0,NULL, LPARRAY(s_gs9_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, + { LPARRAY(s_gs9_g2_s1_lives), 0,NULL, LPARRAY(s_gs9_g2_s1_effs), 0,NULL, 0,NULL, }, + { 0,NULL, LPARRAY(s_gs9_g2_s2_objs), 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g3_sectors[] = { /* 0x81dfde0 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[3], }, +}; + +static const struct GroundScriptSector s_gs9_g4_sectors[] = { /* 0x81dfe08 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[4], }, +}; + +static const struct GroundScriptSector s_gs9_g5_sectors[] = { /* 0x81dfe30 */ + { LPARRAY(s_gs9_g5_s0_lives), 0,NULL, LPARRAY(s_gs9_g5_s0_effs), 0,NULL, 1,&sStationScripts[5], }, + { LPARRAY(s_gs9_g5_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g6_sectors[] = { /* 0x81dfe80 */ + { 0,NULL, 0,NULL, LPARRAY(s_gs9_g6_s0_effs), 0,NULL, 1,&sStationScripts[6], }, + { LPARRAY(s_gs9_g6_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs9_g6_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g7_sectors[] = { /* 0x81dfef8 */ + { LPARRAY(s_gs9_g7_s0_lives), 0,NULL, LPARRAY(s_gs9_g7_s0_effs), 0,NULL, 1,&sStationScripts[7], }, + { LPARRAY(s_gs9_g7_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g8_sectors[] = { /* 0x81dff48 */ + { LPARRAY(s_gs9_g8_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[8], }, +}; + +static const struct GroundScriptSector s_gs9_g9_sectors[] = { /* 0x81dff70 */ + { LPARRAY(s_gs9_g9_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g10_sectors[] = { /* 0x81dff98 */ + { LPARRAY(s_gs9_g10_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g11_sectors[] = { /* 0x81dffc0 */ + { LPARRAY(s_gs9_g11_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g12_sectors[] = { /* 0x81dffe8 */ + { LPARRAY(s_gs9_g12_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g13_sectors[] = { /* 0x81e0010 */ + { LPARRAY(s_gs9_g13_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g14_sectors[] = { /* 0x81e0038 */ + { LPARRAY(s_gs9_g14_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g15_sectors[] = { /* 0x81e0060 */ + { LPARRAY(s_gs9_g15_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g16_sectors[] = { /* 0x81e0088 */ + { LPARRAY(s_gs9_g16_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g17_sectors[] = { /* 0x81e00b0 */ + { LPARRAY(s_gs9_g17_s0_lives), 0,NULL, LPARRAY(s_gs9_g17_s0_effs), 0,NULL, 1,&sStationScripts[9], }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs9_g17_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs9_g17_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g18_sectors[] = { /* 0x81e0150 */ + { LPARRAY(s_gs9_g18_s0_lives), 0,NULL, LPARRAY(s_gs9_g18_s0_effs), 0,NULL, 1,&sStationScripts[10], }, +}; + +static const struct GroundScriptSector s_gs9_g19_sectors[] = { /* 0x81e0178 */ + { LPARRAY(s_gs9_g19_s0_lives), LPARRAY(s_gs9_g19_s0_objs), 0,NULL, LPARRAY(s_gs9_g19_s0_evts), 1,&sStationScripts[11], }, + { LPARRAY(s_gs9_g19_s1_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[12], }, +}; + +static const struct GroundScriptSector s_gs9_g20_sectors[] = { /* 0x81e01c8 */ + { LPARRAY(s_gs9_g20_s0_lives), 0,NULL, LPARRAY(s_gs9_g20_s0_effs), 0,NULL, 1,&sStationScripts[13], }, + { LPARRAY(s_gs9_g20_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs9_g20_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g21_sectors[] = { /* 0x81e0240 */ + { LPARRAY(s_gs9_g21_s0_lives), 0,NULL, LPARRAY(s_gs9_g21_s0_effs), 0,NULL, 1,&sStationScripts[14], }, +}; + +static const struct GroundScriptSector s_gs9_g22_sectors[] = { /* 0x81e0268 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[15], }, + { LPARRAY(s_gs9_g22_s1_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[16], }, + { LPARRAY(s_gs9_g22_s2_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[17], }, +}; + +static const struct GroundScriptSector s_gs9_g23_sectors[] = { /* 0x81e02e0 */ + { LPARRAY(s_gs9_g23_s0_lives), 0,NULL, LPARRAY(s_gs9_g23_s0_effs), 0,NULL, 1,&sStationScripts[18], }, +}; + +static const struct GroundScriptSector s_gs9_g24_sectors[] = { /* 0x81e0308 */ + { 0,NULL, LPARRAY(s_gs9_g24_s0_objs), 0,NULL, LPARRAY(s_gs9_g24_s0_evts), 1,&sStationScripts[19], }, + { LPARRAY(s_gs9_g24_s1_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[20], }, +}; + +static const struct GroundScriptSector s_gs9_g25_sectors[] = { /* 0x81e0358 */ + { LPARRAY(s_gs9_g25_s0_lives), 0,NULL, LPARRAY(s_gs9_g25_s0_effs), 0,NULL, 1,&sStationScripts[21], }, +}; + +static const struct GroundScriptSector s_gs9_g26_sectors[] = { /* 0x81e0380 */ + { LPARRAY(s_gs9_g26_s0_lives), 0,NULL, LPARRAY(s_gs9_g26_s0_effs), 0,NULL, 1,&sStationScripts[22], }, + { LPARRAY(s_gs9_g26_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g27_sectors[] = { /* 0x81e03d0 */ + { LPARRAY(s_gs9_g27_s0_lives), 0,NULL, LPARRAY(s_gs9_g27_s0_effs), 0,NULL, 1,&sStationScripts[23], }, +}; + +static const struct GroundScriptSector s_gs9_g28_sectors[] = { /* 0x81e03f8 */ + { LPARRAY(s_gs9_g28_s0_lives), 0,NULL, LPARRAY(s_gs9_g28_s0_effs), 0,NULL, 1,&sStationScripts[24], }, + { LPARRAY(s_gs9_g28_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g29_sectors[] = { /* 0x81e0448 */ + { LPARRAY(s_gs9_g29_s0_lives), 0,NULL, LPARRAY(s_gs9_g29_s0_effs), 0,NULL, 1,&sStationScripts[25], }, +}; + +static const struct GroundScriptSector s_gs9_g30_sectors[] = { /* 0x81e0470 */ + { LPARRAY(s_gs9_g30_s0_lives), 0,NULL, LPARRAY(s_gs9_g30_s0_effs), 0,NULL, 1,&sStationScripts[26], }, +}; + +static const struct GroundScriptSector s_gs9_g31_sectors[] = { /* 0x81e0498 */ + { LPARRAY(s_gs9_g31_s0_lives), 0,NULL, LPARRAY(s_gs9_g31_s0_effs), 0,NULL, 1,&sStationScripts[27], }, +}; + +static const struct GroundScriptSector s_gs9_g32_sectors[] = { /* 0x81e04c0 */ + { LPARRAY(s_gs9_g32_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[28], }, +}; + +static const struct GroundScriptSector s_gs9_g33_sectors[] = { /* 0x81e04e8 */ + { LPARRAY(s_gs9_g33_s0_lives), 0,NULL, LPARRAY(s_gs9_g33_s0_effs), 0,NULL, 1,&sStationScripts[29], }, +}; + +static const struct GroundScriptSector s_gs9_g34_sectors[] = { /* 0x81e0510 */ + { LPARRAY(s_gs9_g34_s0_lives), 0,NULL, LPARRAY(s_gs9_g34_s0_effs), 0,NULL, 1,&sStationScripts[30], }, +}; + +static const struct GroundScriptSector s_gs9_g35_sectors[] = { /* 0x81e0538 */ + { LPARRAY(s_gs9_g35_s0_lives), 0,NULL, LPARRAY(s_gs9_g35_s0_effs), 0,NULL, 1,&sStationScripts[31], }, + { LPARRAY(s_gs9_g35_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs9_g35_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g36_sectors[] = { /* 0x81e05b0 */ + { LPARRAY(s_gs9_g36_s0_lives), 0,NULL, LPARRAY(s_gs9_g36_s0_effs), 0,NULL, 1,&sStationScripts[32], }, +}; + +static const struct GroundScriptSector s_gs9_g37_sectors[] = { /* 0x81e05d8 */ + { LPARRAY(s_gs9_g37_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[33], }, +}; + +static const struct GroundScriptSector s_gs9_g38_sectors[] = { /* 0x81e0600 */ + { LPARRAY(s_gs9_g38_s0_lives), 0,NULL, LPARRAY(s_gs9_g38_s0_effs), 0,NULL, 1,&sStationScripts[34], }, +}; + +static const struct GroundScriptSector s_gs9_g39_sectors[] = { /* 0x81e0628 */ + { LPARRAY(s_gs9_g39_s0_lives), 0,NULL, LPARRAY(s_gs9_g39_s0_effs), 0,NULL, 1,&sStationScripts[35], }, +}; + +static const struct GroundScriptSector s_gs9_g40_sectors[] = { /* 0x81e0650 */ + { LPARRAY(s_gs9_g40_s0_lives), 0,NULL, LPARRAY(s_gs9_g40_s0_effs), 0,NULL, 1,&sStationScripts[36], }, +}; + +static const struct GroundScriptSector s_gs9_g41_sectors[] = { /* 0x81e0678 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[37], }, +}; + +static const struct GroundScriptSector s_gs9_g42_sectors[] = { /* 0x81e06a0 */ + { LPARRAY(s_gs9_g42_s0_lives), 0,NULL, LPARRAY(s_gs9_g42_s0_effs), 0,NULL, 1,&sStationScripts[38], }, +}; + +static const struct GroundScriptSector s_gs9_g43_sectors[] = { /* 0x81e06c8 */ + { LPARRAY(s_gs9_g43_s0_lives), 0,NULL, LPARRAY(s_gs9_g43_s0_effs), 0,NULL, 1,&sStationScripts[39], }, +}; + +static const struct GroundScriptSector s_gs9_g44_sectors[] = { /* 0x81e06f0 */ + { LPARRAY(s_gs9_g44_s0_lives), 0,NULL, LPARRAY(s_gs9_g44_s0_effs), 0,NULL, 1,&sStationScripts[40], }, +}; + +static const struct GroundScriptSector s_gs9_g45_sectors[] = { /* 0x81e0718 */ + { LPARRAY(s_gs9_g45_s0_lives), 0,NULL, LPARRAY(s_gs9_g45_s0_effs), 0,NULL, 1,&sStationScripts[41], }, + { LPARRAY(s_gs9_g45_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g46_sectors[] = { /* 0x81e0768 */ + { LPARRAY(s_gs9_g46_s0_lives), 0,NULL, LPARRAY(s_gs9_g46_s0_effs), 0,NULL, 1,&sStationScripts[42], }, +}; + +static const struct GroundScriptSector s_gs9_g47_sectors[] = { /* 0x81e0790 */ + { LPARRAY(s_gs9_g47_s0_lives), 0,NULL, LPARRAY(s_gs9_g47_s0_effs), 0,NULL, 1,&sStationScripts[43], }, +}; + +static const struct GroundScriptSector s_gs9_g48_sectors[] = { /* 0x81e07b8 */ + { LPARRAY(s_gs9_g48_s0_lives), 0,NULL, LPARRAY(s_gs9_g48_s0_effs), 0,NULL, 1,&sStationScripts[44], }, + { LPARRAY(s_gs9_g48_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs9_g48_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g49_sectors[] = { /* 0x81e0830 */ + { LPARRAY(s_gs9_g49_s0_lives), 0,NULL, LPARRAY(s_gs9_g49_s0_effs), 0,NULL, 1,&sStationScripts[45], }, +}; + +static const struct GroundScriptSector s_gs9_g50_sectors[] = { /* 0x81e0858 */ + { LPARRAY(s_gs9_g50_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[46], }, + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs9_g50_s1_evts), 0,NULL, }, + { LPARRAY(s_gs9_g50_s2_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[47], }, + { LPARRAY(s_gs9_g50_s3_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[48], }, +}; + +static const struct GroundScriptSector s_gs9_g51_sectors[] = { /* 0x81e08f8 */ + { LPARRAY(s_gs9_g51_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[49], }, +}; + +static const struct GroundScriptSector s_gs9_g52_sectors[] = { /* 0x81e0920 */ + { LPARRAY(s_gs9_g52_s0_lives), 0,NULL, LPARRAY(s_gs9_g52_s0_effs), 0,NULL, 1,&sStationScripts[50], }, +}; + +static const struct GroundScriptSector s_gs9_g53_sectors[] = { /* 0x81e0948 */ + { LPARRAY(s_gs9_g53_s0_lives), 0,NULL, LPARRAY(s_gs9_g53_s0_effs), 0,NULL, 1,&sStationScripts[51], }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs9_g53_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g55_sectors[] = { /* 0x81e09c0 */ + { LPARRAY(s_gs9_g55_s0_lives), 0,NULL, LPARRAY(s_gs9_g55_s0_effs), 0,NULL, 1,&sStationScripts[52], }, + { LPARRAY(s_gs9_g55_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g56_sectors[] = { /* 0x81e0a10 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[53], }, +}; + +static const struct GroundScriptSector s_gs9_g57_sectors[] = { /* 0x81e0a38 */ + { LPARRAY(s_gs9_g57_s0_lives), 0,NULL, LPARRAY(s_gs9_g57_s0_effs), 0,NULL, 1,&sStationScripts[54], }, +}; + +static const struct GroundScriptSector s_gs9_g58_sectors[] = { /* 0x81e0a60 */ + { LPARRAY(s_gs9_g58_s0_lives), 0,NULL, LPARRAY(s_gs9_g58_s0_effs), 0,NULL, 1,&sStationScripts[55], }, + { LPARRAY(s_gs9_g58_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g59_sectors[] = { /* 0x81e0ab0 */ + { LPARRAY(s_gs9_g59_s0_lives), 0,NULL, LPARRAY(s_gs9_g59_s0_effs), 0,NULL, 1,&sStationScripts[56], }, +}; + +static const struct GroundScriptSector s_gs9_g60_sectors[] = { /* 0x81e0ad8 */ + { LPARRAY(s_gs9_g60_s0_lives), 0,NULL, LPARRAY(s_gs9_g60_s0_effs), 0,NULL, 1,&sStationScripts[57], }, +}; + +static const struct GroundScriptSector s_gs9_g61_sectors[] = { /* 0x81e0b00 */ + { LPARRAY(s_gs9_g61_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[58], }, + { LPARRAY(s_gs9_g61_s1_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[59], }, +}; + +static const struct GroundScriptSector s_gs9_g62_sectors[] = { /* 0x81e0b50 */ + { LPARRAY(s_gs9_g62_s0_lives), 0,NULL, LPARRAY(s_gs9_g62_s0_effs), 0,NULL, 1,&sStationScripts[60], }, +}; + +static const struct GroundScriptSector s_gs9_g63_sectors[] = { /* 0x81e0b78 */ + { LPARRAY(s_gs9_g63_s0_lives), 0,NULL, LPARRAY(s_gs9_g63_s0_effs), 0,NULL, 1,&sStationScripts[61], }, +}; + +static const struct GroundScriptSector s_gs9_g64_sectors[] = { /* 0x81e0ba0 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[62], }, + { LPARRAY(s_gs9_g64_s1_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[63], }, +}; + +static const struct GroundScriptSector s_gs9_g65_sectors[] = { /* 0x81e0bf0 */ + { LPARRAY(s_gs9_g65_s0_lives), 0,NULL, LPARRAY(s_gs9_g65_s0_effs), 0,NULL, 1,&sStationScripts[64], }, +}; + +static const struct GroundScriptSector s_gs9_g66_sectors[] = { /* 0x81e0c18 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[65], }, +}; + +static const struct GroundScriptSector s_gs9_g67_sectors[] = { /* 0x81e0c40 */ + { LPARRAY(s_gs9_g67_s0_lives), 0,NULL, LPARRAY(s_gs9_g67_s0_effs), 0,NULL, 1,&sStationScripts[66], }, +}; + +static const struct GroundScriptSector s_gs9_g68_sectors[] = { /* 0x81e0c68 */ + { LPARRAY(s_gs9_g68_s0_lives), 0,NULL, LPARRAY(s_gs9_g68_s0_effs), 0,NULL, 1,&sStationScripts[67], }, +}; + +static const struct GroundScriptSector s_gs9_g69_sectors[] = { /* 0x81e0c90 */ + { LPARRAY(s_gs9_g69_s0_lives), 0,NULL, LPARRAY(s_gs9_g69_s0_effs), 0,NULL, 1,&sStationScripts[68], }, +}; + +static const struct GroundScriptSector s_gs9_g70_sectors[] = { /* 0x81e0cb8 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[69], }, +}; + +static const struct GroundScriptSector s_gs9_g71_sectors[] = { /* 0x81e0ce0 */ + { LPARRAY(s_gs9_g71_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[70], }, +}; + +static const struct GroundScriptSector s_gs9_g72_sectors[] = { /* 0x81e0d08 */ + { LPARRAY(s_gs9_g72_s0_lives), 0,NULL, LPARRAY(s_gs9_g72_s0_effs), 0,NULL, 1,&sStationScripts[71], }, + { LPARRAY(s_gs9_g72_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs9_g72_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g73_sectors[] = { /* 0x81e0d80 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs9_g73_s0_evts), 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g74_sectors[] = { /* 0x81e0da8 */ + { LPARRAY(s_gs9_g74_s0_lives), 0,NULL, LPARRAY(s_gs9_g74_s0_effs), 0,NULL, 1,&sStationScripts[72], }, +}; + +static const struct GroundScriptSector s_gs9_g75_sectors[] = { /* 0x81e0dd0 */ + { LPARRAY(s_gs9_g75_s0_lives), 0,NULL, LPARRAY(s_gs9_g75_s0_effs), 0,NULL, 1,&sStationScripts[73], }, + { LPARRAY(s_gs9_g75_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs9_g75_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g76_sectors[] = { /* 0x81e0e48 */ + { LPARRAY(s_gs9_g76_s0_lives), 0,NULL, LPARRAY(s_gs9_g76_s0_effs), 0,NULL, 1,&sStationScripts[74], }, +}; + +static const struct GroundScriptSector s_gs9_g77_sectors[] = { /* 0x81e0e70 */ + { LPARRAY(s_gs9_g77_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[75], }, + { LPARRAY(s_gs9_g77_s1_lives), 0,NULL, LPARRAY(s_gs9_g77_s1_effs), 0,NULL, 1,&sStationScripts[76], }, + { LPARRAY(s_gs9_g77_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs9_g77_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g78_sectors[] = { /* 0x81e0f10 */ + { LPARRAY(s_gs9_g78_s0_lives), 0,NULL, LPARRAY(s_gs9_g78_s0_effs), 0,NULL, 1,&sStationScripts[77], }, +}; + +static const struct GroundScriptSector s_gs9_g79_sectors[] = { /* 0x81e0f38 */ + { LPARRAY(s_gs9_g79_s0_lives), 0,NULL, LPARRAY(s_gs9_g79_s0_effs), 0,NULL, 1,&sStationScripts[78], }, + { LPARRAY(s_gs9_g79_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g80_sectors[] = { /* 0x81e0f88 */ + { LPARRAY(s_gs9_g80_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g81_sectors[] = { /* 0x81e0fb0 */ + { LPARRAY(s_gs9_g81_s0_lives), 0,NULL, LPARRAY(s_gs9_g81_s0_effs), 0,NULL, 1,&sStationScripts[79], }, +}; + +static const struct GroundScriptSector s_gs9_g82_sectors[] = { /* 0x81e0fd8 */ + { 0,NULL, 0,NULL, LPARRAY(s_gs9_g82_s0_effs), 0,NULL, 1,&sStationScripts[80], }, +}; + +static const struct GroundScriptSector s_gs9_g83_sectors[] = { /* 0x81e1000 */ + { LPARRAY(s_gs9_g83_s0_lives), 0,NULL, LPARRAY(s_gs9_g83_s0_effs), 0,NULL, 1,&sStationScripts[81], }, +}; + +static const struct GroundScriptSector s_gs9_g84_sectors[] = { /* 0x81e1028 */ + { LPARRAY(s_gs9_g84_s0_lives), 0,NULL, LPARRAY(s_gs9_g84_s0_effs), 0,NULL, 1,&sStationScripts[82], }, +}; + +static const struct GroundScriptSector s_gs9_g85_sectors[] = { /* 0x81e1050 */ + { LPARRAY(s_gs9_g85_s0_lives), 0,NULL, LPARRAY(s_gs9_g85_s0_effs), 0,NULL, 1,&sStationScripts[83], }, +}; + +static const struct GroundScriptSector s_gs9_g86_sectors[] = { /* 0x81e1078 */ + { LPARRAY(s_gs9_g86_s0_lives), 0,NULL, LPARRAY(s_gs9_g86_s0_effs), 0,NULL, 1,&sStationScripts[84], }, + { LPARRAY(s_gs9_g86_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs9_g86_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs9_g86_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g87_sectors[] = { /* 0x81e1118 */ + { LPARRAY(s_gs9_g87_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g88_sectors[] = { /* 0x81e1140 */ + { LPARRAY(s_gs9_g88_s0_lives), 0,NULL, LPARRAY(s_gs9_g88_s0_effs), 0,NULL, 1,&sStationScripts[85], }, +}; + +static const struct GroundScriptSector s_gs9_g89_sectors[] = { /* 0x81e1168 */ + { LPARRAY(s_gs9_g89_s0_lives), 0,NULL, LPARRAY(s_gs9_g89_s0_effs), 0,NULL, 1,&sStationScripts[86], }, + { LPARRAY(s_gs9_g89_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs9_g89_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g90_sectors[] = { /* 0x81e11e0 */ + { LPARRAY(s_gs9_g90_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs9_g91_sectors[] = { /* 0x81e1208 */ + { LPARRAY(s_gs9_g91_s0_lives), 0,NULL, LPARRAY(s_gs9_g91_s0_effs), 0,NULL, 1,&sStationScripts[87], }, +}; + +static const struct GroundScriptGroup s_gs9_groups[] = { /* 0x81e1230 */ + { LPARRAY(s_gs9_g0_sectors) }, + { LPARRAY(s_gs9_g1_sectors) }, + { LPARRAY(s_gs9_g2_sectors) }, + { LPARRAY(s_gs9_g3_sectors) }, + { LPARRAY(s_gs9_g4_sectors) }, + { LPARRAY(s_gs9_g5_sectors) }, + { LPARRAY(s_gs9_g6_sectors) }, + { LPARRAY(s_gs9_g7_sectors) }, + { LPARRAY(s_gs9_g8_sectors) }, + { LPARRAY(s_gs9_g9_sectors) }, + { LPARRAY(s_gs9_g10_sectors) }, + { LPARRAY(s_gs9_g11_sectors) }, + { LPARRAY(s_gs9_g12_sectors) }, + { LPARRAY(s_gs9_g13_sectors) }, + { LPARRAY(s_gs9_g14_sectors) }, + { LPARRAY(s_gs9_g15_sectors) }, + { LPARRAY(s_gs9_g16_sectors) }, + { LPARRAY(s_gs9_g17_sectors) }, + { LPARRAY(s_gs9_g18_sectors) }, + { LPARRAY(s_gs9_g19_sectors) }, + { LPARRAY(s_gs9_g20_sectors) }, + { LPARRAY(s_gs9_g21_sectors) }, + { LPARRAY(s_gs9_g22_sectors) }, + { LPARRAY(s_gs9_g23_sectors) }, + { LPARRAY(s_gs9_g24_sectors) }, + { LPARRAY(s_gs9_g25_sectors) }, + { LPARRAY(s_gs9_g26_sectors) }, + { LPARRAY(s_gs9_g27_sectors) }, + { LPARRAY(s_gs9_g28_sectors) }, + { LPARRAY(s_gs9_g29_sectors) }, + { LPARRAY(s_gs9_g30_sectors) }, + { LPARRAY(s_gs9_g31_sectors) }, + { LPARRAY(s_gs9_g32_sectors) }, + { LPARRAY(s_gs9_g33_sectors) }, + { LPARRAY(s_gs9_g34_sectors) }, + { LPARRAY(s_gs9_g35_sectors) }, + { LPARRAY(s_gs9_g36_sectors) }, + { LPARRAY(s_gs9_g37_sectors) }, + { LPARRAY(s_gs9_g38_sectors) }, + { LPARRAY(s_gs9_g39_sectors) }, + { LPARRAY(s_gs9_g40_sectors) }, + { LPARRAY(s_gs9_g41_sectors) }, + { LPARRAY(s_gs9_g42_sectors) }, + { LPARRAY(s_gs9_g43_sectors) }, + { LPARRAY(s_gs9_g44_sectors) }, + { LPARRAY(s_gs9_g45_sectors) }, + { LPARRAY(s_gs9_g46_sectors) }, + { LPARRAY(s_gs9_g47_sectors) }, + { LPARRAY(s_gs9_g48_sectors) }, + { LPARRAY(s_gs9_g49_sectors) }, + { LPARRAY(s_gs9_g50_sectors) }, + { LPARRAY(s_gs9_g51_sectors) }, + { LPARRAY(s_gs9_g52_sectors) }, + { LPARRAY(s_gs9_g53_sectors) }, + {}, + { LPARRAY(s_gs9_g55_sectors) }, + { LPARRAY(s_gs9_g56_sectors) }, + { LPARRAY(s_gs9_g57_sectors) }, + { LPARRAY(s_gs9_g58_sectors) }, + { LPARRAY(s_gs9_g59_sectors) }, + { LPARRAY(s_gs9_g60_sectors) }, + { LPARRAY(s_gs9_g61_sectors) }, + { LPARRAY(s_gs9_g62_sectors) }, + { LPARRAY(s_gs9_g63_sectors) }, + { LPARRAY(s_gs9_g64_sectors) }, + { LPARRAY(s_gs9_g65_sectors) }, + { LPARRAY(s_gs9_g66_sectors) }, + { LPARRAY(s_gs9_g67_sectors) }, + { LPARRAY(s_gs9_g68_sectors) }, + { LPARRAY(s_gs9_g69_sectors) }, + { LPARRAY(s_gs9_g70_sectors) }, + { LPARRAY(s_gs9_g71_sectors) }, + { LPARRAY(s_gs9_g72_sectors) }, + { LPARRAY(s_gs9_g73_sectors) }, + { LPARRAY(s_gs9_g74_sectors) }, + { LPARRAY(s_gs9_g75_sectors) }, + { LPARRAY(s_gs9_g76_sectors) }, + { LPARRAY(s_gs9_g77_sectors) }, + { LPARRAY(s_gs9_g78_sectors) }, + { LPARRAY(s_gs9_g79_sectors) }, + { LPARRAY(s_gs9_g80_sectors) }, + { LPARRAY(s_gs9_g81_sectors) }, + { LPARRAY(s_gs9_g82_sectors) }, + { LPARRAY(s_gs9_g83_sectors) }, + { LPARRAY(s_gs9_g84_sectors) }, + { LPARRAY(s_gs9_g85_sectors) }, + { LPARRAY(s_gs9_g86_sectors) }, + { LPARRAY(s_gs9_g87_sectors) }, + { LPARRAY(s_gs9_g88_sectors) }, + { LPARRAY(s_gs9_g89_sectors) }, + { LPARRAY(s_gs9_g90_sectors) }, + { LPARRAY(s_gs9_g91_sectors) }, +}; + +static const struct GroundLink s_gs9_links[] = { /* 0x81e1510 */ + /* link 0 */ { { /*x*/ 31, /*y*/ 36, /*flags*/ CPOS_HALFTILE|CPOS_CURRENT, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 31, /*y*/ 34, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 2 */ { { /*x*/ 31, /*y*/ 36, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 3 */ { { /*x*/ 31, /*y*/ 35, /*flags*/ CPOS_HALFTILE, 0 }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 4 */ { { /*x*/ 16, /*y*/ 35, /*flags*/ CPOS_HALFTILE, 0 }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 5 */ { { /*x*/ 34, /*y*/ 23, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 6 */ { { /*x*/ 34, /*y*/ 36, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 7 */ { { /*x*/ 34, /*y*/ 38, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 8 */ { { /*x*/ 37, /*y*/ 38, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 9 */ { { /*x*/ 37, /*y*/ 35, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 10 */ { { /*x*/ 34, /*y*/ 35, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 11 */ { { /*x*/ 34, /*y*/ 34, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 12 */ { { /*x*/ 34, /*y*/ 36, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 13 */ { { /*x*/ 31, /*y*/ 36, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 14 */ { { /*x*/ 34, /*y*/ 32, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 15 */ { { /*x*/ 31, /*y*/ 34, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 3 }, + /* link 16 */ { { /*x*/ 34, /*y*/ 34, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 17 */ { { /*x*/ 34, /*y*/ 66, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 18 */ { { /*x*/ 15, /*y*/ 46, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 19 */ { { /*x*/ 34, /*y*/ 38, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 20 */ { { /*x*/ 50, /*y*/ 42, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 21 */ { { /*x*/ 50, /*y*/ 42, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 22 */ { { /*x*/ 38, /*y*/ 47, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 23 */ { { /*x*/ 34, /*y*/ 47, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 24 */ { { /*x*/ 34, /*y*/ 55, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 25 */ { { /*x*/ 34, /*y*/ 47, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 26 */ { { /*x*/ 34, /*y*/ 32, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 27 */ { { /*x*/ 34, /*y*/ 45, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 28 */ { { /*x*/ 31, /*y*/ 34, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 29 */ { { /*x*/ 34, /*y*/ 36, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 30 */ { { /*x*/ 34, /*y*/ 39, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 31 */ { { /*x*/ 34, /*y*/ 35, /*flags*/ CPOS_HALFTILE, 0 }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 32 */ { { /*x*/ 34, /*y*/ 54, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 33 */ { { /*x*/ 37, /*y*/ 39, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 34 */ { { /*x*/ 37, /*y*/ 37, /*flags*/ CPOS_HALFTILE, 0 }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 35 */ { { /*x*/ 37, /*y*/ 54, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 36 */ { { /*x*/ 31, /*y*/ 39, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 37 */ { { /*x*/ 31, /*y*/ 37, /*flags*/ CPOS_HALFTILE, 0 }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 38 */ { { /*x*/ 31, /*y*/ 54, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 39 */ { { /*x*/ 34, /*y*/ 35, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 40 */ { { /*x*/ 51, /*y*/ 40, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 41 */ { { /*x*/ 36, /*y*/ 46, /*flags*/ CPOS_CURRENT, 0 }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 42 */ { { /*x*/ 1, /*y*/ 46, /*flags*/ 0, CPOS_CURRENT }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 43 */ { { /*x*/ 34, /*y*/ 32, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 44 */ { { /*x*/ 37, /*y*/ 30, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 45 */ { { /*x*/ 34, /*y*/ 32, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 46 */ { { /*x*/ 34, /*y*/ 32, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 47 */ { { /*x*/ 34, /*y*/ 34, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 48 */ { { /*x*/ 33, /*y*/ 43, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 49 */ { { /*x*/ 25, /*y*/ 43, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 50 */ { { /*x*/ 12, /*y*/ 43, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 51 */ { { /*x*/ 34, /*y*/ 32, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 52 */ { { /*x*/ 37, /*y*/ 32, /*flags*/ 0, 0 }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 53 */ { { /*x*/ 36, /*y*/ 35, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 54 */ { { /*x*/ 34, /*y*/ 35, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 55 */ { { /*x*/ 33, /*y*/ 37, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 56 */ { { /*x*/ 37, /*y*/ 37, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 57 */ { { /*x*/ 31, /*y*/ 36, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 58 */ { { /*x*/ 34, /*y*/ 34, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 59 */ { { /*x*/ 38, /*y*/ 35, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 60 */ { { /*x*/ 35, /*y*/ 36, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 61 */ { { /*x*/ 35, /*y*/ 38, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 62 */ { { /*x*/ 34, /*y*/ 32, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 63 */ { { /*x*/ 37, /*y*/ 32, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 64 */ { { /*x*/ 35, /*y*/ 41, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 65 */ { { /*x*/ 35, /*y*/ 36, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 66 */ { { /*x*/ 34, /*y*/ 42, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 67 */ { { /*x*/ 34, /*y*/ 43, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 68 */ { { /*x*/ 34, /*y*/ 41, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 69 */ { { /*x*/ 38, /*y*/ 41, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 70 */ { { /*x*/ 40, /*y*/ 42, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 71 */ { { /*x*/ 33, /*y*/ 45, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 72 */ { { /*x*/ 31, /*y*/ 41, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 73 */ { { /*x*/ 34, /*y*/ 39, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 74 */ { { /*x*/ 37, /*y*/ 31, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 75 */ { { /*x*/ 34, /*y*/ 45, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 76 */ { { /*x*/ 34, /*y*/ 42, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 77 */ { { /*x*/ 42, /*y*/ 43, /*flags*/ CPOS_HALFTILE, 0 }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 78 */ { { /*x*/ 38, /*y*/ 46, /*flags*/ CPOS_HALFTILE, 0 }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 79 */ { { /*x*/ 34, /*y*/ 65, /*flags*/ CPOS_HALFTILE, 0 }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 80 */ { { /*x*/ 38, /*y*/ 42, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 81 */ { { /*x*/ 34, /*y*/ 63, /*flags*/ CPOS_HALFTILE, 0 }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 82 */ { { /*x*/ 38, /*y*/ 47, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 83 */ { { /*x*/ 34, /*y*/ 59, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 84 */ { { /*x*/ 34, /*y*/ 47, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 85 */ { { /*x*/ 36, /*y*/ 41, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 86 */ { { /*x*/ 32, /*y*/ 41, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 87 */ { { /*x*/ 34, /*y*/ 48, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 88 */ { { /*x*/ 34, /*y*/ 45, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 89 */ { { /*x*/ 28, /*y*/ 42, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 90 */ { { /*x*/ 32, /*y*/ 50, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 91 */ { { /*x*/ 32, /*y*/ 47, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 92 */ { { /*x*/ 36, /*y*/ 50, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 93 */ { { /*x*/ 36, /*y*/ 47, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 94 */ { { /*x*/ 41, /*y*/ 44, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 95 */ { { /*x*/ 36, /*y*/ 40, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 96 */ { { /*x*/ 34, /*y*/ 40, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 97 */ { { /*x*/ 28, /*y*/ 45, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 98 */ { { /*x*/ 28, /*y*/ 44, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 99 */ { { /*x*/ 36, /*y*/ 48, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 100 */ { { /*x*/ 40, /*y*/ 44, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 101 */ { { /*x*/ 39, /*y*/ 46, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 102 */ { { /*x*/ 34, /*y*/ 30, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 103 */ { { /*x*/ 24, /*y*/ 43, /*flags*/ CPOS_HALFTILE, 0 }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 104 */ { { /*x*/ 29, /*y*/ 43, /*flags*/ CPOS_HALFTILE, 0 }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 105 */ { { /*x*/ 37, /*y*/ 43, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 106 */ { { /*x*/ 32, /*y*/ 45, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 107 */ { { /*x*/ 35, /*y*/ 40, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 108 */ { { /*x*/ 30, /*y*/ 43, /*flags*/ CPOS_HALFTILE, 0 }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 109 */ { { /*x*/ 36, /*y*/ 31, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 110 */ { { /*x*/ 36, /*y*/ 41, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 111 */ { { /*x*/ 34, /*y*/ 43, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 112 */ { { /*x*/ 34, /*y*/ 30, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 113 */ { { /*x*/ 34, /*y*/ 36, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 114 */ { { /*x*/ 33, /*y*/ 38, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 115 */ { { /*x*/ 34, /*y*/ 31, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 116 */ { { /*x*/ 34, /*y*/ 38, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 117 */ { { /*x*/ 32, /*y*/ 40, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 118 */ { { /*x*/ 34, /*y*/ 44, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 119 */ { { /*x*/ 34, /*y*/ 23, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 120 */ { { /*x*/ 34, /*y*/ 31, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 121 */ { { /*x*/ 34, /*y*/ 29, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 122 */ { { /*x*/ 36, /*y*/ 32, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 123 */ { { /*x*/ 34, /*y*/ 27, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 124 */ { { /*x*/ 34, /*y*/ 34, /*flags*/ CPOS_HALFTILE, 0 }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 125 */ { { /*x*/ 42, /*y*/ 22, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 126 */ { { /*x*/ 36, /*y*/ 30, /*flags*/ CPOS_HALFTILE, 0 }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 127 */ { { /*x*/ 36, /*y*/ 30, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 128 */ { { /*x*/ 34, /*y*/ 60, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 129 */ { { /*x*/ 34, /*y*/ 30, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 130 */ { { /*x*/ 25, /*y*/ 29, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 131 */ { { /*x*/ 48, /*y*/ 41, /*flags*/ 0, 0 }, /*w*/ 17, /*h*/ 7, /*ret*/ 3, /*?*/ 2 }, + /* link 132 */ { { /*x*/ 40, /*y*/ 42, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 133 */ { { /*x*/ 37, /*y*/ 40, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs9 = { LPARRAY(s_gs9_groups), s_gs9_links }; /* 0x81e1940 */ diff --git a/src/data/ground/ground_data_b01p02a_station.h b/src/data/ground/ground_data_b01p02a_station.h new file mode 100644 index 000000000..030a12b45 --- /dev/null +++ b/src/data/ground/ground_data_b01p02a_station.h @@ -0,0 +1,3631 @@ + + + + + + + + + + + + +static const struct ScriptCommand s_gs12_g0_s0_station_sref_script[] = { /* 0x81e1954 */ + DEBUGINFO, + SELECT_MAP(12), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + COND(JUDGE_EQ, 18, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + EXECUTE_STATION(-1, 16, 1), + RET, + LABEL(1), /* = 0x01 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 4), + COND(JUDGE_LE, 2, /* to label */ 5), + JUMP_LABEL(2), + LABEL(4), /* = 0x04 */ + EXECUTE_STATION(-1, 45, 0), + RET, + LABEL(5), /* = 0x05 */ + EXECUTE_STATION(-1, 46, 1), + RET, + LABEL(2), /* = 0x02 */ + CJUMP_VAR(START_MODE), + COND_EQUAL(1, /* to label */ 6), + COND_EQUAL(2, /* to label */ 7), + COND_EQUAL(12, /* to label */ 8), + COND_EQUAL(11, /* to label */ 8), + COND_EQUAL(10, /* to label */ 9), + COND_EQUAL(9, /* to label */ 10), + JUMP_LABEL(6), + LABEL(7), /* = 0x07 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(9, /* to label */ 11), + COND_EQUAL(10, /* to label */ 11), + COND_EQUAL(11, /* to label */ 11), + COND_EQUAL(12, /* to label */ 6), + COND_EQUAL(13, /* to label */ 6), + COND_EQUAL(14, /* to label */ 6), + JUMP_LABEL(11), + LABEL(6), /* = 0x06 */ + SELECT_LIVES(0, 2), + JUMP_LABEL(12), + LABEL(8), /* = 0x08 */ + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER3_FUNC), + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + EXECUTE_SUBSTATION(-1, 7, 0), + RET, + LABEL(10), /* = 0x0a */ + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + EXECUTE_SUBSTATION(-1, 8, 0), + RET, + LABEL(9), /* = 0x09 */ + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER2_FUNC), + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + EXECUTE_SUBSTATION(-1, 7, 0), + RET, + LABEL(11), /* = 0x0b */ + SELECT_LIVES(0, 1), + JUMP_LABEL(12), + LABEL(12), /* = 0x0c */ + BGM_SWITCH(1), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs12_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs12_g0_s0_station_sref_script }; /* 0x81e1da4 */ + +static const struct ScriptCommand s_gs12_g0_s0_evt0_sref_script[] = { /* 0x81e1db0 */ + DEBUGINFO, + { 0x01, 0x00, -0x0001, 0x00000009, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptRef s_gs12_g0_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs12_g0_s0_evt0_sref_script }; /* 0x81e1de0 */ + +static const struct ScriptCommand s_gs12_g0_s0_evt1_sref_script[] = { /* 0x81e1dec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3a, 0x00, 0x0000, 0x00000000, -0x00000001, _("Would you like to save your adventure?") }, + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SAVE_START_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + { 0x3c, 0x0e, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SAVE_END_FUNC), + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptRef s_gs12_g0_s0_evt1_sref = { 57, 7, NULL /* NORMAL_EVENT */, s_gs12_g0_s0_evt1_sref_script }; /* 0x81e1ee4 */ + +static const struct ScriptCommand s_gs12_g0_s0_obj0_dlg0[] = { /* 0x81e1ef0 */ + DEBUGINFO, + JUMPIF(JUDGE_GE, BASE_LEVEL, 2, /* to label */ 0), + END_DELETE, + LABEL(0), /* = 0x00 */ + RET, +}; + +static const struct ScriptCommand s_gs12_g0_s0_obj0_dlg2[] = { /* 0x81e1f40 */ + DEBUGINFO, + CJUMP_DIR_TO_LINK(0), + COND_EQUAL(4, /* to label */ 0), + COND_EQUAL(5, /* to label */ 1), + COND_EQUAL(6, /* to label */ 2), + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + CJUMP_DIRECTION, + COND_EQUAL(4, /* to label */ 3), + COND_EQUAL(5, /* to label */ 3), + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + CJUMP_DIRECTION, + COND_EQUAL(4, /* to label */ 3), + COND_EQUAL(5, /* to label */ 3), + COND_EQUAL(6, /* to label */ 3), + JUMP_SCRIPT(END_TALK), + LABEL(2), /* = 0x02 */ + CJUMP_DIRECTION, + COND_EQUAL(5, /* to label */ 3), + COND_EQUAL(6, /* to label */ 3), + JUMP_SCRIPT(END_TALK), + LABEL(3), /* = 0x03 */ + EXECUTE_STATION(-1, 1, 0), + HALT, +}; + +static const struct ScriptCommand s_gs12_g0_s1_lives0_dlg0[] = { /* 0x81e20d0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs12_g0_s1_lives1_dlg0[] = { /* 0x81e2110 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs12_g0_s2_lives0_dlg0[] = { /* 0x81e2150 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs12_g0_s2_lives1_dlg0[] = { /* 0x81e2190 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs12_g1_s0_station_sref_script[] = { /* 0x81e21d0 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(WORLD_MAP_POINT), + RET, +}; + +static const struct ScriptRef s_gs12_g1_s0_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs12_g1_s0_station_sref_script }; /* 0x81e2220 */ + +static const struct ScriptCommand s_gs12_g1_s0_lives0_dlg0[] = { /* 0x81e222c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x5f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs12_g1_s0_lives1_dlg0[] = { /* 0x81e226c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x5f, 0x00, 0x0000, 0x00000001, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs12_g1_s1_station_sref_script[] = { /* 0x81e22ac */ + DEBUGINFO, + SELECT_MAP(12), + SELECT_ENTITIES(-1, -1), + SELECT_EVENTS(0, 0), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs12_g1_s1_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g1_s1_station_sref_script }; /* 0x81e230c */ + +static const struct ScriptCommand s_gs12_g1_s1_lives0_dlg0[] = { /* 0x81e2318 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x5e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs12_g1_s1_lives1_dlg0[] = { /* 0x81e2368 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x5e, 0x00, 0x0000, 0x00000001, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs12_g2_s0_station_sref_script[] = { /* 0x81e23b8 */ + DEBUGINFO, + SELECT_MAP(12), + SELECT_ENTITIES(-1, 0), + BGM_STOP, + { 0x27, 0x01, 0x000d, 0x0000003c, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x000d, 0x0000003c, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs12_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs12_g2_s0_station_sref_script }; /* 0x81e2438 */ + +static const struct ScriptCommand s_gs12_g2_s0_lives0_dlg0[] = { /* 0x81e2444 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs12_g3_s0_station_sref_script[] = { /* 0x81e24a4 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 6, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + BGM_STOP, + SELECT_MAP(12), + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g3_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g3_s0_station_sref_script }; /* 0x81e25fc */ + +static const struct ScriptCommand s_gs12_g3_s0_lives0_dlg0[] = { /* 0x81e2608 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g4_s0_station_sref_script[] = { /* 0x81e2688 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 6, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(12), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g4_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g4_s0_station_sref_script }; /* 0x81e2758 */ + +static const struct ScriptCommand s_gs12_g4_s0_lives0_dlg0[] = { /* 0x81e2764 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g5_s0_station_sref_script[] = { /* 0x81e27e4 */ + DEBUGINFO, + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + SELECT_MAP(12), + SELECT_ENTITIES(0, 2), + SELECT_EVENTS(0, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs12_g5_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g5_s0_station_sref_script }; /* 0x81e2874 */ + +static const struct ScriptCommand s_gs12_g6_s0_station_sref_script[] = { /* 0x81e2880 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(12), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g6_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g6_s0_station_sref_script }; /* 0x81e29c0 */ + +static const struct ScriptCommand s_gs12_g6_s0_lives0_dlg0[] = { /* 0x81e29cc */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g7_s0_station_sref_script[] = { /* 0x81e2a4c */ + DEBUGINFO, + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(12), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g7_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g7_s0_station_sref_script }; /* 0x81e2b0c */ + +static const struct ScriptCommand s_gs12_g7_s0_lives0_dlg0[] = { /* 0x81e2b18 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g8_s0_station_sref_script[] = { /* 0x81e2b98 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 6, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(12), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g8_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g8_s0_station_sref_script }; /* 0x81e2c68 */ + +static const struct ScriptCommand s_gs12_g8_s0_lives0_dlg0[] = { /* 0x81e2c74 */ + DEBUGINFO, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g9_s0_station_sref_script[] = { /* 0x81e2d14 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(12), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(30), + CANCEL_LIVES(9, 0), + SELECT_LIVES(9, 1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(1), + RET, +}; + +static const struct ScriptRef s_gs12_g9_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g9_s0_station_sref_script }; /* 0x81e2e54 */ + +static const struct ScriptCommand s_gs12_g9_s0_eff0_script[] = { /* 0x81e2e60 */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, 0x00000028, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs12_g9_s0_lives0_dlg0[] = { /* 0x81e2ec0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Wh-where...?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" It's $n0's house.")), + VARIANT(/* == */ 1, _(" It also happens to be our\nrescue team's base.")), + VARIANT(/* == */ 3, _(" It's $n0's house.")), + VARIANT(/* == */ 3, _(" It's also our rescue team's\nbase.")), + VARIANT_DEFAULT(_(" It's $n0's house.")), + VARIANT_DEFAULT(_(" It's also our rescue team's\nbase.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Oh!\n...Did you maybe rescue me?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Th-thank you...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0001, 0x00000009, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hahaha, don't worry about it.\nNo need for thanks.")), + VARIANT(/* == */ 1, _(" But forget that...#W\nWhat happened to you?")), + VARIANT_DEFAULT(_(" Hahaha, it's OK.\nThere's no need for thanks.")), + VARIANT_DEFAULT(_(" Rather than that...#W\nWhat happened?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Y-yes...") }, + { 0x2e, 0x0e, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0002, -0x00000001, 0x00000000, NULL }, + { 0x2d, 0x03, 0x0002, 0x00000073, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm named Spinda.") }, + { 0x2d, 0x09, 0x0002, 0x00000073, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I like to travel.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I've been traveling all over\nseeing the sights and other Pokémon.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It was on my travels that\nI heard rumors of a mirage Pokémon...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" A mirage Pokémon?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes! That!#W\nIsn't it exciting?") }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ever since then, I've been\ntraveling all over in hopes of seeing\nthe mirage Pokémon...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But I've had no luck...#W\nFinally, I became dizzy from fatigue...#W\nAnd I must have passed out.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(SHOCK_FUNC), + { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I...#W\nI'm giving up on my quest...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm simply worn out...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hold up a second!#W\nAre you sure you want to give up that\neasily?")), + VARIANT_DEFAULT(_(" Wait a second!#W\nAre you sure you won't regret giving up\nthat easily?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But I...#W\nI've reached my physical limit...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If I push myself any\nfurther, I will collapse again.\nIt's not good for my health...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Please, I want you to\nhave this.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + BGM_STOP, + FANFARE_PLAY(212), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n1 received something\n#+from $n2.") }, + { 0xe1, 0x00, 0x00d4, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000018, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + WAIT(30), + SELECT_EFFECTS(9, 1), + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What is this?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's a...#W\n#CIClear Wing#R...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Clear Wing?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.#W\nI found it on my travels.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's a wing of some sort.\nIt's transparent, but...#W\nIf you hold it up like this...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + CANCEL_EFFECTS(9, 1), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" See? Depending on the light,\nit takes on many different colors.") }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CANCEL_EFFECTS(9, 2), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" At first I thought it\nwas just pretty to look at...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But after checking around,\nit appears to be related to the mirage\nPokémon somehow.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But I couldn't learn anything\nbeyond that.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Sniff...\nIt's very disappointing, but I'm giving up...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, are you OK?#W\nYou still look wobbly on your feet.")), + VARIANT_DEFAULT(_(" Wait, are you OK?#W\nYou're still unsteady on your feet.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh, no.\nWhen I walk, I always totter.#W\nBye.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" #C4Clear Wing#R, huh...#W\nI don't have a clue what this is all about...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But you are interested in\nthe mirage Pokémon, right?")), + VARIANT(/* == */ 1, _(" For something like this,\nXatu'd be the one to ask.")), + VARIANT(/* == */ 1, _(" Xatu should be at the peak\nof the #CDGreat Canyon#R.")), + VARIANT(/* == */ 1, _(" We should go out there.\nTo the #CDGreat Canyon#R!")), + VARIANT_DEFAULT(_(" But the mirage Pokémon\ndoes interest you, right?")), + VARIANT_DEFAULT(_(" I think Xatu is the one to\nask for something like this.")), + VARIANT_DEFAULT(_(" Xatu should be at the peak\nof the #CDGreat Canyon#R.")), + VARIANT_DEFAULT(_(" We should go!\nTo the #CDGreat Canyon#R!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs12_g9_s0_lives1_dlg0[] = { /* 0x81e4480 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(469), + CALL_SCRIPT(QUESTION_FUNC), + { 0xe2, 0x00, 0x01d5, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0200, 0x00000000, -0x00000018, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(469), + CALL_SCRIPT(QUESTION_FUNC), + { 0xe2, 0x00, 0x01d5, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, 0x00000028, NULL }, + { 0x56, 0x00, 0x0000, 0x00000047, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs12_g9_s0_lives2_dlg0[] = { /* 0x81e4720 */ + DEBUGINFO, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe2, 0x00, 0x01d1, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000008, NULL }, + WAIT(20), + FANFARE_PLAY2(812), + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(470), + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(510), + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000010, NULL }, + { 0x91, 0x04, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000008, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + SELECT_EFFECTS(9, 2), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x6a, 0x00, 0x0100, 0x00000000, 0x00000020, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(468), + { 0xe2, 0x00, 0x01d4, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(468), + WAIT(30), + { 0x6a, 0x00, 0x0100, -0x00000020, 0x00000010, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(468), + { 0xe2, 0x00, 0x01d4, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(468), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6a, 0x00, 0x0100, 0x00000040, 0x00000010, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(468), + { 0xe2, 0x00, 0x01d4, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(468), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6a, 0x00, 0x0100, -0x00000020, 0x00000018, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(468), + { 0xe2, 0x00, 0x01d4, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(468), + WAIT(30), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000010, 0x00000010, NULL }, + FANFARE_PLAY2(468), + { 0xe2, 0x00, 0x01d4, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(468), + WAIT(60), + { 0x6a, 0x00, 0x0100, -0x00000010, 0x00000010, NULL }, + FANFARE_PLAY2(468), + { 0xe2, 0x00, 0x01d4, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(468), + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, 0x00000010, NULL }, + { 0x52, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs12_g9_s1_eff0_script[] = { /* 0x81e4e10 */ + DEBUGINFO, + { 0x56, 0x00, 0x0000, 0x000000ab, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs12_g9_s1_lives0_dlg0[] = { /* 0x81e4e40 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x58, 0x01, 0x0000, 0x000000f0, 0x00000120, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptCommand s_gs12_g9_s2_eff0_script[] = { /* 0x81e4ed0 */ + DEBUGINFO, + { 0x56, 0x00, 0x0000, 0x000000ab, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs12_g10_s0_station_sref_script[] = { /* 0x81e4f00 */ + DEBUGINFO, + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(12), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+No...\n#+Morning, but only by time...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+A time so early in the morning\n#+that everyone is still in bed...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, -1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs12_g10_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs12_g10_s0_station_sref_script }; /* 0x81e5070 */ + + +static const struct ScriptCommand s_gs12_g10_s0_lives0_dlg0[] = { /* 0x81e507c */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("......") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("............") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("........................") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(508), + { 0x97, 0x00, 0x0002, 0x00000001, 0x00000003, NULL }, + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Gggwwooooooooooooaahhhhh!") }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + WAIT(20), + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0000, 0x0000000c, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Wha...#W What is it?!") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("What...#W\nWhat's happening outside?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0200, 0x00000000, 0x00000020, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0200, 0x00000000, 0x00000040, NULL }, + { 0x97, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs12_g11_s0_station_sref_script[] = { /* 0x81e52bc */ + DEBUGINFO, + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(12), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Several hours later...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0000, 0x00000021, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + { 0x2e, 0x00, 0x0000, -0x00000002, 0x00000000, NULL }, + { 0x2e, 0x00, 0x0001, -0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ............#W\nHey...")), + VARIANT(/* == */ 1, _(" Hey, $n0.")), + VARIANT(/* == */ 1, _(" ...$n0, wake up!\nGet up already!")), + VARIANT_DEFAULT(_(" ............#W\nHey...")), + VARIANT_DEFAULT(_(" Hey, $n0.")), + VARIANT_DEFAULT(_(" $n0, wake up!\nCome on, wake up!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(120), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs12_g11_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs12_g11_s0_station_sref_script }; /* 0x81e551c */ + + +static const struct ScriptCommand s_gs12_g11_s0_lives0_dlg0[] = { /* 0x81e5528 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" You're finally awake,\n$n0?")), + VARIANT(/* == */ 1, _(" Sounds like there's a big\nruckus going on at the square.")), + VARIANT(/* == */ 1, _(" Let's go check it out!")), + VARIANT_DEFAULT(_(" $n0, are you\nawake?")), + VARIANT_DEFAULT(_(" There's some sort of a\ncommotion down at the square.")), + VARIANT_DEFAULT(_(" Let's take a look!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, 0x00000050, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs12_g11_s0_lives1_dlg0[] = { /* 0x81e5718 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, 0x00000050, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs12_g12_s0_station_sref_script[] = { /* 0x81e5778 */ + DEBUGINFO, + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(12), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs12_g12_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs12_g12_s0_station_sref_script }; /* 0x81e5878 */ + +static const struct ScriptCommand s_gs12_g12_s0_lives0_dlg0[] = { /* 0x81e5884 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000020, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + WAIT(15), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, $n0!\nGreat news!")), + VARIANT(/* == */ 1, _(" $n2 wants to\njoin us!")), + VARIANT_DEFAULT(_(" Listen, $n0!\nI've got great news!")), + VARIANT_DEFAULT(_(" $n2 wants to\njoin us!")), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I saw $n2 outside\nlooking dazed, so I went and said hello.")), + VARIANT(/* == */ 1, _(" It turns out that it was\nsuddenly blown here by gusting winds!")), + VARIANT_DEFAULT(_(" I saw $n2 outside\nlooking stunned, so I introduced myself.")), + VARIANT_DEFAULT(_(" It says it was blown here\nby a sudden gust of wind!")), + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" It doesn't seem to have any\nidea why it would even end up here.")), + VARIANT_DEFAULT(_(" It doesn't seem to know\nwhy it would end up here.")), + { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...But since it's here, it\nfigures it must be for a good reason,\nso it wants to join us!")), + VARIANT_DEFAULT(_(" ...But since it's here, it\ndecided that it must be for a good reason.\nAnd so it wants to join us!")), + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" What do you think?\nShould we let $n2 join?")), + VARIANT_DEFAULT(_(" What should we do?\nShould we let $n2 join?")), + CHOICE(/* label */ 2, _("Yes.")), + CHOICE(/* label */ 3, _("No.")), + LABEL(2), /* = 0x02 */ + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + FANFARE_PLAY2(455), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" OK! That's settled!")), + VARIANT_DEFAULT(_(" Great!\nThat's that!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, + LABEL(3), /* = 0x03 */ + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + FANFARE_PLAY2(473), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hah?! Are you sure?\nThat Pokémon came to us...")), + VARIANT_DEFAULT(_(" Huh?! You're sure of that?\nThat Pokémon volunteered to join...")), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Let me ask you again.#W\nBut this is the last time.")), + VARIANT_DEFAULT(_(" Let me make sure.#W\nAnd I won't ask you again.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" What do you think?\nShould we let $n2 join?")), + VARIANT_DEFAULT(_(" What should we do?\nShould we let $n2 join?")), + CHOICE(/* label */ 2, _("Yes.")), + CHOICE(/* label */ 5, _("No.")), + LABEL(5), /* = 0x05 */ + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 2), + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" All right...\nIt's disappointing, but that's the way\nit goes.")), + VARIANT_DEFAULT(_(" OK...\nIt's disappointing, but it can't be helped.")), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I'll go tell $n2 no.")), + VARIANT_DEFAULT(_(" I'll let $n2 know\nhe hasn't been accepted.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x3b, 0x2c, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + +static const struct ScriptCommand s_gs12_g12_s0_lives1_dlg0[] = { /* 0x81e6294 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(0, /* to label */ 0), + COND_EQUAL(1, /* to label */ 1), + LABEL(0), /* = 0x00 */ + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, + LABEL(1), /* = 0x01 */ + CALL_SCRIPT(SHOCK_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(0, /* to label */ 0), + COND_EQUAL(2, /* to label */ 2), + LABEL(2), /* = 0x02 */ + { 0x6a, 0x00, 0x0100, 0x00000000, 0x00000064, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs12_g13_s0_station_sref_script[] = { /* 0x81e6474 */ + DEBUGINFO, + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(12), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs12_g13_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs12_g13_s0_station_sref_script }; /* 0x81e6574 */ + +static const struct ScriptCommand s_gs12_g13_s0_lives0_dlg0[] = { /* 0x81e6580 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + WAIT(15), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, $n0!\nGreat news!")), + VARIANT(/* == */ 1, _(" Team #C5$t#R's\nrescue rank went up!")), + VARIANT_DEFAULT(_(" Listen, $n0!\nI've got great news!")), + VARIANT_DEFAULT(_(" Team #C5$t#R's\nrescue rank went up!")), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I saw Pelipper outside\nlooking dazed, so I went and said hello.")), + VARIANT(/* == */ 1, _(" It turns out, he was\nsuddenly blown here by gusting winds!")), + VARIANT_DEFAULT(_(" I saw Pelipper outside\nlooking stunned, so I chatted with him.")), + VARIANT_DEFAULT(_(" Pelipper says he was blown\nhere by a sudden gust of wind!")), + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" He doesn't seem to have any\nidea why he would even end up here.")), + VARIANT_DEFAULT(_(" He doesn't seem to know\nwhy he would end up here.")), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" See, Pelipper was supposed\nto be making a delivery.")), + VARIANT(/* == */ 1, _(" He was on his way to\na different rescue team with a crest\nused to signify a higher rescue rank.")), + VARIANT_DEFAULT(_(" Pelipper was on his way to\nanother rescue team.")), + VARIANT_DEFAULT(_(" He was supposed to take\nthem their new crest showing that\nthey'd gone up in rescue rank.")), + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But since he ended up here,\nhe figures it must be for a good reason.\nWe're getting the rescue rank crest!")), + VARIANT(/* == */ 1, _(" Isn't that awesome?!#W\nIt's kind of unfair, but...#W\nWell, so what?")), + VARIANT_DEFAULT(_(" But since he ended up here,\nhe thinks it must be for a good reason.\nWe're getting that new rescue rank crest!")), + VARIANT_DEFAULT(_(" It's awesome!#W\nI guess it's kind of unfair, but...#W\nWell, anyway!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I've never said no to a gift!")), + VARIANT_DEFAULT(_(" If it's a gift, we have\nto accept!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Team #C5$t#R's\n#+rescue rank went up!") }, + FANFARE_PLAY(201), + { 0xe1, 0x00, 0x00c9, 0x00000000, 0x00000000, NULL }, + { 0x31, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x2e, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 2), + { 0xe3, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(2), /* = 0x02 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + +static const struct ScriptCommand s_gs12_g13_s0_lives1_dlg0[] = { /* 0x81e6dd0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs12_g14_s0_station_sref_script[] = { /* 0x81e6ec0 */ + DEBUGINFO, + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(12), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs12_g14_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs12_g14_s0_station_sref_script }; /* 0x81e6fc0 */ + +static const struct ScriptCommand s_gs12_g14_s0_lives0_dlg0[] = { /* 0x81e6fcc */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + WAIT(15), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, $n0!\nGreat news!")), + VARIANT(/* == */ 1, _(" The Rescue Organization\nsent us a cash reward!")), + VARIANT(/* == */ 1, _(" I don't have a clue why\nthey'd send us this, but...")), + VARIANT(/* == */ 1, _(" Who am I to complain?")), + VARIANT_DEFAULT(_(" Listen, $n0!\nI've got great news!")), + VARIANT_DEFAULT(_(" The Rescue Organization\nsent us some reward money!")), + VARIANT_DEFAULT(_(" I don't have the foggiest\nnotion why they'd send it...")), + VARIANT_DEFAULT(_(" But why worry about it?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I never turn down\nsomeone's generosity!")), + VARIANT_DEFAULT(_(" If they're in a giving mood,\nwe shouldn't refuse!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x3c, 0x2b, 0x0000, 0x00000009, 0x00000064, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs12_g14_s0_lives1_dlg0[] = { /* 0x81e7334 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs12_g15_s0_station_sref_script[] = { /* 0x81e7424 - PART 1 0:22:25-0:22:53 - First day cutscene */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + BGM_STOP, + WAIT(90), + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(12), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 16, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g15_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g15_s0_station_sref_script }; /* 0x81e7554 */ + + +static const struct ScriptCommand s_gs12_g15_s0_lives0_dlg0[] = { /* 0x81e7560 - PART 1 0:22:30-0:22:53 - Player */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0x2e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...I'm still the same.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("The way I look...\nI'm still $m0.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("But why would I be transformed\ninto a Pokémon?") }, + FANFARE_PLAY2(469), + CALL_SCRIPT(QUESTION_FUNC), + { 0x2e, 0x00, 0x0000, 0x00000004, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............#W\nHmm... I don't understand this at all...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("........................") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............#W\nI feel groggy and sleepy...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Not feeling well...#W\nI need more sleep...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs12_g16_s0_station_sref_script[] = { /* 0x81e77c4 - PART 1 0:22:53 - First day, setup playable state */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs12_g16_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs12_g16_s0_station_sref_script }; /* 0x81e77f4 */ + +static const struct ScriptCommand s_gs12_g16_s0_evt0_sref_script[] = { /* 0x81e7800 - Likely door event/nearby trigger */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Now, I only want to sleep...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I'll rest in bed...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs12_g16_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs12_g16_s0_evt0_sref_script }; /* 0x81e78b8 */ + + +static const struct ScriptCommand s_gs12_g16_s0_evt1_sref_script[] = { /* 0x81e78c4 - PART 1 0:22:53-0:23:04 - Bed, sleep trigger */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3a, 0x00, 0x0000, 0x00000000, -0x00000001, _("Would you like to save your adventure?") }, + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_STOP, + CALL_SCRIPT(SAVE_START_FUNC), + SCENARIO_CALC(SCENARIO_MAIN, 3, 3), + { 0x3c, 0x0e, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SAVE_WAIT_FUNC), + EXECUTE_FUNCTION(EVENT_M01E02A_L001C), + HALT, +}; + +static const struct ScriptRef s_gs12_g16_s0_evt1_sref = { 57, 7, NULL /* NORMAL_EVENT */, s_gs12_g16_s0_evt1_sref_script }; /* 0x81e79a4 */ + +static const struct ScriptCommand s_gs12_g16_s1_station_sref_script[] = { /* 0x81e79b0 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(12), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g16_s1_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g16_s1_station_sref_script }; /* 0x81e7a80 */ + +static const struct ScriptCommand s_gs12_g16_s1_lives0_dlg0[] = { /* 0x81e7a8c */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g17_s0_station_sref_script[] = { /* 0x81e7b0c */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(12), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g17_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g17_s0_station_sref_script }; /* 0x81e7bdc */ + +static const struct ScriptCommand s_gs12_g17_s0_lives0_dlg0[] = { /* 0x81e7be8 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0x2e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("..................") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Oof...#W\nI'm feeling refreshed!") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I still look like a Pokémon, but...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("..................") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Oh, that's right.#W That Pokémon...#W\nI think it was $n1?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("We made a promise to form a rescue\nteam together...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I wonder what $n1 is doing?#W\nI should go out.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs12_g18_s0_station_sref_script[] = { /* 0x81e7e1c */ + DEBUGINFO, + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(12), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g18_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g18_s0_station_sref_script }; /* 0x81e7f2c */ + +static const struct ScriptCommand s_gs12_g18_s0_lives0_dlg0[] = { /* 0x81e7f38 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g19_s0_station_sref_script[] = { /* 0x81e7fb8 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(12), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g19_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g19_s0_station_sref_script }; /* 0x81e8088 */ + +static const struct ScriptCommand s_gs12_g19_s0_lives0_dlg0[] = { /* 0x81e8094 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000052, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I think I dreamt something...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("But I can't quite remember what that\ndream was about...") }, + { 0x2e, 0x15, 0x0000, 0x00000009, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Oh, well.\nToday's another day of rescues!") }, + { 0x2e, 0x15, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I wonder if I have any mail?\nBetter check the Mailbox.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs12_g20_s0_station_sref_script[] = { /* 0x81e8268 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + BGM_STOP, + SELECT_MAP(12), + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g20_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g20_s0_station_sref_script }; /* 0x81e8388 */ + +static const struct ScriptCommand s_gs12_g20_s0_lives0_dlg0[] = { /* 0x81e8394 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000042, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000044, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0004, 0x00000045, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Uhh... Hello?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + WAIT(60), + FANFARE_PLAY2(468), + { 0x92, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + WAIT(15), + FANFARE_PLAY2(468), + { 0x92, 0x04, 0x0001, 0x00000005, 0x00000000, NULL }, + WAIT(15), + { 0x92, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + WAIT(15), + WAIT(30), + FANFARE_PLAY2(469), + CALL_SCRIPT(QUESTION_FUNC), + WAIT(15), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Hello? Uhh...\nYou are $n0...#W Aren't you?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(468), + { 0x92, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + WAIT(15), + FANFARE_PLAY2(468), + { 0x92, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + WAIT(15), + FANFARE_PLAY2(468), + { 0x92, 0x04, 0x0001, 0x00000005, 0x00000000, NULL }, + WAIT(15), + { 0x92, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ...Oh! You can't see us, of course!#W\nHow very rude of us!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + SELECT_ENTITIES(-1, 1), + WAIT(20), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + BGM_FADEIN(60, 1), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" We're pleased to meet you.\nWe are $n2.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Last night, during the\nearthquake...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Our child $n3 was\nattacked...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" He was whisked away to\nthe peak of a tall mountain.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We couldn't possibly climb\nsomewhere so high up...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That is why we must call\nupon you for your help, $n0.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n3 was abducted\nby a Pokémon named $n4.") }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's a vilely vicious ruffian!\nPlease do be careful.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Please, we need your help!#W\nWe must go!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(50), + FANFARE_PLAY2(470), + CALL_SCRIPT(SWEAT_FUNC), + WAIT(10), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...That was so sudden, there was no time\nto even say no...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("It's too bad. I'd better go.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + + + + +static const struct ScriptCommand s_gs12_g20_s1_lives0_dlg0[] = { /* 0x81e8ac8 */ + DEBUGINFO, + { 0x57, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(454), + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x91, 0x0a, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(ANGRY_START_FUNC), + WAIT(30), + CALL_SCRIPT(ANGRY_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(8), + FANFARE_PLAY2(486), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x57, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs12_g21_s0_station_sref_script[] = { /* 0x81e8c38 */ + DEBUGINFO, + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(12), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g21_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g21_s0_station_sref_script }; /* 0x81e8d48 */ + +static const struct ScriptCommand s_gs12_g21_s0_lives0_dlg0[] = { /* 0x81e8d54 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g22_s0_station_sref_script[] = { /* 0x81e8de4 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + BGM_STOP, + SELECT_MAP(12), + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g22_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g22_s0_station_sref_script }; /* 0x81e8f24 */ + +static const struct ScriptCommand s_gs12_g22_s0_lives0_dlg0[] = { /* 0x81e8f30 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g23_s0_station_sref_script[] = { /* 0x81e8fb0 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + BGM_STOP, + SELECT_MAP(12), + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g23_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g23_s0_station_sref_script }; /* 0x81e90f0 */ + +static const struct ScriptCommand s_gs12_g23_s0_lives0_dlg0[] = { /* 0x81e90fc */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g24_s0_station_sref_script[] = { /* 0x81e917c */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(12), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g24_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g24_s0_station_sref_script }; /* 0x81e92bc */ + +static const struct ScriptCommand s_gs12_g24_s0_lives0_dlg0[] = { /* 0x81e92c8 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g25_s0_station_sref_script[] = { /* 0x81e9348 */ + DEBUGINFO, + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(12), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g25_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g25_s0_station_sref_script }; /* 0x81e9408 */ + +static const struct ScriptCommand s_gs12_g25_s0_lives0_dlg0[] = { /* 0x81e9414 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g26_s0_station_sref_script[] = { /* 0x81e9494 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(12), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g26_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g26_s0_station_sref_script }; /* 0x81e95d4 */ + +static const struct ScriptCommand s_gs12_g26_s0_lives0_dlg0[] = { /* 0x81e95e0 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g27_s0_station_sref_script[] = { /* 0x81e9660 */ + DEBUGINFO, + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(12), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g27_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g27_s0_station_sref_script }; /* 0x81e9720 */ + +static const struct ScriptCommand s_gs12_g27_s0_lives0_dlg0[] = { /* 0x81e972c */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g28_s0_station_sref_script[] = { /* 0x81e97ac */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(12), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g28_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g28_s0_station_sref_script }; /* 0x81e98ec */ + +static const struct ScriptCommand s_gs12_g28_s0_lives0_dlg0[] = { /* 0x81e98f8 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g29_s0_station_sref_script[] = { /* 0x81e9978 */ + DEBUGINFO, + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(12), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g29_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g29_s0_station_sref_script }; /* 0x81e9a38 */ + +static const struct ScriptCommand s_gs12_g29_s0_lives0_dlg0[] = { /* 0x81e9a44 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g30_s0_station_sref_script[] = { /* 0x81e9ac4 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(12), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g30_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g30_s0_station_sref_script }; /* 0x81e9c04 */ + +static const struct ScriptCommand s_gs12_g30_s0_lives0_dlg0[] = { /* 0x81e9c10 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g31_s0_station_sref_script[] = { /* 0x81e9c90 */ + DEBUGINFO, + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(12), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g31_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g31_s0_station_sref_script }; /* 0x81e9d50 */ + +static const struct ScriptCommand s_gs12_g31_s0_lives0_dlg0[] = { /* 0x81e9d5c */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g32_s0_station_sref_script[] = { /* 0x81e9ddc */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(12), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g32_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g32_s0_station_sref_script }; /* 0x81e9f1c */ + +static const struct ScriptCommand s_gs12_g32_s0_lives0_dlg0[] = { /* 0x81e9f28 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g33_s0_station_sref_script[] = { /* 0x81e9fa8 */ + DEBUGINFO, + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(12), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, -1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs12_g33_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs12_g33_s0_station_sref_script }; /* 0x81ea088 */ + +static const struct ScriptCommand s_gs12_g33_s0_lives0_dlg0[] = { /* 0x81ea094 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000052, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000062, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + WAIT(15), + CALL_SCRIPT(LOOK_AROUND_DOWN_FUNC), + WAIT(45), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............#W\nWhat a strange dream...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("It's the dream I always have, but it was\nclearer than it was before...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I think I finally learned who that\nPokémon was...") }, + FANFARE_PLAY2(464), + CALL_SCRIPT(NOTICE_FUNC), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("That's it!#W\n$n2!") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("It was $n2!") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Yesterday, $n3 said...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs12_g34_s0_station_sref_script[] = { /* 0x81ea2d8 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(12), + SELECT_ENTITIES(-1, -1), + BGM_STOP, + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + BGM_SWITCH(1), + RET, +}; + +static const struct ScriptRef s_gs12_g34_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g34_s0_station_sref_script }; /* 0x81ea3b8 */ + +static const struct ScriptCommand s_gs12_g34_s0_lives0_dlg0[] = { /* 0x81ea3c4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000052, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + WAIT(30), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("..................") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Maybe...#W\nMaybe, I...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Maybe I was the human who was\n$n2's partner...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Maybe I was the one that abandoned\n$n2 when she was cursed...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Maybe that's why I turned into\na Pokémon...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs12_g35_s0_station_sref_script[] = { /* 0x81ea5a4 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(12), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g35_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g35_s0_station_sref_script }; /* 0x81ea6e4 */ + +static const struct ScriptCommand s_gs12_g35_s0_lives0_dlg0[] = { /* 0x81ea6f0 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g36_s0_station_sref_script[] = { /* 0x81ea770 */ + DEBUGINFO, + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(12), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, -1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs12_g36_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs12_g36_s0_station_sref_script }; /* 0x81ea850 */ + +static const struct ScriptCommand s_gs12_g36_s0_lives0_dlg0[] = { /* 0x81ea85c */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + WAIT(30), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............#W\nThere was an earthquake...#W\nWasn't there...?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I think I had that dream again...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I think I spoke with Gardevoir...#W\nShe said something important...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(464), + CALL_SCRIPT(NOTICE_FUNC), + WAIT(30), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("That's it!#W\nShe did say something!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs12_g37_s0_station_sref_script[] = { /* 0x81eaa5c */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(12), + SELECT_ENTITIES(-1, -1), + BGM_STOP, + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + BGM_SWITCH(1), + RET, +}; + +static const struct ScriptRef s_gs12_g37_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g37_s0_station_sref_script }; /* 0x81eab3c */ + +static const struct ScriptCommand s_gs12_g37_s0_lives0_dlg0[] = { /* 0x81eab48 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000052, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(466), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("$n2 knows!#W\nShe knows why I became a Pokémon.") }, + { 0x2e, 0x02, 0x0000, 0x00000004, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("She also said something about a role...#W\nWhat did she mean by that?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs12_g38_s0_station_sref_script[] = { /* 0x81eaca0 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(12), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g38_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g38_s0_station_sref_script }; /* 0x81eadd0 */ + +static const struct ScriptCommand s_gs12_g38_s0_lives0_dlg0[] = { /* 0x81eaddc */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + WAIT(10), + FANFARE_PLAY2(453), + { 0x97, 0x00, 0x0002, 0x00000001, 0x00000003, NULL }, + WAIT(30), + CALL_SCRIPT(SHOCK_FUNC), + { 0x2e, 0x02, 0x0000, 0x0000000c, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Oh, wow, another earthquake...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(120), + FANFARE_FADEOUT2(60, 453), + { 0x97, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0x2e, 0x15, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............#W\nI guess it settled down...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _(".......There've been a lot of earthquakes\nlately...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(1), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs12_g39_s0_station_sref_script[] = { /* 0x81eb014 */ + DEBUGINFO, + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(12), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs12_g39_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs12_g39_s0_station_sref_script }; /* 0x81eb0f4 */ + +static const struct ScriptCommand s_gs12_g39_s0_lives0_dlg0[] = { /* 0x81eb100 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + WAIT(10), + FANFARE_PLAY2(453), + { 0x97, 0x00, 0x0002, 0x00000001, 0x00000003, NULL }, + WAIT(30), + CALL_SCRIPT(SHOCK_FUNC), + { 0x2e, 0x02, 0x0000, 0x0000000c, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Oh? Another earthquake...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(120), + FANFARE_FADEOUT2(60, 453), + { 0x97, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x15, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("There've been so many quakes lately...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I wonder when they'll settle down...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 1), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0!\nThere's a commotion down at the square!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" A lot of Pokémon have\nalready gathered there.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Let's go to the square right\nnow!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x89, 0x50, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + +static const struct ScriptCommand s_gs12_g39_s1_lives0_dlg0[] = { /* 0x81eb468 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x30, 0x0200, 0x00000004, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x30, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs12_g40_s0_station_sref_script[] = { /* 0x81eb528 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(12), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g40_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g40_s0_station_sref_script }; /* 0x81eb668 */ + +static const struct ScriptCommand s_gs12_g40_s0_lives0_dlg0[] = { /* 0x81eb674 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g41_s0_station_sref_script[] = { /* 0x81eb6f4 */ + DEBUGINFO, + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(12), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g41_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g41_s0_station_sref_script }; /* 0x81eb824 */ + +static const struct ScriptCommand s_gs12_g41_s0_lives0_dlg0[] = { /* 0x81eb830 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g42_s0_station_sref_script[] = { /* 0x81eb8b0 */ + DEBUGINFO, + SELECT_MAP(12), + { 0x3b, 0x48, 0x0002, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, -1), + { 0x27, 0x01, 0x000d, 0x0000003c, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + FANFARE_FADEOUT2(90, 484), + { 0x28, 0x01, 0x000d, 0x0000003c, 0x00000000, NULL }, + { 0x3b, 0x48, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs12_g42_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs12_g42_s0_station_sref_script }; /* 0x81eb950 */ + +static const struct ScriptCommand s_gs12_g42_s0_lives0_dlg0[] = { /* 0x81eb95c */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" How do you like Dream\nEater?#W\nHorrible, isn't it? Keke!") }, + { 0x2e, 0x02, 0x0001, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But who would've thought\nyou were also human before...#W\nDidn't expect that.") }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But who cares?\nSomeone like that's sure to be some\nlowlife. Keke!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll expose you yet!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll expose what's in your\nheart with Dream Eater! Kekeke!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(90), + FANFARE_PLAY2(464), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hm?!#W\nSomething's coming!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(484), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What? What is that light?#W\nIt's coming closer?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + +static const struct ScriptCommand s_gs12_g42_s0_lives1_dlg0[] = { /* 0x81ebd04 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x06, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x06, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x06, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0c, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0x62, 0x00, 0x0080, 0x00000000, 0x0000000a, NULL }, + WAIT(30), + { 0x89, 0x40, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs12_g42_s0_eff1_script[] = { /* 0x81ebe54 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000010a, 0x00000000, NULL }, + { 0x84, 0x00, 0x0066, -0x00000030, 0x00000040, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x84, 0x00, 0x004c, -0x00000048, 0x00000010, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs12_g43_s0_station_sref_script[] = { /* 0x81ebee4 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(12), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g43_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g43_s0_station_sref_script }; /* 0x81ec024 */ + +static const struct ScriptCommand s_gs12_g43_s0_lives0_dlg0[] = { /* 0x81ec030 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g44_s0_station_sref_script[] = { /* 0x81ec0b0 */ + DEBUGINFO, + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(12), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g44_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g44_s0_station_sref_script }; /* 0x81ec170 */ + +static const struct ScriptCommand s_gs12_g44_s0_lives0_dlg0[] = { /* 0x81ec17c */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g45_s0_station_sref_script[] = { /* 0x81ec1fc */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + { 0x2d, 0x09, 0x0000, 0x00000021, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000037, 0x00000000, NULL }, + BGM_STOP, + { 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(12), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Due to $n0 and\n#+$n1's heroic actions...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+the falling star was destroyed...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+and peace returned to\n#+the world of Pokémon.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+But that did not put an end\n#+to the natural calamities.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Natural disasters still occurred,\n#+but much less often.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Needless to say,\n#+$t's rescue activities") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+continued as if nothing had changed.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Several mornings later...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x39, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x3a, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(46, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g45_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g45_s0_station_sref_script }; /* 0x81ec590 */ + +static const struct ScriptCommand s_gs12_g45_s0_lives0_dlg0[] = { /* 0x81ec59c */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Morning, $n0!\nDid you just get up?")), + VARIANT(/* == */ 1, _(" I just went by the Pelipper\nPost Office.")), + VARIANT(/* == */ 1, _(" There were still rescue jobs\nposted on the Bulletin Board.")), + VARIANT(/* == */ 1, _(" Even though it's peaceful\nagain, lots of Pokémon still need helping.")), + VARIANT(/* == */ 1, _(" $n0!#W\nLet's keep on giving it our best like\nalways!")), + VARIANT_DEFAULT(_(" Good morning, $n0!\nDid you just wake up?")), + VARIANT_DEFAULT(_(" I went by the Pelipper Post\nOffice earlier.")), + VARIANT_DEFAULT(_(" The Bulletin Board was still\ncovered with rescue jobs.")), + VARIANT_DEFAULT(_(" Even though it's peaceful\nagain, many Pokémon still need our help.")), + VARIANT_DEFAULT(_(" $n0!#W\nLet's keep on doing our best as always!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g45_s0_lives1_dlg0[] = { /* 0x81ec950 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x60, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g46_s0_station_sref_script[] = { /* 0x81ec9e0 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs12_g46_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs12_g46_s0_station_sref_script }; /* 0x81eca10 */ + +static const struct ScriptCommand s_gs12_g46_s0_evt0_sref_script[] = { /* 0x81eca1c */ + DEBUGINFO, + { 0x01, 0x00, -0x0001, 0x00000009, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptRef s_gs12_g46_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs12_g46_s0_evt0_sref_script }; /* 0x81eca4c */ + +static const struct ScriptCommand s_gs12_g46_s0_evt1_sref_script[] = { /* 0x81eca58 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3a, 0x00, 0x0000, 0x00000000, -0x00000001, _("Would you like to save the game?") }, + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SAVE_START_FUNC), + { 0x3c, 0x0e, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SAVE_END_FUNC), + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptRef s_gs12_g46_s0_evt1_sref = { 57, 7, NULL /* NORMAL_EVENT */, s_gs12_g46_s0_evt1_sref_script }; /* 0x81ecb2c */ + +static const struct ScriptCommand s_gs12_g46_s1_station_sref_script[] = { /* 0x81ecb38 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(12), + SELECT_ENTITIES(0, 2), + BGM_SWITCH(1), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + RET, +}; + +static const struct ScriptRef s_gs12_g46_s1_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs12_g46_s1_station_sref_script }; /* 0x81ecbf8 */ + +static const struct ScriptCommand s_gs12_g46_s1_lives0_dlg0[] = { /* 0x81ecc04 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Morning, $n0!")), + VARIANT(/* == */ 1, _(" Let's keep on giving it our\nbest for our rescue team!")), + VARIANT_DEFAULT(_(" Good morning, $n0!")), + VARIANT_DEFAULT(_(" Let's keep doing our best\nfor our rescue team!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs12_g46_s1_lives1_dlg0[] = { /* 0x81ecdd0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x60, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct GroundLivesData s_gs12_g0_s1_lives[] = { /* 0x81ece60 */ + /* 0 */ { 0, 4, 0, 0, { 30, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 46, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g0_s2_lives[] = { /* 0x81ece90 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g0_s2_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 30, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g0_s2_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g1_s0_lives[] = { /* 0x81ecec0 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 30, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g1_s1_lives[] = { /* 0x81ecef0 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g1_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 30, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g1_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g2_s0_lives[] = { /* 0x81ecf20 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g2_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g3_s0_lives[] = { /* 0x81ecf38 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g3_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g4_s0_lives[] = { /* 0x81ecf50 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g4_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g6_s0_lives[] = { /* 0x81ecf68 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g6_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g7_s0_lives[] = { /* 0x81ecf80 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g7_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g8_s0_lives[] = { /* 0x81ecf98 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g8_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g9_s0_lives[] = { /* 0x81ecfb0 */ + /* 0 */ { 1, 4, 0, 0, { 28, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g9_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 32, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g9_s0_lives1_dlg0, + } }, + /* 2 */ { 115, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g9_s0_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g9_s1_lives[] = { /* 0x81ecff8 */ + /* 0 */ { 0, 4, 0, 0, { 28, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g9_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g10_s0_lives[] = { /* 0x81ed010 */ + /* 0 */ { 1, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g10_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g11_s0_lives[] = { /* 0x81ed028 */ + /* 0 */ { 1, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g11_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 30, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g11_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g12_s0_lives[] = { /* 0x81ed058 */ + /* 0 */ { 1, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g12_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 30, 48, 0, 0 }, { + [0] = s_gs12_g12_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g13_s0_lives[] = { /* 0x81ed088 */ + /* 0 */ { 1, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g13_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 30, 48, 0, 0 }, { + [0] = s_gs12_g13_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g14_s0_lives[] = { /* 0x81ed0b8 */ + /* 0 */ { 1, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g14_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 30, 48, 0, 0 }, { + [0] = s_gs12_g14_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g15_s0_lives[] = { /* 0x81ed0e8 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g15_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g16_s1_lives[] = { /* 0x81ed100 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g16_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g17_s0_lives[] = { /* 0x81ed118 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g17_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g18_s0_lives[] = { /* 0x81ed130 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g18_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g19_s0_lives[] = { /* 0x81ed148 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g19_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g20_s0_lives[] = { /* 0x81ed160 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g20_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g20_s1_lives[] = { /* 0x81ed178 */ + /* 0 */ { 66, 0, 0, 0, { 30, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g20_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g21_s0_lives[] = { /* 0x81ed190 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g21_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g22_s0_lives[] = { /* 0x81ed1a8 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g22_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g23_s0_lives[] = { /* 0x81ed1c0 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g23_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g24_s0_lives[] = { /* 0x81ed1d8 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g24_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g25_s0_lives[] = { /* 0x81ed1f0 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g25_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g26_s0_lives[] = { /* 0x81ed208 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g26_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g27_s0_lives[] = { /* 0x81ed220 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g27_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g28_s0_lives[] = { /* 0x81ed238 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g28_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g29_s0_lives[] = { /* 0x81ed250 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g29_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g30_s0_lives[] = { /* 0x81ed268 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g30_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g31_s0_lives[] = { /* 0x81ed280 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g31_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g32_s0_lives[] = { /* 0x81ed298 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g32_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g33_s0_lives[] = { /* 0x81ed2b0 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g33_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g34_s0_lives[] = { /* 0x81ed2c8 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g34_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g35_s0_lives[] = { /* 0x81ed2e0 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g35_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g36_s0_lives[] = { /* 0x81ed2f8 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g36_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g37_s0_lives[] = { /* 0x81ed310 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g37_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g38_s0_lives[] = { /* 0x81ed328 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g38_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g39_s0_lives[] = { /* 0x81ed340 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g39_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g39_s1_lives[] = { /* 0x81ed358 */ + /* 0 */ { 34, 4, 0, 0, { 30, 48, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g39_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g40_s0_lives[] = { /* 0x81ed370 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g40_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g41_s0_lives[] = { /* 0x81ed388 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g41_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g42_s0_lives[] = { /* 0x81ed3a0 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g42_s0_lives0_dlg0, + } }, + /* 1 */ { 91, 4, 0, 0, { 30, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g42_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g43_s0_lives[] = { /* 0x81ed3d0 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g43_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g44_s0_lives[] = { /* 0x81ed3e8 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g44_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g45_s0_lives[] = { /* 0x81ed400 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g45_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 30, 47, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g45_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs12_g46_s1_lives[] = { /* 0x81ed430 */ + /* 0 */ { 0, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g46_s1_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 30, 47, 0, CPOS_HALFTILE }, { + [0] = s_gs12_g46_s1_lives1_dlg0, + } }, +}; + +static const struct GroundObjectData s_gs12_g0_s0_objs[] = { /* 0x81ed460 */ + /* 0 */ { 17, 0, 8, 8, { 20, 29, 0, 0 }, { + [0] = s_gs12_g0_s0_obj0_dlg0, + [2] = s_gs12_g0_s0_obj0_dlg2, + } }, +}; + +static const struct GroundEffectData s_gs12_g2_s0_effs[] = { /* 0x81ed478 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g3_s0_effs[] = { /* 0x81ed484 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g4_s0_effs[] = { /* 0x81ed490 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g6_s0_effs[] = { /* 0x81ed49c */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g7_s0_effs[] = { /* 0x81ed4a8 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g8_s0_effs[] = { /* 0x81ed4b4 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g9_s0_effs[] = { /* 0x81ed4c0 */ + /* 0 */ { 0, 0, 1, 1, { 30, 32, 0, CPOS_HALFTILE }, s_gs12_g9_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs12_g9_s1_effs[] = { /* 0x81ed4cc */ + /* 0 */ { 5, 0, 1, 1, { 30, 30, 0, CPOS_HALFTILE }, s_gs12_g9_s1_eff0_script }, +}; + +static const struct GroundEffectData s_gs12_g9_s2_effs[] = { /* 0x81ed4d8 */ + /* 0 */ { 5, 0, 1, 1, { 28, 27, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs12_g9_s2_eff0_script }, +}; + +static const struct GroundEffectData s_gs12_g10_s0_effs[] = { /* 0x81ed4e4 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g11_s0_effs[] = { /* 0x81ed4f0 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g12_s0_effs[] = { /* 0x81ed4fc */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g13_s0_effs[] = { /* 0x81ed508 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g14_s0_effs[] = { /* 0x81ed514 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g15_s0_effs[] = { /* 0x81ed520 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g16_s1_effs[] = { /* 0x81ed52c */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g17_s0_effs[] = { /* 0x81ed538 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g18_s0_effs[] = { /* 0x81ed544 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g19_s0_effs[] = { /* 0x81ed550 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g20_s0_effs[] = { /* 0x81ed55c */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g21_s0_effs[] = { /* 0x81ed568 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g22_s0_effs[] = { /* 0x81ed574 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g23_s0_effs[] = { /* 0x81ed580 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g24_s0_effs[] = { /* 0x81ed58c */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g25_s0_effs[] = { /* 0x81ed598 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g26_s0_effs[] = { /* 0x81ed5a4 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g27_s0_effs[] = { /* 0x81ed5b0 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g28_s0_effs[] = { /* 0x81ed5bc */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g29_s0_effs[] = { /* 0x81ed5c8 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g30_s0_effs[] = { /* 0x81ed5d4 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g31_s0_effs[] = { /* 0x81ed5e0 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g32_s0_effs[] = { /* 0x81ed5ec */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g33_s0_effs[] = { /* 0x81ed5f8 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g34_s0_effs[] = { /* 0x81ed604 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g35_s0_effs[] = { /* 0x81ed610 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g36_s0_effs[] = { /* 0x81ed61c */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g37_s0_effs[] = { /* 0x81ed628 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g38_s0_effs[] = { /* 0x81ed634 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g39_s0_effs[] = { /* 0x81ed640 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g40_s0_effs[] = { /* 0x81ed64c */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g41_s0_effs[] = { /* 0x81ed658 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g42_s0_effs[] = { /* 0x81ed664 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, + /* 1 */ { 4, 0, 1, 1, { 45, 17, 0, CPOS_HALFTILE }, s_gs12_g42_s0_eff1_script }, +}; + +static const struct GroundEffectData s_gs12_g43_s0_effs[] = { /* 0x81ed67c */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g44_s0_effs[] = { /* 0x81ed688 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g45_s0_effs[] = { /* 0x81ed694 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs12_g46_s1_effs[] = { /* 0x81ed6a0 */ + /* 0 */ { 0, 0, 1, 1, { 30, 34, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEventData s_gs12_g0_s0_evts[] = { /* 0x81ed6ac */ + /* 0 */ { 6, 3, 0, 0, { 27, 48, 0, 0 }, &s_gs12_g0_s0_evt0_sref }, + /* 1 */ { 6, 3, 0, 0, { 27, 28, 0, 0 }, &s_gs12_g0_s0_evt1_sref }, +}; + +static const struct GroundEventData s_gs12_g16_s0_evts[] = { /* 0x81ed6c4 */ + /* 0 */ { 6, 3, 0, 0, { 27, 48, 0, 0 }, &s_gs12_g16_s0_evt0_sref }, + /* 1 */ { 6, 3, 0, 0, { 27, 28, 0, 0 }, &s_gs12_g16_s0_evt1_sref }, +}; + +static const struct GroundEventData s_gs12_g46_s0_evts[] = { /* 0x81ed6dc */ + /* 0 */ { 6, 3, 0, 0, { 27, 48, 0, 0 }, &s_gs12_g46_s0_evt0_sref }, + /* 1 */ { 6, 3, 0, 0, { 27, 28, 0, 0 }, &s_gs12_g46_s0_evt1_sref }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81ed6f4 */ + &s_gs12_g0_s0_station_sref, + &s_gs12_g1_s0_station_sref, + &s_gs12_g1_s1_station_sref, + &s_gs12_g2_s0_station_sref, + &s_gs12_g3_s0_station_sref, + &s_gs12_g4_s0_station_sref, + &s_gs12_g5_s0_station_sref, + &s_gs12_g6_s0_station_sref, + &s_gs12_g7_s0_station_sref, + &s_gs12_g8_s0_station_sref, + &s_gs12_g9_s0_station_sref, + &s_gs12_g10_s0_station_sref, + &s_gs12_g11_s0_station_sref, + &s_gs12_g12_s0_station_sref, + &s_gs12_g13_s0_station_sref, + &s_gs12_g14_s0_station_sref, + &s_gs12_g15_s0_station_sref, + &s_gs12_g16_s0_station_sref, + &s_gs12_g16_s1_station_sref, + &s_gs12_g17_s0_station_sref, + &s_gs12_g18_s0_station_sref, + &s_gs12_g19_s0_station_sref, + &s_gs12_g20_s0_station_sref, + &s_gs12_g21_s0_station_sref, + &s_gs12_g22_s0_station_sref, + &s_gs12_g23_s0_station_sref, + &s_gs12_g24_s0_station_sref, + &s_gs12_g25_s0_station_sref, + &s_gs12_g26_s0_station_sref, + &s_gs12_g27_s0_station_sref, + &s_gs12_g28_s0_station_sref, + &s_gs12_g29_s0_station_sref, + &s_gs12_g30_s0_station_sref, + &s_gs12_g31_s0_station_sref, + &s_gs12_g32_s0_station_sref, + &s_gs12_g33_s0_station_sref, + &s_gs12_g34_s0_station_sref, + &s_gs12_g35_s0_station_sref, + &s_gs12_g36_s0_station_sref, + &s_gs12_g37_s0_station_sref, + &s_gs12_g38_s0_station_sref, + &s_gs12_g39_s0_station_sref, + &s_gs12_g40_s0_station_sref, + &s_gs12_g41_s0_station_sref, + &s_gs12_g42_s0_station_sref, + &s_gs12_g43_s0_station_sref, + &s_gs12_g44_s0_station_sref, + &s_gs12_g45_s0_station_sref, + &s_gs12_g46_s0_station_sref, + &s_gs12_g46_s1_station_sref, +}; + +static const struct GroundScriptSector s_gs12_g0_sectors[] = { /* 0x81ed7bc */ + { 0,NULL, LPARRAY(s_gs12_g0_s0_objs), 0,NULL, LPARRAY(s_gs12_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs12_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs12_g0_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs12_g1_sectors[] = { /* 0x81ed834 */ + { LPARRAY(s_gs12_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[1], }, + { LPARRAY(s_gs12_g1_s1_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptSector s_gs12_g2_sectors[] = { /* 0x81ed884 */ + { LPARRAY(s_gs12_g2_s0_lives), 0,NULL, LPARRAY(s_gs12_g2_s0_effs), 0,NULL, 1,&sStationScripts[3], }, +}; + +static const struct GroundScriptSector s_gs12_g3_sectors[] = { /* 0x81ed8ac */ + { LPARRAY(s_gs12_g3_s0_lives), 0,NULL, LPARRAY(s_gs12_g3_s0_effs), 0,NULL, 1,&sStationScripts[4], }, +}; + +static const struct GroundScriptSector s_gs12_g4_sectors[] = { /* 0x81ed8d4 */ + { LPARRAY(s_gs12_g4_s0_lives), 0,NULL, LPARRAY(s_gs12_g4_s0_effs), 0,NULL, 1,&sStationScripts[5], }, +}; + +static const struct GroundScriptSector s_gs12_g5_sectors[] = { /* 0x81ed8fc */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[6], }, +}; + +static const struct GroundScriptSector s_gs12_g6_sectors[] = { /* 0x81ed924 */ + { LPARRAY(s_gs12_g6_s0_lives), 0,NULL, LPARRAY(s_gs12_g6_s0_effs), 0,NULL, 1,&sStationScripts[7], }, +}; + +static const struct GroundScriptSector s_gs12_g7_sectors[] = { /* 0x81ed94c */ + { LPARRAY(s_gs12_g7_s0_lives), 0,NULL, LPARRAY(s_gs12_g7_s0_effs), 0,NULL, 1,&sStationScripts[8], }, +}; + +static const struct GroundScriptSector s_gs12_g8_sectors[] = { /* 0x81ed974 */ + { LPARRAY(s_gs12_g8_s0_lives), 0,NULL, LPARRAY(s_gs12_g8_s0_effs), 0,NULL, 1,&sStationScripts[9], }, +}; + +static const struct GroundScriptSector s_gs12_g9_sectors[] = { /* 0x81ed99c */ + { LPARRAY(s_gs12_g9_s0_lives), 0,NULL, LPARRAY(s_gs12_g9_s0_effs), 0,NULL, 1,&sStationScripts[10], }, + { LPARRAY(s_gs12_g9_s1_lives), 0,NULL, LPARRAY(s_gs12_g9_s1_effs), 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, LPARRAY(s_gs12_g9_s2_effs), 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs12_g10_sectors[] = { /* 0x81eda14 */ + { LPARRAY(s_gs12_g10_s0_lives), 0,NULL, LPARRAY(s_gs12_g10_s0_effs), 0,NULL, 1,&sStationScripts[11], }, +}; + +static const struct GroundScriptSector s_gs12_g11_sectors[] = { /* 0x81eda3c */ + { LPARRAY(s_gs12_g11_s0_lives), 0,NULL, LPARRAY(s_gs12_g11_s0_effs), 0,NULL, 1,&sStationScripts[12], }, +}; + +static const struct GroundScriptSector s_gs12_g12_sectors[] = { /* 0x81eda64 */ + { LPARRAY(s_gs12_g12_s0_lives), 0,NULL, LPARRAY(s_gs12_g12_s0_effs), 0,NULL, 1,&sStationScripts[13], }, +}; + +static const struct GroundScriptSector s_gs12_g13_sectors[] = { /* 0x81eda8c */ + { LPARRAY(s_gs12_g13_s0_lives), 0,NULL, LPARRAY(s_gs12_g13_s0_effs), 0,NULL, 1,&sStationScripts[14], }, +}; + +static const struct GroundScriptSector s_gs12_g14_sectors[] = { /* 0x81edab4 */ + { LPARRAY(s_gs12_g14_s0_lives), 0,NULL, LPARRAY(s_gs12_g14_s0_effs), 0,NULL, 1,&sStationScripts[15], }, +}; + +static const struct GroundScriptSector s_gs12_g15_sectors[] = { /* 0x81edadc */ + { LPARRAY(s_gs12_g15_s0_lives), 0,NULL, LPARRAY(s_gs12_g15_s0_effs), 0,NULL, 1,&sStationScripts[16], }, +}; + +static const struct GroundScriptSector s_gs12_g16_sectors[] = { /* 0x81edb04 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs12_g16_s0_evts), 1,&sStationScripts[17], }, + { LPARRAY(s_gs12_g16_s1_lives), 0,NULL, LPARRAY(s_gs12_g16_s1_effs), 0,NULL, 1,&sStationScripts[18], }, +}; + +static const struct GroundScriptSector s_gs12_g17_sectors[] = { /* 0x81edb54 */ + { LPARRAY(s_gs12_g17_s0_lives), 0,NULL, LPARRAY(s_gs12_g17_s0_effs), 0,NULL, 1,&sStationScripts[19], }, +}; + +static const struct GroundScriptSector s_gs12_g18_sectors[] = { /* 0x81edb7c */ + { LPARRAY(s_gs12_g18_s0_lives), 0,NULL, LPARRAY(s_gs12_g18_s0_effs), 0,NULL, 1,&sStationScripts[20], }, +}; + +static const struct GroundScriptSector s_gs12_g19_sectors[] = { /* 0x81edba4 */ + { LPARRAY(s_gs12_g19_s0_lives), 0,NULL, LPARRAY(s_gs12_g19_s0_effs), 0,NULL, 1,&sStationScripts[21], }, +}; + +static const struct GroundScriptSector s_gs12_g20_sectors[] = { /* 0x81edbcc */ + { LPARRAY(s_gs12_g20_s0_lives), 0,NULL, LPARRAY(s_gs12_g20_s0_effs), 0,NULL, 1,&sStationScripts[22], }, + { LPARRAY(s_gs12_g20_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs12_g21_sectors[] = { /* 0x81edc1c */ + { LPARRAY(s_gs12_g21_s0_lives), 0,NULL, LPARRAY(s_gs12_g21_s0_effs), 0,NULL, 1,&sStationScripts[23], }, +}; + +static const struct GroundScriptSector s_gs12_g22_sectors[] = { /* 0x81edc44 */ + { LPARRAY(s_gs12_g22_s0_lives), 0,NULL, LPARRAY(s_gs12_g22_s0_effs), 0,NULL, 1,&sStationScripts[24], }, +}; + +static const struct GroundScriptSector s_gs12_g23_sectors[] = { /* 0x81edc6c */ + { LPARRAY(s_gs12_g23_s0_lives), 0,NULL, LPARRAY(s_gs12_g23_s0_effs), 0,NULL, 1,&sStationScripts[25], }, +}; + +static const struct GroundScriptSector s_gs12_g24_sectors[] = { /* 0x81edc94 */ + { LPARRAY(s_gs12_g24_s0_lives), 0,NULL, LPARRAY(s_gs12_g24_s0_effs), 0,NULL, 1,&sStationScripts[26], }, +}; + +static const struct GroundScriptSector s_gs12_g25_sectors[] = { /* 0x81edcbc */ + { LPARRAY(s_gs12_g25_s0_lives), 0,NULL, LPARRAY(s_gs12_g25_s0_effs), 0,NULL, 1,&sStationScripts[27], }, +}; + +static const struct GroundScriptSector s_gs12_g26_sectors[] = { /* 0x81edce4 */ + { LPARRAY(s_gs12_g26_s0_lives), 0,NULL, LPARRAY(s_gs12_g26_s0_effs), 0,NULL, 1,&sStationScripts[28], }, +}; + +static const struct GroundScriptSector s_gs12_g27_sectors[] = { /* 0x81edd0c */ + { LPARRAY(s_gs12_g27_s0_lives), 0,NULL, LPARRAY(s_gs12_g27_s0_effs), 0,NULL, 1,&sStationScripts[29], }, +}; + +static const struct GroundScriptSector s_gs12_g28_sectors[] = { /* 0x81edd34 */ + { LPARRAY(s_gs12_g28_s0_lives), 0,NULL, LPARRAY(s_gs12_g28_s0_effs), 0,NULL, 1,&sStationScripts[30], }, +}; + +static const struct GroundScriptSector s_gs12_g29_sectors[] = { /* 0x81edd5c */ + { LPARRAY(s_gs12_g29_s0_lives), 0,NULL, LPARRAY(s_gs12_g29_s0_effs), 0,NULL, 1,&sStationScripts[31], }, +}; + +static const struct GroundScriptSector s_gs12_g30_sectors[] = { /* 0x81edd84 */ + { LPARRAY(s_gs12_g30_s0_lives), 0,NULL, LPARRAY(s_gs12_g30_s0_effs), 0,NULL, 1,&sStationScripts[32], }, +}; + +static const struct GroundScriptSector s_gs12_g31_sectors[] = { /* 0x81eddac */ + { LPARRAY(s_gs12_g31_s0_lives), 0,NULL, LPARRAY(s_gs12_g31_s0_effs), 0,NULL, 1,&sStationScripts[33], }, +}; + +static const struct GroundScriptSector s_gs12_g32_sectors[] = { /* 0x81eddd4 */ + { LPARRAY(s_gs12_g32_s0_lives), 0,NULL, LPARRAY(s_gs12_g32_s0_effs), 0,NULL, 1,&sStationScripts[34], }, +}; + +static const struct GroundScriptSector s_gs12_g33_sectors[] = { /* 0x81eddfc */ + { LPARRAY(s_gs12_g33_s0_lives), 0,NULL, LPARRAY(s_gs12_g33_s0_effs), 0,NULL, 1,&sStationScripts[35], }, +}; + +static const struct GroundScriptSector s_gs12_g34_sectors[] = { /* 0x81ede24 */ + { LPARRAY(s_gs12_g34_s0_lives), 0,NULL, LPARRAY(s_gs12_g34_s0_effs), 0,NULL, 1,&sStationScripts[36], }, +}; + +static const struct GroundScriptSector s_gs12_g35_sectors[] = { /* 0x81ede4c */ + { LPARRAY(s_gs12_g35_s0_lives), 0,NULL, LPARRAY(s_gs12_g35_s0_effs), 0,NULL, 1,&sStationScripts[37], }, +}; + +static const struct GroundScriptSector s_gs12_g36_sectors[] = { /* 0x81ede74 */ + { LPARRAY(s_gs12_g36_s0_lives), 0,NULL, LPARRAY(s_gs12_g36_s0_effs), 0,NULL, 1,&sStationScripts[38], }, +}; + +static const struct GroundScriptSector s_gs12_g37_sectors[] = { /* 0x81ede9c */ + { LPARRAY(s_gs12_g37_s0_lives), 0,NULL, LPARRAY(s_gs12_g37_s0_effs), 0,NULL, 1,&sStationScripts[39], }, +}; + +static const struct GroundScriptSector s_gs12_g38_sectors[] = { /* 0x81edec4 */ + { LPARRAY(s_gs12_g38_s0_lives), 0,NULL, LPARRAY(s_gs12_g38_s0_effs), 0,NULL, 1,&sStationScripts[40], }, +}; + +static const struct GroundScriptSector s_gs12_g39_sectors[] = { /* 0x81edeec */ + { LPARRAY(s_gs12_g39_s0_lives), 0,NULL, LPARRAY(s_gs12_g39_s0_effs), 0,NULL, 1,&sStationScripts[41], }, + { LPARRAY(s_gs12_g39_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs12_g40_sectors[] = { /* 0x81edf3c */ + { LPARRAY(s_gs12_g40_s0_lives), 0,NULL, LPARRAY(s_gs12_g40_s0_effs), 0,NULL, 1,&sStationScripts[42], }, +}; + +static const struct GroundScriptSector s_gs12_g41_sectors[] = { /* 0x81edf64 */ + { LPARRAY(s_gs12_g41_s0_lives), 0,NULL, LPARRAY(s_gs12_g41_s0_effs), 0,NULL, 1,&sStationScripts[43], }, +}; + +static const struct GroundScriptSector s_gs12_g42_sectors[] = { /* 0x81edf8c */ + { LPARRAY(s_gs12_g42_s0_lives), 0,NULL, LPARRAY(s_gs12_g42_s0_effs), 0,NULL, 1,&sStationScripts[44], }, +}; + +static const struct GroundScriptSector s_gs12_g43_sectors[] = { /* 0x81edfb4 */ + { LPARRAY(s_gs12_g43_s0_lives), 0,NULL, LPARRAY(s_gs12_g43_s0_effs), 0,NULL, 1,&sStationScripts[45], }, +}; + +static const struct GroundScriptSector s_gs12_g44_sectors[] = { /* 0x81edfdc */ + { LPARRAY(s_gs12_g44_s0_lives), 0,NULL, LPARRAY(s_gs12_g44_s0_effs), 0,NULL, 1,&sStationScripts[46], }, +}; + +static const struct GroundScriptSector s_gs12_g45_sectors[] = { /* 0x81ee004 */ + { LPARRAY(s_gs12_g45_s0_lives), 0,NULL, LPARRAY(s_gs12_g45_s0_effs), 0,NULL, 1,&sStationScripts[47], }, +}; + +static const struct GroundScriptSector s_gs12_g46_sectors[] = { /* 0x81ee02c */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs12_g46_s0_evts), 1,&sStationScripts[48], }, + { LPARRAY(s_gs12_g46_s1_lives), 0,NULL, LPARRAY(s_gs12_g46_s1_effs), 0,NULL, 1,&sStationScripts[49], }, +}; + +static const struct GroundScriptGroup s_gs12_groups[] = { /* 0x81ee07c */ + { LPARRAY(s_gs12_g0_sectors) }, + { LPARRAY(s_gs12_g1_sectors) }, + { LPARRAY(s_gs12_g2_sectors) }, + { LPARRAY(s_gs12_g3_sectors) }, + { LPARRAY(s_gs12_g4_sectors) }, + { LPARRAY(s_gs12_g5_sectors) }, + { LPARRAY(s_gs12_g6_sectors) }, + { LPARRAY(s_gs12_g7_sectors) }, + { LPARRAY(s_gs12_g8_sectors) }, + { LPARRAY(s_gs12_g9_sectors) }, + { LPARRAY(s_gs12_g10_sectors) }, + { LPARRAY(s_gs12_g11_sectors) }, + { LPARRAY(s_gs12_g12_sectors) }, + { LPARRAY(s_gs12_g13_sectors) }, + { LPARRAY(s_gs12_g14_sectors) }, + { LPARRAY(s_gs12_g15_sectors) }, + { LPARRAY(s_gs12_g16_sectors) }, + { LPARRAY(s_gs12_g17_sectors) }, + { LPARRAY(s_gs12_g18_sectors) }, + { LPARRAY(s_gs12_g19_sectors) }, + { LPARRAY(s_gs12_g20_sectors) }, + { LPARRAY(s_gs12_g21_sectors) }, + { LPARRAY(s_gs12_g22_sectors) }, + { LPARRAY(s_gs12_g23_sectors) }, + { LPARRAY(s_gs12_g24_sectors) }, + { LPARRAY(s_gs12_g25_sectors) }, + { LPARRAY(s_gs12_g26_sectors) }, + { LPARRAY(s_gs12_g27_sectors) }, + { LPARRAY(s_gs12_g28_sectors) }, + { LPARRAY(s_gs12_g29_sectors) }, + { LPARRAY(s_gs12_g30_sectors) }, + { LPARRAY(s_gs12_g31_sectors) }, + { LPARRAY(s_gs12_g32_sectors) }, + { LPARRAY(s_gs12_g33_sectors) }, + { LPARRAY(s_gs12_g34_sectors) }, + { LPARRAY(s_gs12_g35_sectors) }, + { LPARRAY(s_gs12_g36_sectors) }, + { LPARRAY(s_gs12_g37_sectors) }, + { LPARRAY(s_gs12_g38_sectors) }, + { LPARRAY(s_gs12_g39_sectors) }, + { LPARRAY(s_gs12_g40_sectors) }, + { LPARRAY(s_gs12_g41_sectors) }, + { LPARRAY(s_gs12_g42_sectors) }, + { LPARRAY(s_gs12_g43_sectors) }, + { LPARRAY(s_gs12_g44_sectors) }, + { LPARRAY(s_gs12_g45_sectors) }, + { LPARRAY(s_gs12_g46_sectors) }, +}; + +static const struct GroundLink s_gs12_links[] = { /* 0x81ee1f4 */ + /* link 0 */ { { /*x*/ 17, /*y*/ 26, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 3 }, + /* link 1 */ { { /*x*/ 30, /*y*/ 35, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 2 */ { { /*x*/ 30, /*y*/ 35, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 3 */ { { /*x*/ 30, /*y*/ 35, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs12 = { LPARRAY(s_gs12_groups), s_gs12_links }; /* 0x81ee214 */ diff --git a/src/data/ground/ground_data_d01p01_station.h b/src/data/ground/ground_data_d01p01_station.h new file mode 100644 index 000000000..567f47fa2 --- /dev/null +++ b/src/data/ground/ground_data_d01p01_station.h @@ -0,0 +1,833 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs178_g0_s0_station_sref_script[] = { /* 0x822c248 */ + DEBUGINFO, + SELECT_MAP(178), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs178_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs178_g0_s0_station_sref_script }; /* 0x822c2b4 */ + +static const struct ScriptCommand s_gs178_g1_s0_station_sref_script[] = { /* 0x822c2c0 - PART 1 0:04:05-0:06:38 */ + DEBUGINFO, + { 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL }, + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(178), + WAIT(100), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Where am I?") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Am I dreaming this?") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+I feel a pleasant breeze.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+...I hear a voice from somewhere...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+I wonder who it is?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ...") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ......") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ............") }, + MSG_VAR(2, PARTNER_TALK_KIND, -1), + VARIANT(/* == */ 1, _(" ...Hey.")), + VARIANT(/* == */ 1, _(" ...Hey, wake up.#W\nWake up already.")), + VARIANT_DEFAULT(_(" ...Excuse me.")), + VARIANT_DEFAULT(_(" ...Please, wake up.#W\nCome on, wake up.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + BGM_FADEIN(60, 101), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x39, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(30), + { 0x02, 0x00, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs178_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs178_g1_s0_station_sref_script }; /* 0x822c5d8 */ + + + +static const struct ScriptCommand s_gs178_g1_s0_lives0_dlg0[] = { /* 0x822c5e4 - PART 1 0:04:23-0:06:38 - Player script - why/how is $n3 set here? */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Oh, good! You finally came to!")), + VARIANT_DEFAULT(_(" You're finally awake! Great!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Wh-where is this...?)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(468), + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + WAIT(20), + FANFARE_PLAY2(468), + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + WAIT(20), + FANFARE_PLAY2(468), + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + WAIT(50), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" You were passed out here.\nI'm glad you woke up!")), + VARIANT(/* == */ 3, _(" I found you passed out here.\nI'm glad you came to!")), + VARIANT_DEFAULT(_(" You were passed out here.\nI'm glad to see you awake!")), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I'm $n1.\nGlad to meet you!")), + VARIANT(/* == */ 3, _(" I'm $n1.\nHappy to meet you!")), + VARIANT_DEFAULT(_(" I'm $n1.\nGlad to meet you!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...So, who might you be?#W\nI don't think I've seen your face around\nhere.")), + VARIANT(/* == */ 3, _(" ...And, you are?#W\nI don't think I've seen you around before.")), + VARIANT_DEFAULT(_(" ...And, you are?#W\nI've never seen you around before.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hah?#W\nYou say you're a human?")), + VARIANT(/* == */ 1, _(" But any which way I look\nat you, you're a normal $m0.")), + VARIANT(/* == */ 3, _(" Huh?#W\nDid you say human?")), + VARIANT(/* == */ 3, _(" But you look like a normal\n$m0 from every angle?")), + VARIANT_DEFAULT(_(" Huh?#W\nYou're a human?")), + VARIANT_DEFAULT(_(" But you look like a normal\n$m0 in every way.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(469), + CALL_SCRIPT(QUESTION_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + FANFARE_STOP2(469), + WAIT(40), + FANFARE_PLAY2(482), + CALL_SCRIPT(SHOCK_FUNC), + { 0xe2, 0x00, 0x01e2, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0000, 0x0000000c, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(It... It's true...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(I have turned into\na $m0!)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x2e, 0x15, 0x0000, 0x00000004, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...But why?\nI don't remember anything...)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" You're...#W\nSome kind of weird...")), + VARIANT(/* == */ 1, _(" So, what's your name?\nWhat do you call yourself?")), + VARIANT_DEFAULT(_(" Um...#W\nYou're kind of weird...")), + VARIANT_DEFAULT(_(" Your name?#W\nWhat's your name?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(My name...?#W\nThat's right, my name is...)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x3b, 0x16, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3d, 0x00, 0x0000, 0x00000001, 0x00000000, NULL }, + WAIT(20), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Uh-huh... $n0.#W\nThat's...")), + VARIANT(/* == */ 3, _(" OK.\nYou're named $n0?#W\nWell...")), + VARIANT_DEFAULT(_(" Oh.\n$n0's your name?#W\nWell...")), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000a, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" A funny name!")), + VARIANT(/* == */ 3, _(" Isn't it a funny name!")), + VARIANT_DEFAULT(_(" It's a funny name!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x06, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(15), + FANFARE_PLAY2(470), + CALL_SCRIPT(SWEAT_FUNC), + WAIT(45), + { 0x91, 0x06, 0x000a, 0x00000002, 0x00000000, NULL }, + BGM_FADEOUT(60), + WAIT(60), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Somebody!\nPlease! Help me!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(466), + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hah?\nI hear shouting over there...")), + VARIANT_DEFAULT(_(" Huh? I hear shouts from\nover there...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_LIVES(-1, 1), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(20), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" What's the matter?")), + VARIANT_DEFAULT(_(" What's wrong?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + BGM_SWITCH(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's horrible!\nMy $n3 fell into a cavern!\nMy poor baby!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(12), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" A huge fissure opened in\nthe ground, and my $n3 fell in!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" He's too young to crawl out\nby himself!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" When I went to get my\nbaby, Pokémon suddenly attacked me!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh? You were attacked?#W\nBy other Pokémon?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They must be enraged by\nthe fissure...and out of control!\nThat's what I think.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm not strong enough to\nfend off those wild Pokémon...#W\nWhat will become of my baby?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh! What am I to do?!\nOh dear, oh dear...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" We can't just do nothing!\nLet's go help this kid!")), + VARIANT_DEFAULT(_(" This sounds bad!\nWe have to go help!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x6b, 0x00, 0x0180, 0x00000008, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0180, 0x00000009, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0180, 0x0000000a, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + +static const struct ScriptCommand s_gs178_g1_s0_lives1_dlg0[] = { /* 0x822d950 - PART 1 0:04:23-0:06:38 - Partner script */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x01, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + WAIT(1), + FANFARE_STOP2(465), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(469), + CALL_SCRIPT(QUESTION_FUNC), + WAIT(5), + FANFARE_STOP2(469), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(470), + CALL_SCRIPT(SWEAT_FUNC), + { 0xe2, 0x00, 0x01d6, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + WAIT(5), + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(466), + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0xe2, 0x00, 0x01d2, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(463), + CALL_SCRIPT(SHOCK_FUNC), + { 0xe2, 0x00, 0x01cf, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0180, 0x0000000b, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0180, 0x0000000c, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0180, 0x0000000d, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs178_g1_s1_lives0_dlg0[] = { /* 0x822dc90 - PART 1 0:05:55-0:06:38 - Butterfree */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000036, 0x00000000, NULL }, + FANFARE_PLAY2(450), + { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000003, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000006, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000007, 0x00000000, NULL }, + { 0x91, 0x06, 0x0001, 0x00000000, 0x00000000, NULL }, + FANFARE_STOP2(450), + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x8b, 0x1e, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x1e, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x1e, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x1e, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(0), +}; + +static const struct ScriptCommand s_gs178_g2_s0_station_sref_script[] = { /* 0x822de50 - PART 1 0:11:37-0:12:15 - After Tiny Woods death */ + DEBUGINFO, + { 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL }, + BGM_STOP, + WAIT(60), + SELECT_MAP(178), + { 0x2d, 0x09, 0x0000, 0x00000035, 0x00000000, NULL }, + { 0x2e, 0x0b, 0x0000, -0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" ...Hello?#W\nHello!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x39, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x02, 0x00, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs178_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs178_g2_s0_station_sref_script }; /* 0x822df54 */ + + +static const struct ScriptCommand s_gs178_g2_s0_lives0_dlg0[] = { /* 0x822df60 - PART 1 0:11:39-0:12:15 - Player */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000036, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(1), + CALL_SCRIPT(WAKEUP_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0002, 0x00000002, 0x00000000, NULL }, + FANFARE_PLAY2(468), + WAIT(1), + { 0x91, 0x08, 0x0001, 0x00000006, 0x00000000, NULL }, + FANFARE_PLAY2(468), + WAIT(1), + { 0x91, 0x08, 0x0002, 0x00000002, 0x00000000, NULL }, + FANFARE_PLAY2(468), + WAIT(50), + FANFARE_STOP2(468), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh, my goodness!\nI'm so glad you came to!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wh-where...?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" In the forest.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You two ran off to rescue\nmy poor $n3, but...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...We ended up back here...")), + VARIANT_DEFAULT(_(" ...We somehow ended up\nback here...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I guess if we're defeated\nin there, we don't get to advance.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's a mysterious dungeon,\nI guess.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ohh!\nIs my poor $n3 safe?!\nOh dear, oh dear...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + WAIT(30), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" That's right!\nWe have to help that kid, and now!")), + VARIANT_DEFAULT(_(" That's right!\nWe've got to hurry!")), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Let's roll, $n0!")), + VARIANT_DEFAULT(_(" $n0! Let's go!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x6b, 0x00, 0x0180, 0x00000008, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0180, 0x00000009, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0180, 0x0000000a, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs178_g2_s0_lives1_dlg0[] = { /* 0x822e5fc - PART 1 0:11:39-0:12:15 - Partner */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0001, 0x00000006, 0x00000000, NULL }, + FANFARE_PLAY2(468), + WAIT(1), + { 0x91, 0x08, 0x0002, 0x00000002, 0x00000000, NULL }, + FANFARE_PLAY2(468), + WAIT(1), + { 0x91, 0x08, 0x0001, 0x00000006, 0x00000000, NULL }, + FANFARE_PLAY2(468), + WAIT(50), + FANFARE_STOP2(468), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0001, 0x00000004, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(469), + CALL_SCRIPT(QUESTION_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0xe2, 0x00, 0x01d5, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0002, 0x00000006, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0180, 0x0000000b, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0180, 0x0000000c, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0180, 0x0000000d, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs178_g2_s0_lives2_dlg0[] = { /* 0x822e89c - PART 1 0:11:39-0:12:15 - Butterfree */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x8b, 0x1e, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x1e, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x1e, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x1e, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(0), +}; + +static const struct ScriptCommand s_gs178_g3_s0_station_sref_script[] = { /* 0x822e95c - PART 1 0:17:17-0:18:51 - Post-Tiny Woods cutscene */ + DEBUGINFO, + { 0x3b, 0x39, 0x0004, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(178), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(103), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(30), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + WAIT(60), + RET, +}; + +static const struct ScriptRef s_gs178_g3_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs178_g3_s0_station_sref_script }; /* 0x822ea0c */ + +static const struct ScriptCommand s_gs178_g3_s0_lives0_dlg0[] = { /* 0x822ea18 - PART 1 0:17:17-0:18:51 - Player */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" My baby's safe...#W\nI'm sorry, I don't know how I could ever\nthank you properly...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Aww, don't worry, lady.#W\nThere have been a lot of quakes and\nfissures lately. It's dangerous.")), + VARIANT(/* == */ 1, _(" I'm glad your little guy's\nnot hurt, honestly.")), + VARIANT_DEFAULT(_(" Oh, that's OK!#W\nIt has been dangerous lately with sudden\nquakes and fissures like that one.")), + VARIANT_DEFAULT(_(" It was great to find your\nlittle boy unharmed.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Please, may I have your\nnames at least?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I'm $n1.")), + VARIANT(/* == */ 3, _(" I'm $n1.")), + VARIANT_DEFAULT(_(" I'm $n1.")), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And this is $n0.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0003, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ............#W\nCool...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(1), + FANFARE_PLAY2(470), + CALL_SCRIPT(SWEAT_FUNC), + WAIT(30), + FANFARE_STOP2(470), + { 0x2e, 0x15, 0x0000, 0x00000004, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(He's, uh...#W Staring at me adoringly...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Those sparkly eyes...\nIt's a little embarrassing...)") }, + { 0x2e, 0x15, 0x0000, 0x00000001, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(But, this doesn't feel bad, either.\nIt's like I'm a hero.)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Helping Pokémon in trouble might be\na good experience.)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Thank you!\n$n1 and $n0!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I know it isn't really\nenough, but this is a token of our\nthanks. Please accept it.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x3c, 0x2c, 0x0000, 0x00000037, 0x00000000, NULL }, + WAIT(10), + { 0x3c, 0x2c, 0x0000, 0x00000042, 0x00000001, NULL }, + WAIT(10), + { 0x3c, 0x2c, 0x0000, 0x0000003f, 0x00000001, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Thank you so much.\nGood-bye.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, thanks for helping me\nout.")), + VARIANT_DEFAULT(_(" Thank you for helping!")), + { 0x91, 0x08, 0x0001, 0x00000002, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" You're pretty tough.\nI respect that.")), + VARIANT(/* == */ 1, _(" So, uh...\nWhat are you going to do?\nAfter this, I mean.")), + VARIANT_DEFAULT(_(" You're very tough.\nI was sure impressed.")), + VARIANT_DEFAULT(_(" So...\nWhat are you going to do?\nDo you have any plans?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0000, 0x00000004, 0x00000000, NULL }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(............)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...#WSay, $n0.#W\nIf you don't have anywhere to stay,\nwhy don't you come with me?")), + VARIANT_DEFAULT(_(" ...#WListen, $n0.#W\nIf you don't have a place to stay, you\nshould come with me.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000010, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + +static const struct ScriptCommand s_gs178_g3_s0_lives1_dlg0[] = { /* 0x822f68c - PART 1 0:17:17-0:18:51 - Partner */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x6b, 0x00, 0x0100, 0x00000011, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs178_g3_s0_lives2_dlg0[] = { /* 0x822f84c - PART 1 0:17:17-0:18:34 - Butterfree */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0080, 0x00000000, 0x00000008, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0080, 0x00000000, -0x00000008, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x95, 0x08, 0x000a, 0x0000000e, 0x00000000, NULL }, + FANFARE_PLAY2(450), + { 0x6b, 0x00, 0x0100, 0x0000000e, 0x00000000, NULL }, + FANFARE_STOP2(450), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs178_g3_s0_lives3_dlg0[] = { /* 0x822f94c - PART 1 0:17:17-0:18:34 - Caterpie */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(457), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + WAIT(20), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x95, 0x08, 0x000a, 0x0000000f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000000f, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct GroundLivesData s_gs178_g1_s0_lives[] = { /* 0x822fa0c */ + /* 0 */ { 0, 0, 0, 0, { 25, 24, 0, CPOS_HALFTILE }, { + [0] = s_gs178_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 6, 0, 0, { 29, 24, 0, CPOS_HALFTILE }, { + [0] = s_gs178_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs178_g1_s1_lives[] = { /* 0x822fa3c */ + /* 0 */ { 53, 2, 0, 0, { 9, 23, 0, CPOS_HALFTILE }, { + [0] = s_gs178_g1_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs178_g2_s0_lives[] = { /* 0x822fa54 */ + /* 0 */ { 0, 0, 0, 0, { 25, 24, 0, CPOS_HALFTILE }, { + [0] = s_gs178_g2_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 0, 0, 0, { 29, 24, 0, CPOS_HALFTILE }, { + [0] = s_gs178_g2_s0_lives1_dlg0, + } }, + /* 2 */ { 53, 0, 0, 0, { 27, 21, 0, CPOS_HALFTILE }, { + [0] = s_gs178_g2_s0_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs178_g3_s0_lives[] = { /* 0x822fa9c */ + /* 0 */ { 0, 4, 0, 0, { 25, 24, 0, CPOS_HALFTILE }, { + [0] = s_gs178_g3_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 29, 24, 0, CPOS_HALFTILE }, { + [0] = s_gs178_g3_s0_lives1_dlg0, + } }, + /* 2 */ { 53, 0, 0, 0, { 29, 21, 0, CPOS_HALFTILE }, { + [0] = s_gs178_g3_s0_lives2_dlg0, + } }, + /* 3 */ { 54, 0, 0, 0, { 25, 21, 0, CPOS_HALFTILE }, { + [0] = s_gs178_g3_s0_lives3_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs178_g1_s0_effs[] = { /* 0x822fafc */ + /* 0 */ { 0, 0, 1, 1, { 27, 23, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs178_g2_s0_effs[] = { /* 0x822fb08 */ + /* 0 */ { 0, 0, 1, 1, { 27, 23, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs178_g3_s0_effs[] = { /* 0x822fb14 */ + /* 0 */ { 0, 0, 1, 1, { 27, 23, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x822fb20 */ + &s_gs178_g0_s0_station_sref, + &s_gs178_g1_s0_station_sref, + &s_gs178_g2_s0_station_sref, + &s_gs178_g3_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs178_g0_sectors[] = { /* 0x822fb30 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs178_g1_sectors[] = { /* 0x822fb58 */ + { LPARRAY(s_gs178_g1_s0_lives), 0,NULL, LPARRAY(s_gs178_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, + { LPARRAY(s_gs178_g1_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs178_g2_sectors[] = { /* 0x822fba8 */ + { LPARRAY(s_gs178_g2_s0_lives), 0,NULL, LPARRAY(s_gs178_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptSector s_gs178_g3_sectors[] = { /* 0x822fbd0 */ + { LPARRAY(s_gs178_g3_s0_lives), 0,NULL, LPARRAY(s_gs178_g3_s0_effs), 0,NULL, 1,&sStationScripts[3], }, +}; + +static const struct GroundScriptGroup s_gs178_groups[] = { /* 0x822fbf8 */ + { LPARRAY(s_gs178_g0_sectors) }, + { LPARRAY(s_gs178_g1_sectors) }, + { LPARRAY(s_gs178_g2_sectors) }, + { LPARRAY(s_gs178_g3_sectors) }, +}; + +static const struct GroundLink s_gs178_links[] = { /* 0x822fc18 */ + /* link 0 */ { { /*x*/ 12, /*y*/ 20, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 1 */ { { /*x*/ 14, /*y*/ 20, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 2 */ { { /*x*/ 16, /*y*/ 22, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 3 */ { { /*x*/ 18, /*y*/ 22, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 4 */ { { /*x*/ 21, /*y*/ 19, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 5 */ { { /*x*/ 23, /*y*/ 19, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 6 */ { { /*x*/ 25, /*y*/ 21, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 7 */ { { /*x*/ 27, /*y*/ 21, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 8 */ { { /*x*/ 20, /*y*/ 24, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 9 */ { { /*x*/ 13, /*y*/ 24, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 10 */ { { /*x*/ 6, /*y*/ 24, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 11 */ { { /*x*/ 23, /*y*/ 24, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 12 */ { { /*x*/ 16, /*y*/ 24, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 13 */ { { /*x*/ 9, /*y*/ 24, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 14 */ { { /*x*/ 52, /*y*/ 21, /*flags*/ 0, CPOS_HALFTILE|CPOS_CURRENT }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 15 */ { { /*x*/ 49, /*y*/ 21, /*flags*/ 0, CPOS_HALFTILE|CPOS_CURRENT }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 16 */ { { /*x*/ 49, /*y*/ 24, /*flags*/ 0, CPOS_HALFTILE|CPOS_CURRENT }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 17 */ { { /*x*/ 52, /*y*/ 24, /*flags*/ 0, CPOS_HALFTILE|CPOS_CURRENT }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs178 = { LPARRAY(s_gs178_groups), s_gs178_links }; /* 0x822fca8 */ diff --git a/src/data/ground/ground_data_d01p02_station.h b/src/data/ground/ground_data_d01p02_station.h new file mode 100644 index 000000000..801df9aa5 --- /dev/null +++ b/src/data/ground/ground_data_d01p02_station.h @@ -0,0 +1,147 @@ + + + + + + + + + + +static const struct ScriptCommand s_gs179_g0_s0_station_sref_script[] = { /* 0x822fcbc */ + DEBUGINFO, + SELECT_MAP(179), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs179_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs179_g0_s0_station_sref_script }; /* 0x822fd28 */ + +static const struct ScriptCommand s_gs179_g1_s0_station_sref_script[] = { /* 0x822fd34 - PART 1 0:16:37-0:17:16 - Tiny Woods end room */ + DEBUGINFO, + SELECT_MAP(179), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(114), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs179_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs179_g1_s0_station_sref_script }; /* 0x822fdc4 */ + +static const struct ScriptCommand s_gs179_g1_s0_lives0_dlg0[] = { /* 0x822fdd0 - PART 1 0:16:37-0:17:16 - Player */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000042, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Waaaaah...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Mommy...\nWhere are you...? Sniffle...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We came to rescue you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Huh?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Your mom's waiting.\nLet's get you out!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" OK.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + +static const struct ScriptCommand s_gs179_g1_s0_lives1_dlg0[] = { /* 0x82300a8 - PART 1 0:16:37-0:17:16 - Partner */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs179_g1_s0_lives2_dlg0[] = { /* 0x8230108 - PART 1 0:16:37-0:17:16 - Caterpie */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000003e, 0x00000000, NULL }, + FANFARE_PLAY2(457), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe2, 0x00, 0x01c9, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs179_g1_s0_lives[] = { /* 0x8230218 */ + /* 0 */ { 0, 4, 0, 0, { 20, 34, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs179_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 24, 34, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs179_g1_s0_lives1_dlg0, + } }, + /* 2 */ { 54, 4, 0, 0, { 22, 18, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs179_g1_s0_lives2_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs179_g1_s0_effs[] = { /* 0x8230260 */ + /* 0 */ { 0, 0, 1, 1, { 22, 21, CPOS_HALFTILE, 0 }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x823026c */ + &s_gs179_g0_s0_station_sref, + &s_gs179_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs179_g0_sectors[] = { /* 0x8230274 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs179_g1_sectors[] = { /* 0x823029c */ + { LPARRAY(s_gs179_g1_s0_lives), 0,NULL, LPARRAY(s_gs179_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs179_groups[] = { /* 0x82302c4 */ + { LPARRAY(s_gs179_g0_sectors) }, + { LPARRAY(s_gs179_g1_sectors) }, +}; + +static const struct GroundLink s_gs179_links[] = { /* 0x82302d4 */ + /* link 0 */ { { /*x*/ 20, /*y*/ 23, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 24, /*y*/ 23, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs179 = { LPARRAY(s_gs179_groups), s_gs179_links }; /* 0x82302e4 */ diff --git a/src/data/ground/ground_data_d02p01_station.h b/src/data/ground/ground_data_d02p01_station.h new file mode 100644 index 000000000..0cadb808a --- /dev/null +++ b/src/data/ground/ground_data_d02p01_station.h @@ -0,0 +1,523 @@ + + + + + + + + + + + + +static const struct ScriptCommand s_gs180_g0_s0_station_sref_script[] = { /* 0x82302f8 */ + DEBUGINFO, + SELECT_MAP(180), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs180_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs180_g0_s0_station_sref_script }; /* 0x8230364 */ + +static const struct ScriptCommand s_gs180_g1_s0_station_sref_script[] = { /* 0x8230370 */ + DEBUGINFO, + SELECT_MAP(180), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(14), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x02, 0x00, 0x0000, 0x00000001, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs180_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs180_g1_s0_station_sref_script }; /* 0x82303f0 */ + +static const struct ScriptCommand s_gs180_g1_s0_eff0_script[] = { /* 0x82303fc */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs180_g1_s0_lives0_dlg0[] = { /* 0x823047c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x0000, 0x00000064, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000064, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x0a, 0x0000, 0x00000001, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" OH, YOU ARE HERE.\nBZBZBZZ!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" MY FRIENDS ARE IN THIS\nCAVERN. BZBZBZZ.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" MY FRIENDS SHOULD BE\nON B$d0F. PLEASE HELP THEM!\nBZBZBZZZT!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x002f, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0099, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs180_g1_s0_lives1_dlg0[] = { /* 0x8230758 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x0000, 0x00000064, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000064, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x002f, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(15), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + WAIT(15), + { 0x6b, 0x00, 0x0099, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs180_g1_s0_lives2_dlg0[] = { /* 0x82308a8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0080, -0x00000010, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000041, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs180_g1_s0_lives3_dlg0[] = { /* 0x8230948 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0080, 0x00000010, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000040, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs180_g2_s0_station_sref_script[] = { /* 0x82309d8 */ + DEBUGINFO, + SELECT_MAP(180), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(14), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x02, 0x00, 0x0000, 0x00000001, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs180_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs180_g2_s0_station_sref_script }; /* 0x8230a58 */ + +static const struct ScriptCommand s_gs180_g2_s0_eff0_script[] = { /* 0x8230a64 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs180_g2_s0_lives0_dlg0[] = { /* 0x8230ae4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x0000003c, 0x00000000, NULL }, + { 0x59, 0x00, 0x0000, 0x00000064, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000064, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The $n2 are in\nthere somewhere.") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Let's give it our best\nand rescue them $n0!")), + VARIANT_DEFAULT(_(" Let's do our best to rescue\nthem, $n0!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0099, 0x00000001, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs180_g2_s0_lives1_dlg0[] = { /* 0x8230d64 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x0000, 0x00000064, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000064, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + WAIT(15), + { 0x6b, 0x00, 0x0099, 0x00000001, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs180_g2_s0_lives2_dlg0[] = { /* 0x8230e64 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x14, 0x0002, 0x00000003, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs180_g2_s0_lives3_dlg0[] = { /* 0x8230ef4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x14, 0x0001, 0x00000005, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs180_g3_s0_station_sref_script[] = { /* 0x8230f74 */ + DEBUGINFO, + SELECT_MAP(180), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(103), + WAIT(30), + { 0x27, 0x01, 0x0001, 0x0000003c, 0x00ffffff, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs180_g3_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs180_g3_s0_station_sref_script }; /* 0x8231014 */ + +static const struct ScriptCommand s_gs180_g3_s0_lives0_dlg0[] = { /* 0x8231020 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0x2e, 0x03, 0x0003, 0x00000001, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0004, 0x00000001, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0005, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" OUR BODIES SEPARATED.\nBZBZBZZ. REJOICE! BZBZBZZT!") }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" YAY! BZBZBZZT!") }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" YAY! BZBZBZZT!") }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" BE THANKFUL, YOU TWO.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" YOU ARE OUR HERO.\nTHANK YOU. BZBZBZZ!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x3c, 0x2b, 0x0000, 0x00000003, 0x00000001, NULL }, + { 0x3c, 0x2c, 0x0000, 0x0000003a, 0x00000001, NULL }, + { 0x3c, 0x2c, 0x0000, 0x0000003f, 0x00000001, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + +static const struct ScriptCommand s_gs180_g3_s0_lives1_dlg0[] = { /* 0x8231478 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0001, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs180_g3_s0_lives2_dlg0[] = { /* 0x8231518 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000003, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs180_g3_s0_lives3_dlg0[] = { /* 0x82315e8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000003, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs180_g3_s0_lives4_dlg0[] = { /* 0x8231718 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs180_g3_s0_lives5_dlg0[] = { /* 0x82318d8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs180_g1_s0_lives[] = { /* 0x82319f8 */ + /* 0 */ { 0, 4, 0, 0, { 23, 19, 0, CPOS_HALFTILE }, { + [0] = s_gs180_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 27, 19, 0, CPOS_HALFTILE }, { + [0] = s_gs180_g1_s0_lives1_dlg0, + } }, + /* 2 */ { 64, 4, 0, 0, { 23, 16, 0, CPOS_HALFTILE }, { + [0] = s_gs180_g1_s0_lives2_dlg0, + } }, + /* 3 */ { 65, 4, 0, 0, { 27, 16, 0, CPOS_HALFTILE }, { + [0] = s_gs180_g1_s0_lives3_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs180_g2_s0_lives[] = { /* 0x8231a58 */ + /* 0 */ { 0, 4, 0, 0, { 23, 19, 0, CPOS_HALFTILE }, { + [0] = s_gs180_g2_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 27, 19, 0, CPOS_HALFTILE }, { + [0] = s_gs180_g2_s0_lives1_dlg0, + } }, + /* 2 */ { 64, 4, 0, 0, { 21, 16, 0, CPOS_HALFTILE }, { + [0] = s_gs180_g2_s0_lives2_dlg0, + } }, + /* 3 */ { 65, 4, 0, 0, { 29, 16, 0, CPOS_HALFTILE }, { + [0] = s_gs180_g2_s0_lives3_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs180_g3_s0_lives[] = { /* 0x8231ab8 */ + /* 0 */ { 0, 4, 0, 0, { 23, 20, 0, CPOS_HALFTILE }, { + [0] = s_gs180_g3_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 27, 20, 0, CPOS_HALFTILE }, { + [0] = s_gs180_g3_s0_lives1_dlg0, + } }, + /* 2 */ { 64, 0, 0, 0, { 26, 15, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs180_g3_s0_lives2_dlg0, + } }, + /* 3 */ { 65, 0, 0, 0, { 29, 17, 0, CPOS_HALFTILE }, { + [0] = s_gs180_g3_s0_lives3_dlg0, + } }, + /* 4 */ { 61, 0, 0, 0, { 23, 15, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs180_g3_s0_lives4_dlg0, + } }, + /* 5 */ { 62, 0, 0, 0, { 21, 17, 0, CPOS_HALFTILE }, { + [0] = s_gs180_g3_s0_lives5_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs180_g1_s0_effs[] = { /* 0x8231b48 */ + /* 0 */ { 0, 0, 1, 1, { 25, 18, 0, CPOS_HALFTILE }, s_gs180_g1_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs180_g2_s0_effs[] = { /* 0x8231b54 */ + /* 0 */ { 0, 0, 1, 1, { 25, 18, 0, CPOS_HALFTILE }, s_gs180_g2_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs180_g3_s0_effs[] = { /* 0x8231b60 */ + /* 0 */ { 0, 0, 1, 1, { 25, 18, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8231b6c */ + &s_gs180_g0_s0_station_sref, + &s_gs180_g1_s0_station_sref, + &s_gs180_g2_s0_station_sref, + &s_gs180_g3_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs180_g0_sectors[] = { /* 0x8231b7c */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs180_g1_sectors[] = { /* 0x8231ba4 */ + { LPARRAY(s_gs180_g1_s0_lives), 0,NULL, LPARRAY(s_gs180_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs180_g2_sectors[] = { /* 0x8231bcc */ + { LPARRAY(s_gs180_g2_s0_lives), 0,NULL, LPARRAY(s_gs180_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptSector s_gs180_g3_sectors[] = { /* 0x8231bf4 */ + { LPARRAY(s_gs180_g3_s0_lives), 0,NULL, LPARRAY(s_gs180_g3_s0_effs), 0,NULL, 1,&sStationScripts[3], }, +}; + +static const struct GroundScriptGroup s_gs180_groups[] = { /* 0x8231c1c */ + { LPARRAY(s_gs180_g0_sectors) }, + { LPARRAY(s_gs180_g1_sectors) }, + { LPARRAY(s_gs180_g2_sectors) }, + { LPARRAY(s_gs180_g3_sectors) }, +}; + +static const struct GroundLink s_gs180_links[] = { /* 0x8231c3c */ + /* link 0 */ { { /*x*/ 24, /*y*/ 10, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 1 */ { { /*x*/ 24, /*y*/ 10, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 2 */ { { /*x*/ 18, /*y*/ 33, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 3 */ { { /*x*/ 31, /*y*/ 33, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs180 = { LPARRAY(s_gs180_groups), s_gs180_links }; /* 0x8231c5c */ diff --git a/src/data/ground/ground_data_d02p02_station.h b/src/data/ground/ground_data_d02p02_station.h new file mode 100644 index 000000000..83f2362b4 --- /dev/null +++ b/src/data/ground/ground_data_d02p02_station.h @@ -0,0 +1,128 @@ + + + + + + + + + + + + +static const struct ScriptCommand s_gs181_g0_s0_station_sref_script[] = { /* 0x8231c70 */ + DEBUGINFO, + SELECT_MAP(181), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs181_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs181_g0_s0_station_sref_script }; /* 0x8231cdc */ + +static const struct ScriptCommand s_gs181_g1_s0_station_sref_script[] = { /* 0x8231ce8 */ + DEBUGINFO, + SELECT_MAP(181), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(114), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(120), + { 0x28, 0x01, 0x0001, 0x0000003c, 0x00ffffff, NULL }, + RET, +}; + +static const struct ScriptRef s_gs181_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs181_g1_s0_station_sref_script }; /* 0x8231d78 */ + +static const struct ScriptCommand s_gs181_g1_s0_lives0_dlg0[] = { /* 0x8231d84 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Oh, hey, there they are.\nLet's get them out.")), + VARIANT_DEFAULT(_(" Oh, there they are!\nLet's get them out safely.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x6b, 0x00, 0x00cc, 0x00000001, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs181_g1_s0_lives1_dlg0[] = { /* 0x8231f0c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x00cc, 0x00000003, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs181_g1_s0_lives2_dlg0[] = { /* 0x8231f9c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs181_g1_s0_lives3_dlg0[] = { /* 0x8231fdc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs181_g1_s0_lives[] = { /* 0x823201c */ + /* 0 */ { 0, 4, 0, 0, { 20, 34, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs181_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 24, 34, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs181_g1_s0_lives1_dlg0, + } }, + /* 2 */ { 61, 7, 0, 0, { 22, 17, 0, CPOS_HALFTILE }, { + [0] = s_gs181_g1_s0_lives2_dlg0, + } }, + /* 3 */ { 62, 1, 0, 0, { 23, 17, 0, CPOS_HALFTILE }, { + [0] = s_gs181_g1_s0_lives3_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs181_g1_s0_effs[] = { /* 0x823207c */ + /* 0 */ { 0, 0, 1, 1, { 22, 20, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8232088 */ + &s_gs181_g0_s0_station_sref, + &s_gs181_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs181_g0_sectors[] = { /* 0x8232090 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs181_g1_sectors[] = { /* 0x82320b8 */ + { LPARRAY(s_gs181_g1_s0_lives), 0,NULL, LPARRAY(s_gs181_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs181_groups[] = { /* 0x82320e0 */ + { LPARRAY(s_gs181_g0_sectors) }, + { LPARRAY(s_gs181_g1_sectors) }, +}; + +static const struct GroundLink s_gs181_links[] = { /* 0x82320f0 */ + /* link 0 */ { { /*x*/ 20, /*y*/ 23, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 20, /*y*/ 19, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 2 */ { { /*x*/ 24, /*y*/ 23, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 3 */ { { /*x*/ 24, /*y*/ 19, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs181 = { LPARRAY(s_gs181_groups), s_gs181_links }; /* 0x8232110 */ diff --git a/src/data/ground/ground_data_d03p01_station.h b/src/data/ground/ground_data_d03p01_station.h new file mode 100644 index 000000000..e3ca1a42b --- /dev/null +++ b/src/data/ground/ground_data_d03p01_station.h @@ -0,0 +1,328 @@ + + + + + + + + + + +static const struct ScriptCommand s_gs182_g0_s0_station_sref_script[] = { /* 0x8232124 */ + DEBUGINFO, + SELECT_MAP(182), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs182_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs182_g0_s0_station_sref_script }; /* 0x8232190 */ + +static const struct ScriptCommand s_gs182_g1_s0_station_sref_script[] = { /* 0x823219c */ + DEBUGINFO, + SELECT_MAP(182), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(120), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs182_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs182_g1_s0_station_sref_script }; /* 0x823221c */ + +static const struct ScriptCommand s_gs182_g1_s0_lives0_dlg0[] = { /* 0x8232228 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000042, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000044, 0x00000000, NULL }, + { 0x59, 0x00, 0x0000, 0x00000064, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000064, NULL }, + WAIT(15), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" So, this is it...\n#CDMt. Steel#R...")), + VARIANT(/* == */ 1, _(" $n3's been taken\nto the peak here...")), + VARIANT_DEFAULT(_(" Here we are...\n#CDMt. Steel#R...")), + VARIANT_DEFAULT(_(" So, $n3 was\nwhisked to its peak...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" That's right!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 1), + WAIT(15), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + WAIT(60), + { 0x2d, 0x0a, 0x0000, 0x00000002, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The peak is $d0F!\nThank you for helping! Farewell!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(470), + CALL_SCRIPT(SWEAT_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ......#W\nWell, I guess we go...")), + VARIANT_DEFAULT(_(" ......#W\nUh... Let's go.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(45), + { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x00b3, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + +static const struct ScriptCommand s_gs182_g1_s0_lives1_dlg0[] = { /* 0x82326cc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x0000, 0x00000064, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000064, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x00b3, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs182_g1_s1_lives0_dlg0[] = { /* 0x823282c */ + DEBUGINFO, + { 0x57, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(454), + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(486), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x57, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs182_g2_s0_station_sref_script[] = { /* 0x823290c */ + DEBUGINFO, + SELECT_MAP(182), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(120), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs182_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs182_g2_s0_station_sref_script }; /* 0x823297c */ + +static const struct ScriptCommand s_gs182_g2_s0_lives0_dlg0[] = { /* 0x8232988 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000042, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000044, 0x00000000, NULL }, + { 0x59, 0x00, 0x0000, 0x00000064, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000064, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" We'll take another shot at\n#CDMt. Steel#R.")), + VARIANT(/* == */ 1, _(" We'll rescue $n3\nno matter what it takes!")), + VARIANT_DEFAULT(_(" We have to make another\nattempt at #CDMt. Steel#R.")), + VARIANT_DEFAULT(_(" Whatever it takes,\nlet's rescue $n3!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" That's the spirit!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 1), + WAIT(15), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + WAIT(60), + { 0x2d, 0x0a, 0x0000, 0x00000002, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The peak is $d0F!\nThank you for helping! Farewell!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(470), + CALL_SCRIPT(SWEAT_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ......#W\nWell, here we go...")), + VARIANT_DEFAULT(_(" ......#W\nUh... Let's go.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(45), + { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x00b3, 0x00000001, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + +static const struct ScriptCommand s_gs182_g2_s0_lives1_dlg0[] = { /* 0x8232e30 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x0000, 0x00000064, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000064, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x00b3, 0x00000001, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs182_g2_s1_lives0_dlg0[] = { /* 0x8232fc0 */ + DEBUGINFO, + { 0x57, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(454), + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(486), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x57, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct GroundLivesData s_gs182_g1_s0_lives[] = { /* 0x82330a0 */ + /* 0 */ { 0, 2, 0, 0, { 20, 24, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs182_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 6, 0, 0, { 24, 24, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs182_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs182_g1_s1_lives[] = { /* 0x82330d0 */ + /* 0 */ { 66, 0, 0, 0, { 22, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs182_g1_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs182_g2_s0_lives[] = { /* 0x82330e8 */ + /* 0 */ { 0, 2, 0, 0, { 20, 24, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs182_g2_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 6, 0, 0, { 24, 24, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs182_g2_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs182_g2_s1_lives[] = { /* 0x8233118 */ + /* 0 */ { 66, 0, 0, 0, { 22, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs182_g2_s1_lives0_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs182_g1_s0_effs[] = { /* 0x8233130 */ + /* 0 */ { 0, 0, 1, 1, { 22, 23, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs182_g2_s0_effs[] = { /* 0x823313c */ + /* 0 */ { 0, 0, 1, 1, { 22, 23, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8233148 */ + &s_gs182_g0_s0_station_sref, + &s_gs182_g1_s0_station_sref, + &s_gs182_g2_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs182_g0_sectors[] = { /* 0x8233154 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs182_g1_sectors[] = { /* 0x823317c */ + { LPARRAY(s_gs182_g1_s0_lives), 0,NULL, LPARRAY(s_gs182_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, + { LPARRAY(s_gs182_g1_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs182_g2_sectors[] = { /* 0x82331cc */ + { LPARRAY(s_gs182_g2_s0_lives), 0,NULL, LPARRAY(s_gs182_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, + { LPARRAY(s_gs182_g2_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs182_groups[] = { /* 0x823321c */ + { LPARRAY(s_gs182_g0_sectors) }, + { LPARRAY(s_gs182_g1_sectors) }, + { LPARRAY(s_gs182_g2_sectors) }, +}; + +static const struct GroundLink s_gs182_links[] = { /* 0x8233234 */ + /* link 0 */ { { /*x*/ 22, /*y*/ 16, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 1 */ { { /*x*/ 22, /*y*/ 16, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs182 = { LPARRAY(s_gs182_groups), s_gs182_links }; /* 0x8233244 */ diff --git a/src/data/ground/ground_data_d03p02_station.h b/src/data/ground/ground_data_d03p02_station.h new file mode 100644 index 000000000..d22f473b0 --- /dev/null +++ b/src/data/ground/ground_data_d03p02_station.h @@ -0,0 +1,296 @@ + + + + + + + + + + + + + +static const struct ScriptCommand s_gs183_g0_s0_station_sref_script[] = { /* 0x8233258 */ + DEBUGINFO, + SELECT_MAP(183), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs183_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs183_g0_s0_station_sref_script }; /* 0x82332c4 */ + +static const struct ScriptCommand s_gs183_g1_s0_station_sref_script[] = { /* 0x82332d0 */ + DEBUGINFO, + SELECT_MAP(183), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(114), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs183_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs183_g1_s0_station_sref_script }; /* 0x8233350 */ + +static const struct ScriptCommand s_gs183_g1_s0_eff0_script[] = { /* 0x823335c */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x1c, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs183_g1_s0_lives0_dlg0[] = { /* 0x82333ec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0f, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Grr... I can't keep up!#W\nI'll flee for now!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000018, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey!\nWe sent $n3 packing!")), + VARIANT(/* == */ 1, _(" You're safe now.\nCome on down!")), + VARIANT_DEFAULT(_(" Hey there!\nWe chased $n3 off!")), + VARIANT_DEFAULT(_(" It's OK now.\nCome down over here.")), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I can't...\nI'm too scared to move...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" OK, no sweat.#W\nWe'll go to you. Just wait.")), + VARIANT_DEFAULT(_(" OK, no problem.#W\nWe'll come to you. Just wait.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...Whoa.") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Wow. This is some cliff...\nI can't see the bottom.")), + VARIANT_DEFAULT(_(" Sheesh! Look at this cliff...\nI can't see the bottom.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0, what'll\nwe do?\nWe can't get across this.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 1), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" BZBZBZZ!") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey! It's those $n4\nfrom that rescue!")), + VARIANT_DEFAULT(_(" Oh, hi!\nYou're the $n4 we saved!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0004, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" WE GOT WORD OF THIS.#W\nWE CAN RESCUE DIGLETT FROM THE\nSKY. BZBZBZZ!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" HOLD ON TO US TIGHT.\nBZBZBZZZ!") }, + { 0x2e, 0x0d, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0004, -0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" DON'T BE SCARED.\nWE WON'T MAKE THE MISTAKE OF\nZAPPING YOU. BZBZBZZT!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + +static const struct ScriptCommand s_gs183_g1_s0_lives1_dlg0[] = { /* 0x8233bec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000018, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0080, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0x62, 0x00, 0x0080, 0x00000000, 0x00000008, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0080, 0x00000000, -0x00000008, NULL }, + { 0x54, 0x00, 0x0028, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(463), + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs183_g1_s0_lives2_dlg0[] = { /* 0x8233d8c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs183_g1_s0_lives3_dlg0[] = { /* 0x8233e3c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(459), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000045, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs183_g1_s1_lives0_dlg0[] = { /* 0x8233eec */ + DEBUGINFO, + { 0x5b, 0x00, 0x0000, 0x00000002, 0x00000000, NULL }, + { 0x60, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(483), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0080, 0x00000004, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000044, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x004c, 0x00000000, -0x00000010, NULL }, + { 0x93, 0x04, 0x000a, 0x00000044, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs183_g1_s1_lives1_dlg0[] = { /* 0x823405c */ + DEBUGINFO, + { 0x5b, 0x00, 0x0000, 0x00000001, 0x00000000, NULL }, + { 0x60, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0080, 0x00000003, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000044, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x004c, 0x00000000, -0x00000010, NULL }, + { 0x93, 0x04, 0x000a, 0x00000044, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs183_g1_s0_lives[] = { /* 0x823418c */ + /* 0 */ { 0, 4, 0, 0, { 26, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs183_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 30, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs183_g1_s0_lives1_dlg0, + } }, + /* 2 */ { 68, 0, 0, 0, { 28, 26, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs183_g1_s0_lives2_dlg0, + } }, + /* 3 */ { 69, 0, 0, 0, { 28, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs183_g1_s0_lives3_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs183_g1_s1_lives[] = { /* 0x82341ec */ + /* 0 */ { 61, 0, 0, 0, { 27, 17, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs183_g1_s1_lives0_dlg0, + } }, + /* 1 */ { 62, 0, 0, 0, { 30, 17, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs183_g1_s1_lives1_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs183_g1_s0_effs[] = { /* 0x823421c */ + /* 0 */ { 0, 0, 1, 1, { 28, 39, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs183_g1_s0_eff0_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8234228 */ + &s_gs183_g0_s0_station_sref, + &s_gs183_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs183_g0_sectors[] = { /* 0x8234230 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs183_g1_sectors[] = { /* 0x8234258 */ + { LPARRAY(s_gs183_g1_s0_lives), 0,NULL, LPARRAY(s_gs183_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, + { LPARRAY(s_gs183_g1_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs183_groups[] = { /* 0x82342a8 */ + { LPARRAY(s_gs183_g0_sectors) }, + { LPARRAY(s_gs183_g1_sectors) }, +}; + +static const struct GroundLink s_gs183_links[] = { /* 0x82342b8 */ + /* link 0 */ { { /*x*/ 29, /*y*/ 36, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 1 */ { { /*x*/ 30, /*y*/ 32, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 2 */ { { /*x*/ 27, /*y*/ 32, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 3 */ { { /*x*/ 31, /*y*/ 28, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 4 */ { { /*x*/ 26, /*y*/ 28, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs183 = { LPARRAY(s_gs183_groups), s_gs183_links }; /* 0x82342e0 */ diff --git a/src/data/ground/ground_data_d04p01_station.h b/src/data/ground/ground_data_d04p01_station.h new file mode 100644 index 000000000..006cfe185 --- /dev/null +++ b/src/data/ground/ground_data_d04p01_station.h @@ -0,0 +1,183 @@ + + + + + + + + + + +static const struct ScriptCommand s_gs184_g0_s0_station_sref_script[] = { /* 0x82342f4 */ + DEBUGINFO, + SELECT_MAP(184), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs184_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs184_g0_s0_station_sref_script }; /* 0x8234360 */ + +static const struct ScriptCommand s_gs184_g1_s0_station_sref_script[] = { /* 0x823436c */ + DEBUGINFO, + SELECT_MAP(184), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(15), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x02, 0x00, 0x001e, 0x00000004, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs184_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs184_g1_s0_station_sref_script }; /* 0x82343ec */ + +static const struct ScriptCommand s_gs184_g1_s0_lives0_dlg0[] = { /* 0x82343f8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x0000005e, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x0000005b, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + WAIT(20), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" This is it.\n$n2 is lost in these woods.")), + VARIANT(/* == */ 1, _(" $n3's crew\nshould have a head start on us.")), + VARIANT(/* == */ 1, _(" We'd better hurry.")), + VARIANT(/* == */ 3, _(" This is it.\n$n2 is lost somewhere in these\nwoods.")), + VARIANT(/* == */ 3, _(" $n3's gang should\nalready be here.")), + VARIANT(/* == */ 3, _(" We ought to hurry.")), + VARIANT_DEFAULT(_(" This must be it.\n$n2 is lost somewhere in these\nwoods.")), + VARIANT_DEFAULT(_(" $n3's gang should\nbe in there already.")), + VARIANT_DEFAULT(_(" We need to hurry.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x00, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0180, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs184_g1_s0_lives1_dlg0[] = { /* 0x8234714 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0180, 0x00000001, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs184_g2_s0_station_sref_script[] = { /* 0x82347a4 */ + DEBUGINFO, + SELECT_MAP(184), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(15), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x02, 0x00, 0x001e, 0x00000004, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs184_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs184_g2_s0_station_sref_script }; /* 0x8234824 */ + +static const struct ScriptCommand s_gs184_g2_s0_lives0_dlg0[] = { /* 0x8234830 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x0000005b, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Let's move it, $n0!")), + VARIANT(/* == */ 1, _(" Even while we're dawdling\nhere, $n2's team...")), + VARIANT(/* == */ 1, _(" Hurry! Chop, chop!")), + VARIANT(/* == */ 3, _(" Let's hurry, $n0!")), + VARIANT(/* == */ 3, _(" While we're stuck\nback here, $n2's gang will be...")), + VARIANT(/* == */ 3, _(" We have to hurry!")), + VARIANT_DEFAULT(_(" Let's hustle, $n0!")), + VARIANT_DEFAULT(_(" We're still stuck back here\nwhile $n2's gang is...")), + VARIANT_DEFAULT(_(" Come on, hurry!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x00, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0180, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs184_g2_s0_lives1_dlg0[] = { /* 0x8234ae8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0180, 0x00000001, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs184_g1_s0_lives[] = { /* 0x8234b58 */ + /* 0 */ { 0, 4, 0, 0, { 26, 24, 0, CPOS_HALFTILE }, { + [0] = s_gs184_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 30, 24, 0, CPOS_HALFTILE }, { + [0] = s_gs184_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs184_g2_s0_lives[] = { /* 0x8234b88 */ + /* 0 */ { 0, 2, 0, 0, { 26, 24, 0, CPOS_HALFTILE }, { + [0] = s_gs184_g2_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 6, 0, 0, { 30, 24, 0, CPOS_HALFTILE }, { + [0] = s_gs184_g2_s0_lives1_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs184_g1_s0_effs[] = { /* 0x8234bb8 */ + /* 0 */ { 0, 0, 1, 1, { 28, 22, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs184_g2_s0_effs[] = { /* 0x8234bc4 */ + /* 0 */ { 0, 0, 1, 1, { 28, 22, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8234bd0 */ + &s_gs184_g0_s0_station_sref, + &s_gs184_g1_s0_station_sref, + &s_gs184_g2_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs184_g0_sectors[] = { /* 0x8234bdc */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs184_g1_sectors[] = { /* 0x8234c04 */ + { LPARRAY(s_gs184_g1_s0_lives), 0,NULL, LPARRAY(s_gs184_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs184_g2_sectors[] = { /* 0x8234c2c */ + { LPARRAY(s_gs184_g2_s0_lives), 0,NULL, LPARRAY(s_gs184_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptGroup s_gs184_groups[] = { /* 0x8234c54 */ + { LPARRAY(s_gs184_g0_sectors) }, + { LPARRAY(s_gs184_g1_sectors) }, + { LPARRAY(s_gs184_g2_sectors) }, +}; + +static const struct GroundLink s_gs184_links[] = { /* 0x8234c6c */ + /* link 0 */ { { /*x*/ 26, /*y*/ 9, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 1 */ { { /*x*/ 30, /*y*/ 9, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs184 = { LPARRAY(s_gs184_groups), s_gs184_links }; /* 0x8234c7c */ diff --git a/src/data/ground/ground_data_d04p02_station.h b/src/data/ground/ground_data_d04p02_station.h new file mode 100644 index 000000000..04534fe50 --- /dev/null +++ b/src/data/ground/ground_data_d04p02_station.h @@ -0,0 +1,281 @@ + + + + + + + + + + + + +static const struct ScriptCommand s_gs185_g0_s0_station_sref_script[] = { /* 0x8234c90 */ + DEBUGINFO, + SELECT_MAP(185), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs185_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs185_g0_s0_station_sref_script }; /* 0x8234cfc */ + +static const struct ScriptCommand s_gs185_g1_s0_station_sref_script[] = { /* 0x8234d08 */ + DEBUGINFO, + SELECT_MAP(185), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(114), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs185_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs185_g1_s0_station_sref_script }; /* 0x8234d88 */ + +static const struct ScriptCommand s_gs185_g1_s0_lives0_dlg0[] = { /* 0x8234d94 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x0000005e, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0003, 0x00000043, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Owowowow...#W\nYou'll pay for this!\nDon't you forget it!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(16), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0001, 0x00000009, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Well, those pests are gone.\nLet's find $n2.")), + VARIANT_DEFAULT(_(" No one should hold us back\nnow. Let's find $n2.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(16), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Um, excuse me...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(16), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0x93, 0x04, 0x0002, 0x0000005e, 0x00000000, NULL }, + { 0xe2, 0x00, 0x01d1, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0002, 0x00000000, -0x00000003, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Did you maybe come looking\nfor me?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(16), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You must be $n2.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Let's get you home.\nCaterpie was worried about you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(16), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yay!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I was scared, so I kept my\nshell hardened...and waited and waited.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Thank you!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + +static const struct ScriptCommand s_gs185_g1_s0_lives1_dlg0[] = { /* 0x823531c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x93, 0x04, 0x0001, 0x0000005e, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs185_g1_s0_lives2_dlg0[] = { /* 0x82353ec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(455), + CALL_SCRIPT(SMILE_END_FUNC), + WAIT(10), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + WAIT(16), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs185_g1_s0_lives3_dlg0[] = { /* 0x823550c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000047, 0x00000000, NULL }, + FANFARE_PLAY2(457), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe2, 0x00, 0x01c9, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs185_g1_s0_lives4_dlg0[] = { /* 0x82355ec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x00000002, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs185_g1_s0_lives5_dlg0[] = { /* 0x823565c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x00000003, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs185_g1_s0_lives6_dlg0[] = { /* 0x82356cc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005e, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs185_g1_s0_lives7_dlg0[] = { /* 0x823576c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005e, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs185_g1_s0_lives8_dlg0[] = { /* 0x823580c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs185_g1_s0_lives9_dlg0[] = { /* 0x823583c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs185_g1_s0_lives[] = { /* 0x823586c */ + /* 0 */ { 0, 4, 0, 0, { 32, 32, 0, CPOS_HALFTILE }, { + [0] = s_gs185_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 37, 32, 0, CPOS_HALFTILE }, { + [0] = s_gs185_g1_s0_lives1_dlg0, + } }, + /* 2 */ { 94, 0, 0, 0, { 34, 15, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs185_g1_s0_lives2_dlg0, + } }, + /* 3 */ { 91, 0, 0, 0, { 34, 24, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs185_g1_s0_lives3_dlg0, + } }, + /* 4 */ { 92, 0, 0, 0, { 39, 28, 0, CPOS_HALFTILE }, { + [0] = s_gs185_g1_s0_lives4_dlg0, + } }, + /* 5 */ { 93, 0, 0, 0, { 30, 28, 0, CPOS_HALFTILE }, { + [0] = s_gs185_g1_s0_lives5_dlg0, + } }, + /* 6 */ { 10, 4, 0, 0, { 33, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs185_g1_s0_lives6_dlg0, + } }, + /* 7 */ { 11, 4, 0, 0, { 36, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs185_g1_s0_lives7_dlg0, + } }, + /* 8 */ { 12, 4, 0, 0, { 30, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs185_g1_s0_lives8_dlg0, + } }, + /* 9 */ { 13, 4, 0, 0, { 39, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs185_g1_s0_lives9_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs185_g1_s0_effs[] = { /* 0x823595c */ + /* 0 */ { 0, 0, 1, 1, { 34, 30, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8235968 */ + &s_gs185_g0_s0_station_sref, + &s_gs185_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs185_g0_sectors[] = { /* 0x8235970 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs185_g1_sectors[] = { /* 0x8235998 */ + { LPARRAY(s_gs185_g1_s0_lives), 0,NULL, LPARRAY(s_gs185_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs185_groups[] = { /* 0x82359c0 */ + { LPARRAY(s_gs185_g0_sectors) }, + { LPARRAY(s_gs185_g1_sectors) }, +}; + +static const struct GroundLink s_gs185_links[] = { /* 0x82359d0 */ + /* link 0 */ { { /*x*/ 34, /*y*/ 30, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 1 */ { { /*x*/ 13, /*y*/ 24, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 2 */ { { /*x*/ 13, /*y*/ 28, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 3 */ { { /*x*/ 14, /*y*/ 28, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs185 = { LPARRAY(s_gs185_groups), s_gs185_links }; /* 0x82359f0 */ diff --git a/src/data/ground/ground_data_d05p01_station.h b/src/data/ground/ground_data_d05p01_station.h new file mode 100644 index 000000000..ddc7d4925 --- /dev/null +++ b/src/data/ground/ground_data_d05p01_station.h @@ -0,0 +1,460 @@ + + + + + + + + + + + +static const struct ScriptCommand s_gs186_g0_s0_station_sref_script[] = { /* 0x8235a04 */ + DEBUGINFO, + SELECT_MAP(186), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs186_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs186_g0_s0_station_sref_script }; /* 0x8235a70 */ + +static const struct ScriptCommand s_gs186_g1_s0_station_sref_script[] = { /* 0x8235a7c */ + DEBUGINFO, + SELECT_MAP(186), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(113), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x02, 0x00, 0x0000, 0x00000006, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs186_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs186_g1_s0_station_sref_script }; /* 0x8235b0c */ + +static const struct ScriptCommand s_gs186_g1_s0_eff0_script[] = { /* 0x8235b18 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs186_g1_s0_lives0_dlg0[] = { /* 0x8235ba8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x0000005b, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Whew, this is some cliff.")), + VARIANT_DEFAULT(_(" Wow! This cliff is steep!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000004, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" So your friend $n2\nis somewhere deep in this canyon?")), + VARIANT_DEFAULT(_(" Your friend $n2\nis lost deep in this canyon?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0d, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes...\nI'm sorry to ask, but please help.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, no problem.")), + VARIANT_DEFAULT(_(" It'll be fine.")), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Let's roll, $n0!")), + VARIANT_DEFAULT(_(" Let's go, $n0!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x10, 0x0100, 0x00000004, 0x00000000, NULL }, + FANFARE_PLAY2(464), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Wait!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000003, 0x00000000, NULL }, + FANFARE_PLAY2(463), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hah? What's up?")), + VARIANT_DEFAULT(_(" Yes? What is it?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0d, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There's something I forgot\nto mention...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This canyon is known as\nthe #CDSilent Chasm#R, but...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's rumored that an amazing\nmonster sleeps here.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(473), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" M...#Wmonster?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes, but!#W\nIt's only folklore!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's also true that\nShiftry hasn't returned...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I just thought I should\nlet you know...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Owowow!\nMy stomach! It hurts...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh!#W\nWhat's wrong?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" My stomach suddenly started\ncramping up! Owowow...")), + VARIANT(/* == */ 1, _(" I think it's something I ate\nthis morning...")), + VARIANT_DEFAULT(_(" It's my stomach!\nIt suddenly cramped up! Owowow...")), + VARIANT_DEFAULT(_(" I think my breakfast was\nspoiled or something...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, $n0, you too,\nright?")), + VARIANT_DEFAULT(_(" Say, $n0, you're\nfeeling sick too, aren't you?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" $n0, you have\na stomachache too, don't you?")), + VARIANT_DEFAULT(_(" $n0, your stomach\nhurts too, doesn't it?")), + CHOICE(/* label */ 12, _("It's true! It's tearing me up!")), + CHOICE(/* label */ 13, _("Huh? I'm perfectly fine.")), + LABEL(12), /* = 0x0c */ + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(457), + { 0x56, 0x00, 0x0000, 0x00000047, 0x00000000, NULL }, + { 0x54, 0x00, 0x002d, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" See...\n$n0 is in pain too.")), + VARIANT(/* == */ 1, _(" Sorry, but we can't handle\nthis rescue...")), + VARIANT_DEFAULT(_(" See...\n$n0 is hurting too.")), + VARIANT_DEFAULT(_(" I'm sorry, but we won't\nbe able to handle this rescue...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Is that so?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But $n0...") }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hasn't had anything to\neat yet this morning.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + FANFARE_PLAY2(470), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Owowow...#W\nI guess the cramping settled down...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(45), + CALL_SCRIPT(SMILE_END_FUNC), + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hahahahaha...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(16), + LABEL(13), /* = 0x0d */ + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh...?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(457), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000003, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" What's wrong with you,\n$n0?!\nBack me up here!")), + VARIANT(/* == */ 1, _(" You're my partner!\nYou have to catch my drift better!")), + VARIANT_DEFAULT(_(" What's the matter,\n$n0?!\nI need you to back me!")), + VARIANT_DEFAULT(_(" If you're my partner, you\nneed to read my cues better!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Wh-why this sudden\noutburst, $n1?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Don't you have a\nstomachache?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000003, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Uh, yeah...")), + VARIANT(/* == */ 1, _(" Owowow...#W\nI guess the cramping settled down...")), + VARIANT_DEFAULT(_(" Uh, yes...")), + VARIANT_DEFAULT(_(" Owowow...#W\nI guess the cramping settled down...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(470), + CALL_SCRIPT(SWEAT_FUNC), + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hahahahaha...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(45), + LABEL(16), /* = 0x10 */ + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + WAIT(15), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" So, this monster.\nWhat is it like?")), + VARIANT_DEFAULT(_(" So, anyway, you said there\nmay be a monster.\nWhat is it like?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I don't know very much\nat all...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It is an old folktale.\nI wouldn't know if it existed or not.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" All right...#W\nThere's nothing we can do about that.")), + VARIANT(/* == */ 1, _(" We'll just have to hope the\nmonster doesn't really exist.")), + VARIANT_DEFAULT(_(" OK...#W\nWell, it can't be helped.")), + VARIANT_DEFAULT(_(" Let's just hope that monster\ndoesn't exist.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2d, 0x0a, 0x0000, 0x00000006, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" My friend Jumpluff should\nbe around B$d0F.#W\nPlease take care!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" You bet we will!")), + VARIANT_DEFAULT(_(" OK! Gotcha!")), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Let's roll, $n0!")), + VARIANT_DEFAULT(_(" Let's get going,\n$n0!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, + { 0x7a, 0x00, 0x005f, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs186_g1_s0_lives1_dlg0[] = { /* 0x8237410 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + WAIT(16), + { 0x91, 0x08, 0x0001, 0x00000005, 0x00000000, NULL }, + WAIT(12), + { 0x91, 0x08, 0x0002, 0x00000007, 0x00000000, NULL }, + WAIT(12), + { 0x91, 0x08, 0x0001, 0x00000005, 0x00000000, NULL }, + WAIT(12), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000003, 0x00000000, NULL }, + WAIT(8), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x0a, 0x0100, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000003, 0x00000000, NULL }, + CALL_SCRIPT(QUESTION_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x002d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 0), + { 0x91, 0x04, 0x000b, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + WAIT(30), + { 0x91, 0x04, 0x000b, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(45), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 0, /* to label */ 1), + LABEL(0), /* = 0x00 */ + FANFARE_PLAY2(470), + CALL_SCRIPT(SWEAT_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + CALL_SCRIPT(ANGRY_START_FUNC), + WAIT(45), + CALL_SCRIPT(ANGRY_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(470), + CALL_SCRIPT(SWEAT_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000001, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0x91, 0x04, 0x000b, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0080, 0x00000001, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs186_g1_s0_lives2_dlg0[] = { /* 0x8237920 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x89, 0x04, 0x0100, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000047, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 0), + { 0x91, 0x04, 0x0002, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs186_g1_s0_lives[] = { /* 0x8237a90 */ + /* 0 */ { 0, 5, 0, 0, { 28, 19, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs186_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 7, 0, 0, { 23, 16, 0, CPOS_HALFTILE }, { + [0] = s_gs186_g1_s0_lives1_dlg0, + } }, + /* 2 */ { 78, 7, 0, 0, { 32, 13, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs186_g1_s0_lives2_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs186_g1_s0_effs[] = { /* 0x8237ad8 */ + /* 0 */ { 0, 0, 1, 1, { 18, 16, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs186_g1_s0_eff0_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8237ae4 */ + &s_gs186_g0_s0_station_sref, + &s_gs186_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs186_g0_sectors[] = { /* 0x8237aec */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs186_g1_sectors[] = { /* 0x8237b14 */ + { LPARRAY(s_gs186_g1_s0_lives), 0,NULL, LPARRAY(s_gs186_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs186_groups[] = { /* 0x8237b3c */ + { LPARRAY(s_gs186_g0_sectors) }, + { LPARRAY(s_gs186_g1_sectors) }, +}; + +static const struct GroundLink s_gs186_links[] = { /* 0x8237b4c */ + /* link 0 */ { { /*x*/ 29, /*y*/ 10, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 28, /*y*/ 9, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 2 */ { { /*x*/ 28, /*y*/ 16, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs186 = { LPARRAY(s_gs186_groups), s_gs186_links }; /* 0x8237b64 */ diff --git a/src/data/ground/ground_data_d05p02_station.h b/src/data/ground/ground_data_d05p02_station.h new file mode 100644 index 000000000..670e9f6ec --- /dev/null +++ b/src/data/ground/ground_data_d05p02_station.h @@ -0,0 +1,378 @@ + + + + + + + + +static const struct ScriptCommand s_gs187_g0_s0_station_sref_script[] = { /* 0x8237b78 */ + DEBUGINFO, + SELECT_MAP(187), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs187_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs187_g0_s0_station_sref_script }; /* 0x8237be4 */ + +static const struct ScriptCommand s_gs187_g1_s0_station_sref_script[] = { /* 0x8237bf0 */ + DEBUGINFO, + SELECT_MAP(187), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(114), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(60), + RET, +}; + +static const struct ScriptRef s_gs187_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs187_g1_s0_station_sref_script }; /* 0x8237c90 */ + +static const struct ScriptCommand s_gs187_g1_s0_eff0_script[] = { /* 0x8237c9c */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x44, 0x01cc, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs187_g1_s0_lives0_dlg0[] = { /* 0x8237d1c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x50, 0x0100, 0x00000004, 0x00000000, NULL }, + WAIT(32), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n2's friend is\nsupposed to be around here, right?")), + VARIANT_DEFAULT(_(" Isn't this the place?\nWhere $n2's friend is supposed\nto be?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, hey!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x20, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We came for you!\nAre you all right?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0e, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes...\nI'm fine, but...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Great!\nYour friend is waiting for you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n3 is in the\nback...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh? $n3?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + WAIT(5), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(40), + { 0x91, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Let's go!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x3c, 0x01cc, 0x00000004, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey! Are you all right?\nGet it together!")), + VARIANT_DEFAULT(_(" Listen! Are you OK?\nSnap out of it!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0e, 0x0003, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...Urrrgh.\nForget about me...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Get away from here!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Get...#W\nGet away?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_STOP, + FANFARE_PLAY2(502), + { 0x28, 0x01, 0x0005, 0x00000002, 0x00777700, NULL }, + { 0x27, 0x01, 0x0005, 0x00000003, 0x00777700, NULL }, + { 0x28, 0x01, 0x0005, 0x00000002, 0x00777700, NULL }, + { 0x27, 0x01, 0x0005, 0x00000003, 0x00777700, NULL }, + { 0x28, 0x01, 0x0005, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Wh-what happened?!\nIt's pitch-black! I can't see!")), + VARIANT_DEFAULT(_(" Wh-what's going on?!\nWhy did it turn pitch-black?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 1), + FANFARE_PLAY2(474), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Gyaoooooh!") }, + WAIT(90), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" It's coming!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(502), + { 0x27, 0x01, 0x0005, 0x00000002, 0x00000000, NULL }, + { 0x28, 0x01, 0x0005, 0x00000002, 0x00777700, NULL }, + { 0x27, 0x01, 0x0005, 0x00000002, 0x00777700, NULL }, + { 0x28, 0x00, 0x0005, 0x00000002, 0x00777700, NULL }, + { 0x28, 0x01, 0x0005, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Move aside, you!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" He dared to disturb my sleep!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(502), + { 0x27, 0x01, 0x0005, 0x00000002, 0x00000000, NULL }, + { 0x28, 0x01, 0x0005, 0x00000002, 0x00777700, NULL }, + { 0x27, 0x01, 0x0005, 0x00000002, 0x00777700, NULL }, + { 0x28, 0x00, 0x0005, 0x00000002, 0x00777700, NULL }, + { 0x28, 0x01, 0x0005, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I have no mercy for meddlers!\nAnd that includes you!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x27, 0x00, 0x0005, 0x00000020, 0x00000000, NULL }, + WAIT(32), + FANFARE_PLAY2(517), + { 0x28, 0x01, 0x0005, 0x00000010, 0x00ffffff, NULL }, + WAIT(32), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Gyaooooh!") }, + WAIT(90), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x27, 0x00, 0x0005, 0x00000010, 0x00ffffff, NULL }, + WAIT(64), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(8), + CALL_SCRIPT(LOOK_AROUND_FUNC), + WAIT(30), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Shi-$n3's gone!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(15), + BGM_SWITCH(9), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I am $n6!\nThe embodiment of lightning!") }, + { 0x2e, 0x0e, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" If you wish to save\n$n3, then scale #CDMt. Thunder#R!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n6...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" So that's the legendary\nmonster...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + +static const struct ScriptCommand s_gs187_g1_s0_lives1_dlg0[] = { /* 0x82389a8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x50, 0x0100, 0x00000004, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x20, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x3c, 0x01cc, 0x00000004, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + FANFARE_PLAY2(466), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs187_g1_s0_lives2_dlg0[] = { /* 0x8238b68 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x58, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x20, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x3c, 0x01cc, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs187_g1_s0_lives3_dlg0[] = { /* 0x8238cb8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x58, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x20, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x3c, 0x01cc, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(7), + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs187_g1_s0_lives4_dlg0[] = { /* 0x8238e18 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x60, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x46, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs187_g1_s0_lives5_dlg0[] = { /* 0x8238ee8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs187_g1_s1_lives0_dlg0[] = { /* 0x8238f38 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0100, 0x00000008, 0x00000000, NULL }, + WAIT(16), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Gyaoooooooh!") }, + FANFARE_PLAY2(459), + { 0x70, 0x00, 0x0400, 0x00000080, 0x00000000, NULL }, + WAIT(90), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct GroundLivesData s_gs187_g1_s0_lives[] = { /* 0x8239018 */ + /* 0 */ { 0, 4, 0, 0, { 20, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs187_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 24, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs187_g1_s0_lives1_dlg0, + } }, + /* 2 */ { 10, 4, 0, 0, { 19, 47, 0, CPOS_HALFTILE }, { + [0] = s_gs187_g1_s0_lives2_dlg0, + } }, + /* 3 */ { 11, 4, 0, 0, { 25, 47, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs187_g1_s0_lives3_dlg0, + } }, + /* 4 */ { 95, 0, 0, 0, { 22, 13, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs187_g1_s0_lives4_dlg0, + } }, + /* 5 */ { 85, 2, 0, 0, { 22, 11, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs187_g1_s0_lives5_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs187_g1_s1_lives[] = { /* 0x82390a8 */ + /* 0 */ { 96, 0, 0, 0, { 22, 9, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs187_g1_s1_lives0_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs187_g1_s0_effs[] = { /* 0x82390c0 */ + /* 0 */ { 0, 0, 1, 1, { 22, 29, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs187_g1_s0_eff0_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x82390cc */ + &s_gs187_g0_s0_station_sref, + &s_gs187_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs187_g0_sectors[] = { /* 0x82390d4 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs187_g1_sectors[] = { /* 0x82390fc */ + { LPARRAY(s_gs187_g1_s0_lives), 0,NULL, LPARRAY(s_gs187_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, + { LPARRAY(s_gs187_g1_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs187_groups[] = { /* 0x823914c */ + { LPARRAY(s_gs187_g0_sectors) }, + { LPARRAY(s_gs187_g1_sectors) }, +}; + +static const struct GroundLink s_gs187_links[] = { /* 0x823915c */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs187 = { LPARRAY(s_gs187_groups), s_gs187_links }; /* 0x8239164 */ diff --git a/src/data/ground/ground_data_d06p01_station.h b/src/data/ground/ground_data_d06p01_station.h new file mode 100644 index 000000000..051b6470a --- /dev/null +++ b/src/data/ground/ground_data_d06p01_station.h @@ -0,0 +1,236 @@ + + + + + + + + + + + +static const struct ScriptCommand s_gs188_g0_s0_station_sref_script[] = { /* 0x8239178 */ + DEBUGINFO, + SELECT_MAP(188), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs188_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs188_g0_s0_station_sref_script }; /* 0x82391e4 */ + +static const struct ScriptCommand s_gs188_g1_s0_station_sref_script[] = { /* 0x82391f0 */ + DEBUGINFO, + SELECT_MAP(188), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(111), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x02, 0x00, 0x0000, 0x00000007, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs188_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs188_g1_s0_station_sref_script }; /* 0x8239280 */ + +static const struct ScriptCommand s_gs188_g1_s0_eff0_script[] = { /* 0x823928c */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs188_g1_s0_lives0_dlg0[] = { /* 0x82392cc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000060, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000058, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0004, 0x00000055, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" This must be the foot of\n#CDMt. Thunder#R...")), + VARIANT(/* == */ 1, _(" I wonder if $n3's\nteam is already on the way...")), + VARIANT_DEFAULT(_(" This is the foot of\n#CDMt. Thunder#R.")), + VARIANT_DEFAULT(_(" I wonder...\nIs $n3's team already on\ntheir way?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n2, huh...#W\nIt sounds really tough.")), + VARIANT_DEFAULT(_(" $n2...#W\nIt sounds very tough...")), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Brr... I'm shaking...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But I can't be spooked\nby this.")), + VARIANT(/* == */ 1, _(" Our mission is to rescue\n$n4.")), + VARIANT(/* == */ 1, _(" $n0, let's give it\nour best!")), + VARIANT(/* == */ 3, _(" I shouldn't get all scared\nnow!")), + VARIANT(/* == */ 3, _(" Our objective is to rescue\n$n4.")), + VARIANT(/* == */ 3, _(" $n0, let's do our\nbest!")), + VARIANT_DEFAULT(_(" I can't be scared now.")), + VARIANT_DEFAULT(_(" Our objective is simple.\nWe're rescuing $n4.")), + VARIANT_DEFAULT(_(" $n0, let's try\nour best!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x00, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs188_g1_s0_lives1_dlg0[] = { /* 0x8239824 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + WAIT(8), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs188_g2_s0_station_sref_script[] = { /* 0x8239954 */ + DEBUGINFO, + SELECT_MAP(188), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(111), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x02, 0x00, 0x0000, 0x00000007, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs188_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs188_g2_s0_station_sref_script }; /* 0x82399e4 */ + +static const struct ScriptCommand s_gs188_g2_s0_eff0_script[] = { /* 0x82399f0 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + END_DELETE, +}; + +static const struct ScriptCommand s_gs188_g2_s0_lives0_dlg0[] = { /* 0x8239a30 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000055, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + WAIT(20), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0!\nThis time, we're gonna rescue\n$n2!")), + VARIANT(/* == */ 1, _(" Let's give it our best!")), + VARIANT_DEFAULT(_(" $n0!\nWe'll rescue $n2 this time for\nsure!")), + VARIANT_DEFAULT(_(" Let's work hard at it!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x00, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs188_g2_s0_lives1_dlg0[] = { /* 0x8239c48 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + WAIT(8), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs188_g1_s0_lives[] = { /* 0x8239d08 */ + /* 0 */ { 0, 2, 0, 0, { 23, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs188_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 6, 0, 0, { 27, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs188_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs188_g2_s0_lives[] = { /* 0x8239d38 */ + /* 0 */ { 0, 2, 0, 0, { 23, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs188_g2_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 27, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs188_g2_s0_lives1_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs188_g1_s0_effs[] = { /* 0x8239d68 */ + /* 0 */ { 0, 0, 1, 1, { 25, 16, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs188_g1_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs188_g2_s0_effs[] = { /* 0x8239d74 */ + /* 0 */ { 0, 0, 1, 1, { 25, 16, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs188_g2_s0_eff0_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8239d80 */ + &s_gs188_g0_s0_station_sref, + &s_gs188_g1_s0_station_sref, + &s_gs188_g2_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs188_g0_sectors[] = { /* 0x8239d8c */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs188_g1_sectors[] = { /* 0x8239db4 */ + { LPARRAY(s_gs188_g1_s0_lives), 0,NULL, LPARRAY(s_gs188_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs188_g2_sectors[] = { /* 0x8239ddc */ + { LPARRAY(s_gs188_g2_s0_lives), 0,NULL, LPARRAY(s_gs188_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptGroup s_gs188_groups[] = { /* 0x8239e04 */ + { LPARRAY(s_gs188_g0_sectors) }, + { LPARRAY(s_gs188_g1_sectors) }, + { LPARRAY(s_gs188_g2_sectors) }, + {}, +}; + +static const struct GroundLink s_gs188_links[] = { /* 0x8239e24 */ + /* link 0 */ { { /*x*/ 23, /*y*/ 18, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 27, /*y*/ 18, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 2 */ { { /*x*/ 25, /*y*/ 11, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs188 = { LPARRAY(s_gs188_groups), s_gs188_links }; /* 0x8239e3c */ diff --git a/src/data/ground/ground_data_d06p02_station.h b/src/data/ground/ground_data_d06p02_station.h new file mode 100644 index 000000000..7595288cc --- /dev/null +++ b/src/data/ground/ground_data_d06p02_station.h @@ -0,0 +1,265 @@ + + + + + + + + +static const struct ScriptCommand s_gs189_g0_s0_station_sref_script[] = { /* 0x8239e50 */ + DEBUGINFO, + SELECT_MAP(189), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_GT, 17, /* to label */ 0), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + JUMP_LABEL(1), + LABEL(1), /* = 0x01 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 2), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 3), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 4), + JUMP_LABEL(2), + LABEL(4), /* = 0x04 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 5), + JUMP_LABEL(5), + LABEL(2), /* = 0x02 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(6), + LABEL(3), /* = 0x03 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(6), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(6), + LABEL(6), /* = 0x06 */ + BGM_SWITCH(111), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs189_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs189_g0_s0_station_sref_script }; /* 0x823a06c */ + +static const struct ScriptCommand s_gs189_g0_s0_evt0_sref_script[] = { /* 0x823a078 */ + DEBUGINFO, + ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Would you like to go on?")), + CHOICE(/* label */ 0, _("Yes.")), + CHOICE(/* label */ 1, _("*No.")), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x02, 0x00, 0x001e, 0x00000008, 0x00000000, NULL }, + COND_EQUAL(-1, /* to label */ 1), + HALT, +}; + +static const struct ScriptRef s_gs189_g0_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs189_g0_s0_evt0_sref_script }; /* 0x823a164 */ + +static const struct ScriptCommand s_gs189_g0_s0_evt1_sref_script[] = { /* 0x823a170 */ + DEBUGINFO, + ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Return to the rescue team base?")), + CHOICE(/* label */ 0, _("Yes.")), + CHOICE(/* label */ 1, _("*No.")), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(30), + { 0x23, 0x01, -0x0001, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER4_FUNC), + SET_DUNGEON_RES(/* result */ 10, /* enter */ -1), + EXECUTE_STATION(12, 4, 0), + HALT, +}; + +static const struct ScriptRef s_gs189_g0_s0_evt1_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs189_g0_s0_evt1_sref_script }; /* 0x823a270 */ + +static const struct ScriptCommand s_gs189_g0_s0_obj0_dlg2[] = { /* 0x823a27c */ + DEBUGINFO, + JUMP_SCRIPT(SAVE_POINT), +}; + +static const struct ScriptCommand s_gs189_g0_s1_lives0_dlg0[] = { /* 0x823a29c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs189_g0_s1_lives1_dlg0[] = { /* 0x823a2dc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs189_g0_s3_lives0_dlg0[] = { /* 0x823a31c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs189_g0_s3_lives1_dlg0[] = { /* 0x823a35c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs189_g0_s4_lives0_dlg0[] = { /* 0x823a39c */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs189_g0_s4_lives1_dlg0[] = { /* 0x823a3cc */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs189_g1_s0_station_sref_script[] = { /* 0x823a3fc */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 189), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 189), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(189), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(111), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs189_g1_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs189_g1_s0_station_sref_script }; /* 0x823a4cc */ + +static const struct ScriptCommand s_gs189_g1_s0_lives0_dlg0[] = { /* 0x823a4d8 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_LEFT_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hmm...#W\nThings didn't go right for us...")), + VARIANT_DEFAULT(_(" Hmm...#W\nThings didn't turn out in our favor...")), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But we should be getting\nclose.#W\nLet's keep going hard at it!")), + VARIANT_DEFAULT(_(" But we shouldn't be far.#W\nLet's keep doing our best!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs189_g1_s0_lives1_dlg0[] = { /* 0x823a72c */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_RIGHT_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct GroundLivesData s_gs189_g0_s0_lives[] = { /* 0x823a7dc */ + /* 0 */ { 145, 0, 0, 0, { 28, 28, CPOS_HALFTILE, CPOS_HALFTILE }, {} }, +}; + +static const struct GroundLivesData s_gs189_g0_s1_lives[] = { /* 0x823a7f4 */ + /* 0 */ { 0, 4, 0, 0, { 28, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs189_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs189_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs189_g0_s3_lives[] = { /* 0x823a824 */ + /* 0 */ { 0, 4, 0, 0, { 28, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs189_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs189_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs189_g0_s4_lives[] = { /* 0x823a854 */ + /* 0 */ { 0, 4, 0, 0, { 28, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs189_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs189_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs189_g1_s0_lives[] = { /* 0x823a884 */ + /* 0 */ { 0, 2, 0, 0, { 31, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs189_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 6, 0, 0, { 26, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs189_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundObjectData s_gs189_g0_s0_objs[] = { /* 0x823a8b4 */ + /* 0 */ { 4, 0, 4, 3, { 28, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs189_g0_s0_obj0_dlg2, + } }, +}; + +static const struct GroundEffectData s_gs189_g1_s0_effs[] = { /* 0x823a8cc */ + /* 0 */ { 0, 0, 1, 1, { 28, 37, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEventData s_gs189_g0_s0_evts[] = { /* 0x823a8d8 */ + /* 0 */ { 15, 3, 0, 0, { 21, 12, 0, 0 }, &s_gs189_g0_s0_evt0_sref }, + /* 1 */ { 15, 3, 0, 0, { 21, 42, 0, 0 }, &s_gs189_g0_s0_evt1_sref }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x823a8f0 */ + &s_gs189_g0_s0_station_sref, + &s_gs189_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs189_g0_sectors[] = { /* 0x823a8f8 */ + { LPARRAY(s_gs189_g0_s0_lives), LPARRAY(s_gs189_g0_s0_objs), 0,NULL, LPARRAY(s_gs189_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs189_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs189_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs189_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs189_g1_sectors[] = { /* 0x823a9c0 */ + { LPARRAY(s_gs189_g1_s0_lives), 0,NULL, LPARRAY(s_gs189_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs189_groups[] = { /* 0x823a9e8 */ + { LPARRAY(s_gs189_g0_sectors) }, + { LPARRAY(s_gs189_g1_sectors) }, +}; + +static const struct GroundLink s_gs189_links[] = { /* 0x823a9f8 */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs189 = { LPARRAY(s_gs189_groups), s_gs189_links }; /* 0x823aa00 */ diff --git a/src/data/ground/ground_data_d06p03_station.h b/src/data/ground/ground_data_d06p03_station.h new file mode 100644 index 000000000..bed74bcd0 --- /dev/null +++ b/src/data/ground/ground_data_d06p03_station.h @@ -0,0 +1,689 @@ + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs190_g0_s0_station_sref_script[] = { /* 0x823aa14 */ + DEBUGINFO, + SELECT_MAP(190), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs190_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs190_g0_s0_station_sref_script }; /* 0x823aa80 */ + +static const struct ScriptCommand s_gs190_g1_s0_station_sref_script[] = { /* 0x823aa8c */ + DEBUGINFO, + SELECT_MAP(190), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(114), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(60), + RET, +}; + +static const struct ScriptRef s_gs190_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs190_g1_s0_station_sref_script }; /* 0x823ab1c */ + +static const struct ScriptCommand s_gs190_g1_s0_eff0_script[] = { /* 0x823ab28 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x48, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x50, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x40, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x20, 0x0100, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(1), + END_DELETE, +}; + +static const struct ScriptCommand s_gs190_g1_s0_lives0_dlg0[] = { /* 0x823ac18 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0006, 0x00000055, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _("Gyaoooh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wh-what is going on...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Urrggh!#W\nUwoah!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(479), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000008, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You want more?\nI'll take you on!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Enough!#W\nThat's enough fighting.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I've calmed down.\nTake $n6 back.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You kids...\nYou've impressed me.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But...#W\nThings won't be this easy next time.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I will go all out next time,\nso you'd best be prepared!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Until then, you'd better\nhone your skills!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + FANFARE_PLAY2(481), + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 1), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Look!\nThere's $n6!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x7a, 0x00, 0x0020, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + WAIT(16), + { 0x2e, 0x0c, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Are you OK?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Ungh... Uh, yeah...#W\nSomehow, I am...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm glad you're safe!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" But that was an eye-opener.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Driving off that\n$n2.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I agree.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You're awfully strong for\na plain $m0.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(32), + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + WAIT(32), + { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ......") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I sensed it when we first\nmet...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Perhaps...#W\nYou aren't a Pokémon, are you?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wow!\nHow can you tell that?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But you're right.\n$n0 isn't a Pokémon.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0 is a human.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(473), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0006, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" What?!") }, + { 0x2e, 0x0c, 0x0004, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" A human?!") }, + { 0x2e, 0x02, 0x0005, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Is that possible?\nCan something like that happen?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0 doesn't really\nknow what happened, either.")), + VARIANT(/* == */ 1, _(" $n0 just woke up\none morning here as a Pokémon...")), + VARIANT(/* == */ 1, _(" ...And doesn't remember\na thing about being a human.")), + VARIANT_DEFAULT(_(" $n0 doesn't\nunderstand very much, either.")), + VARIANT_DEFAULT(_(" $n0 woke up\none morning here as a Pokémon...")), + VARIANT_DEFAULT(_(" ...And doesn't remember\nanything about being a human.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(45), + FANFARE_PLAY2(463), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Oh, that's right!#W\nLombre was saying something in the\nsquare.")), + VARIANT(/* == */ 1, _(" He said $n3\nknows everything.")), + VARIANT(/* == */ 1, _(" $n3, do you know\nwhy $n0 became a Pokémon?")), + VARIANT_DEFAULT(_(" Oh, wait!#W\nLombre said something in the square!")), + VARIANT_DEFAULT(_(" He said $n3 knows\neverything!")), + VARIANT_DEFAULT(_(" $n3, could you\nfigure out why $n0 became a\nPokémon?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ......") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" No...#W\nI can't determine that.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh...\nI thought you would know...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" However...#W\nThere is a way for unveiling the truth.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0001, 0x0000000b, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, really? How?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Make way to the\n#C5Hill of the Ancients#R.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" There, you will find a\nPokémon that stares into the sun all day...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" A Pokémon who is said to\nsee into the future.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Xatu is his name.#W\nHe should shed light on your puzzling\nfriend.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" OK!\nSo we should go see Xatu.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000003, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0, let's roll!\nWe're going to the #C5Hill of the Ancients#R!")), + VARIANT(/* == */ 1, _(" There's no time to lose!\nWe'd better go back quick!")), + VARIANT_DEFAULT(_(" $n0, let's go!\nOff to the #C5Hill of the Ancients#R!")), + VARIANT_DEFAULT(_(" We can't waste any time!\nLet's go back quick!")), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Shiftry, you too.#W\nLet's hurry back.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Uh... Yeah...#W\nI guess we should...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0!")), + VARIANT_DEFAULT(_(" $n0!")), + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(464), + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x04, 0x000b, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Don't just stand around.\nLet's go back.")), + VARIANT_DEFAULT(_(" Don't just stand there.\nLet's go home.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(30), + BGM_FADEOUT(120), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x89, 0xb8, 0x0080, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x2e, 0x0e, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Alakazam.#W\nI know you.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I don't think you're \ncompletely ignorant about this.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ......#W\nYou know something, don't you?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0f, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" There is something that\nconcerns me.#W\nBut it should go unspoken for now.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...For their sake...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs190_g1_s0_lives1_dlg0[] = { /* 0x823c670 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000008, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x7a, 0x00, 0x0020, 0x00000001, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(30), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0080, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x90, 0x0080, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs190_g1_s0_lives2_dlg0[] = { /* 0x823c940 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000010, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x60, 0x0080, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x90, 0x0080, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs190_g1_s0_lives3_dlg0[] = { /* 0x823cac0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000010, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x60, 0x0080, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x90, 0x0080, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs190_g1_s0_lives4_dlg0[] = { /* 0x823cc40 */ + DEBUGINFO, + { 0x54, 0x00, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(479), + { 0x56, 0x00, 0x0000, 0x00000062, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(491), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000061, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_STOP2(491), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(32), + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0100, 0x00000008, 0x00000000, NULL }, + WAIT(8), + FANFARE_PLAY2(459), + { 0x70, 0x00, 0x0400, 0x00000080, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs190_g1_s0_lives5_dlg0[] = { /* 0x823ce70 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x58, 0x0100, 0x00000004, 0x00000000, NULL }, + WAIT(8), + FANFARE_PLAY2(466), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000008, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x7a, 0x00, 0x0020, 0x00000002, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs190_g1_s0_lives6_dlg0[] = { /* 0x823d050 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x58, 0x0100, 0x00000004, 0x00000000, NULL }, + WAIT(8), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(7), + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000008, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x84, 0x00, 0x0180, 0x00000022, -0x0000001a, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x7a, 0x00, 0x0020, 0x00000003, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs190_g1_s0_lives7_dlg0[] = { /* 0x823d280 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x58, 0x0100, 0x00000004, 0x00000000, NULL }, + WAIT(8), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000008, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x7a, 0x00, 0x0020, 0x00000004, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs190_g1_s0_eff1_script[] = { /* 0x823d460 */ + DEBUGINFO, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000001b, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs190_g1_s1_lives0_dlg0[] = { /* 0x823d4c0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0080, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x90, 0x0080, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct GroundLivesData s_gs190_g1_s0_lives[] = { /* 0x823d610 */ + /* 0 */ { 0, 3, 0, 0, { 24, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs190_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 5, 0, 0, { 32, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs190_g1_s0_lives1_dlg0, + } }, + /* 2 */ { 10, 2, 0, 0, { 21, 19, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs190_g1_s0_lives2_dlg0, + } }, + /* 3 */ { 11, 6, 0, 0, { 35, 19, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs190_g1_s0_lives3_dlg0, + } }, + /* 4 */ { 96, 0, 0, 0, { 28, 18, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs190_g1_s0_lives4_dlg0, + } }, + /* 5 */ { 88, 4, 0, 0, { 28, 34, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs190_g1_s0_lives5_dlg0, + } }, + /* 6 */ { 89, 4, 0, 0, { 24, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs190_g1_s0_lives6_dlg0, + } }, + /* 7 */ { 90, 4, 0, 0, { 32, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs190_g1_s0_lives7_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs190_g1_s1_lives[] = { /* 0x823d6d0 */ + /* 0 */ { 85, 7, 0, 0, { 28, 17, CPOS_HALFTILE, 0 }, { + [0] = s_gs190_g1_s1_lives0_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs190_g1_s0_effs[] = { /* 0x823d6e8 */ + /* 0 */ { 0, 0, 1, 1, { 29, 11, 0, CPOS_HALFTILE }, s_gs190_g1_s0_eff0_script }, + /* 1 */ { 4, 0, 1, 1, { 28, 20, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs190_g1_s0_eff1_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x823d700 */ + &s_gs190_g0_s0_station_sref, + &s_gs190_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs190_g0_sectors[] = { /* 0x823d708 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs190_g1_sectors[] = { /* 0x823d730 */ + { LPARRAY(s_gs190_g1_s0_lives), 0,NULL, LPARRAY(s_gs190_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, + { LPARRAY(s_gs190_g1_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs190_groups[] = { /* 0x823d780 */ + { LPARRAY(s_gs190_g0_sectors) }, + { LPARRAY(s_gs190_g1_sectors) }, +}; + +static const struct GroundLink s_gs190_links[] = { /* 0x823d790 */ + /* link 0 */ { { /*x*/ 29, /*y*/ 20, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 32, /*y*/ 17, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 2 */ { { /*x*/ 24, /*y*/ 17, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 3 */ { { /*x*/ 25, /*y*/ 15, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 4 */ { { /*x*/ 25, /*y*/ 19, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 5 */ { { /*x*/ 32, /*y*/ 24, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 6 */ { { /*x*/ 32, /*y*/ 21, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs190 = { LPARRAY(s_gs190_groups), s_gs190_links }; /* 0x823d7c8 */ diff --git a/src/data/ground/ground_data_d07p01_station.h b/src/data/ground/ground_data_d07p01_station.h new file mode 100644 index 000000000..ed4392922 --- /dev/null +++ b/src/data/ground/ground_data_d07p01_station.h @@ -0,0 +1,203 @@ + + + + + + + + + + + + + +static const struct ScriptCommand s_gs191_g0_s0_station_sref_script[] = { /* 0x823d7dc */ + DEBUGINFO, + SELECT_MAP(191), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs191_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs191_g0_s0_station_sref_script }; /* 0x823d848 */ + +static const struct ScriptCommand s_gs191_g1_s0_station_sref_script[] = { /* 0x823d854 */ + DEBUGINFO, + SELECT_MAP(191), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(20), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x02, 0x00, 0x0000, 0x00000009, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs191_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs191_g1_s0_station_sref_script }; /* 0x823d8d4 */ + +static const struct ScriptCommand s_gs191_g1_s0_lives0_dlg0[] = { /* 0x823d8e0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000058, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000061, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6b, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" This is the #CDGreat Canyon#R...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The peak is called the\n#C5Hill of the Ancients#R.") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0x2d, 0x0a, 0x0000, 0x00000009, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n2 said that\nthe #C5Hill of the Ancients#R is on $d0F.")), + VARIANT(/* == */ 1, _(" That's where we'll find\n$n3.#W\n$n0, let's give it our best!")), + VARIANT_DEFAULT(_(" According to $n2,\nthe #C5Hill of the Ancients#R is on $d0F.")), + VARIANT_DEFAULT(_(" $n3 should be\nthere.#W\n$n0, let's do our best!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x00, 0x0028, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0080, 0x00000002, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs191_g1_s0_lives1_dlg0[] = { /* 0x823dc10 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x69, 0x00, 0x0100, 0x000000e8, 0x00000068, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + WAIT(20), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0080, 0x00000003, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs191_g2_s0_station_sref_script[] = { /* 0x823dd20 */ + DEBUGINFO, + SELECT_MAP(191), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(20), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x02, 0x00, 0x0000, 0x00000009, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs191_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs191_g2_s0_station_sref_script }; /* 0x823dda0 */ + +static const struct ScriptCommand s_gs191_g2_s0_lives0_dlg0[] = { /* 0x823ddac */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000058, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000061, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6b, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0!\nThis time we'll make it to the peak,\nall right?")), + VARIANT(/* == */ 1, _(" We'll meet $n3\nand ask about you, $n0.")), + VARIANT(/* == */ 1, _(" Let's give it our best!")), + VARIANT_DEFAULT(_(" $n0!\nLet's make it to the peak this time!")), + VARIANT_DEFAULT(_(" We have to meet\n$n3 and get some information\non you, $n0.")), + VARIANT_DEFAULT(_(" Let's do our best!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x00, 0x0028, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0080, 0x00000002, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs191_g2_s0_lives1_dlg0[] = { /* 0x823e038 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x00cc, 0x00000004, 0x00000000, NULL }, + { 0x6b, 0x00, 0x00cc, 0x00000003, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs191_g1_s0_lives[] = { /* 0x823e0f8 */ + /* 0 */ { 0, 4, 0, 0, { 26, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs191_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 32, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs191_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs191_g2_s0_lives[] = { /* 0x823e128 */ + /* 0 */ { 0, 4, 0, 0, { 26, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs191_g2_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 32, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs191_g2_s0_lives1_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs191_g1_s0_effs[] = { /* 0x823e158 */ + /* 0 */ { 0, 0, 1, 1, { 30, 15, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs191_g2_s0_effs[] = { /* 0x823e164 */ + /* 0 */ { 0, 0, 1, 1, { 30, 15, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x823e170 */ + &s_gs191_g0_s0_station_sref, + &s_gs191_g1_s0_station_sref, + &s_gs191_g2_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs191_g0_sectors[] = { /* 0x823e17c */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs191_g1_sectors[] = { /* 0x823e1a4 */ + { LPARRAY(s_gs191_g1_s0_lives), 0,NULL, LPARRAY(s_gs191_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs191_g2_sectors[] = { /* 0x823e1cc */ + { LPARRAY(s_gs191_g2_s0_lives), 0,NULL, LPARRAY(s_gs191_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptGroup s_gs191_groups[] = { /* 0x823e1f4 */ + { LPARRAY(s_gs191_g0_sectors) }, + { LPARRAY(s_gs191_g1_sectors) }, + { LPARRAY(s_gs191_g2_sectors) }, +}; + +static const struct GroundLink s_gs191_links[] = { /* 0x823e20c */ + /* link 0 */ { { /*x*/ 31, /*y*/ 16, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 1 */ { { /*x*/ 26, /*y*/ 16, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 2 */ { { /*x*/ 29, /*y*/ 6, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 3 */ { { /*x*/ 30, /*y*/ 7, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 4 */ { { /*x*/ 30, /*y*/ 11, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs191 = { LPARRAY(s_gs191_groups), s_gs191_links }; /* 0x823e234 */ diff --git a/src/data/ground/ground_data_d07p02_station.h b/src/data/ground/ground_data_d07p02_station.h new file mode 100644 index 000000000..873f72ff8 --- /dev/null +++ b/src/data/ground/ground_data_d07p02_station.h @@ -0,0 +1,974 @@ + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs192_g0_s0_station_sref_script[] = { /* 0x823e248 */ + DEBUGINFO, + SELECT_MAP(192), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs192_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs192_g0_s0_station_sref_script }; /* 0x823e2b4 */ + +static const struct ScriptCommand s_gs192_g1_s0_station_sref_script[] = { /* 0x823e2c0 */ + DEBUGINFO, + SELECT_MAP(192), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(114), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs192_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs192_g1_s0_station_sref_script }; /* 0x823e360 */ + +static const struct ScriptCommand s_gs192_g1_s0_lives0_dlg0[] = { /* 0x823e36c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#W\nWhat is it?#W\nHave you reason to see me?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000008, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000008, NULL }, + WAIT(45), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hm! This...#W\nThis is a #CIClear Wing#R...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...#WI see.#W\nAbout the mirage Pokémon...#W\nThat is what you wish to know?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _(" #C6#RKwaaaaah!") }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + WAIT(60), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" .......#W\nThe mirage Pokémon...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I know...#W\nLittle about it...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ........................") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ....................................\n................................................\n................................................") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(470), + CALL_SCRIPT(SWEAT_FUNC), + { 0xe2, 0x00, 0x01d6, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" However!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There are Pokémon that\nlive, breathe, and prosper with\nthe very land.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They...#W\nrage with the eruptions of volcanoes...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Roar as one with thunder...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And race with the north\nwind.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They are said to be\nshadows.\nShadows of the mirage Pokémon.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" To the northwest, there lies\na large island.") }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" An island known as the\n“Three Fields.”") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There is one such field.\nThe #CDFiery Field#R!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" One of the Pokémon...\nA shadow of the mirage...is there.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Go.\nYou must go to the #CDFiery Field#R.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The answers you seek...\nPerhaps they await you there.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + BGM_STOP, + FANFARE_PLAY(205), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Gained access to\n#+the #CDFiery Field#R!") }, + { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs192_g1_s0_lives1_dlg0[] = { /* 0x823ec7c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe2, 0x00, 0x01d1, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(474), + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs192_g2_s0_station_sref_script[] = { /* 0x823edfc */ + DEBUGINFO, + SELECT_MAP(192), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(114), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(90), + RET, +}; + +static const struct ScriptRef s_gs192_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs192_g2_s0_station_sref_script }; /* 0x823ee8c */ + +static const struct ScriptCommand s_gs192_g2_s0_eff0_script[] = { /* 0x823ee98 */ + DEBUGINFO, + WAIT(1), + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0200, 0x0000000a, 0x00000000, NULL }, + WAIT(80), + { 0x86, 0x00, 0x0200, 0x0000000c, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0200, 0x0000000a, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0200, 0x0000000d, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs192_g2_s0_lives0_dlg0[] = { /* 0x823ef68 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Yes! We finally made it to\nthe top, $n0!")), + VARIANT_DEFAULT(_(" Yes! We've finally made it\nto the top, $n0!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x08, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" So this is the #C5Hill of\nthe Ancients#R...")), + VARIANT_DEFAULT(_(" This is the #C5Hill of the\nAncients#R...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Look!\nOver there!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0!#W\nIs that $n2 over there?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x7a, 0x00, 0x003c, 0x00000002, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + WAIT(20), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Excuse me?#W\nAre you maybe $n2?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ......") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hello?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ............") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Maybe he doesn't hear me?\nHello?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ..................") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(40), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hellooooooooooooooo?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ........................") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's useless.\nHe's not responding at all.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Maybe he's sleeping while\non his feet?") }, + { 0x2e, 0x15, 0x0001, -0x00000002, 0x00000000, NULL }, + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT_DEFAULT(_(" $n0, what should\nwe do?")), + CHOICE(/* label */ 2, _("Tickle him.")), + CHOICE(/* label */ 3, _("Attack him.")), + LABEL(2), /* = 0x02 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hah? Tickle him?#W\n...OK. I'll try it.")), + VARIANT_DEFAULT(_(" Huh? Tickle him?#W\n...OK. It's worth a try.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2b, 0x00, 0x0000, 0x0000001e, 0x0000001e, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Tickle, tickle, tickle.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2b, 0x00, 0x0000, -0x00000001, -0x00000001, NULL }, + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ............") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2b, 0x00, 0x0000, 0x0000001e, 0x0000001e, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Tickle, tickle, tickle, tickle,\ntickle, tickle.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2b, 0x00, 0x0000, -0x00000001, -0x00000001, NULL }, + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ....................................") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x2b, 0x00, 0x0000, 0x00000014, 0x00000014, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Tickle, tickle, tickle, tickle,\ntickle, tickle, tickle, tickle, tickle, tickle,\ntickle, tickle, tickle, tickle, tickle, tickle.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2b, 0x00, 0x0000, -0x00000001, -0x00000001, NULL }, + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ................................................\n............................................................\n............................................................") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2b, 0x00, 0x0000, 0x0000001e, 0x0000001e, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Tickle, tickle, tickle......") }, + { 0x2b, 0x00, 0x0000, -0x00000001, -0x00000001, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Gasp, gasp...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" It's useless, $n0.\nI'm not getting any response.")), + VARIANT_DEFAULT(_(" It's no good, $n0.\nHe's not responding.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Snort...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Snort...#W Giggle...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Bufufufufufufufufu...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" He finally started laughing...")), + VARIANT(/* == */ 1, _(" Maybe...#W\nIs he just dense?")), + VARIANT_DEFAULT(_(" He's finally laughing now...")), + VARIANT_DEFAULT(_(" Is he...#W\njust dense?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(90), + BGM_STOP, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Kwaaaaaaaaah!") }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yikes!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + JUMP_LABEL(4), + LABEL(3), /* = 0x03 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hah?\nWe're gonna attack?")), + VARIANT_DEFAULT(_(" Huh?\nWe're going to attack?!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Uh, no!\nNo way!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I mean, he's kind of creepy!") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It'd be scary for\nsure!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x03, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...#WOh, all right. \nYou really want me to do this.")), + VARIANT_DEFAULT(_(" ...#WFine, then.\nI'll do it, OK?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" If something happens to me,\npromise you'll help me.\nI'm counting on you.")), + VARIANT(/* == */ 3, _(" If anything happens to me,\nyou have to help me. You have to promise!")), + VARIANT_DEFAULT(_(" If anything happens\nto me, you have to help me.\nI'm counting on you.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + BGM_FADEOUT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x05, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2b, 0x00, 0x0000, 0x0000002d, 0x0000003c, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000003, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" All right. Counting down.#W\nThree...#W Two...#W One...#W Now...!")), + VARIANT_DEFAULT(_(" OK. Counting down.#W\nThree...#W Two...#W One...#W Now...!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2b, 0x00, 0x0000, -0x00000001, -0x00000001, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Kwaaaaaaaaah!") }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0x8b, 0x0a, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yikes!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + JUMP_LABEL(4), + LABEL(4), /* = 0x04 */ + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Witness it...") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" The sinking of the sun...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + BGM_FADEIN(60, 6), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Indeed.") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I am $n2.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You discerned my true\nidentity...#W\nYou are not an ordinary sort...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(470), + CALL_SCRIPT(SWEAT_FUNC), + WAIT(30), + { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Guessed your identity?\nThat's a bit much.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...No.\nI can tell this.") }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You there.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You are no ordinary\nPokémon.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You are...#W\nhuman, yes?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(466), + CALL_SCRIPT(NOTICE_FUNC), + WAIT(30), + { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh?!\nHow can you tell that?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" All day...\nI stare at the sun unblinking.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It gives me sight for\nall things.") }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The past and the future, too.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Then, you've got to tell us,\n$n2!")), + VARIANT_DEFAULT(_(" If you know, please tell us,\n$n2!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" This is my friend\n$n0...")), + VARIANT(/* == */ 1, _(" My friend woke up one\nmorning as a Pokémon.")), + VARIANT(/* == */ 1, _(" Without remembering\nanything as a human being, too.")), + VARIANT_DEFAULT(_(" Next to me is my friend\n$n0...")), + VARIANT_DEFAULT(_(" My friend woke up one\nmorning as a Pokémon.")), + VARIANT_DEFAULT(_(" And, without any memory as\na human.")), + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n2, you can tell,\ncan't you?#W\nCan't you tell us?")), + VARIANT_DEFAULT(_(" $n2, you can tell,\ncan't you?#W\nPlease tell us.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The calamities of nature.\nThere have been many in recent times.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They occur because the\nworld's balance is upset.") }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And your becoming a\nPokémon...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They are tied together.\nInseparably so.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wait. $n0\nbecoming a Pokémon and...#Wthe natural\ndisasters...#Ware related?!") }, + { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What do you mean?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What does $n0\nhave to do with the natural disasters\nwe've been seeing?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ........................") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000003, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" What is it?! Hey?!")), + VARIANT(/* == */ 1, _(" Why did you clam up?\nCome on, tell us, please!")), + VARIANT_DEFAULT(_(" What is it?!")), + VARIANT_DEFAULT(_(" Why did you clam up?!\nPlease, tell us! Please!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There are bigger concerns...#W\nI am afraid...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The world's balance...\nIt must be restored.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Or the unthinkable shall\nbefall our world.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Wh-#Wwhat did you say?")), + VARIANT(/* == */ 1, _(" The world...#W\nThe unthinkable is going to happen?")), + VARIANT_DEFAULT(_(" Huh...?#W\nYou're serious?!")), + VARIANT_DEFAULT(_(" The world...#W\nThe unthinkable is coming?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Every day I see it.\nThe same future every day...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I dread it...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Xa-$n2...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I fear it...#W\nThe world's destruction.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + SELECT_LIVES(-1, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The world's destruction...?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(150), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Kekeh!\nIsn't that a surprise!") }, + { 0x2e, 0x02, 0x0003, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" That $n0...\nwas human...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" That's going to be useful!\nThis should be interesting! Kekeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + +static const struct ScriptCommand s_gs192_g2_s0_lives1_dlg0[] = { /* 0x8241890 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0080, 0x00000000, -0x00000010, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(463), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x7a, 0x00, 0x003c, 0x00000001, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x7a, 0x00, 0x0028, 0x00000005, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(469), + CALL_SCRIPT(QUESTION_FUNC), + WAIT(10), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x7a, 0x00, 0x0028, 0x00000006, 0x00000000, NULL }, + WAIT(15), + FANFARE_PLAY2(468), + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + WAIT(60), + { 0x7a, 0x00, 0x0028, 0x00000007, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(457), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x7a, 0x00, 0x0028, 0x00000008, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(468), + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + WAIT(60), + { 0x7a, 0x00, 0x0028, 0x00000009, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000020, 0x00000003, NULL }, + WAIT(15), + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 0), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x7a, 0x00, 0x0028, 0x00000006, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(469), + { 0x6a, 0x00, 0x0100, -0x00000004, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(469), + { 0x6a, 0x00, 0x0100, -0x00000004, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(469), + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(469), + { 0x6a, 0x00, 0x0100, -0x00000004, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(469), + WAIT(30), + FANFARE_PLAY2(469), + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(469), + { 0x6a, 0x00, 0x0100, -0x00000004, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000047, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(470), + CALL_SCRIPT(SWEAT_FUNC), + WAIT(60), + { 0x6a, 0x00, 0x0100, 0x00000000, 0x00000012, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 0, /* to label */ 1), + LABEL(0), /* = 0x00 */ + FANFARE_PLAY2(473), + CALL_SCRIPT(SHOCK_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0f, 0x0001, 0x00000005, 0x00000000, NULL }, + WAIT(60), + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + FANFARE_PLAY2(457), + { 0x56, 0x00, 0x0000, 0x00000047, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x7a, 0x00, 0x0028, 0x00000005, 0x00000000, NULL }, + { 0x8b, 0x0a, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(100), + { 0x54, 0x00, 0x0029, 0x00000000, 0x00000000, NULL }, + WAIT(100), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0x6a, 0x00, 0x0100, 0x00000018, 0x00000002, NULL }, + { 0x8b, 0x0a, 0x0005, 0x00000000, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x7a, 0x00, 0x0014, 0x00000005, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(457), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe2, 0x00, 0x01c9, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(473), + CALL_SCRIPT(SHOCK_FUNC), + { 0xe2, 0x00, 0x01d9, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs192_g2_s0_lives2_dlg0[] = { /* 0x82422c0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x7a, 0x00, 0x003c, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 0), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 0, /* to label */ 1), + LABEL(0), /* = 0x00 */ + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + LABEL(1), /* = 0x01 */ + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs192_g2_s0_lives3_dlg0[] = { /* 0x82423f0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x7a, 0x00, 0x003c, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 0), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 0, /* to label */ 1), + LABEL(0), /* = 0x00 */ + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + LABEL(1), /* = 0x01 */ + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs192_g2_s0_lives4_dlg0[] = { /* 0x8242520 */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 0), + { 0x62, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000001, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0018, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(100), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + FANFARE_PLAY2(474), + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0018, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs192_g2_s1_lives0_dlg0[] = { /* 0x8242850 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0x54, 0x00, 0x0018, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + WAIT(30), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000000b, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs192_g1_s0_lives[] = { /* 0x8242990 */ + /* 0 */ { 0, 4, 0, 0, { 20, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs192_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 97, 4, 0, 0, { 20, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs192_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs192_g2_s0_lives[] = { /* 0x82429c0 */ + /* 0 */ { 0, 4, 0, 0, { 16, 53, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs192_g2_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 23, 53, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs192_g2_s0_lives1_dlg0, + } }, + /* 2 */ { 10, 4, 0, 0, { 17, 59, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs192_g2_s0_lives2_dlg0, + } }, + /* 3 */ { 11, 4, 0, 0, { 22, 59, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs192_g2_s0_lives3_dlg0, + } }, + /* 4 */ { 97, 4, 0, 0, { 20, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs192_g2_s0_lives4_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs192_g2_s1_lives[] = { /* 0x8242a38 */ + /* 0 */ { 91, 4, 0, 0, { 20, 58, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs192_g2_s1_lives0_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs192_g1_s0_effs[] = { /* 0x8242a50 */ + /* 0 */ { 0, 0, 1, 1, { 20, 35, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs192_g2_s0_effs[] = { /* 0x8242a5c */ + /* 0 */ { 0, 0, 1, 1, { 20, 51, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs192_g2_s0_eff0_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8242a68 */ + &s_gs192_g0_s0_station_sref, + &s_gs192_g1_s0_station_sref, + &s_gs192_g2_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs192_g0_sectors[] = { /* 0x8242a74 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs192_g1_sectors[] = { /* 0x8242a9c */ + { LPARRAY(s_gs192_g1_s0_lives), 0,NULL, LPARRAY(s_gs192_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs192_g2_sectors[] = { /* 0x8242ac4 */ + { LPARRAY(s_gs192_g2_s0_lives), 0,NULL, LPARRAY(s_gs192_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, + { LPARRAY(s_gs192_g2_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs192_groups[] = { /* 0x8242b14 */ + { LPARRAY(s_gs192_g0_sectors) }, + { LPARRAY(s_gs192_g1_sectors) }, + { LPARRAY(s_gs192_g2_sectors) }, + {}, +}; + +static const struct GroundLink s_gs192_links[] = { /* 0x8242b34 */ + /* link 0 */ { { /*x*/ 20, /*y*/ 38, /*flags*/ 0, 0 }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 23, /*y*/ 37, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 2 */ { { /*x*/ 16, /*y*/ 37, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 3 */ { { /*x*/ 17, /*y*/ 42, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 4 */ { { /*x*/ 22, /*y*/ 42, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 5 */ { { /*x*/ 20, /*y*/ 37, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 6 */ { { /*x*/ 23, /*y*/ 35, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 7 */ { { /*x*/ 20, /*y*/ 33, /*flags*/ 0, 0 }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 8 */ { { /*x*/ 16, /*y*/ 35, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 9 */ { { /*x*/ 19, /*y*/ 37, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 10 */ { { /*x*/ 20, /*y*/ 34, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 11 */ { { /*x*/ 20, /*y*/ 70, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 12 */ { { /*x*/ 20, /*y*/ 51, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 13 */ { { /*x*/ 20, /*y*/ 57, /*flags*/ CPOS_HALFTILE, 0 }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs192 = { LPARRAY(s_gs192_groups), s_gs192_links }; /* 0x8242ba4 */ diff --git a/src/data/ground/ground_data_d08p01_station.h b/src/data/ground/ground_data_d08p01_station.h new file mode 100644 index 000000000..d91e5e3fb --- /dev/null +++ b/src/data/ground/ground_data_d08p01_station.h @@ -0,0 +1,748 @@ + + + + + + + + + + + +static const struct ScriptCommand s_gs193_g0_s0_station_sref_script[] = { /* 0x8242bb8 */ + DEBUGINFO, + JUMPIF_SCENARIOCHECK(5, /* to label */ 0), + EXECUTE_STATION(12, 0, 0), + LABEL(0), /* = 0x00 */ + SELECT_MAP(193), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 11, /* to label */ 1), + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + CALL_STATION( 3, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 3), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 12, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 11, /* to label */ 6), + JUMP_LABEL(3), + LABEL(5), /* = 0x05 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(3), /* = 0x03 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(6), /* = 0x06 */ + SELECT_LIVES(0, 2), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(102), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs193_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs193_g0_s0_station_sref_script }; /* 0x8242e54 */ + +static const struct ScriptCommand s_gs193_g0_s0_obj0_dlg2[] = { /* 0x8242e60 */ + DEBUGINFO, + JUMP_SCRIPT(SAVE_AND_WAREHOUSE_POINT), +}; + +static const struct ScriptCommand s_gs193_g0_s1_lives0_dlg0[] = { /* 0x8242e80 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs193_g0_s1_lives1_dlg0[] = { /* 0x8242ec0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs193_g0_s2_lives0_dlg0[] = { /* 0x8242f00 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs193_g0_s2_lives1_dlg0[] = { /* 0x8242f40 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs193_g0_s3_lives0_dlg0[] = { /* 0x8242f80 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs193_g0_s3_lives1_dlg0[] = { /* 0x8242fc0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs193_g0_s4_lives0_dlg0[] = { /* 0x8243000 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs193_g0_s4_lives1_dlg0[] = { /* 0x8243030 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs193_g0_s5_obj0_dlg2[] = { /* 0x8243060 */ + DEBUGINFO, + JUMP_SCRIPT(WAREHOUSE_POINT), +}; + +static const struct ScriptCommand s_gs193_g0_s5_obj1_dlg2[] = { /* 0x8243080 */ + DEBUGINFO, + JUMP_SCRIPT(SAVE_POINT), +}; + +static const struct ScriptCommand s_gs193_g1_s0_station_sref_script[] = { /* 0x82430a0 */ + DEBUGINFO, + SELECT_MAP(193), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(24), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0x02, 0x00, 0x0000, 0x0000000a, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs193_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs193_g1_s0_station_sref_script }; /* 0x8243130 */ + +static const struct ScriptCommand s_gs193_g1_s0_lives0_dlg0[] = { /* 0x824313c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(30), + WAIT(120), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x08, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Whew!\nWe sure came a long way out.")), + VARIANT_DEFAULT(_(" Whew.\nWe've sure traveled a long way.")), + BGM_SWITCH(102), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But I was thinking...\nWhile we were on the way...")), + VARIANT_DEFAULT(_(" But while we were moving,\nI couldn't help thinking...")), + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" So many places are hit\nby the natural disasters...")), + VARIANT(/* == */ 1, _(" I bet there are many\nPokémon that need help.")), + VARIANT(/* == */ 1, _(" I'd really like to get back to\ndoing our rescue work...")), + VARIANT_DEFAULT(_(" All sorts of places have\nbeen affected by the natural disasters.")), + VARIANT_DEFAULT(_(" I'm sure many Pokémon are\nsuffering because of the calamities.")), + VARIANT_DEFAULT(_(" I wish we could get back to\ndoing our rescue work...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sorry, I shouldn't complain.\nWe have to get away now, period.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh? I hear voices...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + WAIT(20), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I think they went this way.") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" They can't get away.\nNot from all of us.") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" We have to get rid of $n0\nquickly...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(455), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Whoa!\nThey're catching up to us already?")), + VARIANT(/* == */ 1, _(" $n0, we have to\nroll.")), + VARIANT_DEFAULT(_(" Aww, no!\nAre they catching up to us?")), + VARIANT_DEFAULT(_(" $n0, we'd better\ngo.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + +static const struct ScriptCommand s_gs193_g1_s0_lives1_dlg0[] = { /* 0x824389c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x02, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x91, 0x02, 0x0002, 0x00000007, 0x00000000, NULL }, + { 0x91, 0x02, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x91, 0x02, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs193_g2_s0_station_sref_script[] = { /* 0x8243a1c */ + DEBUGINFO, + SELECT_MAP(193), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(102), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + CALL_STATION( 3, 0), + RET, +}; + +static const struct ScriptRef s_gs193_g2_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs193_g2_s0_station_sref_script }; /* 0x8243aac */ + +static const struct ScriptCommand s_gs193_g2_s0_lives0_dlg0[] = { /* 0x8243ab8 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_RIGHT_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Urrggh...#W\nWe couldn't get through...")), + VARIANT_DEFAULT(_(" Ouch...#W\nWe couldn't break through...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I think we got cocky and\ncareless, $n0.")), + VARIANT(/* == */ 1, _(" Wonder what happened to\nthe Pokémon chasing us?\nAre they in the dungeon?")), + VARIANT(/* == */ 1, _(" Well, running into them\nwould be bad trouble.\nLet's get through this...and fast.")), + VARIANT_DEFAULT(_(" I guess we got a little\ncareless, $n0.")), + VARIANT_DEFAULT(_(" I wonder what became of\nthe Pokémon chasing us?\nAre they in the dungeon?")), + VARIANT_DEFAULT(_(" We sure don't want to run\ninto them.\nLet's get through this quickly.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs193_g2_s0_lives1_dlg0[] = { /* 0x8243e64 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs193_g3_s0_station_sref_script[] = { /* 0x8243f34 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs193_g3_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs193_g3_s0_station_sref_script }; /* 0x8243f64 */ + +static const struct ScriptCommand s_gs193_g3_s0_lives0_dlg1[] = { /* 0x8243f70 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000400, 0x00000000, NULL }, + JUMP_SCRIPT(LIVES_MOVE_NORMAL), +}; + +static const struct ScriptCommand s_gs193_g3_s0_lives0_dlg2[] = { /* 0x8243fb0 */ + DEBUGINFO, + EXECUTE_STATION(-1, 3, 1), + HALT, +}; + +static const struct ScriptCommand s_gs193_g3_s0_evt0_sref_script[] = { /* 0x8243fe0 */ + DEBUGINFO, + EXECUTE_STATION(-1, 3, 1), + HALT, +}; + +static const struct ScriptRef s_gs193_g3_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs193_g3_s0_evt0_sref_script }; /* 0x8244010 */ + +static const struct ScriptCommand s_gs193_g3_s1_station_sref_script[] = { /* 0x824401c */ + DEBUGINFO, + SELECT_ENTITIES(-1, 1), + CANCEL_ENTITIES(-1, 0), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs193_g3_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs193_g3_s1_station_sref_script }; /* 0x824406c */ + +static const struct ScriptCommand s_gs193_g3_s1_lives0_dlg0[] = { /* 0x8244078 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x8e, 0x01, 0x0000, 0x00000022, 0x00000000, NULL }, + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" Hey, $n0.\nAre you all ready?")), + VARIANT_DEFAULT(_(" Hi, $n0.\nAre you ready?")), + CHOICE(/* label */ 0, _("All set!")), + CHOICE(/* label */ 1, _("Not yet.")), + LABEL(1), /* = 0x01 */ + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" All right.\nWe'll go when you're ready.")), + VARIANT_DEFAULT(_(" OK.\nLet's go when you're ready.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + ASK3( TRUE, /*default*/ 0, /* speaker */ 1, _(" Which way should we go?")), + CHOICE(/* label */ 2, _("Lapis Cave.")), + CHOICE(/* label */ 3, _("Rock Path.")), + JUMP_LABEL(1), + LABEL(2), /* = 0x02 */ + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" All right!\nLet's roll out!")), + VARIANT_DEFAULT(_(" OK!\nLet's go!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CJUMP_UNK_C8(34), + COND_EQUAL(4, /* to label */ 4), + COND_EQUAL(3, /* to label */ 4), + COND_EQUAL(2, /* to label */ 4), + COND_EQUAL(5, /* to label */ 4), + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x23, 0x00, 0x0046, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + JUMP_LABEL(5), + LABEL(4), /* = 0x04 */ + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x00, 0x0046, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x6b, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + LABEL(5), /* = 0x05 */ + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x07, 0x00, 0x001e, 0x0000000a, 0x00000000, NULL }, + COND_EQUAL(-1, /* to label */ 1), + HALT, + LABEL(3), /* = 0x03 */ + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" All right!\nLet's roll out!")), + VARIANT_DEFAULT(_(" OK!\nLet's go!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CJUMP_UNK_C8(34), + COND_EQUAL(2, /* to label */ 6), + COND_EQUAL(3, /* to label */ 6), + COND_EQUAL(4, /* to label */ 6), + COND_EQUAL(5, /* to label */ 6), + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x00, 0x0046, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + JUMP_LABEL(7), + LABEL(6), /* = 0x06 */ + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x00, 0x0046, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x6b, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + LABEL(7), /* = 0x07 */ + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x06, 0x00, 0x001e, 0x0000004e, 0x00000000, NULL }, + COND_EQUAL(-1, /* to label */ 1), + HALT, +}; + +static const struct ScriptCommand s_gs193_g3_s1_lives1_dlg0[] = { /* 0x8244648 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000400, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CJUMP_UNK_C8(0), + COND_EQUAL(0, /* to label */ 0), + COND_EQUAL(1, /* to label */ 0), + COND_EQUAL(7, /* to label */ 0), + COND_EQUAL(6, /* to label */ 0), + { 0x91, 0x04, 0x000b, 0x00000003, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + HALT, + LABEL(0), /* = 0x00 */ + { 0x91, 0x04, 0x000b, 0x00000003, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs193_g4_s0_station_sref_script[] = { /* 0x8244768 */ + DEBUGINFO, + SELECT_MAP(193), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(102), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + CALL_STATION( 3, 0), + RET, +}; + +static const struct ScriptRef s_gs193_g4_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs193_g4_s0_station_sref_script }; /* 0x82447f8 */ + +static const struct ScriptCommand s_gs193_g4_s0_lives0_dlg0[] = { /* 0x8244804 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x89, 0x20, 0x0100, 0x00000007, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What the...?#W\nIsn't this where we started from?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(468), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(LOOK_AROUND_RIGHT_FUNC), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ............#W\nI guess that path just loops back to the\nstart.")), + VARIANT(/* == */ 1, _(" If we want to move on,\nI think our only choice is the #CDLapis Cave#R.")), + VARIANT(/* == */ 1, _(" $n0, let's give it\nour best!")), + VARIANT_DEFAULT(_(" ............#W\nI guess that path we took just loops back\nto where it started.")), + VARIANT_DEFAULT(_(" It looks like we have to go\nthrough the #CDLapis Cave#R to move on.")), + VARIANT_DEFAULT(_(" $n0, let's do our\nbest!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs193_g4_s0_lives1_dlg0[] = { /* 0x8244bb4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x30, 0x0100, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs193_g5_s0_station_sref_script[] = { /* 0x8244c94 */ + DEBUGINFO, + SELECT_MAP(193), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(102), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + CALL_STATION( 3, 0), + RET, +}; + +static const struct ScriptRef s_gs193_g5_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs193_g5_s0_station_sref_script }; /* 0x8244d24 */ + +static const struct ScriptCommand s_gs193_g5_s0_lives0_dlg0[] = { /* 0x8244d30 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_RIGHT_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Urrggh...#W\nWe couldn't get through...")), + VARIANT_DEFAULT(_(" Ouch...#W\nWe couldn't break through...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" We have to get through this\nfast, or they'll catch up to us.")), + VARIANT(/* == */ 1, _(" $n0, let's give it\nour best!")), + VARIANT_DEFAULT(_(" If we don't get through here\nfast, they'll catch up to us.")), + VARIANT_DEFAULT(_(" $n0, let's do our\nbest!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs193_g5_s0_lives1_dlg0[] = { /* 0x8244f58 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs193_g0_s0_lives[] = { /* 0x8245028 */ + /* 0 */ { 144, 0, 0, 0, { 10, 21, 0, CPOS_HALFTILE }, {} }, +}; + +static const struct GroundLivesData s_gs193_g0_s1_lives[] = { /* 0x8245040 */ + /* 0 */ { 0, 2, 0, 0, { 7, 27, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs193_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 2, 0, 0, { 3, 27, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs193_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs193_g0_s2_lives[] = { /* 0x8245070 */ + /* 0 */ { 0, 0, 0, 0, { 34, 21, 0, CPOS_HALFTILE }, { + [0] = s_gs193_g0_s2_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 34, 19, 0, CPOS_HALFTILE }, { + [0] = s_gs193_g0_s2_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs193_g0_s3_lives[] = { /* 0x82450a0 */ + /* 0 */ { 0, 2, 0, 0, { 7, 27, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs193_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 2, 0, 0, { 3, 27, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs193_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs193_g0_s4_lives[] = { /* 0x82450d0 */ + /* 0 */ { 0, 2, 0, 0, { 7, 27, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs193_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 2, 0, 0, { 3, 27, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs193_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs193_g0_s5_lives[] = { /* 0x8245100 */ + /* 0 */ { 144, 0, 0, 0, { 10, 21, 0, CPOS_HALFTILE }, {} }, + /* 1 */ { 145, 0, 0, 0, { 8, 31, 0, CPOS_HALFTILE }, {} }, +}; + +static const struct GroundLivesData s_gs193_g1_s0_lives[] = { /* 0x8245130 */ + /* 0 */ { 0, 2, 0, 0, { 3, 26, 0, CPOS_HALFTILE }, { + [0] = s_gs193_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 2, 0, 0, { 8, 26, 0, CPOS_HALFTILE }, { + [0] = s_gs193_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs193_g2_s0_lives[] = { /* 0x8245160 */ + /* 0 */ { 0, 2, 0, 0, { 22, 26, 0, CPOS_HALFTILE }, { + [0] = s_gs193_g2_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 6, 0, 0, { 27, 26, 0, CPOS_HALFTILE }, { + [0] = s_gs193_g2_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs193_g3_s0_lives[] = { /* 0x8245190 */ + /* 0 */ { 34, 0, 0, 0, { 27, 26, 0, CPOS_HALFTILE }, { + [1] = s_gs193_g3_s0_lives0_dlg1, + [2] = s_gs193_g3_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs193_g3_s1_lives[] = { /* 0x82451a8 */ + /* 0 */ { 0, 2, 0, 0, { 23, 26, 0, CPOS_HALFTILE }, { + [0] = s_gs193_g3_s1_lives0_dlg0, + } }, + /* 1 */ { 34, 0, 0, 0, { 27, 26, 0, CPOS_HALFTILE }, { + [0] = s_gs193_g3_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs193_g4_s0_lives[] = { /* 0x82451d8 */ + /* 0 */ { 0, 2, 0, 0, { 26, 22, 0, CPOS_HALFTILE }, { + [0] = s_gs193_g4_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 6, 0, 0, { 33, 20, 0, CPOS_HALFTILE }, { + [0] = s_gs193_g4_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs193_g5_s0_lives[] = { /* 0x8245208 */ + /* 0 */ { 0, 2, 0, 0, { 22, 26, 0, CPOS_HALFTILE }, { + [0] = s_gs193_g5_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 6, 0, 0, { 27, 26, 0, CPOS_HALFTILE }, { + [0] = s_gs193_g5_s0_lives1_dlg0, + } }, +}; + +static const struct GroundObjectData s_gs193_g0_s0_objs[] = { /* 0x8245238 */ + /* 0 */ { 4, 0, 4, 2, { 10, 22, 0, 0 }, { + [2] = s_gs193_g0_s0_obj0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs193_g0_s5_objs[] = { /* 0x8245250 */ + /* 0 */ { 4, 0, 4, 2, { 10, 22, 0, 0 }, { + [2] = s_gs193_g0_s5_obj0_dlg2, + } }, + /* 1 */ { 4, 0, 4, 3, { 8, 31, 0, CPOS_HALFTILE }, { + [2] = s_gs193_g0_s5_obj1_dlg2, + } }, +}; + +static const struct GroundEffectData s_gs193_g1_s0_effs[] = { /* 0x8245280 */ + /* 0 */ { 0, 0, 1, 1, { 27, 25, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs193_g2_s0_effs[] = { /* 0x824528c */ + /* 0 */ { 0, 0, 1, 1, { 24, 24, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs193_g4_s0_effs[] = { /* 0x8245298 */ + /* 0 */ { 0, 0, 1, 1, { 24, 24, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs193_g5_s0_effs[] = { /* 0x82452a4 */ + /* 0 */ { 0, 0, 1, 1, { 24, 24, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEventData s_gs193_g3_s0_evts[] = { /* 0x82452b0 */ + /* 0 */ { 12, 3, 0, 0, { 28, 16, 0, 0 }, &s_gs193_g3_s0_evt0_sref }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x82452bc */ + &s_gs193_g0_s0_station_sref, + &s_gs193_g1_s0_station_sref, + &s_gs193_g2_s0_station_sref, + &s_gs193_g3_s0_station_sref, + &s_gs193_g3_s1_station_sref, + &s_gs193_g4_s0_station_sref, + &s_gs193_g5_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs193_g0_sectors[] = { /* 0x82452d8 */ + { LPARRAY(s_gs193_g0_s0_lives), LPARRAY(s_gs193_g0_s0_objs), 0,NULL, 0,NULL, 1,&sStationScripts[0], }, + { LPARRAY(s_gs193_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs193_g0_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs193_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs193_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs193_g0_s5_lives), LPARRAY(s_gs193_g0_s5_objs), 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs193_g1_sectors[] = { /* 0x82453c8 */ + { LPARRAY(s_gs193_g1_s0_lives), 0,NULL, LPARRAY(s_gs193_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs193_g2_sectors[] = { /* 0x82453f0 */ + { LPARRAY(s_gs193_g2_s0_lives), 0,NULL, LPARRAY(s_gs193_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptSector s_gs193_g3_sectors[] = { /* 0x8245418 */ + { LPARRAY(s_gs193_g3_s0_lives), 0,NULL, 0,NULL, LPARRAY(s_gs193_g3_s0_evts), 1,&sStationScripts[3], }, + { LPARRAY(s_gs193_g3_s1_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[4], }, +}; + +static const struct GroundScriptSector s_gs193_g4_sectors[] = { /* 0x8245468 */ + { LPARRAY(s_gs193_g4_s0_lives), 0,NULL, LPARRAY(s_gs193_g4_s0_effs), 0,NULL, 1,&sStationScripts[5], }, +}; + +static const struct GroundScriptSector s_gs193_g5_sectors[] = { /* 0x8245490 */ + { LPARRAY(s_gs193_g5_s0_lives), 0,NULL, LPARRAY(s_gs193_g5_s0_effs), 0,NULL, 1,&sStationScripts[6], }, +}; + +static const struct GroundScriptGroup s_gs193_groups[] = { /* 0x82454b8 */ + { LPARRAY(s_gs193_g0_sectors) }, + { LPARRAY(s_gs193_g1_sectors) }, + { LPARRAY(s_gs193_g2_sectors) }, + { LPARRAY(s_gs193_g3_sectors) }, + { LPARRAY(s_gs193_g4_sectors) }, + { LPARRAY(s_gs193_g5_sectors) }, +}; + +static const struct GroundLink s_gs193_links[] = { /* 0x82454e8 */ + /* link 0 */ { { /*x*/ 25, /*y*/ 26, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 29, /*y*/ 26, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 2 */ { { /*x*/ 34, /*y*/ 17, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs193 = { LPARRAY(s_gs193_groups), s_gs193_links }; /* 0x8245500 */ diff --git a/src/data/ground/ground_data_d08p02_station.h b/src/data/ground/ground_data_d08p02_station.h new file mode 100644 index 000000000..dc97d2ddc --- /dev/null +++ b/src/data/ground/ground_data_d08p02_station.h @@ -0,0 +1,148 @@ + + + + + + + + + + +static const struct ScriptCommand s_gs194_g0_s0_station_sref_script[] = { /* 0x8245514 */ + DEBUGINFO, + SELECT_MAP(194), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs194_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs194_g0_s0_station_sref_script }; /* 0x8245580 */ + +static const struct ScriptCommand s_gs194_g1_s0_station_sref_script[] = { /* 0x824558c */ + DEBUGINFO, + SELECT_MAP(194), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(10), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Stop right there!\nDon't let them get away!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Sure. Like we're really\ngoing to wait because they said so.")), + VARIANT_DEFAULT(_(" They expect us to stop and\nwait for them?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs194_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs194_g1_s0_station_sref_script }; /* 0x8245728 */ + + + +static const struct ScriptCommand s_gs194_g1_s0_lives0_dlg0[] = { /* 0x8245734 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x6b, 0x00, 0x0099, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + WAIT(45), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000022, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Whew...\nWe finally got through that cave.")), + VARIANT(/* == */ 1, _(" Where are the Pokémon\nwho are chasing us?")), + VARIANT_DEFAULT(_(" Whew!\nFinally, we made it through that cave.")), + VARIANT_DEFAULT(_(" Where's the Pokémon mob\nthat's after us?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Hey, look! There they are!\nOver there!") }, + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Catch $n0!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Whoa! Here they come!\nRun!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x89, 0x50, 0x0200, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + +static const struct ScriptCommand s_gs194_g1_s0_lives1_dlg0[] = { /* 0x8245ab0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0099, 0x00000001, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x50, 0x0200, 0x00000002, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs194_g1_s0_lives[] = { /* 0x8245c00 */ + /* 0 */ { 0, 0, 0, 0, { 10, 17, 0, CPOS_HALFTILE }, { + [0] = s_gs194_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 0, 0, 0, { 12, 17, 0, CPOS_HALFTILE }, { + [0] = s_gs194_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs194_g1_s0_effs[] = { /* 0x8245c30 */ + /* 0 */ { 0, 0, 1, 1, { 17, 22, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8245c3c */ + &s_gs194_g0_s0_station_sref, + &s_gs194_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs194_g0_sectors[] = { /* 0x8245c44 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs194_g1_sectors[] = { /* 0x8245c6c */ + { LPARRAY(s_gs194_g1_s0_lives), 0,NULL, LPARRAY(s_gs194_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs194_groups[] = { /* 0x8245c94 */ + { LPARRAY(s_gs194_g0_sectors) }, + { LPARRAY(s_gs194_g1_sectors) }, +}; + +static const struct GroundLink s_gs194_links[] = { /* 0x8245ca4 */ + /* link 0 */ { { /*x*/ 15, /*y*/ 24, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 19, /*y*/ 24, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs194 = { LPARRAY(s_gs194_groups), s_gs194_links }; /* 0x8245cb4 */ diff --git a/src/data/ground/ground_data_d09p01_station.h b/src/data/ground/ground_data_d09p01_station.h new file mode 100644 index 000000000..5c68a8039 --- /dev/null +++ b/src/data/ground/ground_data_d09p01_station.h @@ -0,0 +1,836 @@ + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs195_g0_s0_station_sref_script[] = { /* 0x8245cc8 */ + DEBUGINFO, + JUMPIF_SCENARIOCHECK(5, /* to label */ 0), + EXECUTE_STATION(12, 0, 0), + LABEL(0), /* = 0x00 */ + SELECT_MAP(195), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 12, /* to label */ 1), + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_ENTITIES(2, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 3), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 12, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 11, /* to label */ 6), + JUMP_LABEL(3), + LABEL(5), /* = 0x05 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(3), /* = 0x03 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(6), /* = 0x06 */ + SELECT_LIVES(0, 2), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(25), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs195_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs195_g0_s0_station_sref_script }; /* 0x8245f84 */ + +static const struct ScriptCommand s_gs195_g0_s0_obj0_dlg2[] = { /* 0x8245f90 */ + DEBUGINFO, + JUMP_SCRIPT(SAVE_AND_WAREHOUSE_POINT), +}; + +static const struct ScriptCommand s_gs195_g0_s1_lives0_dlg0[] = { /* 0x8245fb0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs195_g0_s1_lives1_dlg0[] = { /* 0x8245ff0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs195_g0_s2_lives0_dlg0[] = { /* 0x8246030 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs195_g0_s2_lives1_dlg0[] = { /* 0x8246070 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs195_g0_s3_lives0_dlg0[] = { /* 0x82460b0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs195_g0_s3_lives1_dlg0[] = { /* 0x82460f0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs195_g0_s4_lives0_dlg0[] = { /* 0x8246130 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs195_g0_s4_lives1_dlg0[] = { /* 0x8246160 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs195_g0_s5_obj0_dlg2[] = { /* 0x8246190 */ + DEBUGINFO, + JUMP_SCRIPT(WAREHOUSE_POINT), +}; + +static const struct ScriptCommand s_gs195_g0_s5_obj1_dlg2[] = { /* 0x82461b0 */ + DEBUGINFO, + JUMP_SCRIPT(SAVE_POINT), +}; + +static const struct ScriptCommand s_gs195_g1_s0_station_sref_script[] = { /* 0x82461d0 */ + DEBUGINFO, + BGM_STOP, + { 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(195), + SELECT_WEATHER(13), + SELECT_ENTITIES(-1, 0), + WAIT(4), + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Darn it!\nWhere'd they go?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" They had to go this way!\nKeep your eyes open!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Rooooooaaaar!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + FANFARE_PLAY2(503), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Tromp, tromp, tromp, tromp, tromp!") }, + WAIT(120), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("........................") }, + WAIT(120), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ........................") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...I think...#W\nThey're gone.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(25), + { 0x3b, 0x3a, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs195_g1_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs195_g1_s0_station_sref_script }; /* 0x82464f8 */ + + + +static const struct ScriptCommand s_gs195_g1_s0_eff0_script[] = { /* 0x8246504 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + END_DELETE, +}; + +static const struct ScriptCommand s_gs195_g1_s0_lives0_dlg0[] = { /* 0x8246544 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + WAIT(30), + CALL_SCRIPT(LOOK_AROUND_FUNC), + WAIT(20), + { 0x6b, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + WAIT(10), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Whew.\nI think we gave them the slip.")), + VARIANT_DEFAULT(_(" Whew.\nI think we managed to evade them.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But...#W\nThere's no point hiding out here.")), + VARIANT_DEFAULT(_(" But...#W\nThere isn't any point hiding here.")), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We have to get over this\nmountain to get away.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0, we need to\nroll as soon as we're ready.")), + VARIANT_DEFAULT(_(" Let's go as soon as we're\nready, $n0.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs195_g1_s0_lives1_dlg0[] = { /* 0x824696c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x014c, 0x00000003, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000004, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(LOOK_AROUND_FUNC), + WAIT(15), + { 0x6b, 0x00, 0x0100, 0x00000005, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs195_g2_s0_station_sref_script[] = { /* 0x8246acc */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs195_g2_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs195_g2_s0_station_sref_script }; /* 0x8246afc */ + +static const struct ScriptCommand s_gs195_g2_s0_lives0_dlg2[] = { /* 0x8246b08 */ + DEBUGINFO, + EXECUTE_STATION(-1, 2, 1), + HALT, +}; + +static const struct ScriptCommand s_gs195_g2_s0_evt0_sref_script[] = { /* 0x8246b38 */ + DEBUGINFO, + EXECUTE_STATION(-1, 2, 1), + HALT, +}; + +static const struct ScriptRef s_gs195_g2_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs195_g2_s0_evt0_sref_script }; /* 0x8246b68 */ + +static const struct ScriptCommand s_gs195_g2_s1_station_sref_script[] = { /* 0x8246b74 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 1), + CANCEL_ENTITIES(-1, 0), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs195_g2_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs195_g2_s1_station_sref_script }; /* 0x8246bc4 */ + +static const struct ScriptCommand s_gs195_g2_s1_lives0_dlg0[] = { /* 0x8246bd0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x8e, 0x01, 0x0000, 0x00000022, 0x00000000, NULL }, + ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" $n0, are you ready\nto roll?")), + VARIANT_DEFAULT(_(" $n0, are you\nready?")), + CHOICE(/* label */ 2, _("Yes.")), + CHOICE(/* label */ 3, _("*Not yet.")), + LABEL(3), /* = 0x03 */ + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I'll wait while you get ready.")), + VARIANT(/* == */ 1, _(" Other Pokémon are\nwandering about, so make it quick.")), + VARIANT_DEFAULT(_(" I'll be waiting while you get\nready.")), + VARIANT_DEFAULT(_(" Try to be quick.\nOther Pokémon are out looking for us.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + JUMP_SCRIPT(END_TALK), + LABEL(2), /* = 0x02 */ + ASK3( TRUE, /*default*/ 0, /* speaker */ 1, _(" Which way should we go?")), + CHOICE(/* label */ 5, _("Mt. Blaze.")), + CHOICE(/* label */ 6, _("Rock Path.")), + JUMP_LABEL(3), + LABEL(5), /* = 0x05 */ + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" All right!\nLet's roll on out!")), + VARIANT(/* == */ 1, _(" It looks like one wicked\nplace, but let's give it our best!")), + VARIANT_DEFAULT(_(" OK!\nLet's go!")), + VARIANT_DEFAULT(_(" It sounds very rough,\nbut let's try our best!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CJUMP_UNK_C8(34), + COND_EQUAL(4, /* to label */ 7), + COND_EQUAL(3, /* to label */ 7), + COND_EQUAL(5, /* to label */ 7), + WAIT(20), + { 0x23, 0x00, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0099, 0x00000006, 0x00000000, NULL }, + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + WAIT(20), + { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x6b, 0x00, 0x0099, 0x00000006, 0x00000000, NULL }, + LABEL(8), /* = 0x08 */ + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x07, 0x00, 0x001e, 0x0000000b, 0x00000000, NULL }, + COND_EQUAL(-1, /* to label */ 3), + HALT, + LABEL(6), /* = 0x06 */ + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Sure thing!\nLet's roll on out!")), + VARIANT_DEFAULT(_(" OK!\nLet's go!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CJUMP_UNK_C8(34), + COND_EQUAL(4, /* to label */ 9), + COND_EQUAL(3, /* to label */ 9), + COND_EQUAL(5, /* to label */ 9), + WAIT(20), + BGM_FADEOUT(60), + { 0x23, 0x00, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0099, 0x00000006, 0x00000000, NULL }, + JUMP_LABEL(10), + LABEL(9), /* = 0x09 */ + WAIT(20), + BGM_FADEOUT(60), + { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x6b, 0x00, 0x0099, 0x00000006, 0x00000000, NULL }, + LABEL(10), /* = 0x0a */ + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x06, 0x00, 0x001e, 0x0000004e, 0x00000000, NULL }, + COND_EQUAL(-1, /* to label */ 3), + HALT, +}; + + + + +static const struct ScriptCommand s_gs195_g2_s1_lives1_dlg0[] = { /* 0x8247300 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000400, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CJUMP_UNK_C8(0), + COND_EQUAL(0, /* to label */ 0), + COND_EQUAL(1, /* to label */ 0), + COND_EQUAL(7, /* to label */ 0), + WAIT(15), + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0099, 0x00000006, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, + LABEL(0), /* = 0x00 */ + { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0099, 0x00000006, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs195_g3_s0_station_sref_script[] = { /* 0x8247450 */ + DEBUGINFO, + SELECT_MAP(195), + SELECT_WEATHER(13), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(25), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs195_g3_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs195_g3_s0_station_sref_script }; /* 0x82474e0 */ + +static const struct ScriptCommand s_gs195_g3_s0_lives0_dlg0[] = { /* 0x82474ec */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_LEFT_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Urrggh...#W\nWe couldn't get through...")), + VARIANT_DEFAULT(_(" Ouch...#W\nWe couldn't break through...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(463), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, + { 0x2e, 0x08, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Ssh!#W\nSomeone's coming.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0200, 0x00000007, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x00000008, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Where are they?\n$n0 and that sidekick.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Do you think they tried getting over\nMt. Blaze?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" No, that's impossible.#W\nNobody could ever get past it.") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" They should be around here still.\nKeep looking!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Rooooooaaaar!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + FANFARE_PLAY2(503), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Tromp, tromp, tromp, tromp, tromp!") }, + WAIT(120), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("........................") }, + WAIT(120), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ........................") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x6b, 0x00, 0x0200, 0x00000007, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + WAIT(10), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0x91, 0x04, 0x000b, 0x00000007, 0x00000000, NULL }, + WAIT(20), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...Whew.") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" We'll have to get over this\nmountain to get away from them.")), + VARIANT_DEFAULT(_(" If we're going to get away,\nwe'll have to go over the mountain.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + + + +static const struct ScriptCommand s_gs195_g3_s0_lives1_dlg0[] = { /* 0x8247b14 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0200, 0x00000009, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x0000000a, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x00000009, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000005, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs195_g4_s0_station_sref_script[] = { /* 0x8247c94 */ + DEBUGINFO, + SELECT_MAP(195), + SELECT_WEATHER(13), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(25), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs195_g4_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs195_g4_s0_station_sref_script }; /* 0x8247d24 */ + +static const struct ScriptCommand s_gs195_g4_s0_lives0_dlg0[] = { /* 0x8247d30 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x20, 0x0080, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(45), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What the...?#W\nIsn't this where we started from?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(468), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(LOOK_AROUND_RIGHT_FUNC), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ............#W\nI guess that path just loops back to the\nstart.")), + VARIANT(/* == */ 1, _(" If we want to move on,\nI think our only choice is #CDMt. Blaze#R.")), + VARIANT(/* == */ 1, _(" $n0, let's give it\nour best!")), + VARIANT_DEFAULT(_(" ............#W\nI guess that path we took just loops back\nto where it started.")), + VARIANT_DEFAULT(_(" It looks like we have to go\nover #CDMt. Blaze#R to move on.")), + VARIANT_DEFAULT(_(" $n0, let's do our\nbest!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs195_g4_s0_lives1_dlg0[] = { /* 0x82480b4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x40, 0x0080, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs195_g5_s0_station_sref_script[] = { /* 0x8248194 */ + DEBUGINFO, + SELECT_MAP(195), + SELECT_WEATHER(13), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(25), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs195_g5_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs195_g5_s0_station_sref_script }; /* 0x8248224 */ + +static const struct ScriptCommand s_gs195_g5_s0_lives0_dlg0[] = { /* 0x8248230 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_RIGHT_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Urrggh...#W\nWe couldn't get through...")), + VARIANT_DEFAULT(_(" Ouch...#W\nWe couldn't break through...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" We have to get through this\nfast, or they'll catch up to us.")), + VARIANT(/* == */ 1, _(" $n0, let's give it\nour best!")), + VARIANT_DEFAULT(_(" If we don't get through here\nfast, they'll catch up to us.")), + VARIANT_DEFAULT(_(" $n0, let's do our\nbest!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs195_g5_s0_lives1_dlg0[] = { /* 0x8248458 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs195_g0_s0_lives[] = { /* 0x8248528 */ + /* 0 */ { 144, 0, 0, 0, { 28, 30, 0, CPOS_HALFTILE }, {} }, +}; + +static const struct GroundLivesData s_gs195_g0_s1_lives[] = { /* 0x8248540 */ + /* 0 */ { 0, 4, 0, 0, { 22, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs195_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 22, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs195_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs195_g0_s2_lives[] = { /* 0x8248570 */ + /* 0 */ { 0, 0, 0, 0, { 22, 24, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs195_g0_s2_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 22, 22, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs195_g0_s2_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs195_g0_s3_lives[] = { /* 0x82485a0 */ + /* 0 */ { 0, 4, 0, 0, { 22, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs195_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 22, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs195_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs195_g0_s4_lives[] = { /* 0x82485d0 */ + /* 0 */ { 0, 4, 0, 0, { 22, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs195_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 22, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs195_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs195_g0_s5_lives[] = { /* 0x8248600 */ + /* 0 */ { 144, 0, 0, 0, { 28, 30, 0, CPOS_HALFTILE }, {} }, + /* 1 */ { 145, 0, 0, 0, { 28, 35, 0, CPOS_HALFTILE }, {} }, +}; + +static const struct GroundLivesData s_gs195_g1_s0_lives[] = { /* 0x8248630 */ + /* 0 */ { 0, 3, 0, 0, { 3, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs195_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 3, 0, 0, { 4, 36, 0, CPOS_HALFTILE }, { + [0] = s_gs195_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs195_g2_s0_lives[] = { /* 0x8248660 */ + /* 0 */ { 34, 0, 0, 0, { 24, 26, 0, CPOS_HALFTILE }, { + [2] = s_gs195_g2_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs195_g2_s1_lives[] = { /* 0x8248678 */ + /* 0 */ { 0, 2, 0, 0, { 21, 26, 0, CPOS_HALFTILE }, { + [0] = s_gs195_g2_s1_lives0_dlg0, + } }, + /* 1 */ { 34, 6, 0, 0, { 24, 26, 0, CPOS_HALFTILE }, { + [0] = s_gs195_g2_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs195_g3_s0_lives[] = { /* 0x82486a8 */ + /* 0 */ { 0, 2, 0, 0, { 21, 26, 0, CPOS_HALFTILE }, { + [0] = s_gs195_g3_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 6, 0, 0, { 24, 26, 0, CPOS_HALFTILE }, { + [0] = s_gs195_g3_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs195_g4_s0_lives[] = { /* 0x82486d8 */ + /* 0 */ { 0, 2, 0, 0, { 21, 24, 0, CPOS_HALFTILE }, { + [0] = s_gs195_g4_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 6, 0, 0, { 24, 22, 0, CPOS_HALFTILE }, { + [0] = s_gs195_g4_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs195_g5_s0_lives[] = { /* 0x8248708 */ + /* 0 */ { 0, 2, 0, 0, { 21, 26, 0, CPOS_HALFTILE }, { + [0] = s_gs195_g5_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 6, 0, 0, { 24, 26, 0, CPOS_HALFTILE }, { + [0] = s_gs195_g5_s0_lives1_dlg0, + } }, +}; + +static const struct GroundObjectData s_gs195_g0_s0_objs[] = { /* 0x8248738 */ + /* 0 */ { 4, 0, 4, 3, { 28, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs195_g0_s0_obj0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs195_g0_s5_objs[] = { /* 0x8248750 */ + /* 0 */ { 4, 0, 4, 3, { 28, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs195_g0_s5_obj0_dlg2, + } }, + /* 1 */ { 4, 0, 4, 3, { 28, 35, 0, CPOS_HALFTILE }, { + [2] = s_gs195_g0_s5_obj1_dlg2, + } }, +}; + +static const struct GroundEffectData s_gs195_g1_s0_effs[] = { /* 0x8248780 */ + /* 0 */ { 0, 0, 1, 1, { 22, 25, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs195_g1_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs195_g3_s0_effs[] = { /* 0x824878c */ + /* 0 */ { 0, 0, 1, 1, { 22, 25, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs195_g4_s0_effs[] = { /* 0x8248798 */ + /* 0 */ { 0, 0, 1, 1, { 22, 25, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs195_g5_s0_effs[] = { /* 0x82487a4 */ + /* 0 */ { 0, 0, 1, 1, { 22, 25, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEventData s_gs195_g2_s0_evts[] = { /* 0x82487b0 */ + /* 0 */ { 12, 3, 0, 0, { 17, 19, 0, 0 }, &s_gs195_g2_s0_evt0_sref }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x82487bc */ + &s_gs195_g0_s0_station_sref, + &s_gs195_g1_s0_station_sref, + &s_gs195_g2_s0_station_sref, + &s_gs195_g2_s1_station_sref, + &s_gs195_g3_s0_station_sref, + &s_gs195_g4_s0_station_sref, + &s_gs195_g5_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs195_g0_sectors[] = { /* 0x82487d8 */ + { LPARRAY(s_gs195_g0_s0_lives), LPARRAY(s_gs195_g0_s0_objs), 0,NULL, 0,NULL, 1,&sStationScripts[0], }, + { LPARRAY(s_gs195_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs195_g0_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs195_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs195_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs195_g0_s5_lives), LPARRAY(s_gs195_g0_s5_objs), 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs195_g1_sectors[] = { /* 0x82488c8 */ + { LPARRAY(s_gs195_g1_s0_lives), 0,NULL, LPARRAY(s_gs195_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs195_g2_sectors[] = { /* 0x82488f0 */ + { LPARRAY(s_gs195_g2_s0_lives), 0,NULL, 0,NULL, LPARRAY(s_gs195_g2_s0_evts), 1,&sStationScripts[2], }, + { LPARRAY(s_gs195_g2_s1_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[3], }, +}; + +static const struct GroundScriptSector s_gs195_g3_sectors[] = { /* 0x8248940 */ + { LPARRAY(s_gs195_g3_s0_lives), 0,NULL, LPARRAY(s_gs195_g3_s0_effs), 0,NULL, 1,&sStationScripts[4], }, +}; + +static const struct GroundScriptSector s_gs195_g4_sectors[] = { /* 0x8248968 */ + { LPARRAY(s_gs195_g4_s0_lives), 0,NULL, LPARRAY(s_gs195_g4_s0_effs), 0,NULL, 1,&sStationScripts[5], }, +}; + +static const struct GroundScriptSector s_gs195_g5_sectors[] = { /* 0x8248990 */ + { LPARRAY(s_gs195_g5_s0_lives), 0,NULL, LPARRAY(s_gs195_g5_s0_effs), 0,NULL, 1,&sStationScripts[6], }, +}; + +static const struct GroundScriptGroup s_gs195_groups[] = { /* 0x82489b8 */ + { LPARRAY(s_gs195_g0_sectors) }, + { LPARRAY(s_gs195_g1_sectors) }, + { LPARRAY(s_gs195_g2_sectors) }, + { LPARRAY(s_gs195_g3_sectors) }, + { LPARRAY(s_gs195_g4_sectors) }, + { LPARRAY(s_gs195_g5_sectors) }, +}; + +static const struct GroundLink s_gs195_links[] = { /* 0x82489e8 */ + /* link 0 */ { { /*x*/ 11, /*y*/ 37, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 17, /*y*/ 30, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 2 */ { { /*x*/ 21, /*y*/ 26, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 3 */ { { /*x*/ 15, /*y*/ 36, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 4 */ { { /*x*/ 21, /*y*/ 29, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 5 */ { { /*x*/ 24, /*y*/ 26, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 6 */ { { /*x*/ 22, /*y*/ 20, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 7 */ { { /*x*/ 11, /*y*/ 37, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 8 */ { { /*x*/ 3, /*y*/ 37, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 9 */ { { /*x*/ 15, /*y*/ 36, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 10 */ { { /*x*/ 4, /*y*/ 36, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs195 = { LPARRAY(s_gs195_groups), s_gs195_links }; /* 0x8248a40 */ diff --git a/src/data/ground/ground_data_d09p02_station.h b/src/data/ground/ground_data_d09p02_station.h new file mode 100644 index 000000000..84209f552 --- /dev/null +++ b/src/data/ground/ground_data_d09p02_station.h @@ -0,0 +1,281 @@ + + + + + + + + +static const struct ScriptCommand s_gs196_g0_s0_station_sref_script[] = { /* 0x8248a54 */ + DEBUGINFO, + SELECT_MAP(196), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 12, /* to label */ 0), + COND(JUDGE_GT, 17, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 3), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMP_LABEL(3), + LABEL(5), /* = 0x05 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 6), + JUMP_LABEL(6), + LABEL(3), /* = 0x03 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(7), + LABEL(6), /* = 0x06 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(7), + LABEL(7), /* = 0x07 */ + BGM_SWITCH(25), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs196_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs196_g0_s0_station_sref_script }; /* 0x8248cc0 */ + +static const struct ScriptCommand s_gs196_g0_s0_evt0_sref_script[] = { /* 0x8248ccc */ + DEBUGINFO, + ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Keep going?")), + CHOICE(/* label */ 0, _("Yes.")), + CHOICE(/* label */ 1, _("*No.")), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x02, 0x00, 0x001e, 0x0000000c, 0x00000000, NULL }, + COND_EQUAL(-1, /* to label */ 1), + HALT, +}; + +static const struct ScriptRef s_gs196_g0_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs196_g0_s0_evt0_sref_script }; /* 0x8248da8 */ + +static const struct ScriptCommand s_gs196_g0_s0_evt1_sref_script[] = { /* 0x8248db4 */ + DEBUGINFO, + JUMPIF_SCENARIOCHECK(5, /* to label */ 0), + ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Return to the rescue team base?")), + CHOICE(/* label */ 1, _("Yes.")), + CHOICE(/* label */ 2, _("*No.")), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(30), + { 0x23, 0x01, -0x0001, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER4_FUNC), + SET_DUNGEON_RES(/* result */ 10, /* enter */ -1), + EXECUTE_STATION(12, 4, 0), + HALT, + LABEL(0), /* = 0x00 */ + ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Return to the entrance?")), + CHOICE(/* label */ 3, _("Yes.")), + CHOICE(/* label */ 4, _("*No.")), + LABEL(4), /* = 0x04 */ + JUMP_SCRIPT(END_TALK), + LABEL(3), /* = 0x03 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x01, 0x00, 0x001e, 0x000000c3, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptRef s_gs196_g0_s0_evt1_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs196_g0_s0_evt1_sref_script }; /* 0x8248f7c */ + +static const struct ScriptCommand s_gs196_g0_s0_obj0_dlg2[] = { /* 0x8248f88 */ + DEBUGINFO, + JUMP_SCRIPT(SAVE_POINT), +}; + +static const struct ScriptCommand s_gs196_g0_s1_lives0_dlg0[] = { /* 0x8248fa8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs196_g0_s1_lives1_dlg0[] = { /* 0x8248fe8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs196_g0_s3_lives0_dlg0[] = { /* 0x8249028 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs196_g0_s3_lives1_dlg0[] = { /* 0x8249068 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs196_g0_s4_lives0_dlg0[] = { /* 0x82490a8 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs196_g0_s4_lives1_dlg0[] = { /* 0x82490d8 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs196_g1_s0_station_sref_script[] = { /* 0x8249108 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 196), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 196), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(196), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(25), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs196_g1_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs196_g1_s0_station_sref_script }; /* 0x82491d8 */ + +static const struct ScriptCommand s_gs196_g1_s0_lives0_dlg0[] = { /* 0x82491e4 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_LEFT_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hmm...#W\nWell, that didn't go well.")), + VARIANT_DEFAULT(_(" Hmm...#W\nThat didn't work out...")), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But we almost made it.#W\nLet's give it our best again!")), + VARIANT_DEFAULT(_(" But we came close.#W\nLet's keep doing our best!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs196_g1_s0_lives1_dlg0[] = { /* 0x8249404 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct GroundLivesData s_gs196_g0_s0_lives[] = { /* 0x82494c4 */ + /* 0 */ { 145, 0, 0, 0, { 28, 28, CPOS_HALFTILE, CPOS_HALFTILE }, {} }, +}; + +static const struct GroundLivesData s_gs196_g0_s1_lives[] = { /* 0x82494dc */ + /* 0 */ { 0, 4, 0, 0, { 28, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs196_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs196_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs196_g0_s3_lives[] = { /* 0x824950c */ + /* 0 */ { 0, 4, 0, 0, { 28, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs196_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs196_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs196_g0_s4_lives[] = { /* 0x824953c */ + /* 0 */ { 0, 4, 0, 0, { 28, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs196_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs196_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs196_g1_s0_lives[] = { /* 0x824956c */ + /* 0 */ { 0, 2, 0, 0, { 31, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs196_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 4, 6, 0, 0, { 26, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs196_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundObjectData s_gs196_g0_s0_objs[] = { /* 0x824959c */ + /* 0 */ { 4, 0, 4, 3, { 28, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs196_g0_s0_obj0_dlg2, + } }, +}; + +static const struct GroundEffectData s_gs196_g1_s0_effs[] = { /* 0x82495b4 */ + /* 0 */ { 0, 0, 1, 1, { 28, 37, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEventData s_gs196_g0_s0_evts[] = { /* 0x82495c0 */ + /* 0 */ { 15, 3, 0, 0, { 21, 12, 0, 0 }, &s_gs196_g0_s0_evt0_sref }, + /* 1 */ { 15, 3, 0, 0, { 21, 42, 0, 0 }, &s_gs196_g0_s0_evt1_sref }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x82495d8 */ + &s_gs196_g0_s0_station_sref, + &s_gs196_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs196_g0_sectors[] = { /* 0x82495e0 */ + { LPARRAY(s_gs196_g0_s0_lives), LPARRAY(s_gs196_g0_s0_objs), 0,NULL, LPARRAY(s_gs196_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs196_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs196_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs196_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs196_g1_sectors[] = { /* 0x82496a8 */ + { LPARRAY(s_gs196_g1_s0_lives), 0,NULL, LPARRAY(s_gs196_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs196_groups[] = { /* 0x82496d0 */ + { LPARRAY(s_gs196_g0_sectors) }, + { LPARRAY(s_gs196_g1_sectors) }, +}; + +static const struct GroundLink s_gs196_links[] = { /* 0x82496e0 */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs196 = { LPARRAY(s_gs196_groups), s_gs196_links }; /* 0x82496e8 */ diff --git a/src/data/ground/ground_data_d09p03_station.h b/src/data/ground/ground_data_d09p03_station.h new file mode 100644 index 000000000..e5ad59b53 --- /dev/null +++ b/src/data/ground/ground_data_d09p03_station.h @@ -0,0 +1,451 @@ + + + + + + + + + +static const struct ScriptCommand s_gs197_g0_s0_station_sref_script[] = { /* 0x82496fc */ + DEBUGINFO, + SELECT_MAP(197), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs197_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs197_g0_s0_station_sref_script }; /* 0x8249768 */ + +static const struct ScriptCommand s_gs197_g1_s0_station_sref_script[] = { /* 0x8249774 */ + DEBUGINFO, + SELECT_MAP(197), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(114), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs197_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs197_g1_s0_station_sref_script }; /* 0x82497f4 */ + +static const struct ScriptCommand s_gs197_g1_s0_eff0_script[] = { /* 0x8249800 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x18, 0x0200, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x30, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs197_g1_s0_lives0_dlg0[] = { /* 0x82498b0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _("Urggggh!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm not done!\nI'm not finished yet!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(460), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(455), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x2e, 0x02, 0x0001, 0x00000007, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Wait!\nHold it!")), + VARIANT(/* == */ 1, _(" We didn't come to cause any\ntrouble.")), + VARIANT(/* == */ 3, _(" Wait! Please listen!")), + VARIANT(/* == */ 3, _(" We're not here to cause\nany trouble.")), + VARIANT_DEFAULT(_(" Wait! Listen!")), + VARIANT_DEFAULT(_(" We're not here to cause\ntrouble.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" We came here because we\nwere chased here.")), + VARIANT(/* == */ 1, _(" And listen, this mountain\nisn't the only place that is suffering.")), + VARIANT(/* == */ 1, _(" Natural disasters are\nbreaking out all over the place.")), + VARIANT(/* == */ 1, _(" We can't do anything to help\nbecause we're on the run now...")), + VARIANT(/* == */ 1, _(" But we want to help\nPokémon that are suffering from these\nnatural disasters.")), + VARIANT(/* == */ 3, _(" We were chased to this\nmountain...")), + VARIANT(/* == */ 3, _(" And you should know, this\nmountain isn't the only place that is\nsuffering.")), + VARIANT(/* == */ 3, _(" Natural calamities are\nhappening in all sorts of places.")), + VARIANT(/* == */ 3, _(" We can't do anything\nbecause we're fugitives now.")), + VARIANT(/* == */ 3, _(" But we want to help\nPokémon in these times of natural\ndisasters.")), + VARIANT_DEFAULT(_(" We're here only because\nwe were chased here.")), + VARIANT_DEFAULT(_(" You have to realize, this\nmountain isn't the only place that's\nsuffering.")), + VARIANT_DEFAULT(_(" Natural calamities are\noccurring all over the place.")), + VARIANT_DEFAULT(_(" We're fugitives now, so\nwe can't do anything...")), + VARIANT_DEFAULT(_(" But we want to help other\nPokémon that are suffering from these\nnatural disasters.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................#W\nDo you say that sincerely?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I'm not lying to you.\nBelieve me.")), + VARIANT(/* == */ 1, _(" If you think I'm lying...#W\nLook at my eyes!")), + VARIANT(/* == */ 3, _(" It's true!\nPlease believe me!")), + VARIANT(/* == */ 3, _(" If you think I'm lying...#W\nPlease, look at my eyes!")), + VARIANT_DEFAULT(_(" It's true!\nPlease believe me!")), + VARIANT_DEFAULT(_(" If you think I'm lying...#W\nLook at my eyes!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ......") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ........................") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ....................................") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Gyaaaaaah!") }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + FANFARE_PLAY2(492), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x0005, 0x00000005, 0x00ffffff, NULL }, + { 0x27, 0x01, 0x0005, 0x0000000a, 0x00ffffff, NULL }, + WAIT(10), + { 0x28, 0x01, 0x0005, 0x00000005, 0x00ffffff, NULL }, + { 0x27, 0x01, 0x0005, 0x0000000a, 0x00ffffff, NULL }, + WAIT(90), + { 0x31, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(5), + CALL_SCRIPT(SPREE_START_FUNC), + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Aiyiyiyi!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SPREE_END_FUNC), + WAIT(15), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#WFine.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I trust that you aren't lying.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(470), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + { 0x2e, 0x15, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Whew... That was rough...")), + VARIANT(/* == */ 1, _(" I thought I would keel over.")), + VARIANT(/* == */ 3, _(" Whew... My gosh...")), + VARIANT(/* == */ 3, _(" I thought my knees turned\nto jelly.")), + VARIANT_DEFAULT(_(" Whew... That was scary...")), + VARIANT_DEFAULT(_(" It felt like my knees turned\nto jelly.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You may pass.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Get through Mt. Blaze.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And...#W\nPromise me this.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Promise me that you will\nfind the cause of the calamities that\nwrack our world...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And stop the disasters\nfrom sowing more destruction and\nsuffering.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" All right.\nI promise.")), + VARIANT(/* == */ 1, _(" ...Of course, we can't get\nto that right away, but...")), + VARIANT_DEFAULT(_(" OK. I promise.")), + VARIANT_DEFAULT(_(" ...Of course, that's not\npossible right now, but...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Gyaaaaah!") }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + FANFARE_PLAY2(492), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x0005, 0x00000005, 0x00ffffff, NULL }, + { 0x27, 0x01, 0x0005, 0x0000000a, 0x00ffffff, NULL }, + WAIT(10), + { 0x28, 0x01, 0x0005, 0x00000005, 0x00ffffff, NULL }, + { 0x27, 0x01, 0x0005, 0x0000000a, 0x00ffffff, NULL }, + WAIT(90), + { 0x31, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000007, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Whoa, whoa, whoa!\nWe'll get to it! Right away!")), + VARIANT(/* == */ 3, _(" Aiyiyi!\nWe will! We will do it right away!")), + VARIANT_DEFAULT(_(" Waaah!\nWe will! We'll get on it!")), + { 0x2e, 0x15, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" We're fugitives, so we can't\nget to it right away...")), + VARIANT(/* == */ 1, _(" But we're a rescue team.")), + VARIANT(/* == */ 1, _(" We'll get to the bottom of\nwhat's causing the natural disasters.#W\nI promise.")), + VARIANT(/* == */ 3, _(" We're being chased, so we\ncan't get on it right away...")), + VARIANT(/* == */ 3, _(" But we're a rescue team.")), + VARIANT(/* == */ 3, _(" We'll get to the bottom of\nwhat's causing the natural calamities.#W\nI promise.")), + VARIANT_DEFAULT(_(" We're being hunted, so we\ncan't get to it right away...")), + VARIANT_DEFAULT(_(" But we're a rescue team.")), + VARIANT_DEFAULT(_(" We'll investigate what's\nbehind the natural calamities.#W\nI promise.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#W\nI will hold you to that promise.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You've made me believe that\nyou will honor that promise.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If you do not forget...#W\nthe courage you showed in facing me.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(474), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Gyaaaaaaaaaah!") }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + WAIT(80), + { 0x31, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Waaaah!\nIs...is there anything else?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SPREE_END_FUNC), + WAIT(15), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" No.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I was only preparing to\ntake off.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(470), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + WAIT(15), + { 0x2e, 0x15, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh...\n(Does it need to do that?)") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Farewell!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Gyaaaaaaaah!") }, + FANFARE_PLAY2(459), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(100), + { 0x31, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(470), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Whew...") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000007, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Awww, sheesh, that was\nscary!")), + VARIANT_DEFAULT(_(" Ewwwwwww, that was\nscary!")), + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But I'm glad $n2\nunderstood us. Really.")), + VARIANT(/* == */ 1, _(" So, anyway...#W\nWe should get off Mt. Blaze ourselves.")), + VARIANT(/* == */ 3, _(" But it's really great that\n$n2 understood us.")), + VARIANT(/* == */ 3, _(" Anyway...#W\nWe should get off Mt. Blaze, too.")), + VARIANT_DEFAULT(_(" But I'm glad $n2\nunderstood us. That was key.")), + VARIANT_DEFAULT(_(" Anyway...#W\nLet's get off Mt. Blaze ourselves.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + BGM_FADEOUT(150), + { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs197_g1_s0_lives1_dlg0[] = { /* 0x824b53c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SPREE_START_FUNC), + WAIT(15), + CALL_SCRIPT(SPREE_END_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + WAIT(30), + { 0x93, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs197_g1_s0_lives2_dlg0[] = { /* 0x824b75c */ + DEBUGINFO, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0018, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0019, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0018, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0019, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0018, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0019, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + FANFARE_PLAY2(475), + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(45), + FANFARE_PLAY2(475), + { 0x70, 0x00, 0x0099, 0x00000010, 0x00000000, NULL }, + WAIT(16), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(459), + { 0x70, 0x00, 0x0400, 0x00000080, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs197_g1_s0_eff1_script[] = { /* 0x824b9ec */ + DEBUGINFO, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000172, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000172, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs197_g1_s0_eff2_script[] = { /* 0x824ba7c */ + DEBUGINFO, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000172, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000172, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs197_g1_s0_lives[] = { /* 0x824bb0c */ + /* 0 */ { 0, 4, 0, 0, { 37, 26, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs197_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 32, 26, 0, CPOS_HALFTILE }, { + [0] = s_gs197_g1_s0_lives1_dlg0, + } }, + /* 2 */ { 101, 0, 0, 0, { 34, 22, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs197_g1_s0_lives2_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs197_g1_s0_effs[] = { /* 0x824bb54 */ + /* 0 */ { 0, 0, 1, 1, { 34, 24, 0, CPOS_HALFTILE }, s_gs197_g1_s0_eff0_script }, + /* 1 */ { 4, 0, 1, 1, { 29, 18, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs197_g1_s0_eff1_script }, + /* 2 */ { 4, 0, 1, 1, { 39, 18, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs197_g1_s0_eff2_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x824bb78 */ + &s_gs197_g0_s0_station_sref, + &s_gs197_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs197_g0_sectors[] = { /* 0x824bb80 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs197_g1_sectors[] = { /* 0x824bba8 */ + { LPARRAY(s_gs197_g1_s0_lives), 0,NULL, LPARRAY(s_gs197_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs197_groups[] = { /* 0x824bbd0 */ + { LPARRAY(s_gs197_g0_sectors) }, + { LPARRAY(s_gs197_g1_sectors) }, +}; + +static const struct GroundLink s_gs197_links[] = { /* 0x824bbe0 */ + /* link 0 */ { { /*x*/ 21, /*y*/ 26, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs197 = { LPARRAY(s_gs197_groups), s_gs197_links }; /* 0x824bbe8 */ diff --git a/src/data/ground/ground_data_d10p01_station.h b/src/data/ground/ground_data_d10p01_station.h new file mode 100644 index 000000000..28afa0af4 --- /dev/null +++ b/src/data/ground/ground_data_d10p01_station.h @@ -0,0 +1,791 @@ + + + + + + + + + +static const struct ScriptCommand s_gs198_g0_s0_station_sref_script[] = { /* 0x824bbfc */ + DEBUGINFO, + JUMPIF_SCENARIOCHECK(5, /* to label */ 0), + EXECUTE_STATION(12, 0, 0), + LABEL(0), /* = 0x00 */ + SELECT_MAP(198), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 13, /* to label */ 1), + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + CALL_STATION( 2, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 3), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 12, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 11, /* to label */ 6), + JUMP_LABEL(3), + LABEL(5), /* = 0x05 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(3), /* = 0x03 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(6), /* = 0x06 */ + SELECT_LIVES(0, 2), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(36), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs198_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs198_g0_s0_station_sref_script }; /* 0x824beb8 */ + +static const struct ScriptCommand s_gs198_g0_s0_obj0_dlg2[] = { /* 0x824bec4 */ + DEBUGINFO, + JUMP_SCRIPT(SAVE_AND_WAREHOUSE_POINT), +}; + +static const struct ScriptCommand s_gs198_g0_s1_lives0_dlg0[] = { /* 0x824bee4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs198_g0_s1_lives1_dlg0[] = { /* 0x824bf24 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs198_g0_s2_lives0_dlg0[] = { /* 0x824bf64 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs198_g0_s2_lives1_dlg0[] = { /* 0x824bfa4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs198_g0_s3_lives0_dlg0[] = { /* 0x824bfe4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs198_g0_s3_lives1_dlg0[] = { /* 0x824c024 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs198_g0_s4_lives0_dlg0[] = { /* 0x824c094 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs198_g0_s4_lives1_dlg0[] = { /* 0x824c0c4 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs198_g0_s5_obj0_dlg2[] = { /* 0x824c0f4 */ + DEBUGINFO, + JUMP_SCRIPT(WAREHOUSE_POINT), +}; + +static const struct ScriptCommand s_gs198_g0_s5_obj1_dlg2[] = { /* 0x824c114 */ + DEBUGINFO, + JUMP_SCRIPT(SAVE_POINT), +}; + +static const struct ScriptCommand s_gs198_g1_s0_station_sref_script[] = { /* 0x824c134 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 198), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 198), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(198), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(36), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs198_g1_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs198_g1_s0_station_sref_script }; /* 0x824c204 */ + +static const struct ScriptCommand s_gs198_g1_s0_eff0_script[] = { /* 0x824c210 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0xc8, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(1), + END_DELETE, +}; + +static const struct ScriptCommand s_gs198_g1_s0_lives0_dlg0[] = { /* 0x824c290 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...So, we do have to get\nthrough this, huh?")), + VARIANT_DEFAULT(_(" OK.\nWe don't have a choice--we have to\nget through this place.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(0), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" It's going to be awfully cold.\nIt's not anywhere I really want to go...")), + VARIANT_DEFAULT(_(" It will be horribly cold.\nI'd rather not go if I didn't have to...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But there's no point in us\nsticking around here forever...")), + VARIANT(/* == */ 1, _(" We can only go forward!#W\nWe'll just have to go for it and get\nthrough this, $n0!")), + VARIANT_DEFAULT(_(" But hiding out in this area\nisn't the answer either...")), + VARIANT_DEFAULT(_(" We can only go forward.#W\nWe'll just have to keep our spirits up\nand keep going, $n0!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + WAIT(10), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs198_g1_s0_lives1_dlg0[] = { /* 0x824c670 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs198_g2_s0_station_sref_script[] = { /* 0x824c6d0 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs198_g2_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs198_g2_s0_station_sref_script }; /* 0x824c700 */ + +static const struct ScriptCommand s_gs198_g2_s0_lives0_dlg2[] = { /* 0x824c70c */ + DEBUGINFO, + EXECUTE_STATION(-1, 2, 1), + HALT, +}; + +static const struct ScriptCommand s_gs198_g2_s0_evt0_sref_script[] = { /* 0x824c73c */ + DEBUGINFO, + EXECUTE_STATION(-1, 2, 1), + HALT, +}; + +static const struct ScriptRef s_gs198_g2_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs198_g2_s0_evt0_sref_script }; /* 0x824c76c */ + +static const struct ScriptCommand s_gs198_g2_s1_station_sref_script[] = { /* 0x824c778 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 1), + CANCEL_ENTITIES(-1, 0), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs198_g2_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs198_g2_s1_station_sref_script }; /* 0x824c7c8 */ + +static const struct ScriptCommand s_gs198_g2_s1_lives0_dlg0[] = { /* 0x824c7d4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x8e, 0x01, 0x0000, 0x00000022, 0x00000000, NULL }, + ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" $n0, are you ready\nto roll?")), + VARIANT_DEFAULT(_(" $n0, are you\nready?")), + CHOICE(/* label */ 2, _("Yes.")), + CHOICE(/* label */ 3, _("*Not yet.")), + LABEL(3), /* = 0x03 */ + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hah? Not yet?")), + VARIANT(/* == */ 1, _(" All right.\nI'll wait till you're ready.")), + VARIANT_DEFAULT(_(" Huh? Not yet?")), + VARIANT_DEFAULT(_(" OK.\nI'll wait while you get ready.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + JUMP_SCRIPT(END_TALK), + LABEL(2), /* = 0x02 */ + ASK3( TRUE, /*default*/ 0, /* speaker */ 1, _(" Which way should we go?")), + CHOICE(/* label */ 5, _("Frosty Forest.")), + CHOICE(/* label */ 6, _("Snow Path.")), + JUMP_LABEL(3), + LABEL(5), /* = 0x05 */ + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" All right!\nLet's roll on out!")), + VARIANT(/* == */ 1, _(" It's freezing cold, but let's\ngive it our best!")), + VARIANT_DEFAULT(_(" OK!\nLet's go!")), + VARIANT_DEFAULT(_(" It's going to be freezing\ncold, but let's try our best!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CJUMP_UNK_C8(34), + COND_EQUAL(4, /* to label */ 7), + COND_EQUAL(3, /* to label */ 7), + COND_EQUAL(5, /* to label */ 7), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x00, 0x0032, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + BGM_FADEOUT(120), + { 0x86, 0x00, 0x0080, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x00, 0x0040, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + BGM_FADEOUT(120), + { 0x86, 0x00, 0x00b3, 0x00000000, 0x00000000, NULL }, + LABEL(8), /* = 0x08 */ + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x07, 0x00, 0x001e, 0x0000000d, 0x00000000, NULL }, + COND_EQUAL(-1, /* to label */ 3), + HALT, + LABEL(6), /* = 0x06 */ + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Sure thing!\nLet's roll on out!")), + VARIANT_DEFAULT(_(" OK!\nLet's go!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CJUMP_UNK_C8(34), + COND_EQUAL(4, /* to label */ 9), + COND_EQUAL(3, /* to label */ 9), + COND_EQUAL(5, /* to label */ 9), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x00, 0x0032, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + BGM_FADEOUT(120), + { 0x86, 0x00, 0x0080, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(10), + LABEL(9), /* = 0x09 */ + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x00, 0x0040, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + BGM_FADEOUT(120), + { 0x86, 0x00, 0x00c0, 0x00000000, 0x00000000, NULL }, + LABEL(10), /* = 0x0a */ + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x06, 0x00, 0x001e, 0x0000004f, 0x00000000, NULL }, + COND_EQUAL(-1, /* to label */ 3), + HALT, +}; + + + + +static const struct ScriptCommand s_gs198_g2_s1_lives1_dlg0[] = { /* 0x824cea4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000400, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CJUMP_UNK_C8(0), + COND_EQUAL(0, /* to label */ 0), + COND_EQUAL(1, /* to label */ 0), + COND_EQUAL(7, /* to label */ 0), + WAIT(15), + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x86, 0x00, 0x0080, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, + LABEL(0), /* = 0x00 */ + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x86, 0x00, 0x00c0, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs198_g3_s0_station_sref_script[] = { /* 0x824cfe4 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 198), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 198), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(198), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(36), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs198_g3_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs198_g3_s0_station_sref_script }; /* 0x824d0b4 */ + +static const struct ScriptCommand s_gs198_g3_s0_lives0_dlg0[] = { /* 0x824d0c0 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_LEFT_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Urrggh...#W\nWe couldn't get through...")), + VARIANT_DEFAULT(_(" Ouch...#W\nWe couldn't break through...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" This is a tough place...")), + VARIANT_DEFAULT(_(" This is as tough as we\nexpected...")), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But let's give it our best\nand get through this, $n0!")), + VARIANT_DEFAULT(_(" But let's keep trying our\nbest and get through this, $n0!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs198_g3_s0_lives1_dlg0[] = { /* 0x824d364 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs198_g4_s0_station_sref_script[] = { /* 0x824d424 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 198), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 198), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(198), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(36), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs198_g4_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs198_g4_s0_station_sref_script }; /* 0x824d4f4 */ + +static const struct ScriptCommand s_gs198_g4_s0_lives0_dlg0[] = { /* 0x824d500 */ + DEBUGINFO, + { 0x54, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + WAIT(30), + { 0x2d, 0x09, 0x0002, 0x00000066, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hmmm...#W\nWell, that didn't go well.")), + VARIANT_DEFAULT(_(" Hmm...#W\nWe didn't do well at all...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" That $n2...\nHe's one tough customer.")), + VARIANT(/* == */ 1, _(" But why aren't we allowed\nto go into this forest?")), + VARIANT(/* == */ 1, _(" ...It doesn't matter anyway.\nLet's give it our best, $n0!")), + VARIANT_DEFAULT(_(" That Pokémon,\n$n2, is pretty tough.")), + VARIANT_DEFAULT(_(" But why are we forbidden\nfrom entering this forest?")), + VARIANT_DEFAULT(_(" It makes no difference.\n$n0, let's try our best!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs198_g4_s0_lives1_dlg0[] = { /* 0x824d834 */ + DEBUGINFO, + { 0x54, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs198_g5_s0_station_sref_script[] = { /* 0x824d8a4 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 198), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 198), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(198), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(36), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs198_g5_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs198_g5_s0_station_sref_script }; /* 0x824d974 */ + +static const struct ScriptCommand s_gs198_g5_s0_lives0_dlg0[] = { /* 0x824d980 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x10, 0x0080, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What the...?#W\nIsn't this where we started from?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(468), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(LOOK_AROUND_LEFT_FUNC), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ............#W\nI guess that path just loops back to the\nstart.")), + VARIANT(/* == */ 1, _(" If we want to move on,\nI think our only choice is the #CDFrosty\nForest#R.")), + VARIANT(/* == */ 1, _(" $n0, let's give it\nour best!")), + VARIANT_DEFAULT(_(" ............#W\nI guess that path we took just loops back\nto where it started.")), + VARIANT_DEFAULT(_(" It looks like we have to get\nthrough the #CDFrosty Forest#R to move on.")), + VARIANT_DEFAULT(_(" $n0, let's do our\nbest!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs198_g5_s0_lives1_dlg0[] = { /* 0x824dd18 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x20, 0x0080, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs198_g6_s0_station_sref_script[] = { /* 0x824ddf8 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 198), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 198), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(198), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(36), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs198_g6_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs198_g6_s0_station_sref_script }; /* 0x824dec8 */ + +static const struct ScriptCommand s_gs198_g6_s0_lives0_dlg0[] = { /* 0x824ded4 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_RIGHT_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Urrggh...#W\nWe couldn't get through...")), + VARIANT_DEFAULT(_(" Ouch...#W\nWe couldn't break through...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" This is one harsh place,\nbut let's bear down and get through,\n$n0!")), + VARIANT_DEFAULT(_(" This is a harsh place,\nso let's do our best to get through,\n$n0!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs198_g6_s0_lives1_dlg0[] = { /* 0x824e0f8 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs198_g0_s0_lives[] = { /* 0x824e1c8 */ + /* 0 */ { 144, 0, 0, 0, { 7, 30, CPOS_HALFTILE, CPOS_HALFTILE }, {} }, +}; + +static const struct GroundLivesData s_gs198_g0_s1_lives[] = { /* 0x824e1e0 */ + /* 0 */ { 0, 4, 0, 0, { 17, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs198_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 17, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs198_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs198_g0_s2_lives[] = { /* 0x824e210 */ + /* 0 */ { 0, 0, 0, 0, { 17, 32, 0, CPOS_HALFTILE }, { + [0] = s_gs198_g0_s2_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 17, 30, 0, CPOS_HALFTILE }, { + [0] = s_gs198_g0_s2_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs198_g0_s3_lives[] = { /* 0x824e240 */ + /* 0 */ { 0, 4, 0, 0, { 17, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs198_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 17, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs198_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs198_g0_s4_lives[] = { /* 0x824e270 */ + /* 0 */ { 0, 4, 0, 0, { 17, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs198_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 17, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs198_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs198_g0_s5_lives[] = { /* 0x824e2a0 */ + /* 0 */ { 144, 0, 0, 0, { 7, 30, CPOS_HALFTILE, CPOS_HALFTILE }, {} }, + /* 1 */ { 145, 0, 0, 0, { 23, 35, 0, CPOS_HALFTILE }, {} }, +}; + +static const struct GroundLivesData s_gs198_g1_s0_lives[] = { /* 0x824e2d0 */ + /* 0 */ { 0, 4, 0, 0, { 19, 32, 0, CPOS_HALFTILE }, { + [0] = s_gs198_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 15, 32, 0, CPOS_HALFTILE }, { + [0] = s_gs198_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs198_g2_s0_lives[] = { /* 0x824e300 */ + /* 0 */ { 34, 6, 0, 0, { 19, 32, 0, CPOS_HALFTILE }, { + [2] = s_gs198_g2_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs198_g2_s1_lives[] = { /* 0x824e318 */ + /* 0 */ { 0, 6, 0, 0, { 15, 32, 0, CPOS_HALFTILE }, { + [0] = s_gs198_g2_s1_lives0_dlg0, + } }, + /* 1 */ { 34, 2, 0, 0, { 19, 32, 0, CPOS_HALFTILE }, { + [0] = s_gs198_g2_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs198_g3_s0_lives[] = { /* 0x824e348 */ + /* 0 */ { 0, 0, 0, 0, { 19, 32, 0, CPOS_HALFTILE }, { + [0] = s_gs198_g3_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 0, 0, 0, { 15, 32, 0, CPOS_HALFTILE }, { + [0] = s_gs198_g3_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs198_g4_s0_lives[] = { /* 0x824e378 */ + /* 0 */ { 0, 6, 0, 0, { 19, 32, 0, CPOS_HALFTILE }, { + [0] = s_gs198_g4_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 2, 0, 0, { 15, 32, 0, CPOS_HALFTILE }, { + [0] = s_gs198_g4_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs198_g5_s0_lives[] = { /* 0x824e3a8 */ + /* 0 */ { 0, 6, 0, 0, { 19, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs198_g5_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 2, 0, 0, { 15, 30, 0, CPOS_HALFTILE }, { + [0] = s_gs198_g5_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs198_g6_s0_lives[] = { /* 0x824e3d8 */ + /* 0 */ { 0, 6, 0, 0, { 19, 32, 0, CPOS_HALFTILE }, { + [0] = s_gs198_g6_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 2, 0, 0, { 15, 32, 0, CPOS_HALFTILE }, { + [0] = s_gs198_g6_s0_lives1_dlg0, + } }, +}; + +static const struct GroundObjectData s_gs198_g0_s0_objs[] = { /* 0x824e408 */ + /* 0 */ { 4, 0, 4, 2, { 8, 32, 0, 0 }, { + [2] = s_gs198_g0_s0_obj0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs198_g0_s5_objs[] = { /* 0x824e420 */ + /* 0 */ { 4, 0, 4, 2, { 8, 32, 0, 0 }, { + [2] = s_gs198_g0_s5_obj0_dlg2, + } }, + /* 1 */ { 4, 0, 4, 3, { 23, 35, 0, CPOS_HALFTILE }, { + [2] = s_gs198_g0_s5_obj1_dlg2, + } }, +}; + +static const struct GroundEffectData s_gs198_g1_s0_effs[] = { /* 0x824e450 */ + /* 0 */ { 0, 0, 1, 1, { 17, 9, 0, CPOS_HALFTILE }, s_gs198_g1_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs198_g3_s0_effs[] = { /* 0x824e45c */ + /* 0 */ { 0, 0, 1, 1, { 17, 33, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs198_g4_s0_effs[] = { /* 0x824e468 */ + /* 0 */ { 0, 0, 1, 1, { 17, 33, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs198_g5_s0_effs[] = { /* 0x824e474 */ + /* 0 */ { 0, 0, 1, 1, { 17, 33, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs198_g6_s0_effs[] = { /* 0x824e480 */ + /* 0 */ { 0, 0, 1, 1, { 17, 33, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEventData s_gs198_g2_s0_evts[] = { /* 0x824e48c */ + /* 0 */ { 4, 3, 0, 0, { 15, 27, 0, 0 }, &s_gs198_g2_s0_evt0_sref }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x824e498 */ + &s_gs198_g0_s0_station_sref, + &s_gs198_g1_s0_station_sref, + &s_gs198_g2_s0_station_sref, + &s_gs198_g2_s1_station_sref, + &s_gs198_g3_s0_station_sref, + &s_gs198_g4_s0_station_sref, + &s_gs198_g5_s0_station_sref, + &s_gs198_g6_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs198_g0_sectors[] = { /* 0x824e4b8 */ + { LPARRAY(s_gs198_g0_s0_lives), LPARRAY(s_gs198_g0_s0_objs), 0,NULL, 0,NULL, 1,&sStationScripts[0], }, + { LPARRAY(s_gs198_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs198_g0_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs198_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs198_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs198_g0_s5_lives), LPARRAY(s_gs198_g0_s5_objs), 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs198_g1_sectors[] = { /* 0x824e5a8 */ + { LPARRAY(s_gs198_g1_s0_lives), 0,NULL, LPARRAY(s_gs198_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs198_g2_sectors[] = { /* 0x824e5d0 */ + { LPARRAY(s_gs198_g2_s0_lives), 0,NULL, 0,NULL, LPARRAY(s_gs198_g2_s0_evts), 1,&sStationScripts[2], }, + { LPARRAY(s_gs198_g2_s1_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[3], }, +}; + +static const struct GroundScriptSector s_gs198_g3_sectors[] = { /* 0x824e620 */ + { LPARRAY(s_gs198_g3_s0_lives), 0,NULL, LPARRAY(s_gs198_g3_s0_effs), 0,NULL, 1,&sStationScripts[4], }, +}; + +static const struct GroundScriptSector s_gs198_g4_sectors[] = { /* 0x824e648 */ + { LPARRAY(s_gs198_g4_s0_lives), 0,NULL, LPARRAY(s_gs198_g4_s0_effs), 0,NULL, 1,&sStationScripts[5], }, +}; + +static const struct GroundScriptSector s_gs198_g5_sectors[] = { /* 0x824e670 */ + { LPARRAY(s_gs198_g5_s0_lives), 0,NULL, LPARRAY(s_gs198_g5_s0_effs), 0,NULL, 1,&sStationScripts[6], }, +}; + +static const struct GroundScriptSector s_gs198_g6_sectors[] = { /* 0x824e698 */ + { LPARRAY(s_gs198_g6_s0_lives), 0,NULL, LPARRAY(s_gs198_g6_s0_effs), 0,NULL, 1,&sStationScripts[7], }, +}; + +static const struct GroundScriptGroup s_gs198_groups[] = { /* 0x824e6c0 */ + { LPARRAY(s_gs198_g0_sectors) }, + { LPARRAY(s_gs198_g1_sectors) }, + { LPARRAY(s_gs198_g2_sectors) }, + { LPARRAY(s_gs198_g3_sectors) }, + { LPARRAY(s_gs198_g4_sectors) }, + { LPARRAY(s_gs198_g5_sectors) }, + { LPARRAY(s_gs198_g6_sectors) }, +}; + +static const struct GroundLink s_gs198_links[] = { /* 0x824e6f8 */ + /* link 0 */ { { /*x*/ 17, /*y*/ 27, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs198 = { LPARRAY(s_gs198_groups), s_gs198_links }; /* 0x824e700 */ diff --git a/src/data/ground/ground_data_d10p02_station.h b/src/data/ground/ground_data_d10p02_station.h new file mode 100644 index 000000000..0f57572c2 --- /dev/null +++ b/src/data/ground/ground_data_d10p02_station.h @@ -0,0 +1,378 @@ + + + + + + + + +static const struct ScriptCommand s_gs199_g0_s0_station_sref_script[] = { /* 0x824e714 */ + DEBUGINFO, + SELECT_MAP(199), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 13, /* to label */ 0), + COND(JUDGE_GT, 17, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 3), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMP_LABEL(3), + LABEL(5), /* = 0x05 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 6), + JUMP_LABEL(6), + LABEL(3), /* = 0x03 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(7), + LABEL(6), /* = 0x06 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(7), + LABEL(7), /* = 0x07 */ + BGM_SWITCH(104), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs199_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs199_g0_s0_station_sref_script }; /* 0x824e980 */ + +static const struct ScriptCommand s_gs199_g0_s0_evt0_sref_script[] = { /* 0x824e98c */ + DEBUGINFO, + ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Keep going?")), + CHOICE(/* label */ 0, _("Yes.")), + CHOICE(/* label */ 1, _("*No.")), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x02, 0x00, 0x001e, 0x0000000e, 0x00000000, NULL }, + COND_EQUAL(-1, /* to label */ 1), + HALT, +}; + +static const struct ScriptRef s_gs199_g0_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs199_g0_s0_evt0_sref_script }; /* 0x824ea68 */ + +static const struct ScriptCommand s_gs199_g0_s0_evt1_sref_script[] = { /* 0x824ea74 */ + DEBUGINFO, + JUMPIF_SCENARIOCHECK(5, /* to label */ 0), + ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Return to the rescue team base?")), + CHOICE(/* label */ 1, _("Yes.")), + CHOICE(/* label */ 2, _("*No.")), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(30), + { 0x23, 0x01, -0x0001, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER4_FUNC), + SET_DUNGEON_RES(/* result */ 10, /* enter */ -1), + EXECUTE_STATION(12, 4, 0), + HALT, + LABEL(0), /* = 0x00 */ + ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Return to the entrance?")), + CHOICE(/* label */ 3, _("Yes.")), + CHOICE(/* label */ 4, _("*No.")), + LABEL(4), /* = 0x04 */ + JUMP_SCRIPT(END_TALK), + LABEL(3), /* = 0x03 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x01, 0x00, 0x001e, 0x000000c6, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptRef s_gs199_g0_s0_evt1_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs199_g0_s0_evt1_sref_script }; /* 0x824ec3c */ + +static const struct ScriptCommand s_gs199_g0_s0_obj0_dlg2[] = { /* 0x824ec48 */ + DEBUGINFO, + JUMP_SCRIPT(SAVE_POINT), +}; + +static const struct ScriptCommand s_gs199_g0_s1_lives0_dlg0[] = { /* 0x824ec68 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs199_g0_s1_lives1_dlg0[] = { /* 0x824eca8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs199_g0_s3_lives0_dlg0[] = { /* 0x824ece8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs199_g0_s3_lives1_dlg0[] = { /* 0x824ed28 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs199_g0_s4_lives0_dlg0[] = { /* 0x824ed68 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs199_g0_s4_lives1_dlg0[] = { /* 0x824ed98 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs199_g1_s0_station_sref_script[] = { /* 0x824edc8 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 199), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 199), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(199), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(104), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs199_g1_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs199_g1_s0_station_sref_script }; /* 0x824ee98 */ + +static const struct ScriptCommand s_gs199_g1_s0_lives0_dlg0[] = { /* 0x824eea4 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_LEFT_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000066, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hmm...#W\nWell, that didn't go well.")), + VARIANT_DEFAULT(_(" Hmm...#W\nThat didn't work out...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" This is a tough place...")), + VARIANT_DEFAULT(_(" This is as tough as we\nexpected...")), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But let's give it our best\nand get through this, $n0!")), + VARIANT_DEFAULT(_(" But let's keep trying our\nbest and get through this, $n0!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs199_g1_s0_lives1_dlg0[] = { /* 0x824f190 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs199_g2_s0_station_sref_script[] = { /* 0x824f260 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 199), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 199), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(199), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(104), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs199_g2_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs199_g2_s0_station_sref_script }; /* 0x824f330 */ + +static const struct ScriptCommand s_gs199_g2_s0_lives0_dlg0[] = { /* 0x824f33c */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_LEFT_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000066, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hmmm...#W\nWell, that didn't go well.")), + VARIANT_DEFAULT(_(" Hmm...#W\nWe didn't do well at all...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" That $n2...\nHe's one tough customer.")), + VARIANT(/* == */ 1, _(" But why aren't we allowed\nto go into this forest?")), + VARIANT(/* == */ 1, _(" It doesn't matter anyway.\nLet's give it our best, $n0!")), + VARIANT_DEFAULT(_(" That Pokémon,\n$n2, is pretty tough.")), + VARIANT_DEFAULT(_(" But why are we forbidden\nfrom entering this forest?")), + VARIANT_DEFAULT(_(" It makes no difference.\n$n0, let's try our best!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs199_g2_s0_lives1_dlg0[] = { /* 0x824f6ac */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct GroundLivesData s_gs199_g0_s0_lives[] = { /* 0x824f77c */ + /* 0 */ { 145, 0, 0, 0, { 28, 28, CPOS_HALFTILE, CPOS_HALFTILE }, {} }, +}; + +static const struct GroundLivesData s_gs199_g0_s1_lives[] = { /* 0x824f794 */ + /* 0 */ { 0, 4, 0, 0, { 28, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs199_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs199_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs199_g0_s3_lives[] = { /* 0x824f7c4 */ + /* 0 */ { 0, 4, 0, 0, { 28, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs199_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs199_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs199_g0_s4_lives[] = { /* 0x824f7f4 */ + /* 0 */ { 0, 4, 0, 0, { 28, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs199_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs199_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs199_g1_s0_lives[] = { /* 0x824f824 */ + /* 0 */ { 0, 0, 0, 0, { 31, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs199_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 26, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs199_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs199_g2_s0_lives[] = { /* 0x824f854 */ + /* 0 */ { 0, 0, 0, 0, { 31, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs199_g2_s0_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 26, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs199_g2_s0_lives1_dlg0, + } }, +}; + +static const struct GroundObjectData s_gs199_g0_s0_objs[] = { /* 0x824f884 */ + /* 0 */ { 4, 0, 4, 3, { 28, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs199_g0_s0_obj0_dlg2, + } }, +}; + +static const struct GroundEffectData s_gs199_g1_s0_effs[] = { /* 0x824f89c */ + /* 0 */ { 0, 0, 1, 1, { 28, 37, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs199_g2_s0_effs[] = { /* 0x824f8a8 */ + /* 0 */ { 0, 0, 1, 1, { 28, 37, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEventData s_gs199_g0_s0_evts[] = { /* 0x824f8b4 */ + /* 0 */ { 15, 3, 0, 0, { 21, 12, 0, 0 }, &s_gs199_g0_s0_evt0_sref }, + /* 1 */ { 15, 3, 0, 0, { 21, 42, 0, 0 }, &s_gs199_g0_s0_evt1_sref }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x824f8cc */ + &s_gs199_g0_s0_station_sref, + &s_gs199_g1_s0_station_sref, + &s_gs199_g2_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs199_g0_sectors[] = { /* 0x824f8d8 */ + { LPARRAY(s_gs199_g0_s0_lives), LPARRAY(s_gs199_g0_s0_objs), 0,NULL, LPARRAY(s_gs199_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs199_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs199_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs199_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs199_g1_sectors[] = { /* 0x824f9a0 */ + { LPARRAY(s_gs199_g1_s0_lives), 0,NULL, LPARRAY(s_gs199_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs199_g2_sectors[] = { /* 0x824f9c8 */ + { LPARRAY(s_gs199_g2_s0_lives), 0,NULL, LPARRAY(s_gs199_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptGroup s_gs199_groups[] = { /* 0x824f9f0 */ + { LPARRAY(s_gs199_g0_sectors) }, + { LPARRAY(s_gs199_g1_sectors) }, + { LPARRAY(s_gs199_g2_sectors) }, +}; + +static const struct GroundLink s_gs199_links[] = { /* 0x824fa08 */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs199 = { LPARRAY(s_gs199_groups), s_gs199_links }; /* 0x824fa10 */ diff --git a/src/data/ground/ground_data_d10p03_station.h b/src/data/ground/ground_data_d10p03_station.h new file mode 100644 index 000000000..8a9cbadd0 --- /dev/null +++ b/src/data/ground/ground_data_d10p03_station.h @@ -0,0 +1,496 @@ + + + + + + + + +static const struct ScriptCommand s_gs200_g0_s0_station_sref_script[] = { /* 0x824fa24 */ + DEBUGINFO, + SELECT_MAP(200), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs200_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs200_g0_s0_station_sref_script }; /* 0x824fa90 */ + +static const struct ScriptCommand s_gs200_g1_s0_station_sref_script[] = { /* 0x824fa9c */ + DEBUGINFO, + SELECT_MAP(200), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(114), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And so...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+After getting through the Frosty\n#+Forest, $n0's team...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Headed further north...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The more they advanced...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The harsher the conditions became...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0x3b, 0x39, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs200_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs200_g1_s0_station_sref_script }; /* 0x824fca8 */ + + +static const struct ScriptCommand s_gs200_g1_s0_lives0_dlg0[] = { /* 0x824fcb4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Please, $n2!")), + VARIANT(/* == */ 1, _(" We have to keep moving.\nWe have to get through this.")), + VARIANT(/* == */ 1, _(" Please, let us pass!")), + VARIANT(/* == */ 3, _(" Please, $n2!")), + VARIANT(/* == */ 3, _(" We have to get through,\nno matter what.")), + VARIANT(/* == */ 3, _(" Please, let us pass!")), + VARIANT_DEFAULT(_(" Please, $n2!")), + VARIANT_DEFAULT(_(" We have to get through.\nNo matter what it takes.")), + VARIANT_DEFAULT(_(" Please, let us pass!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" No!\nI cannot allow your passage!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Why?#W\nWhy can't we pass?")), + VARIANT_DEFAULT(_(" Why?#W\nWhy can't we pass?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The frigid forest's air...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It has warmed considerably\nin recent times.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" W-warmed up?\n(I'm still freezing, but...)")), + VARIANT(/* == */ 3, _(" W-warmed up?\n(I'm still freezing, but...)")), + VARIANT_DEFAULT(_(" W-warmed up?\n(I'm still freezing, but...)")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The flow of frigid air has\nbeen disturbed in the forest.#W\nSnow has started to melt.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Snow is melting.\nSnow that has never melted before.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This has never happened,\neven once.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Then you appeared in the\nforest.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Is this not your doing?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" W-we don't have anything\nto do with that!\nIt's a coincidence!")), + VARIANT(/* == */ 3, _(" W-we don't have anything\nto do with that!\nIt's a coincidence!")), + VARIANT_DEFAULT(_(" W-we don't have anything\nto do with that!\nIt's a coincidence!")), + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, $n2.\nYou have to listen.")), + VARIANT(/* == */ 1, _(" It's not our fault that the\nsnow is melting here.")), + VARIANT(/* == */ 1, _(" It's not just here.#W\nNatural disasters are happening all\nover the place.")), + VARIANT(/* == */ 1, _(" Even if we hadn't come, the\nfrigid air here would have been disturbed.")), + VARIANT(/* == */ 3, _(" Please, $n2.\nListen to me.")), + VARIANT(/* == */ 3, _(" It's not our fault that the\nsnow is melting.")), + VARIANT(/* == */ 3, _(" It's not just here.#W\nRight now, natural calamities are occurring\neverywhere.")), + VARIANT(/* == */ 3, _(" The forest's frigid airflow\nwould have been disturbed even if we\nhadn't come.")), + VARIANT_DEFAULT(_(" Please, $n2.\nHear me out.")), + VARIANT_DEFAULT(_(" It isn't our fault that the\nsnow started melting here.")), + VARIANT_DEFAULT(_(" It's not just here.#W\nNatural calamities are taking place\neverywhere right now.")), + VARIANT_DEFAULT(_(" The forest's frigid airflow\nwould have been disturbed even if we\nhadn't come.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Is that all?#W\nYou expect me to believe that?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(685), + { 0x28, 0x01, 0x0005, 0x00000002, 0x00ccccff, NULL }, + { 0x27, 0x01, 0x0005, 0x00000002, 0x00ccccff, NULL }, + WAIT(4), + { 0x28, 0x00, 0x0005, 0x00000002, 0x00ccccff, NULL }, + { 0x27, 0x01, 0x0005, 0x00000002, 0x00ccccff, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Waaaaaaaah!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Enough of your foolish talk!#W\nPrepare for your end!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(685), + { 0x28, 0x01, 0x0005, 0x00000002, 0x00ccccff, NULL }, + { 0x27, 0x01, 0x0005, 0x00000002, 0x00ccccff, NULL }, + WAIT(4), + { 0x28, 0x00, 0x0005, 0x00000002, 0x00ccccff, NULL }, + { 0x27, 0x01, 0x0005, 0x00000002, 0x00ccccff, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + WAIT(15), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(685), + { 0x28, 0x01, 0x0005, 0x00000002, 0x00ffffff, NULL }, + { 0x27, 0x01, 0x0005, 0x00000002, 0x00ffffff, NULL }, + WAIT(4), + { 0x28, 0x01, 0x0005, 0x00000002, 0x00ffffff, NULL }, + { 0x27, 0x01, 0x0005, 0x00000002, 0x00ffffff, NULL }, + WAIT(4), + { 0x28, 0x01, 0x0005, 0x00000002, 0x00ffffff, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(120), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Stop it!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(120), + { 0x27, 0x00, 0x0005, 0x00000028, 0x00ffffff, NULL }, + SELECT_ENTITIES(-1, 1), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" A-Absol!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0003, -0x00000002, 0x00000002, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" There is nothing false in\nwhat they said.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Calamities are indeed\noccurring in nature everywhere.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Is...\nIs that true?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Yes.") }, + BGM_FADEIN(150, 114), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I have the ability to sense\nnatural disasters.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" The calamities taking place\nnow are of a special nature.\nI've never experienced such before.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#W\nSo, there are calamities besides this...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................#WFine.#W\nI will choose to believe you.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You may pass.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n2!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" However!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(SHOCK_FUNC), + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Waah!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You must try to prevent\nthe calamities from spreading.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm counting on you!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yup! We promise,\n$n2!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Whew...\nThat was too close...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Thank you.#W\nYou saved us.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0e, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ..................") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Rather than saying thanks,\nfocus on stopping the calamities before\nthey worsen.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" If they are left unchecked,\nworse will befall us...#W\nMy instinct warns me so.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Groan...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I sensed the terrible\npower of the natural calamities...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I was led here by my\nfeelings of foreboding...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ............#W\nI think it would be best if we combined\nforces...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I will join you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(463), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh?#W\nYou will? Really?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Really.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" To put an end to the\ncalamities, cooperation is vital.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Let me lend you my powers.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sniffle...\nThank you, $n3.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + BGM_STOP, + FANFARE_PLAY(204), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n3 joined the team!") }, + { 0xe1, 0x00, 0x00cc, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x1a, 0x0000, 0x00000000, 0x00000000, NULL }, + ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to $n3?")), + CHOICE(/* label */ 29, _("*Yes.")), + CHOICE(/* label */ 30, _("No.")), + LABEL(29), /* = 0x1d */ + { 0x3d, 0x00, 0x0000, -0x00000001, 0x00000000, NULL }, + LABEL(30), /* = 0x1e */ + { 0x3b, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs200_g1_s0_lives1_dlg0[] = { /* 0x825174c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x002d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(458), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs200_g1_s0_lives2_dlg0[] = { /* 0x825190c */ + DEBUGINFO, + { 0x54, 0x00, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0800, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + WAIT(46), + FANFARE_PLAY2(475), + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0018, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(475), + { 0x54, 0x00, 0x0019, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0019, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0019, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0019, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0018, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(475), + { 0x54, 0x00, 0x0019, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0018, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(475), + WAIT(32), + { 0x70, 0x00, 0x0100, 0x00000008, 0x00000000, NULL }, + WAIT(8), + FANFARE_PLAY2(459), + { 0x70, 0x00, 0x0400, 0x00000080, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs200_g1_s1_lives0_dlg0[] = { /* 0x8251cac */ + DEBUGINFO, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x60, 0x01, 0x0000, 0x000000a0, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0800, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(505), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + WAIT(32), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs200_g1_s0_lives[] = { /* 0x8251e2c */ + /* 0 */ { 0, 4, 0, 0, { 29, 29, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs200_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 37, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs200_g1_s0_lives1_dlg0, + } }, + /* 2 */ { 102, 0, 0, 0, { 33, 22, 0, CPOS_HALFTILE }, { + [0] = s_gs200_g1_s0_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs200_g1_s1_lives[] = { /* 0x8251e74 */ + /* 0 */ { 83, 2, 0, 0, { 33, 26, 0, CPOS_HALFTILE }, { + [0] = s_gs200_g1_s1_lives0_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs200_g1_s0_effs[] = { /* 0x8251e8c */ + /* 0 */ { 0, 0, 1, 1, { 33, 27, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8251e98 */ + &s_gs200_g0_s0_station_sref, + &s_gs200_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs200_g0_sectors[] = { /* 0x8251ea0 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs200_g1_sectors[] = { /* 0x8251ec8 */ + { LPARRAY(s_gs200_g1_s0_lives), 0,NULL, LPARRAY(s_gs200_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, + { LPARRAY(s_gs200_g1_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs200_groups[] = { /* 0x8251f18 */ + { LPARRAY(s_gs200_g0_sectors) }, + { LPARRAY(s_gs200_g1_sectors) }, +}; + +static const struct GroundLink s_gs200_links[] = { /* 0x8251f28 */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs200 = { LPARRAY(s_gs200_groups), s_gs200_links }; /* 0x8251f30 */ diff --git a/src/data/ground/ground_data_d11p01_station.h b/src/data/ground/ground_data_d11p01_station.h new file mode 100644 index 000000000..595199897 --- /dev/null +++ b/src/data/ground/ground_data_d11p01_station.h @@ -0,0 +1,892 @@ + + + + + + + + + + +static const struct ScriptCommand s_gs201_g0_s0_station_sref_script[] = { /* 0x8251f44 */ + DEBUGINFO, + JUMPIF_SCENARIOCHECK(5, /* to label */ 0), + EXECUTE_STATION(12, 0, 0), + LABEL(0), /* = 0x00 */ + SELECT_MAP(201), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 14, /* to label */ 1), + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + { 0x3b, 0x1c, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 2, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 3), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 12, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 11, /* to label */ 6), + JUMP_LABEL(3), + LABEL(5), /* = 0x05 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(3), /* = 0x03 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(6), /* = 0x06 */ + SELECT_LIVES(0, 2), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(36), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs201_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs201_g0_s0_station_sref_script }; /* 0x8252210 */ + +static const struct ScriptCommand s_gs201_g0_s0_obj0_dlg2[] = { /* 0x825221c */ + DEBUGINFO, + JUMP_SCRIPT(SAVE_AND_WAREHOUSE_POINT), +}; + +static const struct ScriptCommand s_gs201_g0_s1_lives0_dlg0[] = { /* 0x825223c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs201_g0_s1_lives1_dlg0[] = { /* 0x825227c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs201_g0_s2_lives0_dlg0[] = { /* 0x82522bc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs201_g0_s2_lives1_dlg0[] = { /* 0x82522fc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs201_g0_s3_lives0_dlg0[] = { /* 0x825233c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs201_g0_s3_lives1_dlg0[] = { /* 0x825237c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs201_g0_s4_lives0_dlg0[] = { /* 0x82523bc */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs201_g0_s4_lives1_dlg0[] = { /* 0x82523ec */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs201_g0_s5_obj0_dlg2[] = { /* 0x825241c */ + DEBUGINFO, + JUMP_SCRIPT(WAREHOUSE_POINT), +}; + +static const struct ScriptCommand s_gs201_g0_s5_obj1_dlg2[] = { /* 0x825243c */ + DEBUGINFO, + JUMP_SCRIPT(SAVE_POINT), +}; + +static const struct ScriptCommand s_gs201_g1_s0_station_sref_script[] = { /* 0x825245c */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 201), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 201), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + { 0x3b, 0x1c, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(201), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(36), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs201_g1_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs201_g1_s0_station_sref_script }; /* 0x825253c */ + +static const struct ScriptCommand s_gs201_g1_s0_lives0_dlg0[] = { /* 0x8252548 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000052, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000063, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...OK.\nSo that's what happened...")), + VARIANT(/* == */ 1, _(" $n2 appeared to\nyou...")), + VARIANT(/* == */ 1, _(" So that's why you were\nlooking so stunned.")), + VARIANT_DEFAULT(_(" ...Oh.\nSo something like that happened.")), + VARIANT_DEFAULT(_(" $n2 appeared to\nyou...")), + VARIANT_DEFAULT(_(" That's why you were\nlooking so stunned earlier.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But, wow...\n$n3 isn't just a legend.\nIt really exists...")), + VARIANT_DEFAULT(_(" I'm amazed, though...\n$n3 isn't just a legend.\nIt really exists...")), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" And that $n3 is\nat the peak way up there.")), + VARIANT_DEFAULT(_(" And that $n3 is up\nat the peak...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000008, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Sniffle...#W\n$n0!")), + VARIANT(/* == */ 1, _(" All the effort we put into\ngetting here...\nIt's finally going to pay off!")), + VARIANT(/* == */ 1, _(" We'll meet $n3\nand get the truth!")), + VARIANT_DEFAULT(_(" Sniffle...#W\n$n0!")), + VARIANT_DEFAULT(_(" All the effort we put into\ngetting here...\nIt's finally going to bear fruit!")), + VARIANT_DEFAULT(_(" We'll meet $n3\nand get the truth!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" We'll finally clear your\nreputation, $n0!#W\nThat'll be great!")), + VARIANT_DEFAULT(_(" We'll finally get rid of the\nsuspicions others have about you,\n$n0!#W Awesome!")), + CHOICE(/* label */ 2, _("........................")), + CHOICE(/* label */ 2, _("........................")), + LABEL(2), /* = 0x02 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, $n0...")), + VARIANT(/* == */ 1, _(" You don't need to look so\nworried.#W\nIt'll be OK.")), + VARIANT(/* == */ 1, _(" $n0, I can\nunderstand how it'd be scary for you to\nmeet $n3.")), + VARIANT(/* == */ 1, _(" The heartless human who\nabandoned $n2...#W\nHow that might be you...")), + VARIANT(/* == */ 1, _(" I bet you're scared,\nthinking that.")), + VARIANT_DEFAULT(_(" Listen, $n0...")), + VARIANT_DEFAULT(_(" ...Don't be so worried.#W\nIt will be all right.")), + VARIANT_DEFAULT(_(" It's only natural that you\nwould be scared of meeting $n3,\n$n0.")), + VARIANT_DEFAULT(_(" The heartless human who\nabandoned $n2...#W\nIt may be you...")), + VARIANT_DEFAULT(_(" I can understand how\nyou could think that.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + ASK3(FALSE, /*default*/ -1, /* speaker */ 1, _(" But that's impossible.\nYou're not that human--I'm sure.")), + CHOICE(/* label */ 4, _("How can you say that?")), + CHOICE(/* label */ 4, _("You believe so much in me?")), + LABEL(4), /* = 0x04 */ + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hmm...?#W Well, there was\na time when I had some doubts...#W\nBut now...") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...I wonder why?#W\nI really don't know why.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But it doesn't matter now.#W\n$n0, you're a really good sort.")), + VARIANT(/* == */ 1, _(" You know, before...")), + VARIANT(/* == */ 1, _(" When I first got the idea\nto start this rescue team...")), + VARIANT(/* == */ 1, _(" I met you in the Tiny\nWoods, $n0.")), + VARIANT(/* == */ 1, _(" Now that I think about it,\nthere was something different about you.\nJust a feeling.")), + VARIANT(/* == */ 3, _(" But it doesn't matter.\nI know you're a good sort, $n0...")), + VARIANT(/* == */ 3, _(" Do you remember...?")), + VARIANT(/* == */ 3, _(" When I first got the idea to\nstart a rescue team...")), + VARIANT(/* == */ 3, _(" I met you in the Tiny\nWoods, $n0...")), + VARIANT(/* == */ 3, _(" Even back then, I sensed\nthere was something different about you.")), + VARIANT_DEFAULT(_(" But it's all right.#W\n$n0, you're a really good sort.")), + VARIANT_DEFAULT(_(" You know, before...")), + VARIANT_DEFAULT(_(" When I first got the idea\nto start a rescue team...")), + VARIANT_DEFAULT(_(" I met you in the Tiny\nWoods, $n0.")), + VARIANT_DEFAULT(_(" Now that I think about it,\nthere was something different about you.")), + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" This is kind of weird,\nisn't it?#W\nBut I believe in you, $n0.")), + VARIANT(/* == */ 3, _(" It is weird, isn't it?#W\nBut I believe in you, $n0.")), + VARIANT_DEFAULT(_(" It is strange, isn't it?#W\nBut, $n0, I believe in you.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Anyway, we'll know the\ntruth when we get to the peak.") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0, let's give it\nour best!")), + VARIANT_DEFAULT(_(" $n0, let's do our\nbest!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + + + + + +static const struct ScriptCommand s_gs201_g1_s0_lives1_dlg0[] = { /* 0x825366c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005d, 0x00000000, NULL }, + WAIT(100), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(469), + CALL_SCRIPT(QUESTION_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs201_g2_s0_station_sref_script[] = { /* 0x825380c */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs201_g2_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs201_g2_s0_station_sref_script }; /* 0x825383c */ + +static const struct ScriptCommand s_gs201_g2_s0_lives0_dlg2[] = { /* 0x8253848 */ + DEBUGINFO, + EXECUTE_STATION(-1, 2, 1), + HALT, +}; + +static const struct ScriptCommand s_gs201_g2_s0_evt0_sref_script[] = { /* 0x8253878 */ + DEBUGINFO, + EXECUTE_STATION(-1, 2, 1), + HALT, +}; + +static const struct ScriptRef s_gs201_g2_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs201_g2_s0_evt0_sref_script }; /* 0x82538a8 */ + +static const struct ScriptCommand s_gs201_g2_s1_station_sref_script[] = { /* 0x82538b4 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 1), + CANCEL_ENTITIES(-1, 0), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs201_g2_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs201_g2_s1_station_sref_script }; /* 0x8253904 */ + +static const struct ScriptCommand s_gs201_g2_s1_lives0_dlg0[] = { /* 0x8253910 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x8e, 0x01, 0x0000, 0x00000022, 0x00000000, NULL }, + ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" Hey, $n0.\nAre you all ready?")), + VARIANT_DEFAULT(_(" Hi, $n0.\nAre you ready?")), + CHOICE(/* label */ 2, _("All set!")), + CHOICE(/* label */ 3, _("Not yet.")), + LABEL(3), /* = 0x03 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hmm? Is that so?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" OK.\nLet's go when you're ready.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + JUMP_SCRIPT(END_TALK), + LABEL(2), /* = 0x02 */ + ASK3( TRUE, /*default*/ 0, /* speaker */ 1, _(" Which way should we go?")), + CHOICE(/* label */ 5, _("Mt. Freeze.")), + CHOICE(/* label */ 6, _("Snow Path.")), + JUMP_LABEL(3), + LABEL(5), /* = 0x05 */ + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" All right!\nLet's roll out!")), + VARIANT(/* == */ 1, _(" We want the peak.\nLet's give it our best!")), + VARIANT_DEFAULT(_(" OK!\nLet's go!")), + VARIANT_DEFAULT(_(" Let's do our best to reach\nthe peak!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CJUMP_UNK_C8(34), + COND_EQUAL(4, /* to label */ 7), + COND_EQUAL(3, /* to label */ 7), + COND_EQUAL(5, /* to label */ 7), + COND_EQUAL(2, /* to label */ 7), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(120), + { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(120), + { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + LABEL(8), /* = 0x08 */ + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x07, 0x00, 0x001e, 0x0000000f, 0x00000000, NULL }, + COND_EQUAL(-1, /* to label */ 3), + HALT, + LABEL(6), /* = 0x06 */ + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" All right!\nLet's roll out!")), + VARIANT_DEFAULT(_(" OK!\nLet's go!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CJUMP_UNK_C8(34), + COND_EQUAL(4, /* to label */ 9), + COND_EQUAL(3, /* to label */ 9), + COND_EQUAL(5, /* to label */ 9), + COND_EQUAL(2, /* to label */ 9), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(120), + { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(10), + LABEL(9), /* = 0x09 */ + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(120), + { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + LABEL(10), /* = 0x0a */ + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x06, 0x00, 0x001e, 0x0000004f, 0x00000000, NULL }, + COND_EQUAL(-1, /* to label */ 3), + HALT, +}; + + + + +static const struct ScriptCommand s_gs201_g2_s1_lives1_dlg0[] = { /* 0x8253f50 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000400, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CJUMP_UNK_C8(0), + COND_EQUAL(0, /* to label */ 0), + COND_EQUAL(1, /* to label */ 0), + COND_EQUAL(7, /* to label */ 0), + COND_EQUAL(6, /* to label */ 0), + WAIT(15), + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, + LABEL(0), /* = 0x00 */ + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs201_g3_s0_station_sref_script[] = { /* 0x82540c0 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 201), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 201), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + { 0x3b, 0x1c, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(201), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(36), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs201_g3_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs201_g3_s0_station_sref_script }; /* 0x82541a0 */ + +static const struct ScriptCommand s_gs201_g3_s0_lives0_dlg0[] = { /* 0x82541ac */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_LEFT_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Darn...#W\nThat didn't go well.")), + VARIANT_DEFAULT(_(" Ouch...#W\nThat turned out badly.")), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" This is one seriously\nrough neighborhood...")), + VARIANT(/* == */ 1, _(" But let's storm our way\nto the peak, $n0!")), + VARIANT_DEFAULT(_(" This is a seriously tough\nchallenge, but...")), + VARIANT_DEFAULT(_(" Let's be sure to reach the\npeak, $n0!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs201_g3_s0_lives1_dlg0[] = { /* 0x8254430 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs201_g4_s0_station_sref_script[] = { /* 0x8254500 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 201), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 201), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + { 0x3b, 0x1c, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(201), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(36), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs201_g4_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs201_g4_s0_station_sref_script }; /* 0x82545e0 */ + +static const struct ScriptCommand s_gs201_g4_s0_lives0_dlg0[] = { /* 0x82545ec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x30, 0x0080, 0x00000007, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What the...?#W\nIsn't this where we started from?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(468), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(LOOK_AROUND_LEFT_FUNC), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ............#W\nI guess that path just loops back to the\nstart.")), + VARIANT(/* == */ 1, _(" If we want to move on,\nI think our only choice is #CDMt. Freeze#R.")), + VARIANT(/* == */ 1, _(" $n0, let's give it\nour best!")), + VARIANT_DEFAULT(_(" ............#W\nI guess that path we took just loops back\nto where it started.")), + VARIANT_DEFAULT(_(" It looks like we have to get\nover #CDMt. Freeze#R to move on.")), + VARIANT_DEFAULT(_(" $n0, let's do our\nbest!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs201_g4_s0_lives1_dlg0[] = { /* 0x825492c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x20, 0x0080, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs201_g5_s0_station_sref_script[] = { /* 0x8254a0c */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 201), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 201), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + { 0x3b, 0x1c, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(201), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(36), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs201_g5_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs201_g5_s0_station_sref_script }; /* 0x8254aec */ + +static const struct ScriptCommand s_gs201_g5_s0_lives0_dlg0[] = { /* 0x8254af8 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_LEFT_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Urrggh...#W\nWe couldn't get through...")), + VARIANT_DEFAULT(_(" Ouch...#W\nWe couldn't break through...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" This is one harsh place,\nbut let's bear down and get through,\n$n0!")), + VARIANT_DEFAULT(_(" This is a harsh place,\nso let's do our best to get through,\n$n0!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs201_g5_s0_lives1_dlg0[] = { /* 0x8254d64 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs201_g6_s0_station_sref_script[] = { /* 0x8254e34 */ + DEBUGINFO, + SELECT_MAP(201), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(115), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs201_g6_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs201_g6_s0_station_sref_script }; /* 0x8254ea4 */ + +static const struct ScriptCommand s_gs201_g6_s0_eff0_script[] = { /* 0x8254eb0 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs201_g6_s0_lives0_dlg0[] = { /* 0x8254f30 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x40, 0x0080, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You're going to #CDMt. Freeze#R?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Don't forget to take me,\nkekeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0080, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs201_g6_s0_lives1_dlg0[] = { /* 0x825508c */ + DEBUGINFO, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x6b, 0x00, 0x0080, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs201_g0_s0_lives[] = { /* 0x825514c */ + /* 0 */ { 144, 0, 0, 0, { 10, 18, CPOS_HALFTILE, CPOS_HALFTILE }, {} }, +}; + +static const struct GroundLivesData s_gs201_g0_s1_lives[] = { /* 0x8255164 */ + /* 0 */ { 0, 4, 0, 0, { 16, 29, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs201_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 16, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs201_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs201_g0_s2_lives[] = { /* 0x8255194 */ + /* 0 */ { 0, 0, 0, 0, { 27, 22, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs201_g0_s2_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 27, 20, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs201_g0_s2_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs201_g0_s3_lives[] = { /* 0x82551c4 */ + /* 0 */ { 0, 4, 0, 0, { 16, 29, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs201_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 16, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs201_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs201_g0_s4_lives[] = { /* 0x82551f4 */ + /* 0 */ { 0, 4, 0, 0, { 16, 29, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs201_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 16, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs201_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs201_g0_s5_lives[] = { /* 0x8255224 */ + /* 0 */ { 144, 0, 0, 0, { 10, 18, CPOS_HALFTILE, CPOS_HALFTILE }, {} }, + /* 1 */ { 145, 0, 0, 0, { 25, 30, 0, CPOS_HALFTILE }, {} }, +}; + +static const struct GroundLivesData s_gs201_g1_s0_lives[] = { /* 0x8255254 */ + /* 0 */ { 0, 6, 0, 0, { 21, 24, 0, CPOS_HALFTILE }, { + [0] = s_gs201_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 2, 0, 0, { 16, 24, 0, CPOS_HALFTILE }, { + [0] = s_gs201_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs201_g2_s0_lives[] = { /* 0x8255284 */ + /* 0 */ { 34, 0, 0, 0, { 16, 24, 0, CPOS_HALFTILE }, { + [2] = s_gs201_g2_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs201_g2_s1_lives[] = { /* 0x825529c */ + /* 0 */ { 0, 0, 0, 0, { 21, 24, 0, CPOS_HALFTILE }, { + [0] = s_gs201_g2_s1_lives0_dlg0, + } }, + /* 1 */ { 34, 0, 0, 0, { 16, 24, 0, CPOS_HALFTILE }, { + [0] = s_gs201_g2_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs201_g3_s0_lives[] = { /* 0x82552cc */ + /* 0 */ { 0, 0, 0, 0, { 21, 24, 0, CPOS_HALFTILE }, { + [0] = s_gs201_g3_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 0, 0, 0, { 16, 24, 0, CPOS_HALFTILE }, { + [0] = s_gs201_g3_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs201_g4_s0_lives[] = { /* 0x82552fc */ + /* 0 */ { 0, 0, 0, 0, { 24, 21, 0, CPOS_HALFTILE }, { + [0] = s_gs201_g4_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 0, 0, 0, { 18, 22, 0, CPOS_HALFTILE }, { + [0] = s_gs201_g4_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs201_g5_s0_lives[] = { /* 0x825532c */ + /* 0 */ { 0, 0, 0, 0, { 21, 24, 0, CPOS_HALFTILE }, { + [0] = s_gs201_g5_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 0, 0, 0, { 16, 24, 0, CPOS_HALFTILE }, { + [0] = s_gs201_g5_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs201_g6_s0_lives[] = { /* 0x825535c */ + /* 0 */ { 0, 4, 0, 0, { 21, 27, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs201_g6_s0_lives0_dlg0, + } }, + /* 1 */ { 91, 4, 0, 0, { 16, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs201_g6_s0_lives1_dlg0, + } }, +}; + +static const struct GroundObjectData s_gs201_g0_s0_objs[] = { /* 0x825538c */ + /* 0 */ { 4, 0, 5, 2, { 10, 19, CPOS_HALFTILE, 0 }, { + [2] = s_gs201_g0_s0_obj0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs201_g0_s5_objs[] = { /* 0x82553a4 */ + /* 0 */ { 4, 0, 5, 2, { 10, 19, CPOS_HALFTILE, 0 }, { + [2] = s_gs201_g0_s5_obj0_dlg2, + } }, + /* 1 */ { 4, 0, 4, 3, { 25, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs201_g0_s5_obj1_dlg2, + } }, +}; + +static const struct GroundEffectData s_gs201_g1_s0_effs[] = { /* 0x82553d4 */ + /* 0 */ { 0, 0, 1, 1, { 19, 22, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs201_g3_s0_effs[] = { /* 0x82553e0 */ + /* 0 */ { 0, 0, 1, 1, { 19, 22, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs201_g4_s0_effs[] = { /* 0x82553ec */ + /* 0 */ { 0, 0, 1, 1, { 19, 22, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs201_g5_s0_effs[] = { /* 0x82553f8 */ + /* 0 */ { 0, 0, 1, 1, { 19, 22, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs201_g6_s0_effs[] = { /* 0x8255404 */ + /* 0 */ { 0, 0, 1, 1, { 22, 23, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs201_g6_s0_eff0_script }, +}; + +static const struct GroundEventData s_gs201_g2_s0_evts[] = { /* 0x8255410 */ + /* 0 */ { 3, 3, 0, 0, { 26, 17, 0, 0 }, &s_gs201_g2_s0_evt0_sref }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x825541c */ + &s_gs201_g0_s0_station_sref, + &s_gs201_g1_s0_station_sref, + &s_gs201_g2_s0_station_sref, + &s_gs201_g2_s1_station_sref, + &s_gs201_g3_s0_station_sref, + &s_gs201_g4_s0_station_sref, + &s_gs201_g5_s0_station_sref, + &s_gs201_g6_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs201_g0_sectors[] = { /* 0x825543c */ + { LPARRAY(s_gs201_g0_s0_lives), LPARRAY(s_gs201_g0_s0_objs), 0,NULL, 0,NULL, 1,&sStationScripts[0], }, + { LPARRAY(s_gs201_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs201_g0_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs201_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs201_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs201_g0_s5_lives), LPARRAY(s_gs201_g0_s5_objs), 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs201_g1_sectors[] = { /* 0x825552c */ + { LPARRAY(s_gs201_g1_s0_lives), 0,NULL, LPARRAY(s_gs201_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs201_g2_sectors[] = { /* 0x8255554 */ + { LPARRAY(s_gs201_g2_s0_lives), 0,NULL, 0,NULL, LPARRAY(s_gs201_g2_s0_evts), 1,&sStationScripts[2], }, + { LPARRAY(s_gs201_g2_s1_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[3], }, +}; + +static const struct GroundScriptSector s_gs201_g3_sectors[] = { /* 0x82555a4 */ + { LPARRAY(s_gs201_g3_s0_lives), 0,NULL, LPARRAY(s_gs201_g3_s0_effs), 0,NULL, 1,&sStationScripts[4], }, +}; + +static const struct GroundScriptSector s_gs201_g4_sectors[] = { /* 0x82555cc */ + { LPARRAY(s_gs201_g4_s0_lives), 0,NULL, LPARRAY(s_gs201_g4_s0_effs), 0,NULL, 1,&sStationScripts[5], }, +}; + +static const struct GroundScriptSector s_gs201_g5_sectors[] = { /* 0x82555f4 */ + { LPARRAY(s_gs201_g5_s0_lives), 0,NULL, LPARRAY(s_gs201_g5_s0_effs), 0,NULL, 1,&sStationScripts[6], }, +}; + +static const struct GroundScriptSector s_gs201_g6_sectors[] = { /* 0x825561c */ + { LPARRAY(s_gs201_g6_s0_lives), 0,NULL, LPARRAY(s_gs201_g6_s0_effs), 0,NULL, 1,&sStationScripts[7], }, +}; + +static const struct GroundScriptGroup s_gs201_groups[] = { /* 0x8255644 */ + { LPARRAY(s_gs201_g0_sectors) }, + { LPARRAY(s_gs201_g1_sectors) }, + { LPARRAY(s_gs201_g2_sectors) }, + { LPARRAY(s_gs201_g3_sectors) }, + { LPARRAY(s_gs201_g4_sectors) }, + { LPARRAY(s_gs201_g5_sectors) }, + { LPARRAY(s_gs201_g6_sectors) }, +}; + +static const struct GroundLink s_gs201_links[] = { /* 0x825567c */ + /* link 0 */ { { /*x*/ 27, /*y*/ 19, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 23, /*y*/ 25, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs201 = { LPARRAY(s_gs201_groups), s_gs201_links }; /* 0x825568c */ diff --git a/src/data/ground/ground_data_d11p02_station.h b/src/data/ground/ground_data_d11p02_station.h new file mode 100644 index 000000000..f54c0a4b9 --- /dev/null +++ b/src/data/ground/ground_data_d11p02_station.h @@ -0,0 +1,315 @@ + + + + + + + + +static const struct ScriptCommand s_gs202_g0_s0_station_sref_script[] = { /* 0x82556a0 */ + DEBUGINFO, + SELECT_MAP(202), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 14, /* to label */ 0), + COND(JUDGE_GT, 17, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + { 0x3b, 0x1c, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 2, 0), + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 3), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMP_LABEL(3), + LABEL(5), /* = 0x05 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 6), + JUMP_LABEL(6), + LABEL(3), /* = 0x03 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(7), + LABEL(6), /* = 0x06 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(7), + LABEL(7), /* = 0x07 */ + BGM_SWITCH(115), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs202_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs202_g0_s0_station_sref_script }; /* 0x825592c */ + +static const struct ScriptCommand s_gs202_g0_s0_evt0_sref_script[] = { /* 0x8255938 */ + DEBUGINFO, + ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Keep going?")), + CHOICE(/* label */ 0, _("Yes.")), + CHOICE(/* label */ 1, _("*No.")), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + JUMPIF_ARRAY(RESCUE_SCENARIO_JOB_LIST, 29, /* to label */ 2), + { 0x02, 0x00, 0x001e, 0x00000010, 0x00000000, NULL }, + COND_EQUAL(-1, /* to label */ 1), + HALT, + LABEL(2), /* = 0x02 */ + { 0x02, 0x00, 0x001e, 0x00000026, 0x00000000, NULL }, + COND_EQUAL(-1, /* to label */ 1), + HALT, +}; + +static const struct ScriptRef s_gs202_g0_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs202_g0_s0_evt0_sref_script }; /* 0x8255a64 */ + +static const struct ScriptCommand s_gs202_g0_s0_evt1_sref_script[] = { /* 0x8255a70 */ + DEBUGINFO, + JUMPIF_SCENARIOCHECK(5, /* to label */ 0), + ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Return to the rescue team base?")), + CHOICE(/* label */ 1, _("Yes.")), + CHOICE(/* label */ 2, _("*No.")), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(30), + { 0x23, 0x01, -0x0001, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER4_FUNC), + SET_DUNGEON_RES(/* result */ 10, /* enter */ -1), + EXECUTE_STATION(12, 4, 0), + HALT, + LABEL(0), /* = 0x00 */ + ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Return to the entrance?")), + CHOICE(/* label */ 3, _("Yes.")), + CHOICE(/* label */ 4, _("*No.")), + LABEL(4), /* = 0x04 */ + JUMP_SCRIPT(END_TALK), + LABEL(3), /* = 0x03 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x01, 0x00, 0x001e, 0x000000c9, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptRef s_gs202_g0_s0_evt1_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs202_g0_s0_evt1_sref_script }; /* 0x8255c38 */ + +static const struct ScriptCommand s_gs202_g0_s0_obj0_dlg2[] = { /* 0x8255c44 */ + DEBUGINFO, + JUMP_SCRIPT(SAVE_POINT), +}; + +static const struct ScriptCommand s_gs202_g0_s1_lives0_dlg0[] = { /* 0x8255c64 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs202_g0_s1_lives1_dlg0[] = { /* 0x8255ca4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs202_g0_s3_lives0_dlg0[] = { /* 0x8255ce4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs202_g0_s3_lives1_dlg0[] = { /* 0x8255d24 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs202_g0_s4_lives0_dlg0[] = { /* 0x8255d64 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs202_g0_s4_lives1_dlg0[] = { /* 0x8255d94 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs202_g1_s0_station_sref_script[] = { /* 0x8255dc4 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 202), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 202), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + JUMPIF_EQUAL(SCENARIO_MAIN, 14, /* to label */ 0), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + { 0x3b, 0x1c, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + SELECT_MAP(202), + CALL_STATION( 2, 0), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(115), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs202_g1_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs202_g1_s0_station_sref_script }; /* 0x8255ef4 */ + +static const struct ScriptCommand s_gs202_g1_s0_lives0_dlg0[] = { /* 0x8255f00 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_LEFT_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hmm...#W\nWell, that didn't go well.")), + VARIANT_DEFAULT(_(" Hmm...#W\nThat didn't work out...")), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But we didn't have far to\ngo!")), + VARIANT(/* == */ 1, _(" Let's storm our way to the\ntop this time, $n0!")), + VARIANT_DEFAULT(_(" But we were very close!")), + VARIANT_DEFAULT(_(" Let's be sure to reach the\npeak this time, $n0!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs202_g1_s0_lives1_dlg0[] = { /* 0x82561ac */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs202_g2_s0_station_sref_script[] = { /* 0x825628c */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs202_g2_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs202_g2_s0_station_sref_script }; /* 0x82562bc */ +static const struct GroundLivesData s_gs202_g0_s0_lives[] = { /* 0x82562c8 */ + /* 0 */ { 145, 0, 0, 0, { 28, 28, CPOS_HALFTILE, CPOS_HALFTILE }, {} }, +}; + +static const struct GroundLivesData s_gs202_g0_s1_lives[] = { /* 0x82562e0 */ + /* 0 */ { 0, 4, 0, 0, { 28, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs202_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs202_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs202_g0_s3_lives[] = { /* 0x8256310 */ + /* 0 */ { 0, 4, 0, 0, { 28, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs202_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs202_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs202_g0_s4_lives[] = { /* 0x8256340 */ + /* 0 */ { 0, 4, 0, 0, { 28, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs202_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs202_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs202_g1_s0_lives[] = { /* 0x8256370 */ + /* 0 */ { 0, 0, 0, 0, { 30, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs202_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 27, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs202_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundObjectData s_gs202_g0_s0_objs[] = { /* 0x82563a0 */ + /* 0 */ { 4, 0, 4, 3, { 28, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs202_g0_s0_obj0_dlg2, + } }, +}; + +static const struct GroundEffectData s_gs202_g1_s0_effs[] = { /* 0x82563b8 */ + /* 0 */ { 0, 0, 1, 1, { 28, 37, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEventData s_gs202_g0_s0_evts[] = { /* 0x82563c4 */ + /* 0 */ { 15, 3, 0, 0, { 21, 12, 0, 0 }, &s_gs202_g0_s0_evt0_sref }, + /* 1 */ { 15, 3, 0, 0, { 21, 42, 0, 0 }, &s_gs202_g0_s0_evt1_sref }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x82563dc */ + &s_gs202_g0_s0_station_sref, + &s_gs202_g1_s0_station_sref, + &s_gs202_g2_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs202_g0_sectors[] = { /* 0x82563e8 */ + { LPARRAY(s_gs202_g0_s0_lives), LPARRAY(s_gs202_g0_s0_objs), 0,NULL, LPARRAY(s_gs202_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs202_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs202_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs202_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs202_g1_sectors[] = { /* 0x82564b0 */ + { LPARRAY(s_gs202_g1_s0_lives), 0,NULL, LPARRAY(s_gs202_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs202_g2_sectors[] = { /* 0x82564d8 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptGroup s_gs202_groups[] = { /* 0x8256500 */ + { LPARRAY(s_gs202_g0_sectors) }, + { LPARRAY(s_gs202_g1_sectors) }, + { LPARRAY(s_gs202_g2_sectors) }, +}; + +static const struct GroundLink s_gs202_links[] = { /* 0x8256518 */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs202 = { LPARRAY(s_gs202_groups), s_gs202_links }; /* 0x8256520 */ diff --git a/src/data/ground/ground_data_d11p03_station.h b/src/data/ground/ground_data_d11p03_station.h new file mode 100644 index 000000000..39c4a4298 --- /dev/null +++ b/src/data/ground/ground_data_d11p03_station.h @@ -0,0 +1,1414 @@ + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs203_g0_s0_station_sref_script[] = { /* 0x8256534 */ + DEBUGINFO, + SELECT_MAP(203), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs203_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs203_g0_s0_station_sref_script }; /* 0x82565a0 */ + +static const struct ScriptCommand s_gs203_g1_s0_station_sref_script[] = { /* 0x82565ac */ + DEBUGINFO, + SELECT_MAP(203), + SELECT_ENTITIES(-1, 0), + BGM_STOP, + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs203_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs203_g1_s0_station_sref_script }; /* 0x825663c */ + +static const struct ScriptCommand s_gs203_g1_s0_eff0_script[] = { /* 0x8256648 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x28, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x30, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs203_g1_s0_lives0_dlg0[] = { /* 0x82566f8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0004, 0x00000052, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh! Here at last!\nWe're at the peak!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hey, Ninetales!#W\nWhere are you?! Come out!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(45), + FANFARE_PLAY2(506), + { 0x28, 0x01, 0x0005, 0x0000003c, 0x00ffffff, NULL }, + WAIT(30), + SELECT_LIVES(-1, 1), + { 0x27, 0x01, 0x0005, 0x0000003c, 0x00ffffff, NULL }, + BGM_SWITCH(6), + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh!\nLong time, Ninetales!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Recognize me?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ............#WWhat do you want?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(455), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000042, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh!\nYou want to know what I want?!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Look at me!\nIsn't it your fault that I look like this?!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What, you can't even begin\nby apologizing?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" It is not my fault.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" It all arose because you\nfled, isn't that so?") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" You fled from yourself as\na human...#W\nAnd you fled from Gardevoir.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" It was I who cast the curse.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" But you became\n$m2 because you\nabandoned Gardevoir.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" It was Gardevoir that bore\nmy curse, not you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000043, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Keh! You're quibbling!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Anyway...#W\nAbout that curse...#W\nHow about lifting it already?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(464), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" You...#W\nYou have the nerve to ask that?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Keh! That's right!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Imagine! Me asking anyone\nfor a favor!#W\nI'm breaking out in hives at the thought!") }, + { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Turn me down, and I'll\nKO you!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Well, it won't be me\ndoing the fighting, but those behind me...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(SHOCK_FUNC), + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'll see this curse lifted\neven if it means taking you on!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Humph. I regret to inform...#W\nEven if you could defeat me, the curse\nwould remain.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I don't have the power to\nlift curses.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000046, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gegeh!\nWhat are you saying?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" We $m3 are known\nto be vengeful in the extreme.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Once we cast a curse,\nit is final...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Our curse is so powerful,\neven we cannot lift it...#W\nThere may be a way, however...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I became enraged at your\ntreacherous heart...#W\nAnd on it, I laid my curse.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" For that reason, depending\non your heart now, the curse may be\nlifted.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Take this with you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY(212), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n2 received the\n#+#CI9-Tail Crest#R from $n3.") }, + { 0xe1, 0x00, 0x00d4, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Gardevoir's physical form\nis sealed within the #CDMurky Cave#R.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" The seal can be broken\nby that stone.#W\nThe #CI9-Tail Crest#R.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gotcha!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We just go to this\n#CDMurky Cave#R and plunk down that rock...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And that breaks the seal,\nso good-bye to the curse!") }, + { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh!\nHow do you like that?\nIt's ridiculously simple!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There was a way to lift\nthe curse after all!#W\nYou had me scared! Kekeke!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0c, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hey!\nI kept you waiting!\nLet's get home! Kekeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(150), + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x89, 0xc0, 0x0100, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" That oaf...#W\nHe has changed in many ways...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" But he is wavering...#W\nHis old and new emotions are clashing\nwithin his heart...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" If he would only realize that\nupon reaching the #CDMurky Cave#R...#W\nIf he does not...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs203_g1_s0_lives1_dlg0[] = { /* 0x8257a0c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x18, 0x0080, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + WAIT(20), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x28, 0x0100, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x89, 0x78, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs203_g1_s1_lives0_dlg0[] = { /* 0x8257c8c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x84, 0x00, 0x0100, -0x00000011, 0x00000020, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x84, 0x00, 0x0100, 0x00000011, -0x00000020, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs203_g2_s0_station_sref_script[] = { /* 0x8257e2c */ + DEBUGINFO, + BGM_STOP, + SELECT_MAP(203), + SELECT_ENTITIES(-1, 0), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs203_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs203_g2_s0_station_sref_script }; /* 0x8257e9c */ + +static const struct ScriptCommand s_gs203_g2_s0_eff0_script[] = { /* 0x8257ea8 */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs203_g2_s0_lives0_dlg0[] = { /* 0x8257ee8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0005, 0x00000063, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x68, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" We finally made it.")), + VARIANT(/* == */ 1, _(" This is the peak.#W\n...Right?")), + VARIANT(/* == */ 1, _(" Where could $n5\nbe?")), + VARIANT_DEFAULT(_(" We've finally arrived.")), + VARIANT_DEFAULT(_(" This is the summit.#W\n...Isn't it?")), + VARIANT_DEFAULT(_(" I wonder where\n$n5 is?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" There they are!#W\nI've spotted $n0!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" All right!\nI see them!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 1), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(10), + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" A-$n2!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" It's about time.\nWe finally caught up to you.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Your fugitive act dragged\nus all the way out here...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Pipe down, $n4.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" We can finally settle\nthings here.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I can barely contain myself.\nI'm itching for a fight.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" $n1.#W\nDon't think badly of me.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I don't know how to show\nmercy.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n0...#W\nI didn't wish for this conclusion...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But this, too, is fate.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The role of a rescue team\nis to help bring peace.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We will...#W\ncrush you with every shred of our power!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Get them!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000005, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0200, 0x00000000, 0x00000010, NULL }, + WAIT(5), + FANFARE_PLAY2(497), + { 0x28, 0x01, 0x0005, 0x00000002, 0x00ffffff, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x00000002, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x27, 0x00, 0x0005, 0x00000003, 0x00ffffff, NULL }, + { 0x62, 0x00, 0x0400, 0x00000040, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000010, 0x00000000, NULL }, + { 0x62, 0x00, 0x0080, 0x00000008, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0300, -0x00000020, 0x00000000, NULL }, + { 0x54, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0300, -0x00000038, 0x00000000, NULL }, + FANFARE_PLAY2(497), + { 0x28, 0x01, 0x0005, 0x00000002, 0x00ffffff, NULL }, + { 0xe5, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x00000003, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x27, 0x00, 0x0005, 0x00000003, 0x00ffffff, NULL }, + { 0x7e, 0x00, 0x0400, -0x00000020, 0x00000040, NULL }, + { 0x7e, 0x00, 0x0100, -0x00000008, 0x00000010, NULL }, + { 0x7e, 0x00, 0x0080, -0x00000004, 0x00000008, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x7e, 0x00, 0x0300, 0x00000018, -0x00000038, NULL }, + BGM_FADEOUT(150), + FANFARE_PLAY2(506), + { 0x28, 0x00, 0x0005, 0x0000005a, 0x00ffffff, NULL }, + { 0x54, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0x72, 0x00, 0x005a, 0x00000008, -0x00000018, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + +static const struct ScriptCommand s_gs203_g2_s0_lives1_dlg0[] = { /* 0x8258a00 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x68, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(3), + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000005, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0200, 0x00000000, 0x00000010, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x00000005, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0400, 0x00000010, 0x00000040, NULL }, + { 0x62, 0x00, 0x0100, 0x00000004, 0x00000010, NULL }, + { 0x62, 0x00, 0x0080, 0x00000004, 0x00000008, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x004c, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs203_g2_s0_lives2_dlg0[] = { /* 0x8258c30 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x68, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x62, 0x00, 0x0080, 0x00000000, -0x00000028, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(3), + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000005, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0400, 0x00000000, 0x00000020, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x0000000b, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0400, 0x00000000, 0x00000050, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000018, NULL }, + { 0x62, 0x00, 0x0080, 0x00000000, 0x00000010, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x004c, 0x0000000c, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs203_g2_s1_lives0_dlg0[] = { /* 0x8258e20 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x50, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x08, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0x54, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x00000002, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0400, -0x00000040, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000010, 0x00000000, NULL }, + { 0x62, 0x00, 0x0080, -0x00000008, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x7e, 0x00, 0x0300, 0x00000050, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x00000003, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x7e, 0x00, 0x0400, 0x00000020, -0x00000040, NULL }, + { 0x7e, 0x00, 0x0100, 0x00000008, -0x00000010, NULL }, + { 0x7e, 0x00, 0x0080, 0x00000004, -0x00000008, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x7e, 0x00, 0x0300, -0x00000018, 0x00000038, NULL }, + { 0x54, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0x72, 0x00, 0x005a, -0x00000008, 0x00000018, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs203_g2_s1_lives1_dlg0[] = { /* 0x8259080 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x50, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x08, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x00000007, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0400, -0x00000020, -0x00000040, NULL }, + { 0x62, 0x00, 0x0100, -0x00000008, -0x00000010, NULL }, + { 0x62, 0x00, 0x0080, -0x00000004, -0x00000008, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x004c, 0x00000008, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs203_g2_s1_lives2_dlg0[] = { /* 0x8259250 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x50, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x08, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x00000009, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0400, 0x00000020, -0x00000040, NULL }, + { 0x62, 0x00, 0x0100, 0x00000008, -0x00000010, NULL }, + { 0x62, 0x00, 0x0080, -0x00000004, -0x00000008, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x004c, 0x0000000a, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs203_g3_s0_station_sref_script[] = { /* 0x82593c0 */ + DEBUGINFO, + SELECT_MAP(203), + SELECT_ENTITIES(-1, 0), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + WAIT(90), + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0000, 0x00000021, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000058, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000067, 0x00000000, NULL }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And thus...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Alakazam's team made their\n#+way underground to quell\n#+the awakened $n3.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Meanwhile, cleared of all\n#+suspicion, $n0's team...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Put an end to their long\n#+and arduous journey...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And returned to their\n#+welcoming rescue team base.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0x3b, 0x39, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs203_g3_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs203_g3_s0_station_sref_script }; /* 0x825964c */ + + +static const struct ScriptCommand s_gs203_g3_s0_lives0_dlg0[] = { /* 0x8259658 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0006, 0x00000052, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + BGM_FADEOUT(30), + FANFARE_PLAY2(466), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Cease this at once!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x27, 0x00, 0x0001, 0x0000001e, 0x00ffffff, NULL }, + SELECT_ENTITIES(-1, 1), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0032, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0200, -0x00000010, 0x00000010, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0x2e, 0x0d, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0002, 0x00000000, 0x00000003, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Wuh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...!#W\n$n5!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + FANFARE_PLAY2(455), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0x2e, 0x0c, 0x0003, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" W-what?!#W\n$n5?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Th-that's $n5...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0d, 0x0004, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" The legend...\nIt was real...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0005, 0x00000001, -0x00000001, NULL }, + BGM_SWITCH(6), + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Cease fighting at once,\n$n2.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" They are...#W\nmy guests.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Tell us, $n5!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Who was the human that\nappeared in your legend?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" No, even before that, was\nthe legend itself a true event?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Depending on your reply...#W\nI may have no choice but to eliminate\nthem!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Whether they consider my\ncurse to be a legend or not...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" I care not.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" However...#W\nIt did happen.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Many years ago, I tried to\nlay a curse on a human.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" It was then, however, that\n$n6, the human's partner, dashed\nin...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" It selflessly bore the full\nbrunt of the curse meant for the human.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Then, the human did a\nselfish and cowardly thing.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" They abandoned\n$n6 and fled.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" The human eventually\nbecame a Pokémon.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Transformed into a\nPokémon, the human...#W\nThe human lives on.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(150), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...And that human would be?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Who is the human that you\nspeak of?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" $n0...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" You may relax.\nIt is not you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(24), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............#WJust now...#W\n...What did you just say?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" $n0 is not the\nhuman that appears in the legend.\nThat is what I said.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Wh-#Wwhat...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000008, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ............#W\nWhat's wrong with me?#W\nI'm too tensed up to move...")), + VARIANT(/* == */ 3, _(" ............#W\nThere's something wrong...#W\nI'm too tensed up to move...")), + VARIANT_DEFAULT(_(" ............#W\nWhat's happening to me...?#W\nI'm too tensed up to move...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oo-oof...") }, + { 0xe5, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...Oof...") }, + { 0xe5, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Deep breaths...\nIn... Out... In... Out... In... Out...")), + VARIANT(/* == */ 1, _(" ..................#WWhew...")), + VARIANT_DEFAULT(_(" Deep breaths...\nIn... Out... In... Out... In... Out...")), + VARIANT_DEFAULT(_(" ..................#WWhew...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000a, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Oh, wow, awesome!")), + VARIANT_DEFAULT(_(" Oh, wow, fantastic!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x08, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x08, 0x0001, 0x00000004, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x08, 0x0002, 0x00000006, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x08, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000a, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" That's great!#W\nI knew $n0 wasn't the one!")), + VARIANT(/* == */ 1, _(" It's just as I thought!#W\n$n0 wouldn't do anything like\nthat!")), + VARIANT(/* == */ 3, _(" That's great!#W\nI knew $n0 couldn't be the one!")), + VARIANT(/* == */ 3, _(" I knew it!#W\n$n0 couldn't possibly be\nanyone that terrible!")), + VARIANT_DEFAULT(_(" That's great!#W\nI knew that $n0 wasn't involved!")), + VARIANT_DEFAULT(_(" I knew it!#W\nThere's no way that $n0 would\ndo those terrible things!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" I have another thing to say.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" It is true that I foretold\nof the world's balance becoming unstable...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" However, that human\nbecoming a Pokémon and the world's\nbalance are not linked in any way.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" The cause of the natural\ncalamities...#W\nIt exists elsewhere.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000003, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey! You lot!#W\nYou were wrong!")), + VARIANT(/* == */ 1, _(" You doubted and hounded\n$n0!")), + VARIANT_DEFAULT(_(" Hey, you!#W\nYou were wrong!")), + VARIANT_DEFAULT(_(" You were wrong to hound\nand harass $n0!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Uh...er...#W\nWe...uh...apologize.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ...We're sorry.\nWe got worked up by that Gengar.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0003, 0x00000042, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" No.#W\nI suspected Gengar right from the start.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" $n0 just doesn't\nlook like the treacherous type!#W\nHahahahaha...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" It'd be nice if I could\nbelieve that...")), + VARIANT_DEFAULT(_(" If only that were true...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But I must say...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You are to be commended\nfor prevailing through this cruel\njourney and discovering the truth.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Impressive, $n0.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hahaha! Isn't this great?\nI was convinced I was right!")), + VARIANT(/* == */ 3, _(" Hahaha! This is fantastic!\nI knew I wasn't wrong!")), + VARIANT_DEFAULT(_(" Hahaha! Excellent!\nI knew I was right!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...Hah?#W\nBut wait a second.")), + VARIANT_DEFAULT(_(" ...Huh?#W\nOh, but wait...")), + BGM_FADEOUT(150), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Why did $n0\nbecome a Pokémon?")), + VARIANT(/* == */ 1, _(" I understand that\n$n0 isn't the human that\nappeared in the legend...")), + VARIANT(/* == */ 1, _(" Then, why would\n$n0 become a Pokémon?")), + VARIANT(/* == */ 1, _(" $n0...#W\nWho are you?!")), + VARIANT_DEFAULT(_(" Then why did $n0\nturn into a Pokémon?")), + VARIANT_DEFAULT(_(" I understand that\n$n0 isn't the human from that\nlegend...")), + VARIANT_DEFAULT(_(" Then, how do you explain\n$n0 becoming a Pokémon?")), + VARIANT_DEFAULT(_(" $n0...#W\nWho are you?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(453), + { 0x97, 0x00, 0x0002, 0x00000001, 0x00000003, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x06, 0x0001, 0x00000003, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Waah! The ground's heaving!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0003, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...Qu...quake?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + BGM_FADEIN(60, 9), + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" The world's crust is\nshifting.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" The natural calamities are\nworsening.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" And...#W\nThe shifting of the ground...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" It will awaken the beast\nthat embodies the ground...\nThe beast that slept deep underground...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Groudon will be awakened!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(5), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What?!\nGroudon is rising?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Groudon?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What is that?#W\nWhat's a Groudon?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" A legendary Pokémon that\nhas been spoken of only in myths.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It is the Pokémon that\nraised the land masses and created\ncontinents...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It is said to have taken to\nsleep after catastrophic battles with\nits archenemy Kyogre.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" If Groudon were to get\nloose, there would be chaos.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" It must be stopped!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We will go.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" So will we!")), + VARIANT(/* == */ 3, _(" We'll go too!")), + VARIANT_DEFAULT(_(" We'll go too!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" No.\nYou must remain behind.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Groudon is far more\npowerful than any Pokémon you have\nfaced.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Leave it to us.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" That's how it goes.\nYou go back to your rescue team base\nfor a well-earned rest.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Don't worry about us.\nWe didn't get our Gold Rank the easy way.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" We'll get the job done, and\nwe'll be back before you know it.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Fine.\nWe're off to quell Groudon!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_STOP2(453), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs203_g3_s0_lives1_dlg0[] = { /* 0x825bcb4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x10, 0x0080, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x10, 0x0080, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x002e, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0080, -0x00000004, 0x00000000, NULL }, + { 0x62, 0x00, 0x0400, -0x00000010, 0x00000000, NULL }, + WAIT(4), + FANFARE_PLAY2(469), + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000008, NULL }, + { 0x8b, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000008, -0x00000008, NULL }, + { 0x8b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000010, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000008, 0x00000008, NULL }, + FANFARE_PLAY2(469), + { 0x8b, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000010, NULL }, + { 0x8b, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000008, 0x00000008, NULL }, + { 0x8b, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000010, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000008, -0x00000008, NULL }, + FANFARE_PLAY2(469), + { 0x8b, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000008, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000008, NULL }, + { 0x8b, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000008, -0x00000008, NULL }, + { 0x8b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000010, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000008, 0x00000008, NULL }, + FANFARE_PLAY2(469), + { 0x8b, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000010, NULL }, + { 0x8b, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000008, 0x00000008, NULL }, + { 0x8b, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000010, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000008, -0x00000008, NULL }, + { 0x8b, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000008, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + CALL_SCRIPT(ANGRY_START_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(ANGRY_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + WAIT(18), + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs203_g3_s0_lives2_dlg0[] = { /* 0x825c2f4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0018, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0200, 0x00000008, -0x00000008, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x004c, -0x00000008, 0x00000008, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(3), + { 0x91, 0x06, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(12), + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x06, 0x0001, 0x00000005, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x06, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x89, 0x50, 0x0100, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs203_g3_s0_lives3_dlg0[] = { /* 0x825c514 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000001, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x91, 0x08, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT(12), + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x07, 0x0002, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x89, 0x50, 0x0100, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs203_g3_s0_lives4_dlg0[] = { /* 0x825c664 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(7), + { 0x91, 0x06, 0x0002, 0x00000004, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x89, 0x50, 0x0100, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs203_g3_s0_lives5_dlg0[] = { /* 0x825c7a4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs203_g3_s1_lives0_dlg0[] = { /* 0x825c854 */ + DEBUGINFO, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x60, 0x01, 0x0000, 0x000000a0, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + WAIT(20), + FANFARE_PLAY2(504), + { 0x70, 0x00, 0x0800, 0x00000008, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0400, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x06, 0x0001, 0x00000006, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs203_g1_s0_lives[] = { /* 0x825cac4 */ + /* 0 */ { 0, 4, 0, 0, { 35, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs203_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 91, 4, 0, 0, { 28, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs203_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs203_g1_s1_lives[] = { /* 0x825caf4 */ + /* 0 */ { 99, 0, 0, 0, { 31, 24, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs203_g1_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs203_g2_s0_lives[] = { /* 0x825cb0c */ + /* 0 */ { 0, 4, 0, 0, { 29, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs203_g2_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 34, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs203_g2_s0_lives1_dlg0, + } }, + /* 2 */ { 83, 4, 0, 0, { 31, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs203_g2_s0_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs203_g2_s1_lives[] = { /* 0x825cb54 */ + /* 0 */ { 88, 0, 0, 0, { 31, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs203_g2_s1_lives0_dlg0, + } }, + /* 1 */ { 89, 0, 0, 0, { 28, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs203_g2_s1_lives1_dlg0, + } }, + /* 2 */ { 90, 0, 0, 0, { 35, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs203_g2_s1_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs203_g3_s0_lives[] = { /* 0x825cb9c */ + /* 0 */ { 0, 4, 0, 0, { 30, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs203_g3_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 35, 33, 0, CPOS_HALFTILE }, { + [0] = s_gs203_g3_s0_lives1_dlg0, + } }, + /* 2 */ { 88, 0, 0, 0, { 32, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs203_g3_s0_lives2_dlg0, + } }, + /* 3 */ { 89, 1, 0, 0, { 26, 24, 0, CPOS_HALFTILE }, { + [0] = s_gs203_g3_s0_lives3_dlg0, + } }, + /* 4 */ { 90, 7, 0, 0, { 36, 25, 0, CPOS_HALFTILE }, { + [0] = s_gs203_g3_s0_lives4_dlg0, + } }, + /* 5 */ { 83, 4, 0, 0, { 31, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs203_g3_s0_lives5_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs203_g3_s1_lives[] = { /* 0x825cc2c */ + /* 0 */ { 99, 6, 0, 0, { 30, 30, 0, CPOS_HALFTILE }, { + [0] = s_gs203_g3_s1_lives0_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs203_g1_s0_effs[] = { /* 0x825cc44 */ + /* 0 */ { 0, 0, 1, 1, { 31, 28, 0, CPOS_HALFTILE }, s_gs203_g1_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs203_g2_s0_effs[] = { /* 0x825cc50 */ + /* 0 */ { 0, 0, 1, 1, { 31, 30, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs203_g2_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs203_g3_s0_effs[] = { /* 0x825cc5c */ + /* 0 */ { 0, 0, 1, 1, { 31, 30, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x825cc68 */ + &s_gs203_g0_s0_station_sref, + &s_gs203_g1_s0_station_sref, + &s_gs203_g2_s0_station_sref, + &s_gs203_g3_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs203_g0_sectors[] = { /* 0x825cc78 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs203_g1_sectors[] = { /* 0x825cca0 */ + { LPARRAY(s_gs203_g1_s0_lives), 0,NULL, LPARRAY(s_gs203_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, + { LPARRAY(s_gs203_g1_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs203_g2_sectors[] = { /* 0x825ccf0 */ + { LPARRAY(s_gs203_g2_s0_lives), 0,NULL, LPARRAY(s_gs203_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, + { LPARRAY(s_gs203_g2_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs203_g3_sectors[] = { /* 0x825cd40 */ + { LPARRAY(s_gs203_g3_s0_lives), 0,NULL, LPARRAY(s_gs203_g3_s0_effs), 0,NULL, 1,&sStationScripts[3], }, + { LPARRAY(s_gs203_g3_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs203_groups[] = { /* 0x825cd90 */ + { LPARRAY(s_gs203_g0_sectors) }, + { LPARRAY(s_gs203_g1_sectors) }, + { LPARRAY(s_gs203_g2_sectors) }, + { LPARRAY(s_gs203_g3_sectors) }, +}; + +static const struct GroundLink s_gs203_links[] = { /* 0x825cdb0 */ + /* link 0 */ { { /*x*/ 35, /*y*/ 31, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 28, /*y*/ 31, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 2 */ { { /*x*/ 30, /*y*/ 30, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 3 */ { { /*x*/ 30, /*y*/ 30, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 4 */ { { /*x*/ 27, /*y*/ 32, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 5 */ { { /*x*/ 33, /*y*/ 34, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 6 */ { { /*x*/ 33, /*y*/ 33, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 7 */ { { /*x*/ 29, /*y*/ 30, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 8 */ { { /*x*/ 26, /*y*/ 24, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 9 */ { { /*x*/ 34, /*y*/ 30, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 10 */ { { /*x*/ 36, /*y*/ 25, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 11 */ { { /*x*/ 31, /*y*/ 31, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 12 */ { { /*x*/ 30, /*y*/ 37, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 13 */ { { /*x*/ 30, /*y*/ 32, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs203 = { LPARRAY(s_gs203_groups), s_gs203_links }; /* 0x825ce20 */ diff --git a/src/data/ground/ground_data_d12p01_station.h b/src/data/ground/ground_data_d12p01_station.h new file mode 100644 index 000000000..461244d1c --- /dev/null +++ b/src/data/ground/ground_data_d12p01_station.h @@ -0,0 +1,291 @@ + + + + + + + + + + + + +static const struct ScriptCommand s_gs204_g0_s0_station_sref_script[] = { /* 0x825ce34 */ + DEBUGINFO, + SELECT_MAP(204), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 15, /* to label */ 0), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + JUMP_LABEL(1), + LABEL(1), /* = 0x01 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 2), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 3), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 4), + JUMP_LABEL(2), + LABEL(4), /* = 0x04 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 5), + JUMP_LABEL(5), + LABEL(2), /* = 0x02 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(6), + LABEL(3), /* = 0x03 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(6), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(6), + LABEL(6), /* = 0x06 */ + BGM_SWITCH(108), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs204_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs204_g0_s0_station_sref_script }; /* 0x825d030 */ + +static const struct ScriptCommand s_gs204_g0_s1_lives0_dlg0[] = { /* 0x825d03c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs204_g0_s1_lives1_dlg0[] = { /* 0x825d07c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs204_g0_s3_lives0_dlg0[] = { /* 0x825d0bc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs204_g0_s3_lives1_dlg0[] = { /* 0x825d0fc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs204_g0_s4_lives0_dlg0[] = { /* 0x825d13c */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs204_g0_s4_lives1_dlg0[] = { /* 0x825d16c */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs204_g1_s0_station_sref_script[] = { /* 0x825d19c */ + DEBUGINFO, + SELECT_MAP(204), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(108), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x02, 0x00, 0x001e, 0x00000011, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs204_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs204_g1_s0_station_sref_script }; /* 0x825d21c */ + +static const struct ScriptCommand s_gs204_g1_s0_lives0_dlg0[] = { /* 0x825d228 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000067, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + WAIT(10), + CALL_SCRIPT(LOOK_AROUND_FUNC), + WAIT(30), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" So this is it...#W\nThe underground cavern where\n$n2 is...")), + VARIANT(/* == */ 1, _(" Look at the flowing\nstreams of lava...")), + VARIANT(/* == */ 1, _(" It wouldn't surprise me if\nthe dungeon is scorching hot...")), + VARIANT_DEFAULT(_(" This must be it...#W\n$n2 is in this underground\ncavern.")), + VARIANT_DEFAULT(_(" Whew...\nLook at the streams of lava.")), + VARIANT_DEFAULT(_(" It's going to be scorching\nhot in the dungeon, I think.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x93, 0x04, 0x000b, 0x00000022, 0x00000000, NULL }, + WAIT(15), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Other rescue teams should\nalready be inside.")), + VARIANT(/* == */ 1, _(" Let's get in there and give\nit our best!")), + VARIANT(/* == */ 3, _(" Other rescue teams\nshould already be here.")), + VARIANT(/* == */ 3, _(" Let's get going and try our\nbest!")), + VARIANT_DEFAULT(_(" There should be other\nrescue teams making their way through\neven now.")), + VARIANT_DEFAULT(_(" Let's try our best like\nalways!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x6b, 0x00, 0x0100, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs204_g1_s0_lives1_dlg0[] = { /* 0x825d6dc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs204_g2_s0_station_sref_script[] = { /* 0x825d78c */ + DEBUGINFO, + SELECT_MAP(204), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(108), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x02, 0x00, 0x001e, 0x00000011, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs204_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs204_g2_s0_station_sref_script }; /* 0x825d80c */ + +static const struct ScriptCommand s_gs204_g2_s0_lives0_dlg0[] = { /* 0x825d818 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000058, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000022, 0x00000000, NULL }, + WAIT(15), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" This time, we'll rescue\n$n2's team!\nLet's get it done!")), + VARIANT_DEFAULT(_(" This time, we have to\nrescue $n2's team!\nLet's not blow it!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x6b, 0x00, 0x0100, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs204_g2_s0_lives1_dlg0[] = { /* 0x825d9bc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs204_g0_s1_lives[] = { /* 0x825da4c */ + /* 0 */ { 0, 4, 0, 0, { 26, 29, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs204_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 26, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs204_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs204_g0_s3_lives[] = { /* 0x825da7c */ + /* 0 */ { 0, 4, 0, 0, { 26, 29, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs204_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 26, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs204_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs204_g0_s4_lives[] = { /* 0x825daac */ + /* 0 */ { 0, 4, 0, 0, { 26, 29, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs204_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 26, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs204_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs204_g1_s0_lives[] = { /* 0x825dadc */ + /* 0 */ { 0, 2, 0, 0, { 28, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs204_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 6, 0, 0, { 23, 34, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs204_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs204_g2_s0_lives[] = { /* 0x825db0c */ + /* 0 */ { 0, 2, 0, 0, { 28, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs204_g2_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 6, 0, 0, { 23, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs204_g2_s0_lives1_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs204_g1_s0_effs[] = { /* 0x825db3c */ + /* 0 */ { 0, 0, 1, 1, { 26, 17, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs204_g2_s0_effs[] = { /* 0x825db48 */ + /* 0 */ { 0, 0, 1, 1, { 26, 17, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x825db54 */ + &s_gs204_g0_s0_station_sref, + &s_gs204_g1_s0_station_sref, + &s_gs204_g2_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs204_g0_sectors[] = { /* 0x825db60 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, + { LPARRAY(s_gs204_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs204_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs204_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs204_g1_sectors[] = { /* 0x825dc28 */ + { LPARRAY(s_gs204_g1_s0_lives), 0,NULL, LPARRAY(s_gs204_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs204_g2_sectors[] = { /* 0x825dc50 */ + { LPARRAY(s_gs204_g2_s0_lives), 0,NULL, LPARRAY(s_gs204_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptGroup s_gs204_groups[] = { /* 0x825dc78 */ + { LPARRAY(s_gs204_g0_sectors) }, + { LPARRAY(s_gs204_g1_sectors) }, + { LPARRAY(s_gs204_g2_sectors) }, + {}, +}; + +static const struct GroundLink s_gs204_links[] = { /* 0x825dc98 */ + /* link 0 */ { { /*x*/ 28, /*y*/ 19, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 23, /*y*/ 19, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 2 */ { { /*x*/ 26, /*y*/ 10, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 3 */ { { /*x*/ 26, /*y*/ 11, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs204 = { LPARRAY(s_gs204_groups), s_gs204_links }; /* 0x825dcb8 */ diff --git a/src/data/ground/ground_data_d12p02_station.h b/src/data/ground/ground_data_d12p02_station.h new file mode 100644 index 000000000..37d5b708e --- /dev/null +++ b/src/data/ground/ground_data_d12p02_station.h @@ -0,0 +1,264 @@ + + + + + + + + +static const struct ScriptCommand s_gs205_g0_s0_station_sref_script[] = { /* 0x825dccc */ + DEBUGINFO, + SELECT_MAP(205), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_GT, 17, /* to label */ 0), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + JUMP_LABEL(1), + LABEL(1), /* = 0x01 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 2), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 3), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 4), + JUMP_LABEL(2), + LABEL(4), /* = 0x04 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 5), + JUMP_LABEL(5), + LABEL(2), /* = 0x02 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(6), + LABEL(3), /* = 0x03 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(6), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(6), + LABEL(6), /* = 0x06 */ + BGM_SWITCH(108), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs205_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs205_g0_s0_station_sref_script }; /* 0x825dee8 */ + +static const struct ScriptCommand s_gs205_g0_s0_evt0_sref_script[] = { /* 0x825def4 */ + DEBUGINFO, + ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Keep going?")), + CHOICE(/* label */ 0, _("Yes.")), + CHOICE(/* label */ 1, _("*No.")), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x02, 0x00, 0x001e, 0x00000012, 0x00000000, NULL }, + COND_EQUAL(-1, /* to label */ 1), + HALT, +}; + +static const struct ScriptRef s_gs205_g0_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs205_g0_s0_evt0_sref_script }; /* 0x825dfd0 */ + +static const struct ScriptCommand s_gs205_g0_s0_evt1_sref_script[] = { /* 0x825dfdc */ + DEBUGINFO, + ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Return to the rescue team base?")), + CHOICE(/* label */ 0, _("Yes.")), + CHOICE(/* label */ 1, _("*No.")), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(30), + { 0x23, 0x01, -0x0001, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER4_FUNC), + SET_DUNGEON_RES(/* result */ 10, /* enter */ -1), + EXECUTE_STATION(12, 4, 0), + HALT, +}; + +static const struct ScriptRef s_gs205_g0_s0_evt1_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs205_g0_s0_evt1_sref_script }; /* 0x825e0dc */ + +static const struct ScriptCommand s_gs205_g0_s0_obj0_dlg2[] = { /* 0x825e0e8 */ + DEBUGINFO, + JUMP_SCRIPT(SAVE_POINT), +}; + +static const struct ScriptCommand s_gs205_g0_s1_lives0_dlg0[] = { /* 0x825e108 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs205_g0_s1_lives1_dlg0[] = { /* 0x825e148 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs205_g0_s3_lives0_dlg0[] = { /* 0x825e188 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs205_g0_s3_lives1_dlg0[] = { /* 0x825e1c8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs205_g0_s4_lives0_dlg0[] = { /* 0x825e208 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs205_g0_s4_lives1_dlg0[] = { /* 0x825e238 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs205_g1_s0_station_sref_script[] = { /* 0x825e268 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 205), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 205), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(205), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(108), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs205_g1_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs205_g1_s0_station_sref_script }; /* 0x825e338 */ + +static const struct ScriptCommand s_gs205_g1_s0_lives0_dlg0[] = { /* 0x825e344 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_LEFT_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hmm...#W\nWell, that didn't go well.")), + VARIANT_DEFAULT(_(" Hmm...#W\nThat didn't work out...")), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But we didn't have far to\ngo!#W\nLet's give it our best!")), + VARIANT_DEFAULT(_(" But we were very close!#W\nLet's keep trying our best!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs205_g1_s0_lives1_dlg0[] = { /* 0x825e570 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_RIGHT_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct GroundLivesData s_gs205_g0_s0_lives[] = { /* 0x825e620 */ + /* 0 */ { 145, 0, 0, 0, { 28, 28, CPOS_HALFTILE, CPOS_HALFTILE }, {} }, +}; + +static const struct GroundLivesData s_gs205_g0_s1_lives[] = { /* 0x825e638 */ + /* 0 */ { 0, 4, 0, 0, { 28, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs205_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs205_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs205_g0_s3_lives[] = { /* 0x825e668 */ + /* 0 */ { 0, 4, 0, 0, { 28, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs205_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs205_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs205_g0_s4_lives[] = { /* 0x825e698 */ + /* 0 */ { 0, 4, 0, 0, { 28, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs205_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs205_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs205_g1_s0_lives[] = { /* 0x825e6c8 */ + /* 0 */ { 0, 2, 0, 0, { 31, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs205_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 6, 0, 0, { 26, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs205_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundObjectData s_gs205_g0_s0_objs[] = { /* 0x825e6f8 */ + /* 0 */ { 4, 0, 4, 3, { 28, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs205_g0_s0_obj0_dlg2, + } }, +}; + +static const struct GroundEffectData s_gs205_g1_s0_effs[] = { /* 0x825e710 */ + /* 0 */ { 0, 0, 1, 1, { 28, 37, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEventData s_gs205_g0_s0_evts[] = { /* 0x825e71c */ + /* 0 */ { 15, 3, 0, 0, { 21, 12, 0, 0 }, &s_gs205_g0_s0_evt0_sref }, + /* 1 */ { 15, 3, 0, 0, { 21, 42, 0, 0 }, &s_gs205_g0_s0_evt1_sref }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x825e734 */ + &s_gs205_g0_s0_station_sref, + &s_gs205_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs205_g0_sectors[] = { /* 0x825e73c */ + { LPARRAY(s_gs205_g0_s0_lives), LPARRAY(s_gs205_g0_s0_objs), 0,NULL, LPARRAY(s_gs205_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs205_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs205_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs205_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs205_g1_sectors[] = { /* 0x825e804 */ + { LPARRAY(s_gs205_g1_s0_lives), 0,NULL, LPARRAY(s_gs205_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs205_groups[] = { /* 0x825e82c */ + { LPARRAY(s_gs205_g0_sectors) }, + { LPARRAY(s_gs205_g1_sectors) }, +}; + +static const struct GroundLink s_gs205_links[] = { /* 0x825e83c */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs205 = { LPARRAY(s_gs205_groups), s_gs205_links }; /* 0x825e844 */ diff --git a/src/data/ground/ground_data_d12p04_station.h b/src/data/ground/ground_data_d12p04_station.h new file mode 100644 index 000000000..366a8b01a --- /dev/null +++ b/src/data/ground/ground_data_d12p04_station.h @@ -0,0 +1,420 @@ + + + + + + + + +static const struct ScriptCommand s_gs206_g0_s0_station_sref_script[] = { /* 0x825e858 */ + DEBUGINFO, + SELECT_MAP(206), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs206_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs206_g0_s0_station_sref_script }; /* 0x825e8c4 */ + +static const struct ScriptCommand s_gs206_g1_s0_station_sref_script[] = { /* 0x825e8d0 */ + DEBUGINFO, + SELECT_MAP(206), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(114), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + FANFARE_FADEOUT2(60, 453), + BGM_FADEOUT(60), + { 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + { 0x97, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0000, 0x00000001, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000058, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000067, 0x00000000, NULL }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Having calmed $n2,\n#+$n0's team left the dungeon...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And returned to Pokémon Square\n#+together with $n1's team.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0x3b, 0x39, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs206_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs206_g1_s0_station_sref_script }; /* 0x825eacc */ + +static const struct ScriptCommand s_gs206_g1_s0_eff0_script[] = { /* 0x825ead8 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + END_DELETE, +}; + +static const struct ScriptCommand s_gs206_g1_s0_lives0_dlg0[] = { /* 0x825eb18 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(493), + { 0x28, 0x01, 0x0005, 0x00000004, 0x00ffffff, NULL }, + WAIT(5), + { 0x27, 0x00, 0x0005, 0x00000004, 0x00ffffff, NULL }, + WAIT(15), + FANFARE_PLAY2(493), + { 0x28, 0x01, 0x0005, 0x00000004, 0x00ffffff, NULL }, + WAIT(5), + { 0x27, 0x00, 0x0005, 0x00000004, 0x00ffffff, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Grgaaaaaah!") }, + WAIT(120), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(90), + FANFARE_PLAY2(499), + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 1), + WAIT(30), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Look! It's $n3!#W\n$n4 and $n5 too!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Urrgggh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0c, 0x0004, 0x00000043, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Did you do it?\n$n2?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Are you all right?")), + VARIANT_DEFAULT(_(" Are you OK?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x10, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Yes, fine.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" We will be fine.\nBut we must get out immediately.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0005, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What about $n2?#W\nWill it be OK?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Your concern is unneeded.\nIt will awaken soon enough.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" It had lost control only\nbecause it was enraged from having its\nsleep disturbed.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" It should calm down.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(453), + { 0x97, 0x00, 0x0002, 0x00000001, 0x00000003, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0005, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Waah...#W\nAnother quake!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Out! Quickly!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x78, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs206_g1_s0_lives1_dlg0[] = { /* 0x825f2ec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0080, 0x00000000, -0x00000008, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x78, 0x0100, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs206_g1_s0_lives2_dlg0[] = { /* 0x825f41c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x89, 0x78, 0x0100, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs206_g1_s0_lives3_dlg0[] = { /* 0x825f49c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x89, 0x78, 0x0100, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs206_g1_s0_lives4_dlg0[] = { /* 0x825f51c */ + DEBUGINFO, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(665), + WAIT(60), + FANFARE_PLAY2(662), + { 0x97, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x97, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs206_g1_s0_eff1_script[] = { /* 0x825f5fc */ + DEBUGINFO, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000067, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs206_g1_s0_eff2_script[] = { /* 0x825f65c */ + DEBUGINFO, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000067, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs206_g1_s0_eff3_script[] = { /* 0x825f6bc */ + DEBUGINFO, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000067, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs206_g1_s1_lives0_dlg0[] = { /* 0x825f71c */ + DEBUGINFO, + { 0x54, 0x00, 0x001a, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000001, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000001, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000001, 0x00000000, NULL }, + WAIT(30), + { 0x62, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000002, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000002, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x0a, 0x0002, 0x00000002, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x0a, 0x0001, 0x00000007, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x0a, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x78, 0x0100, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs206_g1_s1_lives1_dlg0[] = { /* 0x825f91c */ + DEBUGINFO, + { 0x54, 0x00, 0x0019, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000001, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000001, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000001, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000001, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000001, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000001, NULL }, + WAIT(25), + { 0x62, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000002, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000002, 0x00000000, NULL }, + WAIT(25), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x91, 0x0a, 0x0002, 0x00000001, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x0a, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x88, 0x0100, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs206_g1_s1_lives2_dlg0[] = { /* 0x825fb1c */ + DEBUGINFO, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000001, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000001, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000001, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000001, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000001, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000001, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000001, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000001, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000001, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000001, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000001, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000001, NULL }, + WAIT(30), + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000002, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000002, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000002, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000002, NULL }, + WAIT(40), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(40), + { 0x91, 0x0a, 0x0001, 0x00000006, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x0a, 0x0002, 0x00000001, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x0a, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x88, 0x0100, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs206_g1_s0_lives[] = { /* 0x825fdcc */ + /* 0 */ { 0, 4, 0, 0, { 34, 29, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs206_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 27, 29, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs206_g1_s0_lives1_dlg0, + } }, + /* 2 */ { 10, 4, 0, 0, { 29, 34, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs206_g1_s0_lives2_dlg0, + } }, + /* 3 */ { 11, 4, 0, 0, { 33, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs206_g1_s0_lives3_dlg0, + } }, + /* 4 */ { 103, 0, 0, 0, { 30, 22, CPOS_HALFTILE, 0 }, { + [0] = s_gs206_g1_s0_lives4_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs206_g1_s1_lives[] = { /* 0x825fe44 */ + /* 0 */ { 88, 0, 0, 0, { 30, 26, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs206_g1_s1_lives0_dlg0, + } }, + /* 1 */ { 89, 7, 0, 0, { 26, 24, 0, CPOS_HALFTILE }, { + [0] = s_gs206_g1_s1_lives1_dlg0, + } }, + /* 2 */ { 90, 1, 0, 0, { 36, 24, 0, CPOS_HALFTILE }, { + [0] = s_gs206_g1_s1_lives2_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs206_g1_s0_effs[] = { /* 0x825fe8c */ + /* 0 */ { 0, 0, 1, 1, { 31, 26, 0, CPOS_HALFTILE }, s_gs206_g1_s0_eff0_script }, + /* 1 */ { 4, 0, 2, 1, { 30, 26, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs206_g1_s0_eff1_script }, + /* 2 */ { 4, 0, 2, 1, { 36, 24, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs206_g1_s0_eff2_script }, + /* 3 */ { 4, 0, 2, 1, { 26, 24, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs206_g1_s0_eff3_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x825febc */ + &s_gs206_g0_s0_station_sref, + &s_gs206_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs206_g0_sectors[] = { /* 0x825fec4 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs206_g1_sectors[] = { /* 0x825feec */ + { LPARRAY(s_gs206_g1_s0_lives), 0,NULL, LPARRAY(s_gs206_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, + { LPARRAY(s_gs206_g1_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs206_groups[] = { /* 0x825ff3c */ + { LPARRAY(s_gs206_g0_sectors) }, + { LPARRAY(s_gs206_g1_sectors) }, +}; + +static const struct GroundLink s_gs206_links[] = { /* 0x825ff4c */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs206 = { LPARRAY(s_gs206_groups), s_gs206_links }; /* 0x825ff54 */ diff --git a/src/data/ground/ground_data_d13p01_station.h b/src/data/ground/ground_data_d13p01_station.h new file mode 100644 index 000000000..3d35f5f21 --- /dev/null +++ b/src/data/ground/ground_data_d13p01_station.h @@ -0,0 +1,421 @@ + + + + + + + + + +static const struct ScriptCommand s_gs207_g0_s0_station_sref_script[] = { /* 0x825ff68 */ + DEBUGINFO, + SELECT_MAP(207), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs207_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs207_g0_s0_station_sref_script }; /* 0x825ffd4 */ + +static const struct ScriptCommand s_gs207_g1_s0_station_sref_script[] = { /* 0x825ffe0 */ + DEBUGINFO, + BGM_FADEOUT(30), + WAIT(60), + SELECT_MAP(207), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(22), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs207_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs207_g1_s0_station_sref_script }; /* 0x8260080 */ + +static const struct ScriptCommand s_gs207_g1_s0_lives0_dlg0[] = { /* 0x826008c */ + DEBUGINFO, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0030, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x60, 0x00, 0x0000, 0x00000088, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + FANFARE_PLAY2(509), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0a00, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x52, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + FANFARE_PLAY2(510), + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x0000000c, 0x00000000, NULL }, + WAIT(2), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x002c, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Ouch...#W\nWhere are we?")), + VARIANT_DEFAULT(_(" Owowow...#W\nWhere are we?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_RIGHT_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wah!\n$n0, this is cool!#W\nWe're on clouds!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, wow!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0, look up there!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs207_g1_s0_lives1_dlg0[] = { /* 0x8260458 */ + DEBUGINFO, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0030, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x60, 0x00, 0x0000, 0x00000088, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x70, 0x00, 0x0a00, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x52, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x0000000c, 0x00000000, NULL }, + WAIT(2), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x002c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_LEFT_FUNC), + WAIT(30), + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0031, 0x00000000, 0x00000000, NULL }, + { 0x84, 0x00, 0x0080, -0x00000018, 0x00000000, NULL }, + WAIT(20), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(457), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + WAIT(30), + { 0x84, 0x00, 0x0080, 0x00000018, 0x00000010, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(20), + FANFARE_PLAY2(457), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + WAIT(30), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(15), + FANFARE_PLAY2(458), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x84, 0x00, 0x0099, 0x00000000, -0x00000010, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs207_g1_s0_lives2_dlg0[] = { /* 0x8260738 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x60, 0x00, 0x0000, 0x000000c8, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x70, 0x00, 0x0a00, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x52, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x0000000c, 0x00000000, NULL }, + WAIT(2), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs207_g2_s0_station_sref_script[] = { /* 0x82608a8 */ + DEBUGINFO, + SELECT_MAP(207), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(22), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x02, 0x00, 0x001e, 0x00000013, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs207_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs207_g2_s0_station_sref_script }; /* 0x8260928 */ + +static const struct ScriptCommand s_gs207_g2_s0_lives0_dlg0[] = { /* 0x8260934 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x0000006c, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" It must be at the very top...")), + VARIANT(/* == */ 1, _(" That must be where\n$n2 is...")), + VARIANT_DEFAULT(_(" It's at the top of this\ntower...")), + VARIANT_DEFAULT(_(" That's where $n2\nis...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(10), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0!\nLet's give it our best!")), + VARIANT_DEFAULT(_(" $n0!\nLet's do our best on the climb!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x00b3, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs207_g2_s0_lives1_dlg0[] = { /* 0x8260b8c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + WAIT(10), + { 0x6b, 0x00, 0x00b3, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs207_g2_s0_lives2_dlg0[] = { /* 0x8260c3c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x00b3, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs207_g3_s0_station_sref_script[] = { /* 0x8260cac */ + DEBUGINFO, + SELECT_MAP(207), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(22), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x02, 0x00, 0x001e, 0x00000013, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs207_g3_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs207_g3_s0_station_sref_script }; /* 0x8260d2c */ + +static const struct ScriptCommand s_gs207_g3_s0_lives0_dlg0[] = { /* 0x8260d38 */ + DEBUGINFO, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0030, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x60, 0x00, 0x0000, 0x00000088, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(509), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0a00, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x52, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x0000000c, 0x00000000, NULL }, + WAIT(2), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(10), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" All right.\nWe're up in the sky again.")), + VARIANT_DEFAULT(_(" OK.\nHere we are in the sky again.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Let's storm our way to\nthe top floor!")), + VARIANT_DEFAULT(_(" Let's head for the top!\nThis is it!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x00b3, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs207_g3_s0_lives1_dlg0[] = { /* 0x826104c */ + DEBUGINFO, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0030, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x60, 0x00, 0x0000, 0x00000088, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x70, 0x00, 0x0a00, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x52, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x0000000c, 0x00000000, NULL }, + WAIT(2), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + WAIT(10), + { 0x6b, 0x00, 0x00b3, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs207_g3_s0_lives2_dlg0[] = { /* 0x82611dc */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x60, 0x00, 0x0000, 0x000000c8, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x70, 0x00, 0x0a00, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x52, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x0000000c, 0x00000000, NULL }, + WAIT(2), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x00b3, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs207_g1_s0_lives[] = { /* 0x826131c */ + /* 0 */ { 0, 6, 0, 0, { 28, 18, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs207_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 6, 0, 0, { 22, 18, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs207_g1_s0_lives1_dlg0, + } }, + /* 2 */ { 10, 6, 0, 0, { 25, 24, CPOS_HALFTILE, 0 }, { + [0] = s_gs207_g1_s0_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs207_g2_s0_lives[] = { /* 0x8261364 */ + /* 0 */ { 0, 4, 0, 0, { 28, 18, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs207_g2_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 22, 18, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs207_g2_s0_lives1_dlg0, + } }, + /* 2 */ { 10, 4, 0, 0, { 25, 23, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs207_g2_s0_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs207_g3_s0_lives[] = { /* 0x82613ac */ + /* 0 */ { 0, 0, 0, 0, { 28, 18, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs207_g3_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 0, 0, 0, { 22, 18, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs207_g3_s0_lives1_dlg0, + } }, + /* 2 */ { 10, 0, 0, 0, { 25, 23, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs207_g3_s0_lives2_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs207_g1_s0_effs[] = { /* 0x82613f4 */ + /* 0 */ { 0, 0, 1, 1, { 25, 16, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs207_g2_s0_effs[] = { /* 0x8261400 */ + /* 0 */ { 0, 0, 1, 1, { 25, 16, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs207_g3_s0_effs[] = { /* 0x826140c */ + /* 0 */ { 0, 0, 1, 1, { 25, 16, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8261418 */ + &s_gs207_g0_s0_station_sref, + &s_gs207_g1_s0_station_sref, + &s_gs207_g2_s0_station_sref, + &s_gs207_g3_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs207_g0_sectors[] = { /* 0x8261428 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs207_g1_sectors[] = { /* 0x8261450 */ + { LPARRAY(s_gs207_g1_s0_lives), 0,NULL, LPARRAY(s_gs207_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs207_g2_sectors[] = { /* 0x8261478 */ + { LPARRAY(s_gs207_g2_s0_lives), 0,NULL, LPARRAY(s_gs207_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptSector s_gs207_g3_sectors[] = { /* 0x82614a0 */ + { LPARRAY(s_gs207_g3_s0_lives), 0,NULL, LPARRAY(s_gs207_g3_s0_effs), 0,NULL, 1,&sStationScripts[3], }, +}; + +static const struct GroundScriptGroup s_gs207_groups[] = { /* 0x82614c8 */ + { LPARRAY(s_gs207_g0_sectors) }, + { LPARRAY(s_gs207_g1_sectors) }, + { LPARRAY(s_gs207_g2_sectors) }, + { LPARRAY(s_gs207_g3_sectors) }, + {}, +}; + +static const struct GroundLink s_gs207_links[] = { /* 0x82614f0 */ + /* link 0 */ { { /*x*/ 25, /*y*/ 12, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs207 = { LPARRAY(s_gs207_groups), s_gs207_links }; /* 0x82614f8 */ diff --git a/src/data/ground/ground_data_d13p02_station.h b/src/data/ground/ground_data_d13p02_station.h new file mode 100644 index 000000000..3c2ab32eb --- /dev/null +++ b/src/data/ground/ground_data_d13p02_station.h @@ -0,0 +1,265 @@ + + + + + + + + +static const struct ScriptCommand s_gs208_g0_s0_station_sref_script[] = { /* 0x826150c */ + DEBUGINFO, + SELECT_MAP(208), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_GT, 17, /* to label */ 0), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + JUMP_LABEL(1), + LABEL(1), /* = 0x01 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 2), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 3), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 4), + JUMP_LABEL(2), + LABEL(4), /* = 0x04 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 5), + JUMP_LABEL(5), + LABEL(2), /* = 0x02 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(6), + LABEL(3), /* = 0x03 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(6), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(6), + LABEL(6), /* = 0x06 */ + BGM_SWITCH(22), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs208_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs208_g0_s0_station_sref_script }; /* 0x8261728 */ + +static const struct ScriptCommand s_gs208_g0_s0_evt0_sref_script[] = { /* 0x8261734 */ + DEBUGINFO, + ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Keep going?")), + CHOICE(/* label */ 0, _("Yes.")), + CHOICE(/* label */ 1, _("*No.")), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x02, 0x00, 0x001e, 0x00000014, 0x00000000, NULL }, + COND_EQUAL(-1, /* to label */ 1), + HALT, +}; + +static const struct ScriptRef s_gs208_g0_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs208_g0_s0_evt0_sref_script }; /* 0x8261810 */ + +static const struct ScriptCommand s_gs208_g0_s0_evt1_sref_script[] = { /* 0x826181c */ + DEBUGINFO, + ASK1(FALSE, /*default*/ 0, /* speaker */ -1, _("Return to the rescue team base?")), + CHOICE(/* label */ 0, _("Yes.")), + CHOICE(/* label */ 1, _("*No.")), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(30), + { 0x23, 0x01, -0x0001, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER4_FUNC), + SET_DUNGEON_RES(/* result */ 10, /* enter */ -1), + EXECUTE_STATION(12, 4, 0), + HALT, +}; + +static const struct ScriptRef s_gs208_g0_s0_evt1_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs208_g0_s0_evt1_sref_script }; /* 0x826191c */ + +static const struct ScriptCommand s_gs208_g0_s0_obj0_dlg2[] = { /* 0x8261928 */ + DEBUGINFO, + JUMP_SCRIPT(SAVE_POINT), +}; + +static const struct ScriptCommand s_gs208_g0_s1_lives0_dlg0[] = { /* 0x8261948 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs208_g0_s1_lives1_dlg0[] = { /* 0x8261988 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs208_g0_s3_lives0_dlg0[] = { /* 0x82619c8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs208_g0_s3_lives1_dlg0[] = { /* 0x8261a08 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs208_g0_s4_lives0_dlg0[] = { /* 0x8261a48 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs208_g0_s4_lives1_dlg0[] = { /* 0x8261a78 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs208_g1_s0_station_sref_script[] = { /* 0x8261aa8 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 208), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 208), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(208), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(22), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs208_g1_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs208_g1_s0_station_sref_script }; /* 0x8261b78 */ + +static const struct ScriptCommand s_gs208_g1_s0_lives0_dlg0[] = { /* 0x8261b84 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_LEFT_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hmm...#W\nWell, that didn't go well.")), + VARIANT_DEFAULT(_(" Hmm...#W\nThat didn't work out...")), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But we didn't have far to\ngo!#W\nLet's give it our best!")), + VARIANT_DEFAULT(_(" But we were very close!#W\nLet's keep trying our best!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs208_g1_s0_lives1_dlg0[] = { /* 0x8261dc0 */ + DEBUGINFO, + CALL_SCRIPT(INIT_SLEEP_FUNC), + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(WAKEUP_FUNC), + CALL_SCRIPT(LOOK_AROUND_RIGHT_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct GroundLivesData s_gs208_g0_s0_lives[] = { /* 0x8261e70 */ + /* 0 */ { 145, 0, 0, 0, { 28, 28, CPOS_HALFTILE, CPOS_HALFTILE }, {} }, +}; + +static const struct GroundLivesData s_gs208_g0_s1_lives[] = { /* 0x8261e88 */ + /* 0 */ { 0, 4, 0, 0, { 28, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs208_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs208_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs208_g0_s3_lives[] = { /* 0x8261eb8 */ + /* 0 */ { 0, 4, 0, 0, { 28, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs208_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs208_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs208_g0_s4_lives[] = { /* 0x8261ee8 */ + /* 0 */ { 0, 4, 0, 0, { 28, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs208_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs208_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs208_g1_s0_lives[] = { /* 0x8261f18 */ + /* 0 */ { 0, 2, 0, 0, { 31, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs208_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 6, 0, 0, { 26, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs208_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundObjectData s_gs208_g0_s0_objs[] = { /* 0x8261f48 */ + /* 0 */ { 4, 0, 4, 3, { 28, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs208_g0_s0_obj0_dlg2, + } }, +}; + +static const struct GroundEffectData s_gs208_g1_s0_effs[] = { /* 0x8261f60 */ + /* 0 */ { 0, 0, 1, 1, { 28, 37, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEventData s_gs208_g0_s0_evts[] = { /* 0x8261f6c */ + /* 0 */ { 15, 3, 0, 0, { 21, 12, 0, 0 }, &s_gs208_g0_s0_evt0_sref }, + /* 1 */ { 15, 3, 0, 0, { 21, 42, 0, 0 }, &s_gs208_g0_s0_evt1_sref }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8261f84 */ + &s_gs208_g0_s0_station_sref, + &s_gs208_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs208_g0_sectors[] = { /* 0x8261f8c */ + { LPARRAY(s_gs208_g0_s0_lives), LPARRAY(s_gs208_g0_s0_objs), 0,NULL, LPARRAY(s_gs208_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs208_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs208_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs208_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs208_g1_sectors[] = { /* 0x8262054 */ + { LPARRAY(s_gs208_g1_s0_lives), 0,NULL, LPARRAY(s_gs208_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs208_groups[] = { /* 0x826207c */ + { LPARRAY(s_gs208_g0_sectors) }, + { LPARRAY(s_gs208_g1_sectors) }, +}; + +static const struct GroundLink s_gs208_links[] = { /* 0x826208c */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs208 = { LPARRAY(s_gs208_groups), s_gs208_links }; /* 0x8262094 */ diff --git a/src/data/ground/ground_data_d13p03_station.h b/src/data/ground/ground_data_d13p03_station.h new file mode 100644 index 000000000..0d0c30a10 --- /dev/null +++ b/src/data/ground/ground_data_d13p03_station.h @@ -0,0 +1,564 @@ + + + + + + + + +static const struct ScriptCommand s_gs209_g0_s0_station_sref_script[] = { /* 0x82620a8 */ + DEBUGINFO, + SELECT_MAP(209), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs209_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs209_g0_s0_station_sref_script }; /* 0x8262114 */ + +static const struct ScriptCommand s_gs209_g1_s0_station_sref_script[] = { /* 0x8262120 */ + DEBUGINFO, + SELECT_MAP(209), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(26), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x0010, 0x00000000, 0x00000000, NULL }, + FANFARE_FADEOUT2(16, 512), + RET, +}; + +static const struct ScriptRef s_gs209_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs209_g1_s0_station_sref_script }; /* 0x82621b0 */ + +static const struct ScriptCommand s_gs209_g1_s0_eff0_script[] = { /* 0x82621bc */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x20, 0x0500, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs209_g1_s0_lives0_dlg0[] = { /* 0x826223c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Gyaaaaaaaaaaaaaaaah!") }, + WAIT(30), + FANFARE_PLAY2(493), + { 0x28, 0x01, 0x0005, 0x00000008, 0x00ffffff, NULL }, + WAIT(5), + { 0x27, 0x00, 0x0005, 0x00000008, 0x00ffffff, NULL }, + WAIT(20), + FANFARE_PLAY2(493), + { 0x28, 0x01, 0x0005, 0x00000008, 0x00ffffff, NULL }, + WAIT(5), + { 0x27, 0x00, 0x0005, 0x00000008, 0x00ffffff, NULL }, + WAIT(120), + { 0x31, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(848), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0002, -0x00000002, 0x00000000, NULL }, + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ...Gwaargh!") }, + WAIT(90), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x0005, 0x0000001e, 0x00ffffff, NULL }, + WAIT(30), + FANFARE_PLAY2(512), + { 0x27, 0x00, 0x0005, 0x00000010, 0x00ffffff, NULL }, + { 0x97, 0x00, 0x0002, 0x00000005, 0x00000002, NULL }, + WAIT(40), + { 0x97, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x97, 0x00, 0x0002, 0x00000001, 0x00000001, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + WAIT(60), + { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Wh-wh-what?! Quake?!#W\nIt can't be!")), + VARIANT(/* == */ 1, _(" We're up on clouds...")), + VARIANT_DEFAULT(_(" Wh-wh-what?!\nAn earthquake?!#W\nIt's not possible!")), + VARIANT_DEFAULT(_(" We're on top of clouds...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" These are shock waves!#W\nAnd they're huge!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" That's it! I get it now!#W\nLook straight up, $n2!")), + VARIANT_DEFAULT(_(" That's it! I got it!#W\nLook straight up, $n2!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + +static const struct ScriptCommand s_gs209_g1_s0_lives1_dlg0[] = { /* 0x826282c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs209_g1_s0_lives2_dlg0[] = { /* 0x826290c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs209_g1_s0_lives3_dlg0[] = { /* 0x82629ac */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs209_g1_s0_lives4_dlg0[] = { /* 0x8262a4c */ + DEBUGINFO, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(652), + { 0x97, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + WAIT(8), + { 0x97, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(672), + { 0x62, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + WAIT(2), + { 0x62, 0x00, 0x0100, -0x00000001, 0x00000000, NULL }, + WAIT(2), + { 0x62, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + WAIT(2), + { 0x62, 0x00, 0x0100, -0x00000001, 0x00000000, NULL }, + WAIT(20), + FANFARE_PLAY2(672), + { 0x62, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + WAIT(1), + { 0x62, 0x00, 0x0100, -0x00000002, 0x00000000, NULL }, + WAIT(1), + { 0x62, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + WAIT(1), + { 0x62, 0x00, 0x0100, -0x00000002, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + WAIT(1), + { 0x62, 0x00, 0x0100, -0x00000002, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(774), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("Gyaaaaaaaaaaaaaah!") }, + { 0x28, 0x01, 0x0005, 0x00000008, 0x00ffffff, NULL }, + WAIT(5), + { 0x27, 0x00, 0x0005, 0x00000008, 0x00ffffff, NULL }, + WAIT(90), + { 0x31, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0018, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(517), + { 0x28, 0x01, 0x0005, 0x00000004, 0x00ffffff, NULL }, + WAIT(3), + { 0x27, 0x00, 0x0005, 0x00000004, 0x00ffffff, NULL }, + { 0x54, 0x00, 0x0019, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x001b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs209_g2_s0_station_sref_script[] = { /* 0x8262e10 */ + DEBUGINFO, + SELECT_MAP(209), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(26), + { 0x97, 0x00, 0x0002, 0x00000001, 0x00000001, NULL }, + WAIT(15), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x0005, 0x00000010, 0x00ffffff, NULL }, + RET, +}; + +static const struct ScriptRef s_gs209_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs209_g2_s0_station_sref_script }; /* 0x8262eb0 */ + +static const struct ScriptCommand s_gs209_g2_s0_eff0_script[] = { /* 0x8262ebc */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x14, 0x0500, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs209_g2_s0_lives0_dlg0[] = { /* 0x8262f4c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What is that?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" It's a shooting star!\nAnd it's gigantic!")), + VARIANT(/* == */ 1, _(" It's going to destroy\nthe world if it isn't stopped!")), + VARIANT_DEFAULT(_(" It's a shooting star!\nAnd it's enormous!")), + VARIANT_DEFAULT(_(" It will destroy the world\nif it continues on its path!")), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" That's why we came,\n$n2. We need you to destroy\nthat falling star!")), + VARIANT(/* == */ 3, _(" That's why we came,\n$n2.\nPlease, destroy the falling star!")), + VARIANT_DEFAULT(_(" That's why we came,\n$n2.\nPlease, destroy the falling star!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...So, that is why...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Yes! Hurry!\nDestroy it!")), + VARIANT_DEFAULT(_(" Yes!\nPlease hurry and destroy it!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#WBefore I try...#W\nI need to know your resolve.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The star has come too close.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If I were to loose my\nHyper Beam here...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You would not escape\nunscathed!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" So what?!#W\nWe knew that right from the start!")), + VARIANT_DEFAULT(_(" So?!#W\nWe accepted that from the start!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Well said!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(120), + FANFARE_PLAY2(664), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Take charge of your destiny!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(513), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + +static const struct ScriptCommand s_gs209_g2_s0_lives1_dlg0[] = { /* 0x8263660 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs209_g2_s0_lives2_dlg0[] = { /* 0x82636a0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs209_g2_s0_lives3_dlg0[] = { /* 0x82636e0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs209_g2_s0_lives4_dlg0[] = { /* 0x8263720 */ + DEBUGINFO, + { 0x54, 0x00, 0x001b, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0018, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x001a, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs209_g2_s0_eff1_script[] = { /* 0x8263860 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000006f, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000070, 0x00000000, NULL }, + WAIT(120), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x0000, -0x0000001a, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0000, 0x00000133, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000134, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs209_g3_s0_station_sref_script[] = { /* 0x8263980 */ + DEBUGINFO, + SELECT_MAP(209), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(26), + { 0x97, 0x00, 0x0002, 0x00000005, 0x00000002, NULL }, + WAIT(15), + { 0x27, 0x00, 0x0005, 0x00000010, 0x00ffffff, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x28, 0x01, 0x0005, 0x0000003c, 0x00ffffff, NULL }, + WAIT(120), + { 0x31, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2b, 0x00, 0x0000, -0x00000001, -0x00000001, NULL }, + WAIT(240), + RET, +}; + +static const struct ScriptRef s_gs209_g3_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs209_g3_s0_station_sref_script }; /* 0x8263a70 */ + +static const struct ScriptCommand s_gs209_g3_s0_lives0_dlg0[] = { /* 0x8263a7c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + WAIT(30), + { 0x2b, 0x00, 0x0000, 0x0000000f, 0x0000000f, NULL }, + { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Waaaaaaaaaaaaaaaaaah!") }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs209_g3_s0_lives1_dlg0[] = { /* 0x8263b44 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs209_g3_s0_lives2_dlg0[] = { /* 0x8263b84 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs209_g3_s0_lives3_dlg0[] = { /* 0x8263bb4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs209_g3_s0_lives4_dlg0[] = { /* 0x8263be4 */ + DEBUGINFO, + { 0x54, 0x00, 0x001a, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs209_g3_s0_eff1_script[] = { /* 0x8263c24 */ + DEBUGINFO, + { 0x56, 0x00, 0x0000, 0x00000134, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs209_g1_s0_lives[] = { /* 0x8263c54 */ + /* 0 */ { 0, 4, 0, 0, { 37, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs209_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 32, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs209_g1_s0_lives1_dlg0, + } }, + /* 2 */ { 10, 4, 0, 0, { 34, 42, 0, CPOS_HALFTILE }, { + [0] = s_gs209_g1_s0_lives2_dlg0, + } }, + /* 3 */ { 11, 4, 0, 0, { 38, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs209_g1_s0_lives3_dlg0, + } }, + /* 4 */ { 108, 0, 0, 0, { 34, 34, CPOS_HALFTILE, 0 }, { + [0] = s_gs209_g1_s0_lives4_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs209_g2_s0_lives[] = { /* 0x8263ccc */ + /* 0 */ { 0, 4, 0, 0, { 37, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs209_g2_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 32, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs209_g2_s0_lives1_dlg0, + } }, + /* 2 */ { 10, 4, 0, 0, { 34, 42, 0, CPOS_HALFTILE }, { + [0] = s_gs209_g2_s0_lives2_dlg0, + } }, + /* 3 */ { 11, 4, 0, 0, { 38, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs209_g2_s0_lives3_dlg0, + } }, + /* 4 */ { 108, 0, 0, 0, { 34, 34, CPOS_HALFTILE, 0 }, { + [0] = s_gs209_g2_s0_lives4_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs209_g3_s0_lives[] = { /* 0x8263d44 */ + /* 0 */ { 0, 4, 0, 0, { 37, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs209_g3_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 32, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs209_g3_s0_lives1_dlg0, + } }, + /* 2 */ { 10, 4, 0, 0, { 34, 42, 0, CPOS_HALFTILE }, { + [0] = s_gs209_g3_s0_lives2_dlg0, + } }, + /* 3 */ { 11, 4, 0, 0, { 38, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs209_g3_s0_lives3_dlg0, + } }, + /* 4 */ { 108, 0, 0, 0, { 34, 34, CPOS_HALFTILE, 0 }, { + [0] = s_gs209_g3_s0_lives4_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs209_g1_s0_effs[] = { /* 0x8263dbc */ + /* 0 */ { 0, 0, 1, 1, { 34, 35, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs209_g1_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs209_g2_s0_effs[] = { /* 0x8263dc8 */ + /* 0 */ { 0, 0, 1, 1, { 34, 35, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs209_g2_s0_eff0_script }, + /* 1 */ { 4, 4, 1, 1, { 35, 31, 0, 0 }, s_gs209_g2_s0_eff1_script }, +}; + +static const struct GroundEffectData s_gs209_g3_s0_effs[] = { /* 0x8263de0 */ + /* 0 */ { 0, 0, 1, 1, { 34, 35, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, + /* 1 */ { 3, 0, 1, 1, { 35, 28, 0, 0 }, s_gs209_g3_s0_eff1_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8263df8 */ + &s_gs209_g0_s0_station_sref, + &s_gs209_g1_s0_station_sref, + &s_gs209_g2_s0_station_sref, + &s_gs209_g3_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs209_g0_sectors[] = { /* 0x8263e08 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs209_g1_sectors[] = { /* 0x8263e30 */ + { LPARRAY(s_gs209_g1_s0_lives), 0,NULL, LPARRAY(s_gs209_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs209_g2_sectors[] = { /* 0x8263e58 */ + { LPARRAY(s_gs209_g2_s0_lives), 0,NULL, LPARRAY(s_gs209_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptSector s_gs209_g3_sectors[] = { /* 0x8263e80 */ + { LPARRAY(s_gs209_g3_s0_lives), 0,NULL, LPARRAY(s_gs209_g3_s0_effs), 0,NULL, 1,&sStationScripts[3], }, +}; + +static const struct GroundScriptGroup s_gs209_groups[] = { /* 0x8263ea8 */ + { LPARRAY(s_gs209_g0_sectors) }, + { LPARRAY(s_gs209_g1_sectors) }, + { LPARRAY(s_gs209_g2_sectors) }, + { LPARRAY(s_gs209_g3_sectors) }, +}; + +static const struct GroundLink s_gs209_links[] = { /* 0x8263ec8 */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs209 = { LPARRAY(s_gs209_groups), s_gs209_links }; /* 0x8263ed0 */ diff --git a/src/data/ground/ground_data_d14p01_station.h b/src/data/ground/ground_data_d14p01_station.h new file mode 100644 index 000000000..579d2a524 --- /dev/null +++ b/src/data/ground/ground_data_d14p01_station.h @@ -0,0 +1,83 @@ + + + + + + + + +static const struct ScriptCommand s_gs210_g0_s0_station_sref_script[] = { /* 0x8263ee4 */ + DEBUGINFO, + SELECT_MAP(210), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs210_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs210_g0_s0_station_sref_script }; /* 0x8263f50 */ + +static const struct ScriptCommand s_gs210_g1_s0_station_sref_script[] = { /* 0x8263f5c */ + DEBUGINFO, + SELECT_MAP(210), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(10), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs210_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs210_g1_s0_station_sref_script }; /* 0x8263fdc */ + +static const struct ScriptCommand s_gs210_g1_s0_lives0_dlg0[] = { /* 0x8263fe8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs210_g1_s0_lives1_dlg0[] = { /* 0x8264058 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs210_g1_s0_lives[] = { /* 0x8264098 */ + /* 0 */ { 0, 4, 0, 0, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs210_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 132, 0, 0, 0, { 34, 25, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs210_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs210_g1_s0_effs[] = { /* 0x82640c8 */ + /* 0 */ { 0, 0, 1, 1, { 34, 27, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x82640d4 */ + &s_gs210_g0_s0_station_sref, + &s_gs210_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs210_g0_sectors[] = { /* 0x82640dc */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs210_g1_sectors[] = { /* 0x8264104 */ + { LPARRAY(s_gs210_g1_s0_lives), 0,NULL, LPARRAY(s_gs210_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs210_groups[] = { /* 0x826412c */ + { LPARRAY(s_gs210_g0_sectors) }, + { LPARRAY(s_gs210_g1_sectors) }, +}; + +static const struct GroundLink s_gs210_links[] = { /* 0x826413c */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs210 = { LPARRAY(s_gs210_groups), s_gs210_links }; /* 0x8264144 */ diff --git a/src/data/ground/ground_data_d15p01_station.h b/src/data/ground/ground_data_d15p01_station.h new file mode 100644 index 000000000..ec478d006 --- /dev/null +++ b/src/data/ground/ground_data_d15p01_station.h @@ -0,0 +1,114 @@ + + + + + + + + +static const struct ScriptCommand s_gs211_g0_s0_station_sref_script[] = { /* 0x8264158 */ + DEBUGINFO, + SELECT_MAP(211), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs211_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs211_g0_s0_station_sref_script }; /* 0x82641c4 */ + +static const struct ScriptCommand s_gs211_g1_s0_station_sref_script[] = { /* 0x82641d0 */ + DEBUGINFO, + SELECT_MAP(211), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(10), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs211_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs211_g1_s0_station_sref_script }; /* 0x8264250 */ + +static const struct ScriptCommand s_gs211_g1_s0_lives0_dlg0[] = { /* 0x826425c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gwooooooooooh!#W\n...H-how dare you!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" How...#W\nHow did this happen...?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But regardless, you have\nwon.#W\nLet me hear your wish.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Hm?! This...#W\nThis is the #CIRed Wing#R...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#WYou...#W\nStand back!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Raikou's thunderbolt\n#+electrified the #CIRed Wing#R!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The #CIRed Wing#R...#W\n#+transformed into\n#+the #CISunset Wing#R!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Its subtle gradation of yellow\n#+to red is a truly beauteous sight!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Go northeast!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" To a place called the\n#CDNorthwind Field#R.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You will find a Pokémon\nthere named Suicune.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If you are lucky enough to\nmeet Suicune...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Perhaps your wish will\ncome true!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY(212), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 received\n#+the #CISunset Wing#R.") }, + { 0xe1, 0x00, 0x00d4, 0x00000000, 0x00000000, NULL }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+And...") }, + FANFARE_PLAY(205), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Gained access to\n#+the #CDNorthwind Field#R!") }, + { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + +static const struct ScriptCommand s_gs211_g1_s0_lives1_dlg0[] = { /* 0x8264734 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs211_g1_s0_lives[] = { /* 0x8264774 */ + /* 0 */ { 0, 4, 0, 0, { 34, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs211_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 133, 0, 0, 0, { 34, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs211_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs211_g1_s0_effs[] = { /* 0x82647a4 */ + /* 0 */ { 0, 0, 1, 1, { 34, 39, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x82647b0 */ + &s_gs211_g0_s0_station_sref, + &s_gs211_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs211_g0_sectors[] = { /* 0x82647b8 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs211_g1_sectors[] = { /* 0x82647e0 */ + { LPARRAY(s_gs211_g1_s0_lives), 0,NULL, LPARRAY(s_gs211_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs211_groups[] = { /* 0x8264808 */ + { LPARRAY(s_gs211_g0_sectors) }, + { LPARRAY(s_gs211_g1_sectors) }, +}; + +static const struct GroundLink s_gs211_links[] = { /* 0x8264818 */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs211 = { LPARRAY(s_gs211_groups), s_gs211_links }; /* 0x8264820 */ diff --git a/src/data/ground/ground_data_d16p01_station.h b/src/data/ground/ground_data_d16p01_station.h new file mode 100644 index 000000000..9dfced553 --- /dev/null +++ b/src/data/ground/ground_data_d16p01_station.h @@ -0,0 +1,261 @@ + + + + + + + + +static const struct ScriptCommand s_gs212_g0_s0_station_sref_script[] = { /* 0x8264834 */ + DEBUGINFO, + SELECT_MAP(212), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs212_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs212_g0_s0_station_sref_script }; /* 0x82648a0 */ + +static const struct ScriptCommand s_gs212_g1_s0_station_sref_script[] = { /* 0x82648ac */ + DEBUGINFO, + SELECT_MAP(212), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(114), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs212_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs212_g1_s0_station_sref_script }; /* 0x826494c */ + +static const struct ScriptCommand s_gs212_g1_s0_eff0_script[] = { /* 0x8264958 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x000000ab, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs212_g1_s0_obj0_dlg0[] = { /* 0x8264998 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs212_g1_s0_lives0_dlg0[] = { /* 0x82649c8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(497), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x0005, 0x00000005, 0x00fa7d7d, NULL }, + { 0x27, 0x01, 0x0005, 0x00000005, 0x00fa7d7d, NULL }, + { 0xe2, 0x00, 0x01f1, 0x00000000, 0x00000000, NULL }, + WAIT(20), + FANFARE_PLAY2(497), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x0005, 0x00000005, 0x00550000, NULL }, + { 0x27, 0x01, 0x0005, 0x00000005, 0x00550000, NULL }, + { 0xe2, 0x00, 0x01f1, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gwooooooh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Urghgh...#W\nI... I lost...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You...#W\nWhat do you wish?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000018, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000018, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Wh-what?! This is...\nthe #CIClear Wing#R...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...I understand now.#W\nTo meet that Pokémon...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#WStand aside.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000008, NULL }, + BGM_FADEOUT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + SELECT_OBJECTS(1, 1), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x0005, 0x00000004, 0x00550000, NULL }, + WAIT(1), + { 0x27, 0x01, 0x0005, 0x00000004, 0x00550000, NULL }, + WAIT(10), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Entei's fiery blast made\n#+the #CIClear Wing#R flare!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The #CIClear Wing#R...#W\n#+transformed into the #CIRed Wing#R!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + WAIT(10), + FANFARE_PLAY2(507), + { 0x28, 0x01, 0x0001, 0x0000003c, 0x00ffffff, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + CANCEL_EFFECTS(1, 0), + CANCEL_OBJECTS(1, 1), + SELECT_EFFECTS(1, 1), + { 0x27, 0x01, 0x0001, 0x0000003c, 0x00ffffff, NULL }, + { 0xe2, 0x00, 0x01fb, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(114), + WAIT(60), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Take this and go west!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There, you will find\nthe #CDLightning Field#R.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You will know your path\nthere!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Now go!\nTo the #CDLightning Field#R!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000018, NULL }, + WAIT(20), + CANCEL_EFFECTS(1, 1), + WAIT(20), + BGM_STOP, + FANFARE_PLAY(212), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 received\n#+the #CIRed Wing#R.") }, + { 0xe1, 0x00, 0x00d4, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+And...") }, + FANFARE_PLAY(205), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Gained access to\n#+the #CDLightning Field#R!") }, + { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + +static const struct ScriptCommand s_gs212_g1_s0_lives1_dlg0[] = { /* 0x826518c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000008, NULL }, + WAIT(10), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000008, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe2, 0x00, 0x01d1, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(663), + { 0x56, 0x00, 0x0000, 0x0000004e, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe2, 0x00, 0x0297, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(653), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs212_g1_s1_eff0_script[] = { /* 0x826539c */ + DEBUGINFO, + { 0x56, 0x00, 0x0000, 0x000000ac, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs212_g1_s1_obj0_dlg0[] = { /* 0x82653cc */ + DEBUGINFO, + { 0x56, 0x00, 0x0000, 0x0000004c, 0x00000000, NULL }, + WAIT(10), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 1), + FANFARE_PLAY2(739), + { 0x56, 0x00, 0x0000, 0x0000013d, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe2, 0x00, 0x02e3, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + FANFARE_STOP2(739), + { 0x56, 0x00, 0x0000, 0x0000013d, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 0, /* to label */ 2), + JUMP_LABEL(1), + LABEL(2), /* = 0x02 */ + HALT, +}; + +static const struct GroundLivesData s_gs212_g1_s0_lives[] = { /* 0x826551c */ + /* 0 */ { 0, 4, 0, 0, { 22, 22, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs212_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 116, 0, 0, 0, { 22, 17, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs212_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundObjectData s_gs212_g1_s0_objs[] = { /* 0x826554c */ + /* 0 */ { 0, 0, 1, 1, { 22, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs212_g1_s0_obj0_dlg0, + } }, +}; + +static const struct GroundObjectData s_gs212_g1_s1_objs[] = { /* 0x8265564 */ + /* 0 */ { 67, 0, 2, 2, { 22, 17, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs212_g1_s1_obj0_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs212_g1_s0_effs[] = { /* 0x826557c */ + /* 0 */ { 5, 0, 1, 1, { 22, 17, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs212_g1_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs212_g1_s1_effs[] = { /* 0x8265588 */ + /* 0 */ { 5, 0, 1, 1, { 22, 17, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs212_g1_s1_eff0_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8265594 */ + &s_gs212_g0_s0_station_sref, + &s_gs212_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs212_g0_sectors[] = { /* 0x826559c */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs212_g1_sectors[] = { /* 0x82655c4 */ + { LPARRAY(s_gs212_g1_s0_lives), LPARRAY(s_gs212_g1_s0_objs), LPARRAY(s_gs212_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, + { 0,NULL, LPARRAY(s_gs212_g1_s1_objs), LPARRAY(s_gs212_g1_s1_effs), 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs212_groups[] = { /* 0x8265614 */ + { LPARRAY(s_gs212_g0_sectors) }, + { LPARRAY(s_gs212_g1_sectors) }, +}; + +static const struct GroundLink s_gs212_links[] = { /* 0x8265624 */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs212 = { LPARRAY(s_gs212_groups), s_gs212_links }; /* 0x826562c */ diff --git a/src/data/ground/ground_data_d17p01_station.h b/src/data/ground/ground_data_d17p01_station.h new file mode 100644 index 000000000..03840f789 --- /dev/null +++ b/src/data/ground/ground_data_d17p01_station.h @@ -0,0 +1,260 @@ + + + + + + + + +static const struct ScriptCommand s_gs213_g0_s0_station_sref_script[] = { /* 0x8265640 */ + DEBUGINFO, + SELECT_MAP(213), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs213_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs213_g0_s0_station_sref_script }; /* 0x82656ac */ + +static const struct ScriptCommand s_gs213_g1_s0_station_sref_script[] = { /* 0x82656b8 */ + DEBUGINFO, + SELECT_MAP(213), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(114), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs213_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs213_g1_s0_station_sref_script }; /* 0x8265758 */ + +static const struct ScriptCommand s_gs213_g1_s0_eff0_script[] = { /* 0x8265764 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x000000ac, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs213_g1_s0_obj0_dlg0[] = { /* 0x82657a4 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs213_g1_s0_lives0_dlg0[] = { /* 0x82657d4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(497), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x0005, 0x00000005, 0x00707000, NULL }, + { 0x27, 0x01, 0x0005, 0x00000005, 0x00707000, NULL }, + { 0xe2, 0x00, 0x01f1, 0x00000000, 0x00000000, NULL }, + WAIT(20), + FANFARE_PLAY2(497), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x0005, 0x00000005, 0x00505000, NULL }, + { 0x27, 0x01, 0x0005, 0x00000005, 0x00505000, NULL }, + { 0xe2, 0x00, 0x01f1, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0002, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(685), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gwooooooooooh!#W\n...H-how dare you!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" How...#W\nHow did this happen...?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But regardless, you have\nwon.#W\nLet me hear your wish.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000018, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000018, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Hm?! This...#W\nThis is the #CIRed Wing#R...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#WYou...#W\nStand back!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000008, NULL }, + BGM_FADEOUT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + SELECT_OBJECTS(1, 1), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x28, 0x00, 0x0005, 0x00000003, 0x00505000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + WAIT(1), + { 0x27, 0x01, 0x0005, 0x00000003, 0x00505000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Raikou's thunderbolt\n#+electrified the #CIRed Wing#R!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The #CIRed Wing#R...#W\n#+transformed into\n#+the #CISunset Wing#R!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + WAIT(10), + FANFARE_PLAY2(507), + { 0x28, 0x01, 0x0001, 0x0000003c, 0x00ffffff, NULL }, + CANCEL_EFFECTS(1, 0), + CANCEL_OBJECTS(1, 1), + SELECT_EFFECTS(1, 1), + { 0x27, 0x01, 0x0001, 0x0000003c, 0x00ffffff, NULL }, + { 0xe2, 0x00, 0x01fb, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(114), + WAIT(60), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Its subtle gradation of yellow\n#+to red is a truly beauteous sight!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Go northeast!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" To a place called the\n#CDNorthwind Field#R.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You will find a Pokémon\nthere named Suicune.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If you are lucky enough to\nmeet Suicune...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Perhaps your wish will\ncome true!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000018, NULL }, + WAIT(20), + CANCEL_EFFECTS(1, 1), + WAIT(20), + BGM_STOP, + FANFARE_PLAY(212), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 received\n#+the #CISunset Wing#R.") }, + { 0xe1, 0x00, 0x00d4, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+And...") }, + FANFARE_PLAY(205), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Gained access to\n#+the #CDNorthwind Field#R!") }, + { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + +static const struct ScriptCommand s_gs213_g1_s0_lives1_dlg0[] = { /* 0x826604c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000008, NULL }, + WAIT(10), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000008, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe2, 0x00, 0x01d1, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(708), + { 0x56, 0x00, 0x0000, 0x00000062, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe2, 0x00, 0x02c4, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + WAIT(15), + FANFARE_PLAY2(479), + { 0xe2, 0x00, 0x01df, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs213_g1_s1_eff0_script[] = { /* 0x826626c */ + DEBUGINFO, + { 0x56, 0x00, 0x0000, 0x000000ad, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs213_g1_s1_obj0_dlg0[] = { /* 0x826629c */ + DEBUGINFO, + FANFARE_PLAY2(662), + { 0x56, 0x00, 0x0000, 0x000000b1, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x000000b2, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 1), + FANFARE_PLAY2(726), + { 0xe2, 0x00, 0x02d6, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(726), + WAIT(45), + { 0xe2, 0x00, 0x02d6, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + HALT, +}; + +static const struct GroundLivesData s_gs213_g1_s0_lives[] = { /* 0x82663ac */ + /* 0 */ { 0, 4, 0, 0, { 22, 19, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs213_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 117, 0, 0, 0, { 22, 14, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs213_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundObjectData s_gs213_g1_s0_objs[] = { /* 0x82663dc */ + /* 0 */ { 0, 0, 1, 1, { 22, 18, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs213_g1_s0_obj0_dlg0, + } }, +}; + +static const struct GroundObjectData s_gs213_g1_s1_objs[] = { /* 0x82663f4 */ + /* 0 */ { 67, 0, 2, 2, { 22, 14, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs213_g1_s1_obj0_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs213_g1_s0_effs[] = { /* 0x826640c */ + /* 0 */ { 5, 0, 1, 1, { 22, 14, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs213_g1_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs213_g1_s1_effs[] = { /* 0x8266418 */ + /* 0 */ { 5, 0, 1, 1, { 22, 14, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs213_g1_s1_eff0_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8266424 */ + &s_gs213_g0_s0_station_sref, + &s_gs213_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs213_g0_sectors[] = { /* 0x826642c */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs213_g1_sectors[] = { /* 0x8266454 */ + { LPARRAY(s_gs213_g1_s0_lives), LPARRAY(s_gs213_g1_s0_objs), LPARRAY(s_gs213_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, + { 0,NULL, LPARRAY(s_gs213_g1_s1_objs), LPARRAY(s_gs213_g1_s1_effs), 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs213_groups[] = { /* 0x82664a4 */ + { LPARRAY(s_gs213_g0_sectors) }, + { LPARRAY(s_gs213_g1_sectors) }, +}; + +static const struct GroundLink s_gs213_links[] = { /* 0x82664b4 */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs213 = { LPARRAY(s_gs213_groups), s_gs213_links }; /* 0x82664bc */ diff --git a/src/data/ground/ground_data_d18p01_station.h b/src/data/ground/ground_data_d18p01_station.h new file mode 100644 index 000000000..1d13bfef8 --- /dev/null +++ b/src/data/ground/ground_data_d18p01_station.h @@ -0,0 +1,260 @@ + + + + + + + + +static const struct ScriptCommand s_gs214_g0_s0_station_sref_script[] = { /* 0x82664d0 */ + DEBUGINFO, + SELECT_MAP(214), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs214_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs214_g0_s0_station_sref_script }; /* 0x826653c */ + +static const struct ScriptCommand s_gs214_g1_s0_station_sref_script[] = { /* 0x8266548 */ + DEBUGINFO, + SELECT_MAP(214), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(114), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs214_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs214_g1_s0_station_sref_script }; /* 0x82665e8 */ + +static const struct ScriptCommand s_gs214_g1_s0_eff0_script[] = { /* 0x82665f4 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs214_g1_s0_eff1_script[] = { /* 0x8266624 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x000000ad, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs214_g1_s0_lives0_dlg0[] = { /* 0x8266664 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(497), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x0005, 0x00000005, 0x00005077, NULL }, + { 0x27, 0x01, 0x0005, 0x00000005, 0x00005077, NULL }, + { 0xe2, 0x00, 0x01f1, 0x00000000, 0x00000000, NULL }, + WAIT(20), + FANFARE_PLAY2(497), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x0005, 0x00000005, 0x00005077, NULL }, + { 0x27, 0x01, 0x0005, 0x00000005, 0x00005077, NULL }, + { 0xe2, 0x00, 0x01f1, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gwoooooooh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I have lost...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I admit it.\nYou are strong.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000018, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000018, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This!#W\nThe #CISunset Wing#R!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...I see.#W\nYou came seeking the mirage Pokémon...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...#WStep back.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000008, NULL }, + BGM_FADEOUT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kyuuuuuuuuhn!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + SELECT_OBJECTS(1, 1), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x00, 0x0005, 0x00000004, 0x00005077, NULL }, + { 0x27, 0x01, 0x0005, 0x00000004, 0x00005077, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The north wind swirled\n#+around the #CISunset Wing#R!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The #CISunset Wing#R...#W\n#+transformed into the #CIRainbow Wing#R!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + WAIT(10), + FANFARE_PLAY2(507), + { 0x28, 0x01, 0x0001, 0x0000003c, 0x00ffffff, NULL }, + CANCEL_EFFECTS(1, 0), + CANCEL_OBJECTS(1, 1), + SELECT_EFFECTS(1, 1), + { 0x27, 0x01, 0x0001, 0x0000003c, 0x00ffffff, NULL }, + { 0xe2, 0x00, 0x01fb, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(114), + WAIT(60), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Glittering in the seven colors\n#+of the rainbow, this wing is\n#+beautiful beyond description!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This #CIRainbow Wing#R...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It is the key to meeting\nthe mirage Pokémon.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Take this wing...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Take it to the mountain so\nhigh that its peak is obscured by clouds.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes...\nTake it to #CDMt. Faraway#R!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The mirage Pokémon is at\nits peak!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000018, NULL }, + WAIT(20), + CANCEL_EFFECTS(1, 1), + WAIT(20), + BGM_STOP, + FANFARE_PLAY(212), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 received\n#+the #CIRainbow Wing#R.") }, + { 0xe1, 0x00, 0x00d4, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+And...") }, + FANFARE_PLAY(205), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Gained access to\n#+#CDMt. Faraway#R!") }, + { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + +static const struct ScriptCommand s_gs214_g1_s0_lives1_dlg0[] = { /* 0x8266f30 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000008, NULL }, + WAIT(10), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000008, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe2, 0x00, 0x01d1, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(664), + { 0x56, 0x00, 0x0000, 0x00000053, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe2, 0x00, 0x0298, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs214_g1_s1_obj0_dlg0[] = { /* 0x8267150 */ + DEBUGINFO, + FANFARE_PLAY2(631), + { 0x56, 0x00, 0x0000, 0x00000170, 0x00000000, NULL }, + WAIT(10), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000056, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 1), + FANFARE_PLAY2(661), + WAIT(20), + FANFARE_PLAY2(661), + WAIT(20), + FANFARE_STOP2(661), + WAIT(15), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + HALT, +}; + +static const struct ScriptCommand s_gs214_g1_s1_eff0_script[] = { /* 0x8267280 */ + DEBUGINFO, + { 0x56, 0x00, 0x0000, 0x000000ae, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs214_g1_s0_lives[] = { /* 0x82672b0 */ + /* 0 */ { 0, 4, 0, 0, { 22, 22, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs214_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 118, 0, 0, 0, { 22, 17, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs214_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundObjectData s_gs214_g1_s1_objs[] = { /* 0x82672e0 */ + /* 0 */ { 67, 0, 2, 2, { 22, 17, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs214_g1_s1_obj0_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs214_g1_s0_effs[] = { /* 0x82672f8 */ + /* 0 */ { 0, 0, 1, 1, { 22, 21, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs214_g1_s0_eff0_script }, + /* 1 */ { 5, 0, 1, 1, { 22, 17, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs214_g1_s0_eff1_script }, +}; + +static const struct GroundEffectData s_gs214_g1_s1_effs[] = { /* 0x8267310 */ + /* 0 */ { 5, 0, 1, 1, { 22, 17, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs214_g1_s1_eff0_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x826731c */ + &s_gs214_g0_s0_station_sref, + &s_gs214_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs214_g0_sectors[] = { /* 0x8267324 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs214_g1_sectors[] = { /* 0x826734c */ + { LPARRAY(s_gs214_g1_s0_lives), 0,NULL, LPARRAY(s_gs214_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, + { 0,NULL, LPARRAY(s_gs214_g1_s1_objs), LPARRAY(s_gs214_g1_s1_effs), 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs214_groups[] = { /* 0x826739c */ + { LPARRAY(s_gs214_g0_sectors) }, + { LPARRAY(s_gs214_g1_sectors) }, +}; + +static const struct GroundLink s_gs214_links[] = { /* 0x82673ac */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs214 = { LPARRAY(s_gs214_groups), s_gs214_links }; /* 0x82673b4 */ diff --git a/src/data/ground/ground_data_d19p01_station.h b/src/data/ground/ground_data_d19p01_station.h new file mode 100644 index 000000000..1f45dc02b --- /dev/null +++ b/src/data/ground/ground_data_d19p01_station.h @@ -0,0 +1,114 @@ + + + + + + + + +static const struct ScriptCommand s_gs215_g0_s0_station_sref_script[] = { /* 0x82673c8 */ + DEBUGINFO, + SELECT_MAP(215), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs215_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs215_g0_s0_station_sref_script }; /* 0x8267434 */ + +static const struct ScriptCommand s_gs215_g1_s0_station_sref_script[] = { /* 0x8267440 */ + DEBUGINFO, + SELECT_MAP(215), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(10), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs215_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs215_g1_s0_station_sref_script }; /* 0x82674c0 */ + +static const struct ScriptCommand s_gs215_g1_s0_lives0_dlg0[] = { /* 0x82674cc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gwoooooooh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I have lost...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I admit it.\nYou are strong.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This!#W\nThe #CISunset Wing#R!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...I see.#W\nYou came seeking the mirage Pokémon...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...#WStep back.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kyuuuuuuuuhn!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The north wind swirled\n#+around the #CISunset Wing#R!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The #CISunset Wing#R...#W\n#+transformed into the #CIRainbow Wing#R!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Glittering in the seven colors\n#+of the rainbow, this wing is\n#+beautiful beyond description!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This #CIRainbow Wing#R...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It is the key to meeting\nthe mirage Pokémon.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Take this wing...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Take it to the mountain so\nhigh that its peak is obscured by clouds.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes...\nTake it to #CDMt. Faraway#R!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The mirage Pokémon is at\nits peak!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 received\n#+the #CIRainbow Wing#R.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+And...") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Gained access to\n#+#CDMt. Faraway#R!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + +static const struct ScriptCommand s_gs215_g1_s0_lives1_dlg0[] = { /* 0x82679c8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs215_g1_s0_lives[] = { /* 0x8267a08 */ + /* 0 */ { 0, 4, 0, 0, { 35, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs215_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 119, 0, 0, 0, { 35, 26, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs215_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs215_g1_s0_effs[] = { /* 0x8267a38 */ + /* 0 */ { 0, 0, 1, 1, { 35, 29, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8267a44 */ + &s_gs215_g0_s0_station_sref, + &s_gs215_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs215_g0_sectors[] = { /* 0x8267a4c */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs215_g1_sectors[] = { /* 0x8267a74 */ + { LPARRAY(s_gs215_g1_s0_lives), 0,NULL, LPARRAY(s_gs215_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs215_groups[] = { /* 0x8267a9c */ + { LPARRAY(s_gs215_g0_sectors) }, + { LPARRAY(s_gs215_g1_sectors) }, +}; + +static const struct GroundLink s_gs215_links[] = { /* 0x8267aac */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs215 = { LPARRAY(s_gs215_groups), s_gs215_links }; /* 0x8267ab4 */ diff --git a/src/data/ground/ground_data_d20p01_station.h b/src/data/ground/ground_data_d20p01_station.h new file mode 100644 index 000000000..c1c58cf6f --- /dev/null +++ b/src/data/ground/ground_data_d20p01_station.h @@ -0,0 +1,442 @@ + + + + + + + + + + + +static const struct ScriptCommand s_gs216_g0_s0_station_sref_script[] = { /* 0x8267ac8 */ + DEBUGINFO, + SELECT_MAP(216), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs216_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs216_g0_s0_station_sref_script }; /* 0x8267b34 */ + +static const struct ScriptCommand s_gs216_g1_s0_station_sref_script[] = { /* 0x8267b40 */ + DEBUGINFO, + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(216), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+One day...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+In a small cave\n#+in the distant west...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(10), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x0002, 0x0000003c, 0x00ffffff, NULL }, + WAIT(1), + { 0x28, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs216_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs216_g1_s0_station_sref_script }; /* 0x8267cbc */ + + +static const struct ScriptCommand s_gs216_g1_s0_lives0_dlg0[] = { /* 0x8267cc8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x0001, 0x00000068, 0x00000000, NULL }, + WAIT(30), + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Hey!#W\nGet a move on!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Gasp, gasp...#W\nThis is rough going...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Heh! What's with you?\nYou're gonna whine about it now?") }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Let me think--wasn't it you\nwho wanted to explore this place?") }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Saying you'd found a new\ncave and all!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yeah...#W\nI just happened to be swimming by in\nthe sea when I spotted this cave...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I didn't expect it to be\na dungeon this rough...\nGasp, gasp...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Heh!#W\nI thought a different combo would be\na good change of pace...") }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" But you're pathetic!#W\nSo much for Mr. Big Shot $n1!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(472), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wh-what!#W\nCall me pathetic, will you?!") }, + { 0x2e, 0x15, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What you've seen of me\nso far is nothing!") }, + { 0x2e, 0x15, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Never...#W\nunderestimate $n1!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wroooooooaaaaar!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005d, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0000, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Hahaha!#W\nThere! You're still feeling frisky!") }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" That's the spirit!#W\nI think we're getting close.\nLet's keep it going!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...!#W\nSo you did that to motivate me...#W\n...Thanks.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Hey, no problem.\nLet's move!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000020, NULL }, + BGM_FADEOUT(30), + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + WAIT(60), + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Hm?#W What's wrong?#W\nAre you still wiped out?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + WAIT(30), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...No. That's not it.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...Just now.#W\nDid you hear something?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I thought I heard a voice...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x92, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + WAIT(15), + { 0x92, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + WAIT(15), + { 0x92, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + WAIT(30), + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" ...No?#W\nI don't hear anything.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + BGM_SWITCH(35), + { 0x2b, 0x00, 0x0000, 0x0000003c, 0x0000003c, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ............#WIs it#W \nyou...?") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ......Who...disturbs...my sleep...#W\nIs it#W you?!\n") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x92, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + WAIT(15), + { 0x92, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + WAIT(15), + { 0x92, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + WAIT(15), + { 0x92, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + WAIT(30), + { 0x2b, 0x00, 0x0000, -0x00000001, -0x00000001, NULL }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Wh-who's there?!") }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Who are you?!#W\nShow yourself!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + FANFARE_PLAY2(453), + { 0x97, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2b, 0x00, 0x0000, 0x0000005a, 0x0000005a, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Me...?") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I was...#W\nEngineered...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + WAIT(60), + FANFARE_PLAY2(705), + FANFARE_FADEOUT2(60, 453), + { 0x28, 0x01, 0x0001, 0x00000005, 0x00ffffff, NULL }, + WAIT(10), + { 0x27, 0x01, 0x0001, 0x00000005, 0x00ffffff, NULL }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Created only to fight...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + BGM_STOP, + FANFARE_PLAY2(705), + { 0x28, 0x01, 0x0001, 0x00000005, 0x00ffffff, NULL }, + WAIT(10), + { 0x27, 0x01, 0x0001, 0x00000005, 0x00ffffff, NULL }, + WAIT(15), + FANFARE_PLAY2(877), + { 0x28, 0x01, 0x0001, 0x00000005, 0x00ffffff, NULL }, + WAIT(10), + BGM_SWITCH(11), + { 0x27, 0x01, 0x0001, 0x00000005, 0x00ffffff, NULL }, + { 0x23, 0x01, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x2b, 0x00, 0x0000, 0x00000078, 0x00000078, NULL }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The most powerful of all Pokémon!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x22, 0x01, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x28, 0x01, 0x0005, 0x00000078, 0x00ffffff, NULL }, + { 0x2b, 0x00, 0x0000, 0x0000003c, 0x0000003c, NULL }, + { 0x2e, 0x02, 0x0000, 0x00000003, 0x00000000, NULL }, + FANFARE_PLAY2(877), + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Gwaaaaaaaaaaaah!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0001, 0x00000003, 0x00000000, NULL }, + FANFARE_PLAY2(877), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Gyaaaaaaaah!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2b, 0x00, 0x0000, -0x00000001, -0x00000001, NULL }, + BGM_FADEOUT(60), + WAIT(60), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs216_g1_s0_lives1_dlg0[] = { /* 0x8268c90 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x004c, 0x00000001, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000059, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x08, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT(30), + { 0x93, 0x08, 0x000a, 0x00000059, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005e, 0x00000000, NULL }, + WAIT(60), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(15), + { 0x54, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000054, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(610), + FANFARE_PLAY2(862), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT(15), + { 0x54, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000054, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(610), + FANFARE_PLAY2(862), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + WAIT(15), + { 0x54, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000054, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(610), + FANFARE_PLAY2(862), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000059, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x92, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + WAIT(15), + { 0x92, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + WAIT(15), + { 0x92, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + WAIT(15), + { 0x92, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(786), + { 0xe2, 0x00, 0x0312, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(831), + { 0xe2, 0x00, 0x033f, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(787), + { 0xe2, 0x00, 0x0313, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(831), + { 0xe2, 0x00, 0x033f, 0x00000000, 0x00000000, NULL }, + WAIT(15), + FANFARE_PLAY2(786), + { 0xe2, 0x00, 0x0312, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(831), + { 0xe2, 0x00, 0x033f, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs216_g1_s0_eff1_script[] = { /* 0x82691d0 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x0004, -0x00000018, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000150, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0200, 0x00000000, -0x00000078, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000150, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0200, 0x00000078, 0x00000078, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, -0x000c, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000150, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0200, -0x00000078, 0x00000078, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs216_g1_s0_eff2_script[] = { /* 0x8269390 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(786), + { 0x56, 0x00, 0x0000, 0x0000004a, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x0040, -0x00000020, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000004a, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, -0x0020, 0x00000030, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000004a, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, -0x0020, -0x00000018, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000004a, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000004a, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs216_g1_s0_eff3_script[] = { /* 0x8269510 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(15), + FANFARE_PLAY2(831), + { 0x56, 0x00, 0x0000, 0x00000042, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, -0x0038, -0x00000038, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000042, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x0028, 0x00000010, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000042, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, -0x0020, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000042, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct GroundLivesData s_gs216_g1_s0_lives[] = { /* 0x8269660 */ + /* 0 */ { 89, 4, 0, 0, { 20, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs216_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 104, 4, 0, 0, { 24, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs216_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs216_g1_s0_effs[] = { /* 0x8269690 */ + /* 0 */ { 0, 0, 1, 1, { 22, 18, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, + /* 1 */ { 4, 0, 1, 1, { 24, 19, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs216_g1_s0_eff1_script }, + /* 2 */ { 4, 0, 1, 1, { 18, 18, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs216_g1_s0_eff2_script }, + /* 3 */ { 4, 0, 1, 1, { 25, 20, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs216_g1_s0_eff3_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x82696c0 */ + &s_gs216_g0_s0_station_sref, + &s_gs216_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs216_g0_sectors[] = { /* 0x82696c8 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs216_g1_sectors[] = { /* 0x82696f0 */ + { LPARRAY(s_gs216_g1_s0_lives), 0,NULL, LPARRAY(s_gs216_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs216_groups[] = { /* 0x8269718 */ + { LPARRAY(s_gs216_g0_sectors) }, + { LPARRAY(s_gs216_g1_sectors) }, +}; + +static const struct GroundLink s_gs216_links[] = { /* 0x8269728 */ + /* link 0 */ { { /*x*/ 20, /*y*/ 16, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 1 */ { { /*x*/ 25, /*y*/ 19, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 2 */ { { /*x*/ 25, /*y*/ 19, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs216 = { LPARRAY(s_gs216_groups), s_gs216_links }; /* 0x8269740 */ diff --git a/src/data/ground/ground_data_d21p01_station.h b/src/data/ground/ground_data_d21p01_station.h new file mode 100644 index 000000000..71677b583 --- /dev/null +++ b/src/data/ground/ground_data_d21p01_station.h @@ -0,0 +1,132 @@ + + + + + + + + +static const struct ScriptCommand s_gs217_g0_s0_station_sref_script[] = { /* 0x8269754 */ + DEBUGINFO, + SELECT_MAP(217), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs217_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs217_g0_s0_station_sref_script }; /* 0x82697c0 */ + +static const struct ScriptCommand s_gs217_g1_s0_station_sref_script[] = { /* 0x82697cc */ + DEBUGINFO, + SELECT_MAP(217), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(114), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(60), + RET, +}; + +static const struct ScriptRef s_gs217_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs217_g1_s0_station_sref_script }; /* 0x826986c */ + +static const struct ScriptCommand s_gs217_g1_s0_lives0_dlg0[] = { /* 0x8269878 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + FANFARE_PLAY2(475), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x28, 0x01, 0x0005, 0x00000005, 0x00ffffff, NULL }, + { 0x27, 0x01, 0x0005, 0x00000005, 0x00ffffff, NULL }, + { 0xe2, 0x00, 0x01db, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Urghgh...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#WPlease...\nPlease let me go...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I have to go...#W\nThere's somewhere that I have to go...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If...I don't hurry...#W\nM-my little sister...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + CALL_SCRIPT(SHOCK_FUNC), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x00cc, 0x00000000, -0x00000030, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs217_g1_s0_lives1_dlg0[] = { /* 0x8269b04 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0019, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0021, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x001d, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(475), + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe2, 0x00, 0x01db, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(779), + { 0x54, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(50), + { 0x54, 0x00, 0x001a, 0x00000000, 0x00000000, NULL }, + WAIT(40), + FANFARE_PLAY2(682), + { 0xe2, 0x00, 0x02aa, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs217_g1_s0_lives[] = { /* 0x8269cb4 */ + /* 0 */ { 0, 4, 0, 0, { 31, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs217_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 121, 0, 0, 0, { 31, 23, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs217_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs217_g1_s0_effs[] = { /* 0x8269ce4 */ + /* 0 */ { 0, 0, 1, 1, { 31, 29, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8269cf0 */ + &s_gs217_g0_s0_station_sref, + &s_gs217_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs217_g0_sectors[] = { /* 0x8269cf8 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs217_g1_sectors[] = { /* 0x8269d20 */ + { LPARRAY(s_gs217_g1_s0_lives), 0,NULL, LPARRAY(s_gs217_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs217_groups[] = { /* 0x8269d48 */ + { LPARRAY(s_gs217_g0_sectors) }, + { LPARRAY(s_gs217_g1_sectors) }, +}; + +static const struct GroundLink s_gs217_links[] = { /* 0x8269d58 */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs217 = { LPARRAY(s_gs217_groups), s_gs217_links }; /* 0x8269d60 */ diff --git a/src/data/ground/ground_data_d22p01_station.h b/src/data/ground/ground_data_d22p01_station.h new file mode 100644 index 000000000..605622ad2 --- /dev/null +++ b/src/data/ground/ground_data_d22p01_station.h @@ -0,0 +1,177 @@ + + + + + + + + + + +static const struct ScriptCommand s_gs218_g0_s0_station_sref_script[] = { /* 0x8269d74 */ + DEBUGINFO, + SELECT_MAP(218), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs218_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs218_g0_s0_station_sref_script }; /* 0x8269de0 */ + +static const struct ScriptCommand s_gs218_g1_s0_station_sref_script[] = { /* 0x8269dec */ + DEBUGINFO, + BGM_STOP, + SELECT_MAP(218), + SELECT_ENTITIES(-1, 0), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x0001, 0x0000003c, 0x00ffffff, NULL }, + WAIT(60), + RET, +}; + +static const struct ScriptRef s_gs218_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs218_g1_s0_station_sref_script }; /* 0x8269e6c */ + +static const struct ScriptCommand s_gs218_g1_s0_eff1_script[] = { /* 0x8269e78 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x000000a5, 0x00000000, NULL }, + WAIT(180), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0000, 0x000000a6, 0x00000000, NULL }, + WAIT(120), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs218_g1_s0_eff2_script[] = { /* 0x8269f38 */ + DEBUGINFO, + { 0x59, 0x00, 0x0000, -0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x000000a0, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x000000a1, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0000, 0x000000a4, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs218_g1_s0_eff3_script[] = { /* 0x826a028 */ + DEBUGINFO, + { 0x59, 0x00, 0x0000, -0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x000000a0, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x000000a1, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0000, 0x000000a4, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs218_g1_s0_lives0_dlg0[] = { /* 0x826a108 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ............") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ...Y-you are...?") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ...Did you maybe...#W\ncome to save me?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEIN(20, 114), + WAIT(10), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x6b, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0d, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#W\nYes, I'll be fine.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" My wing is still damaged\na little, but...#W\nI can go.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x6a, 0x00, 0x0100, 0x00000008, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + WAIT(30), + BGM_FADEOUT(90), + FANFARE_PLAY2(500), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x0000, -0x000000c8, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs218_g1_s0_lives1_dlg0[] = { /* 0x826a408 */ + DEBUGINFO, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, 0x0000, -0x000000c8, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs218_g1_s0_lives[] = { /* 0x826a4b8 */ + /* 0 */ { 0, 4, 0, 0, { 25, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs218_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 122, 0, 0, 0, { 25, 24, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs218_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs218_g1_s0_effs[] = { /* 0x826a4e8 */ + /* 0 */ { 0, 0, 1, 1, { 24, 27, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, + /* 1 */ { 4, 0, 1, 1, { 28, 24, 0, 0 }, s_gs218_g1_s0_eff1_script }, + /* 2 */ { 4, 0, 1, 1, { 29, 23, 0, CPOS_HALFTILE }, s_gs218_g1_s0_eff2_script }, + /* 3 */ { 4, 0, 1, 1, { 25, 23, 0, CPOS_HALFTILE }, s_gs218_g1_s0_eff3_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x826a518 */ + &s_gs218_g0_s0_station_sref, + &s_gs218_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs218_g0_sectors[] = { /* 0x826a520 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs218_g1_sectors[] = { /* 0x826a548 */ + { LPARRAY(s_gs218_g1_s0_lives), 0,NULL, LPARRAY(s_gs218_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs218_groups[] = { /* 0x826a570 */ + { LPARRAY(s_gs218_g0_sectors) }, + { LPARRAY(s_gs218_g1_sectors) }, +}; + +static const struct GroundLink s_gs218_links[] = { /* 0x826a580 */ + /* link 0 */ { { /*x*/ 29, /*y*/ 24, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 1 */ { { /*x*/ 25, /*y*/ 27, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs218 = { LPARRAY(s_gs218_groups), s_gs218_links }; /* 0x826a590 */ diff --git a/src/data/ground/ground_data_d23p01_station.h b/src/data/ground/ground_data_d23p01_station.h new file mode 100644 index 000000000..961b25316 --- /dev/null +++ b/src/data/ground/ground_data_d23p01_station.h @@ -0,0 +1,118 @@ + + + + + + + + + + + + +static const struct ScriptCommand s_gs219_g0_s0_station_sref_script[] = { /* 0x826a5a4 */ + DEBUGINFO, + SELECT_MAP(219), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs219_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs219_g0_s0_station_sref_script }; /* 0x826a610 */ + +static const struct ScriptCommand s_gs219_g1_s0_station_sref_script[] = { /* 0x826a61c */ + DEBUGINFO, + SELECT_MAP(219), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(114), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(120), + { 0x28, 0x01, 0x0001, 0x0000003c, 0x00ffffff, NULL }, + RET, +}; + +static const struct ScriptRef s_gs219_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs219_g1_s0_station_sref_script }; /* 0x826a6ac */ + +static const struct ScriptCommand s_gs219_g1_s0_lives0_dlg0[] = { /* 0x826a6b8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Look. Over there.\nLet's get this rescue done.")), + VARIANT_DEFAULT(_(" Look, there's our Pokémon.\nWe can get this rescue done.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x6b, 0x00, 0x00cc, 0x00000001, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs219_g1_s0_lives1_dlg0[] = { /* 0x826a84c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x00cc, 0x00000003, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs219_g1_s0_lives2_dlg0[] = { /* 0x826a8dc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs219_g1_s0_lives[] = { /* 0x826a91c */ + /* 0 */ { 0, 4, 0, 0, { 20, 34, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs219_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 24, 34, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs219_g1_s0_lives1_dlg0, + } }, + /* 2 */ { 93, 0, 0, 0, { 22, 17, 0, CPOS_HALFTILE }, { + [0] = s_gs219_g1_s0_lives2_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs219_g1_s0_effs[] = { /* 0x826a964 */ + /* 0 */ { 0, 0, 1, 1, { 22, 20, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x826a970 */ + &s_gs219_g0_s0_station_sref, + &s_gs219_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs219_g0_sectors[] = { /* 0x826a978 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs219_g1_sectors[] = { /* 0x826a9a0 */ + { LPARRAY(s_gs219_g1_s0_lives), 0,NULL, LPARRAY(s_gs219_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs219_groups[] = { /* 0x826a9c8 */ + { LPARRAY(s_gs219_g0_sectors) }, + { LPARRAY(s_gs219_g1_sectors) }, +}; + +static const struct GroundLink s_gs219_links[] = { /* 0x826a9d8 */ + /* link 0 */ { { /*x*/ 20, /*y*/ 23, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 20, /*y*/ 19, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 2 */ { { /*x*/ 24, /*y*/ 23, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 3 */ { { /*x*/ 24, /*y*/ 19, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs219 = { LPARRAY(s_gs219_groups), s_gs219_links }; /* 0x826a9f8 */ diff --git a/src/data/ground/ground_data_d24p01_station.h b/src/data/ground/ground_data_d24p01_station.h new file mode 100644 index 000000000..17755706e --- /dev/null +++ b/src/data/ground/ground_data_d24p01_station.h @@ -0,0 +1,621 @@ + + + + + + + + + + + +static const struct ScriptCommand s_gs220_g0_s0_station_sref_script[] = { /* 0x826aa0c */ + DEBUGINFO, + SELECT_MAP(220), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs220_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs220_g0_s0_station_sref_script }; /* 0x826aa78 */ + +static const struct ScriptCommand s_gs220_g1_s0_station_sref_script[] = { /* 0x826aa84 */ + DEBUGINFO, + SELECT_MAP(220), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(114), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(90), + { 0x23, 0x01, 0x005a, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs220_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs220_g1_s0_station_sref_script }; /* 0x826ab24 */ + +static const struct ScriptCommand s_gs220_g1_s0_eff0_script[] = { /* 0x826ab30 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x48, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs220_g1_s0_lives0_dlg0[] = { /* 0x826abb0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000052, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x78, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh!\nWe're here at last!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This is it?\nThis is the deepest floor of the\n#CDMurky Cave#R?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh, look!#W\nThere's a dais!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There's a hollow spot.\nI guess that stone goes in there.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(348), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n2 placed the #CI9-Tail Crest#R\n#+in the hollow spot.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + BGM_STOP, + FANFARE_PLAY2(502), + { 0x28, 0x01, 0x0005, 0x00000004, 0x00ffffff, NULL }, + WAIT(4), + { 0x27, 0x00, 0x0005, 0x00000004, 0x00ffffff, NULL }, + WAIT(20), + FANFARE_PLAY2(502), + { 0x28, 0x01, 0x0005, 0x00000004, 0x00ffffff, NULL }, + WAIT(4), + { 0x27, 0x00, 0x0005, 0x00000004, 0x00ffffff, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(45), + FANFARE_PLAY2(506), + { 0x28, 0x01, 0x0005, 0x0000001e, 0x00ffffff, NULL }, + WAIT(60), + { 0x27, 0x00, 0x0005, 0x0000001e, 0x00ffffff, NULL }, + WAIT(120), + { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ........................") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ....................................") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh!\nWhat's this about?\nNothing's happening?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + FANFARE_PLAY2(463), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............?#W\nHuh? I thought I heard something...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh!\nDid you just say something?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(468), + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(5), + FANFARE_PLAY2(468), + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That's odd...\nI could've sworn I heard something...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+...Wel...co...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+...W...e...lc...ome...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Welcome to\n#+the Murky Cave!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(469), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0001, 0x00000002, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(469), + { 0x91, 0x08, 0x0002, 0x00000006, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x08, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What? What?!\nWhere is that voice coming from?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Who are you?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + BGM_SWITCH(6), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+I am the\n#+judge of darkness.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+You have nothing to fear from me.\n#+I mean you no harm.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Just now, a key was\n#+inserted to break a curse.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The curse...\n#+It is the one on $n3?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh! Exactly!#W\nPlease lift the curse now!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+I cannot allow that right away.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+I must first know if you\n#+have earned the right.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+I must evaluate you.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+You must bare your\n#+true feelings to me.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh? What?#W\nYou're going to test me?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What, I have to fight some\nboss creature?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Oh, no.\n#+Nothing so barbaric.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+All that I need is for some\n#+questions to be answered.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+However...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(502), + { 0x28, 0x01, 0x0005, 0x00000004, 0x00ffffff, NULL }, + WAIT(4), + { 0x27, 0x00, 0x0005, 0x00000004, 0x00ffffff, NULL }, + WAIT(20), + FANFARE_PLAY2(502), + { 0x28, 0x01, 0x0005, 0x00000004, 0x00ffffff, NULL }, + WAIT(4), + { 0x27, 0x00, 0x0005, 0x00000004, 0x00ffffff, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000046, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gegeh?! What the...?!#W\nI can't move!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n2, you will not\n#+be doing the answering...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(30), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0.\n#+You will answer.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x6b, 0x00, 0x0080, 0x00000001, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(473), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gegegeh!\nWhat are you saying?!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Why is someone else\nspeaking for me?!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Let me do it!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n2.#W\n#+Your heart is interwoven\n#+with conflicting emotions.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+You will probably never show\n#+the truth within your heart.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh?!\nWhat?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 will enter\n#+$n2's heart.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Please navigate carefully\n#+through $n2's emotions.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs220_g1_s0_lives1_dlg0[] = { /* 0x826be2c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x70, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x18, 0x0080, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x08, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000010, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000018, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(623), + { 0x56, 0x00, 0x0000, 0x000001a2, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + FANFARE_PLAY2(465), + CALL_SCRIPT(SHOCK_FUNC), + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs220_g2_s0_station_sref_script[] = { /* 0x826c1ac */ + DEBUGINFO, + SELECT_MAP(220), + SELECT_ENTITIES(-1, 0), + { 0x27, 0x01, 0x0005, 0x0000005a, 0x00ffffff, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x0078, 0x00000000, 0x00000000, NULL }, + WAIT(60), + RET, +}; + +static const struct ScriptRef s_gs220_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs220_g2_s0_station_sref_script }; /* 0x826c22c */ + +static const struct ScriptCommand s_gs220_g2_s0_eff0_script[] = { /* 0x826c238 */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs220_g2_s0_lives0_dlg0[] = { /* 0x826c278 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0004, 0x00000021, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000052, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(80), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n2.\n#+Whether you have the right\n#+to break the curse or not...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+I will now render\n#+my judgment.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The curse...#W\n#+could not be lifted.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0002, 0x00000043, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" W-wait...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+It is most regrettable, but\n#+the curse on $n3\n#+will last all eternity...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Wait!\nWait a minute!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(666), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, -0x00000018, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT(20), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Let me...#W\nLet me say something!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEIN(60, 24), + WAIT(60), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's true.\nI abandoned $n3 and ran.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I was afraid that the curse\nwould fall on me.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I had to get away, no matter\nwhat...#W\nThat's what I thought.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It didn't take long for me\nto forget about the curse and about\n$n3.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Many long years passed...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But $n3...#W\nShe never forgot about me.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" One night...#W\nIn $n4's dream, $n3\nsaid this...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That she considered me an\nirreplaceable friend, and that she still\nbelieved we would meet again...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n3 kept thinking\nabout someone like me.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0002, 0x00000045, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But I...\nHow selfish I was.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I lived carefree all this\ntime...#W\nI realize now how selfish I was.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's not just $n3.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" #C5Team $t#R put up\nwith my selfishness and brought me here.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I finally know what I was\nmissing.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What I lacked...#W\nIt was something for the others...#W\nA sense of gratitude.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(120), + BGM_STOP, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(686), + WAIT(15), + FANFARE_PLAY2(686), + WAIT(15), + FANFARE_PLAY2(686), + WAIT(15), + FANFARE_PLAY2(686), + WAIT(15), + FANFARE_PLAY2(686), + WAIT(15), + FANFARE_PLAY2(686), + WAIT(15), + FANFARE_PLAY2(686), + WAIT(15), + FANFARE_PLAY2(686), + WAIT(15), + FANFARE_PLAY2(631), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + WAIT(15), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The lock bearing the curse...#W\n#+It has opened.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(506), + { 0x28, 0x01, 0x0005, 0x0000001e, 0x00ffffff, NULL }, + WAIT(90), + SELECT_ENTITIES(-1, 1), + { 0x27, 0x01, 0x0005, 0x0000001e, 0x00ffffff, NULL }, + WAIT(30), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000046, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ga-$n3!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + BGM_FADEIN(60, 5), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" It worked, $n2!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0002, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" N-$n5!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...But...\nI don't know what you're saying...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" The curse has been broken.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" I cast my curse, enraged at\nyour twisted heart.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" When your heart gained\nwhat it had been missing...\nThe curse was shattered.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" The final key to break the\ncurse...#W\nwas your sense of gratitude.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Then, Gardevoir...?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" You may be reassured.\n$n3 has returned.#W\nShe will soon awaken.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" However...#W\nThat you were her partner in the past...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" $n3 will have no\nrecollection of that.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#WThat doesn't matter.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n3 is back.#W\nThat's enough for me...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + +static const struct ScriptCommand s_gs220_g2_s0_lives1_dlg0[] = { /* 0x826d210 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x000001a2, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x000001a3, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x20, 0x0080, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(12), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x10, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs220_g2_s0_eff1_script[] = { /* 0x826d470 */ + DEBUGINFO, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x000001a4, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs220_g2_s1_lives0_dlg0[] = { /* 0x826d4d0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs220_g2_s1_lives1_dlg0[] = { /* 0x826d510 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x00b3, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs220_g1_s0_lives[] = { /* 0x826d590 */ + /* 0 */ { 0, 4, 0, 0, { 23, 47, 0, CPOS_HALFTILE }, { + [0] = s_gs220_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 91, 4, 0, 0, { 29, 45, 0, CPOS_HALFTILE }, { + [0] = s_gs220_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs220_g2_s0_lives[] = { /* 0x826d5c0 */ + /* 0 */ { 0, 4, 0, 0, { 25, 19, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs220_g2_s0_lives0_dlg0, + } }, + /* 1 */ { 91, 4, 0, 0, { 25, 23, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs220_g2_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs220_g2_s1_lives[] = { /* 0x826d5f0 */ + /* 0 */ { 82, 0, 0, 0, { 25, 16, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs220_g2_s1_lives0_dlg0, + } }, + /* 1 */ { 99, 7, 0, 0, { 25, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs220_g2_s1_lives1_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs220_g1_s0_effs[] = { /* 0x826d620 */ + /* 0 */ { 0, 0, 1, 1, { 25, 30, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs220_g1_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs220_g2_s0_effs[] = { /* 0x826d62c */ + /* 0 */ { 0, 0, 1, 1, { 25, 21, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs220_g2_s0_eff0_script }, + /* 1 */ { 4, 0, 1, 1, { 26, 21, 0, CPOS_HALFTILE }, s_gs220_g2_s0_eff1_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x826d644 */ + &s_gs220_g0_s0_station_sref, + &s_gs220_g1_s0_station_sref, + &s_gs220_g2_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs220_g0_sectors[] = { /* 0x826d650 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs220_g1_sectors[] = { /* 0x826d678 */ + { LPARRAY(s_gs220_g1_s0_lives), 0,NULL, LPARRAY(s_gs220_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs220_g2_sectors[] = { /* 0x826d6a0 */ + { LPARRAY(s_gs220_g2_s0_lives), 0,NULL, LPARRAY(s_gs220_g2_s0_effs), 0,NULL, 1,&sStationScripts[2], }, + { LPARRAY(s_gs220_g2_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs220_groups[] = { /* 0x826d6f0 */ + { LPARRAY(s_gs220_g0_sectors) }, + { LPARRAY(s_gs220_g1_sectors) }, + { LPARRAY(s_gs220_g2_sectors) }, +}; + +static const struct GroundLink s_gs220_links[] = { /* 0x826d708 */ + /* link 0 */ { { /*x*/ 23, /*y*/ 22, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 25, /*y*/ 19, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 2 */ { { /*x*/ 25, /*y*/ 24, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs220 = { LPARRAY(s_gs220_groups), s_gs220_links }; /* 0x826d720 */ diff --git a/src/data/ground/ground_data_d24p02_station.h b/src/data/ground/ground_data_d24p02_station.h new file mode 100644 index 000000000..f8656a476 --- /dev/null +++ b/src/data/ground/ground_data_d24p02_station.h @@ -0,0 +1,104 @@ + + + + + + + + +static const struct ScriptCommand s_gs221_g0_s0_station_sref_script[] = { /* 0x826d734 */ + DEBUGINFO, + SELECT_MAP(221), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs221_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs221_g0_s0_station_sref_script }; /* 0x826d7a0 */ + +static const struct ScriptCommand s_gs221_g1_s0_station_sref_script[] = { /* 0x826d7ac */ + DEBUGINFO, + SELECT_MAP(221), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(21), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs221_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs221_g1_s0_station_sref_script }; /* 0x826d81c */ + +static const struct ScriptCommand s_gs221_g1_s0_eff0_script[] = { /* 0x826d828 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs221_g1_s0_lives0_dlg0[] = { /* 0x826d898 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x50, 0x0099, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You're going to the\n#CDMurky Cave#R?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Don't forget to take me,\nkekeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x50, 0x0080, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs221_g1_s0_lives1_dlg0[] = { /* 0x826d9d8 */ + DEBUGINFO, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x58, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x40, 0x0080, 0x00000004, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs221_g1_s0_lives[] = { /* 0x826da58 */ + /* 0 */ { 0, 2, 0, 0, { 25, 22, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs221_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 91, 4, 0, 0, { 25, 30, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs221_g1_s0_lives1_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs221_g1_s0_effs[] = { /* 0x826da88 */ + /* 0 */ { 0, 0, 1, 1, { 25, 17, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs221_g1_s0_eff0_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x826da94 */ + &s_gs221_g0_s0_station_sref, + &s_gs221_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs221_g0_sectors[] = { /* 0x826da9c */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs221_g1_sectors[] = { /* 0x826dac4 */ + { LPARRAY(s_gs221_g1_s0_lives), 0,NULL, LPARRAY(s_gs221_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs221_groups[] = { /* 0x826daec */ + { LPARRAY(s_gs221_g0_sectors) }, + { LPARRAY(s_gs221_g1_sectors) }, +}; + +static const struct GroundLink s_gs221_links[] = { /* 0x826dafc */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs221 = { LPARRAY(s_gs221_groups), s_gs221_links }; /* 0x826db04 */ diff --git a/src/data/ground/ground_data_d25p01_station.h b/src/data/ground/ground_data_d25p01_station.h new file mode 100644 index 000000000..be865b554 --- /dev/null +++ b/src/data/ground/ground_data_d25p01_station.h @@ -0,0 +1,118 @@ + + + + + + + + + + + + +static const struct ScriptCommand s_gs222_g0_s0_station_sref_script[] = { /* 0x826db18 */ + DEBUGINFO, + SELECT_MAP(222), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs222_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs222_g0_s0_station_sref_script }; /* 0x826db84 */ + +static const struct ScriptCommand s_gs222_g1_s0_station_sref_script[] = { /* 0x826db90 */ + DEBUGINFO, + SELECT_MAP(222), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(114), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(120), + { 0x28, 0x01, 0x0001, 0x0000003c, 0x00ffffff, NULL }, + RET, +}; + +static const struct ScriptRef s_gs222_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs222_g1_s0_station_sref_script }; /* 0x826dc20 */ + +static const struct ScriptCommand s_gs222_g1_s0_lives0_dlg0[] = { /* 0x826dc2c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Look. Over there.\nLet's get this rescue done.")), + VARIANT_DEFAULT(_(" Look, there's our Pokémon.\nWe can get this rescue done.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x6b, 0x00, 0x00cc, 0x00000001, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs222_g1_s0_lives1_dlg0[] = { /* 0x826ddc0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x00cc, 0x00000003, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs222_g1_s0_lives2_dlg0[] = { /* 0x826de50 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs222_g1_s0_lives[] = { /* 0x826de90 */ + /* 0 */ { 0, 4, 0, 0, { 20, 34, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs222_g1_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 24, 34, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs222_g1_s0_lives1_dlg0, + } }, + /* 2 */ { 124, 0, 0, 0, { 22, 17, 0, CPOS_HALFTILE }, { + [0] = s_gs222_g1_s0_lives2_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs222_g1_s0_effs[] = { /* 0x826ded8 */ + /* 0 */ { 0, 0, 1, 1, { 22, 20, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x826dee4 */ + &s_gs222_g0_s0_station_sref, + &s_gs222_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs222_g0_sectors[] = { /* 0x826deec */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs222_g1_sectors[] = { /* 0x826df14 */ + { LPARRAY(s_gs222_g1_s0_lives), 0,NULL, LPARRAY(s_gs222_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs222_groups[] = { /* 0x826df3c */ + { LPARRAY(s_gs222_g0_sectors) }, + { LPARRAY(s_gs222_g1_sectors) }, +}; + +static const struct GroundLink s_gs222_links[] = { /* 0x826df4c */ + /* link 0 */ { { /*x*/ 20, /*y*/ 23, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 20, /*y*/ 19, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 2 */ { { /*x*/ 24, /*y*/ 23, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 3 */ { { /*x*/ 24, /*y*/ 19, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs222 = { LPARRAY(s_gs222_groups), s_gs222_links }; /* 0x826df6c */ diff --git a/src/data/ground/ground_data_h01p01_station.h b/src/data/ground/ground_data_h01p01_station.h new file mode 100644 index 000000000..d5f5be77f --- /dev/null +++ b/src/data/ground/ground_data_h01p01_station.h @@ -0,0 +1,293 @@ + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs105_g0_s0_station_sref_script[] = { /* 0x81ee228 */ + DEBUGINFO, + SELECT_MAP(105), + SELECT_ENTITIES(1, 0), + JUMP_LABEL(1), + LABEL(1), /* = 0x01 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 2), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 3), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 4), + JUMP_LABEL(2), + LABEL(4), /* = 0x04 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 5), + JUMP_LABEL(5), + LABEL(2), /* = 0x02 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(6), + LABEL(3), /* = 0x03 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(6), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(6), + LABEL(6), /* = 0x06 */ + BGM_SWITCH(106), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs105_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs105_g0_s0_station_sref_script }; /* 0x81ee3f4 */ + + +static const struct ScriptCommand s_gs105_g0_s1_lives0_dlg0[] = { /* 0x81ee400 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs105_g0_s1_lives1_dlg0[] = { /* 0x81ee440 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs105_g0_s3_lives0_dlg0[] = { /* 0x81ee480 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs105_g0_s3_lives1_dlg0[] = { /* 0x81ee4c0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs105_g0_s4_lives0_dlg0[] = { /* 0x81ee500 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs105_g0_s4_lives1_dlg0[] = { /* 0x81ee530 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs105_g1_s0_lives0_dlg1[] = { /* 0x81ee560 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs105_g1_s0_lives0_dlg2[] = { /* 0x81ee590 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs105_g1_s0_lives1_dlg1[] = { /* 0x81ee5b0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs105_g1_s0_lives1_dlg2[] = { /* 0x81ee5e0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs105_g1_s0_lives2_dlg1[] = { /* 0x81ee600 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs105_g1_s0_lives2_dlg2[] = { /* 0x81ee630 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs105_g1_s0_lives3_dlg1[] = { /* 0x81ee650 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs105_g1_s0_lives3_dlg2[] = { /* 0x81ee680 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs105_g1_s0_lives4_dlg1[] = { /* 0x81ee6a0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs105_g1_s0_lives4_dlg2[] = { /* 0x81ee6d0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs105_g1_s0_lives5_dlg1[] = { /* 0x81ee6f0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs105_g1_s0_lives5_dlg2[] = { /* 0x81ee720 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs105_g1_s0_lives6_dlg1[] = { /* 0x81ee740 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs105_g1_s0_lives6_dlg2[] = { /* 0x81ee770 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs105_g1_s0_lives7_dlg1[] = { /* 0x81ee790 */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs105_g1_s0_lives7_dlg2[] = { /* 0x81ee7c0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs105_g1_s0_lives8_dlg1[] = { /* 0x81ee7e0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs105_g1_s0_lives8_dlg2[] = { /* 0x81ee810 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs105_g0_s1_lives[] = { /* 0x81ee830 */ + /* 0 */ { 0, 4, 0, 0, { 28, 24, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs105_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 26, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs105_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs105_g0_s3_lives[] = { /* 0x81ee860 */ + /* 0 */ { 0, 4, 0, 0, { 28, 24, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs105_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 26, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs105_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs105_g0_s4_lives[] = { /* 0x81ee890 */ + /* 0 */ { 0, 0, 0, 0, { 28, 24, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs105_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 28, 26, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs105_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs105_g1_s0_lives[] = { /* 0x81ee8c0 */ + /* 0 */ { 14, 0, 0, 0, { 21, 21, 0, CPOS_HALFTILE }, { + [1] = s_gs105_g1_s0_lives0_dlg1, + [2] = s_gs105_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 36, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs105_g1_s0_lives1_dlg1, + [2] = s_gs105_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 10, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs105_g1_s0_lives2_dlg1, + [2] = s_gs105_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 47, 21, 0, CPOS_HALFTILE }, { + [1] = s_gs105_g1_s0_lives3_dlg1, + [2] = s_gs105_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 16, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs105_g1_s0_lives4_dlg1, + [2] = s_gs105_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 41, 25, 0, CPOS_HALFTILE }, { + [1] = s_gs105_g1_s0_lives5_dlg1, + [2] = s_gs105_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 28, 20, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs105_g1_s0_lives6_dlg1, + [2] = s_gs105_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 23, 16, 0, CPOS_HALFTILE }, { + [1] = s_gs105_g1_s0_lives7_dlg1, + [2] = s_gs105_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 34, 16, 0, CPOS_HALFTILE }, { + [1] = s_gs105_g1_s0_lives8_dlg1, + [2] = s_gs105_g1_s0_lives8_dlg2, + } }, +}; + +static const struct GroundEventData s_gs105_g0_s0_evts[] = { /* 0x81ee998 */ + /* 0 */ { 58, 1, 0, 0, { 0, 29, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 58, 1, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81ee9b0 */ + &s_gs105_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs105_g0_sectors[] = { /* 0x81ee9b4 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs105_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs105_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs105_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs105_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs105_g1_sectors[] = { /* 0x81eea7c */ + { LPARRAY(s_gs105_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs105_groups[] = { /* 0x81eeaa4 */ + { LPARRAY(s_gs105_g0_sectors) }, + { LPARRAY(s_gs105_g1_sectors) }, +}; + +static const struct GroundLink s_gs105_links[] = { /* 0x81eeab4 */ + /* link 0 */ { { /*x*/ 19, /*y*/ 19, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 32, /*y*/ 19, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 7, /*y*/ 19, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 44, /*y*/ 19, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 13, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 38, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 25, /*y*/ 16, /*flags*/ CPOS_HALFTILE, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 19, /*y*/ 13, /*flags*/ CPOS_HALFTILE, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 32, /*y*/ 13, /*flags*/ CPOS_HALFTILE, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs105 = { LPARRAY(s_gs105_groups), s_gs105_links }; /* 0x81eeafc */ diff --git a/src/data/ground/ground_data_h01p02_station.h b/src/data/ground/ground_data_h01p02_station.h new file mode 100644 index 000000000..9161a812c --- /dev/null +++ b/src/data/ground/ground_data_h01p02_station.h @@ -0,0 +1,323 @@ + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs106_g0_s0_station_sref_script[] = { /* 0x81eeb10 */ + DEBUGINFO, + SELECT_MAP(106), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(106), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs106_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs106_g0_s0_station_sref_script }; /* 0x81eed8c */ + +static const struct ScriptCommand s_gs106_g0_s1_lives0_dlg0[] = { /* 0x81eed98 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs106_g0_s1_lives1_dlg0[] = { /* 0x81eedd8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs106_g0_s3_lives0_dlg0[] = { /* 0x81eee18 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs106_g0_s3_lives1_dlg0[] = { /* 0x81eee58 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs106_g0_s4_lives0_dlg0[] = { /* 0x81eee98 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs106_g0_s4_lives1_dlg0[] = { /* 0x81eeec8 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs106_g1_s0_lives0_dlg1[] = { /* 0x81eeef8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs106_g1_s0_lives0_dlg2[] = { /* 0x81eef28 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs106_g1_s0_lives1_dlg1[] = { /* 0x81eef48 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs106_g1_s0_lives1_dlg2[] = { /* 0x81eef78 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs106_g1_s0_lives2_dlg1[] = { /* 0x81eef98 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs106_g1_s0_lives2_dlg2[] = { /* 0x81eefc8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs106_g1_s0_lives3_dlg1[] = { /* 0x81eefe8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs106_g1_s0_lives3_dlg2[] = { /* 0x81ef018 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs106_g1_s0_lives4_dlg1[] = { /* 0x81ef038 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs106_g1_s0_lives4_dlg2[] = { /* 0x81ef068 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs106_g1_s0_lives5_dlg1[] = { /* 0x81ef088 */ + DEBUGINFO, + { 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs106_g1_s0_lives5_dlg2[] = { /* 0x81ef0b8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs106_g1_s0_lives6_dlg1[] = { /* 0x81ef0d8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs106_g1_s0_lives6_dlg2[] = { /* 0x81ef108 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs106_g1_s0_lives7_dlg1[] = { /* 0x81ef128 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs106_g1_s0_lives7_dlg2[] = { /* 0x81ef158 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs106_g1_s0_lives8_dlg1[] = { /* 0x81ef178 */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs106_g1_s0_lives8_dlg2[] = { /* 0x81ef1a8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs106_g1_s0_lives9_dlg1[] = { /* 0x81ef1c8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs106_g1_s0_lives9_dlg2[] = { /* 0x81ef1f8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs106_g0_s1_lives[] = { /* 0x81ef218 */ + /* 0 */ { 0, 4, 0, 0, { 36, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs106_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 36, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs106_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs106_g0_s3_lives[] = { /* 0x81ef248 */ + /* 0 */ { 0, 4, 0, 0, { 36, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs106_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 36, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs106_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs106_g0_s4_lives[] = { /* 0x81ef278 */ + /* 0 */ { 0, 0, 0, 0, { 36, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs106_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 36, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs106_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs106_g1_s0_lives[] = { /* 0x81ef2a8 */ + /* 0 */ { 14, 0, 0, 0, { 36, 29, 0, CPOS_HALFTILE }, { + [1] = s_gs106_g1_s0_lives0_dlg1, + [2] = s_gs106_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 45, 27, 0, CPOS_HALFTILE }, { + [1] = s_gs106_g1_s0_lives1_dlg1, + [2] = s_gs106_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 28, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs106_g1_s0_lives2_dlg1, + [2] = s_gs106_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 52, 23, 0, CPOS_HALFTILE }, { + [1] = s_gs106_g1_s0_lives3_dlg1, + [2] = s_gs106_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 20, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs106_g1_s0_lives4_dlg1, + [2] = s_gs106_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 46, 19, 0, CPOS_HALFTILE }, { + [1] = s_gs106_g1_s0_lives5_dlg1, + [2] = s_gs106_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 12, 32, 0, CPOS_HALFTILE }, { + [1] = s_gs106_g1_s0_lives6_dlg1, + [2] = s_gs106_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 40, 16, 0, CPOS_HALFTILE }, { + [1] = s_gs106_g1_s0_lives7_dlg1, + [2] = s_gs106_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 35, 23, 0, CPOS_HALFTILE }, { + [1] = s_gs106_g1_s0_lives8_dlg1, + [2] = s_gs106_g1_s0_lives8_dlg2, + } }, + /* 9 */ { 23, 0, 0, 0, { 24, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs106_g1_s0_lives9_dlg1, + [2] = s_gs106_g1_s0_lives9_dlg2, + } }, +}; + +static const struct GroundEventData s_gs106_g0_s0_evts[] = { /* 0x81ef398 */ + /* 0 */ { 1, 42, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 60, 1, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 60, 1, 0, 0, { 1, 41, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 1, 42, 0, 0, { 59, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81ef3c8 */ + &s_gs106_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs106_g0_sectors[] = { /* 0x81ef3cc */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs106_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs106_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs106_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs106_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs106_g1_sectors[] = { /* 0x81ef494 */ + { LPARRAY(s_gs106_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs106_groups[] = { /* 0x81ef4bc */ + { LPARRAY(s_gs106_g0_sectors) }, + { LPARRAY(s_gs106_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs106_links[] = { /* 0x81ef4d4 */ + /* link 0 */ { { /*x*/ 33, /*y*/ 26, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 42, /*y*/ 24, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 25, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 49, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 17, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 37, /*y*/ 14, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 21, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 32, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 9, /*y*/ 29, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 9 */ { { /*x*/ 43, /*y*/ 17, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs106 = { LPARRAY(s_gs106_groups), s_gs106_links }; /* 0x81ef524 */ diff --git a/src/data/ground/ground_data_h01p03_station.h b/src/data/ground/ground_data_h01p03_station.h new file mode 100644 index 000000000..5338f58ac --- /dev/null +++ b/src/data/ground/ground_data_h01p03_station.h @@ -0,0 +1,221 @@ + + + + + + + + + + + + +static const struct ScriptCommand s_gs107_g0_s0_station_sref_script[] = { /* 0x81ef538 */ + DEBUGINFO, + SELECT_MAP(107), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(106), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs107_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs107_g0_s0_station_sref_script }; /* 0x81ef7b4 */ + +static const struct ScriptCommand s_gs107_g0_s1_lives0_dlg0[] = { /* 0x81ef7c0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs107_g0_s1_lives1_dlg0[] = { /* 0x81ef800 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs107_g0_s3_lives0_dlg0[] = { /* 0x81ef840 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs107_g0_s3_lives1_dlg0[] = { /* 0x81ef880 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs107_g0_s4_lives0_dlg0[] = { /* 0x81ef8c0 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs107_g0_s4_lives1_dlg0[] = { /* 0x81ef8f0 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs107_g1_s0_lives0_dlg1[] = { /* 0x81ef920 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs107_g1_s0_lives0_dlg2[] = { /* 0x81ef950 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs107_g1_s0_lives1_dlg1[] = { /* 0x81ef970 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs107_g1_s0_lives1_dlg2[] = { /* 0x81ef9a0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs107_g1_s0_lives2_dlg1[] = { /* 0x81ef9c0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs107_g1_s0_lives2_dlg2[] = { /* 0x81ef9f0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs107_g1_s0_lives3_dlg1[] = { /* 0x81efa10 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs107_g1_s0_lives3_dlg2[] = { /* 0x81efa40 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs107_g0_s1_lives[] = { /* 0x81efa60 */ + /* 0 */ { 0, 4, 0, 0, { 33, 7, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs107_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 33, 3, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs107_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs107_g0_s3_lives[] = { /* 0x81efa90 */ + /* 0 */ { 0, 4, 0, 0, { 33, 7, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs107_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 33, 3, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs107_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs107_g0_s4_lives[] = { /* 0x81efac0 */ + /* 0 */ { 0, 0, 0, 0, { 33, 7, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs107_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 33, 3, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs107_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs107_g1_s0_lives[] = { /* 0x81efaf0 */ + /* 0 */ { 14, 0, 0, 0, { 27, 16, 0, CPOS_HALFTILE }, { + [1] = s_gs107_g1_s0_lives0_dlg1, + [2] = s_gs107_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 29, 25, 0, CPOS_HALFTILE }, { + [1] = s_gs107_g1_s0_lives1_dlg1, + [2] = s_gs107_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 18, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs107_g1_s0_lives2_dlg1, + [2] = s_gs107_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 49, 33, 0, CPOS_HALFTILE }, { + [1] = s_gs107_g1_s0_lives3_dlg1, + [2] = s_gs107_g1_s0_lives3_dlg2, + } }, +}; + +static const struct GroundEventData s_gs107_g0_s0_evts[] = { /* 0x81efb50 */ + /* 0 */ { 66, 3, 0, 0, { 0, 42, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 3, 45, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 3, 45, 0, 0, { 63, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 66, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81efb80 */ + &s_gs107_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs107_g0_sectors[] = { /* 0x81efb84 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs107_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs107_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs107_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs107_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs107_g1_sectors[] = { /* 0x81efc4c */ + { LPARRAY(s_gs107_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs107_groups[] = { /* 0x81efc74 */ + { LPARRAY(s_gs107_g0_sectors) }, + { LPARRAY(s_gs107_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs107_links[] = { /* 0x81efc8c */ + /* link 0 */ { { /*x*/ 15, /*y*/ 29, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 46, /*y*/ 30, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 26, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 24, /*y*/ 13, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs107 = { LPARRAY(s_gs107_groups), s_gs107_links }; /* 0x81efcac */ diff --git a/src/data/ground/ground_data_h02p01_station.h b/src/data/ground/ground_data_h02p01_station.h new file mode 100644 index 000000000..54807c7d3 --- /dev/null +++ b/src/data/ground/ground_data_h02p01_station.h @@ -0,0 +1,357 @@ + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs108_g0_s0_station_sref_script[] = { /* 0x81efcc0 */ + DEBUGINFO, + SELECT_MAP(108), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(106), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs108_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs108_g0_s0_station_sref_script }; /* 0x81eff3c */ + +static const struct ScriptCommand s_gs108_g0_s1_lives0_dlg0[] = { /* 0x81eff48 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs108_g0_s1_lives1_dlg0[] = { /* 0x81eff88 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs108_g0_s3_lives0_dlg0[] = { /* 0x81effc8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs108_g0_s3_lives1_dlg0[] = { /* 0x81f0008 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs108_g0_s4_lives0_dlg0[] = { /* 0x81f0048 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs108_g0_s4_lives1_dlg0[] = { /* 0x81f0078 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives0_dlg1[] = { /* 0x81f00a8 */ + DEBUGINFO, + { 0x51, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives0_dlg2[] = { /* 0x81f00d8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives1_dlg1[] = { /* 0x81f00f8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives1_dlg2[] = { /* 0x81f0128 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives2_dlg1[] = { /* 0x81f0148 */ + DEBUGINFO, + { 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives2_dlg2[] = { /* 0x81f0178 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives3_dlg1[] = { /* 0x81f0198 */ + DEBUGINFO, + { 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives3_dlg2[] = { /* 0x81f01c8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives4_dlg1[] = { /* 0x81f01e8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives4_dlg2[] = { /* 0x81f0218 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives5_dlg1[] = { /* 0x81f0238 */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives5_dlg2[] = { /* 0x81f0268 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives6_dlg1[] = { /* 0x81f0288 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives6_dlg2[] = { /* 0x81f02b8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives7_dlg1[] = { /* 0x81f02d8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives7_dlg2[] = { /* 0x81f0308 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives8_dlg1[] = { /* 0x81f0328 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives8_dlg2[] = { /* 0x81f0358 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives9_dlg1[] = { /* 0x81f0378 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives9_dlg2[] = { /* 0x81f03a8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives10_dlg1[] = { /* 0x81f03c8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives10_dlg2[] = { /* 0x81f03f8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives11_dlg1[] = { /* 0x81f0418 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs108_g1_s0_lives11_dlg2[] = { /* 0x81f0448 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs108_g0_s1_lives[] = { /* 0x81f0468 */ + /* 0 */ { 0, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs108_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs108_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs108_g0_s3_lives[] = { /* 0x81f0498 */ + /* 0 */ { 0, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs108_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs108_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs108_g0_s4_lives[] = { /* 0x81f04c8 */ + /* 0 */ { 0, 0, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs108_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs108_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs108_g1_s0_lives[] = { /* 0x81f04f8 */ + /* 0 */ { 14, 0, 0, 0, { 26, 29, 0, CPOS_HALFTILE }, { + [1] = s_gs108_g1_s0_lives0_dlg1, + [2] = s_gs108_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 32, 29, 0, CPOS_HALFTILE }, { + [1] = s_gs108_g1_s0_lives1_dlg1, + [2] = s_gs108_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 18, 29, 0, CPOS_HALFTILE }, { + [1] = s_gs108_g1_s0_lives2_dlg1, + [2] = s_gs108_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 41, 29, 0, CPOS_HALFTILE }, { + [1] = s_gs108_g1_s0_lives3_dlg1, + [2] = s_gs108_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 16, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs108_g1_s0_lives4_dlg1, + [2] = s_gs108_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 44, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs108_g1_s0_lives5_dlg1, + [2] = s_gs108_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 9, 18, 0, CPOS_HALFTILE }, { + [1] = s_gs108_g1_s0_lives6_dlg1, + [2] = s_gs108_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 51, 18, 0, CPOS_HALFTILE }, { + [1] = s_gs108_g1_s0_lives7_dlg1, + [2] = s_gs108_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 17, 13, 0, CPOS_HALFTILE }, { + [1] = s_gs108_g1_s0_lives8_dlg1, + [2] = s_gs108_g1_s0_lives8_dlg2, + } }, + /* 9 */ { 23, 0, 0, 0, { 42, 13, 0, CPOS_HALFTILE }, { + [1] = s_gs108_g1_s0_lives9_dlg1, + [2] = s_gs108_g1_s0_lives9_dlg2, + } }, + /* 10 */ { 24, 0, 0, 0, { 25, 12, 0, CPOS_HALFTILE }, { + [1] = s_gs108_g1_s0_lives10_dlg1, + [2] = s_gs108_g1_s0_lives10_dlg2, + } }, + /* 11 */ { 25, 0, 0, 0, { 35, 12, 0, CPOS_HALFTILE }, { + [1] = s_gs108_g1_s0_lives11_dlg1, + [2] = s_gs108_g1_s0_lives11_dlg2, + } }, +}; + +static const struct GroundEventData s_gs108_g0_s0_evts[] = { /* 0x81f0618 */ + /* 0 */ { 60, 1, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 60, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 1, 42, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 1, 42, 0, 0, { 59, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81f0648 */ + &s_gs108_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs108_g0_sectors[] = { /* 0x81f064c */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs108_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs108_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs108_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs108_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs108_g1_sectors[] = { /* 0x81f0714 */ + { LPARRAY(s_gs108_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs108_groups[] = { /* 0x81f073c */ + { LPARRAY(s_gs108_g0_sectors) }, + { LPARRAY(s_gs108_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs108_links[] = { /* 0x81f0754 */ + /* link 0 */ { { /*x*/ 32, /*y*/ 9, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 6, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 22, /*y*/ 9, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 30, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 40, /*y*/ 11, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 14, /*y*/ 11, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 48, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 41, /*y*/ 19, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 13, /*y*/ 19, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 9 */ { { /*x*/ 38, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 10 */ { { /*x*/ 15, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 11 */ { { /*x*/ 23, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs108 = { LPARRAY(s_gs108_groups), s_gs108_links }; /* 0x81f07b4 */ diff --git a/src/data/ground/ground_data_h02p02_station.h b/src/data/ground/ground_data_h02p02_station.h new file mode 100644 index 000000000..9cc610587 --- /dev/null +++ b/src/data/ground/ground_data_h02p02_station.h @@ -0,0 +1,170 @@ + + + + + + + + + +static const struct ScriptCommand s_gs109_g0_s0_station_sref_script[] = { /* 0x81f07c8 */ + DEBUGINFO, + SELECT_MAP(109), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(30), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs109_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs109_g0_s0_station_sref_script }; /* 0x81f0a44 */ + +static const struct ScriptCommand s_gs109_g0_s1_lives0_dlg0[] = { /* 0x81f0a50 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs109_g0_s1_lives1_dlg0[] = { /* 0x81f0a90 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs109_g0_s3_lives0_dlg0[] = { /* 0x81f0ad0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs109_g0_s3_lives1_dlg0[] = { /* 0x81f0b10 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs109_g0_s4_lives0_dlg0[] = { /* 0x81f0b50 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs109_g0_s4_lives1_dlg0[] = { /* 0x81f0b80 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs109_g1_s0_lives0_dlg1[] = { /* 0x81f0bb0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs109_g1_s0_lives0_dlg2[] = { /* 0x81f0be0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs109_g0_s1_lives[] = { /* 0x81f0c00 */ + /* 0 */ { 0, 4, 0, 0, { 29, 30, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs109_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs109_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs109_g0_s3_lives[] = { /* 0x81f0c30 */ + /* 0 */ { 0, 4, 0, 0, { 29, 30, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs109_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs109_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs109_g0_s4_lives[] = { /* 0x81f0c60 */ + /* 0 */ { 0, 0, 0, 0, { 29, 30, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs109_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 29, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs109_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs109_g1_s0_lives[] = { /* 0x81f0c90 */ + /* 0 */ { 14, 0, 0, 0, { 28, 15, 0, CPOS_HALFTILE }, { + [1] = s_gs109_g1_s0_lives0_dlg1, + [2] = s_gs109_g1_s0_lives0_dlg2, + } }, +}; + +static const struct GroundEventData s_gs109_g0_s0_evts[] = { /* 0x81f0ca8 */ + /* 0 */ { 57, 1, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 57, 1, 0, 0, { 0, 38, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 1, 39, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 1, 39, 0, 0, { 56, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81f0cd8 */ + &s_gs109_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs109_g0_sectors[] = { /* 0x81f0cdc */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs109_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs109_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs109_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs109_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs109_g1_sectors[] = { /* 0x81f0da4 */ + { LPARRAY(s_gs109_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs109_groups[] = { /* 0x81f0dcc */ + { LPARRAY(s_gs109_g0_sectors) }, + { LPARRAY(s_gs109_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs109_links[] = { /* 0x81f0de4 */ + /* link 0 */ { { /*x*/ 23, /*y*/ 12, /*flags*/ 0, 0 }, /*w*/ 10, /*h*/ 7, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs109 = { LPARRAY(s_gs109_groups), s_gs109_links }; /* 0x81f0dec */ diff --git a/src/data/ground/ground_data_h02p03_station.h b/src/data/ground/ground_data_h02p03_station.h new file mode 100644 index 000000000..dae42bf1f --- /dev/null +++ b/src/data/ground/ground_data_h02p03_station.h @@ -0,0 +1,170 @@ + + + + + + + + + +static const struct ScriptCommand s_gs110_g0_s0_station_sref_script[] = { /* 0x81f0e00 */ + DEBUGINFO, + SELECT_MAP(110), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(31), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs110_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs110_g0_s0_station_sref_script }; /* 0x81f107c */ + +static const struct ScriptCommand s_gs110_g0_s1_lives0_dlg0[] = { /* 0x81f1088 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs110_g0_s1_lives1_dlg0[] = { /* 0x81f10c8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs110_g0_s3_lives0_dlg0[] = { /* 0x81f1108 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs110_g0_s3_lives1_dlg0[] = { /* 0x81f1148 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs110_g0_s4_lives0_dlg0[] = { /* 0x81f1188 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs110_g0_s4_lives1_dlg0[] = { /* 0x81f11b8 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs110_g1_s0_lives0_dlg1[] = { /* 0x81f11e8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs110_g1_s0_lives0_dlg2[] = { /* 0x81f1218 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs110_g0_s1_lives[] = { /* 0x81f1238 */ + /* 0 */ { 0, 4, 0, 0, { 23, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs110_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 23, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs110_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs110_g0_s3_lives[] = { /* 0x81f1268 */ + /* 0 */ { 0, 4, 0, 0, { 23, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs110_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 23, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs110_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs110_g0_s4_lives[] = { /* 0x81f1298 */ + /* 0 */ { 0, 0, 0, 0, { 23, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs110_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 23, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs110_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs110_g1_s0_lives[] = { /* 0x81f12c8 */ + /* 0 */ { 14, 0, 0, 0, { 22, 13, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs110_g1_s0_lives0_dlg1, + [2] = s_gs110_g1_s0_lives0_dlg2, + } }, +}; + +static const struct GroundEventData s_gs110_g0_s0_evts[] = { /* 0x81f12e0 */ + /* 0 */ { 45, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 3, 42, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 3, 42, 0, 0, { 42, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 45, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81f1310 */ + &s_gs110_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs110_g0_sectors[] = { /* 0x81f1314 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs110_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs110_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs110_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs110_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs110_g1_sectors[] = { /* 0x81f13dc */ + { LPARRAY(s_gs110_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs110_groups[] = { /* 0x81f1404 */ + { LPARRAY(s_gs110_g0_sectors) }, + { LPARRAY(s_gs110_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs110_links[] = { /* 0x81f141c */ + /* link 0 */ { { /*x*/ 19, /*y*/ 10, /*flags*/ 0, 0 }, /*w*/ 7, /*h*/ 7, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs110 = { LPARRAY(s_gs110_groups), s_gs110_links }; /* 0x81f1424 */ diff --git a/src/data/ground/ground_data_h03p01_station.h b/src/data/ground/ground_data_h03p01_station.h new file mode 100644 index 000000000..061059786 --- /dev/null +++ b/src/data/ground/ground_data_h03p01_station.h @@ -0,0 +1,255 @@ + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs111_g0_s0_station_sref_script[] = { /* 0x81f1438 */ + DEBUGINFO, + SELECT_MAP(111), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(16), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs111_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs111_g0_s0_station_sref_script }; /* 0x81f16b4 */ + +static const struct ScriptCommand s_gs111_g0_s1_lives0_dlg0[] = { /* 0x81f16c0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs111_g0_s1_lives1_dlg0[] = { /* 0x81f1700 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs111_g0_s3_lives0_dlg0[] = { /* 0x81f1740 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs111_g0_s3_lives1_dlg0[] = { /* 0x81f1780 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs111_g0_s4_lives0_dlg0[] = { /* 0x81f17c0 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs111_g0_s4_lives1_dlg0[] = { /* 0x81f17f0 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs111_g1_s0_lives0_dlg1[] = { /* 0x81f1820 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs111_g1_s0_lives0_dlg2[] = { /* 0x81f1850 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs111_g1_s0_lives1_dlg1[] = { /* 0x81f1870 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs111_g1_s0_lives1_dlg2[] = { /* 0x81f18a0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs111_g1_s0_lives2_dlg1[] = { /* 0x81f18c0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs111_g1_s0_lives2_dlg2[] = { /* 0x81f18f0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs111_g1_s0_lives3_dlg1[] = { /* 0x81f1910 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs111_g1_s0_lives3_dlg2[] = { /* 0x81f1940 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs111_g1_s0_lives4_dlg1[] = { /* 0x81f1960 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs111_g1_s0_lives4_dlg2[] = { /* 0x81f1990 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs111_g1_s0_lives5_dlg1[] = { /* 0x81f19b0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs111_g1_s0_lives5_dlg2[] = { /* 0x81f19e0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs111_g0_s1_lives[] = { /* 0x81f1a00 */ + /* 0 */ { 0, 4, 0, 0, { 33, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs111_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 33, 24, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs111_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs111_g0_s3_lives[] = { /* 0x81f1a30 */ + /* 0 */ { 0, 4, 0, 0, { 33, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs111_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 33, 24, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs111_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs111_g0_s4_lives[] = { /* 0x81f1a60 */ + /* 0 */ { 0, 0, 0, 0, { 33, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs111_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 33, 24, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs111_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs111_g1_s0_lives[] = { /* 0x81f1a90 */ + /* 0 */ { 14, 0, 0, 0, { 31, 15, 0, CPOS_HALFTILE }, { + [1] = s_gs111_g1_s0_lives0_dlg1, + [2] = s_gs111_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 42, 20, 0, CPOS_HALFTILE }, { + [1] = s_gs111_g1_s0_lives1_dlg1, + [2] = s_gs111_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 41, 13, 0, CPOS_HALFTILE }, { + [1] = s_gs111_g1_s0_lives2_dlg1, + [2] = s_gs111_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 24, 11, 0, CPOS_HALFTILE }, { + [1] = s_gs111_g1_s0_lives3_dlg1, + [2] = s_gs111_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 51, 18, 0, CPOS_HALFTILE }, { + [1] = s_gs111_g1_s0_lives4_dlg1, + [2] = s_gs111_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 17, 17, 0, CPOS_HALFTILE }, { + [1] = s_gs111_g1_s0_lives5_dlg1, + [2] = s_gs111_g1_s0_lives5_dlg2, + } }, +}; + +static const struct GroundEventData s_gs111_g0_s0_evts[] = { /* 0x81f1b20 */ + /* 0 */ { 69, 1, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 69, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 1, 42, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 1, 42, 0, 0, { 68, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81f1b50 */ + &s_gs111_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs111_g0_sectors[] = { /* 0x81f1b54 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs111_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs111_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs111_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs111_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs111_g1_sectors[] = { /* 0x81f1c1c */ + { LPARRAY(s_gs111_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs111_groups[] = { /* 0x81f1c44 */ + { LPARRAY(s_gs111_g0_sectors) }, + { LPARRAY(s_gs111_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs111_links[] = { /* 0x81f1c5c */ + /* link 0 */ { { /*x*/ 14, /*y*/ 15, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 48, /*y*/ 15, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 21, /*y*/ 9, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 38, /*y*/ 11, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 39, /*y*/ 17, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 28, /*y*/ 12, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs111 = { LPARRAY(s_gs111_groups), s_gs111_links }; /* 0x81f1c8c */ diff --git a/src/data/ground/ground_data_h04p01_station.h b/src/data/ground/ground_data_h04p01_station.h new file mode 100644 index 000000000..cc6d3e983 --- /dev/null +++ b/src/data/ground/ground_data_h04p01_station.h @@ -0,0 +1,354 @@ + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs112_g0_s0_station_sref_script[] = { /* 0x81f1ca0 */ + DEBUGINFO, + SELECT_MAP(112), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(105), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs112_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs112_g0_s0_station_sref_script }; /* 0x81f1f1c */ + +static const struct ScriptCommand s_gs112_g0_s1_lives0_dlg0[] = { /* 0x81f1f28 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs112_g0_s1_lives1_dlg0[] = { /* 0x81f1f68 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs112_g0_s3_lives0_dlg0[] = { /* 0x81f1fa8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs112_g0_s3_lives1_dlg0[] = { /* 0x81f1fe8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs112_g0_s4_lives0_dlg0[] = { /* 0x81f2028 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs112_g0_s4_lives1_dlg0[] = { /* 0x81f2058 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives0_dlg1[] = { /* 0x81f2088 */ + DEBUGINFO, + { 0x51, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives0_dlg2[] = { /* 0x81f20b8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives1_dlg1[] = { /* 0x81f20d8 */ + DEBUGINFO, + { 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives1_dlg2[] = { /* 0x81f2108 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives2_dlg1[] = { /* 0x81f2128 */ + DEBUGINFO, + { 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives2_dlg2[] = { /* 0x81f2158 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives3_dlg1[] = { /* 0x81f2178 */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives3_dlg2[] = { /* 0x81f21a8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives4_dlg1[] = { /* 0x81f21c8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives4_dlg2[] = { /* 0x81f21f8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives5_dlg1[] = { /* 0x81f2218 */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives5_dlg2[] = { /* 0x81f2248 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives6_dlg1[] = { /* 0x81f2268 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives6_dlg2[] = { /* 0x81f2298 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives7_dlg1[] = { /* 0x81f22b8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives7_dlg2[] = { /* 0x81f22e8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives8_dlg1[] = { /* 0x81f2308 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives8_dlg2[] = { /* 0x81f2338 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives9_dlg1[] = { /* 0x81f2358 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives9_dlg2[] = { /* 0x81f2388 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives10_dlg1[] = { /* 0x81f23a8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives10_dlg2[] = { /* 0x81f23d8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives11_dlg1[] = { /* 0x81f23f8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs112_g1_s0_lives11_dlg2[] = { /* 0x81f2428 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs112_g0_s1_lives[] = { /* 0x81f2448 */ + /* 0 */ { 0, 4, 0, 0, { 32, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs112_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 32, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs112_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs112_g0_s3_lives[] = { /* 0x81f2478 */ + /* 0 */ { 0, 4, 0, 0, { 32, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs112_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 32, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs112_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs112_g0_s4_lives[] = { /* 0x81f24a8 */ + /* 0 */ { 0, 0, 0, 0, { 32, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs112_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 32, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs112_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs112_g1_s0_lives[] = { /* 0x81f24d8 */ + /* 0 */ { 14, 0, 0, 0, { 12, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs112_g1_s0_lives0_dlg1, + [2] = s_gs112_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 51, 18, 0, CPOS_HALFTILE }, { + [1] = s_gs112_g1_s0_lives1_dlg1, + [2] = s_gs112_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 27, 29, 0, CPOS_HALFTILE }, { + [1] = s_gs112_g1_s0_lives2_dlg1, + [2] = s_gs112_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 35, 29, 0, CPOS_HALFTILE }, { + [1] = s_gs112_g1_s0_lives3_dlg1, + [2] = s_gs112_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 24, 25, 0, CPOS_HALFTILE }, { + [1] = s_gs112_g1_s0_lives4_dlg1, + [2] = s_gs112_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 31, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs112_g1_s0_lives5_dlg1, + [2] = s_gs112_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 37, 25, 0, CPOS_HALFTILE }, { + [1] = s_gs112_g1_s0_lives6_dlg1, + [2] = s_gs112_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 28, 18, 0, CPOS_HALFTILE }, { + [1] = s_gs112_g1_s0_lives7_dlg1, + [2] = s_gs112_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 34, 18, 0, CPOS_HALFTILE }, { + [1] = s_gs112_g1_s0_lives8_dlg1, + [2] = s_gs112_g1_s0_lives8_dlg2, + } }, + /* 9 */ { 23, 0, 0, 0, { 40, 18, 0, CPOS_HALFTILE }, { + [1] = s_gs112_g1_s0_lives9_dlg1, + [2] = s_gs112_g1_s0_lives9_dlg2, + } }, + /* 10 */ { 24, 0, 0, 0, { 22, 18, 0, CPOS_HALFTILE }, { + [1] = s_gs112_g1_s0_lives10_dlg1, + [2] = s_gs112_g1_s0_lives10_dlg2, + } }, + /* 11 */ { 25, 0, 0, 0, { 38, 13, 0, CPOS_HALFTILE }, { + [1] = s_gs112_g1_s0_lives11_dlg1, + [2] = s_gs112_g1_s0_lives11_dlg2, + } }, +}; + +static const struct GroundEventData s_gs112_g0_s0_evts[] = { /* 0x81f25f8 */ + /* 0 */ { 63, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81f2604 */ + &s_gs112_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs112_g0_sectors[] = { /* 0x81f2608 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs112_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs112_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs112_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs112_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs112_g1_sectors[] = { /* 0x81f26d0 */ + { LPARRAY(s_gs112_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs112_groups[] = { /* 0x81f26f8 */ + { LPARRAY(s_gs112_g0_sectors) }, + { LPARRAY(s_gs112_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs112_links[] = { /* 0x81f2710 */ + /* link 0 */ { { /*x*/ 25, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 36, /*y*/ 10, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 19, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 37, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 31, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 35, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 20, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 28, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 32, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 9 */ { { /*x*/ 24, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 10 */ { { /*x*/ 48, /*y*/ 15, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 11 */ { { /*x*/ 9, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs112 = { LPARRAY(s_gs112_groups), s_gs112_links }; /* 0x81f2770 */ diff --git a/src/data/ground/ground_data_h04p02_station.h b/src/data/ground/ground_data_h04p02_station.h new file mode 100644 index 000000000..93a6744dd --- /dev/null +++ b/src/data/ground/ground_data_h04p02_station.h @@ -0,0 +1,304 @@ + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs113_g0_s0_station_sref_script[] = { /* 0x81f2784 */ + DEBUGINFO, + SELECT_MAP(113), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(107), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs113_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs113_g0_s0_station_sref_script }; /* 0x81f2a00 */ + +static const struct ScriptCommand s_gs113_g0_s1_lives0_dlg0[] = { /* 0x81f2a0c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs113_g0_s1_lives1_dlg0[] = { /* 0x81f2a4c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs113_g0_s3_lives0_dlg0[] = { /* 0x81f2a8c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs113_g0_s3_lives1_dlg0[] = { /* 0x81f2acc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs113_g0_s4_lives0_dlg0[] = { /* 0x81f2b0c */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs113_g0_s4_lives1_dlg0[] = { /* 0x81f2b3c */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs113_g1_s0_lives0_dlg1[] = { /* 0x81f2b6c */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs113_g1_s0_lives0_dlg2[] = { /* 0x81f2b9c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs113_g1_s0_lives1_dlg1[] = { /* 0x81f2bbc */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs113_g1_s0_lives1_dlg2[] = { /* 0x81f2bec */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs113_g1_s0_lives2_dlg1[] = { /* 0x81f2c0c */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs113_g1_s0_lives2_dlg2[] = { /* 0x81f2c3c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs113_g1_s0_lives3_dlg1[] = { /* 0x81f2c5c */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs113_g1_s0_lives3_dlg2[] = { /* 0x81f2c8c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs113_g1_s0_lives4_dlg1[] = { /* 0x81f2cac */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs113_g1_s0_lives4_dlg2[] = { /* 0x81f2cdc */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs113_g1_s0_lives5_dlg1[] = { /* 0x81f2cfc */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs113_g1_s0_lives5_dlg2[] = { /* 0x81f2d2c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs113_g1_s0_lives6_dlg1[] = { /* 0x81f2d4c */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs113_g1_s0_lives6_dlg2[] = { /* 0x81f2d7c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs113_g1_s0_lives7_dlg1[] = { /* 0x81f2d9c */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs113_g1_s0_lives7_dlg2[] = { /* 0x81f2dcc */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs113_g1_s0_lives8_dlg1[] = { /* 0x81f2dec */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs113_g1_s0_lives8_dlg2[] = { /* 0x81f2e1c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs113_g0_s1_lives[] = { /* 0x81f2e3c */ + /* 0 */ { 0, 4, 0, 0, { 12, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs113_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 12, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs113_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs113_g0_s3_lives[] = { /* 0x81f2e6c */ + /* 0 */ { 0, 4, 0, 0, { 12, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs113_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 12, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs113_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs113_g0_s4_lives[] = { /* 0x81f2e9c */ + /* 0 */ { 0, 0, 0, 0, { 12, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs113_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 12, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs113_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs113_g1_s0_lives[] = { /* 0x81f2ecc */ + /* 0 */ { 14, 0, 0, 0, { 12, 28, 0, CPOS_HALFTILE }, { + [1] = s_gs113_g1_s0_lives0_dlg1, + [2] = s_gs113_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 21, 30, 0, CPOS_HALFTILE }, { + [1] = s_gs113_g1_s0_lives1_dlg1, + [2] = s_gs113_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 6, 23, 0, CPOS_HALFTILE }, { + [1] = s_gs113_g1_s0_lives2_dlg1, + [2] = s_gs113_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 30, 33, 0, CPOS_HALFTILE }, { + [1] = s_gs113_g1_s0_lives3_dlg1, + [2] = s_gs113_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 34, 15, 0, CPOS_HALFTILE }, { + [1] = s_gs113_g1_s0_lives4_dlg1, + [2] = s_gs113_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 40, 12, 0, CPOS_HALFTILE }, { + [1] = s_gs113_g1_s0_lives5_dlg1, + [2] = s_gs113_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 31, 8, 0, CPOS_HALFTILE }, { + [1] = s_gs113_g1_s0_lives6_dlg1, + [2] = s_gs113_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 45, 15, 0, CPOS_HALFTILE }, { + [1] = s_gs113_g1_s0_lives7_dlg1, + [2] = s_gs113_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 50, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs113_g1_s0_lives8_dlg1, + [2] = s_gs113_g1_s0_lives8_dlg2, + } }, +}; + +static const struct GroundEventData s_gs113_g0_s0_evts[] = { /* 0x81f2fa4 */ + /* 0 */ { 60, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 1, 42, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81f2fbc */ + &s_gs113_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs113_g0_sectors[] = { /* 0x81f2fc0 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs113_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs113_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs113_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs113_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs113_g1_sectors[] = { /* 0x81f3088 */ + { LPARRAY(s_gs113_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs113_groups[] = { /* 0x81f30b0 */ + { LPARRAY(s_gs113_g0_sectors) }, + { LPARRAY(s_gs113_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs113_links[] = { /* 0x81f30c8 */ + /* link 0 */ { { /*x*/ 47, /*y*/ 19, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 43, /*y*/ 13, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 29, /*y*/ 6, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 37, /*y*/ 9, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 31, /*y*/ 12, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 27, /*y*/ 31, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 3, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 18, /*y*/ 26, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 9, /*y*/ 26, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs113 = { LPARRAY(s_gs113_groups), s_gs113_links }; /* 0x81f3110 */ diff --git a/src/data/ground/ground_data_h05p01_station.h b/src/data/ground/ground_data_h05p01_station.h new file mode 100644 index 000000000..df9c21e80 --- /dev/null +++ b/src/data/ground/ground_data_h05p01_station.h @@ -0,0 +1,252 @@ + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs114_g0_s0_station_sref_script[] = { /* 0x81f3124 */ + DEBUGINFO, + SELECT_MAP(114), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(121), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs114_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs114_g0_s0_station_sref_script }; /* 0x81f33a0 */ + +static const struct ScriptCommand s_gs114_g0_s1_lives0_dlg0[] = { /* 0x81f33ac */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs114_g0_s1_lives1_dlg0[] = { /* 0x81f33ec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs114_g0_s3_lives0_dlg0[] = { /* 0x81f342c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs114_g0_s3_lives1_dlg0[] = { /* 0x81f346c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs114_g0_s4_lives0_dlg0[] = { /* 0x81f34ac */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs114_g0_s4_lives1_dlg0[] = { /* 0x81f34dc */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs114_g1_s0_lives0_dlg1[] = { /* 0x81f350c */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs114_g1_s0_lives0_dlg2[] = { /* 0x81f353c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs114_g1_s0_lives1_dlg1[] = { /* 0x81f355c */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs114_g1_s0_lives1_dlg2[] = { /* 0x81f358c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs114_g1_s0_lives2_dlg1[] = { /* 0x81f35ac */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs114_g1_s0_lives2_dlg2[] = { /* 0x81f35dc */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs114_g1_s0_lives3_dlg1[] = { /* 0x81f35fc */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs114_g1_s0_lives3_dlg2[] = { /* 0x81f362c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs114_g1_s0_lives4_dlg1[] = { /* 0x81f364c */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs114_g1_s0_lives4_dlg2[] = { /* 0x81f367c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs114_g1_s0_lives5_dlg1[] = { /* 0x81f369c */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs114_g1_s0_lives5_dlg2[] = { /* 0x81f36cc */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs114_g0_s1_lives[] = { /* 0x81f36ec */ + /* 0 */ { 0, 4, 0, 0, { 35, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs114_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 32, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs114_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs114_g0_s3_lives[] = { /* 0x81f371c */ + /* 0 */ { 0, 4, 0, 0, { 35, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs114_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 32, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs114_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs114_g0_s4_lives[] = { /* 0x81f374c */ + /* 0 */ { 0, 0, 0, 0, { 35, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs114_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 32, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs114_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs114_g1_s0_lives[] = { /* 0x81f377c */ + /* 0 */ { 14, 0, 0, 0, { 43, 32, 0, CPOS_HALFTILE }, { + [1] = s_gs114_g1_s0_lives0_dlg1, + [2] = s_gs114_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 24, 25, 0, CPOS_HALFTILE }, { + [1] = s_gs114_g1_s0_lives1_dlg1, + [2] = s_gs114_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 38, 26, 0, CPOS_HALFTILE }, { + [1] = s_gs114_g1_s0_lives2_dlg1, + [2] = s_gs114_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 17, 16, 0, CPOS_HALFTILE }, { + [1] = s_gs114_g1_s0_lives3_dlg1, + [2] = s_gs114_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 17, 25, 0, CPOS_HALFTILE }, { + [1] = s_gs114_g1_s0_lives4_dlg1, + [2] = s_gs114_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 27, 14, 0, CPOS_HALFTILE }, { + [1] = s_gs114_g1_s0_lives5_dlg1, + [2] = s_gs114_g1_s0_lives5_dlg2, + } }, +}; + +static const struct GroundEventData s_gs114_g0_s0_evts[] = { /* 0x81f380c */ + /* 0 */ { 60, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81f3818 */ + &s_gs114_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs114_g0_sectors[] = { /* 0x81f381c */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs114_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs114_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs114_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs114_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs114_g1_sectors[] = { /* 0x81f38e4 */ + { LPARRAY(s_gs114_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs114_groups[] = { /* 0x81f390c */ + { LPARRAY(s_gs114_g0_sectors) }, + { LPARRAY(s_gs114_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs114_links[] = { /* 0x81f3924 */ + /* link 0 */ { { /*x*/ 40, /*y*/ 30, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 21, /*y*/ 23, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 35, /*y*/ 24, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 14, /*y*/ 14, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 13, /*y*/ 23, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 24, /*y*/ 12, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs114 = { LPARRAY(s_gs114_groups), s_gs114_links }; /* 0x81f3954 */ diff --git a/src/data/ground/ground_data_h05p02_station.h b/src/data/ground/ground_data_h05p02_station.h new file mode 100644 index 000000000..b645ab620 --- /dev/null +++ b/src/data/ground/ground_data_h05p02_station.h @@ -0,0 +1,170 @@ + + + + + + + + + +static const struct ScriptCommand s_gs115_g0_s0_station_sref_script[] = { /* 0x81f3968 */ + DEBUGINFO, + SELECT_MAP(115), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(28), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs115_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs115_g0_s0_station_sref_script }; /* 0x81f3be4 */ + +static const struct ScriptCommand s_gs115_g0_s1_lives0_dlg0[] = { /* 0x81f3bf0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs115_g0_s1_lives1_dlg0[] = { /* 0x81f3c30 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs115_g0_s3_lives0_dlg0[] = { /* 0x81f3c70 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs115_g0_s3_lives1_dlg0[] = { /* 0x81f3cb0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs115_g0_s4_lives0_dlg0[] = { /* 0x81f3cf0 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs115_g0_s4_lives1_dlg0[] = { /* 0x81f3d20 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs115_g1_s0_lives0_dlg1[] = { /* 0x81f3d50 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs115_g1_s0_lives0_dlg2[] = { /* 0x81f3d80 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs115_g0_s1_lives[] = { /* 0x81f3da0 */ + /* 0 */ { 0, 4, 0, 0, { 28, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs115_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs115_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs115_g0_s3_lives[] = { /* 0x81f3dd0 */ + /* 0 */ { 0, 4, 0, 0, { 28, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs115_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs115_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs115_g0_s4_lives[] = { /* 0x81f3e00 */ + /* 0 */ { 0, 0, 0, 0, { 28, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs115_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 28, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs115_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs115_g1_s0_lives[] = { /* 0x81f3e30 */ + /* 0 */ { 14, 0, 0, 0, { 28, 14, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs115_g1_s0_lives0_dlg1, + [2] = s_gs115_g1_s0_lives0_dlg2, + } }, +}; + +static const struct GroundEventData s_gs115_g0_s0_evts[] = { /* 0x81f3e48 */ + /* 0 */ { 57, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 57, 1, 0, 0, { 0, 38, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 3, 39, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 3, 39, 0, 0, { 54, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81f3e78 */ + &s_gs115_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs115_g0_sectors[] = { /* 0x81f3e7c */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs115_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs115_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs115_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs115_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs115_g1_sectors[] = { /* 0x81f3f44 */ + { LPARRAY(s_gs115_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs115_groups[] = { /* 0x81f3f6c */ + { LPARRAY(s_gs115_g0_sectors) }, + { LPARRAY(s_gs115_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs115_links[] = { /* 0x81f3f84 */ + /* link 0 */ { { /*x*/ 24, /*y*/ 12, /*flags*/ 0, 0 }, /*w*/ 9, /*h*/ 5, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs115 = { LPARRAY(s_gs115_groups), s_gs115_links }; /* 0x81f3f8c */ diff --git a/src/data/ground/ground_data_h06p01_station.h b/src/data/ground/ground_data_h06p01_station.h new file mode 100644 index 000000000..0285cdb6d --- /dev/null +++ b/src/data/ground/ground_data_h06p01_station.h @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs116_g0_s0_station_sref_script[] = { /* 0x81f3fa0 */ + DEBUGINFO, + SELECT_MAP(116), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(107), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs116_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs116_g0_s0_station_sref_script }; /* 0x81f421c */ + +static const struct ScriptCommand s_gs116_g0_s1_lives0_dlg0[] = { /* 0x81f4228 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs116_g0_s1_lives1_dlg0[] = { /* 0x81f4268 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs116_g0_s3_lives0_dlg0[] = { /* 0x81f42a8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs116_g0_s3_lives1_dlg0[] = { /* 0x81f42e8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs116_g0_s4_lives0_dlg0[] = { /* 0x81f4328 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs116_g0_s4_lives1_dlg0[] = { /* 0x81f4358 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives0_dlg1[] = { /* 0x81f4388 */ + DEBUGINFO, + { 0x51, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives0_dlg2[] = { /* 0x81f43b8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives1_dlg1[] = { /* 0x81f43d8 */ + DEBUGINFO, + { 0x51, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives1_dlg2[] = { /* 0x81f4408 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives2_dlg1[] = { /* 0x81f4428 */ + DEBUGINFO, + { 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives2_dlg2[] = { /* 0x81f4458 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives3_dlg1[] = { /* 0x81f4478 */ + DEBUGINFO, + { 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives3_dlg2[] = { /* 0x81f44a8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives4_dlg1[] = { /* 0x81f44c8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives4_dlg2[] = { /* 0x81f44f8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives5_dlg1[] = { /* 0x81f4518 */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives5_dlg2[] = { /* 0x81f4548 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives6_dlg1[] = { /* 0x81f4568 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives6_dlg2[] = { /* 0x81f4598 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives7_dlg1[] = { /* 0x81f45b8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives7_dlg2[] = { /* 0x81f45e8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives8_dlg1[] = { /* 0x81f4608 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives8_dlg2[] = { /* 0x81f4638 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives9_dlg1[] = { /* 0x81f4658 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives9_dlg2[] = { /* 0x81f4688 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives10_dlg1[] = { /* 0x81f46a8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives10_dlg2[] = { /* 0x81f46d8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives11_dlg1[] = { /* 0x81f46f8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives11_dlg2[] = { /* 0x81f4728 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives12_dlg1[] = { /* 0x81f4748 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs116_g1_s0_lives12_dlg2[] = { /* 0x81f4778 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs116_g0_s1_lives[] = { /* 0x81f4798 */ + /* 0 */ { 0, 4, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs116_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs116_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs116_g0_s3_lives[] = { /* 0x81f47c8 */ + /* 0 */ { 0, 4, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs116_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs116_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs116_g0_s4_lives[] = { /* 0x81f47f8 */ + /* 0 */ { 0, 0, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs116_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs116_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs116_g1_s0_lives[] = { /* 0x81f4828 */ + /* 0 */ { 14, 0, 0, 0, { 18, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs116_g1_s0_lives0_dlg1, + [2] = s_gs116_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 40, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs116_g1_s0_lives1_dlg1, + [2] = s_gs116_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 12, 37, 0, CPOS_HALFTILE }, { + [1] = s_gs116_g1_s0_lives2_dlg1, + [2] = s_gs116_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 46, 37, 0, CPOS_HALFTILE }, { + [1] = s_gs116_g1_s0_lives3_dlg1, + [2] = s_gs116_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 7, 32, 0, CPOS_HALFTILE }, { + [1] = s_gs116_g1_s0_lives4_dlg1, + [2] = s_gs116_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 51, 29, 0, CPOS_HALFTILE }, { + [1] = s_gs116_g1_s0_lives5_dlg1, + [2] = s_gs116_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 15, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs116_g1_s0_lives6_dlg1, + [2] = s_gs116_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 42, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs116_g1_s0_lives7_dlg1, + [2] = s_gs116_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 9, 21, 0, CPOS_HALFTILE }, { + [1] = s_gs116_g1_s0_lives8_dlg1, + [2] = s_gs116_g1_s0_lives8_dlg2, + } }, + /* 9 */ { 23, 0, 0, 0, { 48, 21, 0, CPOS_HALFTILE }, { + [1] = s_gs116_g1_s0_lives9_dlg1, + [2] = s_gs116_g1_s0_lives9_dlg2, + } }, + /* 10 */ { 24, 0, 0, 0, { 17, 17, 0, CPOS_HALFTILE }, { + [1] = s_gs116_g1_s0_lives10_dlg1, + [2] = s_gs116_g1_s0_lives10_dlg2, + } }, + /* 11 */ { 25, 0, 0, 0, { 37, 17, 0, CPOS_HALFTILE }, { + [1] = s_gs116_g1_s0_lives11_dlg1, + [2] = s_gs116_g1_s0_lives11_dlg2, + } }, + /* 12 */ { 26, 0, 0, 0, { 28, 16, 0, CPOS_HALFTILE }, { + [1] = s_gs116_g1_s0_lives12_dlg1, + [2] = s_gs116_g1_s0_lives12_dlg2, + } }, +}; + +static const struct GroundEventData s_gs116_g0_s0_evts[] = { /* 0x81f4960 */ + /* 0 */ { 57, 1, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 57, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 1, 42, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 1, 42, 0, 0, { 56, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81f4990 */ + &s_gs116_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs116_g0_sectors[] = { /* 0x81f4994 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs116_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs116_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs116_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs116_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs116_g1_sectors[] = { /* 0x81f4a5c */ + { LPARRAY(s_gs116_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs116_groups[] = { /* 0x81f4a84 */ + { LPARRAY(s_gs116_g0_sectors) }, + { LPARRAY(s_gs116_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs116_links[] = { /* 0x81f4a9c */ + /* link 0 */ { { /*x*/ 25, /*y*/ 13, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 35, /*y*/ 15, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 14, /*y*/ 15, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 45, /*y*/ 19, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 6, /*y*/ 19, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 39, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 12, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 48, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 3, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 9 */ { { /*x*/ 42, /*y*/ 33, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 10 */ { { /*x*/ 9, /*y*/ 33, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 11 */ { { /*x*/ 36, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 12 */ { { /*x*/ 15, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs116 = { LPARRAY(s_gs116_groups), s_gs116_links }; /* 0x81f4b04 */ diff --git a/src/data/ground/ground_data_h06p02_station.h b/src/data/ground/ground_data_h06p02_station.h new file mode 100644 index 000000000..c4c633bd1 --- /dev/null +++ b/src/data/ground/ground_data_h06p02_station.h @@ -0,0 +1,357 @@ + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs117_g0_s0_station_sref_script[] = { /* 0x81f4b18 */ + DEBUGINFO, + SELECT_MAP(117), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(107), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs117_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs117_g0_s0_station_sref_script }; /* 0x81f4d94 */ + +static const struct ScriptCommand s_gs117_g0_s1_lives0_dlg0[] = { /* 0x81f4da0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs117_g0_s1_lives1_dlg0[] = { /* 0x81f4de0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs117_g0_s3_lives0_dlg0[] = { /* 0x81f4e20 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs117_g0_s3_lives1_dlg0[] = { /* 0x81f4e60 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs117_g0_s4_lives0_dlg0[] = { /* 0x81f4ea0 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs117_g0_s4_lives1_dlg0[] = { /* 0x81f4ed0 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives0_dlg1[] = { /* 0x81f4f00 */ + DEBUGINFO, + { 0x51, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives0_dlg2[] = { /* 0x81f4f30 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives1_dlg1[] = { /* 0x81f4f50 */ + DEBUGINFO, + { 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives1_dlg2[] = { /* 0x81f4f80 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives2_dlg1[] = { /* 0x81f4fa0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives2_dlg2[] = { /* 0x81f4fd0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives3_dlg1[] = { /* 0x81f4ff0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives3_dlg2[] = { /* 0x81f5020 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives4_dlg1[] = { /* 0x81f5040 */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives4_dlg2[] = { /* 0x81f5070 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives5_dlg1[] = { /* 0x81f5090 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives5_dlg2[] = { /* 0x81f50c0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives6_dlg1[] = { /* 0x81f50e0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives6_dlg2[] = { /* 0x81f5110 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives7_dlg1[] = { /* 0x81f5130 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives7_dlg2[] = { /* 0x81f5160 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives8_dlg1[] = { /* 0x81f5180 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives8_dlg2[] = { /* 0x81f51b0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives9_dlg1[] = { /* 0x81f51d0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives9_dlg2[] = { /* 0x81f5200 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives10_dlg1[] = { /* 0x81f5220 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives10_dlg2[] = { /* 0x81f5250 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives11_dlg1[] = { /* 0x81f5270 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs117_g1_s0_lives11_dlg2[] = { /* 0x81f52a0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs117_g0_s1_lives[] = { /* 0x81f52c0 */ + /* 0 */ { 0, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs117_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs117_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs117_g0_s3_lives[] = { /* 0x81f52f0 */ + /* 0 */ { 0, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs117_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs117_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs117_g0_s4_lives[] = { /* 0x81f5320 */ + /* 0 */ { 0, 0, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs117_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs117_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs117_g1_s0_lives[] = { /* 0x81f5350 */ + /* 0 */ { 14, 0, 0, 0, { 30, 30, 0, CPOS_HALFTILE }, { + [1] = s_gs117_g1_s0_lives0_dlg1, + [2] = s_gs117_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 20, 29, 0, CPOS_HALFTILE }, { + [1] = s_gs117_g1_s0_lives1_dlg1, + [2] = s_gs117_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 40, 29, 0, CPOS_HALFTILE }, { + [1] = s_gs117_g1_s0_lives2_dlg1, + [2] = s_gs117_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 13, 34, 0, CPOS_HALFTILE }, { + [1] = s_gs117_g1_s0_lives3_dlg1, + [2] = s_gs117_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 47, 34, 0, CPOS_HALFTILE }, { + [1] = s_gs117_g1_s0_lives4_dlg1, + [2] = s_gs117_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 11, 27, 0, CPOS_HALFTILE }, { + [1] = s_gs117_g1_s0_lives5_dlg1, + [2] = s_gs117_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 50, 27, 0, CPOS_HALFTILE }, { + [1] = s_gs117_g1_s0_lives6_dlg1, + [2] = s_gs117_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 20, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs117_g1_s0_lives7_dlg1, + [2] = s_gs117_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 40, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs117_g1_s0_lives8_dlg1, + [2] = s_gs117_g1_s0_lives8_dlg2, + } }, + /* 9 */ { 23, 0, 0, 0, { 30, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs117_g1_s0_lives9_dlg1, + [2] = s_gs117_g1_s0_lives9_dlg2, + } }, + /* 10 */ { 24, 0, 0, 0, { 26, 18, 0, CPOS_HALFTILE }, { + [1] = s_gs117_g1_s0_lives10_dlg1, + [2] = s_gs117_g1_s0_lives10_dlg2, + } }, + /* 11 */ { 25, 0, 0, 0, { 34, 19, 0, CPOS_HALFTILE }, { + [1] = s_gs117_g1_s0_lives11_dlg1, + [2] = s_gs117_g1_s0_lives11_dlg2, + } }, +}; + +static const struct GroundEventData s_gs117_g0_s0_evts[] = { /* 0x81f5470 */ + /* 0 */ { 60, 1, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 60, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 1, 42, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 1, 42, 0, 0, { 59, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81f54a0 */ + &s_gs117_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs117_g0_sectors[] = { /* 0x81f54a4 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs117_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs117_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs117_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs117_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs117_g1_sectors[] = { /* 0x81f556c */ + { LPARRAY(s_gs117_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs117_groups[] = { /* 0x81f5594 */ + { LPARRAY(s_gs117_g0_sectors) }, + { LPARRAY(s_gs117_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs117_links[] = { /* 0x81f55ac */ + /* link 0 */ { { /*x*/ 31, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 23, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 27, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 37, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 17, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 47, /*y*/ 24, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 8, /*y*/ 24, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 44, /*y*/ 32, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 10, /*y*/ 32, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 9 */ { { /*x*/ 37, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 10 */ { { /*x*/ 17, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 11 */ { { /*x*/ 27, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs117 = { LPARRAY(s_gs117_groups), s_gs117_links }; /* 0x81f560c */ diff --git a/src/data/ground/ground_data_h06p03_station.h b/src/data/ground/ground_data_h06p03_station.h new file mode 100644 index 000000000..35319336a --- /dev/null +++ b/src/data/ground/ground_data_h06p03_station.h @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs118_g0_s0_station_sref_script[] = { /* 0x81f5620 */ + DEBUGINFO, + SELECT_MAP(118), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(105), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs118_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs118_g0_s0_station_sref_script }; /* 0x81f589c */ + +static const struct ScriptCommand s_gs118_g0_s1_lives0_dlg0[] = { /* 0x81f58a8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs118_g0_s1_lives1_dlg0[] = { /* 0x81f58e8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs118_g0_s3_lives0_dlg0[] = { /* 0x81f5928 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs118_g0_s3_lives1_dlg0[] = { /* 0x81f5968 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs118_g0_s4_lives0_dlg0[] = { /* 0x81f59a8 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs118_g0_s4_lives1_dlg0[] = { /* 0x81f59d8 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives0_dlg1[] = { /* 0x81f5a08 */ + DEBUGINFO, + { 0x51, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives0_dlg2[] = { /* 0x81f5a38 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives1_dlg1[] = { /* 0x81f5a58 */ + DEBUGINFO, + { 0x51, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives1_dlg2[] = { /* 0x81f5a88 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives2_dlg1[] = { /* 0x81f5aa8 */ + DEBUGINFO, + { 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives2_dlg2[] = { /* 0x81f5ad8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives3_dlg1[] = { /* 0x81f5af8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives3_dlg2[] = { /* 0x81f5b28 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives4_dlg1[] = { /* 0x81f5b48 */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives4_dlg2[] = { /* 0x81f5b78 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives5_dlg1[] = { /* 0x81f5b98 */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives5_dlg2[] = { /* 0x81f5bc8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives6_dlg1[] = { /* 0x81f5be8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives6_dlg2[] = { /* 0x81f5c18 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives7_dlg1[] = { /* 0x81f5c38 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives7_dlg2[] = { /* 0x81f5c68 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives8_dlg1[] = { /* 0x81f5c88 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives8_dlg2[] = { /* 0x81f5cb8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives9_dlg1[] = { /* 0x81f5cd8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives9_dlg2[] = { /* 0x81f5d08 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives10_dlg1[] = { /* 0x81f5d28 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives10_dlg2[] = { /* 0x81f5d58 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives11_dlg1[] = { /* 0x81f5d78 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives11_dlg2[] = { /* 0x81f5da8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives12_dlg1[] = { /* 0x81f5dc8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs118_g1_s0_lives12_dlg2[] = { /* 0x81f5df8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs118_g0_s1_lives[] = { /* 0x81f5e18 */ + /* 0 */ { 0, 4, 0, 0, { 25, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs118_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 25, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs118_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs118_g0_s3_lives[] = { /* 0x81f5e48 */ + /* 0 */ { 0, 4, 0, 0, { 25, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs118_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 25, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs118_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs118_g0_s4_lives[] = { /* 0x81f5e78 */ + /* 0 */ { 0, 0, 0, 0, { 25, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs118_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 25, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs118_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs118_g1_s0_lives[] = { /* 0x81f5ea8 */ + /* 0 */ { 14, 0, 0, 0, { 18, 28, 0, CPOS_HALFTILE }, { + [1] = s_gs118_g1_s0_lives0_dlg1, + [2] = s_gs118_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 33, 28, 0, CPOS_HALFTILE }, { + [1] = s_gs118_g1_s0_lives1_dlg1, + [2] = s_gs118_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 14, 33, 0, CPOS_HALFTILE }, { + [1] = s_gs118_g1_s0_lives2_dlg1, + [2] = s_gs118_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 36, 34, 0, CPOS_HALFTILE }, { + [1] = s_gs118_g1_s0_lives3_dlg1, + [2] = s_gs118_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 7, 29, 0, CPOS_HALFTILE }, { + [1] = s_gs118_g1_s0_lives4_dlg1, + [2] = s_gs118_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 44, 29, 0, CPOS_HALFTILE }, { + [1] = s_gs118_g1_s0_lives5_dlg1, + [2] = s_gs118_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 15, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs118_g1_s0_lives6_dlg1, + [2] = s_gs118_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 36, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs118_g1_s0_lives7_dlg1, + [2] = s_gs118_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 21, 20, 0, CPOS_HALFTILE }, { + [1] = s_gs118_g1_s0_lives8_dlg1, + [2] = s_gs118_g1_s0_lives8_dlg2, + } }, + /* 9 */ { 23, 0, 0, 0, { 30, 19, 0, CPOS_HALFTILE }, { + [1] = s_gs118_g1_s0_lives9_dlg1, + [2] = s_gs118_g1_s0_lives9_dlg2, + } }, + /* 10 */ { 24, 0, 0, 0, { 12, 17, 0, CPOS_HALFTILE }, { + [1] = s_gs118_g1_s0_lives10_dlg1, + [2] = s_gs118_g1_s0_lives10_dlg2, + } }, + /* 11 */ { 25, 0, 0, 0, { 40, 17, 0, CPOS_HALFTILE }, { + [1] = s_gs118_g1_s0_lives11_dlg1, + [2] = s_gs118_g1_s0_lives11_dlg2, + } }, + /* 12 */ { 26, 0, 0, 0, { 25, 14, 0, CPOS_HALFTILE }, { + [1] = s_gs118_g1_s0_lives12_dlg1, + [2] = s_gs118_g1_s0_lives12_dlg2, + } }, +}; + +static const struct GroundEventData s_gs118_g0_s0_evts[] = { /* 0x81f5fe0 */ + /* 0 */ { 57, 1, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 57, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 1, 42, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 1, 42, 0, 0, { 56, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81f6010 */ + &s_gs118_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs118_g0_sectors[] = { /* 0x81f6014 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs118_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs118_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs118_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs118_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs118_g1_sectors[] = { /* 0x81f60dc */ + { LPARRAY(s_gs118_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs118_groups[] = { /* 0x81f6104 */ + { LPARRAY(s_gs118_g0_sectors) }, + { LPARRAY(s_gs118_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs118_links[] = { /* 0x81f611c */ + /* link 0 */ { { /*x*/ 22, /*y*/ 11, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 36, /*y*/ 14, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 9, /*y*/ 14, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 27, /*y*/ 17, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 18, /*y*/ 17, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 33, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 12, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 40, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 5, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 9 */ { { /*x*/ 33, /*y*/ 32, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 10 */ { { /*x*/ 12, /*y*/ 32, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 11 */ { { /*x*/ 30, /*y*/ 26, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 12 */ { { /*x*/ 15, /*y*/ 26, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs118 = { LPARRAY(s_gs118_groups), s_gs118_links }; /* 0x81f6184 */ diff --git a/src/data/ground/ground_data_h06p04_station.h b/src/data/ground/ground_data_h06p04_station.h new file mode 100644 index 000000000..12f314ec9 --- /dev/null +++ b/src/data/ground/ground_data_h06p04_station.h @@ -0,0 +1,408 @@ + + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs119_g0_s0_station_sref_script[] = { /* 0x81f6198 */ + DEBUGINFO, + SELECT_MAP(119), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(105), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs119_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs119_g0_s0_station_sref_script }; /* 0x81f6414 */ + +static const struct ScriptCommand s_gs119_g0_s1_lives0_dlg0[] = { /* 0x81f6420 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs119_g0_s1_lives1_dlg0[] = { /* 0x81f6460 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs119_g0_s3_lives0_dlg0[] = { /* 0x81f64a0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs119_g0_s3_lives1_dlg0[] = { /* 0x81f64e0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs119_g0_s4_lives0_dlg0[] = { /* 0x81f6520 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs119_g0_s4_lives1_dlg0[] = { /* 0x81f6550 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives0_dlg1[] = { /* 0x81f6580 */ + DEBUGINFO, + { 0x51, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives0_dlg2[] = { /* 0x81f65b0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives1_dlg1[] = { /* 0x81f65d0 */ + DEBUGINFO, + { 0x51, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives1_dlg2[] = { /* 0x81f6600 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives2_dlg1[] = { /* 0x81f6620 */ + DEBUGINFO, + { 0x51, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives2_dlg2[] = { /* 0x81f6650 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives3_dlg1[] = { /* 0x81f6670 */ + DEBUGINFO, + { 0x51, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives3_dlg2[] = { /* 0x81f66a0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives4_dlg1[] = { /* 0x81f66c0 */ + DEBUGINFO, + { 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives4_dlg2[] = { /* 0x81f66f0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives5_dlg1[] = { /* 0x81f6710 */ + DEBUGINFO, + { 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives5_dlg2[] = { /* 0x81f6740 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives6_dlg1[] = { /* 0x81f6760 */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives6_dlg2[] = { /* 0x81f6790 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives7_dlg1[] = { /* 0x81f67b0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives7_dlg2[] = { /* 0x81f67e0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives8_dlg1[] = { /* 0x81f6800 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives8_dlg2[] = { /* 0x81f6830 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives9_dlg1[] = { /* 0x81f6850 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives9_dlg2[] = { /* 0x81f6880 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives10_dlg1[] = { /* 0x81f68a0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives10_dlg2[] = { /* 0x81f68d0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives11_dlg1[] = { /* 0x81f68f0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives11_dlg2[] = { /* 0x81f6920 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives12_dlg1[] = { /* 0x81f6940 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives12_dlg2[] = { /* 0x81f6970 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives13_dlg1[] = { /* 0x81f6990 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives13_dlg2[] = { /* 0x81f69c0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives14_dlg1[] = { /* 0x81f69e0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs119_g1_s0_lives14_dlg2[] = { /* 0x81f6a10 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs119_g0_s1_lives[] = { /* 0x81f6a30 */ + /* 0 */ { 0, 4, 0, 0, { 29, 34, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs119_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs119_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs119_g0_s3_lives[] = { /* 0x81f6a60 */ + /* 0 */ { 0, 4, 0, 0, { 29, 34, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs119_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs119_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs119_g0_s4_lives[] = { /* 0x81f6a90 */ + /* 0 */ { 0, 0, 0, 0, { 29, 34, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs119_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs119_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs119_g1_s0_lives[] = { /* 0x81f6ac0 */ + /* 0 */ { 14, 0, 0, 0, { 29, 27, 0, CPOS_HALFTILE }, { + [1] = s_gs119_g1_s0_lives0_dlg1, + [2] = s_gs119_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 18, 30, 0, CPOS_HALFTILE }, { + [1] = s_gs119_g1_s0_lives1_dlg1, + [2] = s_gs119_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 38, 30, 0, CPOS_HALFTILE }, { + [1] = s_gs119_g1_s0_lives2_dlg1, + [2] = s_gs119_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 15, 35, 0, CPOS_HALFTILE }, { + [1] = s_gs119_g1_s0_lives3_dlg1, + [2] = s_gs119_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 41, 34, 0, CPOS_HALFTILE }, { + [1] = s_gs119_g1_s0_lives4_dlg1, + [2] = s_gs119_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 10, 30, 0, CPOS_HALFTILE }, { + [1] = s_gs119_g1_s0_lives5_dlg1, + [2] = s_gs119_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 48, 29, 0, CPOS_HALFTILE }, { + [1] = s_gs119_g1_s0_lives6_dlg1, + [2] = s_gs119_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 20, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs119_g1_s0_lives7_dlg1, + [2] = s_gs119_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 37, 23, 0, CPOS_HALFTILE }, { + [1] = s_gs119_g1_s0_lives8_dlg1, + [2] = s_gs119_g1_s0_lives8_dlg2, + } }, + /* 9 */ { 23, 0, 0, 0, { 29, 21, 0, CPOS_HALFTILE }, { + [1] = s_gs119_g1_s0_lives9_dlg1, + [2] = s_gs119_g1_s0_lives9_dlg2, + } }, + /* 10 */ { 24, 0, 0, 0, { 43, 21, 0, CPOS_HALFTILE }, { + [1] = s_gs119_g1_s0_lives10_dlg1, + [2] = s_gs119_g1_s0_lives10_dlg2, + } }, + /* 11 */ { 25, 0, 0, 0, { 11, 21, 0, CPOS_HALFTILE }, { + [1] = s_gs119_g1_s0_lives11_dlg1, + [2] = s_gs119_g1_s0_lives11_dlg2, + } }, + /* 12 */ { 26, 0, 0, 0, { 29, 16, 0, CPOS_HALFTILE }, { + [1] = s_gs119_g1_s0_lives12_dlg1, + [2] = s_gs119_g1_s0_lives12_dlg2, + } }, + /* 13 */ { 27, 0, 0, 0, { 20, 14, 0, CPOS_HALFTILE }, { + [1] = s_gs119_g1_s0_lives13_dlg1, + [2] = s_gs119_g1_s0_lives13_dlg2, + } }, + /* 14 */ { 28, 0, 0, 0, { 39, 14, 0, CPOS_HALFTILE }, { + [1] = s_gs119_g1_s0_lives14_dlg1, + [2] = s_gs119_g1_s0_lives14_dlg2, + } }, +}; + +static const struct GroundEventData s_gs119_g0_s0_evts[] = { /* 0x81f6c28 */ + /* 0 */ { 60, 1, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 60, 1, 0, 0, { 0, 40, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 1, 42, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 1, 42, 0, 0, { 59, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81f6c58 */ + &s_gs119_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs119_g0_sectors[] = { /* 0x81f6c5c */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs119_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs119_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs119_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs119_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs119_g1_sectors[] = { /* 0x81f6d24 */ + { LPARRAY(s_gs119_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs119_groups[] = { /* 0x81f6d4c */ + { LPARRAY(s_gs119_g0_sectors) }, + { LPARRAY(s_gs119_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs119_links[] = { /* 0x81f6d64 */ + /* link 0 */ { { /*x*/ 36, /*y*/ 11, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 26, /*y*/ 13, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 17, /*y*/ 12, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 40, /*y*/ 17, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 8, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 26, /*y*/ 19, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 34, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 18, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 44, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 9 */ { { /*x*/ 7, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 10 */ { { /*x*/ 38, /*y*/ 33, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 11 */ { { /*x*/ 13, /*y*/ 33, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 12 */ { { /*x*/ 35, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 13 */ { { /*x*/ 16, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 14 */ { { /*x*/ 26, /*y*/ 25, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs119 = { LPARRAY(s_gs119_groups), s_gs119_links }; /* 0x81f6ddc */ diff --git a/src/data/ground/ground_data_h06p05_station.h b/src/data/ground/ground_data_h06p05_station.h new file mode 100644 index 000000000..42b575b8d --- /dev/null +++ b/src/data/ground/ground_data_h06p05_station.h @@ -0,0 +1,323 @@ + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs120_g0_s0_station_sref_script[] = { /* 0x81f6df0 */ + DEBUGINFO, + SELECT_MAP(120), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(107), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs120_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs120_g0_s0_station_sref_script }; /* 0x81f706c */ + +static const struct ScriptCommand s_gs120_g0_s1_lives0_dlg0[] = { /* 0x81f7078 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs120_g0_s1_lives1_dlg0[] = { /* 0x81f70b8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs120_g0_s3_lives0_dlg0[] = { /* 0x81f70f8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs120_g0_s3_lives1_dlg0[] = { /* 0x81f7138 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs120_g0_s4_lives0_dlg0[] = { /* 0x81f7178 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs120_g0_s4_lives1_dlg0[] = { /* 0x81f71a8 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs120_g1_s0_lives0_dlg1[] = { /* 0x81f71d8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs120_g1_s0_lives0_dlg2[] = { /* 0x81f7208 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs120_g1_s0_lives1_dlg1[] = { /* 0x81f7228 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs120_g1_s0_lives1_dlg2[] = { /* 0x81f7258 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs120_g1_s0_lives2_dlg1[] = { /* 0x81f7278 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs120_g1_s0_lives2_dlg2[] = { /* 0x81f72a8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs120_g1_s0_lives3_dlg1[] = { /* 0x81f72c8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs120_g1_s0_lives3_dlg2[] = { /* 0x81f72f8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs120_g1_s0_lives4_dlg1[] = { /* 0x81f7318 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs120_g1_s0_lives4_dlg2[] = { /* 0x81f7348 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs120_g1_s0_lives5_dlg1[] = { /* 0x81f7368 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs120_g1_s0_lives5_dlg2[] = { /* 0x81f7398 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs120_g1_s0_lives6_dlg1[] = { /* 0x81f73b8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs120_g1_s0_lives6_dlg2[] = { /* 0x81f73e8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs120_g1_s0_lives7_dlg1[] = { /* 0x81f7408 */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs120_g1_s0_lives7_dlg2[] = { /* 0x81f7438 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs120_g1_s0_lives8_dlg1[] = { /* 0x81f7458 */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs120_g1_s0_lives8_dlg2[] = { /* 0x81f7488 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs120_g1_s0_lives9_dlg1[] = { /* 0x81f74a8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs120_g1_s0_lives9_dlg2[] = { /* 0x81f74d8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs120_g0_s1_lives[] = { /* 0x81f74f8 */ + /* 0 */ { 0, 4, 0, 0, { 28, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs120_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs120_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs120_g0_s3_lives[] = { /* 0x81f7528 */ + /* 0 */ { 0, 4, 0, 0, { 28, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs120_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs120_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs120_g0_s4_lives[] = { /* 0x81f7558 */ + /* 0 */ { 0, 0, 0, 0, { 28, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs120_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 28, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs120_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs120_g1_s0_lives[] = { /* 0x81f7588 */ + /* 0 */ { 14, 0, 0, 0, { 28, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs120_g1_s0_lives0_dlg1, + [2] = s_gs120_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 19, 26, 0, CPOS_HALFTILE }, { + [1] = s_gs120_g1_s0_lives1_dlg1, + [2] = s_gs120_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 37, 26, 0, CPOS_HALFTILE }, { + [1] = s_gs120_g1_s0_lives2_dlg1, + [2] = s_gs120_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 13, 30, 0, CPOS_HALFTILE }, { + [1] = s_gs120_g1_s0_lives3_dlg1, + [2] = s_gs120_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 43, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs120_g1_s0_lives4_dlg1, + [2] = s_gs120_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 18, 20, 0, CPOS_HALFTILE }, { + [1] = s_gs120_g1_s0_lives5_dlg1, + [2] = s_gs120_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 36, 19, 0, CPOS_HALFTILE }, { + [1] = s_gs120_g1_s0_lives6_dlg1, + [2] = s_gs120_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 11, 25, 0, CPOS_HALFTILE }, { + [1] = s_gs120_g1_s0_lives7_dlg1, + [2] = s_gs120_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 45, 25, 0, CPOS_HALFTILE }, { + [1] = s_gs120_g1_s0_lives8_dlg1, + [2] = s_gs120_g1_s0_lives8_dlg2, + } }, + /* 9 */ { 23, 0, 0, 0, { 28, 17, 0, CPOS_HALFTILE }, { + [1] = s_gs120_g1_s0_lives9_dlg1, + [2] = s_gs120_g1_s0_lives9_dlg2, + } }, +}; + +static const struct GroundEventData s_gs120_g0_s0_evts[] = { /* 0x81f7678 */ + /* 0 */ { 57, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 57, 1, 0, 0, { 0, 39, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 3, 42, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 3, 42, 0, 0, { 54, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81f76a8 */ + &s_gs120_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs120_g0_sectors[] = { /* 0x81f76ac */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs120_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs120_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs120_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs120_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs120_g1_sectors[] = { /* 0x81f7774 */ + { LPARRAY(s_gs120_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs120_groups[] = { /* 0x81f779c */ + { LPARRAY(s_gs120_g0_sectors) }, + { LPARRAY(s_gs120_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs120_links[] = { /* 0x81f77b4 */ + /* link 0 */ { { /*x*/ 25, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 16, /*y*/ 24, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 34, /*y*/ 24, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 10, /*y*/ 29, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 40, /*y*/ 29, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 16, /*y*/ 17, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 34, /*y*/ 17, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 8, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 42, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 9 */ { { /*x*/ 25, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs120 = { LPARRAY(s_gs120_groups), s_gs120_links }; /* 0x81f7804 */ diff --git a/src/data/ground/ground_data_h06p06_station.h b/src/data/ground/ground_data_h06p06_station.h new file mode 100644 index 000000000..a6a8cf40b --- /dev/null +++ b/src/data/ground/ground_data_h06p06_station.h @@ -0,0 +1,204 @@ + + + + + + + + + + + +static const struct ScriptCommand s_gs121_g0_s0_station_sref_script[] = { /* 0x81f7818 */ + DEBUGINFO, + SELECT_MAP(121), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(107), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs121_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs121_g0_s0_station_sref_script }; /* 0x81f7a94 */ + +static const struct ScriptCommand s_gs121_g0_s1_lives0_dlg0[] = { /* 0x81f7aa0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs121_g0_s1_lives1_dlg0[] = { /* 0x81f7ae0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs121_g0_s3_lives0_dlg0[] = { /* 0x81f7b20 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs121_g0_s3_lives1_dlg0[] = { /* 0x81f7b60 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs121_g0_s4_lives0_dlg0[] = { /* 0x81f7ba0 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs121_g0_s4_lives1_dlg0[] = { /* 0x81f7bd0 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs121_g1_s0_lives0_dlg1[] = { /* 0x81f7c00 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs121_g1_s0_lives0_dlg2[] = { /* 0x81f7c30 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs121_g1_s0_lives1_dlg1[] = { /* 0x81f7c50 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs121_g1_s0_lives1_dlg2[] = { /* 0x81f7c80 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs121_g1_s0_lives2_dlg1[] = { /* 0x81f7ca0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs121_g1_s0_lives2_dlg2[] = { /* 0x81f7cd0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs121_g0_s1_lives[] = { /* 0x81f7cf0 */ + /* 0 */ { 0, 4, 0, 0, { 18, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs121_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 18, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs121_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs121_g0_s3_lives[] = { /* 0x81f7d20 */ + /* 0 */ { 0, 4, 0, 0, { 18, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs121_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 18, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs121_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs121_g0_s4_lives[] = { /* 0x81f7d50 */ + /* 0 */ { 0, 0, 0, 0, { 18, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs121_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 18, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs121_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs121_g1_s0_lives[] = { /* 0x81f7d80 */ + /* 0 */ { 14, 0, 0, 0, { 30, 23, 0, CPOS_HALFTILE }, { + [1] = s_gs121_g1_s0_lives0_dlg1, + [2] = s_gs121_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 10, 16, 0, CPOS_HALFTILE }, { + [1] = s_gs121_g1_s0_lives1_dlg1, + [2] = s_gs121_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 51, 16, 0, CPOS_HALFTILE }, { + [1] = s_gs121_g1_s0_lives2_dlg1, + [2] = s_gs121_g1_s0_lives2_dlg2, + } }, +}; + +static const struct GroundEventData s_gs121_g0_s0_evts[] = { /* 0x81f7dc8 */ + /* 0 */ { 60, 1, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 60, 1, 0, 0, { 0, 38, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 1, 39, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 1, 39, 0, 0, { 59, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81f7df8 */ + &s_gs121_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs121_g0_sectors[] = { /* 0x81f7dfc */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs121_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs121_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs121_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs121_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs121_g1_sectors[] = { /* 0x81f7ec4 */ + { LPARRAY(s_gs121_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs121_groups[] = { /* 0x81f7eec */ + { LPARRAY(s_gs121_g0_sectors) }, + { LPARRAY(s_gs121_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs121_links[] = { /* 0x81f7f04 */ + /* link 0 */ { { /*x*/ 27, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 7, /*y*/ 15, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 48, /*y*/ 15, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs121 = { LPARRAY(s_gs121_groups), s_gs121_links }; /* 0x81f7f1c */ diff --git a/src/data/ground/ground_data_h07p01_station.h b/src/data/ground/ground_data_h07p01_station.h new file mode 100644 index 000000000..1be3c1b61 --- /dev/null +++ b/src/data/ground/ground_data_h07p01_station.h @@ -0,0 +1,391 @@ + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs122_g0_s0_station_sref_script[] = { /* 0x81f7f30 */ + DEBUGINFO, + SELECT_MAP(122), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(121), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs122_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs122_g0_s0_station_sref_script }; /* 0x81f81ac */ + +static const struct ScriptCommand s_gs122_g0_s1_lives0_dlg0[] = { /* 0x81f81b8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs122_g0_s1_lives1_dlg0[] = { /* 0x81f81f8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs122_g0_s3_lives0_dlg0[] = { /* 0x81f8238 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs122_g0_s3_lives1_dlg0[] = { /* 0x81f8278 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs122_g0_s4_lives0_dlg0[] = { /* 0x81f82b8 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs122_g0_s4_lives1_dlg0[] = { /* 0x81f82e8 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives0_dlg1[] = { /* 0x81f8318 */ + DEBUGINFO, + { 0x51, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives0_dlg2[] = { /* 0x81f8348 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives1_dlg1[] = { /* 0x81f8368 */ + DEBUGINFO, + { 0x51, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives1_dlg2[] = { /* 0x81f8398 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives2_dlg1[] = { /* 0x81f83b8 */ + DEBUGINFO, + { 0x51, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives2_dlg2[] = { /* 0x81f83e8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives3_dlg1[] = { /* 0x81f8408 */ + DEBUGINFO, + { 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives3_dlg2[] = { /* 0x81f8438 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives4_dlg1[] = { /* 0x81f8458 */ + DEBUGINFO, + { 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives4_dlg2[] = { /* 0x81f8488 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives5_dlg1[] = { /* 0x81f84a8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives5_dlg2[] = { /* 0x81f84d8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives6_dlg1[] = { /* 0x81f84f8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives6_dlg2[] = { /* 0x81f8528 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives7_dlg1[] = { /* 0x81f8548 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives7_dlg2[] = { /* 0x81f8578 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives8_dlg1[] = { /* 0x81f8598 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives8_dlg2[] = { /* 0x81f85c8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives9_dlg1[] = { /* 0x81f85e8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives9_dlg2[] = { /* 0x81f8618 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives10_dlg1[] = { /* 0x81f8638 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives10_dlg2[] = { /* 0x81f8668 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives11_dlg1[] = { /* 0x81f8688 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives11_dlg2[] = { /* 0x81f86b8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives12_dlg1[] = { /* 0x81f86d8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives12_dlg2[] = { /* 0x81f8708 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives13_dlg1[] = { /* 0x81f8728 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs122_g1_s0_lives13_dlg2[] = { /* 0x81f8758 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs122_g0_s1_lives[] = { /* 0x81f8778 */ + /* 0 */ { 0, 4, 0, 0, { 29, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs122_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs122_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs122_g0_s3_lives[] = { /* 0x81f87a8 */ + /* 0 */ { 0, 4, 0, 0, { 29, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs122_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs122_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs122_g0_s4_lives[] = { /* 0x81f87d8 */ + /* 0 */ { 0, 0, 0, 0, { 29, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs122_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs122_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs122_g1_s0_lives[] = { /* 0x81f8808 */ + /* 0 */ { 14, 0, 0, 0, { 22, 30, 0, CPOS_HALFTILE }, { + [1] = s_gs122_g1_s0_lives0_dlg1, + [2] = s_gs122_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 35, 30, 0, CPOS_HALFTILE }, { + [1] = s_gs122_g1_s0_lives1_dlg1, + [2] = s_gs122_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 17, 28, 0, CPOS_HALFTILE }, { + [1] = s_gs122_g1_s0_lives2_dlg1, + [2] = s_gs122_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 40, 27, 0, CPOS_HALFTILE }, { + [1] = s_gs122_g1_s0_lives3_dlg1, + [2] = s_gs122_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 11, 30, 0, CPOS_HALFTILE }, { + [1] = s_gs122_g1_s0_lives4_dlg1, + [2] = s_gs122_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 48, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs122_g1_s0_lives5_dlg1, + [2] = s_gs122_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 7, 25, 0, CPOS_HALFTILE }, { + [1] = s_gs122_g1_s0_lives6_dlg1, + [2] = s_gs122_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 49, 25, 0, CPOS_HALFTILE }, { + [1] = s_gs122_g1_s0_lives7_dlg1, + [2] = s_gs122_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 13, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs122_g1_s0_lives8_dlg1, + [2] = s_gs122_g1_s0_lives8_dlg2, + } }, + /* 9 */ { 23, 0, 0, 0, { 44, 17, 0, CPOS_HALFTILE }, { + [1] = s_gs122_g1_s0_lives9_dlg1, + [2] = s_gs122_g1_s0_lives9_dlg2, + } }, + /* 10 */ { 24, 0, 0, 0, { 14, 17, 0, CPOS_HALFTILE }, { + [1] = s_gs122_g1_s0_lives10_dlg1, + [2] = s_gs122_g1_s0_lives10_dlg2, + } }, + /* 11 */ { 25, 0, 0, 0, { 43, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs122_g1_s0_lives11_dlg1, + [2] = s_gs122_g1_s0_lives11_dlg2, + } }, + /* 12 */ { 26, 0, 0, 0, { 19, 14, 0, CPOS_HALFTILE }, { + [1] = s_gs122_g1_s0_lives12_dlg1, + [2] = s_gs122_g1_s0_lives12_dlg2, + } }, + /* 13 */ { 27, 0, 0, 0, { 39, 14, 0, CPOS_HALFTILE }, { + [1] = s_gs122_g1_s0_lives13_dlg1, + [2] = s_gs122_g1_s0_lives13_dlg2, + } }, +}; + +static const struct GroundEventData s_gs122_g0_s0_evts[] = { /* 0x81f8958 */ + /* 0 */ { 57, 1, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 57, 1, 0, 0, { 0, 38, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 1, 39, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 1, 39, 0, 0, { 54, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81f8988 */ + &s_gs122_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs122_g0_sectors[] = { /* 0x81f898c */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs122_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs122_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs122_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs122_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs122_g1_sectors[] = { /* 0x81f8a54 */ + { LPARRAY(s_gs122_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs122_groups[] = { /* 0x81f8a7c */ + { LPARRAY(s_gs122_g0_sectors) }, + { LPARRAY(s_gs122_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs122_links[] = { /* 0x81f8a94 */ + /* link 0 */ { { /*x*/ 35, /*y*/ 12, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 16, /*y*/ 12, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 41, /*y*/ 14, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 10, /*y*/ 14, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 41, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 10, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 47, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 4, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 44, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 9 */ { { /*x*/ 8, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 10 */ { { /*x*/ 38, /*y*/ 26, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 11 */ { { /*x*/ 14, /*y*/ 26, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 12 */ { { /*x*/ 32, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 13 */ { { /*x*/ 20, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs122 = { LPARRAY(s_gs122_groups), s_gs122_links }; /* 0x81f8b04 */ diff --git a/src/data/ground/ground_data_h07p02_station.h b/src/data/ground/ground_data_h07p02_station.h new file mode 100644 index 000000000..89b4e3398 --- /dev/null +++ b/src/data/ground/ground_data_h07p02_station.h @@ -0,0 +1,355 @@ + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs123_g0_s0_station_sref_script[] = { /* 0x81f8b18 */ + DEBUGINFO, + SELECT_MAP(123), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(121), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs123_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs123_g0_s0_station_sref_script }; /* 0x81f8d94 */ + +static const struct ScriptCommand s_gs123_g0_s1_lives0_dlg0[] = { /* 0x81f8da0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs123_g0_s1_lives1_dlg0[] = { /* 0x81f8de0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs123_g0_s3_lives0_dlg0[] = { /* 0x81f8e20 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs123_g0_s3_lives1_dlg0[] = { /* 0x81f8e60 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs123_g0_s4_lives0_dlg0[] = { /* 0x81f8ea0 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs123_g0_s4_lives1_dlg0[] = { /* 0x81f8ed0 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives0_dlg1[] = { /* 0x81f8f00 */ + DEBUGINFO, + { 0x51, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives0_dlg2[] = { /* 0x81f8f30 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives1_dlg1[] = { /* 0x81f8f50 */ + DEBUGINFO, + { 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives1_dlg2[] = { /* 0x81f8f80 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives2_dlg1[] = { /* 0x81f8fa0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives2_dlg2[] = { /* 0x81f8fd0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives3_dlg1[] = { /* 0x81f8ff0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives3_dlg2[] = { /* 0x81f9020 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives4_dlg1[] = { /* 0x81f9040 */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives4_dlg2[] = { /* 0x81f9070 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives5_dlg1[] = { /* 0x81f9090 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives5_dlg2[] = { /* 0x81f90c0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives6_dlg1[] = { /* 0x81f90e0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives6_dlg2[] = { /* 0x81f9110 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives7_dlg1[] = { /* 0x81f9130 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives7_dlg2[] = { /* 0x81f9160 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives8_dlg1[] = { /* 0x81f9180 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives8_dlg2[] = { /* 0x81f91b0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives9_dlg1[] = { /* 0x81f91d0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives9_dlg2[] = { /* 0x81f9200 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives10_dlg1[] = { /* 0x81f9220 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives10_dlg2[] = { /* 0x81f9250 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives11_dlg1[] = { /* 0x81f9270 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs123_g1_s0_lives11_dlg2[] = { /* 0x81f92a0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs123_g0_s1_lives[] = { /* 0x81f92c0 */ + /* 0 */ { 0, 4, 0, 0, { 29, 34, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs123_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs123_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs123_g0_s3_lives[] = { /* 0x81f92f0 */ + /* 0 */ { 0, 4, 0, 0, { 29, 34, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs123_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs123_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs123_g0_s4_lives[] = { /* 0x81f9320 */ + /* 0 */ { 0, 0, 0, 0, { 29, 34, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs123_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 29, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs123_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs123_g1_s0_lives[] = { /* 0x81f9350 */ + /* 0 */ { 14, 0, 0, 0, { 28, 9, 0, CPOS_HALFTILE }, { + [1] = s_gs123_g1_s0_lives0_dlg1, + [2] = s_gs123_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 23, 11, 0, CPOS_HALFTILE }, { + [1] = s_gs123_g1_s0_lives1_dlg1, + [2] = s_gs123_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 33, 11, 0, CPOS_HALFTILE }, { + [1] = s_gs123_g1_s0_lives2_dlg1, + [2] = s_gs123_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 28, 25, 0, CPOS_HALFTILE }, { + [1] = s_gs123_g1_s0_lives3_dlg1, + [2] = s_gs123_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 19, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs123_g1_s0_lives4_dlg1, + [2] = s_gs123_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 39, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs123_g1_s0_lives5_dlg1, + [2] = s_gs123_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 7, 33, 0, CPOS_HALFTILE }, { + [1] = s_gs123_g1_s0_lives6_dlg1, + [2] = s_gs123_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 50, 33, 0, CPOS_HALFTILE }, { + [1] = s_gs123_g1_s0_lives7_dlg1, + [2] = s_gs123_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 13, 17, 0, CPOS_HALFTILE }, { + [1] = s_gs123_g1_s0_lives8_dlg1, + [2] = s_gs123_g1_s0_lives8_dlg2, + } }, + /* 9 */ { 23, 0, 0, 0, { 45, 17, 0, CPOS_HALFTILE }, { + [1] = s_gs123_g1_s0_lives9_dlg1, + [2] = s_gs123_g1_s0_lives9_dlg2, + } }, + /* 10 */ { 24, 0, 0, 0, { 14, 12, 0, CPOS_HALFTILE }, { + [1] = s_gs123_g1_s0_lives10_dlg1, + [2] = s_gs123_g1_s0_lives10_dlg2, + } }, + /* 11 */ { 25, 0, 0, 0, { 42, 11, 0, CPOS_HALFTILE }, { + [1] = s_gs123_g1_s0_lives11_dlg1, + [2] = s_gs123_g1_s0_lives11_dlg2, + } }, +}; + +static const struct GroundEventData s_gs123_g0_s0_evts[] = { /* 0x81f9470 */ + /* 0 */ { 60, 1, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 60, 1, 0, 0, { 0, 38, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81f9488 */ + &s_gs123_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs123_g0_sectors[] = { /* 0x81f948c */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs123_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs123_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs123_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs123_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs123_g1_sectors[] = { /* 0x81f9554 */ + { LPARRAY(s_gs123_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs123_groups[] = { /* 0x81f957c */ + { LPARRAY(s_gs123_g0_sectors) }, + { LPARRAY(s_gs123_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs123_links[] = { /* 0x81f9594 */ + /* link 0 */ { { /*x*/ 39, /*y*/ 9, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 11, /*y*/ 9, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 41, /*y*/ 15, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 10, /*y*/ 15, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 48, /*y*/ 30, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 3, /*y*/ 30, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 35, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 16, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 25, /*y*/ 23, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 9 */ { { /*x*/ 31, /*y*/ 7, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 10 */ { { /*x*/ 19, /*y*/ 7, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 11 */ { { /*x*/ 25, /*y*/ 7, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs123 = { LPARRAY(s_gs123_groups), s_gs123_links }; /* 0x81f95f4 */ diff --git a/src/data/ground/ground_data_h07p03_station.h b/src/data/ground/ground_data_h07p03_station.h new file mode 100644 index 000000000..f88fb7dde --- /dev/null +++ b/src/data/ground/ground_data_h07p03_station.h @@ -0,0 +1,303 @@ + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs124_g0_s0_station_sref_script[] = { /* 0x81f9608 */ + DEBUGINFO, + SELECT_MAP(124), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(121), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs124_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs124_g0_s0_station_sref_script }; /* 0x81f9884 */ + +static const struct ScriptCommand s_gs124_g0_s1_lives0_dlg0[] = { /* 0x81f9890 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs124_g0_s1_lives1_dlg0[] = { /* 0x81f98d0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs124_g0_s3_lives0_dlg0[] = { /* 0x81f9910 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs124_g0_s3_lives1_dlg0[] = { /* 0x81f9950 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs124_g0_s4_lives0_dlg0[] = { /* 0x81f9990 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs124_g0_s4_lives1_dlg0[] = { /* 0x81f99c0 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs124_g1_s0_lives0_dlg1[] = { /* 0x81f99f0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs124_g1_s0_lives0_dlg2[] = { /* 0x81f9a20 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs124_g1_s0_lives1_dlg1[] = { /* 0x81f9a40 */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs124_g1_s0_lives1_dlg2[] = { /* 0x81f9a70 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs124_g1_s0_lives2_dlg1[] = { /* 0x81f9a90 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs124_g1_s0_lives2_dlg2[] = { /* 0x81f9ac0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs124_g1_s0_lives3_dlg1[] = { /* 0x81f9ae0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs124_g1_s0_lives3_dlg2[] = { /* 0x81f9b10 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs124_g1_s0_lives4_dlg1[] = { /* 0x81f9b30 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs124_g1_s0_lives4_dlg2[] = { /* 0x81f9b60 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs124_g1_s0_lives5_dlg1[] = { /* 0x81f9b80 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs124_g1_s0_lives5_dlg2[] = { /* 0x81f9bb0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs124_g1_s0_lives6_dlg1[] = { /* 0x81f9bd0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs124_g1_s0_lives6_dlg2[] = { /* 0x81f9c00 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs124_g1_s0_lives7_dlg1[] = { /* 0x81f9c20 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs124_g1_s0_lives7_dlg2[] = { /* 0x81f9c50 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs124_g1_s0_lives8_dlg1[] = { /* 0x81f9c70 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs124_g1_s0_lives8_dlg2[] = { /* 0x81f9ca0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs124_g0_s1_lives[] = { /* 0x81f9cc0 */ + /* 0 */ { 0, 4, 0, 0, { 30, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs124_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs124_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs124_g0_s3_lives[] = { /* 0x81f9cf0 */ + /* 0 */ { 0, 4, 0, 0, { 30, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs124_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs124_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs124_g0_s4_lives[] = { /* 0x81f9d20 */ + /* 0 */ { 0, 0, 0, 0, { 30, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs124_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs124_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs124_g1_s0_lives[] = { /* 0x81f9d50 */ + /* 0 */ { 14, 0, 0, 0, { 27, 26, 0, CPOS_HALFTILE }, { + [1] = s_gs124_g1_s0_lives0_dlg1, + [2] = s_gs124_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 33, 26, 0, CPOS_HALFTILE }, { + [1] = s_gs124_g1_s0_lives1_dlg1, + [2] = s_gs124_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 22, 32, 0, CPOS_HALFTILE }, { + [1] = s_gs124_g1_s0_lives2_dlg1, + [2] = s_gs124_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 38, 32, 0, CPOS_HALFTILE }, { + [1] = s_gs124_g1_s0_lives3_dlg1, + [2] = s_gs124_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 18, 26, 0, CPOS_HALFTILE }, { + [1] = s_gs124_g1_s0_lives4_dlg1, + [2] = s_gs124_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 42, 26, 0, CPOS_HALFTILE }, { + [1] = s_gs124_g1_s0_lives5_dlg1, + [2] = s_gs124_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 24, 20, 0, CPOS_HALFTILE }, { + [1] = s_gs124_g1_s0_lives6_dlg1, + [2] = s_gs124_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 36, 20, 0, CPOS_HALFTILE }, { + [1] = s_gs124_g1_s0_lives7_dlg1, + [2] = s_gs124_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 30, 19, 0, CPOS_HALFTILE }, { + [1] = s_gs124_g1_s0_lives8_dlg1, + [2] = s_gs124_g1_s0_lives8_dlg2, + } }, +}; + +static const struct GroundEventData s_gs124_g0_s0_evts[] = { /* 0x81f9e28 */ + /* 0 */ { 60, 1, 0, 0, { 1, 38, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81f9e34 */ + &s_gs124_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs124_g0_sectors[] = { /* 0x81f9e38 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs124_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs124_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs124_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs124_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs124_g1_sectors[] = { /* 0x81f9f00 */ + { LPARRAY(s_gs124_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs124_groups[] = { /* 0x81f9f28 */ + { LPARRAY(s_gs124_g0_sectors) }, + { LPARRAY(s_gs124_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs124_links[] = { /* 0x81f9f40 */ + /* link 0 */ { { /*x*/ 27, /*y*/ 17, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 33, /*y*/ 18, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 21, /*y*/ 18, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 39, /*y*/ 24, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 15, /*y*/ 24, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 35, /*y*/ 30, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 19, /*y*/ 30, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 30, /*y*/ 24, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 24, /*y*/ 24, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs124 = { LPARRAY(s_gs124_groups), s_gs124_links }; /* 0x81f9f88 */ diff --git a/src/data/ground/ground_data_h07p04_station.h b/src/data/ground/ground_data_h07p04_station.h new file mode 100644 index 000000000..9222d46dd --- /dev/null +++ b/src/data/ground/ground_data_h07p04_station.h @@ -0,0 +1,422 @@ + + + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs125_g0_s0_station_sref_script[] = { /* 0x81f9f9c */ + DEBUGINFO, + SELECT_MAP(125), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(121), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs125_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs125_g0_s0_station_sref_script }; /* 0x81fa218 */ + +static const struct ScriptCommand s_gs125_g0_s1_lives0_dlg0[] = { /* 0x81fa224 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs125_g0_s1_lives1_dlg0[] = { /* 0x81fa264 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs125_g0_s3_lives0_dlg0[] = { /* 0x81fa2a4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs125_g0_s3_lives1_dlg0[] = { /* 0x81fa2e4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs125_g0_s4_lives0_dlg0[] = { /* 0x81fa324 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs125_g0_s4_lives1_dlg0[] = { /* 0x81fa354 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives0_dlg1[] = { /* 0x81fa384 */ + DEBUGINFO, + { 0x51, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives0_dlg2[] = { /* 0x81fa3b4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives1_dlg1[] = { /* 0x81fa3d4 */ + DEBUGINFO, + { 0x51, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives1_dlg2[] = { /* 0x81fa404 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives2_dlg1[] = { /* 0x81fa424 */ + DEBUGINFO, + { 0x51, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives2_dlg2[] = { /* 0x81fa454 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives3_dlg1[] = { /* 0x81fa474 */ + DEBUGINFO, + { 0x51, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives3_dlg2[] = { /* 0x81fa4a4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives4_dlg1[] = { /* 0x81fa4c4 */ + DEBUGINFO, + { 0x51, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives4_dlg2[] = { /* 0x81fa4f4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives5_dlg1[] = { /* 0x81fa514 */ + DEBUGINFO, + { 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives5_dlg2[] = { /* 0x81fa544 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives6_dlg1[] = { /* 0x81fa564 */ + DEBUGINFO, + { 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives6_dlg2[] = { /* 0x81fa594 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives7_dlg1[] = { /* 0x81fa5b4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives7_dlg2[] = { /* 0x81fa5e4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives8_dlg1[] = { /* 0x81fa604 */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives8_dlg2[] = { /* 0x81fa634 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives9_dlg1[] = { /* 0x81fa654 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives9_dlg2[] = { /* 0x81fa684 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives10_dlg1[] = { /* 0x81fa6a4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives10_dlg2[] = { /* 0x81fa6d4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives11_dlg1[] = { /* 0x81fa6f4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives11_dlg2[] = { /* 0x81fa724 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives12_dlg1[] = { /* 0x81fa744 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives12_dlg2[] = { /* 0x81fa774 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives13_dlg1[] = { /* 0x81fa794 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives13_dlg2[] = { /* 0x81fa7c4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives14_dlg1[] = { /* 0x81fa7e4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives14_dlg2[] = { /* 0x81fa814 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives15_dlg1[] = { /* 0x81fa834 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs125_g1_s0_lives15_dlg2[] = { /* 0x81fa864 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs125_g0_s1_lives[] = { /* 0x81fa884 */ + /* 0 */ { 0, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs125_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs125_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs125_g0_s3_lives[] = { /* 0x81fa8b4 */ + /* 0 */ { 0, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs125_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs125_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs125_g0_s4_lives[] = { /* 0x81fa8e4 */ + /* 0 */ { 0, 0, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs125_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs125_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs125_g1_s0_lives[] = { /* 0x81fa914 */ + /* 0 */ { 14, 0, 0, 0, { 30, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs125_g1_s0_lives0_dlg1, + [2] = s_gs125_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 25, 33, 0, CPOS_HALFTILE }, { + [1] = s_gs125_g1_s0_lives1_dlg1, + [2] = s_gs125_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 35, 33, 0, CPOS_HALFTILE }, { + [1] = s_gs125_g1_s0_lives2_dlg1, + [2] = s_gs125_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 21, 36, 0, CPOS_HALFTILE }, { + [1] = s_gs125_g1_s0_lives3_dlg1, + [2] = s_gs125_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 39, 36, 0, CPOS_HALFTILE }, { + [1] = s_gs125_g1_s0_lives4_dlg1, + [2] = s_gs125_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 19, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs125_g1_s0_lives5_dlg1, + [2] = s_gs125_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 41, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs125_g1_s0_lives6_dlg1, + [2] = s_gs125_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 25, 28, 0, CPOS_HALFTILE }, { + [1] = s_gs125_g1_s0_lives7_dlg1, + [2] = s_gs125_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 35, 28, 0, CPOS_HALFTILE }, { + [1] = s_gs125_g1_s0_lives8_dlg1, + [2] = s_gs125_g1_s0_lives8_dlg2, + } }, + /* 9 */ { 23, 0, 0, 0, { 30, 26, 0, CPOS_HALFTILE }, { + [1] = s_gs125_g1_s0_lives9_dlg1, + [2] = s_gs125_g1_s0_lives9_dlg2, + } }, + /* 10 */ { 24, 0, 0, 0, { 21, 26, 0, CPOS_HALFTILE }, { + [1] = s_gs125_g1_s0_lives10_dlg1, + [2] = s_gs125_g1_s0_lives10_dlg2, + } }, + /* 11 */ { 25, 0, 0, 0, { 39, 26, 0, CPOS_HALFTILE }, { + [1] = s_gs125_g1_s0_lives11_dlg1, + [2] = s_gs125_g1_s0_lives11_dlg2, + } }, + /* 12 */ { 26, 0, 0, 0, { 27, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs125_g1_s0_lives12_dlg1, + [2] = s_gs125_g1_s0_lives12_dlg2, + } }, + /* 13 */ { 27, 0, 0, 0, { 33, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs125_g1_s0_lives13_dlg1, + [2] = s_gs125_g1_s0_lives13_dlg2, + } }, + /* 14 */ { 28, 0, 0, 0, { 21, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs125_g1_s0_lives14_dlg1, + [2] = s_gs125_g1_s0_lives14_dlg2, + } }, + /* 15 */ { 29, 0, 0, 0, { 39, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs125_g1_s0_lives15_dlg1, + [2] = s_gs125_g1_s0_lives15_dlg2, + } }, +}; + +static const struct GroundEventData s_gs125_g0_s0_evts[] = { /* 0x81faa94 */ + /* 0 */ { 60, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81faaa0 */ + &s_gs125_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs125_g0_sectors[] = { /* 0x81faaa4 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs125_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs125_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs125_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs125_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs125_g1_sectors[] = { /* 0x81fab6c */ + { LPARRAY(s_gs125_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs125_groups[] = { /* 0x81fab94 */ + { LPARRAY(s_gs125_g0_sectors) }, + { LPARRAY(s_gs125_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs125_links[] = { /* 0x81fabac */ + /* link 0 */ { { /*x*/ 37, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 4, /*h*/ 4, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 19, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 4, /*h*/ 4, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 31, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 4, /*h*/ 4, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 25, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 4, /*h*/ 4, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 37, /*y*/ 25, /*flags*/ 0, 0 }, /*w*/ 4, /*h*/ 4, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 19, /*y*/ 25, /*flags*/ 0, 0 }, /*w*/ 4, /*h*/ 4, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 28, /*y*/ 25, /*flags*/ 0, 0 }, /*w*/ 4, /*h*/ 4, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 33, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 4, /*h*/ 4, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 23, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 4, /*h*/ 4, /*ret*/ 3, /*?*/ 2 }, + /* link 9 */ { { /*x*/ 39, /*y*/ 29, /*flags*/ 0, 0 }, /*w*/ 4, /*h*/ 4, /*ret*/ 3, /*?*/ 2 }, + /* link 10 */ { { /*x*/ 17, /*y*/ 29, /*flags*/ 0, 0 }, /*w*/ 4, /*h*/ 4, /*ret*/ 3, /*?*/ 2 }, + /* link 11 */ { { /*x*/ 37, /*y*/ 34, /*flags*/ 0, 0 }, /*w*/ 4, /*h*/ 4, /*ret*/ 3, /*?*/ 2 }, + /* link 12 */ { { /*x*/ 19, /*y*/ 34, /*flags*/ 0, 0 }, /*w*/ 4, /*h*/ 4, /*ret*/ 3, /*?*/ 2 }, + /* link 13 */ { { /*x*/ 33, /*y*/ 31, /*flags*/ 0, 0 }, /*w*/ 4, /*h*/ 4, /*ret*/ 3, /*?*/ 2 }, + /* link 14 */ { { /*x*/ 23, /*y*/ 31, /*flags*/ 0, 0 }, /*w*/ 4, /*h*/ 4, /*ret*/ 3, /*?*/ 2 }, + /* link 15 */ { { /*x*/ 28, /*y*/ 29, /*flags*/ 0, 0 }, /*w*/ 4, /*h*/ 4, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs125 = { LPARRAY(s_gs125_groups), s_gs125_links }; /* 0x81fac2c */ diff --git a/src/data/ground/ground_data_h07p05_station.h b/src/data/ground/ground_data_h07p05_station.h new file mode 100644 index 000000000..84059acdb --- /dev/null +++ b/src/data/ground/ground_data_h07p05_station.h @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs126_g0_s0_station_sref_script[] = { /* 0x81fac40 */ + DEBUGINFO, + SELECT_MAP(126), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + JUMP_LABEL(0), + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 2), + JUMP_LABEL(3), + LABEL(2), /* = 0x02 */ + JUMP_LABEL(3), + LABEL(0), /* = 0x00 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(3), + LABEL(3), /* = 0x03 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(121), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs126_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs126_g0_s0_station_sref_script }; /* 0x81fae8c */ + + +static const struct ScriptCommand s_gs126_g0_s1_lives0_dlg0[] = { /* 0x81fae98 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs126_g0_s1_lives1_dlg0[] = { /* 0x81faed8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs126_g0_s3_lives0_dlg0[] = { /* 0x81faf18 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs126_g0_s3_lives1_dlg0[] = { /* 0x81faf58 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs126_g0_s4_lives0_dlg0[] = { /* 0x81faf98 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs126_g0_s4_lives1_dlg0[] = { /* 0x81fafc8 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs126_g1_s0_lives0_dlg1[] = { /* 0x81faff8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs126_g1_s0_lives0_dlg2[] = { /* 0x81fb028 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs126_g1_s0_lives1_dlg1[] = { /* 0x81fb048 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs126_g1_s0_lives1_dlg2[] = { /* 0x81fb078 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs126_g1_s0_lives2_dlg1[] = { /* 0x81fb098 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs126_g1_s0_lives2_dlg2[] = { /* 0x81fb0c8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs126_g1_s0_lives3_dlg1[] = { /* 0x81fb0e8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs126_g1_s0_lives3_dlg2[] = { /* 0x81fb118 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs126_g1_s0_lives4_dlg1[] = { /* 0x81fb138 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs126_g1_s0_lives4_dlg2[] = { /* 0x81fb168 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs126_g1_s0_lives5_dlg1[] = { /* 0x81fb188 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs126_g1_s0_lives5_dlg2[] = { /* 0x81fb1b8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs126_g1_s0_lives6_dlg1[] = { /* 0x81fb1d8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs126_g1_s0_lives6_dlg2[] = { /* 0x81fb208 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs126_g0_s1_lives[] = { /* 0x81fb228 */ + /* 0 */ { 0, 4, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs126_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs126_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs126_g0_s3_lives[] = { /* 0x81fb258 */ + /* 0 */ { 0, 4, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs126_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs126_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs126_g0_s4_lives[] = { /* 0x81fb288 */ + /* 0 */ { 0, 0, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs126_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs126_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs126_g1_s0_lives[] = { /* 0x81fb2b8 */ + /* 0 */ { 14, 0, 0, 0, { 22, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs126_g1_s0_lives0_dlg1, + [2] = s_gs126_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 35, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs126_g1_s0_lives1_dlg1, + [2] = s_gs126_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 16, 25, 0, CPOS_HALFTILE }, { + [1] = s_gs126_g1_s0_lives2_dlg1, + [2] = s_gs126_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 41, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs126_g1_s0_lives3_dlg1, + [2] = s_gs126_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 28, 19, 0, CPOS_HALFTILE }, { + [1] = s_gs126_g1_s0_lives4_dlg1, + [2] = s_gs126_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 15, 11, 0, CPOS_HALFTILE }, { + [1] = s_gs126_g1_s0_lives5_dlg1, + [2] = s_gs126_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 43, 11, 0, CPOS_HALFTILE }, { + [1] = s_gs126_g1_s0_lives6_dlg1, + [2] = s_gs126_g1_s0_lives6_dlg2, + } }, +}; + +static const struct GroundEventData s_gs126_g0_s0_evts[] = { /* 0x81fb360 */ + /* 0 */ { 57, 1, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 57, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 1, 42, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 1, 42, 0, 0, { 56, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81fb390 */ + &s_gs126_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs126_g0_sectors[] = { /* 0x81fb394 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs126_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs126_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs126_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs126_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs126_g1_sectors[] = { /* 0x81fb45c */ + { LPARRAY(s_gs126_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs126_groups[] = { /* 0x81fb484 */ + { LPARRAY(s_gs126_g0_sectors) }, + { LPARRAY(s_gs126_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs126_links[] = { /* 0x81fb49c */ + /* link 0 */ { { /*x*/ 40, /*y*/ 8, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 12, /*y*/ 9, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 25, /*y*/ 17, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 38, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 13, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 32, /*y*/ 29, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 19, /*y*/ 29, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs126 = { LPARRAY(s_gs126_groups), s_gs126_links }; /* 0x81fb4d4 */ diff --git a/src/data/ground/ground_data_h07p06_station.h b/src/data/ground/ground_data_h07p06_station.h new file mode 100644 index 000000000..f3da57968 --- /dev/null +++ b/src/data/ground/ground_data_h07p06_station.h @@ -0,0 +1,184 @@ + + + + + + + + + +static const struct ScriptCommand s_gs127_g0_s0_station_sref_script[] = { /* 0x81fb4e8 */ + DEBUGINFO, + SELECT_MAP(127), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(127), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs127_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs127_g0_s0_station_sref_script }; /* 0x81fb764 */ + +static const struct ScriptCommand s_gs127_g0_s0_evt1_sref_script[] = { /* 0x81fb770 */ + DEBUGINFO, + JUMP_SCRIPT(GETOUT_HABITAT), +}; + +static const struct ScriptRef s_gs127_g0_s0_evt1_sref = { 358, 2, NULL /* GETOUT_HABITAT */, s_gs127_g0_s0_evt1_sref_script }; /* 0x81fb790 */ + +static const struct ScriptCommand s_gs127_g0_s0_evt2_sref_script[] = { /* 0x81fb79c */ + DEBUGINFO, + JUMP_SCRIPT(GETOUT_HABITAT), +}; + +static const struct ScriptRef s_gs127_g0_s0_evt2_sref = { 358, 2, NULL /* GETOUT_HABITAT */, s_gs127_g0_s0_evt2_sref_script }; /* 0x81fb7bc */ + +static const struct ScriptCommand s_gs127_g0_s1_lives0_dlg0[] = { /* 0x81fb7c8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs127_g0_s1_lives1_dlg0[] = { /* 0x81fb808 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs127_g0_s3_lives0_dlg0[] = { /* 0x81fb848 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs127_g0_s3_lives1_dlg0[] = { /* 0x81fb888 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs127_g0_s4_lives0_dlg0[] = { /* 0x81fb8c8 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs127_g0_s4_lives1_dlg0[] = { /* 0x81fb8f8 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs127_g1_s0_lives0_dlg1[] = { /* 0x81fb928 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs127_g1_s0_lives0_dlg2[] = { /* 0x81fb958 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs127_g0_s1_lives[] = { /* 0x81fb978 */ + /* 0 */ { 0, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs127_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs127_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs127_g0_s3_lives[] = { /* 0x81fb9a8 */ + /* 0 */ { 0, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs127_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs127_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs127_g0_s4_lives[] = { /* 0x81fb9d8 */ + /* 0 */ { 0, 0, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs127_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs127_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs127_g1_s0_lives[] = { /* 0x81fba08 */ + /* 0 */ { 14, 0, 0, 0, { 30, 21, 0, CPOS_HALFTILE }, { + [1] = s_gs127_g1_s0_lives0_dlg1, + [2] = s_gs127_g1_s0_lives0_dlg2, + } }, +}; + +static const struct GroundEventData s_gs127_g0_s0_evts[] = { /* 0x81fba20 */ + /* 0 */ { 60, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 3, 42, 0, 0, { 0, 0, 0, 0 }, &s_gs127_g0_s0_evt1_sref }, + /* 2 */ { 3, 42, 0, 0, { 57, 0, 0, 0 }, &s_gs127_g0_s0_evt2_sref }, + /* 3 */ { 60, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81fba50 */ + &s_gs127_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs127_g0_sectors[] = { /* 0x81fba54 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs127_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs127_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs127_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs127_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs127_g1_sectors[] = { /* 0x81fbb1c */ + { LPARRAY(s_gs127_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs127_groups[] = { /* 0x81fbb44 */ + { LPARRAY(s_gs127_g0_sectors) }, + { LPARRAY(s_gs127_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs127_links[] = { /* 0x81fbb5c */ + /* link 0 */ { { /*x*/ 27, /*y*/ 19, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs127 = { LPARRAY(s_gs127_groups), s_gs127_links }; /* 0x81fbb64 */ diff --git a/src/data/ground/ground_data_h07p07_station.h b/src/data/ground/ground_data_h07p07_station.h new file mode 100644 index 000000000..e01fe4c9c --- /dev/null +++ b/src/data/ground/ground_data_h07p07_station.h @@ -0,0 +1,262 @@ + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs128_g0_s0_station_sref_script[] = { /* 0x81fbb78 */ + DEBUGINFO, + SELECT_MAP(128), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(121), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs128_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs128_g0_s0_station_sref_script }; /* 0x81fbdf4 */ + +static const struct ScriptCommand s_gs128_g0_s0_evt2_sref_script[] = { /* 0x81fbe00 */ + DEBUGINFO, + JUMP_SCRIPT(GETOUT_HABITAT), +}; + +static const struct ScriptRef s_gs128_g0_s0_evt2_sref = { 358, 2, NULL /* GETOUT_HABITAT */, s_gs128_g0_s0_evt2_sref_script }; /* 0x81fbe20 */ + +static const struct ScriptCommand s_gs128_g0_s0_evt3_sref_script[] = { /* 0x81fbe2c */ + DEBUGINFO, + JUMP_SCRIPT(GETOUT_HABITAT), +}; + +static const struct ScriptRef s_gs128_g0_s0_evt3_sref = { 358, 2, NULL /* GETOUT_HABITAT */, s_gs128_g0_s0_evt3_sref_script }; /* 0x81fbe4c */ + +static const struct ScriptCommand s_gs128_g0_s1_lives0_dlg0[] = { /* 0x81fbe58 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs128_g0_s1_lives1_dlg0[] = { /* 0x81fbe98 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs128_g0_s3_lives0_dlg0[] = { /* 0x81fbed8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs128_g0_s3_lives1_dlg0[] = { /* 0x81fbf18 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs128_g0_s4_lives0_dlg0[] = { /* 0x81fbf58 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs128_g0_s4_lives1_dlg0[] = { /* 0x81fbf88 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs128_g1_s0_lives0_dlg1[] = { /* 0x81fbfb8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs128_g1_s0_lives0_dlg2[] = { /* 0x81fbfe8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs128_g1_s0_lives1_dlg1[] = { /* 0x81fc008 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs128_g1_s0_lives1_dlg2[] = { /* 0x81fc038 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs128_g1_s0_lives2_dlg1[] = { /* 0x81fc058 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs128_g1_s0_lives2_dlg2[] = { /* 0x81fc088 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs128_g1_s0_lives3_dlg2[] = { /* 0x81fc0a8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs128_g1_s0_lives4_dlg1[] = { /* 0x81fc0c8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs128_g1_s0_lives4_dlg2[] = { /* 0x81fc0f8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs128_g1_s0_lives5_dlg1[] = { /* 0x81fc118 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs128_g1_s0_lives5_dlg2[] = { /* 0x81fc148 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs128_g0_s1_lives[] = { /* 0x81fc168 */ + /* 0 */ { 0, 4, 0, 0, { 30, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs128_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs128_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs128_g0_s3_lives[] = { /* 0x81fc198 */ + /* 0 */ { 0, 4, 0, 0, { 30, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs128_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs128_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs128_g0_s4_lives[] = { /* 0x81fc1c8 */ + /* 0 */ { 0, 0, 0, 0, { 30, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs128_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs128_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs128_g1_s0_lives[] = { /* 0x81fc1f8 */ + /* 0 */ { 14, 0, 0, 0, { 30, 28, 0, CPOS_HALFTILE }, { + [1] = s_gs128_g1_s0_lives0_dlg1, + [2] = s_gs128_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 21, 29, 0, CPOS_HALFTILE }, { + [1] = s_gs128_g1_s0_lives1_dlg1, + [2] = s_gs128_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 37, 29, 0, CPOS_HALFTILE }, { + [1] = s_gs128_g1_s0_lives2_dlg1, + [2] = s_gs128_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 23, 22, 0, CPOS_HALFTILE }, { + [2] = s_gs128_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 36, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs128_g1_s0_lives4_dlg1, + [2] = s_gs128_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 30, 18, 0, CPOS_HALFTILE }, { + [1] = s_gs128_g1_s0_lives5_dlg1, + [2] = s_gs128_g1_s0_lives5_dlg2, + } }, +}; + +static const struct GroundEventData s_gs128_g0_s0_evts[] = { /* 0x81fc288 */ + /* 0 */ { 60, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 60, 1, 0, 0, { 0, 38, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 3, 39, 0, 0, { 0, 0, 0, 0 }, &s_gs128_g0_s0_evt2_sref }, + /* 3 */ { 3, 39, 0, 0, { 57, 0, 0, 0 }, &s_gs128_g0_s0_evt3_sref }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81fc2b8 */ + &s_gs128_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs128_g0_sectors[] = { /* 0x81fc2bc */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs128_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs128_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs128_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs128_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs128_g1_sectors[] = { /* 0x81fc384 */ + { LPARRAY(s_gs128_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs128_groups[] = { /* 0x81fc3ac */ + { LPARRAY(s_gs128_g0_sectors) }, + { LPARRAY(s_gs128_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs128_links[] = { /* 0x81fc3c4 */ + /* link 0 */ { { /*x*/ 27, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 34, /*y*/ 19, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 20, /*y*/ 19, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 35, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 18, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 27, /*y*/ 26, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs128 = { LPARRAY(s_gs128_groups), s_gs128_links }; /* 0x81fc3f4 */ diff --git a/src/data/ground/ground_data_h07p08_station.h b/src/data/ground/ground_data_h07p08_station.h new file mode 100644 index 000000000..5254f31ec --- /dev/null +++ b/src/data/ground/ground_data_h07p08_station.h @@ -0,0 +1,306 @@ + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs129_g0_s0_station_sref_script[] = { /* 0x81fc408 */ + DEBUGINFO, + SELECT_MAP(129), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(121), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs129_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs129_g0_s0_station_sref_script }; /* 0x81fc684 */ + +static const struct ScriptCommand s_gs129_g0_s1_lives0_dlg0[] = { /* 0x81fc690 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs129_g0_s1_lives1_dlg0[] = { /* 0x81fc6d0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs129_g0_s3_lives0_dlg0[] = { /* 0x81fc710 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs129_g0_s3_lives1_dlg0[] = { /* 0x81fc750 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs129_g0_s4_lives0_dlg0[] = { /* 0x81fc790 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs129_g0_s4_lives1_dlg0[] = { /* 0x81fc7c0 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs129_g1_s0_lives0_dlg1[] = { /* 0x81fc7f0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs129_g1_s0_lives0_dlg2[] = { /* 0x81fc820 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs129_g1_s0_lives1_dlg1[] = { /* 0x81fc840 */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs129_g1_s0_lives1_dlg2[] = { /* 0x81fc870 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs129_g1_s0_lives2_dlg1[] = { /* 0x81fc890 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs129_g1_s0_lives2_dlg2[] = { /* 0x81fc8c0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs129_g1_s0_lives3_dlg1[] = { /* 0x81fc8e0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs129_g1_s0_lives3_dlg2[] = { /* 0x81fc910 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs129_g1_s0_lives4_dlg1[] = { /* 0x81fc930 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs129_g1_s0_lives4_dlg2[] = { /* 0x81fc960 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs129_g1_s0_lives5_dlg1[] = { /* 0x81fc980 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs129_g1_s0_lives5_dlg2[] = { /* 0x81fc9b0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs129_g1_s0_lives6_dlg1[] = { /* 0x81fc9d0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs129_g1_s0_lives6_dlg2[] = { /* 0x81fca00 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs129_g1_s0_lives7_dlg1[] = { /* 0x81fca20 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs129_g1_s0_lives7_dlg2[] = { /* 0x81fca50 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs129_g1_s0_lives8_dlg1[] = { /* 0x81fca70 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs129_g1_s0_lives8_dlg2[] = { /* 0x81fcaa0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs129_g0_s1_lives[] = { /* 0x81fcac0 */ + /* 0 */ { 0, 4, 0, 0, { 29, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs129_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs129_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs129_g0_s3_lives[] = { /* 0x81fcaf0 */ + /* 0 */ { 0, 4, 0, 0, { 29, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs129_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs129_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs129_g0_s4_lives[] = { /* 0x81fcb20 */ + /* 0 */ { 0, 0, 0, 0, { 29, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs129_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs129_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs129_g1_s0_lives[] = { /* 0x81fcb50 */ + /* 0 */ { 14, 0, 0, 0, { 29, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs129_g1_s0_lives0_dlg1, + [2] = s_gs129_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 19, 29, 0, CPOS_HALFTILE }, { + [1] = s_gs129_g1_s0_lives1_dlg1, + [2] = s_gs129_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 39, 29, 0, CPOS_HALFTILE }, { + [1] = s_gs129_g1_s0_lives2_dlg1, + [2] = s_gs129_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 12, 23, 0, CPOS_HALFTILE }, { + [1] = s_gs129_g1_s0_lives3_dlg1, + [2] = s_gs129_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 44, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs129_g1_s0_lives4_dlg1, + [2] = s_gs129_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 20, 18, 0, CPOS_HALFTILE }, { + [1] = s_gs129_g1_s0_lives5_dlg1, + [2] = s_gs129_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 38, 18, 0, CPOS_HALFTILE }, { + [1] = s_gs129_g1_s0_lives6_dlg1, + [2] = s_gs129_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 24, 11, 0, CPOS_HALFTILE }, { + [1] = s_gs129_g1_s0_lives7_dlg1, + [2] = s_gs129_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 34, 11, 0, CPOS_HALFTILE }, { + [1] = s_gs129_g1_s0_lives8_dlg1, + [2] = s_gs129_g1_s0_lives8_dlg2, + } }, +}; + +static const struct GroundEventData s_gs129_g0_s0_evts[] = { /* 0x81fcc28 */ + /* 0 */ { 84, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 57, 1, 0, 0, { 0, 38, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 3, 39, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 3, 39, 0, 0, { 54, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81fcc58 */ + &s_gs129_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs129_g0_sectors[] = { /* 0x81fcc5c */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs129_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs129_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs129_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs129_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs129_g1_sectors[] = { /* 0x81fcd24 */ + { LPARRAY(s_gs129_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs129_groups[] = { /* 0x81fcd4c */ + { LPARRAY(s_gs129_g0_sectors) }, + { LPARRAY(s_gs129_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs129_links[] = { /* 0x81fcd64 */ + /* link 0 */ { { /*x*/ 30, /*y*/ 9, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 21, /*y*/ 9, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 35, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 17, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 42, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 9, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 35, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 17, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 26, /*y*/ 22, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs129 = { LPARRAY(s_gs129_groups), s_gs129_links }; /* 0x81fcdac */ diff --git a/src/data/ground/ground_data_h08p01_station.h b/src/data/ground/ground_data_h08p01_station.h new file mode 100644 index 000000000..7662ae4d6 --- /dev/null +++ b/src/data/ground/ground_data_h08p01_station.h @@ -0,0 +1,285 @@ + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs130_g0_s0_station_sref_script[] = { /* 0x81fcdc0 */ + DEBUGINFO, + SELECT_MAP(130), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(16), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs130_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs130_g0_s0_station_sref_script }; /* 0x81fd03c */ + +static const struct ScriptCommand s_gs130_g0_s1_lives0_dlg0[] = { /* 0x81fd048 */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs130_g0_s1_lives1_dlg0[] = { /* 0x81fd098 */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs130_g0_s3_lives0_dlg0[] = { /* 0x81fd0e8 */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs130_g0_s3_lives1_dlg0[] = { /* 0x81fd138 */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs130_g0_s4_lives0_dlg0[] = { /* 0x81fd188 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + { 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs130_g0_s4_lives1_dlg0[] = { /* 0x81fd1c8 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + { 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs130_g1_s0_lives0_dlg1[] = { /* 0x81fd208 */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL }, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs130_g1_s0_lives0_dlg2[] = { /* 0x81fd248 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs130_g1_s0_lives1_dlg1[] = { /* 0x81fd268 */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL }, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs130_g1_s0_lives1_dlg2[] = { /* 0x81fd2a8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs130_g1_s0_lives2_dlg1[] = { /* 0x81fd2c8 */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL }, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs130_g1_s0_lives2_dlg2[] = { /* 0x81fd308 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs130_g1_s0_lives3_dlg1[] = { /* 0x81fd328 */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL }, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs130_g1_s0_lives3_dlg2[] = { /* 0x81fd368 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs130_g1_s0_lives4_dlg1[] = { /* 0x81fd388 */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL }, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs130_g1_s0_lives4_dlg2[] = { /* 0x81fd3c8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs130_g1_s0_lives5_dlg1[] = { /* 0x81fd3e8 */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL }, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs130_g1_s0_lives5_dlg2[] = { /* 0x81fd428 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs130_g1_s0_lives6_dlg1[] = { /* 0x81fd448 */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL }, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs130_g1_s0_lives6_dlg2[] = { /* 0x81fd488 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs130_g0_s1_lives[] = { /* 0x81fd4a8 */ + /* 0 */ { 0, 4, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs130_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 34, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs130_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs130_g0_s3_lives[] = { /* 0x81fd4d8 */ + /* 0 */ { 0, 4, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs130_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 34, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs130_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs130_g0_s4_lives[] = { /* 0x81fd508 */ + /* 0 */ { 0, 0, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs130_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 34, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs130_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs130_g1_s0_lives[] = { /* 0x81fd538 */ + /* 0 */ { 14, 0, 0, 0, { 26, 25, 0, CPOS_HALFTILE }, { + [1] = s_gs130_g1_s0_lives0_dlg1, + [2] = s_gs130_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 15, 32, 0, CPOS_HALFTILE }, { + [1] = s_gs130_g1_s0_lives1_dlg1, + [2] = s_gs130_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 45, 30, 0, CPOS_HALFTILE }, { + [1] = s_gs130_g1_s0_lives2_dlg1, + [2] = s_gs130_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 30, 11, 0, CPOS_HALFTILE }, { + [1] = s_gs130_g1_s0_lives3_dlg1, + [2] = s_gs130_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 52, 25, 0, CPOS_HALFTILE }, { + [1] = s_gs130_g1_s0_lives4_dlg1, + [2] = s_gs130_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 9, 14, 0, CPOS_HALFTILE }, { + [1] = s_gs130_g1_s0_lives5_dlg1, + [2] = s_gs130_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 53, 18, 0, CPOS_HALFTILE }, { + [1] = s_gs130_g1_s0_lives6_dlg1, + [2] = s_gs130_g1_s0_lives6_dlg2, + } }, +}; + +static const struct GroundEventData s_gs130_g0_s0_evts[] = { /* 0x81fd5e0 */ + /* 0 */ { 60, 1, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 60, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 3, 42, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 1, 42, 0, 0, { 59, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81fd610 */ + &s_gs130_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs130_g0_sectors[] = { /* 0x81fd614 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs130_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs130_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs130_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs130_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs130_g1_sectors[] = { /* 0x81fd6dc */ + { LPARRAY(s_gs130_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs130_groups[] = { /* 0x81fd704 */ + { LPARRAY(s_gs130_g0_sectors) }, + { LPARRAY(s_gs130_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs130_links[] = { /* 0x81fd71c */ + /* link 0 */ { { /*x*/ 50, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 6, /*y*/ 12, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 49, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 27, /*y*/ 9, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 43, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 12, /*y*/ 30, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 23, /*y*/ 23, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs130 = { LPARRAY(s_gs130_groups), s_gs130_links }; /* 0x81fd754 */ diff --git a/src/data/ground/ground_data_h09p01_station.h b/src/data/ground/ground_data_h09p01_station.h new file mode 100644 index 000000000..3720c9c65 --- /dev/null +++ b/src/data/ground/ground_data_h09p01_station.h @@ -0,0 +1,303 @@ + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs131_g0_s0_station_sref_script[] = { /* 0x81fd768 */ + DEBUGINFO, + SELECT_MAP(131), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(16), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs131_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs131_g0_s0_station_sref_script }; /* 0x81fd9e4 */ + +static const struct ScriptCommand s_gs131_g0_s1_lives0_dlg0[] = { /* 0x81fd9f0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs131_g0_s1_lives1_dlg0[] = { /* 0x81fda30 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs131_g0_s3_lives0_dlg0[] = { /* 0x81fda70 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs131_g0_s3_lives1_dlg0[] = { /* 0x81fdab0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs131_g0_s4_lives0_dlg0[] = { /* 0x81fdaf0 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs131_g0_s4_lives1_dlg0[] = { /* 0x81fdb20 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs131_g1_s0_lives0_dlg1[] = { /* 0x81fdb50 */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs131_g1_s0_lives0_dlg2[] = { /* 0x81fdb80 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs131_g1_s0_lives1_dlg1[] = { /* 0x81fdba0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs131_g1_s0_lives1_dlg2[] = { /* 0x81fdbd0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs131_g1_s0_lives2_dlg1[] = { /* 0x81fdbf0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs131_g1_s0_lives2_dlg2[] = { /* 0x81fdc20 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs131_g1_s0_lives3_dlg1[] = { /* 0x81fdc40 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs131_g1_s0_lives3_dlg2[] = { /* 0x81fdc70 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs131_g1_s0_lives4_dlg1[] = { /* 0x81fdc90 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs131_g1_s0_lives4_dlg2[] = { /* 0x81fdcc0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs131_g1_s0_lives5_dlg1[] = { /* 0x81fdce0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs131_g1_s0_lives5_dlg2[] = { /* 0x81fdd10 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs131_g1_s0_lives6_dlg1[] = { /* 0x81fdd30 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs131_g1_s0_lives6_dlg2[] = { /* 0x81fdd60 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs131_g1_s0_lives7_dlg1[] = { /* 0x81fdd80 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs131_g1_s0_lives7_dlg2[] = { /* 0x81fddb0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs131_g1_s0_lives8_dlg1[] = { /* 0x81fddd0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs131_g1_s0_lives8_dlg2[] = { /* 0x81fde00 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs131_g0_s1_lives[] = { /* 0x81fde20 */ + /* 0 */ { 0, 4, 0, 0, { 31, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs131_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 31, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs131_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs131_g0_s3_lives[] = { /* 0x81fde50 */ + /* 0 */ { 0, 4, 0, 0, { 31, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs131_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 31, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs131_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs131_g0_s4_lives[] = { /* 0x81fde80 */ + /* 0 */ { 0, 0, 0, 0, { 31, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs131_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 31, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs131_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs131_g1_s0_lives[] = { /* 0x81fdeb0 */ + /* 0 */ { 14, 0, 0, 0, { 26, 25, 0, CPOS_HALFTILE }, { + [1] = s_gs131_g1_s0_lives0_dlg1, + [2] = s_gs131_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 38, 26, 0, CPOS_HALFTILE }, { + [1] = s_gs131_g1_s0_lives1_dlg1, + [2] = s_gs131_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 14, 27, 0, CPOS_HALFTILE }, { + [1] = s_gs131_g1_s0_lives2_dlg1, + [2] = s_gs131_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 49, 26, 0, CPOS_HALFTILE }, { + [1] = s_gs131_g1_s0_lives3_dlg1, + [2] = s_gs131_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 28, 9, 0, CPOS_HALFTILE }, { + [1] = s_gs131_g1_s0_lives4_dlg1, + [2] = s_gs131_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 7, 29, 0, CPOS_HALFTILE }, { + [1] = s_gs131_g1_s0_lives5_dlg1, + [2] = s_gs131_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 54, 29, 0, CPOS_HALFTILE }, { + [1] = s_gs131_g1_s0_lives6_dlg1, + [2] = s_gs131_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 7, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs131_g1_s0_lives7_dlg1, + [2] = s_gs131_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 56, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs131_g1_s0_lives8_dlg1, + [2] = s_gs131_g1_s0_lives8_dlg2, + } }, +}; + +static const struct GroundEventData s_gs131_g0_s0_evts[] = { /* 0x81fdf88 */ + /* 0 */ { 63, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81fdf94 */ + &s_gs131_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs131_g0_sectors[] = { /* 0x81fdf98 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs131_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs131_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs131_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs131_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs131_g1_sectors[] = { /* 0x81fe060 */ + { LPARRAY(s_gs131_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs131_groups[] = { /* 0x81fe088 */ + { LPARRAY(s_gs131_g0_sectors) }, + { LPARRAY(s_gs131_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs131_links[] = { /* 0x81fe0a0 */ + /* link 0 */ { { /*x*/ 51, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 5, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 51, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 5, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 25, /*y*/ 6, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 45, /*y*/ 24, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 11, /*y*/ 24, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 35, /*y*/ 24, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 22, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs131 = { LPARRAY(s_gs131_groups), s_gs131_links }; /* 0x81fe0e8 */ diff --git a/src/data/ground/ground_data_h09p02_station.h b/src/data/ground/ground_data_h09p02_station.h new file mode 100644 index 000000000..f2a5c8a9a --- /dev/null +++ b/src/data/ground/ground_data_h09p02_station.h @@ -0,0 +1,323 @@ + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs132_g0_s0_station_sref_script[] = { /* 0x81fe0fc */ + DEBUGINFO, + SELECT_MAP(132), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(16), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs132_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs132_g0_s0_station_sref_script }; /* 0x81fe378 */ + +static const struct ScriptCommand s_gs132_g0_s1_lives0_dlg0[] = { /* 0x81fe384 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs132_g0_s1_lives1_dlg0[] = { /* 0x81fe3c4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs132_g0_s3_lives0_dlg0[] = { /* 0x81fe404 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs132_g0_s3_lives1_dlg0[] = { /* 0x81fe444 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs132_g0_s4_lives0_dlg0[] = { /* 0x81fe484 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs132_g0_s4_lives1_dlg0[] = { /* 0x81fe4b4 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs132_g1_s0_lives0_dlg1[] = { /* 0x81fe4e4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs132_g1_s0_lives0_dlg2[] = { /* 0x81fe514 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs132_g1_s0_lives1_dlg1[] = { /* 0x81fe534 */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs132_g1_s0_lives1_dlg2[] = { /* 0x81fe564 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs132_g1_s0_lives2_dlg1[] = { /* 0x81fe584 */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs132_g1_s0_lives2_dlg2[] = { /* 0x81fe5b4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs132_g1_s0_lives3_dlg1[] = { /* 0x81fe5d4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs132_g1_s0_lives3_dlg2[] = { /* 0x81fe604 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs132_g1_s0_lives4_dlg1[] = { /* 0x81fe624 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs132_g1_s0_lives4_dlg2[] = { /* 0x81fe654 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs132_g1_s0_lives5_dlg1[] = { /* 0x81fe674 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs132_g1_s0_lives5_dlg2[] = { /* 0x81fe6a4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs132_g1_s0_lives6_dlg1[] = { /* 0x81fe6c4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs132_g1_s0_lives6_dlg2[] = { /* 0x81fe6f4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs132_g1_s0_lives7_dlg1[] = { /* 0x81fe714 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs132_g1_s0_lives7_dlg2[] = { /* 0x81fe744 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs132_g1_s0_lives8_dlg1[] = { /* 0x81fe764 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs132_g1_s0_lives8_dlg2[] = { /* 0x81fe794 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs132_g1_s0_lives9_dlg1[] = { /* 0x81fe7b4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs132_g1_s0_lives9_dlg2[] = { /* 0x81fe7e4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs132_g0_s1_lives[] = { /* 0x81fe804 */ + /* 0 */ { 0, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs132_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs132_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs132_g0_s3_lives[] = { /* 0x81fe834 */ + /* 0 */ { 0, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs132_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs132_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs132_g0_s4_lives[] = { /* 0x81fe864 */ + /* 0 */ { 0, 0, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs132_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs132_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs132_g1_s0_lives[] = { /* 0x81fe894 */ + /* 0 */ { 14, 0, 0, 0, { 30, 10, 0, CPOS_HALFTILE }, { + [1] = s_gs132_g1_s0_lives0_dlg1, + [2] = s_gs132_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 34, 7, 0, CPOS_HALFTILE }, { + [1] = s_gs132_g1_s0_lives1_dlg1, + [2] = s_gs132_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 39, 15, 0, CPOS_HALFTILE }, { + [1] = s_gs132_g1_s0_lives2_dlg1, + [2] = s_gs132_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 35, 19, 0, CPOS_HALFTILE }, { + [1] = s_gs132_g1_s0_lives3_dlg1, + [2] = s_gs132_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 21, 26, 0, CPOS_HALFTILE }, { + [1] = s_gs132_g1_s0_lives4_dlg1, + [2] = s_gs132_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 6, 35, 0, CPOS_HALFTILE }, { + [1] = s_gs132_g1_s0_lives5_dlg1, + [2] = s_gs132_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 52, 35, 0, CPOS_HALFTILE }, { + [1] = s_gs132_g1_s0_lives6_dlg1, + [2] = s_gs132_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 6, 17, 0, CPOS_HALFTILE }, { + [1] = s_gs132_g1_s0_lives7_dlg1, + [2] = s_gs132_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 55, 23, 0, CPOS_HALFTILE }, { + [1] = s_gs132_g1_s0_lives8_dlg1, + [2] = s_gs132_g1_s0_lives8_dlg2, + } }, + /* 9 */ { 23, 0, 0, 0, { 9, 11, 0, CPOS_HALFTILE }, { + [1] = s_gs132_g1_s0_lives9_dlg1, + [2] = s_gs132_g1_s0_lives9_dlg2, + } }, +}; + +static const struct GroundEventData s_gs132_g0_s0_evts[] = { /* 0x81fe984 */ + /* 0 */ { 60, 1, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 60, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 1, 42, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 1, 42, 0, 0, { 59, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81fe9b4 */ + &s_gs132_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs132_g0_sectors[] = { /* 0x81fe9b8 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs132_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs132_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs132_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs132_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs132_g1_sectors[] = { /* 0x81fea80 */ + { LPARRAY(s_gs132_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs132_groups[] = { /* 0x81feaa8 */ + { LPARRAY(s_gs132_g0_sectors) }, + { LPARRAY(s_gs132_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs132_links[] = { /* 0x81feac0 */ + /* link 0 */ { { /*x*/ 6, /*y*/ 8, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 51, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 4, /*y*/ 14, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 49, /*y*/ 32, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 4, /*y*/ 32, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 18, /*y*/ 23, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 32, /*y*/ 18, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 35, /*y*/ 12, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 33, /*y*/ 5, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 9 */ { { /*x*/ 27, /*y*/ 9, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs132 = { LPARRAY(s_gs132_groups), s_gs132_links }; /* 0x81feb10 */ diff --git a/src/data/ground/ground_data_h10p01_station.h b/src/data/ground/ground_data_h10p01_station.h new file mode 100644 index 000000000..4452d2b25 --- /dev/null +++ b/src/data/ground/ground_data_h10p01_station.h @@ -0,0 +1,218 @@ + + + + + + + + + + + + +static const struct ScriptCommand s_gs133_g0_s0_station_sref_script[] = { /* 0x81feb24 */ + DEBUGINFO, + SELECT_MAP(133), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(106), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs133_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs133_g0_s0_station_sref_script }; /* 0x81feda0 */ + +static const struct ScriptCommand s_gs133_g0_s1_lives0_dlg0[] = { /* 0x81fedac */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs133_g0_s1_lives1_dlg0[] = { /* 0x81fedec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs133_g0_s3_lives0_dlg0[] = { /* 0x81fee2c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs133_g0_s3_lives1_dlg0[] = { /* 0x81fee6c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs133_g0_s4_lives0_dlg0[] = { /* 0x81feeac */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs133_g0_s4_lives1_dlg0[] = { /* 0x81feedc */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs133_g1_s0_lives0_dlg1[] = { /* 0x81fef0c */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs133_g1_s0_lives0_dlg2[] = { /* 0x81fef3c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs133_g1_s0_lives1_dlg1[] = { /* 0x81fef5c */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs133_g1_s0_lives1_dlg2[] = { /* 0x81fef8c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs133_g1_s0_lives2_dlg1[] = { /* 0x81fefac */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs133_g1_s0_lives2_dlg2[] = { /* 0x81fefdc */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs133_g1_s0_lives3_dlg1[] = { /* 0x81feffc */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs133_g1_s0_lives3_dlg2[] = { /* 0x81ff02c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs133_g0_s1_lives[] = { /* 0x81ff04c */ + /* 0 */ { 0, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs133_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs133_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs133_g0_s3_lives[] = { /* 0x81ff07c */ + /* 0 */ { 0, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs133_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs133_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs133_g0_s4_lives[] = { /* 0x81ff0ac */ + /* 0 */ { 0, 0, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs133_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs133_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs133_g1_s0_lives[] = { /* 0x81ff0dc */ + /* 0 */ { 14, 0, 0, 0, { 30, 20, 0, CPOS_HALFTILE }, { + [1] = s_gs133_g1_s0_lives0_dlg1, + [2] = s_gs133_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 12, 26, 0, CPOS_HALFTILE }, { + [1] = s_gs133_g1_s0_lives1_dlg1, + [2] = s_gs133_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 48, 25, 0, CPOS_HALFTILE }, { + [1] = s_gs133_g1_s0_lives2_dlg1, + [2] = s_gs133_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 30, 10, 0, CPOS_HALFTILE }, { + [1] = s_gs133_g1_s0_lives3_dlg1, + [2] = s_gs133_g1_s0_lives3_dlg2, + } }, +}; + +static const struct GroundEventData s_gs133_g0_s0_evts[] = { /* 0x81ff13c */ + /* 0 */ { 60, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81ff148 */ + &s_gs133_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs133_g0_sectors[] = { /* 0x81ff14c */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs133_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs133_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs133_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs133_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs133_g1_sectors[] = { /* 0x81ff214 */ + { LPARRAY(s_gs133_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs133_groups[] = { /* 0x81ff23c */ + { LPARRAY(s_gs133_g0_sectors) }, + { LPARRAY(s_gs133_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs133_links[] = { /* 0x81ff254 */ + /* link 0 */ { { /*x*/ 27, /*y*/ 8, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 45, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 9, /*y*/ 23, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 27, /*y*/ 18, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs133 = { LPARRAY(s_gs133_groups), s_gs133_links }; /* 0x81ff274 */ diff --git a/src/data/ground/ground_data_h10p02_station.h b/src/data/ground/ground_data_h10p02_station.h new file mode 100644 index 000000000..2da5c34d4 --- /dev/null +++ b/src/data/ground/ground_data_h10p02_station.h @@ -0,0 +1,231 @@ + + + + + + + + + + + + +static const struct ScriptCommand s_gs134_g0_s0_station_sref_script[] = { /* 0x81ff288 */ + DEBUGINFO, + SELECT_MAP(134), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(16), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs134_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs134_g0_s0_station_sref_script }; /* 0x81ff504 */ + +static const struct ScriptCommand s_gs134_g0_s1_lives0_dlg0[] = { /* 0x81ff510 */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs134_g0_s1_lives1_dlg0[] = { /* 0x81ff560 */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs134_g0_s3_lives0_dlg0[] = { /* 0x81ff5b0 */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs134_g0_s3_lives1_dlg0[] = { /* 0x81ff600 */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs134_g0_s4_lives0_dlg0[] = { /* 0x81ff650 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + { 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs134_g0_s4_lives1_dlg0[] = { /* 0x81ff690 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + { 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs134_g1_s0_lives0_dlg1[] = { /* 0x81ff6d0 */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL }, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs134_g1_s0_lives0_dlg2[] = { /* 0x81ff710 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs134_g1_s0_lives1_dlg1[] = { /* 0x81ff730 */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL }, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs134_g1_s0_lives1_dlg2[] = { /* 0x81ff770 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs134_g1_s0_lives2_dlg1[] = { /* 0x81ff790 */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL }, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs134_g1_s0_lives2_dlg2[] = { /* 0x81ff7d0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs134_g1_s0_lives3_dlg1[] = { /* 0x81ff7f0 */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00004000, 0x00000000, NULL }, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs134_g1_s0_lives3_dlg2[] = { /* 0x81ff830 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs134_g0_s1_lives[] = { /* 0x81ff850 */ + /* 0 */ { 0, 4, 0, 0, { 29, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs134_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs134_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs134_g0_s3_lives[] = { /* 0x81ff880 */ + /* 0 */ { 0, 4, 0, 0, { 29, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs134_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs134_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs134_g0_s4_lives[] = { /* 0x81ff8b0 */ + /* 0 */ { 0, 0, 0, 0, { 29, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs134_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs134_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs134_g1_s0_lives[] = { /* 0x81ff8e0 */ + /* 0 */ { 14, 0, 0, 0, { 14, 12, 0, CPOS_HALFTILE }, { + [1] = s_gs134_g1_s0_lives0_dlg1, + [2] = s_gs134_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 42, 13, 0, CPOS_HALFTILE }, { + [1] = s_gs134_g1_s0_lives1_dlg1, + [2] = s_gs134_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 6, 21, 0, CPOS_HALFTILE }, { + [1] = s_gs134_g1_s0_lives2_dlg1, + [2] = s_gs134_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 51, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs134_g1_s0_lives3_dlg1, + [2] = s_gs134_g1_s0_lives3_dlg2, + } }, +}; + +static const struct GroundEventData s_gs134_g0_s0_evts[] = { /* 0x81ff940 */ + /* 0 */ { 57, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 57, 1, 0, 0, { 1, 38, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 1, 39, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 1, 39, 0, 0, { 56, 1, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81ff970 */ + &s_gs134_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs134_g0_sectors[] = { /* 0x81ff974 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs134_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs134_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs134_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs134_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs134_g1_sectors[] = { /* 0x81ffa3c */ + { LPARRAY(s_gs134_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs134_groups[] = { /* 0x81ffa64 */ + { LPARRAY(s_gs134_g0_sectors) }, + { LPARRAY(s_gs134_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs134_links[] = { /* 0x81ffa7c */ + /* link 0 */ { { /*x*/ 48, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 3, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 39, /*y*/ 10, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 11, /*y*/ 10, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs134 = { LPARRAY(s_gs134_groups), s_gs134_links }; /* 0x81ffa9c */ diff --git a/src/data/ground/ground_data_h11p01_station.h b/src/data/ground/ground_data_h11p01_station.h new file mode 100644 index 000000000..e553bd483 --- /dev/null +++ b/src/data/ground/ground_data_h11p01_station.h @@ -0,0 +1,272 @@ + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs135_g0_s0_station_sref_script[] = { /* 0x81ffab0 */ + DEBUGINFO, + SELECT_MAP(135), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(2), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs135_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs135_g0_s0_station_sref_script }; /* 0x81ffd2c */ + +static const struct ScriptCommand s_gs135_g0_s1_lives0_dlg0[] = { /* 0x81ffd38 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs135_g0_s1_lives1_dlg0[] = { /* 0x81ffd78 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs135_g0_s3_lives0_dlg0[] = { /* 0x81ffdb8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs135_g0_s3_lives1_dlg0[] = { /* 0x81ffdf8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs135_g0_s4_lives0_dlg0[] = { /* 0x81ffe38 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs135_g0_s4_lives1_dlg0[] = { /* 0x81ffe68 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs135_g1_s0_lives0_dlg1[] = { /* 0x81ffe98 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs135_g1_s0_lives0_dlg2[] = { /* 0x81ffec8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs135_g1_s0_lives1_dlg1[] = { /* 0x81ffee8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs135_g1_s0_lives1_dlg2[] = { /* 0x81fff18 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs135_g1_s0_lives2_dlg1[] = { /* 0x81fff38 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs135_g1_s0_lives2_dlg2[] = { /* 0x81fff68 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs135_g1_s0_lives3_dlg1[] = { /* 0x81fff88 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs135_g1_s0_lives3_dlg2[] = { /* 0x81fffb8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs135_g1_s0_lives4_dlg1[] = { /* 0x81fffd8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs135_g1_s0_lives4_dlg2[] = { /* 0x8200008 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs135_g1_s0_lives5_dlg1[] = { /* 0x8200028 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs135_g1_s0_lives5_dlg2[] = { /* 0x8200058 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs135_g1_s0_lives6_dlg1[] = { /* 0x8200078 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs135_g1_s0_lives6_dlg2[] = { /* 0x82000a8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs135_g0_s1_lives[] = { /* 0x82000c8 */ + /* 0 */ { 0, 4, 0, 0, { 8, 6, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs135_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 3, 6, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs135_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs135_g0_s3_lives[] = { /* 0x82000f8 */ + /* 0 */ { 0, 4, 0, 0, { 8, 6, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs135_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 3, 6, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs135_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs135_g0_s4_lives[] = { /* 0x8200128 */ + /* 0 */ { 0, 0, 0, 0, { 8, 6, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs135_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 3, 6, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs135_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs135_g1_s0_lives[] = { /* 0x8200158 */ + /* 0 */ { 14, 0, 0, 0, { 15, 20, 0, CPOS_HALFTILE }, { + [1] = s_gs135_g1_s0_lives0_dlg1, + [2] = s_gs135_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 24, 25, 0, CPOS_HALFTILE }, { + [1] = s_gs135_g1_s0_lives1_dlg1, + [2] = s_gs135_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 16, 34, 0, CPOS_HALFTILE }, { + [1] = s_gs135_g1_s0_lives2_dlg1, + [2] = s_gs135_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 34, 27, 0, CPOS_HALFTILE }, { + [1] = s_gs135_g1_s0_lives3_dlg1, + [2] = s_gs135_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 50, 19, 0, CPOS_HALFTILE }, { + [1] = s_gs135_g1_s0_lives4_dlg1, + [2] = s_gs135_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 55, 4, 0, CPOS_HALFTILE }, { + [1] = s_gs135_g1_s0_lives5_dlg1, + [2] = s_gs135_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 61, 33, 0, CPOS_HALFTILE }, { + [1] = s_gs135_g1_s0_lives6_dlg1, + [2] = s_gs135_g1_s0_lives6_dlg2, + } }, +}; + +static const struct GroundEventData s_gs135_g0_s0_evts[] = { /* 0x8200200 */ + /* 0 */ { 66, 1, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 66, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 1, 42, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 1, 42, 0, 0, { 65, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8200230 */ + &s_gs135_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs135_g0_sectors[] = { /* 0x8200234 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs135_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs135_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs135_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs135_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs135_g1_sectors[] = { /* 0x82002fc */ + { LPARRAY(s_gs135_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs135_groups[] = { /* 0x8200324 */ + { LPARRAY(s_gs135_g0_sectors) }, + { LPARRAY(s_gs135_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs135_links[] = { /* 0x820033c */ + /* link 0 */ { { /*x*/ 58, /*y*/ 31, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 52, /*y*/ 2, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 47, /*y*/ 17, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 31, /*y*/ 24, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 13, /*y*/ 32, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 21, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 12, /*y*/ 17, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs135 = { LPARRAY(s_gs135_groups), s_gs135_links }; /* 0x8200374 */ diff --git a/src/data/ground/ground_data_h12p01_station.h b/src/data/ground/ground_data_h12p01_station.h new file mode 100644 index 000000000..ea81d90c7 --- /dev/null +++ b/src/data/ground/ground_data_h12p01_station.h @@ -0,0 +1,255 @@ + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs136_g0_s0_station_sref_script[] = { /* 0x8200388 */ + DEBUGINFO, + SELECT_MAP(136), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(2), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs136_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs136_g0_s0_station_sref_script }; /* 0x8200604 */ + +static const struct ScriptCommand s_gs136_g0_s1_lives0_dlg0[] = { /* 0x8200610 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs136_g0_s1_lives1_dlg0[] = { /* 0x8200650 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs136_g0_s3_lives0_dlg0[] = { /* 0x8200690 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs136_g0_s3_lives1_dlg0[] = { /* 0x82006d0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs136_g0_s4_lives0_dlg0[] = { /* 0x8200710 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs136_g0_s4_lives1_dlg0[] = { /* 0x8200740 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs136_g1_s0_lives0_dlg1[] = { /* 0x8200770 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs136_g1_s0_lives0_dlg2[] = { /* 0x82007a0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs136_g1_s0_lives1_dlg1[] = { /* 0x82007c0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs136_g1_s0_lives1_dlg2[] = { /* 0x82007f0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs136_g1_s0_lives2_dlg1[] = { /* 0x8200810 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs136_g1_s0_lives2_dlg2[] = { /* 0x8200840 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs136_g1_s0_lives3_dlg1[] = { /* 0x8200860 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs136_g1_s0_lives3_dlg2[] = { /* 0x8200890 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs136_g1_s0_lives4_dlg1[] = { /* 0x82008b0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs136_g1_s0_lives4_dlg2[] = { /* 0x82008e0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs136_g1_s0_lives5_dlg1[] = { /* 0x8200900 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs136_g1_s0_lives5_dlg2[] = { /* 0x8200930 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs136_g0_s1_lives[] = { /* 0x8200950 */ + /* 0 */ { 0, 4, 0, 0, { 38, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs136_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 38, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs136_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs136_g0_s3_lives[] = { /* 0x8200980 */ + /* 0 */ { 0, 4, 0, 0, { 38, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs136_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 38, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs136_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs136_g0_s4_lives[] = { /* 0x82009b0 */ + /* 0 */ { 0, 0, 0, 0, { 38, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs136_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 38, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs136_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs136_g1_s0_lives[] = { /* 0x82009e0 */ + /* 0 */ { 14, 0, 0, 0, { 34, 12, 0, CPOS_HALFTILE }, { + [1] = s_gs136_g1_s0_lives0_dlg1, + [2] = s_gs136_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 7, 8, 0, CPOS_HALFTILE }, { + [1] = s_gs136_g1_s0_lives1_dlg1, + [2] = s_gs136_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 51, 9, 0, CPOS_HALFTILE }, { + [1] = s_gs136_g1_s0_lives2_dlg1, + [2] = s_gs136_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 43, 18, 0, CPOS_HALFTILE }, { + [1] = s_gs136_g1_s0_lives3_dlg1, + [2] = s_gs136_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 14, 19, 0, CPOS_HALFTILE }, { + [1] = s_gs136_g1_s0_lives4_dlg1, + [2] = s_gs136_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 19, 7, 0, CPOS_HALFTILE }, { + [1] = s_gs136_g1_s0_lives5_dlg1, + [2] = s_gs136_g1_s0_lives5_dlg2, + } }, +}; + +static const struct GroundEventData s_gs136_g0_s0_evts[] = { /* 0x8200a70 */ + /* 0 */ { 57, 1, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 57, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 1, 42, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 1, 42, 0, 0, { 56, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8200aa0 */ + &s_gs136_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs136_g0_sectors[] = { /* 0x8200aa4 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs136_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs136_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs136_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs136_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs136_g1_sectors[] = { /* 0x8200b6c */ + { LPARRAY(s_gs136_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs136_groups[] = { /* 0x8200b94 */ + { LPARRAY(s_gs136_g0_sectors) }, + { LPARRAY(s_gs136_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs136_links[] = { /* 0x8200bac */ + /* link 0 */ { { /*x*/ 16, /*y*/ 5, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 40, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 11, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 47, /*y*/ 7, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 4, /*y*/ 6, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 31, /*y*/ 9, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs136 = { LPARRAY(s_gs136_groups), s_gs136_links }; /* 0x8200bdc */ diff --git a/src/data/ground/ground_data_h13p01_station.h b/src/data/ground/ground_data_h13p01_station.h new file mode 100644 index 000000000..6b9d87bd2 --- /dev/null +++ b/src/data/ground/ground_data_h13p01_station.h @@ -0,0 +1,340 @@ + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs137_g0_s0_station_sref_script[] = { /* 0x8200bf0 */ + DEBUGINFO, + SELECT_MAP(137), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(3), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs137_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs137_g0_s0_station_sref_script }; /* 0x8200e6c */ + +static const struct ScriptCommand s_gs137_g0_s1_lives0_dlg0[] = { /* 0x8200e78 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs137_g0_s1_lives1_dlg0[] = { /* 0x8200eb8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs137_g0_s3_lives0_dlg0[] = { /* 0x8200ef8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs137_g0_s3_lives1_dlg0[] = { /* 0x8200f38 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs137_g0_s4_lives0_dlg0[] = { /* 0x8200f78 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs137_g0_s4_lives1_dlg0[] = { /* 0x8200fa8 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs137_g1_s0_lives0_dlg1[] = { /* 0x8200fd8 */ + DEBUGINFO, + { 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs137_g1_s0_lives0_dlg2[] = { /* 0x8201008 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs137_g1_s0_lives1_dlg1[] = { /* 0x8201028 */ + DEBUGINFO, + { 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs137_g1_s0_lives1_dlg2[] = { /* 0x8201058 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs137_g1_s0_lives2_dlg1[] = { /* 0x8201078 */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs137_g1_s0_lives2_dlg2[] = { /* 0x82010a8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs137_g1_s0_lives3_dlg1[] = { /* 0x82010c8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs137_g1_s0_lives3_dlg2[] = { /* 0x82010f8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs137_g1_s0_lives4_dlg1[] = { /* 0x8201118 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs137_g1_s0_lives4_dlg2[] = { /* 0x8201148 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs137_g1_s0_lives5_dlg1[] = { /* 0x8201168 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs137_g1_s0_lives5_dlg2[] = { /* 0x8201198 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs137_g1_s0_lives6_dlg1[] = { /* 0x82011b8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs137_g1_s0_lives6_dlg2[] = { /* 0x82011e8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs137_g1_s0_lives7_dlg1[] = { /* 0x8201208 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs137_g1_s0_lives7_dlg2[] = { /* 0x8201238 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs137_g1_s0_lives8_dlg1[] = { /* 0x8201258 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs137_g1_s0_lives8_dlg2[] = { /* 0x8201288 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs137_g1_s0_lives9_dlg1[] = { /* 0x82012a8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs137_g1_s0_lives9_dlg2[] = { /* 0x82012d8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs137_g1_s0_lives10_dlg1[] = { /* 0x82012f8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs137_g1_s0_lives10_dlg2[] = { /* 0x8201328 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs137_g0_s1_lives[] = { /* 0x8201348 */ + /* 0 */ { 0, 4, 0, 0, { 32, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs137_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 32, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs137_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs137_g0_s3_lives[] = { /* 0x8201378 */ + /* 0 */ { 0, 4, 0, 0, { 32, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs137_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 32, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs137_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs137_g0_s4_lives[] = { /* 0x82013a8 */ + /* 0 */ { 0, 0, 0, 0, { 32, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs137_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 32, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs137_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs137_g1_s0_lives[] = { /* 0x82013d8 */ + /* 0 */ { 14, 0, 0, 0, { 31, 14, 0, CPOS_HALFTILE }, { + [1] = s_gs137_g1_s0_lives0_dlg1, + [2] = s_gs137_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 11, 21, 0, CPOS_HALFTILE }, { + [1] = s_gs137_g1_s0_lives1_dlg1, + [2] = s_gs137_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 52, 20, 0, CPOS_HALFTILE }, { + [1] = s_gs137_g1_s0_lives2_dlg1, + [2] = s_gs137_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 32, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs137_g1_s0_lives3_dlg1, + [2] = s_gs137_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 25, 30, 0, CPOS_HALFTILE }, { + [1] = s_gs137_g1_s0_lives4_dlg1, + [2] = s_gs137_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [1] = s_gs137_g1_s0_lives5_dlg1, + [2] = s_gs137_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 32, 26, 0, CPOS_HALFTILE }, { + [1] = s_gs137_g1_s0_lives6_dlg1, + [2] = s_gs137_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 25, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs137_g1_s0_lives7_dlg1, + [2] = s_gs137_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 39, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs137_g1_s0_lives8_dlg1, + [2] = s_gs137_g1_s0_lives8_dlg2, + } }, + /* 9 */ { 23, 0, 0, 0, { 18, 26, 0, CPOS_HALFTILE }, { + [1] = s_gs137_g1_s0_lives9_dlg1, + [2] = s_gs137_g1_s0_lives9_dlg2, + } }, + /* 10 */ { 24, 0, 0, 0, { 45, 27, 0, CPOS_HALFTILE }, { + [1] = s_gs137_g1_s0_lives10_dlg1, + [2] = s_gs137_g1_s0_lives10_dlg2, + } }, +}; + +static const struct GroundEventData s_gs137_g0_s0_evts[] = { /* 0x82014e0 */ + /* 0 */ { 63, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 63, 1, 0, 0, { 0, 44, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 3, 45, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 3, 45, 0, 0, { 60, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8201510 */ + &s_gs137_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs137_g0_sectors[] = { /* 0x8201514 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs137_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs137_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs137_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs137_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs137_g1_sectors[] = { /* 0x82015dc */ + { LPARRAY(s_gs137_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs137_groups[] = { /* 0x8201604 */ + { LPARRAY(s_gs137_g0_sectors) }, + { LPARRAY(s_gs137_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs137_links[] = { /* 0x820161c */ + /* link 0 */ { { /*x*/ 43, /*y*/ 23, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 15, /*y*/ 23, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 36, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 22, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 29, /*y*/ 23, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 36, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 22, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 29, /*y*/ 29, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 49, /*y*/ 18, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 9 */ { { /*x*/ 8, /*y*/ 19, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 10 */ { { /*x*/ 29, /*y*/ 12, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs137 = { LPARRAY(s_gs137_groups), s_gs137_links }; /* 0x8201674 */ diff --git a/src/data/ground/ground_data_h13p02_station.h b/src/data/ground/ground_data_h13p02_station.h new file mode 100644 index 000000000..b45da8199 --- /dev/null +++ b/src/data/ground/ground_data_h13p02_station.h @@ -0,0 +1,170 @@ + + + + + + + + + +static const struct ScriptCommand s_gs138_g0_s0_station_sref_script[] = { /* 0x8201688 */ + DEBUGINFO, + SELECT_MAP(138), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(35), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs138_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs138_g0_s0_station_sref_script }; /* 0x8201904 */ + +static const struct ScriptCommand s_gs138_g0_s1_lives0_dlg0[] = { /* 0x8201910 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs138_g0_s1_lives1_dlg0[] = { /* 0x8201950 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs138_g0_s3_lives0_dlg0[] = { /* 0x8201990 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs138_g0_s3_lives1_dlg0[] = { /* 0x82019d0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs138_g0_s4_lives0_dlg0[] = { /* 0x8201a10 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs138_g0_s4_lives1_dlg0[] = { /* 0x8201a40 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs138_g1_s0_lives0_dlg1[] = { /* 0x8201a70 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs138_g1_s0_lives0_dlg2[] = { /* 0x8201aa0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs138_g0_s1_lives[] = { /* 0x8201ac0 */ + /* 0 */ { 0, 4, 0, 0, { 22, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs138_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 22, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs138_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs138_g0_s3_lives[] = { /* 0x8201af0 */ + /* 0 */ { 0, 4, 0, 0, { 22, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs138_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 22, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs138_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs138_g0_s4_lives[] = { /* 0x8201b20 */ + /* 0 */ { 0, 0, 0, 0, { 22, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs138_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 22, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs138_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs138_g1_s0_lives[] = { /* 0x8201b50 */ + /* 0 */ { 14, 0, 0, 0, { 22, 10, 0, CPOS_HALFTILE }, { + [1] = s_gs138_g1_s0_lives0_dlg1, + [2] = s_gs138_g1_s0_lives0_dlg2, + } }, +}; + +static const struct GroundEventData s_gs138_g0_s0_evts[] = { /* 0x8201b68 */ + /* 0 */ { 45, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 45, 1, 0, 0, { 0, 38, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 3, 39, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 3, 39, 0, 0, { 42, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8201b98 */ + &s_gs138_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs138_g0_sectors[] = { /* 0x8201b9c */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs138_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs138_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs138_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs138_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs138_g1_sectors[] = { /* 0x8201c64 */ + { LPARRAY(s_gs138_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs138_groups[] = { /* 0x8201c8c */ + { LPARRAY(s_gs138_g0_sectors) }, + { LPARRAY(s_gs138_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs138_links[] = { /* 0x8201ca4 */ + /* link 0 */ { { /*x*/ 19, /*y*/ 9, /*flags*/ 0, 0 }, /*w*/ 7, /*h*/ 3, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs138 = { LPARRAY(s_gs138_groups), s_gs138_links }; /* 0x8201cac */ diff --git a/src/data/ground/ground_data_h13p03_station.h b/src/data/ground/ground_data_h13p03_station.h new file mode 100644 index 000000000..5ca3d0093 --- /dev/null +++ b/src/data/ground/ground_data_h13p03_station.h @@ -0,0 +1,221 @@ + + + + + + + + + + + + +static const struct ScriptCommand s_gs139_g0_s0_station_sref_script[] = { /* 0x8201cc0 */ + DEBUGINFO, + SELECT_MAP(139), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(3), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs139_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs139_g0_s0_station_sref_script }; /* 0x8201f3c */ + +static const struct ScriptCommand s_gs139_g0_s1_lives0_dlg0[] = { /* 0x8201f48 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs139_g0_s1_lives1_dlg0[] = { /* 0x8201f88 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs139_g0_s3_lives0_dlg0[] = { /* 0x8201fc8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs139_g0_s3_lives1_dlg0[] = { /* 0x8202008 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs139_g0_s4_lives0_dlg0[] = { /* 0x8202048 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs139_g0_s4_lives1_dlg0[] = { /* 0x8202078 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs139_g1_s0_lives0_dlg1[] = { /* 0x82020a8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs139_g1_s0_lives0_dlg2[] = { /* 0x82020d8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs139_g1_s0_lives1_dlg1[] = { /* 0x82020f8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs139_g1_s0_lives1_dlg2[] = { /* 0x8202128 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs139_g1_s0_lives2_dlg1[] = { /* 0x8202148 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs139_g1_s0_lives2_dlg2[] = { /* 0x8202178 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs139_g1_s0_lives3_dlg1[] = { /* 0x8202198 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs139_g1_s0_lives3_dlg2[] = { /* 0x82021c8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs139_g0_s1_lives[] = { /* 0x82021e8 */ + /* 0 */ { 0, 4, 0, 0, { 29, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs139_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs139_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs139_g0_s3_lives[] = { /* 0x8202218 */ + /* 0 */ { 0, 4, 0, 0, { 29, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs139_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs139_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs139_g0_s4_lives[] = { /* 0x8202248 */ + /* 0 */ { 0, 0, 0, 0, { 29, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs139_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs139_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs139_g1_s0_lives[] = { /* 0x8202278 */ + /* 0 */ { 14, 0, 0, 0, { 29, 27, 0, CPOS_HALFTILE }, { + [1] = s_gs139_g1_s0_lives0_dlg1, + [2] = s_gs139_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 19, 26, 0, CPOS_HALFTILE }, { + [1] = s_gs139_g1_s0_lives1_dlg1, + [2] = s_gs139_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 39, 26, 0, CPOS_HALFTILE }, { + [1] = s_gs139_g1_s0_lives2_dlg1, + [2] = s_gs139_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 29, 18, 0, CPOS_HALFTILE }, { + [1] = s_gs139_g1_s0_lives3_dlg1, + [2] = s_gs139_g1_s0_lives3_dlg2, + } }, +}; + +static const struct GroundEventData s_gs139_g0_s0_evts[] = { /* 0x82022d8 */ + /* 0 */ { 58, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 58, 1, 0, 0, { 0, 38, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 3, 40, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 3, 40, 0, 0, { 54, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8202308 */ + &s_gs139_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs139_g0_sectors[] = { /* 0x820230c */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs139_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs139_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs139_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs139_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs139_g1_sectors[] = { /* 0x82023d4 */ + { LPARRAY(s_gs139_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs139_groups[] = { /* 0x82023fc */ + { LPARRAY(s_gs139_g0_sectors) }, + { LPARRAY(s_gs139_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs139_links[] = { /* 0x8202414 */ + /* link 0 */ { { /*x*/ 26, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 36, /*y*/ 24, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 16, /*y*/ 24, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 26, /*y*/ 24, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs139 = { LPARRAY(s_gs139_groups), s_gs139_links }; /* 0x8202434 */ diff --git a/src/data/ground/ground_data_h13p04_station.h b/src/data/ground/ground_data_h13p04_station.h new file mode 100644 index 000000000..f3fefb69f --- /dev/null +++ b/src/data/ground/ground_data_h13p04_station.h @@ -0,0 +1,219 @@ + + + + + + + + + + + + +static const struct ScriptCommand s_gs140_g0_s0_station_sref_script[] = { /* 0x8202448 */ + DEBUGINFO, + SELECT_MAP(140), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(3), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs140_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs140_g0_s0_station_sref_script }; /* 0x82026c4 */ + +static const struct ScriptCommand s_gs140_g0_s1_lives0_dlg0[] = { /* 0x82026d0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs140_g0_s1_lives1_dlg0[] = { /* 0x8202710 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs140_g0_s3_lives0_dlg0[] = { /* 0x8202750 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs140_g0_s3_lives1_dlg0[] = { /* 0x8202790 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs140_g0_s4_lives0_dlg0[] = { /* 0x82027d0 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs140_g0_s4_lives1_dlg0[] = { /* 0x8202800 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs140_g1_s0_lives0_dlg1[] = { /* 0x8202830 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs140_g1_s0_lives0_dlg2[] = { /* 0x8202860 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs140_g1_s0_lives1_dlg1[] = { /* 0x8202880 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs140_g1_s0_lives1_dlg2[] = { /* 0x82028b0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs140_g1_s0_lives2_dlg1[] = { /* 0x82028d0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs140_g1_s0_lives2_dlg2[] = { /* 0x8202900 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs140_g1_s0_lives3_dlg1[] = { /* 0x8202920 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs140_g1_s0_lives3_dlg2[] = { /* 0x8202950 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs140_g0_s1_lives[] = { /* 0x8202970 */ + /* 0 */ { 0, 4, 0, 0, { 31, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs140_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 31, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs140_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs140_g0_s3_lives[] = { /* 0x82029a0 */ + /* 0 */ { 0, 4, 0, 0, { 31, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs140_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 31, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs140_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs140_g0_s4_lives[] = { /* 0x82029d0 */ + /* 0 */ { 0, 0, 0, 0, { 31, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs140_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 31, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs140_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs140_g1_s0_lives[] = { /* 0x8202a00 */ + /* 0 */ { 14, 0, 0, 0, { 27, 11, 0, CPOS_HALFTILE }, { + [1] = s_gs140_g1_s0_lives0_dlg1, + [2] = s_gs140_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 10, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs140_g1_s0_lives1_dlg1, + [2] = s_gs140_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 53, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs140_g1_s0_lives2_dlg1, + [2] = s_gs140_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 35, 11, 0, CPOS_HALFTILE }, { + [1] = s_gs140_g1_s0_lives3_dlg1, + [2] = s_gs140_g1_s0_lives3_dlg2, + } }, +}; + +static const struct GroundEventData s_gs140_g0_s0_evts[] = { /* 0x8202a60 */ + /* 0 */ { 63, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 63, 1, 0, 0, { 0, 44, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8202a78 */ + &s_gs140_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs140_g0_sectors[] = { /* 0x8202a7c */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs140_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs140_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs140_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs140_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs140_g1_sectors[] = { /* 0x8202b44 */ + { LPARRAY(s_gs140_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs140_groups[] = { /* 0x8202b6c */ + { LPARRAY(s_gs140_g0_sectors) }, + { LPARRAY(s_gs140_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs140_links[] = { /* 0x8202b84 */ + /* link 0 */ { { /*x*/ 32, /*y*/ 8, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 50, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 7, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 25, /*y*/ 8, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs140 = { LPARRAY(s_gs140_groups), s_gs140_links }; /* 0x8202ba4 */ diff --git a/src/data/ground/ground_data_h14p01_station.h b/src/data/ground/ground_data_h14p01_station.h new file mode 100644 index 000000000..5de68fc10 --- /dev/null +++ b/src/data/ground/ground_data_h14p01_station.h @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs141_g0_s0_station_sref_script[] = { /* 0x8202bb8 */ + DEBUGINFO, + SELECT_MAP(141), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(116), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs141_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs141_g0_s0_station_sref_script }; /* 0x8202e34 */ + +static const struct ScriptCommand s_gs141_g0_s1_lives0_dlg0[] = { /* 0x8202e40 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs141_g0_s1_lives1_dlg0[] = { /* 0x8202e80 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs141_g0_s3_lives0_dlg0[] = { /* 0x8202ec0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs141_g0_s3_lives1_dlg0[] = { /* 0x8202f00 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs141_g0_s4_lives0_dlg0[] = { /* 0x8202f40 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs141_g0_s4_lives1_dlg0[] = { /* 0x8202f70 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives0_dlg1[] = { /* 0x8202fa0 */ + DEBUGINFO, + { 0x51, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives0_dlg2[] = { /* 0x8202fd0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives1_dlg1[] = { /* 0x8202ff0 */ + DEBUGINFO, + { 0x51, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives1_dlg2[] = { /* 0x8203020 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives2_dlg1[] = { /* 0x8203040 */ + DEBUGINFO, + { 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives2_dlg2[] = { /* 0x8203070 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives3_dlg1[] = { /* 0x8203090 */ + DEBUGINFO, + { 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives3_dlg2[] = { /* 0x82030c0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives4_dlg1[] = { /* 0x82030e0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives4_dlg2[] = { /* 0x8203110 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives5_dlg1[] = { /* 0x8203130 */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives5_dlg2[] = { /* 0x8203160 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives6_dlg1[] = { /* 0x8203180 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives6_dlg2[] = { /* 0x82031b0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives7_dlg1[] = { /* 0x82031d0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives7_dlg2[] = { /* 0x8203200 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives8_dlg1[] = { /* 0x8203220 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives8_dlg2[] = { /* 0x8203250 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives9_dlg1[] = { /* 0x8203270 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives9_dlg2[] = { /* 0x82032a0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives10_dlg1[] = { /* 0x82032c0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives10_dlg2[] = { /* 0x82032f0 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives11_dlg1[] = { /* 0x8203310 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives11_dlg2[] = { /* 0x8203340 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives12_dlg1[] = { /* 0x8203360 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs141_g1_s0_lives12_dlg2[] = { /* 0x8203390 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs141_g0_s1_lives[] = { /* 0x82033b0 */ + /* 0 */ { 0, 4, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs141_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs141_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs141_g0_s3_lives[] = { /* 0x82033e0 */ + /* 0 */ { 0, 4, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs141_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs141_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs141_g0_s4_lives[] = { /* 0x8203410 */ + /* 0 */ { 0, 0, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs141_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs141_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs141_g1_s0_lives[] = { /* 0x8203440 */ + /* 0 */ { 14, 0, 0, 0, { 29, 28, 0, CPOS_HALFTILE }, { + [1] = s_gs141_g1_s0_lives0_dlg1, + [2] = s_gs141_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 23, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs141_g1_s0_lives1_dlg1, + [2] = s_gs141_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 35, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs141_g1_s0_lives2_dlg1, + [2] = s_gs141_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 23, 25, 0, CPOS_HALFTILE }, { + [1] = s_gs141_g1_s0_lives3_dlg1, + [2] = s_gs141_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 35, 25, 0, CPOS_HALFTILE }, { + [1] = s_gs141_g1_s0_lives4_dlg1, + [2] = s_gs141_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 29, 21, 0, CPOS_HALFTILE }, { + [1] = s_gs141_g1_s0_lives5_dlg1, + [2] = s_gs141_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 13, 30, 0, CPOS_HALFTILE }, { + [1] = s_gs141_g1_s0_lives6_dlg1, + [2] = s_gs141_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 43, 30, 0, CPOS_HALFTILE }, { + [1] = s_gs141_g1_s0_lives7_dlg1, + [2] = s_gs141_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 9, 23, 0, CPOS_HALFTILE }, { + [1] = s_gs141_g1_s0_lives8_dlg1, + [2] = s_gs141_g1_s0_lives8_dlg2, + } }, + /* 9 */ { 23, 0, 0, 0, { 47, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs141_g1_s0_lives9_dlg1, + [2] = s_gs141_g1_s0_lives9_dlg2, + } }, + /* 10 */ { 24, 0, 0, 0, { 7, 17, 0, CPOS_HALFTILE }, { + [1] = s_gs141_g1_s0_lives10_dlg1, + [2] = s_gs141_g1_s0_lives10_dlg2, + } }, + /* 11 */ { 25, 0, 0, 0, { 51, 18, 0, CPOS_HALFTILE }, { + [1] = s_gs141_g1_s0_lives11_dlg1, + [2] = s_gs141_g1_s0_lives11_dlg2, + } }, + /* 12 */ { 26, 0, 0, 0, { 9, 8, 0, CPOS_HALFTILE }, { + [1] = s_gs141_g1_s0_lives12_dlg1, + [2] = s_gs141_g1_s0_lives12_dlg2, + } }, +}; + +static const struct GroundEventData s_gs141_g0_s0_evts[] = { /* 0x8203578 */ + /* 0 */ { 57, 1, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 57, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 1, 42, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 1, 42, 0, 0, { 56, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x82035a8 */ + &s_gs141_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs141_g0_sectors[] = { /* 0x82035ac */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs141_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs141_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs141_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs141_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs141_g1_sectors[] = { /* 0x8203674 */ + { LPARRAY(s_gs141_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs141_groups[] = { /* 0x820369c */ + { LPARRAY(s_gs141_g0_sectors) }, + { LPARRAY(s_gs141_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs141_links[] = { /* 0x82036b4 */ + /* link 0 */ { { /*x*/ 6, /*y*/ 6, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 47, /*y*/ 15, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 4, /*y*/ 15, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 44, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 6, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 40, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 10, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 26, /*y*/ 19, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 32, /*y*/ 23, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 9 */ { { /*x*/ 20, /*y*/ 23, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 10 */ { { /*x*/ 32, /*y*/ 29, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 11 */ { { /*x*/ 20, /*y*/ 29, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 12 */ { { /*x*/ 26, /*y*/ 25, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs141 = { LPARRAY(s_gs141_groups), s_gs141_links }; /* 0x820371c */ diff --git a/src/data/ground/ground_data_h15p01_station.h b/src/data/ground/ground_data_h15p01_station.h new file mode 100644 index 000000000..ec5464f4d --- /dev/null +++ b/src/data/ground/ground_data_h15p01_station.h @@ -0,0 +1,269 @@ + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs142_g0_s0_station_sref_script[] = { /* 0x8203730 */ + DEBUGINFO, + SELECT_MAP(142), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(112), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs142_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs142_g0_s0_station_sref_script }; /* 0x82039ac */ + +static const struct ScriptCommand s_gs142_g0_s1_lives0_dlg0[] = { /* 0x82039b8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs142_g0_s1_lives1_dlg0[] = { /* 0x82039f8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs142_g0_s3_lives0_dlg0[] = { /* 0x8203a38 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs142_g0_s3_lives1_dlg0[] = { /* 0x8203a78 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs142_g0_s4_lives0_dlg0[] = { /* 0x8203ab8 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs142_g0_s4_lives1_dlg0[] = { /* 0x8203ae8 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs142_g1_s0_lives0_dlg1[] = { /* 0x8203b18 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs142_g1_s0_lives0_dlg2[] = { /* 0x8203b48 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs142_g1_s0_lives1_dlg1[] = { /* 0x8203b68 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs142_g1_s0_lives1_dlg2[] = { /* 0x8203b98 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs142_g1_s0_lives2_dlg1[] = { /* 0x8203bb8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs142_g1_s0_lives2_dlg2[] = { /* 0x8203be8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs142_g1_s0_lives3_dlg1[] = { /* 0x8203c08 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs142_g1_s0_lives3_dlg2[] = { /* 0x8203c38 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs142_g1_s0_lives4_dlg1[] = { /* 0x8203c58 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs142_g1_s0_lives4_dlg2[] = { /* 0x8203c88 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs142_g1_s0_lives5_dlg1[] = { /* 0x8203ca8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs142_g1_s0_lives5_dlg2[] = { /* 0x8203cd8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs142_g1_s0_lives6_dlg1[] = { /* 0x8203cf8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs142_g1_s0_lives6_dlg2[] = { /* 0x8203d28 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs142_g0_s1_lives[] = { /* 0x8203d48 */ + /* 0 */ { 0, 4, 0, 0, { 27, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs142_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 34, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs142_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs142_g0_s3_lives[] = { /* 0x8203d78 */ + /* 0 */ { 0, 4, 0, 0, { 27, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs142_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 34, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs142_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs142_g0_s4_lives[] = { /* 0x8203da8 */ + /* 0 */ { 0, 0, 0, 0, { 27, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs142_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 34, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs142_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs142_g1_s0_lives[] = { /* 0x8203dd8 */ + /* 0 */ { 14, 0, 0, 0, { 17, 30, 0, CPOS_HALFTILE }, { + [1] = s_gs142_g1_s0_lives0_dlg1, + [2] = s_gs142_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 44, 29, 0, CPOS_HALFTILE }, { + [1] = s_gs142_g1_s0_lives1_dlg1, + [2] = s_gs142_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 13, 23, 0, CPOS_HALFTILE }, { + [1] = s_gs142_g1_s0_lives2_dlg1, + [2] = s_gs142_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 48, 23, 0, CPOS_HALFTILE }, { + [1] = s_gs142_g1_s0_lives3_dlg1, + [2] = s_gs142_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 19, 18, 0, CPOS_HALFTILE }, { + [1] = s_gs142_g1_s0_lives4_dlg1, + [2] = s_gs142_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 42, 17, 0, CPOS_HALFTILE }, { + [1] = s_gs142_g1_s0_lives5_dlg1, + [2] = s_gs142_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 30, 15, 0, CPOS_HALFTILE }, { + [1] = s_gs142_g1_s0_lives6_dlg1, + [2] = s_gs142_g1_s0_lives6_dlg2, + } }, +}; + +static const struct GroundEventData s_gs142_g0_s0_evts[] = { /* 0x8203e80 */ + /* 0 */ { 60, 1, 0, 0, { 0, 38, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8203e8c */ + &s_gs142_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs142_g0_sectors[] = { /* 0x8203e90 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs142_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs142_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs142_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs142_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs142_g1_sectors[] = { /* 0x8203f58 */ + { LPARRAY(s_gs142_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs142_groups[] = { /* 0x8203f80 */ + { LPARRAY(s_gs142_g0_sectors) }, + { LPARRAY(s_gs142_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs142_links[] = { /* 0x8203f98 */ + /* link 0 */ { { /*x*/ 27, /*y*/ 13, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 39, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 16, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 45, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 10, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 41, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 14, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs142 = { LPARRAY(s_gs142_groups), s_gs142_links }; /* 0x8203fd0 */ diff --git a/src/data/ground/ground_data_h16p01_station.h b/src/data/ground/ground_data_h16p01_station.h new file mode 100644 index 000000000..c96db5174 --- /dev/null +++ b/src/data/ground/ground_data_h16p01_station.h @@ -0,0 +1,340 @@ + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs143_g0_s0_station_sref_script[] = { /* 0x8203fe4 */ + DEBUGINFO, + SELECT_MAP(143), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(116), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs143_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs143_g0_s0_station_sref_script }; /* 0x8204260 */ + +static const struct ScriptCommand s_gs143_g0_s1_lives0_dlg0[] = { /* 0x820426c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs143_g0_s1_lives1_dlg0[] = { /* 0x82042ac */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs143_g0_s3_lives0_dlg0[] = { /* 0x82042ec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs143_g0_s3_lives1_dlg0[] = { /* 0x820432c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs143_g0_s4_lives0_dlg0[] = { /* 0x820436c */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs143_g0_s4_lives1_dlg0[] = { /* 0x820439c */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs143_g1_s0_lives0_dlg1[] = { /* 0x82043cc */ + DEBUGINFO, + { 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs143_g1_s0_lives0_dlg2[] = { /* 0x82043fc */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs143_g1_s0_lives1_dlg1[] = { /* 0x820441c */ + DEBUGINFO, + { 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs143_g1_s0_lives1_dlg2[] = { /* 0x820444c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs143_g1_s0_lives2_dlg1[] = { /* 0x820446c */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs143_g1_s0_lives2_dlg2[] = { /* 0x820449c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs143_g1_s0_lives3_dlg1[] = { /* 0x82044bc */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs143_g1_s0_lives3_dlg2[] = { /* 0x82044ec */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs143_g1_s0_lives4_dlg1[] = { /* 0x820450c */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs143_g1_s0_lives4_dlg2[] = { /* 0x820453c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs143_g1_s0_lives5_dlg1[] = { /* 0x820455c */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs143_g1_s0_lives5_dlg2[] = { /* 0x820458c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs143_g1_s0_lives6_dlg1[] = { /* 0x82045ac */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs143_g1_s0_lives6_dlg2[] = { /* 0x82045dc */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs143_g1_s0_lives7_dlg1[] = { /* 0x82045fc */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs143_g1_s0_lives7_dlg2[] = { /* 0x820462c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs143_g1_s0_lives8_dlg1[] = { /* 0x820464c */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs143_g1_s0_lives8_dlg2[] = { /* 0x820467c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs143_g1_s0_lives9_dlg1[] = { /* 0x820469c */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs143_g1_s0_lives9_dlg2[] = { /* 0x82046cc */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs143_g1_s0_lives10_dlg1[] = { /* 0x82046ec */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs143_g1_s0_lives10_dlg2[] = { /* 0x820471c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs143_g0_s1_lives[] = { /* 0x820473c */ + /* 0 */ { 0, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs143_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs143_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs143_g0_s3_lives[] = { /* 0x820476c */ + /* 0 */ { 0, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs143_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs143_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs143_g0_s4_lives[] = { /* 0x820479c */ + /* 0 */ { 0, 0, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs143_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs143_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs143_g1_s0_lives[] = { /* 0x82047cc */ + /* 0 */ { 14, 0, 0, 0, { 30, 26, 0, CPOS_HALFTILE }, { + [1] = s_gs143_g1_s0_lives0_dlg1, + [2] = s_gs143_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 24, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs143_g1_s0_lives1_dlg1, + [2] = s_gs143_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 36, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs143_g1_s0_lives2_dlg1, + [2] = s_gs143_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 26, 19, 0, CPOS_HALFTILE }, { + [1] = s_gs143_g1_s0_lives3_dlg1, + [2] = s_gs143_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 33, 19, 0, CPOS_HALFTILE }, { + [1] = s_gs143_g1_s0_lives4_dlg1, + [2] = s_gs143_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 20, 19, 0, CPOS_HALFTILE }, { + [1] = s_gs143_g1_s0_lives5_dlg1, + [2] = s_gs143_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 39, 19, 0, CPOS_HALFTILE }, { + [1] = s_gs143_g1_s0_lives6_dlg1, + [2] = s_gs143_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 25, 13, 0, CPOS_HALFTILE }, { + [1] = s_gs143_g1_s0_lives7_dlg1, + [2] = s_gs143_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 32, 13, 0, CPOS_HALFTILE }, { + [1] = s_gs143_g1_s0_lives8_dlg1, + [2] = s_gs143_g1_s0_lives8_dlg2, + } }, + /* 9 */ { 23, 0, 0, 0, { 20, 13, 0, CPOS_HALFTILE }, { + [1] = s_gs143_g1_s0_lives9_dlg1, + [2] = s_gs143_g1_s0_lives9_dlg2, + } }, + /* 10 */ { 24, 0, 0, 0, { 38, 13, 0, CPOS_HALFTILE }, { + [1] = s_gs143_g1_s0_lives10_dlg1, + [2] = s_gs143_g1_s0_lives10_dlg2, + } }, +}; + +static const struct GroundEventData s_gs143_g0_s0_evts[] = { /* 0x82048d4 */ + /* 0 */ { 60, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 60, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 3, 42, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 3, 42, 0, 0, { 57, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8204904 */ + &s_gs143_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs143_g0_sectors[] = { /* 0x8204908 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs143_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs143_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs143_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs143_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs143_g1_sectors[] = { /* 0x82049d0 */ + { LPARRAY(s_gs143_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs143_groups[] = { /* 0x82049f8 */ + { LPARRAY(s_gs143_g0_sectors) }, + { LPARRAY(s_gs143_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs143_links[] = { /* 0x8204a10 */ + /* link 0 */ { { /*x*/ 36, /*y*/ 11, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 17, /*y*/ 11, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 30, /*y*/ 11, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 23, /*y*/ 11, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 36, /*y*/ 17, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 17, /*y*/ 17, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 30, /*y*/ 17, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 23, /*y*/ 17, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 33, /*y*/ 23, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 9 */ { { /*x*/ 21, /*y*/ 23, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 10 */ { { /*x*/ 27, /*y*/ 24, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs143 = { LPARRAY(s_gs143_groups), s_gs143_links }; /* 0x8204a68 */ diff --git a/src/data/ground/ground_data_h17p01_station.h b/src/data/ground/ground_data_h17p01_station.h new file mode 100644 index 000000000..0d61a9588 --- /dev/null +++ b/src/data/ground/ground_data_h17p01_station.h @@ -0,0 +1,340 @@ + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs144_g0_s0_station_sref_script[] = { /* 0x8204a7c */ + DEBUGINFO, + SELECT_MAP(144), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(116), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs144_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs144_g0_s0_station_sref_script }; /* 0x8204cf8 */ + +static const struct ScriptCommand s_gs144_g0_s1_lives0_dlg0[] = { /* 0x8204d04 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs144_g0_s1_lives1_dlg0[] = { /* 0x8204d44 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs144_g0_s3_lives0_dlg0[] = { /* 0x8204d84 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs144_g0_s3_lives1_dlg0[] = { /* 0x8204dc4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs144_g0_s4_lives0_dlg0[] = { /* 0x8204e04 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs144_g0_s4_lives1_dlg0[] = { /* 0x8204e34 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs144_g1_s0_lives0_dlg1[] = { /* 0x8204e64 */ + DEBUGINFO, + { 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs144_g1_s0_lives0_dlg2[] = { /* 0x8204e94 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs144_g1_s0_lives1_dlg1[] = { /* 0x8204eb4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs144_g1_s0_lives1_dlg2[] = { /* 0x8204ee4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs144_g1_s0_lives2_dlg1[] = { /* 0x8204f04 */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs144_g1_s0_lives2_dlg2[] = { /* 0x8204f34 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs144_g1_s0_lives3_dlg1[] = { /* 0x8204f54 */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs144_g1_s0_lives3_dlg2[] = { /* 0x8204f84 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs144_g1_s0_lives4_dlg1[] = { /* 0x8204fa4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs144_g1_s0_lives4_dlg2[] = { /* 0x8204fd4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs144_g1_s0_lives5_dlg1[] = { /* 0x8204ff4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs144_g1_s0_lives5_dlg2[] = { /* 0x8205024 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs144_g1_s0_lives6_dlg1[] = { /* 0x8205044 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs144_g1_s0_lives6_dlg2[] = { /* 0x8205074 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs144_g1_s0_lives7_dlg1[] = { /* 0x8205094 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs144_g1_s0_lives7_dlg2[] = { /* 0x82050c4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs144_g1_s0_lives8_dlg1[] = { /* 0x82050e4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs144_g1_s0_lives8_dlg2[] = { /* 0x8205114 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs144_g1_s0_lives9_dlg1[] = { /* 0x8205134 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs144_g1_s0_lives9_dlg2[] = { /* 0x8205164 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs144_g1_s0_lives10_dlg1[] = { /* 0x8205184 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs144_g1_s0_lives10_dlg2[] = { /* 0x82051b4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs144_g0_s1_lives[] = { /* 0x82051d4 */ + /* 0 */ { 0, 4, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs144_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs144_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs144_g0_s3_lives[] = { /* 0x8205204 */ + /* 0 */ { 0, 4, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs144_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs144_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs144_g0_s4_lives[] = { /* 0x8205234 */ + /* 0 */ { 0, 0, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs144_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs144_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs144_g1_s0_lives[] = { /* 0x8205264 */ + /* 0 */ { 14, 0, 0, 0, { 22, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs144_g1_s0_lives0_dlg1, + [2] = s_gs144_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 35, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs144_g1_s0_lives1_dlg1, + [2] = s_gs144_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 16, 28, 0, CPOS_HALFTILE }, { + [1] = s_gs144_g1_s0_lives2_dlg1, + [2] = s_gs144_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 41, 28, 0, CPOS_HALFTILE }, { + [1] = s_gs144_g1_s0_lives3_dlg1, + [2] = s_gs144_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 14, 23, 0, CPOS_HALFTILE }, { + [1] = s_gs144_g1_s0_lives4_dlg1, + [2] = s_gs144_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 43, 23, 0, CPOS_HALFTILE }, { + [1] = s_gs144_g1_s0_lives5_dlg1, + [2] = s_gs144_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 8, 28, 0, CPOS_HALFTILE }, { + [1] = s_gs144_g1_s0_lives6_dlg1, + [2] = s_gs144_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 49, 28, 0, CPOS_HALFTILE }, { + [1] = s_gs144_g1_s0_lives7_dlg1, + [2] = s_gs144_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 29, 21, 0, CPOS_HALFTILE }, { + [1] = s_gs144_g1_s0_lives8_dlg1, + [2] = s_gs144_g1_s0_lives8_dlg2, + } }, + /* 9 */ { 23, 0, 0, 0, { 22, 19, 0, CPOS_HALFTILE }, { + [1] = s_gs144_g1_s0_lives9_dlg1, + [2] = s_gs144_g1_s0_lives9_dlg2, + } }, + /* 10 */ { 24, 0, 0, 0, { 35, 19, 0, CPOS_HALFTILE }, { + [1] = s_gs144_g1_s0_lives10_dlg1, + [2] = s_gs144_g1_s0_lives10_dlg2, + } }, +}; + +static const struct GroundEventData s_gs144_g0_s0_evts[] = { /* 0x820536c */ + /* 0 */ { 57, 1, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 57, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 1, 42, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 1, 42, 0, 0, { 56, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x820539c */ + &s_gs144_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs144_g0_sectors[] = { /* 0x82053a0 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs144_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs144_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs144_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs144_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs144_g1_sectors[] = { /* 0x8205468 */ + { LPARRAY(s_gs144_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs144_groups[] = { /* 0x8205490 */ + { LPARRAY(s_gs144_g0_sectors) }, + { LPARRAY(s_gs144_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs144_links[] = { /* 0x82054a8 */ + /* link 0 */ { { /*x*/ 32, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 20, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 26, /*y*/ 19, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 46, /*y*/ 26, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 5, /*y*/ 26, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 40, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 11, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 38, /*y*/ 26, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 13, /*y*/ 26, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 9 */ { { /*x*/ 32, /*y*/ 29, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 10 */ { { /*x*/ 19, /*y*/ 29, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs144 = { LPARRAY(s_gs144_groups), s_gs144_links }; /* 0x8205500 */ diff --git a/src/data/ground/ground_data_h18p01_station.h b/src/data/ground/ground_data_h18p01_station.h new file mode 100644 index 000000000..8fc4679a4 --- /dev/null +++ b/src/data/ground/ground_data_h18p01_station.h @@ -0,0 +1,272 @@ + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs145_g0_s0_station_sref_script[] = { /* 0x8205514 */ + DEBUGINFO, + SELECT_MAP(145), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(112), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs145_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs145_g0_s0_station_sref_script }; /* 0x8205790 */ + +static const struct ScriptCommand s_gs145_g0_s1_lives0_dlg0[] = { /* 0x820579c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs145_g0_s1_lives1_dlg0[] = { /* 0x82057dc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs145_g0_s3_lives0_dlg0[] = { /* 0x820581c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs145_g0_s3_lives1_dlg0[] = { /* 0x820585c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs145_g0_s4_lives0_dlg0[] = { /* 0x820589c */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs145_g0_s4_lives1_dlg0[] = { /* 0x82058cc */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs145_g1_s0_lives0_dlg1[] = { /* 0x82058fc */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs145_g1_s0_lives0_dlg2[] = { /* 0x820592c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs145_g1_s0_lives1_dlg1[] = { /* 0x820594c */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs145_g1_s0_lives1_dlg2[] = { /* 0x820597c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs145_g1_s0_lives2_dlg1[] = { /* 0x820599c */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs145_g1_s0_lives2_dlg2[] = { /* 0x82059cc */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs145_g1_s0_lives3_dlg1[] = { /* 0x82059ec */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs145_g1_s0_lives3_dlg2[] = { /* 0x8205a1c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs145_g1_s0_lives4_dlg1[] = { /* 0x8205a3c */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs145_g1_s0_lives4_dlg2[] = { /* 0x8205a6c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs145_g1_s0_lives5_dlg1[] = { /* 0x8205a8c */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs145_g1_s0_lives5_dlg2[] = { /* 0x8205abc */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs145_g1_s0_lives6_dlg1[] = { /* 0x8205adc */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs145_g1_s0_lives6_dlg2[] = { /* 0x8205b0c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs145_g0_s1_lives[] = { /* 0x8205b2c */ + /* 0 */ { 0, 4, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs145_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs145_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs145_g0_s3_lives[] = { /* 0x8205b5c */ + /* 0 */ { 0, 4, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs145_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs145_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs145_g0_s4_lives[] = { /* 0x8205b8c */ + /* 0 */ { 0, 0, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs145_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs145_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs145_g1_s0_lives[] = { /* 0x8205bbc */ + /* 0 */ { 14, 0, 0, 0, { 29, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs145_g1_s0_lives0_dlg1, + [2] = s_gs145_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 23, 27, 0, CPOS_HALFTILE }, { + [1] = s_gs145_g1_s0_lives1_dlg1, + [2] = s_gs145_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 34, 27, 0, CPOS_HALFTILE }, { + [1] = s_gs145_g1_s0_lives2_dlg1, + [2] = s_gs145_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 29, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs145_g1_s0_lives3_dlg1, + [2] = s_gs145_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 19, 19, 0, CPOS_HALFTILE }, { + [1] = s_gs145_g1_s0_lives4_dlg1, + [2] = s_gs145_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 20, 34, 0, CPOS_HALFTILE }, { + [1] = s_gs145_g1_s0_lives5_dlg1, + [2] = s_gs145_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 39, 34, 0, CPOS_HALFTILE }, { + [1] = s_gs145_g1_s0_lives6_dlg1, + [2] = s_gs145_g1_s0_lives6_dlg2, + } }, +}; + +static const struct GroundEventData s_gs145_g0_s0_evts[] = { /* 0x8205c64 */ + /* 0 */ { 60, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 60, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 3, 42, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 3, 42, 0, 0, { 57, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8205c94 */ + &s_gs145_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs145_g0_sectors[] = { /* 0x8205c98 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs145_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs145_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs145_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs145_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs145_g1_sectors[] = { /* 0x8205d60 */ + { LPARRAY(s_gs145_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs145_groups[] = { /* 0x8205d88 */ + { LPARRAY(s_gs145_g0_sectors) }, + { LPARRAY(s_gs145_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs145_links[] = { /* 0x8205da0 */ + /* link 0 */ { { /*x*/ 16, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 26, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 35, /*y*/ 31, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 17, /*y*/ 31, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 20, /*y*/ 24, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 32, /*y*/ 24, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 26, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs145 = { LPARRAY(s_gs145_groups), s_gs145_links }; /* 0x8205dd8 */ diff --git a/src/data/ground/ground_data_h19p01_station.h b/src/data/ground/ground_data_h19p01_station.h new file mode 100644 index 000000000..21722ea34 --- /dev/null +++ b/src/data/ground/ground_data_h19p01_station.h @@ -0,0 +1,272 @@ + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs146_g0_s0_station_sref_script[] = { /* 0x8205dec */ + DEBUGINFO, + SELECT_MAP(146), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(3), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs146_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs146_g0_s0_station_sref_script }; /* 0x8206068 */ + +static const struct ScriptCommand s_gs146_g0_s1_lives0_dlg0[] = { /* 0x8206074 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs146_g0_s1_lives1_dlg0[] = { /* 0x82060b4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs146_g0_s3_lives0_dlg0[] = { /* 0x82060f4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs146_g0_s3_lives1_dlg0[] = { /* 0x8206134 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs146_g0_s4_lives0_dlg0[] = { /* 0x8206174 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs146_g0_s4_lives1_dlg0[] = { /* 0x82061a4 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs146_g1_s0_lives0_dlg1[] = { /* 0x82061d4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs146_g1_s0_lives0_dlg2[] = { /* 0x8206204 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs146_g1_s0_lives1_dlg1[] = { /* 0x8206224 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs146_g1_s0_lives1_dlg2[] = { /* 0x8206254 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs146_g1_s0_lives2_dlg1[] = { /* 0x8206274 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs146_g1_s0_lives2_dlg2[] = { /* 0x82062a4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs146_g1_s0_lives3_dlg1[] = { /* 0x82062c4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs146_g1_s0_lives3_dlg2[] = { /* 0x82062f4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs146_g1_s0_lives4_dlg1[] = { /* 0x8206314 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs146_g1_s0_lives4_dlg2[] = { /* 0x8206344 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs146_g1_s0_lives5_dlg1[] = { /* 0x8206364 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs146_g1_s0_lives5_dlg2[] = { /* 0x8206394 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs146_g1_s0_lives6_dlg1[] = { /* 0x82063b4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs146_g1_s0_lives6_dlg2[] = { /* 0x82063e4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs146_g0_s1_lives[] = { /* 0x8206404 */ + /* 0 */ { 0, 4, 0, 0, { 29, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs146_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs146_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs146_g0_s3_lives[] = { /* 0x8206434 */ + /* 0 */ { 0, 4, 0, 0, { 29, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs146_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs146_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs146_g0_s4_lives[] = { /* 0x8206464 */ + /* 0 */ { 0, 0, 0, 0, { 29, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs146_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs146_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs146_g1_s0_lives[] = { /* 0x8206494 */ + /* 0 */ { 14, 0, 0, 0, { 19, 17, 0, CPOS_HALFTILE }, { + [1] = s_gs146_g1_s0_lives0_dlg1, + [2] = s_gs146_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 21, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs146_g1_s0_lives1_dlg1, + [2] = s_gs146_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 36, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs146_g1_s0_lives2_dlg1, + [2] = s_gs146_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 29, 26, 0, CPOS_HALFTILE }, { + [1] = s_gs146_g1_s0_lives3_dlg1, + [2] = s_gs146_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 38, 18, 0, CPOS_HALFTILE }, { + [1] = s_gs146_g1_s0_lives4_dlg1, + [2] = s_gs146_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 24, 11, 0, CPOS_HALFTILE }, { + [1] = s_gs146_g1_s0_lives5_dlg1, + [2] = s_gs146_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 32, 11, 0, CPOS_HALFTILE }, { + [1] = s_gs146_g1_s0_lives6_dlg1, + [2] = s_gs146_g1_s0_lives6_dlg2, + } }, +}; + +static const struct GroundEventData s_gs146_g0_s0_evts[] = { /* 0x820653c */ + /* 0 */ { 57, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 57, 1, 0, 0, { 0, 38, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 3, 39, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 3, 39, 0, 0, { 54, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x820656c */ + &s_gs146_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs146_g0_sectors[] = { /* 0x8206570 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs146_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs146_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs146_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs146_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs146_g1_sectors[] = { /* 0x8206638 */ + { LPARRAY(s_gs146_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs146_groups[] = { /* 0x8206660 */ + { LPARRAY(s_gs146_g0_sectors) }, + { LPARRAY(s_gs146_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs146_links[] = { /* 0x8206678 */ + /* link 0 */ { { /*x*/ 29, /*y*/ 9, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 22, /*y*/ 9, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 35, /*y*/ 15, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 16, /*y*/ 15, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 34, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 18, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 26, /*y*/ 23, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs146 = { LPARRAY(s_gs146_groups), s_gs146_links }; /* 0x82066b0 */ diff --git a/src/data/ground/ground_data_h20p01_station.h b/src/data/ground/ground_data_h20p01_station.h new file mode 100644 index 000000000..27a75378d --- /dev/null +++ b/src/data/ground/ground_data_h20p01_station.h @@ -0,0 +1,272 @@ + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs147_g0_s0_station_sref_script[] = { /* 0x82066c4 */ + DEBUGINFO, + SELECT_MAP(147), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(116), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs147_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs147_g0_s0_station_sref_script }; /* 0x8206940 */ + +static const struct ScriptCommand s_gs147_g0_s1_lives0_dlg0[] = { /* 0x820694c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs147_g0_s1_lives1_dlg0[] = { /* 0x820698c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs147_g0_s3_lives0_dlg0[] = { /* 0x82069cc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs147_g0_s3_lives1_dlg0[] = { /* 0x8206a0c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs147_g0_s4_lives0_dlg0[] = { /* 0x8206a4c */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs147_g0_s4_lives1_dlg0[] = { /* 0x8206a7c */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs147_g1_s0_lives0_dlg1[] = { /* 0x8206aac */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs147_g1_s0_lives0_dlg2[] = { /* 0x8206adc */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs147_g1_s0_lives1_dlg1[] = { /* 0x8206afc */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs147_g1_s0_lives1_dlg2[] = { /* 0x8206b2c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs147_g1_s0_lives2_dlg1[] = { /* 0x8206b4c */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs147_g1_s0_lives2_dlg2[] = { /* 0x8206b7c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs147_g1_s0_lives3_dlg1[] = { /* 0x8206b9c */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs147_g1_s0_lives3_dlg2[] = { /* 0x8206bcc */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs147_g1_s0_lives4_dlg1[] = { /* 0x8206bec */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs147_g1_s0_lives4_dlg2[] = { /* 0x8206c1c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs147_g1_s0_lives5_dlg1[] = { /* 0x8206c3c */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs147_g1_s0_lives5_dlg2[] = { /* 0x8206c6c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs147_g1_s0_lives6_dlg1[] = { /* 0x8206c8c */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs147_g1_s0_lives6_dlg2[] = { /* 0x8206cbc */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs147_g0_s1_lives[] = { /* 0x8206cdc */ + /* 0 */ { 0, 4, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs147_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs147_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs147_g0_s3_lives[] = { /* 0x8206d0c */ + /* 0 */ { 0, 4, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs147_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs147_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs147_g0_s4_lives[] = { /* 0x8206d3c */ + /* 0 */ { 0, 0, 0, 0, { 29, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs147_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 29, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs147_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs147_g1_s0_lives[] = { /* 0x8206d6c */ + /* 0 */ { 14, 0, 0, 0, { 23, 30, 0, CPOS_HALFTILE }, { + [1] = s_gs147_g1_s0_lives0_dlg1, + [2] = s_gs147_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 35, 30, 0, CPOS_HALFTILE }, { + [1] = s_gs147_g1_s0_lives1_dlg1, + [2] = s_gs147_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 19, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs147_g1_s0_lives2_dlg1, + [2] = s_gs147_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 39, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs147_g1_s0_lives3_dlg1, + [2] = s_gs147_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 9, 29, 0, CPOS_HALFTILE }, { + [1] = s_gs147_g1_s0_lives4_dlg1, + [2] = s_gs147_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 49, 30, 0, CPOS_HALFTILE }, { + [1] = s_gs147_g1_s0_lives5_dlg1, + [2] = s_gs147_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 25, 15, 0, CPOS_HALFTILE }, { + [1] = s_gs147_g1_s0_lives6_dlg1, + [2] = s_gs147_g1_s0_lives6_dlg2, + } }, +}; + +static const struct GroundEventData s_gs147_g0_s0_evts[] = { /* 0x8206e14 */ + /* 0 */ { 57, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 57, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 1, 42, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 1, 42, 0, 0, { 56, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8206e44 */ + &s_gs147_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs147_g0_sectors[] = { /* 0x8206e48 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs147_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs147_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs147_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs147_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs147_g1_sectors[] = { /* 0x8206f10 */ + { LPARRAY(s_gs147_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs147_groups[] = { /* 0x8206f38 */ + { LPARRAY(s_gs147_g0_sectors) }, + { LPARRAY(s_gs147_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs147_links[] = { /* 0x8206f50 */ + /* link 0 */ { { /*x*/ 22, /*y*/ 13, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 46, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 6, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 36, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 16, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 32, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 20, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs147 = { LPARRAY(s_gs147_groups), s_gs147_links }; /* 0x8206f88 */ diff --git a/src/data/ground/ground_data_h21p01_station.h b/src/data/ground/ground_data_h21p01_station.h new file mode 100644 index 000000000..23dc62a3f --- /dev/null +++ b/src/data/ground/ground_data_h21p01_station.h @@ -0,0 +1,389 @@ + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs148_g0_s0_station_sref_script[] = { /* 0x8206f9c */ + DEBUGINFO, + SELECT_MAP(148), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(3), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs148_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs148_g0_s0_station_sref_script }; /* 0x8207218 */ + +static const struct ScriptCommand s_gs148_g0_s1_lives0_dlg0[] = { /* 0x8207224 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs148_g0_s1_lives1_dlg0[] = { /* 0x8207264 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs148_g0_s3_lives0_dlg0[] = { /* 0x82072a4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs148_g0_s3_lives1_dlg0[] = { /* 0x82072e4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs148_g0_s4_lives0_dlg0[] = { /* 0x8207324 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs148_g0_s4_lives1_dlg0[] = { /* 0x8207354 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives0_dlg1[] = { /* 0x8207384 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives0_dlg2[] = { /* 0x82073b4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives1_dlg1[] = { /* 0x82073d4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives1_dlg2[] = { /* 0x8207404 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives2_dlg1[] = { /* 0x8207424 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives2_dlg2[] = { /* 0x8207454 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives3_dlg1[] = { /* 0x8207474 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives3_dlg2[] = { /* 0x82074a4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives4_dlg1[] = { /* 0x82074c4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives4_dlg2[] = { /* 0x82074f4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives5_dlg1[] = { /* 0x8207514 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives5_dlg2[] = { /* 0x8207544 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives6_dlg1[] = { /* 0x8207564 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives6_dlg2[] = { /* 0x8207594 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives7_dlg1[] = { /* 0x82075b4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives7_dlg2[] = { /* 0x82075e4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives8_dlg1[] = { /* 0x8207604 */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives8_dlg2[] = { /* 0x8207634 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives9_dlg1[] = { /* 0x8207654 */ + DEBUGINFO, + { 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives9_dlg2[] = { /* 0x8207684 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives10_dlg1[] = { /* 0x82076a4 */ + DEBUGINFO, + { 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives10_dlg2[] = { /* 0x82076d4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives11_dlg1[] = { /* 0x82076f4 */ + DEBUGINFO, + { 0x51, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives11_dlg2[] = { /* 0x8207724 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives12_dlg1[] = { /* 0x8207744 */ + DEBUGINFO, + { 0x51, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives12_dlg2[] = { /* 0x8207774 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives13_dlg1[] = { /* 0x8207794 */ + DEBUGINFO, + { 0x51, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs148_g1_s0_lives13_dlg2[] = { /* 0x82077c4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs148_g0_s1_lives[] = { /* 0x82077e4 */ + /* 0 */ { 0, 4, 0, 0, { 30, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs148_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs148_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs148_g0_s3_lives[] = { /* 0x8207814 */ + /* 0 */ { 0, 4, 0, 0, { 30, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs148_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs148_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs148_g0_s4_lives[] = { /* 0x8207844 */ + /* 0 */ { 0, 0, 0, 0, { 30, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs148_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs148_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs148_g1_s0_lives[] = { /* 0x8207874 */ + /* 0 */ { 14, 0, 0, 0, { 30, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs148_g1_s0_lives0_dlg1, + [2] = s_gs148_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 24, 19, 0, CPOS_HALFTILE }, { + [1] = s_gs148_g1_s0_lives1_dlg1, + [2] = s_gs148_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 36, 19, 0, CPOS_HALFTILE }, { + [1] = s_gs148_g1_s0_lives2_dlg1, + [2] = s_gs148_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 19, 16, 0, CPOS_HALFTILE }, { + [1] = s_gs148_g1_s0_lives3_dlg1, + [2] = s_gs148_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 41, 16, 0, CPOS_HALFTILE }, { + [1] = s_gs148_g1_s0_lives4_dlg1, + [2] = s_gs148_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 30, 15, 0, CPOS_HALFTILE }, { + [1] = s_gs148_g1_s0_lives5_dlg1, + [2] = s_gs148_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 19, 11, 0, CPOS_HALFTILE }, { + [1] = s_gs148_g1_s0_lives6_dlg1, + [2] = s_gs148_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 41, 11, 0, CPOS_HALFTILE }, { + [1] = s_gs148_g1_s0_lives7_dlg1, + [2] = s_gs148_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 21, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs148_g1_s0_lives8_dlg1, + [2] = s_gs148_g1_s0_lives8_dlg2, + } }, + /* 9 */ { 23, 0, 0, 0, { 38, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs148_g1_s0_lives9_dlg1, + [2] = s_gs148_g1_s0_lives9_dlg2, + } }, + /* 10 */ { 24, 0, 0, 0, { 13, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs148_g1_s0_lives10_dlg1, + [2] = s_gs148_g1_s0_lives10_dlg2, + } }, + /* 11 */ { 25, 0, 0, 0, { 47, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs148_g1_s0_lives11_dlg1, + [2] = s_gs148_g1_s0_lives11_dlg2, + } }, + /* 12 */ { 26, 0, 0, 0, { 7, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs148_g1_s0_lives12_dlg1, + [2] = s_gs148_g1_s0_lives12_dlg2, + } }, + /* 13 */ { 27, 0, 0, 0, { 52, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs148_g1_s0_lives13_dlg1, + [2] = s_gs148_g1_s0_lives13_dlg2, + } }, +}; + +static const struct GroundEventData s_gs148_g0_s0_evts[] = { /* 0x82079c4 */ + /* 0 */ { 60, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 60, 1, 0, 0, { 0, 38, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x82079dc */ + &s_gs148_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs148_g0_sectors[] = { /* 0x82079e0 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs148_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs148_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs148_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs148_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs148_g1_sectors[] = { /* 0x8207aa8 */ + { LPARRAY(s_gs148_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs148_groups[] = { /* 0x8207ad0 */ + { LPARRAY(s_gs148_g0_sectors) }, + { LPARRAY(s_gs148_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs148_links[] = { /* 0x8207ae8 */ + /* link 0 */ { { /*x*/ 27, /*y*/ 19, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 21, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 33, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 15, /*y*/ 14, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 39, /*y*/ 14, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 27, /*y*/ 13, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 17, /*y*/ 8, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 37, /*y*/ 8, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 18, /*y*/ 30, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 9 */ { { /*x*/ 35, /*y*/ 30, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 10 */ { { /*x*/ 10, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 11 */ { { /*x*/ 44, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 12 */ { { /*x*/ 4, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 13 */ { { /*x*/ 50, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs148 = { LPARRAY(s_gs148_groups), s_gs148_links }; /* 0x8207b58 */ diff --git a/src/data/ground/ground_data_h21p02_station.h b/src/data/ground/ground_data_h21p02_station.h new file mode 100644 index 000000000..5e16c2b8f --- /dev/null +++ b/src/data/ground/ground_data_h21p02_station.h @@ -0,0 +1,389 @@ + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs149_g0_s0_station_sref_script[] = { /* 0x8207b6c */ + DEBUGINFO, + SELECT_MAP(149), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(3), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs149_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs149_g0_s0_station_sref_script }; /* 0x8207de8 */ + +static const struct ScriptCommand s_gs149_g0_s1_lives0_dlg0[] = { /* 0x8207df4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs149_g0_s1_lives1_dlg0[] = { /* 0x8207e34 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs149_g0_s3_lives0_dlg0[] = { /* 0x8207e74 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs149_g0_s3_lives1_dlg0[] = { /* 0x8207eb4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs149_g0_s4_lives0_dlg0[] = { /* 0x8207ef4 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs149_g0_s4_lives1_dlg0[] = { /* 0x8207f24 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives0_dlg1[] = { /* 0x8207f54 */ + DEBUGINFO, + { 0x51, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives0_dlg2[] = { /* 0x8207f84 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives1_dlg1[] = { /* 0x8207fa4 */ + DEBUGINFO, + { 0x51, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives1_dlg2[] = { /* 0x8207fd4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives2_dlg1[] = { /* 0x8207ff4 */ + DEBUGINFO, + { 0x51, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives2_dlg2[] = { /* 0x8208024 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives3_dlg1[] = { /* 0x8208044 */ + DEBUGINFO, + { 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives3_dlg2[] = { /* 0x8208074 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives4_dlg1[] = { /* 0x8208094 */ + DEBUGINFO, + { 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives4_dlg2[] = { /* 0x82080c4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives5_dlg1[] = { /* 0x82080e4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives5_dlg2[] = { /* 0x8208114 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives6_dlg1[] = { /* 0x8208134 */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives6_dlg2[] = { /* 0x8208164 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives7_dlg1[] = { /* 0x8208184 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives7_dlg2[] = { /* 0x82081b4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives8_dlg1[] = { /* 0x82081d4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives8_dlg2[] = { /* 0x8208204 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives9_dlg1[] = { /* 0x8208224 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives9_dlg2[] = { /* 0x8208254 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives10_dlg1[] = { /* 0x8208274 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives10_dlg2[] = { /* 0x82082a4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives11_dlg1[] = { /* 0x82082c4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives11_dlg2[] = { /* 0x82082f4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives12_dlg1[] = { /* 0x8208314 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives12_dlg2[] = { /* 0x8208344 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives13_dlg1[] = { /* 0x8208364 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs149_g1_s0_lives13_dlg2[] = { /* 0x8208394 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs149_g0_s1_lives[] = { /* 0x82083b4 */ + /* 0 */ { 0, 4, 0, 0, { 30, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs149_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs149_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs149_g0_s3_lives[] = { /* 0x82083e4 */ + /* 0 */ { 0, 4, 0, 0, { 30, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs149_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs149_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs149_g0_s4_lives[] = { /* 0x8208414 */ + /* 0 */ { 0, 0, 0, 0, { 30, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs149_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs149_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs149_g1_s0_lives[] = { /* 0x8208444 */ + /* 0 */ { 14, 0, 0, 0, { 30, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs149_g1_s0_lives0_dlg1, + [2] = s_gs149_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 24, 19, 0, CPOS_HALFTILE }, { + [1] = s_gs149_g1_s0_lives1_dlg1, + [2] = s_gs149_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 36, 19, 0, CPOS_HALFTILE }, { + [1] = s_gs149_g1_s0_lives2_dlg1, + [2] = s_gs149_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 19, 16, 0, CPOS_HALFTILE }, { + [1] = s_gs149_g1_s0_lives3_dlg1, + [2] = s_gs149_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 41, 16, 0, CPOS_HALFTILE }, { + [1] = s_gs149_g1_s0_lives4_dlg1, + [2] = s_gs149_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 30, 15, 0, CPOS_HALFTILE }, { + [1] = s_gs149_g1_s0_lives5_dlg1, + [2] = s_gs149_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 19, 11, 0, CPOS_HALFTILE }, { + [1] = s_gs149_g1_s0_lives6_dlg1, + [2] = s_gs149_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 41, 11, 0, CPOS_HALFTILE }, { + [1] = s_gs149_g1_s0_lives7_dlg1, + [2] = s_gs149_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 21, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs149_g1_s0_lives8_dlg1, + [2] = s_gs149_g1_s0_lives8_dlg2, + } }, + /* 9 */ { 23, 0, 0, 0, { 38, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs149_g1_s0_lives9_dlg1, + [2] = s_gs149_g1_s0_lives9_dlg2, + } }, + /* 10 */ { 24, 0, 0, 0, { 13, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs149_g1_s0_lives10_dlg1, + [2] = s_gs149_g1_s0_lives10_dlg2, + } }, + /* 11 */ { 25, 0, 0, 0, { 47, 31, 0, CPOS_HALFTILE }, { + [1] = s_gs149_g1_s0_lives11_dlg1, + [2] = s_gs149_g1_s0_lives11_dlg2, + } }, + /* 12 */ { 26, 0, 0, 0, { 7, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs149_g1_s0_lives12_dlg1, + [2] = s_gs149_g1_s0_lives12_dlg2, + } }, + /* 13 */ { 27, 0, 0, 0, { 52, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs149_g1_s0_lives13_dlg1, + [2] = s_gs149_g1_s0_lives13_dlg2, + } }, +}; + +static const struct GroundEventData s_gs149_g0_s0_evts[] = { /* 0x8208594 */ + /* 0 */ { 60, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 60, 1, 0, 0, { 0, 38, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x82085ac */ + &s_gs149_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs149_g0_sectors[] = { /* 0x82085b0 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs149_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs149_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs149_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs149_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs149_g1_sectors[] = { /* 0x8208678 */ + { LPARRAY(s_gs149_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs149_groups[] = { /* 0x82086a0 */ + { LPARRAY(s_gs149_g0_sectors) }, + { LPARRAY(s_gs149_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs149_links[] = { /* 0x82086b8 */ + /* link 0 */ { { /*x*/ 50, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 4, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 44, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 10, /*y*/ 28, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 35, /*y*/ 30, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 18, /*y*/ 30, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 37, /*y*/ 8, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 17, /*y*/ 8, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 27, /*y*/ 13, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 9 */ { { /*x*/ 39, /*y*/ 14, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 10 */ { { /*x*/ 15, /*y*/ 14, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 11 */ { { /*x*/ 33, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 12 */ { { /*x*/ 21, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 13 */ { { /*x*/ 27, /*y*/ 19, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs149 = { LPARRAY(s_gs149_groups), s_gs149_links }; /* 0x8208728 */ diff --git a/src/data/ground/ground_data_h22p01_station.h b/src/data/ground/ground_data_h22p01_station.h new file mode 100644 index 000000000..b8cd966c9 --- /dev/null +++ b/src/data/ground/ground_data_h22p01_station.h @@ -0,0 +1,255 @@ + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs150_g0_s0_station_sref_script[] = { /* 0x820873c */ + DEBUGINFO, + SELECT_MAP(150), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(3), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs150_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs150_g0_s0_station_sref_script }; /* 0x82089b8 */ + +static const struct ScriptCommand s_gs150_g0_s1_lives0_dlg0[] = { /* 0x82089c4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs150_g0_s1_lives1_dlg0[] = { /* 0x8208a04 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs150_g0_s3_lives0_dlg0[] = { /* 0x8208a44 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs150_g0_s3_lives1_dlg0[] = { /* 0x8208a84 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs150_g0_s4_lives0_dlg0[] = { /* 0x8208ac4 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs150_g0_s4_lives1_dlg0[] = { /* 0x8208af4 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs150_g1_s0_lives0_dlg1[] = { /* 0x8208b24 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs150_g1_s0_lives0_dlg2[] = { /* 0x8208b54 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs150_g1_s0_lives1_dlg1[] = { /* 0x8208b74 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs150_g1_s0_lives1_dlg2[] = { /* 0x8208ba4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs150_g1_s0_lives2_dlg1[] = { /* 0x8208bc4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs150_g1_s0_lives2_dlg2[] = { /* 0x8208bf4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs150_g1_s0_lives3_dlg1[] = { /* 0x8208c14 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs150_g1_s0_lives3_dlg2[] = { /* 0x8208c44 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs150_g1_s0_lives4_dlg1[] = { /* 0x8208c64 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs150_g1_s0_lives4_dlg2[] = { /* 0x8208c94 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs150_g1_s0_lives5_dlg1[] = { /* 0x8208cb4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs150_g1_s0_lives5_dlg2[] = { /* 0x8208ce4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs150_g0_s1_lives[] = { /* 0x8208d04 */ + /* 0 */ { 0, 4, 0, 0, { 30, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs150_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs150_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs150_g0_s3_lives[] = { /* 0x8208d34 */ + /* 0 */ { 0, 4, 0, 0, { 30, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs150_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs150_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs150_g0_s4_lives[] = { /* 0x8208d64 */ + /* 0 */ { 0, 0, 0, 0, { 30, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs150_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs150_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs150_g1_s0_lives[] = { /* 0x8208d94 */ + /* 0 */ { 14, 0, 0, 0, { 30, 26, 0, CPOS_HALFTILE }, { + [1] = s_gs150_g1_s0_lives0_dlg1, + [2] = s_gs150_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 9, 12, 0, CPOS_HALFTILE }, { + [1] = s_gs150_g1_s0_lives1_dlg1, + [2] = s_gs150_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 49, 12, 0, CPOS_HALFTILE }, { + [1] = s_gs150_g1_s0_lives2_dlg1, + [2] = s_gs150_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 9, 23, 0, CPOS_HALFTILE }, { + [1] = s_gs150_g1_s0_lives3_dlg1, + [2] = s_gs150_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 51, 23, 0, CPOS_HALFTILE }, { + [1] = s_gs150_g1_s0_lives4_dlg1, + [2] = s_gs150_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 30, 13, 0, CPOS_HALFTILE }, { + [1] = s_gs150_g1_s0_lives5_dlg1, + [2] = s_gs150_g1_s0_lives5_dlg2, + } }, +}; + +static const struct GroundEventData s_gs150_g0_s0_evts[] = { /* 0x8208e24 */ + /* 0 */ { 60, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 60, 1, 0, 0, { 0, 38, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 3, 39, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 3, 39, 0, 0, { 57, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8208e54 */ + &s_gs150_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs150_g0_sectors[] = { /* 0x8208e58 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs150_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs150_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs150_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs150_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs150_g1_sectors[] = { /* 0x8208f20 */ + { LPARRAY(s_gs150_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs150_groups[] = { /* 0x8208f48 */ + { LPARRAY(s_gs150_g0_sectors) }, + { LPARRAY(s_gs150_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs150_links[] = { /* 0x8208f60 */ + /* link 0 */ { { /*x*/ 27, /*y*/ 11, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 48, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 6, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 47, /*y*/ 9, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 7, /*y*/ 9, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 27, /*y*/ 24, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs150 = { LPARRAY(s_gs150_groups), s_gs150_links }; /* 0x8208f90 */ diff --git a/src/data/ground/ground_data_h23p01_station.h b/src/data/ground/ground_data_h23p01_station.h new file mode 100644 index 000000000..6253c84d4 --- /dev/null +++ b/src/data/ground/ground_data_h23p01_station.h @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs151_g0_s0_station_sref_script[] = { /* 0x8208fa4 */ + DEBUGINFO, + SELECT_MAP(151), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(2), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs151_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs151_g0_s0_station_sref_script }; /* 0x8209220 */ + +static const struct ScriptCommand s_gs151_g0_s1_lives0_dlg0[] = { /* 0x820922c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs151_g0_s1_lives1_dlg0[] = { /* 0x820926c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs151_g0_s3_lives0_dlg0[] = { /* 0x82092ac */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs151_g0_s3_lives1_dlg0[] = { /* 0x82092ec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs151_g0_s4_lives0_dlg0[] = { /* 0x820932c */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs151_g0_s4_lives1_dlg0[] = { /* 0x820935c */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives0_dlg1[] = { /* 0x820938c */ + DEBUGINFO, + { 0x51, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives0_dlg2[] = { /* 0x82093bc */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives1_dlg1[] = { /* 0x82093dc */ + DEBUGINFO, + { 0x51, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives1_dlg2[] = { /* 0x820940c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives2_dlg1[] = { /* 0x820942c */ + DEBUGINFO, + { 0x51, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives2_dlg2[] = { /* 0x820945c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives3_dlg1[] = { /* 0x820947c */ + DEBUGINFO, + { 0x51, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives3_dlg2[] = { /* 0x82094ac */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives4_dlg1[] = { /* 0x82094cc */ + DEBUGINFO, + { 0x51, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives4_dlg2[] = { /* 0x82094fc */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives5_dlg1[] = { /* 0x820951c */ + DEBUGINFO, + { 0x51, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives5_dlg2[] = { /* 0x820954c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives6_dlg1[] = { /* 0x820956c */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives6_dlg2[] = { /* 0x820959c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives7_dlg1[] = { /* 0x82095bc */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives7_dlg2[] = { /* 0x82095ec */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives8_dlg1[] = { /* 0x820960c */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives8_dlg2[] = { /* 0x820963c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives9_dlg1[] = { /* 0x820965c */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives9_dlg2[] = { /* 0x820968c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives10_dlg1[] = { /* 0x82096ac */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives10_dlg2[] = { /* 0x82096dc */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives11_dlg1[] = { /* 0x82096fc */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives11_dlg2[] = { /* 0x820972c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives12_dlg1[] = { /* 0x820974c */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs151_g1_s0_lives12_dlg2[] = { /* 0x820977c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs151_g0_s1_lives[] = { /* 0x820979c */ + /* 0 */ { 0, 4, 0, 0, { 32, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs151_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 33, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs151_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs151_g0_s3_lives[] = { /* 0x82097cc */ + /* 0 */ { 0, 4, 0, 0, { 32, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs151_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 33, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs151_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs151_g0_s4_lives[] = { /* 0x82097fc */ + /* 0 */ { 0, 0, 0, 0, { 32, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs151_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 33, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs151_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs151_g1_s0_lives[] = { /* 0x820982c */ + /* 0 */ { 14, 0, 0, 0, { 33, 25, 0, CPOS_HALFTILE }, { + [1] = s_gs151_g1_s0_lives0_dlg1, + [2] = s_gs151_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 39, 23, 0, CPOS_HALFTILE }, { + [1] = s_gs151_g1_s0_lives1_dlg1, + [2] = s_gs151_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 33, 18, 0, CPOS_HALFTILE }, { + [1] = s_gs151_g1_s0_lives2_dlg1, + [2] = s_gs151_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 39, 17, 0, CPOS_HALFTILE }, { + [1] = s_gs151_g1_s0_lives3_dlg1, + [2] = s_gs151_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 33, 12, 0, CPOS_HALFTILE }, { + [1] = s_gs151_g1_s0_lives4_dlg1, + [2] = s_gs151_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 27, 16, 0, CPOS_HALFTILE }, { + [1] = s_gs151_g1_s0_lives5_dlg1, + [2] = s_gs151_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 45, 19, 0, CPOS_HALFTILE }, { + [1] = s_gs151_g1_s0_lives6_dlg1, + [2] = s_gs151_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 21, 0, 0, 0, { 27, 10, 0, CPOS_HALFTILE }, { + [1] = s_gs151_g1_s0_lives7_dlg1, + [2] = s_gs151_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 22, 0, 0, 0, { 45, 13, 0, CPOS_HALFTILE }, { + [1] = s_gs151_g1_s0_lives8_dlg1, + [2] = s_gs151_g1_s0_lives8_dlg2, + } }, + /* 9 */ { 23, 0, 0, 0, { 21, 16, 0, CPOS_HALFTILE }, { + [1] = s_gs151_g1_s0_lives9_dlg1, + [2] = s_gs151_g1_s0_lives9_dlg2, + } }, + /* 10 */ { 24, 0, 0, 0, { 51, 11, 0, CPOS_HALFTILE }, { + [1] = s_gs151_g1_s0_lives10_dlg1, + [2] = s_gs151_g1_s0_lives10_dlg2, + } }, + /* 11 */ { 25, 0, 0, 0, { 15, 12, 0, CPOS_HALFTILE }, { + [1] = s_gs151_g1_s0_lives11_dlg1, + [2] = s_gs151_g1_s0_lives11_dlg2, + } }, + /* 12 */ { 26, 0, 0, 0, { 9, 11, 0, CPOS_HALFTILE }, { + [1] = s_gs151_g1_s0_lives12_dlg1, + [2] = s_gs151_g1_s0_lives12_dlg2, + } }, +}; + +static const struct GroundEventData s_gs151_g0_s0_evts[] = { /* 0x8209964 */ + /* 0 */ { 57, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 57, 1, 0, 0, { 0, 38, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 1, 39, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 1, 39, 0, 0, { 56, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8209994 */ + &s_gs151_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs151_g0_sectors[] = { /* 0x8209998 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs151_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs151_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs151_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs151_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs151_g1_sectors[] = { /* 0x8209a60 */ + { LPARRAY(s_gs151_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs151_groups[] = { /* 0x8209a88 */ + { LPARRAY(s_gs151_g0_sectors) }, + { LPARRAY(s_gs151_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs151_links[] = { /* 0x8209aa0 */ + /* link 0 */ { { /*x*/ 6, /*y*/ 9, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 12, /*y*/ 10, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 48, /*y*/ 9, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 18, /*y*/ 14, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 42, /*y*/ 11, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 24, /*y*/ 8, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 42, /*y*/ 17, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 7 */ { { /*x*/ 24, /*y*/ 14, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 8 */ { { /*x*/ 30, /*y*/ 10, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 9 */ { { /*x*/ 36, /*y*/ 15, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 10 */ { { /*x*/ 30, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 11 */ { { /*x*/ 36, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 12 */ { { /*x*/ 30, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs151 = { LPARRAY(s_gs151_groups), s_gs151_links }; /* 0x8209b08 */ diff --git a/src/data/ground/ground_data_h24p01_station.h b/src/data/ground/ground_data_h24p01_station.h new file mode 100644 index 000000000..8a66a0535 --- /dev/null +++ b/src/data/ground/ground_data_h24p01_station.h @@ -0,0 +1,272 @@ + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs152_g0_s0_station_sref_script[] = { /* 0x8209b1c */ + DEBUGINFO, + SELECT_MAP(152), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(106), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs152_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs152_g0_s0_station_sref_script }; /* 0x8209d98 */ + +static const struct ScriptCommand s_gs152_g0_s1_lives0_dlg0[] = { /* 0x8209da4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs152_g0_s1_lives1_dlg0[] = { /* 0x8209de4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs152_g0_s3_lives0_dlg0[] = { /* 0x8209e24 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs152_g0_s3_lives1_dlg0[] = { /* 0x8209e64 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs152_g0_s4_lives0_dlg0[] = { /* 0x8209ea4 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs152_g0_s4_lives1_dlg0[] = { /* 0x8209ed4 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs152_g1_s0_lives0_dlg1[] = { /* 0x8209f04 */ + DEBUGINFO, + { 0x51, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs152_g1_s0_lives0_dlg2[] = { /* 0x8209f34 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs152_g1_s0_lives1_dlg1[] = { /* 0x8209f54 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs152_g1_s0_lives1_dlg2[] = { /* 0x8209f84 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs152_g1_s0_lives2_dlg1[] = { /* 0x8209fa4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs152_g1_s0_lives2_dlg2[] = { /* 0x8209fd4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs152_g1_s0_lives3_dlg1[] = { /* 0x8209ff4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs152_g1_s0_lives3_dlg2[] = { /* 0x820a024 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs152_g1_s0_lives4_dlg1[] = { /* 0x820a044 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs152_g1_s0_lives4_dlg2[] = { /* 0x820a074 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs152_g1_s0_lives5_dlg1[] = { /* 0x820a094 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs152_g1_s0_lives5_dlg2[] = { /* 0x820a0c4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs152_g1_s0_lives6_dlg1[] = { /* 0x820a0e4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs152_g1_s0_lives6_dlg2[] = { /* 0x820a114 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs152_g0_s1_lives[] = { /* 0x820a134 */ + /* 0 */ { 0, 4, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs152_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs152_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs152_g0_s3_lives[] = { /* 0x820a164 */ + /* 0 */ { 0, 4, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs152_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs152_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs152_g0_s4_lives[] = { /* 0x820a194 */ + /* 0 */ { 0, 0, 0, 0, { 30, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs152_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 30, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs152_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs152_g1_s0_lives[] = { /* 0x820a1c4 */ + /* 0 */ { 14, 0, 0, 0, { 30, 23, 0, CPOS_HALFTILE }, { + [1] = s_gs152_g1_s0_lives0_dlg1, + [2] = s_gs152_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 24, 20, 0, CPOS_HALFTILE }, { + [1] = s_gs152_g1_s0_lives1_dlg1, + [2] = s_gs152_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 36, 20, 0, CPOS_HALFTILE }, { + [1] = s_gs152_g1_s0_lives2_dlg1, + [2] = s_gs152_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 17, 29, 0, CPOS_HALFTILE }, { + [1] = s_gs152_g1_s0_lives3_dlg1, + [2] = s_gs152_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 43, 29, 0, CPOS_HALFTILE }, { + [1] = s_gs152_g1_s0_lives4_dlg1, + [2] = s_gs152_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 17, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs152_g1_s0_lives5_dlg1, + [2] = s_gs152_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 20, 0, 0, 0, { 43, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs152_g1_s0_lives6_dlg1, + [2] = s_gs152_g1_s0_lives6_dlg2, + } }, +}; + +static const struct GroundEventData s_gs152_g0_s0_evts[] = { /* 0x820a26c */ + /* 0 */ { 60, 1, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 60, 1, 0, 0, { 0, 44, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 1, 45, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 1, 45, 0, 0, { 59, 1, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x820a29c */ + &s_gs152_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs152_g0_sectors[] = { /* 0x820a2a0 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs152_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs152_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs152_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs152_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs152_g1_sectors[] = { /* 0x820a368 */ + { LPARRAY(s_gs152_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs152_groups[] = { /* 0x820a390 */ + { LPARRAY(s_gs152_g0_sectors) }, + { LPARRAY(s_gs152_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs152_links[] = { /* 0x820a3a8 */ + /* link 0 */ { { /*x*/ 40, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 14, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 40, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 14, /*y*/ 27, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 33, /*y*/ 18, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 21, /*y*/ 18, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 27, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs152 = { LPARRAY(s_gs152_groups), s_gs152_links }; /* 0x820a3e0 */ diff --git a/src/data/ground/ground_data_h25p01_station.h b/src/data/ground/ground_data_h25p01_station.h new file mode 100644 index 000000000..203c63649 --- /dev/null +++ b/src/data/ground/ground_data_h25p01_station.h @@ -0,0 +1,255 @@ + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs153_g0_s0_station_sref_script[] = { /* 0x820a3f4 */ + DEBUGINFO, + SELECT_MAP(153), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(106), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs153_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs153_g0_s0_station_sref_script }; /* 0x820a670 */ + +static const struct ScriptCommand s_gs153_g0_s1_lives0_dlg0[] = { /* 0x820a67c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs153_g0_s1_lives1_dlg0[] = { /* 0x820a6bc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs153_g0_s3_lives0_dlg0[] = { /* 0x820a6fc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs153_g0_s3_lives1_dlg0[] = { /* 0x820a73c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs153_g0_s4_lives0_dlg0[] = { /* 0x820a77c */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs153_g0_s4_lives1_dlg0[] = { /* 0x820a7ac */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs153_g1_s0_lives0_dlg1[] = { /* 0x820a7dc */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs153_g1_s0_lives0_dlg2[] = { /* 0x820a80c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs153_g1_s0_lives1_dlg1[] = { /* 0x820a82c */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs153_g1_s0_lives1_dlg2[] = { /* 0x820a85c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs153_g1_s0_lives2_dlg1[] = { /* 0x820a87c */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs153_g1_s0_lives2_dlg2[] = { /* 0x820a8ac */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs153_g1_s0_lives3_dlg1[] = { /* 0x820a8cc */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs153_g1_s0_lives3_dlg2[] = { /* 0x820a8fc */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs153_g1_s0_lives4_dlg1[] = { /* 0x820a91c */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs153_g1_s0_lives4_dlg2[] = { /* 0x820a94c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs153_g1_s0_lives5_dlg1[] = { /* 0x820a96c */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs153_g1_s0_lives5_dlg2[] = { /* 0x820a99c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs153_g0_s1_lives[] = { /* 0x820a9bc */ + /* 0 */ { 0, 4, 0, 0, { 32, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs153_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 32, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs153_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs153_g0_s3_lives[] = { /* 0x820a9ec */ + /* 0 */ { 0, 4, 0, 0, { 32, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs153_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 32, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs153_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs153_g0_s4_lives[] = { /* 0x820aa1c */ + /* 0 */ { 0, 0, 0, 0, { 32, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs153_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 32, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs153_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs153_g1_s0_lives[] = { /* 0x820aa4c */ + /* 0 */ { 14, 0, 0, 0, { 29, 23, 0, CPOS_HALFTILE }, { + [1] = s_gs153_g1_s0_lives0_dlg1, + [2] = s_gs153_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 31, 15, 0, CPOS_HALFTILE }, { + [1] = s_gs153_g1_s0_lives1_dlg1, + [2] = s_gs153_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 21, 14, 0, CPOS_HALFTILE }, { + [1] = s_gs153_g1_s0_lives2_dlg1, + [2] = s_gs153_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 13, 6, 0, CPOS_HALFTILE }, { + [1] = s_gs153_g1_s0_lives3_dlg1, + [2] = s_gs153_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 44, 12, 0, CPOS_HALFTILE }, { + [1] = s_gs153_g1_s0_lives4_dlg1, + [2] = s_gs153_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 37, 10, 0, CPOS_HALFTILE }, { + [1] = s_gs153_g1_s0_lives5_dlg1, + [2] = s_gs153_g1_s0_lives5_dlg2, + } }, +}; + +static const struct GroundEventData s_gs153_g0_s0_evts[] = { /* 0x820aadc */ + /* 0 */ { 60, 1, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 60, 1, 0, 0, { 0, 35, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 1, 36, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 1, 36, 0, 0, { 59, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x820ab0c */ + &s_gs153_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs153_g0_sectors[] = { /* 0x820ab10 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs153_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs153_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs153_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs153_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs153_g1_sectors[] = { /* 0x820abd8 */ + { LPARRAY(s_gs153_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs153_groups[] = { /* 0x820ac00 */ + { LPARRAY(s_gs153_g0_sectors) }, + { LPARRAY(s_gs153_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs153_links[] = { /* 0x820ac18 */ + /* link 0 */ { { /*x*/ 34, /*y*/ 7, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 41, /*y*/ 9, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 10, /*y*/ 4, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 18, /*y*/ 12, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 28, /*y*/ 13, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 26, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs153 = { LPARRAY(s_gs153_groups), s_gs153_links }; /* 0x820ac48 */ diff --git a/src/data/ground/ground_data_h26p01_station.h b/src/data/ground/ground_data_h26p01_station.h new file mode 100644 index 000000000..61aba7883 --- /dev/null +++ b/src/data/ground/ground_data_h26p01_station.h @@ -0,0 +1,170 @@ + + + + + + + + + +static const struct ScriptCommand s_gs154_g0_s0_station_sref_script[] = { /* 0x820ac5c */ + DEBUGINFO, + SELECT_MAP(154), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(34), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs154_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs154_g0_s0_station_sref_script }; /* 0x820aed8 */ + +static const struct ScriptCommand s_gs154_g0_s1_lives0_dlg0[] = { /* 0x820aee4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs154_g0_s1_lives1_dlg0[] = { /* 0x820af24 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs154_g0_s3_lives0_dlg0[] = { /* 0x820af64 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs154_g0_s3_lives1_dlg0[] = { /* 0x820afa4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs154_g0_s4_lives0_dlg0[] = { /* 0x820afe4 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs154_g0_s4_lives1_dlg0[] = { /* 0x820b014 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs154_g1_s0_lives0_dlg1[] = { /* 0x820b044 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs154_g1_s0_lives0_dlg2[] = { /* 0x820b074 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs154_g0_s1_lives[] = { /* 0x820b094 */ + /* 0 */ { 0, 4, 0, 0, { 30, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs154_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs154_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs154_g0_s3_lives[] = { /* 0x820b0c4 */ + /* 0 */ { 0, 4, 0, 0, { 30, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs154_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs154_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs154_g0_s4_lives[] = { /* 0x820b0f4 */ + /* 0 */ { 0, 0, 0, 0, { 30, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs154_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs154_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs154_g1_s0_lives[] = { /* 0x820b124 */ + /* 0 */ { 14, 0, 0, 0, { 30, 20, 0, CPOS_HALFTILE }, { + [1] = s_gs154_g1_s0_lives0_dlg1, + [2] = s_gs154_g1_s0_lives0_dlg2, + } }, +}; + +static const struct GroundEventData s_gs154_g0_s0_evts[] = { /* 0x820b13c */ + /* 0 */ { 60, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 60, 1, 0, 0, { 0, 38, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 3, 39, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 3, 39, 0, 0, { 57, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x820b16c */ + &s_gs154_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs154_g0_sectors[] = { /* 0x820b170 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs154_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs154_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs154_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs154_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs154_g1_sectors[] = { /* 0x820b238 */ + { LPARRAY(s_gs154_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs154_groups[] = { /* 0x820b260 */ + { LPARRAY(s_gs154_g0_sectors) }, + { LPARRAY(s_gs154_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs154_links[] = { /* 0x820b278 */ + /* link 0 */ { { /*x*/ 27, /*y*/ 17, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs154 = { LPARRAY(s_gs154_groups), s_gs154_links }; /* 0x820b280 */ diff --git a/src/data/ground/ground_data_h27p01_station.h b/src/data/ground/ground_data_h27p01_station.h new file mode 100644 index 000000000..551f85eec --- /dev/null +++ b/src/data/ground/ground_data_h27p01_station.h @@ -0,0 +1,170 @@ + + + + + + + + + +static const struct ScriptCommand s_gs155_g0_s0_station_sref_script[] = { /* 0x820b294 */ + DEBUGINFO, + SELECT_MAP(155), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(27), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs155_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs155_g0_s0_station_sref_script }; /* 0x820b510 */ + +static const struct ScriptCommand s_gs155_g0_s1_lives0_dlg0[] = { /* 0x820b51c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs155_g0_s1_lives1_dlg0[] = { /* 0x820b55c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs155_g0_s3_lives0_dlg0[] = { /* 0x820b59c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs155_g0_s3_lives1_dlg0[] = { /* 0x820b5dc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs155_g0_s4_lives0_dlg0[] = { /* 0x820b61c */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs155_g0_s4_lives1_dlg0[] = { /* 0x820b64c */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs155_g1_s0_lives0_dlg1[] = { /* 0x820b67c */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs155_g1_s0_lives0_dlg2[] = { /* 0x820b6ac */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs155_g0_s1_lives[] = { /* 0x820b6cc */ + /* 0 */ { 0, 4, 0, 0, { 30, 32, 0, CPOS_HALFTILE }, { + [0] = s_gs155_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs155_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs155_g0_s3_lives[] = { /* 0x820b6fc */ + /* 0 */ { 0, 4, 0, 0, { 30, 32, 0, CPOS_HALFTILE }, { + [0] = s_gs155_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs155_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs155_g0_s4_lives[] = { /* 0x820b72c */ + /* 0 */ { 0, 0, 0, 0, { 30, 32, 0, CPOS_HALFTILE }, { + [0] = s_gs155_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 30, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs155_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs155_g1_s0_lives[] = { /* 0x820b75c */ + /* 0 */ { 14, 0, 0, 0, { 30, 10, 0, CPOS_HALFTILE }, { + [1] = s_gs155_g1_s0_lives0_dlg1, + [2] = s_gs155_g1_s0_lives0_dlg2, + } }, +}; + +static const struct GroundEventData s_gs155_g0_s0_evts[] = { /* 0x820b774 */ + /* 0 */ { 60, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 60, 1, 0, 0, { 0, 38, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 3, 39, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 3, 39, 0, 0, { 57, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x820b7a4 */ + &s_gs155_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs155_g0_sectors[] = { /* 0x820b7a8 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs155_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs155_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs155_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs155_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs155_g1_sectors[] = { /* 0x820b870 */ + { LPARRAY(s_gs155_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs155_groups[] = { /* 0x820b898 */ + { LPARRAY(s_gs155_g0_sectors) }, + { LPARRAY(s_gs155_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs155_links[] = { /* 0x820b8b0 */ + /* link 0 */ { { /*x*/ 26, /*y*/ 9, /*flags*/ 0, 0 }, /*w*/ 8, /*h*/ 5, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs155 = { LPARRAY(s_gs155_groups), s_gs155_links }; /* 0x820b8b8 */ diff --git a/src/data/ground/ground_data_h28p01_station.h b/src/data/ground/ground_data_h28p01_station.h new file mode 100644 index 000000000..eff12cc5e --- /dev/null +++ b/src/data/ground/ground_data_h28p01_station.h @@ -0,0 +1,255 @@ + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs156_g0_s0_station_sref_script[] = { /* 0x820b8cc */ + DEBUGINFO, + SELECT_MAP(156), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(116), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs156_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs156_g0_s0_station_sref_script }; /* 0x820bb48 */ + +static const struct ScriptCommand s_gs156_g0_s1_lives0_dlg0[] = { /* 0x820bb54 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs156_g0_s1_lives1_dlg0[] = { /* 0x820bb94 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs156_g0_s3_lives0_dlg0[] = { /* 0x820bbd4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs156_g0_s3_lives1_dlg0[] = { /* 0x820bc14 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs156_g0_s4_lives0_dlg0[] = { /* 0x820bc54 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs156_g0_s4_lives1_dlg0[] = { /* 0x820bc84 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs156_g1_s0_lives0_dlg1[] = { /* 0x820bcb4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs156_g1_s0_lives0_dlg2[] = { /* 0x820bce4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs156_g1_s0_lives1_dlg1[] = { /* 0x820bd04 */ + DEBUGINFO, + { 0x51, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs156_g1_s0_lives1_dlg2[] = { /* 0x820bd34 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs156_g1_s0_lives2_dlg1[] = { /* 0x820bd54 */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs156_g1_s0_lives2_dlg2[] = { /* 0x820bd84 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs156_g1_s0_lives3_dlg1[] = { /* 0x820bda4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs156_g1_s0_lives3_dlg2[] = { /* 0x820bdd4 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs156_g1_s0_lives4_dlg1[] = { /* 0x820bdf4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs156_g1_s0_lives4_dlg2[] = { /* 0x820be24 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs156_g1_s0_lives5_dlg1[] = { /* 0x820be44 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs156_g1_s0_lives5_dlg2[] = { /* 0x820be74 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs156_g0_s1_lives[] = { /* 0x820be94 */ + /* 0 */ { 0, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs156_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 34, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs156_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs156_g0_s3_lives[] = { /* 0x820bec4 */ + /* 0 */ { 0, 4, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs156_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 34, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs156_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs156_g0_s4_lives[] = { /* 0x820bef4 */ + /* 0 */ { 0, 0, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs156_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 34, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs156_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs156_g1_s0_lives[] = { /* 0x820bf24 */ + /* 0 */ { 14, 0, 0, 0, { 31, 22, 0, CPOS_HALFTILE }, { + [1] = s_gs156_g1_s0_lives0_dlg1, + [2] = s_gs156_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 15, 18, 0, CPOS_HALFTILE }, { + [1] = s_gs156_g1_s0_lives1_dlg1, + [2] = s_gs156_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 50, 8, 0, CPOS_HALFTILE }, { + [1] = s_gs156_g1_s0_lives2_dlg1, + [2] = s_gs156_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 32, 8, 0, CPOS_HALFTILE }, { + [1] = s_gs156_g1_s0_lives3_dlg1, + [2] = s_gs156_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 18, 0, 0, 0, { 25, 13, 0, CPOS_HALFTILE }, { + [1] = s_gs156_g1_s0_lives4_dlg1, + [2] = s_gs156_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 19, 0, 0, 0, { 33, 14, 0, CPOS_HALFTILE }, { + [1] = s_gs156_g1_s0_lives5_dlg1, + [2] = s_gs156_g1_s0_lives5_dlg2, + } }, +}; + +static const struct GroundEventData s_gs156_g0_s0_evts[] = { /* 0x820bfb4 */ + /* 0 */ { 60, 1, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 60, 1, 0, 0, { 0, 38, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 3, 39, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 3, 39, 0, 0, { 57, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x820bfe4 */ + &s_gs156_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs156_g0_sectors[] = { /* 0x820bfe8 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs156_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs156_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs156_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs156_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs156_g1_sectors[] = { /* 0x820c0b0 */ + { LPARRAY(s_gs156_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs156_groups[] = { /* 0x820c0d8 */ + { LPARRAY(s_gs156_g0_sectors) }, + { LPARRAY(s_gs156_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs156_links[] = { /* 0x820c0f0 */ + /* link 0 */ { { /*x*/ 47, /*y*/ 5, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 12, /*y*/ 15, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 29, /*y*/ 6, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 30, /*y*/ 13, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 22, /*y*/ 11, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 5 */ { { /*x*/ 29, /*y*/ 20, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs156 = { LPARRAY(s_gs156_groups), s_gs156_links }; /* 0x820c120 */ diff --git a/src/data/ground/ground_data_h28p02_station.h b/src/data/ground/ground_data_h28p02_station.h new file mode 100644 index 000000000..f20d46781 --- /dev/null +++ b/src/data/ground/ground_data_h28p02_station.h @@ -0,0 +1,218 @@ + + + + + + + + + + + + +static const struct ScriptCommand s_gs157_g0_s0_station_sref_script[] = { /* 0x820c134 */ + DEBUGINFO, + SELECT_MAP(157), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(116), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs157_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs157_g0_s0_station_sref_script }; /* 0x820c3b0 */ + +static const struct ScriptCommand s_gs157_g0_s1_lives0_dlg0[] = { /* 0x820c3bc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs157_g0_s1_lives1_dlg0[] = { /* 0x820c3fc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs157_g0_s3_lives0_dlg0[] = { /* 0x820c43c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs157_g0_s3_lives1_dlg0[] = { /* 0x820c47c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs157_g0_s4_lives0_dlg0[] = { /* 0x820c4bc */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs157_g0_s4_lives1_dlg0[] = { /* 0x820c4ec */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs157_g1_s0_lives0_dlg1[] = { /* 0x820c51c */ + DEBUGINFO, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs157_g1_s0_lives0_dlg2[] = { /* 0x820c54c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs157_g1_s0_lives1_dlg1[] = { /* 0x820c56c */ + DEBUGINFO, + { 0x51, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs157_g1_s0_lives1_dlg2[] = { /* 0x820c59c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs157_g1_s0_lives2_dlg1[] = { /* 0x820c5bc */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs157_g1_s0_lives2_dlg2[] = { /* 0x820c5ec */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs157_g1_s0_lives3_dlg1[] = { /* 0x820c60c */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs157_g1_s0_lives3_dlg2[] = { /* 0x820c63c */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs157_g0_s1_lives[] = { /* 0x820c65c */ + /* 0 */ { 0, 4, 0, 0, { 35, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs157_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 25, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs157_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs157_g0_s3_lives[] = { /* 0x820c68c */ + /* 0 */ { 0, 4, 0, 0, { 35, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs157_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 25, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs157_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs157_g0_s4_lives[] = { /* 0x820c6bc */ + /* 0 */ { 0, 0, 0, 0, { 35, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs157_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 25, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs157_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs157_g1_s0_lives[] = { /* 0x820c6ec */ + /* 0 */ { 14, 0, 0, 0, { 30, 32, 0, CPOS_HALFTILE }, { + [1] = s_gs157_g1_s0_lives0_dlg1, + [2] = s_gs157_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 17, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs157_g1_s0_lives1_dlg1, + [2] = s_gs157_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 0, 0, 0, { 45, 24, 0, CPOS_HALFTILE }, { + [1] = s_gs157_g1_s0_lives2_dlg1, + [2] = s_gs157_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 17, 0, 0, 0, { 30, 19, 0, CPOS_HALFTILE }, { + [1] = s_gs157_g1_s0_lives3_dlg1, + [2] = s_gs157_g1_s0_lives3_dlg2, + } }, +}; + +static const struct GroundEventData s_gs157_g0_s0_evts[] = { /* 0x820c74c */ + /* 0 */ { 60, 1, 0, 0, { 0, 38, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x820c758 */ + &s_gs157_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs157_g0_sectors[] = { /* 0x820c75c */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs157_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs157_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs157_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs157_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs157_g1_sectors[] = { /* 0x820c824 */ + { LPARRAY(s_gs157_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs157_groups[] = { /* 0x820c84c */ + { LPARRAY(s_gs157_g0_sectors) }, + { LPARRAY(s_gs157_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs157_links[] = { /* 0x820c864 */ + /* link 0 */ { { /*x*/ 27, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 42, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 14, /*y*/ 22, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 3 */ { { /*x*/ 27, /*y*/ 29, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs157 = { LPARRAY(s_gs157_groups), s_gs157_links }; /* 0x820c884 */ diff --git a/src/data/ground/ground_data_h29p01_station.h b/src/data/ground/ground_data_h29p01_station.h new file mode 100644 index 000000000..8ce53f823 --- /dev/null +++ b/src/data/ground/ground_data_h29p01_station.h @@ -0,0 +1,657 @@ + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs158_g0_s0_station_sref_script[] = { /* 0x820c898 */ + DEBUGINFO, + SELECT_MAP(158), + JUMPIF_SCENE_EQ(SCENARIO_SUB2, 34, 2, /* to label */ 0), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 1), + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(4), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(4), + LABEL(2), /* = 0x02 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(4), + LABEL(0), /* = 0x00 */ + { 0x3b, 0x21, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 2), + { 0x3b, 0x22, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 2), + JUMP_SCRIPT(EVENT_S02E02A_L002), + LABEL(4), /* = 0x04 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 7), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 7), + JUMP_LABEL(5), + LABEL(7), /* = 0x07 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 8), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(9), + LABEL(6), /* = 0x06 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(9), + LABEL(8), /* = 0x08 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(9), + LABEL(9), /* = 0x09 */ + BGM_SWITCH(117), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs158_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs158_g0_s0_station_sref_script }; /* 0x820cb74 */ + +static const struct ScriptCommand s_gs158_g0_s1_lives0_dlg0[] = { /* 0x820cb80 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs158_g0_s1_lives1_dlg0[] = { /* 0x820cbc0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs158_g0_s3_lives0_dlg0[] = { /* 0x820cc00 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs158_g0_s3_lives1_dlg0[] = { /* 0x820cc40 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs158_g0_s4_lives0_dlg0[] = { /* 0x820cc80 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs158_g0_s4_lives1_dlg0[] = { /* 0x820ccb0 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs158_g1_s0_lives0_dlg1[] = { /* 0x820cce0 */ + DEBUGINFO, + CJUMP_UNK_C6(14), + COND_EQUAL(144, /* to label */ 0), + COND_EQUAL(145, /* to label */ 1), + COND_EQUAL(146, /* to label */ 2), + END_DELETE, + LABEL(0), /* = 0x00 */ + { 0x5b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), + LABEL(1), /* = 0x01 */ + { 0x5b, 0x00, 0x0000, 0x00000002, 0x00000000, NULL }, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), + LABEL(2), /* = 0x02 */ + { 0x5b, 0x00, 0x0000, 0x00000004, 0x00000000, NULL }, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs158_g1_s0_lives0_dlg2[] = { /* 0x820ce00 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs158_g1_s0_lives1_dlg1[] = { /* 0x820ce20 */ + DEBUGINFO, + CJUMP_UNK_C6(15), + COND_EQUAL(144, /* to label */ 0), + COND_EQUAL(145, /* to label */ 1), + COND_EQUAL(146, /* to label */ 2), + END_DELETE, + LABEL(0), /* = 0x00 */ + { 0x5b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), + LABEL(1), /* = 0x01 */ + { 0x5b, 0x00, 0x0000, 0x00000002, 0x00000000, NULL }, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), + LABEL(2), /* = 0x02 */ + { 0x5b, 0x00, 0x0000, 0x00000004, 0x00000000, NULL }, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs158_g1_s0_lives1_dlg2[] = { /* 0x820cf40 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs158_g1_s0_lives2_dlg1[] = { /* 0x820cf60 */ + DEBUGINFO, + CJUMP_UNK_C6(16), + COND_EQUAL(144, /* to label */ 0), + COND_EQUAL(145, /* to label */ 1), + COND_EQUAL(146, /* to label */ 2), + END_DELETE, + LABEL(0), /* = 0x00 */ + { 0x5b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), + LABEL(1), /* = 0x01 */ + { 0x5b, 0x00, 0x0000, 0x00000002, 0x00000000, NULL }, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), + LABEL(2), /* = 0x02 */ + { 0x5b, 0x00, 0x0000, 0x00000004, 0x00000000, NULL }, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs158_g1_s0_lives2_dlg2[] = { /* 0x820d080 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs158_g2_s0_station_sref_script[] = { /* 0x820d0a0 */ + DEBUGINFO, + SELECT_MAP(158), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(117), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + WAIT(60), + BGM_FADEOUT(30), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + WAIT(120), + RET, +}; + +static const struct ScriptRef s_gs158_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs158_g2_s0_station_sref_script }; /* 0x820d150 */ + +static const struct ScriptCommand s_gs158_g2_s0_eff0_script[] = { /* 0x820d15c */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x0000000a, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x0000000b, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x0000000c, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs158_g2_s0_lives0_dlg0[] = { /* 0x820d22c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00040000, 0x00000000, NULL }, + { 0x89, 0x30, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x08, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x08, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(60), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x0001, 0x00000005, 0x00ff1010, NULL }, + FANFARE_PLAY2(502), + { 0x27, 0x01, 0x0001, 0x00000005, 0x00ff1010, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x0001, 0x00000005, 0x00ffff10, NULL }, + FANFARE_PLAY2(502), + { 0x27, 0x01, 0x0001, 0x00000005, 0x00ffff10, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(506), + { 0x28, 0x01, 0x0001, 0x00000005, 0x00ffffff, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x27, 0x01, 0x0001, 0x0000003c, 0x00ffffff, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x6b, 0x00, 0x0100, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x0b, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Fire, ice, and electricity...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" When the three powers\nmerge as one...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The guardian of the sea is\nsaid to arise.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Our arrival at the\n#CHLegendary Island#R...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The three of us caused\nthe sea guardian to awaken.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It is what caused whirlpools\nto grow into tornadoes.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I have here the\n#C4Vortex Stone#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Bearing it, you will gain\npassage through the sea's tornadoes...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It will lead you to a place\ncalled the #CDSilver Trench#R.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There, you will find the\nguardian of the sea.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Now go.\nThe guardian of the sea awaits you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6a, 0x00, 0x0080, 0x00000000, -0x00000010, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(30), + BGM_STOP, + FANFARE_PLAY(212), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Obtained the #C4Vortex Stone#R.") }, + { 0xe1, 0x00, 0x00d4, 0x00000000, 0x00000000, NULL }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+And...") }, + FANFARE_PLAY(205), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Gained access to\n#+the #CDSilver Trench#R!") }, + { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs158_g2_s0_lives1_dlg0[] = { /* 0x820db5c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, -0x0004, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0400, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(497), + { 0x54, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0080, 0x0000000a, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0100, 0x00000014, 0x00000000, NULL }, + { 0x70, 0x00, 0x0300, 0x00000064, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs158_g2_s0_lives2_dlg0[] = { /* 0x820dccc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x54, 0x00, 0x0400, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0080, 0x0000000a, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0100, 0x00000014, 0x00000000, NULL }, + FANFARE_PLAY2(504), + { 0x70, 0x00, 0x0300, 0x00000064, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x00000007, 0x00000000, NULL }, + { 0x8b, 0x04, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0100, 0x00000014, 0x00000000, NULL }, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0080, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0400, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(497), + { 0x54, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs158_g2_s0_lives3_dlg0[] = { /* 0x820df0c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x54, 0x00, 0x0400, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0080, 0x0000000a, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0100, 0x00000014, 0x00000000, NULL }, + FANFARE_PLAY2(504), + { 0x70, 0x00, 0x0300, 0x00000064, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x00000008, 0x00000000, NULL }, + { 0x8b, 0x04, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0100, 0x00000014, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0080, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0400, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(497), + { 0x54, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs158_g2_s0_eff1_script[] = { /* 0x820e14c */ + DEBUGINFO, + { 0x59, 0x00, -0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(485), + { 0x56, 0x00, 0x0000, 0x00000173, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0000, 0x00000174, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0000, 0x00000175, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00020000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs158_g2_s0_lives4_dlg0[] = { /* 0x820e27c */ + DEBUGINFO, + WAIT(4), + CJUMP_UNK_C6(14), + COND_EQUAL(144, /* to label */ 0), + COND_EQUAL(145, /* to label */ 1), + COND_EQUAL(146, /* to label */ 2), + END_DELETE, + LABEL(0), /* = 0x00 */ + { 0x2d, 0x07, 0x0001, 0x0000000e, 0x00000000, NULL }, + END_DELETE, + LABEL(1), /* = 0x01 */ + { 0x2d, 0x07, 0x0002, 0x0000000e, 0x00000000, NULL }, + END_DELETE, + LABEL(2), /* = 0x02 */ + { 0x2d, 0x07, 0x0003, 0x0000000e, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs158_g2_s0_lives4_dlg1[] = { /* 0x820e37c */ + DEBUGINFO, + CJUMP_UNK_C6(14), + COND_EQUAL(144, /* to label */ 0), + COND_EQUAL(145, /* to label */ 1), + COND_EQUAL(146, /* to label */ 2), + END_DELETE, + LABEL(0), /* = 0x00 */ + { 0x5b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), + LABEL(1), /* = 0x01 */ + { 0x5b, 0x00, 0x0000, 0x00000002, 0x00000000, NULL }, + { 0x51, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), + LABEL(2), /* = 0x02 */ + { 0x5b, 0x00, 0x0000, 0x00000004, 0x00000000, NULL }, + { 0x51, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs158_g2_s0_lives5_dlg0[] = { /* 0x820e49c */ + DEBUGINFO, + WAIT(4), + CJUMP_UNK_C6(15), + COND_EQUAL(144, /* to label */ 0), + COND_EQUAL(145, /* to label */ 1), + COND_EQUAL(146, /* to label */ 2), + END_DELETE, + LABEL(0), /* = 0x00 */ + { 0x2d, 0x07, 0x0001, 0x0000000f, 0x00000000, NULL }, + END_DELETE, + LABEL(1), /* = 0x01 */ + { 0x2d, 0x07, 0x0002, 0x0000000f, 0x00000000, NULL }, + END_DELETE, + LABEL(2), /* = 0x02 */ + { 0x2d, 0x07, 0x0003, 0x0000000f, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs158_g2_s0_lives6_dlg0[] = { /* 0x820e59c */ + DEBUGINFO, + WAIT(4), + CJUMP_UNK_C6(16), + COND_EQUAL(144, /* to label */ 0), + COND_EQUAL(145, /* to label */ 1), + COND_EQUAL(146, /* to label */ 2), + END_DELETE, + LABEL(0), /* = 0x00 */ + { 0x2d, 0x07, 0x0001, 0x00000010, 0x00000000, NULL }, + END_DELETE, + LABEL(1), /* = 0x01 */ + { 0x2d, 0x07, 0x0002, 0x00000010, 0x00000000, NULL }, + END_DELETE, + LABEL(2), /* = 0x02 */ + { 0x2d, 0x07, 0x0003, 0x00000010, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct GroundLivesData s_gs158_g0_s1_lives[] = { /* 0x820e69c */ + /* 0 */ { 0, 4, 0, 0, { 30, 26, 0, CPOS_HALFTILE }, { + [0] = s_gs158_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs158_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs158_g0_s3_lives[] = { /* 0x820e6cc */ + /* 0 */ { 0, 4, 0, 0, { 30, 26, 0, CPOS_HALFTILE }, { + [0] = s_gs158_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs158_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs158_g0_s4_lives[] = { /* 0x820e6fc */ + /* 0 */ { 0, 0, 0, 0, { 30, 26, 0, CPOS_HALFTILE }, { + [0] = s_gs158_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 30, 29, 0, CPOS_HALFTILE }, { + [0] = s_gs158_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs158_g1_s0_lives[] = { /* 0x820e72c */ + /* 0 */ { 14, 0, 0, 0, { 30, 4, 0, CPOS_HALFTILE }, { + [1] = s_gs158_g1_s0_lives0_dlg1, + [2] = s_gs158_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 7, 0, 0, { 50, 4, 0, CPOS_HALFTILE }, { + [1] = s_gs158_g1_s0_lives1_dlg1, + [2] = s_gs158_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 16, 1, 0, 0, { 10, 4, 0, CPOS_HALFTILE }, { + [1] = s_gs158_g1_s0_lives2_dlg1, + [2] = s_gs158_g1_s0_lives2_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs158_g2_s0_lives[] = { /* 0x820e774 */ + /* 0 */ { 0, 4, 0, 0, { 30, 32, 0, CPOS_HALFTILE }, { + [0] = s_gs158_g2_s0_lives0_dlg0, + } }, + /* 1 */ { 102, 0, 0, 0, { 30, 14, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs158_g2_s0_lives1_dlg0, + } }, + /* 2 */ { 96, 7, 0, 0, { 49, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs158_g2_s0_lives2_dlg0, + } }, + /* 3 */ { 101, 1, 0, 0, { 9, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs158_g2_s0_lives3_dlg0, + } }, + /* 4 */ { 14, 0, 0, 0, { 30, 0, 0, CPOS_HALFTILE }, { + [0] = s_gs158_g2_s0_lives4_dlg0, + [1] = s_gs158_g2_s0_lives4_dlg1, + } }, + /* 5 */ { 15, 7, 0, 0, { 50, 0, 0, CPOS_HALFTILE }, { + [0] = s_gs158_g2_s0_lives5_dlg0, + } }, + /* 6 */ { 16, 1, 0, 0, { 10, 0, 0, CPOS_HALFTILE }, { + [0] = s_gs158_g2_s0_lives6_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs158_g2_s0_effs[] = { /* 0x820e81c */ + /* 0 */ { 0, 0, 1, 1, { 30, 25, 0, CPOS_HALFTILE }, s_gs158_g2_s0_eff0_script }, + /* 1 */ { 5, 0, 1, 1, { 30, 17, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs158_g2_s0_eff1_script }, +}; + +static const struct GroundEventData s_gs158_g0_s0_evts[] = { /* 0x820e834 */ + /* 0 */ { 60, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 60, 1, 0, 0, { 0, 32, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 1, 33, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 1, 33, 0, 0, { 59, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x820e864 */ + &s_gs158_g0_s0_station_sref, + &s_gs158_g2_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs158_g0_sectors[] = { /* 0x820e86c */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs158_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs158_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs158_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs158_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs158_g1_sectors[] = { /* 0x820e934 */ + { LPARRAY(s_gs158_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs158_g2_sectors[] = { /* 0x820e95c */ + { LPARRAY(s_gs158_g2_s0_lives), 0,NULL, LPARRAY(s_gs158_g2_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs158_groups[] = { /* 0x820e984 */ + { LPARRAY(s_gs158_g0_sectors) }, + { LPARRAY(s_gs158_g1_sectors) }, + { LPARRAY(s_gs158_g2_sectors) }, +}; + +static const struct GroundLink s_gs158_links[] = { /* 0x820e99c */ + /* link 0 */ { { /*x*/ 30, /*y*/ 16, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 27, /*y*/ 14, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 2 */ { { /*x*/ 50, /*y*/ 21, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 3 */ { { /*x*/ 47, /*y*/ 19, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 4 */ { { /*x*/ 10, /*y*/ 21, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 5 */ { { /*x*/ 7, /*y*/ 19, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 6 */ { { /*x*/ 30, /*y*/ 20, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 7 */ { { /*x*/ 35, /*y*/ 16, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 8 */ { { /*x*/ 24, /*y*/ 16, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 9 */ { { /*x*/ 30, /*y*/ 16, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 10 */ { { /*x*/ 9, /*y*/ 21, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 11 */ { { /*x*/ 49, /*y*/ 21, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 12 */ { { /*x*/ 30, /*y*/ 16, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs158 = { LPARRAY(s_gs158_groups), s_gs158_links }; /* 0x820ea04 */ diff --git a/src/data/ground/ground_data_h29p02_station.h b/src/data/ground/ground_data_h29p02_station.h new file mode 100644 index 000000000..9a017c026 --- /dev/null +++ b/src/data/ground/ground_data_h29p02_station.h @@ -0,0 +1,187 @@ + + + + + + + + + + +static const struct ScriptCommand s_gs159_g0_s0_station_sref_script[] = { /* 0x820ea18 */ + DEBUGINFO, + SELECT_MAP(159), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(118), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs159_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs159_g0_s0_station_sref_script }; /* 0x820ec94 */ + +static const struct ScriptCommand s_gs159_g0_s1_lives0_dlg0[] = { /* 0x820eca0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs159_g0_s1_lives1_dlg0[] = { /* 0x820ece0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs159_g0_s3_lives0_dlg0[] = { /* 0x820ed20 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs159_g0_s3_lives1_dlg0[] = { /* 0x820ed60 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs159_g0_s4_lives0_dlg0[] = { /* 0x820eda0 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs159_g0_s4_lives1_dlg0[] = { /* 0x820edd0 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs159_g1_s0_lives0_dlg1[] = { /* 0x820ee00 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs159_g1_s0_lives0_dlg2[] = { /* 0x820ee30 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct ScriptCommand s_gs159_g1_s0_lives1_dlg1[] = { /* 0x820ee50 */ + DEBUGINFO, + { 0x51, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs159_g1_s0_lives1_dlg2[] = { /* 0x820ee80 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs159_g0_s1_lives[] = { /* 0x820eea0 */ + /* 0 */ { 0, 4, 0, 0, { 20, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs159_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 20, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs159_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs159_g0_s3_lives[] = { /* 0x820eed0 */ + /* 0 */ { 0, 4, 0, 0, { 20, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs159_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 20, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs159_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs159_g0_s4_lives[] = { /* 0x820ef00 */ + /* 0 */ { 0, 0, 0, 0, { 20, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs159_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 20, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs159_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs159_g1_s0_lives[] = { /* 0x820ef30 */ + /* 0 */ { 14, 0, 0, 0, { 30, 17, 0, CPOS_HALFTILE }, { + [1] = s_gs159_g1_s0_lives0_dlg1, + [2] = s_gs159_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 15, 0, 0, 0, { 36, 21, 0, CPOS_HALFTILE }, { + [1] = s_gs159_g1_s0_lives1_dlg1, + [2] = s_gs159_g1_s0_lives1_dlg2, + } }, +}; + +static const struct GroundEventData s_gs159_g0_s0_evts[] = { /* 0x820ef60 */ + /* 0 */ { 60, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 60, 1, 0, 0, { 0, 41, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 3, 42, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 3, 42, 0, 0, { 57, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x820ef90 */ + &s_gs159_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs159_g0_sectors[] = { /* 0x820ef94 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs159_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs159_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs159_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs159_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs159_g1_sectors[] = { /* 0x820f05c */ + { LPARRAY(s_gs159_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs159_groups[] = { /* 0x820f084 */ + { LPARRAY(s_gs159_g0_sectors) }, + { LPARRAY(s_gs159_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs159_links[] = { /* 0x820f09c */ + /* link 0 */ { { /*x*/ 27, /*y*/ 15, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, + /* link 1 */ { { /*x*/ 34, /*y*/ 18, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs159 = { LPARRAY(s_gs159_groups), s_gs159_links }; /* 0x820f0ac */ diff --git a/src/data/ground/ground_data_h29p03_station.h b/src/data/ground/ground_data_h29p03_station.h new file mode 100644 index 000000000..1fcc7bdb7 --- /dev/null +++ b/src/data/ground/ground_data_h29p03_station.h @@ -0,0 +1,170 @@ + + + + + + + + + +static const struct ScriptCommand s_gs160_g0_s0_station_sref_script[] = { /* 0x820f0c0 */ + DEBUGINFO, + SELECT_MAP(160), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(119), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs160_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs160_g0_s0_station_sref_script }; /* 0x820f33c */ + +static const struct ScriptCommand s_gs160_g0_s1_lives0_dlg0[] = { /* 0x820f348 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs160_g0_s1_lives1_dlg0[] = { /* 0x820f388 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs160_g0_s3_lives0_dlg0[] = { /* 0x820f3c8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs160_g0_s3_lives1_dlg0[] = { /* 0x820f408 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs160_g0_s4_lives0_dlg0[] = { /* 0x820f448 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs160_g0_s4_lives1_dlg0[] = { /* 0x820f478 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs160_g1_s0_lives0_dlg1[] = { /* 0x820f4a8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs160_g1_s0_lives0_dlg2[] = { /* 0x820f4d8 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs160_g0_s1_lives[] = { /* 0x820f4f8 */ + /* 0 */ { 0, 4, 0, 0, { 30, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs160_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs160_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs160_g0_s3_lives[] = { /* 0x820f528 */ + /* 0 */ { 0, 4, 0, 0, { 30, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs160_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs160_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs160_g0_s4_lives[] = { /* 0x820f558 */ + /* 0 */ { 0, 0, 0, 0, { 30, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs160_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 30, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs160_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs160_g1_s0_lives[] = { /* 0x820f588 */ + /* 0 */ { 14, 0, 0, 0, { 30, 18, 0, CPOS_HALFTILE }, { + [1] = s_gs160_g1_s0_lives0_dlg1, + [2] = s_gs160_g1_s0_lives0_dlg2, + } }, +}; + +static const struct GroundEventData s_gs160_g0_s0_evts[] = { /* 0x820f5a0 */ + /* 0 */ { 60, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 60, 1, 0, 0, { 1, 41, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 3, 42, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 3, 42, 0, 0, { 57, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x820f5d0 */ + &s_gs160_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs160_g0_sectors[] = { /* 0x820f5d4 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs160_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs160_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs160_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs160_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs160_g1_sectors[] = { /* 0x820f69c */ + { LPARRAY(s_gs160_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs160_groups[] = { /* 0x820f6c4 */ + { LPARRAY(s_gs160_g0_sectors) }, + { LPARRAY(s_gs160_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs160_links[] = { /* 0x820f6dc */ + /* link 0 */ { { /*x*/ 27, /*y*/ 16, /*flags*/ 0, 0 }, /*w*/ 6, /*h*/ 5, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs160 = { LPARRAY(s_gs160_groups), s_gs160_links }; /* 0x820f6e4 */ diff --git a/src/data/ground/ground_data_h29p04_station.h b/src/data/ground/ground_data_h29p04_station.h new file mode 100644 index 000000000..edb7d806e --- /dev/null +++ b/src/data/ground/ground_data_h29p04_station.h @@ -0,0 +1,170 @@ + + + + + + + + + +static const struct ScriptCommand s_gs161_g0_s0_station_sref_script[] = { /* 0x820f6f8 */ + DEBUGINFO, + SELECT_MAP(161), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 3, /* to label */ 0), + JUMP_LABEL(1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(2), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMP_LABEL(4), + LABEL(6), /* = 0x06 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 7), + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + BGM_SWITCH(122), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs161_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs161_g0_s0_station_sref_script }; /* 0x820f974 */ + +static const struct ScriptCommand s_gs161_g0_s1_lives0_dlg0[] = { /* 0x820f980 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs161_g0_s1_lives1_dlg0[] = { /* 0x820f9c0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs161_g0_s3_lives0_dlg0[] = { /* 0x820fa00 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs161_g0_s3_lives1_dlg0[] = { /* 0x820fa40 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs161_g0_s4_lives0_dlg0[] = { /* 0x820fa80 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs161_g0_s4_lives1_dlg0[] = { /* 0x820fab0 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs161_g1_s0_lives0_dlg1[] = { /* 0x820fae0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(HABITAT_MOVE1), +}; + +static const struct ScriptCommand s_gs161_g1_s0_lives0_dlg2[] = { /* 0x820fb10 */ + DEBUGINFO, + JUMP_SCRIPT(HABITAT_TALK), +}; + +static const struct GroundLivesData s_gs161_g0_s1_lives[] = { /* 0x820fb30 */ + /* 0 */ { 0, 4, 0, 0, { 30, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs161_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs161_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs161_g0_s3_lives[] = { /* 0x820fb60 */ + /* 0 */ { 0, 4, 0, 0, { 30, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs161_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs161_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs161_g0_s4_lives[] = { /* 0x820fb90 */ + /* 0 */ { 0, 0, 0, 0, { 30, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs161_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 30, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs161_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs161_g1_s0_lives[] = { /* 0x820fbc0 */ + /* 0 */ { 14, 0, 0, 0, { 30, 10, 0, CPOS_HALFTILE }, { + [1] = s_gs161_g1_s0_lives0_dlg1, + [2] = s_gs161_g1_s0_lives0_dlg2, + } }, +}; + +static const struct GroundEventData s_gs161_g0_s0_evts[] = { /* 0x820fbd8 */ + /* 0 */ { 60, 3, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 1 */ { 60, 1, 0, 0, { 0, 38, 0, 0 }, &gFunctionScriptTable[358] }, + /* 2 */ { 3, 39, 0, 0, { 0, 0, 0, 0 }, &gFunctionScriptTable[358] }, + /* 3 */ { 3, 39, 0, 0, { 57, 0, 0, 0 }, &gFunctionScriptTable[358] }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x820fc08 */ + &s_gs161_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs161_g0_sectors[] = { /* 0x820fc0c */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs161_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs161_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs161_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs161_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs161_g1_sectors[] = { /* 0x820fcd4 */ + { LPARRAY(s_gs161_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs161_groups[] = { /* 0x820fcfc */ + { LPARRAY(s_gs161_g0_sectors) }, + { LPARRAY(s_gs161_g1_sectors) }, + {}, +}; + +static const struct GroundLink s_gs161_links[] = { /* 0x820fd14 */ + /* link 0 */ { { /*x*/ 26, /*y*/ 8, /*flags*/ 0, 0 }, /*w*/ 8, /*h*/ 6, /*ret*/ 3, /*?*/ 2 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs161 = { LPARRAY(s_gs161_groups), s_gs161_links }; /* 0x820fd1c */ diff --git a/src/data/ground/ground_data_s01_station.h b/src/data/ground/ground_data_s01_station.h new file mode 100644 index 000000000..4b181c249 --- /dev/null +++ b/src/data/ground/ground_data_s01_station.h @@ -0,0 +1,65 @@ + + + + + + + + +static const struct ScriptCommand s_gs223_g0_s0_station_sref_script[] = { /* 0x826df80 */ + DEBUGINFO, + SELECT_MAP(223), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs223_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs223_g0_s0_station_sref_script }; /* 0x826dfec */ + +static const struct ScriptCommand s_gs223_g1_s0_station_sref_script[] = { /* 0x826dff8 - PART 1 0:00:31-0:00:45 - New game intro to personality test */ + DEBUGINFO, + BGM_STOP, + SELECT_MAP(223), + { 0x37, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Welcome!") }, + { 0x37, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+This is the portal that leads\n#+to the world of Pokémon!") }, + { 0x37, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+But before I can let you through,\n#+I have several questions for you.") }, + { 0x37, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+I want you to answer them sincerely.") }, + { 0x37, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Are you ready?") }, + { 0x37, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+OK...#W\n#+Let the interview begin!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(12), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0x3c, 0x28, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(30), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs223_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs223_g1_s0_station_sref_script }; /* 0x826e200 */ +static const struct GroundEffectData s_gs223_g1_s0_effs[] = { /* 0x826e20c */ + /* 0 */ { 0, 0, 1, 1, { 30, 19, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x826e218 */ + &s_gs223_g0_s0_station_sref, + &s_gs223_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs223_g0_sectors[] = { /* 0x826e220 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs223_g1_sectors[] = { /* 0x826e248 */ + { 0,NULL, 0,NULL, LPARRAY(s_gs223_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs223_groups[] = { /* 0x826e270 */ + { LPARRAY(s_gs223_g0_sectors) }, + { LPARRAY(s_gs223_g1_sectors) }, +}; + +static const struct GroundLink s_gs223_links[] = { /* 0x826e280 */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs223 = { LPARRAY(s_gs223_groups), s_gs223_links }; /* 0x826e288 */ diff --git a/src/data/ground/ground_data_s02_station.h b/src/data/ground/ground_data_s02_station.h new file mode 100644 index 000000000..8a6177b86 --- /dev/null +++ b/src/data/ground/ground_data_s02_station.h @@ -0,0 +1,259 @@ + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs224_g0_s0_station_sref_script[] = { /* 0x826e29c */ + DEBUGINFO, + SELECT_MAP(224), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs224_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs224_g0_s0_station_sref_script }; /* 0x826e308 */ + +static const struct ScriptCommand s_gs224_g1_s0_obj0_dlg1[] = { /* 0x826e314 */ + DEBUGINFO, + { 0x54, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x5b, 0x00, 0x0000, 0x00000001, 0x00000000, NULL }, + WAIT(10), + { 0x5b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + JUMP_LABEL(0), +}; + +static const struct ScriptCommand s_gs224_g2_s0_station_sref_script[] = { /* 0x826e3a4 */ + DEBUGINFO, + SELECT_MAP(224), + SELECT_ENTITIES(1, 0), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(46), + WAIT(60), + { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(480), + BGM_FADEOUT(30), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs224_g2_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs224_g2_s0_station_sref_script }; /* 0x826e454 */ + +static const struct ScriptCommand s_gs224_g3_s0_station_sref_script[] = { /* 0x826e460 */ + DEBUGINFO, + SELECT_MAP(224), + SELECT_ENTITIES(1, 0), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(43), + { 0x27, 0x01, 0x0001, 0x0000003c, 0x00ffffff, NULL }, + SELECT_ENTITIES(-1, 1), + SELECT_ENTITIES(-1, 2), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + { 0x3b, 0x40, 0x0001, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe0, 0x00, 0x002b, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs224_g3_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs224_g3_s0_station_sref_script }; /* 0x826e570 */ + +static const struct ScriptCommand s_gs224_g3_s0_eff0_script[] = { /* 0x826e57c */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x5b, 0x00, 0x0000, 0x00000003, 0x00000000, NULL }, + WAIT(10), + { 0x5b, 0x00, 0x0000, 0x00000002, 0x00000000, NULL }, + WAIT(10), + JUMP_LABEL(0), +}; + +static const struct ScriptCommand s_gs224_g3_s1_lives0_dlg0[] = { /* 0x826e60c */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00080000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00020000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x80, 0x00, 0x0200, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs224_g3_s1_obj0_dlg0[] = { /* 0x826e6dc */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00080000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00020000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(32), + { 0x53, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x80, 0x00, 0x0400, 0x00000005, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x80, 0x00, 0x0500, 0x00000006, 0x00000000, NULL }, + { 0x54, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x80, 0x00, 0x0600, 0x00000007, 0x00000000, NULL }, + { 0x54, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x80, 0x00, 0x0700, 0x00000008, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs224_g3_s2_obj0_dlg0[] = { /* 0x826e81c */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00080000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00040000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x80, 0x00, 0x0033, 0x00000009, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x80, 0x00, 0x0033, 0x0000000a, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs224_g4_s0_station_sref_script[] = { /* 0x826e8bc */ + DEBUGINFO, + SELECT_MAP(224), + SELECT_ENTITIES(1, 0), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(43), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe0, 0x00, 0x002b, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs224_g4_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs224_g4_s0_station_sref_script }; /* 0x826e97c */ + +static const struct ScriptCommand s_gs224_g4_s0_eff0_script[] = { /* 0x826e988 */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x5b, 0x00, 0x0000, 0x00000003, 0x00000000, NULL }, + WAIT(10), + { 0x5b, 0x00, 0x0000, 0x00000002, 0x00000000, NULL }, + WAIT(10), + JUMP_LABEL(0), +}; + +static const struct GroundLivesData s_gs224_g3_s1_lives[] = { /* 0x826ea18 */ + /* 0 */ { 55, 6, 0, 0, { 35, 6, 0, CPOS_HALFTILE }, { + [0] = s_gs224_g3_s1_lives0_dlg0, + } }, +}; + +static const struct GroundObjectData s_gs224_g1_s0_objs[] = { /* 0x826ea30 */ + /* 0 */ { 61, 0, 2, 1, { 18, 21, 0, 0 }, { + [1] = s_gs224_g1_s0_obj0_dlg1, + } }, +}; + +static const struct GroundObjectData s_gs224_g3_s1_objs[] = { /* 0x826ea48 */ + /* 0 */ { 59, 6, 2, 1, { 1, 22, 0, CPOS_HALFTILE }, { + [0] = s_gs224_g3_s1_obj0_dlg0, + } }, +}; + +static const struct GroundObjectData s_gs224_g3_s2_objs[] = { /* 0x826ea60 */ + /* 0 */ { 60, 0, 2, 1, { 26, 0, 0, CPOS_HALFTILE }, { + [0] = s_gs224_g3_s2_obj0_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs224_g2_s0_effs[] = { /* 0x826ea78 */ + /* 0 */ { 0, 0, 1, 1, { 18, 14, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs224_g3_s0_effs[] = { /* 0x826ea84 */ + /* 0 */ { 0, 0, 1, 1, { 18, 14, 0, CPOS_HALFTILE }, s_gs224_g3_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs224_g4_s0_effs[] = { /* 0x826ea90 */ + /* 0 */ { 0, 0, 1, 1, { 18, 14, 0, CPOS_HALFTILE }, s_gs224_g4_s0_eff0_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x826ea9c */ + &s_gs224_g0_s0_station_sref, + &s_gs224_g2_s0_station_sref, + &s_gs224_g3_s0_station_sref, + &s_gs224_g4_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs224_g0_sectors[] = { /* 0x826eaac */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs224_g1_sectors[] = { /* 0x826ead4 */ + { 0,NULL, LPARRAY(s_gs224_g1_s0_objs), 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs224_g2_sectors[] = { /* 0x826eafc */ + { 0,NULL, 0,NULL, LPARRAY(s_gs224_g2_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs224_g3_sectors[] = { /* 0x826eb24 */ + { 0,NULL, 0,NULL, LPARRAY(s_gs224_g3_s0_effs), 0,NULL, 1,&sStationScripts[2], }, + { LPARRAY(s_gs224_g3_s1_lives), LPARRAY(s_gs224_g3_s1_objs), 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, LPARRAY(s_gs224_g3_s2_objs), 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs224_g4_sectors[] = { /* 0x826eb9c */ + { 0,NULL, 0,NULL, LPARRAY(s_gs224_g4_s0_effs), 0,NULL, 1,&sStationScripts[3], }, +}; + +static const struct GroundScriptGroup s_gs224_groups[] = { /* 0x826ebc4 */ + { LPARRAY(s_gs224_g0_sectors) }, + { LPARRAY(s_gs224_g1_sectors) }, + { LPARRAY(s_gs224_g2_sectors) }, + { LPARRAY(s_gs224_g3_sectors) }, + { LPARRAY(s_gs224_g4_sectors) }, +}; + +static const struct GroundLink s_gs224_links[] = { /* 0x826ebec */ + /* link 0 */ { { /*x*/ 18, /*y*/ 21, /*flags*/ 0, 0 }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 18, /*y*/ 48, /*flags*/ 0, 0 }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 2 */ { { /*x*/ 18, /*y*/ 14, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 3 */ { { /*x*/ 18, /*y*/ 41, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 4 */ { { /*x*/ 1, /*y*/ 6, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 5 */ { { /*x*/ 10, /*y*/ 20, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 6 */ { { /*x*/ 19, /*y*/ 16, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 7 */ { { /*x*/ 28, /*y*/ 10, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 8 */ { { /*x*/ 35, /*y*/ 4, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 9 */ { { /*x*/ 26, /*y*/ 6, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 10 */ { { /*x*/ 26, /*y*/ 12, /*flags*/ 0, 0 }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs224 = { LPARRAY(s_gs224_groups), s_gs224_links }; /* 0x826ec44 */ diff --git a/src/data/ground/ground_data_s03_station.h b/src/data/ground/ground_data_s03_station.h new file mode 100644 index 000000000..522da06ac --- /dev/null +++ b/src/data/ground/ground_data_s03_station.h @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs225_g0_s0_station_sref_script[] = { /* 0x826ec58 */ + DEBUGINFO, + SELECT_MAP(225), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs225_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs225_g0_s0_station_sref_script }; /* 0x826ecc4 */ + +static const struct ScriptCommand s_gs225_g1_s0_station_sref_script[] = { /* 0x826ecd0 */ + DEBUGINFO, + SELECT_MAP(225), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(40), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(40), + { 0x3b, 0x38, 0x0000, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x0001, 0x0000003c, 0x00ffffff, NULL }, + { 0xe0, 0x00, 0x0028, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs225_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs225_g1_s0_station_sref_script }; /* 0x826edc0 */ + +static const struct ScriptCommand s_gs225_g1_s0_eff0_script[] = { /* 0x826edcc */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0040, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs225_g1_s0_obj0_dlg0[] = { /* 0x826ee1c */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00080000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00040000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x80, 0x00, 0x0033, 0x00000001, 0x00000000, NULL }, + { 0x80, 0x00, 0x0066, 0x00000002, 0x00000000, NULL }, + WAIT(20), + { 0x54, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0x80, 0x00, 0x0180, 0x00000003, 0x00000000, NULL }, + { 0x54, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0x80, 0x00, 0x0200, 0x00000004, 0x00000000, NULL }, + { 0x54, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + { 0x80, 0x00, 0x0300, 0x00000005, 0x00000000, NULL }, + { 0x54, 0x00, 0x0012, 0x00000000, 0x00000000, NULL }, + { 0x80, 0x00, 0x0400, 0x00000006, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0x80, 0x00, 0x0500, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x80, 0x00, 0x0600, 0x00000008, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0015, 0x00000000, 0x00000000, NULL }, + { 0x80, 0x00, 0x0800, 0x00000009, 0x00000000, NULL }, + { 0x54, 0x00, 0x0015, 0x00000000, 0x00000000, NULL }, + { 0x80, 0x00, 0x0800, 0x0000000a, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs225_g1_s0_obj1_dlg0[] = { /* 0x826efec */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00080000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00020000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + { 0x80, 0x00, 0x0033, 0x0000000b, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundObjectData s_gs225_g1_s0_objs[] = { /* 0x826f09c */ + /* 0 */ { 59, 0, 2, 1, { 29, 15, 0, CPOS_HALFTILE }, { + [0] = s_gs225_g1_s0_obj0_dlg0, + } }, + /* 1 */ { 60, 0, 2, 1, { 13, 17, 0, CPOS_HALFTILE }, { + [0] = s_gs225_g1_s0_obj1_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs225_g1_s0_effs[] = { /* 0x826f0cc */ + /* 0 */ { 0, 0, 1, 1, { 18, 27, 0, CPOS_HALFTILE }, s_gs225_g1_s0_eff0_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x826f0d8 */ + &s_gs225_g0_s0_station_sref, + &s_gs225_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs225_g0_sectors[] = { /* 0x826f0e0 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs225_g1_sectors[] = { /* 0x826f108 */ + { 0,NULL, LPARRAY(s_gs225_g1_s0_objs), LPARRAY(s_gs225_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs225_groups[] = { /* 0x826f130 */ + { LPARRAY(s_gs225_g0_sectors) }, + { LPARRAY(s_gs225_g1_sectors) }, +}; + +static const struct GroundLink s_gs225_links[] = { /* 0x826f140 */ + /* link 0 */ { { /*x*/ 18, /*y*/ 11, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 1 */ { { /*x*/ 32, /*y*/ 16, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 2 */ { { /*x*/ 35, /*y*/ 19, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 3 */ { { /*x*/ 32, /*y*/ 22, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 4 */ { { /*x*/ 27, /*y*/ 24, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 5 */ { { /*x*/ 22, /*y*/ 23, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 6 */ { { /*x*/ 17, /*y*/ 20, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 7 */ { { /*x*/ 13, /*y*/ 17, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 8 */ { { /*x*/ 9, /*y*/ 13, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 9 */ { { /*x*/ 4, /*y*/ 7, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 10 */ { { /*x*/ 1, /*y*/ 0, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 11 */ { { /*x*/ 13, /*y*/ 38, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs225 = { LPARRAY(s_gs225_groups), s_gs225_links }; /* 0x826f1a0 */ diff --git a/src/data/ground/ground_data_s04_station.h b/src/data/ground/ground_data_s04_station.h new file mode 100644 index 000000000..0705048f1 --- /dev/null +++ b/src/data/ground/ground_data_s04_station.h @@ -0,0 +1,106 @@ + + + + + + + + + + + +static const struct ScriptCommand s_gs226_g0_s0_station_sref_script[] = { /* 0x826f1b4 */ + DEBUGINFO, + SELECT_MAP(226), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs226_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs226_g0_s0_station_sref_script }; /* 0x826f220 */ + +static const struct ScriptCommand s_gs226_g1_s0_station_sref_script[] = { /* 0x826f22c */ + DEBUGINFO, + BGM_STOP, + SELECT_MAP(226), + SELECT_ENTITIES(-1, 0), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + WAIT(4), + RET, +}; + +static const struct ScriptRef s_gs226_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs226_g1_s0_station_sref_script }; /* 0x826f33c */ + +static const struct ScriptCommand s_gs226_g1_s0_eff0_script[] = { /* 0x826f348 */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x22, 0x01, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x23, 0x01, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x22, 0x01, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x23, 0x01, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x00000001, 0x00000000, NULL }, + { 0x22, 0x01, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x23, 0x01, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x00000002, 0x00000000, NULL }, + { 0x22, 0x01, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x23, 0x01, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs226_g1_s0_eff1_script[] = { /* 0x826f4d8 */ + DEBUGINFO, + { 0x3c, 0x29, 0x0000, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct GroundEffectData s_gs226_g1_s0_effs[] = { /* 0x826f508 */ + /* 0 */ { 0, 0, 1, 1, { 15, 11, 0, CPOS_HALFTILE }, s_gs226_g1_s0_eff0_script }, + /* 1 */ { 2, 0, 1, 1, { 0, 0, 0, CPOS_HALFTILE }, s_gs226_g1_s0_eff1_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x826f520 */ + &s_gs226_g0_s0_station_sref, + &s_gs226_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs226_g0_sectors[] = { /* 0x826f528 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs226_g1_sectors[] = { /* 0x826f550 */ + { 0,NULL, 0,NULL, LPARRAY(s_gs226_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs226_groups[] = { /* 0x826f578 */ + { LPARRAY(s_gs226_g0_sectors) }, + { LPARRAY(s_gs226_g1_sectors) }, +}; + +static const struct GroundLink s_gs226_links[] = { /* 0x826f588 */ + /* link 0 */ { { /*x*/ 15, /*y*/ 31, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 1 */ { { /*x*/ 15, /*y*/ 51, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 2 */ { { /*x*/ 15, /*y*/ 71, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs226 = { LPARRAY(s_gs226_groups), s_gs226_links }; /* 0x826f5a0 */ diff --git a/src/data/ground/ground_data_s05_station.h b/src/data/ground/ground_data_s05_station.h new file mode 100644 index 000000000..7dd43e366 --- /dev/null +++ b/src/data/ground/ground_data_s05_station.h @@ -0,0 +1,75 @@ + + + + + + + + + + +static const struct ScriptCommand s_gs227_g0_s0_station_sref_script[] = { /* 0x826f5b4 */ + DEBUGINFO, + SELECT_MAP(227), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs227_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs227_g0_s0_station_sref_script }; /* 0x826f620 */ + +static const struct ScriptCommand s_gs227_g1_s0_station_sref_script[] = { /* 0x826f62c */ + DEBUGINFO, + BGM_STOP, + SELECT_MAP(227), + SELECT_ENTITIES(-1, 0), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + WAIT(180), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x40, 0x0001, 0x00000000, 0x00000000, NULL }, + WAIT(3600), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs227_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs227_g1_s0_station_sref_script }; /* 0x826f6dc */ + +static const struct ScriptCommand s_gs227_g1_s0_eff0_script[] = { /* 0x826f6e8 */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x5b, 0x00, 0x0000, 0x00000001, 0x00000000, NULL }, + WAIT(20), + { 0x5b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + JUMP_LABEL(0), +}; + +static const struct GroundEffectData s_gs227_g1_s0_effs[] = { /* 0x826f778 */ + /* 0 */ { 0, 0, 1, 1, { 15, 11, 0, CPOS_HALFTILE }, s_gs227_g1_s0_eff0_script }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x826f784 */ + &s_gs227_g0_s0_station_sref, + &s_gs227_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs227_g0_sectors[] = { /* 0x826f78c */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs227_g1_sectors[] = { /* 0x826f7b4 */ + { 0,NULL, 0,NULL, LPARRAY(s_gs227_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs227_groups[] = { /* 0x826f7dc */ + { LPARRAY(s_gs227_g0_sectors) }, + { LPARRAY(s_gs227_g1_sectors) }, +}; + +static const struct GroundLink s_gs227_links[] = { /* 0x826f7ec */ + /* link 0 */ { { /*x*/ 15, /*y*/ 11, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 1 */ { { /*x*/ 15, /*y*/ 31, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs227 = { LPARRAY(s_gs227_groups), s_gs227_links }; /* 0x826f7fc */ diff --git a/src/data/ground/ground_data_s06_station.h b/src/data/ground/ground_data_s06_station.h new file mode 100644 index 000000000..12b73fbd1 --- /dev/null +++ b/src/data/ground/ground_data_s06_station.h @@ -0,0 +1,55 @@ + + + + + + + + +static const struct ScriptCommand s_gs228_g0_s0_station_sref_script[] = { /* 0x826f810 */ + DEBUGINFO, + SELECT_MAP(228), + BGM_STOP, + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs228_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs228_g0_s0_station_sref_script }; /* 0x826f87c */ + +static const struct ScriptCommand s_gs228_g1_s0_station_sref_script[] = { /* 0x826f888 */ + DEBUGINFO, + SELECT_MAP(228), + SELECT_ENTITIES(-1, -1), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0x3c, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs228_g1_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs228_g1_s0_station_sref_script }; /* 0x826f8f8 */ +static const struct GroundEffectData s_gs228_g1_s0_effs[] = { /* 0x826f904 */ + /* 0 */ { 0, 0, 1, 1, { 15, 11, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x826f910 */ + &s_gs228_g0_s0_station_sref, + &s_gs228_g1_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs228_g0_sectors[] = { /* 0x826f918 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[0], }, +}; + +static const struct GroundScriptSector s_gs228_g1_sectors[] = { /* 0x826f940 */ + { 0,NULL, 0,NULL, LPARRAY(s_gs228_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptGroup s_gs228_groups[] = { /* 0x826f968 */ + { LPARRAY(s_gs228_g0_sectors) }, + { LPARRAY(s_gs228_g1_sectors) }, +}; + +static const struct GroundLink s_gs228_links[] = { /* 0x826f978 */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs228 = { LPARRAY(s_gs228_groups), s_gs228_links }; /* 0x826f980 */ diff --git a/src/data/ground/ground_data_t00p01_station.h b/src/data/ground/ground_data_t00p01_station.h new file mode 100644 index 000000000..440624e30 --- /dev/null +++ b/src/data/ground/ground_data_t00p01_station.h @@ -0,0 +1,1487 @@ + + + + + + + + +static const struct ScriptCommand s_gs0_g0_s0_station_sref_script[] = { /* 0x81326fc */ + DEBUGINFO, + SELECT_MAP(0), + SELECT_ENTITIES(1, 0), + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 2), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 3), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 4), + JUMP_LABEL(2), + LABEL(4), /* = 0x04 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(9, /* to label */ 5), + COND_EQUAL(10, /* to label */ 5), + COND_EQUAL(11, /* to label */ 5), + JUMP_LABEL(6), + LABEL(2), /* = 0x02 */ + SELECT_LIVES(0, 7), + JUMP_LABEL(7), + LABEL(3), /* = 0x03 */ + SELECT_LIVES(0, 8), + JUMP_LABEL(7), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(7), + SELECT_LIVES(0, 2), + JUMP_LABEL(7), + LABEL(6), /* = 0x06 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(7), + LABEL(7), /* = 0x07 */ + BGM_SWITCH(7), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs0_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs0_g0_s0_station_sref_script }; /* 0x8132918 */ + + + + +static const struct ScriptCommand s_gs0_g0_s0_evt0_sref_script[] = { /* 0x8132924 */ + DEBUGINFO, + RET, +}; + +static const struct ScriptRef s_gs0_g0_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs0_g0_s0_evt0_sref_script }; /* 0x8132944 */ + +static const struct ScriptCommand s_gs0_g0_s0_evt1_sref_script[] = { /* 0x8132950 */ + DEBUGINFO, + RET, +}; + +static const struct ScriptRef s_gs0_g0_s0_evt1_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs0_g0_s0_evt1_sref_script }; /* 0x8132970 */ + +static const struct ScriptCommand s_gs0_g0_s0_evt2_sref_script[] = { /* 0x813297c */ + DEBUGINFO, + RET, +}; + +static const struct ScriptRef s_gs0_g0_s0_evt2_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs0_g0_s0_evt2_sref_script }; /* 0x813299c */ + +static const struct ScriptCommand s_gs0_g0_s1_lives0_dlg0[] = { /* 0x81329a8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs0_g0_s1_lives1_dlg0[] = { /* 0x81329e8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs0_g0_s2_lives0_dlg0[] = { /* 0x8132a28 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs0_g0_s2_lives1_dlg0[] = { /* 0x8132a68 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs0_g0_s3_lives0_dlg0[] = { /* 0x8132aa8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs0_g0_s3_lives1_dlg0[] = { /* 0x8132ae8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs0_g0_s7_lives0_dlg0[] = { /* 0x8132b28 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs0_g0_s7_lives1_dlg0[] = { /* 0x8132b68 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs0_g0_s8_lives0_dlg0[] = { /* 0x8132ba8 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs0_g0_s8_lives1_dlg0[] = { /* 0x8132bd8 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs0_g1_s0_lives0_dlg2[] = { /* 0x8132c08 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs0_g1_s0_lives1_dlg2[] = { /* 0x8132c68 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs0_g1_s0_lives2_dlg2[] = { /* 0x8132cc8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs0_g1_s0_lives3_dlg2[] = { /* 0x8132d28 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs0_g1_s0_lives4_dlg2[] = { /* 0x8132d88 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs0_g1_s0_lives5_dlg2[] = { /* 0x8132de8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x1a, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs0_g1_s0_lives6_dlg2[] = { /* 0x8132e48 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x1c, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 0), + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + { 0x05, 0x00, 0x001e, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs0_g1_s0_lives7_dlg2[] = { /* 0x8132ee8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x1e, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs0_g1_s0_lives8_dlg2[] = { /* 0x8132f48 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x1d, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs0_g1_s0_obj0_dlg2[] = { /* 0x8132fa8 */ + DEBUGINFO, + { 0x3c, 0x20, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs0_g1_s0_obj1_dlg2[] = { /* 0x8132fd8 */ + DEBUGINFO, + { 0x3c, 0x21, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs0_g1_s0_lives9_dlg2[] = { /* 0x8133008 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs0_g1_s0_lives10_dlg2[] = { /* 0x8133068 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x23, 0x01, 0x0004, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + ASK3(FALSE, /*default*/ 0, /* speaker */ -1, _(" I'm the event test Pokémon!\nMotions will differ from the real thing!")), + CHOICE(/* label */ 1, _("Main 0A〜4B Demo")), + CHOICE(/* label */ 2, _("Main 5A〜7B")), + CHOICE(/* label */ 3, _("Main 8A〜10A Ending")), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Farewell") }, + { 0x22, 0x01, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 4, _("Main 0A〜1A Demo")), + CHOICE(/* label */ 5, _("Main 2A")), + CHOICE(/* label */ 6, _("Main 2B")), + CHOICE(/* label */ 7, _("Main 3A-0〜")), + CHOICE(/* label */ 8, _("Main 3A-8〜")), + CHOICE(/* label */ 9, _("Main 4A")), + CHOICE(/* label */ 10, _("Main 4B")), + JUMP_LABEL(0), + LABEL(2), /* = 0x02 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 11, _("Main 5A")), + CHOICE(/* label */ 12, _("Main 5B")), + CHOICE(/* label */ 13, _("Main 6A")), + CHOICE(/* label */ 14, _("Main 7A")), + CHOICE(/* label */ 15, _("Main 7B")), + JUMP_LABEL(0), + LABEL(3), /* = 0x03 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 16, _("Main 8A")), + CHOICE(/* label */ 17, _("Main 8B")), + CHOICE(/* label */ 18, _("Main 9A-1〜")), + CHOICE(/* label */ 19, _("Main 9A-9〜")), + CHOICE(/* label */ 20, _("Main 10A")), + CHOICE(/* label */ 21, _("Ending")), + JUMP_LABEL(0), + LABEL(4), /* = 0x04 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 22, _("Demo 01")), + CHOICE(/* label */ 23, _("Demo 02")), + CHOICE(/* label */ 24, _("Demo 03")), + CHOICE(/* label */ 25, _("Main 0A-1")), + CHOICE(/* label */ 26, _("Main 1A-1")), + CHOICE(/* label */ 27, _("Main 1A-2")), + CHOICE(/* label */ 28, _("Main 1A-3")), + JUMP_LABEL(1), + LABEL(22), /* = 0x16 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(DEMO_01), + HALT, + LABEL(23), /* = 0x17 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(DEMO_02), + HALT, + LABEL(24), /* = 0x18 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(DEMO_03), + HALT, + LABEL(25), /* = 0x19 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M00E01A_L001), + HALT, + LABEL(26), /* = 0x1a */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E01A_L001), + HALT, + LABEL(27), /* = 0x1b */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E01A_L002), + HALT, + LABEL(28), /* = 0x1c */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E01A_L003), + HALT, + LABEL(5), /* = 0x05 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 29, _("Main 2A-1")), + CHOICE(/* label */ 30, _("Main 2A-2")), + CHOICE(/* label */ 31, _("Main 2A-3")), + CHOICE(/* label */ 32, _("Main 2A-4")), + CHOICE(/* label */ 33, _("Main 2A-5")), + CHOICE(/* label */ 34, _("Main 2A-6")), + JUMP_LABEL(1), + LABEL(29), /* = 0x1d */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E02A_L001), + HALT, + LABEL(30), /* = 0x1e */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E02A_L002), + HALT, + LABEL(31), /* = 0x1f */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E02A_L003), + HALT, + LABEL(32), /* = 0x20 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E02A_L004), + HALT, + LABEL(33), /* = 0x21 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E02A_L005), + HALT, + LABEL(34), /* = 0x22 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E02A_L006), + HALT, + LABEL(6), /* = 0x06 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 35, _("Main 2B-1")), + CHOICE(/* label */ 36, _("Main 2B-2")), + CHOICE(/* label */ 37, _("Main 2B-3")), + CHOICE(/* label */ 38, _("Main 2B-4")), + CHOICE(/* label */ 39, _("Main 2B-5")), + CHOICE(/* label */ 40, _("Main 2B-6")), + CHOICE(/* label */ 41, _("Main 2B-7")), + CHOICE(/* label */ 42, _("Main 2B-8")), + JUMP_LABEL(1), + LABEL(35), /* = 0x23 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E02B_L001), + HALT, + LABEL(36), /* = 0x24 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E02B_L002), + HALT, + LABEL(37), /* = 0x25 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E02B_L003), + HALT, + LABEL(38), /* = 0x26 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E02B_L004), + HALT, + LABEL(39), /* = 0x27 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E02B_L005), + HALT, + LABEL(40), /* = 0x28 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E02B_L006), + HALT, + LABEL(41), /* = 0x29 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E02B_L007), + HALT, + LABEL(42), /* = 0x2a */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E02B_L008), + HALT, + LABEL(7), /* = 0x07 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 43, _("Main 3A-0")), + CHOICE(/* label */ 44, _("Main 3A-1")), + CHOICE(/* label */ 45, _("Main 3A-2")), + CHOICE(/* label */ 46, _("Main 3A-3")), + CHOICE(/* label */ 47, _("Main 3A-4")), + CHOICE(/* label */ 48, _("Main 3A-5")), + CHOICE(/* label */ 49, _("Main 3A-6")), + CHOICE(/* label */ 50, _("Main 3A-7")), + JUMP_LABEL(1), + LABEL(43), /* = 0x2b */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E03A_L000), + HALT, + LABEL(44), /* = 0x2c */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E03A_L001), + HALT, + LABEL(45), /* = 0x2d */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E03A_L002), + HALT, + LABEL(46), /* = 0x2e */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E03A_L003), + HALT, + LABEL(47), /* = 0x2f */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E03A_L004), + HALT, + LABEL(48), /* = 0x30 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E03A_L005), + HALT, + LABEL(49), /* = 0x31 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E03A_L006), + HALT, + LABEL(50), /* = 0x32 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E03A_L007), + HALT, + LABEL(8), /* = 0x08 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 51, _("Main 3A-8")), + CHOICE(/* label */ 52, _("Main 3A-9")), + CHOICE(/* label */ 53, _("Main 3A-10")), + CHOICE(/* label */ 54, _("Main 3A-11")), + JUMP_LABEL(1), + LABEL(51), /* = 0x33 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E03A_L008), + HALT, + LABEL(52), /* = 0x34 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E03A_L009), + HALT, + LABEL(53), /* = 0x35 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E03A_L010), + HALT, + LABEL(54), /* = 0x36 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E03A_L011), + HALT, + LABEL(9), /* = 0x09 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 55, _("Main 4A-0")), + CHOICE(/* label */ 56, _("Main 4A-1")), + CHOICE(/* label */ 57, _("Main 4A-2")), + CHOICE(/* label */ 58, _("Main 4A-3")), + CHOICE(/* label */ 59, _("Main 4A-4")), + CHOICE(/* label */ 60, _("Main 4A-5")), + CHOICE(/* label */ 61, _("Main 4A-6")), + JUMP_LABEL(1), + LABEL(55), /* = 0x37 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E04A_L000), + HALT, + LABEL(56), /* = 0x38 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E04A_L001), + HALT, + LABEL(57), /* = 0x39 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E04A_L002), + HALT, + LABEL(58), /* = 0x3a */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E04A_L003), + HALT, + LABEL(59), /* = 0x3b */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E04A_L004), + HALT, + LABEL(60), /* = 0x3c */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E04A_L005), + HALT, + LABEL(61), /* = 0x3d */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E04A_L006), + HALT, + LABEL(10), /* = 0x0a */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 62, _("Main 4B-0")), + CHOICE(/* label */ 63, _("Main 4B-1")), + CHOICE(/* label */ 64, _("Main 4B-2")), + CHOICE(/* label */ 65, _("Main 4B-3")), + CHOICE(/* label */ 66, _("Main 4B-4")), + CHOICE(/* label */ 67, _("Main 4B-5")), + CHOICE(/* label */ 68, _("Main 4B-6")), + CHOICE(/* label */ 69, _("Main 4B-7")), + JUMP_LABEL(1), + LABEL(62), /* = 0x3e */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E04B_L000), + HALT, + LABEL(63), /* = 0x3f */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E04B_L001), + HALT, + LABEL(64), /* = 0x40 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E04B_L002), + HALT, + LABEL(65), /* = 0x41 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E04B_L003), + HALT, + LABEL(66), /* = 0x42 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E04B_L004), + HALT, + LABEL(67), /* = 0x43 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E04B_L005), + HALT, + LABEL(68), /* = 0x44 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E04B_L006), + HALT, + LABEL(69), /* = 0x45 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E04B_L007), + HALT, + LABEL(11), /* = 0x0b */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 70, _("Main 5A-0")), + CHOICE(/* label */ 71, _("Main 5A-1")), + CHOICE(/* label */ 72, _("Main 5A-2")), + CHOICE(/* label */ 73, _("Main 5A-3")), + CHOICE(/* label */ 74, _("Main 5A-4")), + CHOICE(/* label */ 75, _("Main 5A-5")), + CHOICE(/* label */ 76, _("Main 5A-6")), + JUMP_LABEL(2), + LABEL(70), /* = 0x46 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E05A_L000), + HALT, + LABEL(71), /* = 0x47 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E05A_L001), + HALT, + LABEL(72), /* = 0x48 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E05A_L002), + HALT, + LABEL(73), /* = 0x49 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E05A_L003), + HALT, + LABEL(74), /* = 0x4a */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E05A_L004), + HALT, + LABEL(75), /* = 0x4b */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E05A_L005), + HALT, + LABEL(76), /* = 0x4c */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E05A_L006), + HALT, + LABEL(12), /* = 0x0c */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 77, _("Main 5B-0")), + CHOICE(/* label */ 78, _("Main 5B-1")), + CHOICE(/* label */ 79, _("Main 5B-2")), + CHOICE(/* label */ 80, _("Main 5B-3")), + CHOICE(/* label */ 81, _("Main 5B-4")), + CHOICE(/* label */ 82, _("Main 5B-5")), + JUMP_LABEL(2), + LABEL(77), /* = 0x4d */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E05B_L000), + HALT, + LABEL(78), /* = 0x4e */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E05B_L001), + HALT, + LABEL(79), /* = 0x4f */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E05B_L002), + HALT, + LABEL(80), /* = 0x50 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E05B_L003), + HALT, + LABEL(81), /* = 0x51 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E05B_L004), + HALT, + LABEL(82), /* = 0x52 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E05B_L005), + HALT, + LABEL(13), /* = 0x0d */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 83, _("Main 6A-1")), + CHOICE(/* label */ 84, _("Main 6A-2")), + CHOICE(/* label */ 85, _("Main 6A-2")), + JUMP_LABEL(2), + LABEL(83), /* = 0x53 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E06A_L001), + HALT, + LABEL(84), /* = 0x54 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E06A_L002), + HALT, + LABEL(85), /* = 0x55 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E06A_L003), + HALT, + LABEL(14), /* = 0x0e */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 86, _("Main 7A-1")), + CHOICE(/* label */ 87, _("Main 7A-2")), + CHOICE(/* label */ 88, _("Main 7A-3")), + CHOICE(/* label */ 89, _("Main 7A-4")), + CHOICE(/* label */ 90, _("Main 7A-5")), + JUMP_LABEL(2), + LABEL(86), /* = 0x56 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E07A_L001), + HALT, + LABEL(87), /* = 0x57 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E07A_L002), + HALT, + LABEL(88), /* = 0x58 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E07A_L003), + HALT, + LABEL(89), /* = 0x59 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E07A_L004), + HALT, + LABEL(90), /* = 0x5a */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E07A_L005), + HALT, + LABEL(15), /* = 0x0f */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 91, _("Main 7B-1")), + CHOICE(/* label */ 92, _("Main 7B-2")), + CHOICE(/* label */ 93, _("Main 7B-3")), + CHOICE(/* label */ 94, _("Main 7B-4")), + CHOICE(/* label */ 95, _("Main 7B-5")), + JUMP_LABEL(2), + LABEL(91), /* = 0x5b */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E07B_L001), + HALT, + LABEL(92), /* = 0x5c */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E07B_L002), + HALT, + LABEL(93), /* = 0x5d */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E07B_L003), + HALT, + LABEL(94), /* = 0x5e */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E07B_L004), + HALT, + LABEL(95), /* = 0x5f */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E07B_L005), + HALT, + LABEL(16), /* = 0x10 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 96, _("Main 8A-1")), + CHOICE(/* label */ 97, _("Main 8A-2")), + CHOICE(/* label */ 98, _("Main 8A-3")), + CHOICE(/* label */ 99, _("Main 8A-4")), + CHOICE(/* label */100, _("Main 8A-5")), + JUMP_LABEL(3), + LABEL(96), /* = 0x60 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E08A_L001), + HALT, + LABEL(97), /* = 0x61 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E08A_L002), + HALT, + LABEL(98), /* = 0x62 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E08A_L003), + HALT, + LABEL(99), /* = 0x63 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E08A_L004), + HALT, + LABEL(100), /* = 0x64 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E08A_L005), + HALT, + LABEL(17), /* = 0x11 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */101, _("Main 8B-1")), + CHOICE(/* label */102, _("Main 8B-2")), + CHOICE(/* label */103, _("Main 8B-3")), + CHOICE(/* label */104, _("Main 8B-4")), + CHOICE(/* label */105, _("Main 8B-5")), + CHOICE(/* label */106, _("Main 8B-6")), + JUMP_LABEL(3), + LABEL(101), /* = 0x65 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E08B_L001), + HALT, + LABEL(102), /* = 0x66 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E08B_L002), + HALT, + LABEL(103), /* = 0x67 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E08B_L003), + HALT, + LABEL(104), /* = 0x68 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E08B_L004), + HALT, + LABEL(105), /* = 0x69 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E08B_L005), + HALT, + LABEL(106), /* = 0x6a */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E08B_L006), + HALT, + LABEL(18), /* = 0x12 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */107, _("Main 9A-1")), + CHOICE(/* label */108, _("Main 9A-2")), + CHOICE(/* label */109, _("Main 9A-3")), + CHOICE(/* label */110, _("Main 9A-4")), + CHOICE(/* label */111, _("Main 9A-5")), + CHOICE(/* label */112, _("Main 9A-6")), + CHOICE(/* label */113, _("Main 9A-7")), + CHOICE(/* label */114, _("Main 9A-8")), + JUMP_LABEL(3), + LABEL(107), /* = 0x6b */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E09A_L001), + HALT, + LABEL(108), /* = 0x6c */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E09A_L002), + HALT, + LABEL(109), /* = 0x6d */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E09A_L003), + HALT, + LABEL(110), /* = 0x6e */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E09A_L004), + HALT, + LABEL(111), /* = 0x6f */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E09A_L005), + HALT, + LABEL(112), /* = 0x70 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E09A_L006), + HALT, + LABEL(113), /* = 0x71 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E09A_L007), + HALT, + LABEL(114), /* = 0x72 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E09A_L008), + HALT, + LABEL(19), /* = 0x13 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */115, _("Main 9A-9")), + CHOICE(/* label */116, _("Main 9A-10")), + CHOICE(/* label */117, _("Main 9A-11")), + CHOICE(/* label */118, _("Main 9A-12")), + CHOICE(/* label */119, _("Main 9A-13")), + CHOICE(/* label */120, _("Main 9A-14")), + CHOICE(/* label */121, _("Main 9A-15")), + JUMP_LABEL(3), + LABEL(115), /* = 0x73 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E09A_L009), + HALT, + LABEL(116), /* = 0x74 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E09A_L010), + HALT, + LABEL(117), /* = 0x75 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E09A_L011), + HALT, + LABEL(118), /* = 0x76 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E09A_L012), + HALT, + LABEL(119), /* = 0x77 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E09A_L013), + HALT, + LABEL(120), /* = 0x78 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E09A_L014), + HALT, + LABEL(121), /* = 0x79 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E09A_L015), + HALT, + LABEL(20), /* = 0x14 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */122, _("Main 10A-1")), + CHOICE(/* label */123, _("Main 10A-2")), + CHOICE(/* label */124, _("Main 10A-3")), + CHOICE(/* label */125, _("Main 10A-4")), + CHOICE(/* label */126, _("Main 10A-5")), + CHOICE(/* label */127, _("Main 10A-6")), + CHOICE(/* label */128, _("Main 10A-7")), + CHOICE(/* label */129, _("Main 10A-8")), + JUMP_LABEL(3), + LABEL(122), /* = 0x7a */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E10A_L001), + HALT, + LABEL(123), /* = 0x7b */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E10A_L002), + HALT, + LABEL(124), /* = 0x7c */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E10A_L003), + HALT, + LABEL(125), /* = 0x7d */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E10A_L004), + HALT, + LABEL(126), /* = 0x7e */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E10A_L005), + HALT, + LABEL(127), /* = 0x7f */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E10A_L006), + HALT, + LABEL(128), /* = 0x80 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E10A_L007), + HALT, + LABEL(129), /* = 0x81 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01E10A_L008), + HALT, + LABEL(21), /* = 0x15 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */130, _("Main ExD")), + CHOICE(/* label */131, _("Main2 1A-1")), + CHOICE(/* label */132, _("Main2 1A-2")), + CHOICE(/* label */133, _("Main2 1A-3")), + CHOICE(/* label */134, _("Main2 2A-1")), + CHOICE(/* label */135, _("Main2 ExD")), + JUMP_LABEL(3), + LABEL(130), /* = 0x82 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M01END_L001), + HALT, + LABEL(131), /* = 0x83 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M02E01A_L001), + HALT, + LABEL(132), /* = 0x84 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M02E01A_L002), + HALT, + LABEL(133), /* = 0x85 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M02E01A_L003), + HALT, + LABEL(134), /* = 0x86 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M02E02A_L001), + HALT, + LABEL(135), /* = 0x87 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_M02END_L001), + HALT, +}; + +static const struct ScriptCommand s_gs0_g1_s0_lives11_dlg2[] = { /* 0x8136060 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x23, 0x01, 0x0004, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + ASK3(FALSE, /*default*/ 0, /* speaker */ -1, _(" I'm the event test Pokémon!\nMotions will differ from the real thing!")), + CHOICE(/* label */ 1, _("Sub 0〜4")), + CHOICE(/* label */ 2, _("Sub 5〜9")), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Farewell.") }, + { 0x22, 0x01, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 3, _("Sub 0")), + CHOICE(/* label */ 4, _("Sub 1")), + CHOICE(/* label */ 5, _("Sub 2")), + CHOICE(/* label */ 6, _("Sub 3")), + CHOICE(/* label */ 7, _("Sub 4")), + JUMP_LABEL(0), + LABEL(2), /* = 0x02 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 8, _("Sub 5")), + CHOICE(/* label */ 9, _("Sub 6")), + CHOICE(/* label */ 10, _("Sub 7")), + CHOICE(/* label */ 11, _("Sub 8")), + CHOICE(/* label */ 12, _("Sub 9")), + JUMP_LABEL(0), + LABEL(3), /* = 0x03 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 13, _("Sub0 1A-1")), + CHOICE(/* label */ 14, _("Sub0 1A-2")), + CHOICE(/* label */ 15, _("Sub0 1A-3")), + JUMP_LABEL(1), + LABEL(13), /* = 0x0d */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S00E01A_L001), + HALT, + LABEL(14), /* = 0x0e */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S00E01A_L002), + HALT, + LABEL(15), /* = 0x0f */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S00E01A_L003), + HALT, + LABEL(4), /* = 0x04 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 16, _("Sub1 1A-1")), + CHOICE(/* label */ 17, _("Sub1 1A-2")), + CHOICE(/* label */ 18, _("Sub1 1A-3")), + CHOICE(/* label */ 19, _("Sub1 1B-1")), + CHOICE(/* label */ 20, _("Sub1 1C-1")), + CHOICE(/* label */ 21, _("Sub1 2A-1")), + CHOICE(/* label */ 22, _("Sub1 2A-2")), + JUMP_LABEL(1), + LABEL(16), /* = 0x10 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S01E01A_L001), + HALT, + LABEL(17), /* = 0x11 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S01E01A_L002), + HALT, + LABEL(18), /* = 0x12 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S01E01A_L003), + HALT, + LABEL(19), /* = 0x13 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S01E01B_L001), + HALT, + LABEL(20), /* = 0x14 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S01E01C_L001), + HALT, + LABEL(21), /* = 0x15 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S01E02A_L001), + HALT, + LABEL(22), /* = 0x16 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S01E02A_L002), + HALT, + LABEL(5), /* = 0x05 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 23, _("Sub2 1A-1")), + CHOICE(/* label */ 24, _("Sub2 1A-2")), + CHOICE(/* label */ 25, _("Sub2 1A-3")), + CHOICE(/* label */ 26, _("Sub2 1A-4")), + CHOICE(/* label */ 27, _("Sub2 2A-1")), + CHOICE(/* label */ 28, _("Sub2 2A-2")), + CHOICE(/* label */ 29, _("Sub2 2A-3")), + JUMP_LABEL(1), + LABEL(23), /* = 0x17 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S02E01A_L001), + HALT, + LABEL(24), /* = 0x18 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S02E01A_L002), + HALT, + LABEL(25), /* = 0x19 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S02E01A_L003), + HALT, + LABEL(26), /* = 0x1a */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S02E01A_L004), + HALT, + LABEL(27), /* = 0x1b */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S02E02A_L001), + HALT, + LABEL(28), /* = 0x1c */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S02E02A_L002), + HALT, + LABEL(29), /* = 0x1d */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S02E02A_L003), + HALT, + LABEL(6), /* = 0x06 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 30, _("Sub3 1A-1")), + CHOICE(/* label */ 31, _("Sub3 1A-2")), + JUMP_LABEL(1), + LABEL(30), /* = 0x1e */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S03E01A_L001), + HALT, + LABEL(31), /* = 0x1f */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S03E01A_L002), + HALT, + LABEL(7), /* = 0x07 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 32, _("Sub4 1A-1")), + CHOICE(/* label */ 33, _("Sub4 1A-2")), + CHOICE(/* label */ 34, _("Sub4 1B-1")), + CHOICE(/* label */ 35, _("Sub4 1C-1")), + CHOICE(/* label */ 36, _("Sub4 1D-1")), + CHOICE(/* label */ 37, _("Sub4 1E-1")), + CHOICE(/* label */ 38, _("Sub4 1F-1")), + JUMP_LABEL(1), + LABEL(32), /* = 0x20 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S04E01A_L001), + HALT, + LABEL(33), /* = 0x21 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S04E01A_L002), + HALT, + LABEL(34), /* = 0x22 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S04E01B_L001), + HALT, + LABEL(35), /* = 0x23 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S04E01C_L001), + HALT, + LABEL(36), /* = 0x24 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S04E01D_L001), + HALT, + LABEL(37), /* = 0x25 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S04E01E_L001), + HALT, + LABEL(38), /* = 0x26 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S04E01F_L001), + HALT, + LABEL(8), /* = 0x08 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 39, _("Sub5 1A-1")), + CHOICE(/* label */ 40, _("Sub5 1A-2")), + JUMP_LABEL(2), + LABEL(39), /* = 0x27 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S05E01A_L001), + HALT, + LABEL(40), /* = 0x28 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S05E01A_L002), + HALT, + LABEL(9), /* = 0x09 */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 41, _("Sub6 1A-1")), + CHOICE(/* label */ 42, _("Sub6 1A-2")), + CHOICE(/* label */ 43, _("Sub6 1B-1")), + CHOICE(/* label */ 44, _("Sub6 1B-2")), + JUMP_LABEL(2), + LABEL(41), /* = 0x29 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S06E01A_L001), + HALT, + LABEL(42), /* = 0x2a */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S06E01A_L002), + HALT, + LABEL(43), /* = 0x2b */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S06E01B_L001), + HALT, + LABEL(44), /* = 0x2c */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S06E01B_L002), + HALT, + LABEL(10), /* = 0x0a */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 45, _("Sub7 1A-1")), + CHOICE(/* label */ 46, _("Sub7 1A-2")), + CHOICE(/* label */ 47, _("Sub7 1A-3")), + JUMP_LABEL(2), + LABEL(45), /* = 0x2d */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S07E01A_L001), + HALT, + LABEL(46), /* = 0x2e */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S07E01A_L002), + HALT, + LABEL(47), /* = 0x2f */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S07E01A_L003), + HALT, + LABEL(11), /* = 0x0b */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 48, _("Sub8 1A-1")), + CHOICE(/* label */ 49, _("Sub8 1A-2")), + CHOICE(/* label */ 50, _("Sub8 1A-3")), + CHOICE(/* label */ 51, _("Sub8 1A-4")), + CHOICE(/* label */ 52, _("Sub8 1A-5")), + CHOICE(/* label */ 53, _("Sub8 1A-6")), + CHOICE(/* label */ 54, _("Sub8 1A-7")), + CHOICE(/* label */ 55, _("Sub8 1A-8")), + JUMP_LABEL(2), + LABEL(48), /* = 0x30 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S08E01A_L001), + HALT, + LABEL(49), /* = 0x31 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S08E01A_L002), + HALT, + LABEL(50), /* = 0x32 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S08E01A_L003), + HALT, + LABEL(51), /* = 0x33 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S08E01A_L004), + HALT, + LABEL(52), /* = 0x34 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S08E01A_L005), + HALT, + LABEL(53), /* = 0x35 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S08E01A_L006), + HALT, + LABEL(54), /* = 0x36 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S08E01A_L007), + HALT, + LABEL(55), /* = 0x37 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S08E01A_L008), + HALT, + LABEL(12), /* = 0x0c */ + ASK_DEBUG(FALSE, /*default*/ 0, /* speaker */ -1, NULL), + CHOICE(/* label */ 56, _("Sub9 1A-1")), + CHOICE(/* label */ 57, _("Sub9 1A-2")), + CHOICE(/* label */ 58, _("Sub9 1A-3")), + CHOICE(/* label */ 59, _("Sub9 1A-4")), + CHOICE(/* label */ 60, _("Sub9 1A-5")), + CHOICE(/* label */ 61, _("Sub9 1B-1")), + CHOICE(/* label */ 62, _("Sub9 1B-2")), + CHOICE(/* label */ 63, _("Sub9 1C-1")), + JUMP_LABEL(2), + LABEL(56), /* = 0x38 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S09E01A_L001), + HALT, + LABEL(57), /* = 0x39 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S09E01A_L002), + HALT, + LABEL(58), /* = 0x3a */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S09E01A_L003), + HALT, + LABEL(59), /* = 0x3b */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S09E01A_L004), + HALT, + LABEL(60), /* = 0x3c */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S09E01A_L005), + HALT, + LABEL(61), /* = 0x3d */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S09E01B_L001), + HALT, + LABEL(62), /* = 0x3e */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S09E01B_L002), + HALT, + LABEL(63), /* = 0x3f */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S09E01C_L001), + HALT, +}; + +static const struct ScriptCommand s_gs0_g1_s0_lives13_dlg0[] = { /* 0x81376c8 */ + DEBUGINFO, + { 0x55, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(MOVE_STAY), +}; + +static const struct ScriptCommand s_gs0_g1_s0_lives13_dlg2[] = { /* 0x81376f8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + ASK3(FALSE, /*default*/ 0, /* speaker */ 1, _(" Which effect should I use?")), + CHOICE(/* label */ 0, _("Effect 1")), + CHOICE(/* label */ 1, _("Effect 2")), + CHOICE(/* label */ 2, _("Effect 3")), + CHOICE(/* label */ 3, _("Effect 4")), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Farewell.") }, + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SPAWN_EFFECT(/*kind*/7, /*script*/EFFECT_TEST1, /*group/sector*/ 1, 0), + JUMP_LABEL(4), + LABEL(1), /* = 0x01 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SPAWN_EFFECT(/*kind*/7, /*script*/EFFECT_TEST2, /*group/sector*/ 1, 0), + JUMP_LABEL(4), + LABEL(2), /* = 0x02 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000047, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000008, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000009, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000000a, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000000b, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(4), + LABEL(3), /* = 0x03 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x97, 0x00, 0x0002, 0x00000001, 0x00000002, NULL }, + WAIT(30), + { 0x97, 0x00, 0x0002, 0x00000002, 0x00000003, NULL }, + WAIT(30), + { 0x97, 0x00, 0x0002, 0x00000004, 0x00000004, NULL }, + WAIT(60), + { 0x97, 0x00, 0x0002, 0x00000008, 0x00000004, NULL }, + WAIT(60), + { 0x97, 0x00, 0x0002, 0x00000004, 0x00000004, NULL }, + WAIT(60), + { 0x97, 0x00, 0x0002, 0x00000002, 0x00000003, NULL }, + WAIT(30), + { 0x97, 0x00, 0x0002, 0x00000001, 0x00000002, NULL }, + WAIT(30), + { 0x97, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(4), /* = 0x04 */ + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs0_g1_s0_eff0_script[] = { /* 0x8137a74 */ + DEBUGINFO, + LABEL(0), /* = 0x00 */ + { 0x56, 0x00, 0x0000, 0x00000065, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00020000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000066, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00020000, 0x00000000, NULL }, + WAIT(120), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMP_LABEL(0), +}; + +static const struct ScriptCommand s_gs0_g1_s1_eff0_script[] = { /* 0x8137b24 */ + DEBUGINFO, + { 0x59, 0x00, -0x0008, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x56, 0x00, 0x0000, 0x000000a9, 0x00000000, NULL }, + WAIT(120), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0000, 0x000000a8, 0x00000000, NULL }, + WAIT(60), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x56, 0x00, 0x0000, 0x00000070, 0x00000000, NULL }, + WAIT(180), + { 0x52, 0x00, 0x0000, 0x00020000, 0x00000000, NULL }, + WAIT(60), + { 0x53, 0x00, 0x0000, 0x00020000, 0x00000000, NULL }, + WAIT(60), + { 0x52, 0x00, 0x0000, 0x00020000, 0x00000000, NULL }, + WAIT(60), + { 0x53, 0x00, 0x0000, 0x00020000, 0x00000000, NULL }, + WAIT(180), + { 0x52, 0x00, 0x0000, 0x00040000, 0x00000000, NULL }, + WAIT(60), + { 0x53, 0x00, 0x0000, 0x00040000, 0x00000000, NULL }, + WAIT(60), + { 0x52, 0x00, 0x0000, 0x00040000, 0x00000000, NULL }, + WAIT(60), + { 0x53, 0x00, 0x0000, 0x00040000, 0x00000000, NULL }, + WAIT(180), + { 0x52, 0x00, 0x0000, 0x00010000, 0x00000000, NULL }, + WAIT(60), + { 0x53, 0x00, 0x0000, 0x00010000, 0x00000000, NULL }, + WAIT(60), + { 0x52, 0x00, 0x0000, 0x00010000, 0x00000000, NULL }, + WAIT(60), + { 0x53, 0x00, 0x0000, 0x00010000, 0x00000000, NULL }, + WAIT(180), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMP_LABEL(0), +}; + +static const struct GroundLivesData s_gs0_g0_s1_lives[] = { /* 0x8137da4 */ + /* 0 */ { 0, 2, 0, 0, { 11, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs0_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 2, 0, 0, { 8, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs0_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs0_g0_s2_lives[] = { /* 0x8137dd4 */ + /* 0 */ { 0, 4, 0, 0, { 28, 33, 0, CPOS_HALFTILE }, { + [0] = s_gs0_g0_s2_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs0_g0_s2_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs0_g0_s3_lives[] = { /* 0x8137e04 */ + /* 0 */ { 0, 6, 0, 0, { 37, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs0_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 6, 0, 0, { 41, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs0_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs0_g0_s7_lives[] = { /* 0x8137e34 */ + /* 0 */ { 0, 4, 0, 0, { 28, 27, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs0_g0_s7_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 29, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs0_g0_s7_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs0_g0_s8_lives[] = { /* 0x8137e64 */ + /* 0 */ { 0, 0, 0, 0, { 11, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs0_g0_s8_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 8, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs0_g0_s8_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs0_g1_s0_lives[] = { /* 0x8137e94 */ + /* 0 */ { 72, 0, 0, 0, { 12, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs0_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 75, 0, 0, 0, { 16, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs0_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 70, 0, 0, 0, { 20, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs0_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 71, 0, 0, 0, { 24, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs0_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 76, 0, 0, 0, { 36, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs0_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 45, 0, 0, 0, { 40, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs0_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 47, 0, 0, 0, { 17, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs0_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 48, 0, 0, 0, { 20, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs0_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 49, 0, 0, 0, { 23, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs0_g1_s0_lives8_dlg2, + } }, + /* 9 */ { 73, 0, 0, 0, { 32, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs0_g1_s0_lives9_dlg2, + } }, + /* 10 */ { 51, 0, 0, 0, { 26, 25, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs0_g1_s0_lives10_dlg2, + } }, + /* 11 */ { 37, 0, 0, 0, { 30, 25, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs0_g1_s0_lives11_dlg2, + } }, + /* 12 */ { 38, 0, 0, 0, { 34, 24, CPOS_HALFTILE, CPOS_HALFTILE }, {} }, + /* 13 */ { 104, 0, 0, 0, { 55, 24, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs0_g1_s0_lives13_dlg0, + [2] = s_gs0_g1_s0_lives13_dlg2, + } }, + /* 14 */ { 105, 0, 0, 0, { 84, 24, CPOS_HALFTILE, CPOS_HALFTILE }, {} }, + /* 15 */ { 106, 0, 0, 0, { 60, 24, CPOS_HALFTILE, CPOS_HALFTILE }, {} }, +}; + +static const struct GroundObjectData s_gs0_g1_s0_objs[] = { /* 0x8138014 */ + /* 0 */ { 14, 0, 3, 1, { 13, 23, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs0_g1_s0_obj0_dlg2, + } }, + /* 1 */ { 13, 0, 3, 1, { 10, 23, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs0_g1_s0_obj1_dlg2, + } }, +}; + +static const struct GroundEffectData s_gs0_g1_s0_effs[] = { /* 0x8138044 */ + /* 0 */ { 5, 0, 1, 1, { 85, 24, 0, CPOS_HALFTILE }, s_gs0_g1_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs0_g1_s1_effs[] = { /* 0x8138050 */ + /* 0 */ { 5, 0, 2, 1, { 85, 24, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs0_g1_s1_eff0_script }, +}; + +static const struct GroundEventData s_gs0_g0_s0_evts[] = { /* 0x813805c */ + /* 0 */ { 6, 12, 0, 0, { 0, 24, 0, 0 }, &s_gs0_g0_s0_evt0_sref }, + /* 1 */ { 12, 6, 0, 0, { 54, 105, 0, 0 }, &s_gs0_g0_s0_evt1_sref }, + /* 2 */ { 6, 12, 0, 0, { 138, 30, 0, 0 }, &s_gs0_g0_s0_evt2_sref }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8138080 */ + &s_gs0_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs0_g0_sectors[] = { /* 0x8138084 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs0_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs0_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs0_g0_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs0_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs0_g0_s7_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs0_g0_s8_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs0_g1_sectors[] = { /* 0x81381ec */ + { LPARRAY(s_gs0_g1_s0_lives), LPARRAY(s_gs0_g1_s0_objs), LPARRAY(s_gs0_g1_s0_effs), 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, LPARRAY(s_gs0_g1_s1_effs), 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs0_groups[] = { /* 0x813823c */ + { LPARRAY(s_gs0_g0_sectors) }, + { LPARRAY(s_gs0_g1_sectors) }, +}; + +static const struct GroundLink s_gs0_links[] = { /* 0x813824c */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs0 = { LPARRAY(s_gs0_groups), s_gs0_links }; /* 0x8138254 */ diff --git a/src/data/ground/ground_data_t01p01_station.h b/src/data/ground/ground_data_t01p01_station.h new file mode 100644 index 000000000..4d1728536 --- /dev/null +++ b/src/data/ground/ground_data_t01p01_station.h @@ -0,0 +1,17921 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs1_g0_s0_station_sref_script[] = { /* 0x8138268 */ + DEBUGINFO, + SELECT_MAP(1), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_LT, 4, /* to label */ 0), + COND(JUDGE_EQ, 4, /* to label */ 1), + COND(JUDGE_EQ, 5, /* to label */ 2), + COND(JUDGE_EQ, 6, /* to label */ 3), + COND(JUDGE_EQ, 7, /* to label */ 4), + COND(JUDGE_EQ, 8, /* to label */ 5), + COND(JUDGE_EQ, 9, /* to label */ 6), + COND(JUDGE_EQ, 10, /* to label */ 7), + COND(JUDGE_EQ, 11, /* to label */ 8), + COND(JUDGE_LT, 15, /* to label */ 0), + COND(JUDGE_EQ, 15, /* to label */ 9), + COND(JUDGE_EQ, 16, /* to label */ 10), + COND(JUDGE_LT, 18, /* to label */ 11), + COND(JUDGE_EQ, 18, /* to label */ 12), + JUMP_LABEL(13), + LABEL(1), /* = 0x01 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 3, /* to label */ 14), + JUMP_LABEL(15), + LABEL(14), /* = 0x0e */ + CALL_STATION( 7, 0), + JUMP_LABEL(0), + LABEL(15), /* = 0x0f */ + CALL_STATION( 7, 0), + JUMP_LABEL(0), + LABEL(2), /* = 0x02 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 16), + COND(JUDGE_LE, 3, /* to label */ 17), + COND_EQUAL(4, /* to label */ 18), + CALL_STATION( 11, 0), + JUMP_LABEL(0), + LABEL(16), /* = 0x10 */ + CALL_STATION( 7, 0), + JUMP_LABEL(0), + LABEL(17), /* = 0x11 */ + CALL_STATION( 8, 0), + JUMP_LABEL(0), + LABEL(18), /* = 0x12 */ + CALL_STATION( 8, 0), + SELECT_ENTITIES(8, 2), + JUMP_LABEL(0), + LABEL(3), /* = 0x03 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 19), + CALL_STATION( 13, 0), + JUMP_LABEL(0), + LABEL(19), /* = 0x13 */ + CALL_STATION( 11, 0), + JUMP_LABEL(0), + LABEL(4), /* = 0x04 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 20), + CALL_STATION( 14, 0), + JUMP_LABEL(0), + LABEL(20), /* = 0x14 */ + CALL_STATION( 13, 0), + JUMP_LABEL(0), + LABEL(5), /* = 0x05 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 21), + CALL_STATION( 15, 0), + JUMP_LABEL(0), + LABEL(21), /* = 0x15 */ + CALL_STATION( 14, 0), + JUMP_LABEL(0), + LABEL(6), /* = 0x06 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 22), + COND(JUDGE_LE, 3, /* to label */ 23), + COND(JUDGE_LE, 5, /* to label */ 24), + JUMP_LABEL(0), + LABEL(22), /* = 0x16 */ + CALL_STATION( 15, 0), + JUMP_LABEL(0), + LABEL(23), /* = 0x17 */ + CALL_STATION( 16, 0), + JUMP_LABEL(0), + LABEL(24), /* = 0x18 */ + CALL_STATION( 18, 0), + JUMP_LABEL(0), + LABEL(7), /* = 0x07 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 3, /* to label */ 25), + JUMP_LABEL(0), + LABEL(25), /* = 0x19 */ + JUMP_SCRIPT(EVENT_M01E06A_L003), + LABEL(8), /* = 0x08 */ + CALL_STATION( 22, 0), + JUMP_LABEL(0), + LABEL(9), /* = 0x09 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 3, /* to label */ 26), + COND(JUDGE_LE, 5, /* to label */ 27), + COND(JUDGE_LE, 7, /* to label */ 28), + COND(JUDGE_LE, 11, /* to label */ 29), + JUMP_LABEL(30), + LABEL(26), /* = 0x1a */ + CALL_STATION( 24, 0), + JUMP_LABEL(0), + LABEL(27), /* = 0x1b */ + CALL_STATION( 25, 0), + JUMP_LABEL(0), + LABEL(28), /* = 0x1c */ + CALL_STATION( 27, 0), + JUMP_LABEL(0), + LABEL(29), /* = 0x1d */ + CALL_STATION( 29, 0), + JUMP_LABEL(0), + LABEL(30), /* = 0x1e */ + CALL_STATION( 30, 0), + JUMP_LABEL(0), + LABEL(10), /* = 0x0a */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 31), + COND(JUDGE_LE, 4, /* to label */ 32), + JUMP_LABEL(33), + LABEL(31), /* = 0x1f */ + CALL_STATION( 34, 0), + JUMP_LABEL(0), + LABEL(32), /* = 0x20 */ + CALL_STATION( 35, 0), + JUMP_LABEL(0), + LABEL(33), /* = 0x21 */ + CALL_STATION( 36, 0), + JUMP_LABEL(0), + LABEL(11), /* = 0x0b */ + CALL_STATION( 36, 0), + JUMP_LABEL(0), + LABEL(12), /* = 0x0c */ + CALL_STATION( 38, 0), + JUMP_LABEL(0), + LABEL(13), /* = 0x0d */ + CALL_STATION( 1, 0), + JUMP_LABEL(0), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(START_MODE, 1, /* to label */ 34), + JUMPIF_EQUAL(START_MODE, 3, /* to label */ 35), + JUMPIF_EQUAL(START_MODE, 2, /* to label */ 36), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 36), + JUMP_LABEL(34), + LABEL(36), /* = 0x24 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(9, /* to label */ 37), + COND_EQUAL(10, /* to label */ 37), + COND_EQUAL(11, /* to label */ 37), + COND_EQUAL(15, /* to label */ 37), + COND_EQUAL(16, /* to label */ 37), + COND_EQUAL(17, /* to label */ 37), + COND_EQUAL(2, /* to label */ 38), + COND_EQUAL(3, /* to label */ 38), + COND_EQUAL(4, /* to label */ 39), + COND_EQUAL(6, /* to label */ 40), + JUMP_LABEL(37), + LABEL(34), /* = 0x22 */ + SELECT_LIVES(0, 7), + JUMP_LABEL(41), + LABEL(35), /* = 0x23 */ + SELECT_LIVES(0, 8), + JUMP_LABEL(41), + LABEL(37), /* = 0x25 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(41), + LABEL(38), /* = 0x26 */ + SELECT_LIVES(0, 2), + JUMP_LABEL(41), + LABEL(39), /* = 0x27 */ + SELECT_LIVES(0, 3), + JUMP_LABEL(41), + LABEL(40), /* = 0x28 */ + SELECT_LIVES(0, 4), + JUMP_LABEL(41), + LABEL(41), /* = 0x29 */ + BGM_SWITCH(7), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs1_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs1_g0_s0_station_sref_script }; /* 0x8138db4 */ + +static const struct ScriptCommand s_gs1_g0_s0_evt0_sref_script[] = { /* 0x8138dc0 */ + DEBUGINFO, + JUMPIF_SCENE_EQ(SCENARIO_MAIN, 9, 5, /* to label */ 0), + JUMPIF_EQUAL(WARP_LOCK, 0, /* to label */ 1), + JUMPIF_EQUAL(WARP_LOCK, 3, /* to label */ 2), + JUMPIF_EQUAL(WARP_LOCK, 4, /* to label */ 3), + JUMP_LABEL(1), + CALL_SCRIPT(EVENT_DIVIDE_WARP_LOCK_FUNC), + RET, + LABEL(1), /* = 0x01 */ + { 0x01, 0x00, -0x0001, 0x00000009, 0x00000000, NULL }, + HALT, + LABEL(2), /* = 0x02 */ + EXECUTE_STATION(-1, 7, 1), + HALT, + LABEL(3), /* = 0x03 */ + EXECUTE_STATION(-1, 8, 1), + HALT, + LABEL(0), /* = 0x00 */ + EXECUTE_STATION(-1, 19, 0), + HALT, +}; + +static const struct ScriptRef s_gs1_g0_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs1_g0_s0_evt0_sref_script }; /* 0x8138f00 */ + + +static const struct ScriptCommand s_gs1_g0_s0_evt1_sref_script[] = { /* 0x8138f0c */ + DEBUGINFO, + { 0x01, 0x00, -0x0001, 0x00000002, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptRef s_gs1_g0_s0_evt1_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs1_g0_s0_evt1_sref_script }; /* 0x8138f3c */ + +static const struct ScriptCommand s_gs1_g0_s0_evt2_sref_script[] = { /* 0x8138f48 */ + DEBUGINFO, + { 0x01, 0x00, -0x0001, 0x00000004, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptRef s_gs1_g0_s0_evt2_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs1_g0_s0_evt2_sref_script }; /* 0x8138f78 */ + +static const struct ScriptCommand s_gs1_g0_s0_evt3_sref_script[] = { /* 0x8138f84 */ + DEBUGINFO, + { 0x01, 0x00, -0x0001, 0x00000006, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptRef s_gs1_g0_s0_evt3_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs1_g0_s0_evt3_sref_script }; /* 0x8138fb4 */ + +static const struct ScriptCommand s_gs1_g0_s0_obj0_dlg2[] = { /* 0x8138fc0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Welcome!\n#+The fun and bustling Pokémon Square!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("Whiscash Pond ↑\n Pelipper Post Office →") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g0_s0_obj1_dlg2[] = { /* 0x81390c0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+↑\n#+Whiscash Pond") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g0_s0_obj2_dlg2[] = { /* 0x8139158 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("\n#+Pelipper Post Office →") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g0_s1_lives0_dlg0[] = { /* 0x81391f4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs1_g0_s1_lives1_dlg0[] = { /* 0x8139234 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs1_g0_s2_lives0_dlg0[] = { /* 0x8139274 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs1_g0_s2_lives1_dlg0[] = { /* 0x81392b4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs1_g0_s3_lives0_dlg0[] = { /* 0x81392f4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs1_g0_s3_lives1_dlg0[] = { /* 0x8139334 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs1_g0_s4_lives0_dlg0[] = { /* 0x8139374 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs1_g0_s4_lives1_dlg0[] = { /* 0x81393b4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs1_g0_s7_lives0_dlg0[] = { /* 0x81393f4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs1_g0_s7_lives1_dlg0[] = { /* 0x8139434 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs1_g0_s8_lives0_dlg0[] = { /* 0x8139474 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs1_g0_s8_lives1_dlg0[] = { /* 0x81394a4 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs1_g1_s0_station_sref_script[] = { /* 0x81394d4 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs1_g1_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs1_g1_s0_station_sref_script }; /* 0x8139514 */ + +static const struct ScriptCommand s_gs1_g1_s0_lives0_dlg2[] = { /* 0x8139520 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g1_s0_lives1_dlg2[] = { /* 0x8139580 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g1_s0_lives2_dlg2[] = { /* 0x81395e0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g1_s0_lives3_dlg2[] = { /* 0x8139640 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g1_s0_lives4_dlg2[] = { /* 0x81396a0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g1_s0_lives5_dlg2[] = { /* 0x8139700 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g1_s0_lives6_dlg2[] = { /* 0x8139760 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What's your rescue rank?\nHow high'd you get it?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We're still Normal Rank.#W\nWe're trying, but...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g1_s0_lives7_dlg2[] = { /* 0x8139840 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It sounds like the natural\ndisasters were interfering with our ability\nto evolve.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I think the timing's right.#W\nI should think about evolving...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But when I evolve...#W\nI become a #CMLudicolo#R...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You know? \n#CMLudicolo#R is a carefree Pokémon.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I don't know about having\nmy personality become carefree...#W\nWhat do you think? Huh?") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g1_s0_lives8_dlg2[] = { /* 0x8139a3c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000050, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I've given up on trying to\nturn back into $m2.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" From now on, I'm living as\n$m1.\nPleased to meet you.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g1_s0_lives9_dlg2[] = { /* 0x8139b2c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Our team got the Gold Rank,\nbut...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I think the rescue ranks go\nhigher than that.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g1_s0_lives10_dlg2[] = { /* 0x8139bf4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wonder what's higher than\nthe Gold Rank?#W\nI can't imagine it.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g1_s0_lives11_dlg2[] = { /* 0x8139c9c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" For many years, countless\nPokémon have served on rescue teams.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Many have engraved\ntheir names in glory.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But if anyone asks\nabout the greatest of them all...#W\nThere is but one hero.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's Lucario...#W\nwhose exploits as a rescue leader are the\nstuff of legend.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I aspire to become like\nLucario.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" To become even closer to\nLucario's greatness...\nThat is my goal and my dream.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g1_s0_lives12_dlg2[] = { /* 0x8139ef4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" KEEP UP YOUR RESCUE\nWORK! BZBZBZZZ!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g1_s0_lives13_dlg2[] = { /* 0x8139f7c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" YOUR TEAM HAS MY\nSUPPORT! BZBZBZZT!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g2_s0_station_sref_script[] = { /* 0x813a004 */ + DEBUGINFO, + JUMPIF_EQUAL(WARP_LOCK, 0, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + JUMPIF_SCENE_LT(SCENARIO_MAIN, 19, -1, /* to label */ 6), + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(4, /* to label */ 2), + JUMPIF_SCENE_EQ(SCENARIO_SUB4, 38, 1, /* to label */ 3), + LABEL(2), /* = 0x02 */ + JUMPIF_SCENE_EQ(SCENARIO_SUB4, 43, 0, /* to label */ 4), + JUMPIF_SCENE_EQ(SCENARIO_SUB4, 43, 1, /* to label */ 4), + JUMPIF_SCENE_EQ(SCENARIO_SUB9, 53, 3, /* to label */ 5), + JUMPIF_SCENE_EQ(SCENARIO_SUB9, 53, 4, /* to label */ 5), + JUMPIF_SCENE_LT(SCENARIO_SUB7, 49, 2, /* to label */ 6), + JUMPIF_SCENE_GT(SCENARIO_SUB7, 49, -1, /* to label */ 6), + JUMPIF_SCENE_LT(SCENARIO_SUB7, 49, 4, /* to label */ 7), + JUMPIF_SUM(JUDGE_LT, EVENT_S07E01, 11, /* to label */ 7), + LABEL(6), /* = 0x06 */ + CLEAR_ARRAY(EVENT_LOCAL), + JUMPIF_SCENE_EQ(SCENARIO_SUB1, 32, 2, /* to label */ 9), + JUMP_LABEL(10), + LABEL(9), /* = 0x09 */ + SELECT_ENTITIES(39, 0), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + JUMP_LABEL(10), + LABEL(10), /* = 0x0a */ + CJUMP_SCENARIO_0(SCENARIO_SUB2), + COND(JUDGE_EQ, 33, /* to label */ 12), + COND(JUDGE_EQ, 34, /* to label */ 13), + JUMP_LABEL(14), + LABEL(12), /* = 0x0c */ + JUMPIF_SCENE_EQ(SCENARIO_SUB2, 33, 2, /* to label */ 15), + JUMP_LABEL(14), + LABEL(15), /* = 0x0f */ + SELECT_ENTITIES(40, 0), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + JUMP_LABEL(14), + LABEL(13), /* = 0x0d */ + JUMPIF_SCENE_EQ(SCENARIO_SUB2, 34, 1, /* to label */ 16), + JUMP_LABEL(14), + LABEL(16), /* = 0x10 */ + SELECT_ENTITIES(41, 0), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + JUMP_LABEL(14), + LABEL(14), /* = 0x0e */ + JUMPIF_SCENE_LT(SCENARIO_SUB4, 38, 2, /* to label */ 19), + JUMPIF_SCENE_LT(SCENARIO_SUB4, 43, 0, /* to label */ 20), + JUMP_LABEL(19), + LABEL(3), /* = 0x03 */ + SELECT_ENTITIES(42, 0), + RET_DIRECT, + LABEL(20), /* = 0x14 */ + SELECT_ENTITIES(44, 0), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + JUMP_LABEL(19), + LABEL(4), /* = 0x04 */ + SELECT_ENTITIES(45, 0), + RET_DIRECT, + LABEL(19), /* = 0x13 */ + JUMP_LABEL(22), + LABEL(7), /* = 0x07 */ + SELECT_ENTITIES(50, 0), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + JUMP_LABEL(6), + LABEL(22), /* = 0x16 */ + JUMPIF_SCENE_EQ(SCENARIO_SUB9, 55, 2, /* to label */ 24), + JUMP_LABEL(25), + LABEL(5), /* = 0x05 */ + SELECT_ENTITIES(51, 0), + RET_DIRECT, + LABEL(24), /* = 0x18 */ + SELECT_ENTITIES(52, 0), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + JUMP_LABEL(25), + LABEL(25), /* = 0x19 */ + JUMPIF_SCENE_LT(SCENARIO_MAIN, 19, -1, /* to label */ 26), + JUMPIF(JUDGE_NE, EVENT_LOCAL, 0, /* to label */ 26), + { 0x3b, 0x33, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 27), + WAIT(0), + JUMP_LABEL(26), + LABEL(28), /* = 0x1c */ + SELECT_ENTITIES(3, 0), + JUMP_LABEL(26), + LABEL(27), /* = 0x1b */ + CJUMP_RANDOM(2), + COND_EQUAL(0, /* to label */ 29), + COND_EQUAL(1, /* to label */ 30), + LABEL(29), /* = 0x1d */ + SELECT_ENTITIES(4, 0), + JUMP_LABEL(26), + LABEL(30), /* = 0x1e */ + SELECT_ENTITIES(5, 0), + JUMP_LABEL(26), + LABEL(26), /* = 0x1a */ + RET_DIRECT, +}; + +static const struct ScriptRef s_gs1_g2_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs1_g2_s0_station_sref_script }; /* 0x813a604 */ + + + + + + + + +static const struct ScriptCommand s_gs1_g3_s0_lives0_dlg2[] = { /* 0x813a610 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + ASK3( TRUE, /*default*/ 0, /* speaker */ -1, _(" Activate the subevent \"Munchlax\"?")), + CHOICE(/* label */ 1, _("Activate Type 1")), + CHOICE(/* label */ 2, _("Activate Type 2")), + CHOICE(/* label */ 3, _("*Cancel")), + LABEL(3), /* = 0x03 */ + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CANCEL_ENTITIES(3, 0), + SELECT_ENTITIES(4, 0), + JUMP_SCRIPT(END_TALK), + LABEL(2), /* = 0x02 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CANCEL_ENTITIES(3, 0), + SELECT_ENTITIES(5, 0), + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs1_g4_s0_lives0_dlg1[] = { /* 0x813a7a0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3b, 0x11, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 1), + { 0x3b, 0x15, 0x0000, 0x00000020, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 2), + LABEL(1), /* = 0x01 */ + { 0x6a, 0x00, 0x0080, -0x00000001, 0x00000000, NULL }, + CJUMP_DIR_TO_LINK(1), + COND_EQUAL(6, /* to label */ 0), + { 0x6b, 0x00, 0x0080, 0x00000002, 0x00000000, NULL }, + END_DELETE, + LABEL(2), /* = 0x02 */ + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs1_g4_s0_lives0_dlg2[] = { /* 0x813a8b0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ....................................") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g4_s1_station_sref_script[] = { /* 0x813a938 */ + DEBUGINFO, + { 0xb2, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 3), + SELECT_ENTITIES(1, 0), + RET, +}; + +static const struct ScriptRef s_gs1_g4_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs1_g4_s1_station_sref_script }; /* 0x813a9a8 */ + +static const struct ScriptCommand s_gs1_g4_s1_lives0_dlg0[] = { /* 0x813a9b4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(515), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ...Grrruummmmmbbbbblle...!") }, + WAIT(60), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + FANFARE_PLAY2(465), + SELECT_ENTITIES(-1, 2), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ....................................\n................................................\n................................................") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Belly...rumbling...#W\nHungry...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g4_s1_lives1_dlg0[] = { /* 0x813ac3c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g4_s1_lives2_dlg0[] = { /* 0x813acdc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x3c, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g4_s2_lives0_dlg0[] = { /* 0x813ad6c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g4_s2_lives1_dlg0[] = { /* 0x813adcc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g4_s2_lives2_dlg0[] = { /* 0x813ae2c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g4_s2_lives3_dlg0[] = { /* 0x813ae8c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g4_s2_lives4_dlg0[] = { /* 0x813aeec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g4_s2_lives5_dlg0[] = { /* 0x813af4c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g4_s2_lives6_dlg0[] = { /* 0x813afac */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g4_s2_lives7_dlg0[] = { /* 0x813b00c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g4_s2_lives8_dlg0[] = { /* 0x813b06c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g4_s2_lives9_dlg0[] = { /* 0x813b0cc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g4_s3_lives0_dlg0[] = { /* 0x813b12c */ + DEBUGINFO, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g4_s3_lives0_dlg1[] = { /* 0x813b16c */ + DEBUGINFO, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0080, 0x00000002, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g4_s3_lives0_dlg2[] = { /* 0x813b1ac */ + DEBUGINFO, + CLEAR_ARRAY(EVENT_LOCAL), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + ASK3(FALSE, /*default*/ -1, /* speaker */ 1, _(" Munchlax hungry...#W\nYou have food?")), + CHOICE(/* label */ 1, _("Yes.")), + CHOICE(/* label */ 2, _("No.")), + LABEL(1), /* = 0x01 */ + { 0x2e, 0x15, 0x0001, 0x00000042, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" R-really?!") }, + { 0x2e, 0x15, 0x0001, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What kind food?!\nShow Munchlax! Show, show!") }, + { 0x3c, 0x2d, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(-1, /* to label */ 2), + JUMP_LABEL(3), + LABEL(2), /* = 0x02 */ + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000045, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...Nnnnn?#W\nOh... Don't have food...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Munchlax feel sad...#W\nMunchlax go now.") }, + JUMP_SCRIPT(END_TALK), + LABEL(3), /* = 0x03 */ + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 gave Munchlax\n#+one #CI$i0#R.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Th-this #CI$i0#R!#W\nM-Munchlax big favorite!") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(516), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("Munch, munch, munch, munch, munch,\nmunch, munch, munch, munch, munch,\nmunch, munch, munch, munch, munch...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("Munch, munch, munch, munch, munch,\nmunch, munch, munch, munch, munch,\nmunch, munch, munch, munch, munch...") }, + FANFARE_STOP2(516), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Nnnnnnnnn!#W\nDeeeeelicious!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000043, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Munchlax satisfied!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............#W\nYou, good to Munchlax.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Munchlax say thank you\nwith this.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x3c, 0x2c, 0x0000, 0x0000002b, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Munchlax go now.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 4), + RET, +}; + + + + + +static const struct ScriptCommand s_gs1_g4_s3_lives0_dlg3[] = { /* 0x813b7d8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x8d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 0), + { 0xe3, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(12), + RET, + LABEL(0), /* = 0x00 */ + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x0a, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x001f, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g4_s4_lives0_dlg1[] = { /* 0x813b948 */ + DEBUGINFO, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g4_s4_lives0_dlg2[] = { /* 0x813b988 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............#W\nYou, good to Munchlax.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g5_s0_lives0_dlg1[] = { /* 0x813b9e8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000004, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3b, 0x11, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 1), + { 0x3b, 0x15, 0x0000, 0x00000040, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 2), + LABEL(1), /* = 0x01 */ + { 0x6a, 0x00, 0x0100, -0x00000001, 0x00000000, NULL }, + CJUMP_DIR_TO_LINK(5), + COND_EQUAL(6, /* to label */ 0), + { 0x6b, 0x00, 0x0100, 0x00000006, 0x00000000, NULL }, + END_DELETE, + LABEL(2), /* = 0x02 */ + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs1_g5_s0_lives0_dlg2[] = { /* 0x813baf8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ........................") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g5_s1_station_sref_script[] = { /* 0x813bb74 */ + DEBUGINFO, + { 0xb2, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + SELECT_LIVES(-1, 1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 3), + SELECT_ENTITIES(1, 0), + RET, +}; + +static const struct ScriptRef s_gs1_g5_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs1_g5_s1_station_sref_script }; /* 0x813bbe4 */ + +static const struct ScriptCommand s_gs1_g5_s1_lives0_dlg0[] = { /* 0x813bbf0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(400), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Flump!") }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(900), + SELECT_OBJECTS(-1, 1), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + FANFARE_PLAY2(465), + SELECT_ENTITIES(-1, 2), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x02, 0x0002, 0x00000045, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ....................................") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g5_s1_lives1_dlg0[] = { /* 0x813be18 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g5_s1_lives2_dlg0[] = { /* 0x813beb8 */ + DEBUGINFO, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(8), + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x001a, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g5_s1_obj0_dlg0[] = { /* 0x813bfc8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x5d, 0x00, 0x0000, 0x0000007f, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0200, -0x00000020, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, -0x00000008, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0080, -0x00000002, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00000004, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00000040, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g5_s1_obj0_dlg1[] = { /* 0x813c058 */ + DEBUGINFO, + { 0x54, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g5_s1_obj0_dlg2[] = { /* 0x813c088 */ + DEBUGINFO, + FANFARE_PLAY2(330), + CANCEL_OBJECTS(-1, 1), + EXECUTE_STATION(-1, -1, 4), + HALT, +}; + +static const struct ScriptCommand s_gs1_g5_s1_obj1_dlg0[] = { /* 0x813c0d8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x5d, 0x00, 0x0000, 0x0000007f, 0x00000000, NULL }, + { 0x84, 0x00, 0x0200, -0x00000018, -0x00000004, NULL }, + { 0x84, 0x00, 0x0100, -0x00000008, -0x00000002, NULL }, + { 0x84, 0x00, 0x0080, -0x00000002, -0x00000001, NULL }, + { 0x52, 0x00, 0x0000, 0x00000004, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00000040, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g5_s1_obj1_dlg1[] = { /* 0x813c168 */ + DEBUGINFO, + { 0x54, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g5_s1_obj1_dlg2[] = { /* 0x813c198 */ + DEBUGINFO, + FANFARE_PLAY2(330), + CANCEL_OBJECTS(-1, 1), + EXECUTE_STATION(-1, -1, 4), + HALT, +}; + +static const struct ScriptCommand s_gs1_g5_s1_obj2_dlg0[] = { /* 0x813c1e8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x5d, 0x00, 0x0000, 0x0000007f, 0x00000000, NULL }, + { 0x84, 0x00, 0x0200, -0x00000018, 0x00000004, NULL }, + { 0x84, 0x00, 0x0100, -0x00000008, 0x00000002, NULL }, + { 0x84, 0x00, 0x0080, -0x00000002, 0x00000001, NULL }, + { 0x52, 0x00, 0x0000, 0x00000004, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00000040, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g5_s1_obj2_dlg1[] = { /* 0x813c278 */ + DEBUGINFO, + { 0x54, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g5_s1_obj2_dlg2[] = { /* 0x813c2a8 */ + DEBUGINFO, + FANFARE_PLAY2(330), + CANCEL_OBJECTS(-1, 1), + EXECUTE_STATION(-1, -1, 4), + HALT, +}; + +static const struct ScriptCommand s_gs1_g5_s2_lives0_dlg0[] = { /* 0x813c2f8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g5_s2_lives1_dlg0[] = { /* 0x813c358 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g5_s2_lives2_dlg0[] = { /* 0x813c3b8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g5_s2_lives3_dlg0[] = { /* 0x813c418 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g5_s2_lives4_dlg0[] = { /* 0x813c478 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g5_s2_lives5_dlg0[] = { /* 0x813c4d8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g5_s2_lives6_dlg0[] = { /* 0x813c538 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g5_s2_lives7_dlg0[] = { /* 0x813c598 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g5_s2_lives8_dlg0[] = { /* 0x813c5f8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g5_s2_lives9_dlg0[] = { /* 0x813c658 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g5_s3_lives0_dlg1[] = { /* 0x813c6b8 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000008, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0040, -0x00000024, 0x00000000, NULL }, + CANCEL_OBJECTS(-1, 1), + WAIT(30), + { 0x6b, 0x00, 0x0080, 0x00000006, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g5_s3_lives0_dlg2[] = { /* 0x813c738 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ........................") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g5_s4_station_sref_script[] = { /* 0x813c798 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs1_g5_s4_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs1_g5_s4_station_sref_script }; /* 0x813c7d8 */ + +static const struct ScriptCommand s_gs1_g5_s4_lives0_dlg0[] = { /* 0x813c7e4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x0000007f, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + ASK3(FALSE, /*default*/ -1, /* speaker */ 2, _(" ............#WHey.#W\nThat belong to Munchlax.#W\nMunchlax want back.")), + CHOICE(/* label */ 1, _("Return it.")), + CHOICE(/* label */ 2, _("Keep it.")), + LABEL(1), /* = 0x01 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + FANFARE_PLAY2(333), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 returned\n#+the #CIApple#R to Munchlax.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" R-really?!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Really, you give food back\nto Munchlax?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000042, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Snivel...\nMunchlax feel all squishy inside...") }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#W\nYou honest and nice.\nMunchlax like.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Munchlax say thank you\nwith this.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x3c, 0x2c, 0x0000, 0x0000002b, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Munchlax go now.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 5), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, + LABEL(2), /* = 0x02 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0002, 0x00000045, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Nnnnnnnnnnnn!#W\nNnnnnnnnnnnnnnnnnnnnnnnnnnnnnn!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................#W\nMunchlax sad...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................#W\nMeanie...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 6), + { 0x3b, 0x34, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + + + + +static const struct ScriptCommand s_gs1_g5_s4_lives1_dlg0[] = { /* 0x813cd90 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g5_s4_lives2_dlg0[] = { /* 0x813cdf0 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000400, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, -0x0001, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xda, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 0), + COND_EQUAL(2, /* to label */ 1), + LABEL(0), /* = 0x00 */ + HALT, + LABEL(1), /* = 0x01 */ + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x0a, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0020, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0018, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x95, 0x08, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0x54, 0x00, 0x0021, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000004, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0080, 0x00000020, 0x00000000, NULL }, + LABEL(2), /* = 0x02 */ + { 0x3b, 0x15, 0x0000, 0x00000040, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 3), + { 0x6a, 0x00, 0x0080, 0x00000004, 0x00000000, NULL }, + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + { 0x54, 0x00, 0x0800, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x95, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g5_s5_lives0_dlg1[] = { /* 0x813d100 */ + DEBUGINFO, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000006, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g5_s5_lives0_dlg2[] = { /* 0x813d140 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............#W\nYou, good to Munchlax.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g5_s6_lives0_dlg1[] = { /* 0x813d190 */ + DEBUGINFO, + { 0x54, 0x00, 0x0021, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000003, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g5_s6_lives0_dlg2[] = { /* 0x813d1d0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x15, 0x0001, 0x00000045, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ..................#W\nMeanie...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g6_s0_station_sref_script[] = { /* 0x813d240 */ + DEBUGINFO, + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 1), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 9), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(1), + SELECT_ENTITIES(-1, 0), + SELECT_ENTITIES(7, 0), + BGM_SWITCH(7), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs1_g6_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs1_g6_s0_station_sref_script }; /* 0x813d310 */ + +static const struct ScriptCommand s_gs1_g6_s0_eff0_script[] = { /* 0x813d31c */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0200, 0x00000009, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0200, 0x0000000a, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0200, 0x0000000b, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0200, 0x0000000c, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0200, 0x0000000d, 0x00000000, NULL }, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g6_s0_lives0_dlg0[] = { /* 0x813d45c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0080, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" This is Pokémon Square.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" That's the #C5Kecleon Shop#R.#W\nYou can buy and sell items there.")), + VARIANT_DEFAULT(_(" That's the #C5Kecleon Shop#R.#W\nYou can buy and sell items there.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" That's #C5Felicity Bank#R.")), + VARIANT(/* == */ 1, _(" You can save your money\nthere.")), + VARIANT_DEFAULT(_(" That's #C5Felicity Bank#R.")), + VARIANT_DEFAULT(_(" You can save your money\nthere.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" This is the\n#C5Gulpin Link Shop#R.#W\nGulpin will link moves for you.")), + VARIANT(/* == */ 1, _(" Hah?#W What's linking?#W\nWell, if you link moves...#W\nYou can use them at the same time.")), + VARIANT(/* == */ 1, _(" If you need details, you'd\nbe better off asking Gulpin.")), + VARIANT(/* == */ 3, _(" This is the\n#C5Gulpin Link Shop#R.#W\nGulpin can link moves for you.")), + VARIANT(/* == */ 3, _(" Huh?#W What's linking?#W\nWell, if you link moves...#W\nYou can use them at the same time.")), + VARIANT(/* == */ 3, _(" You should just ask Gulpin\nfor details.")), + VARIANT_DEFAULT(_(" This is the\n#C5Gulpin Link Shop#R.#W\nGulpin can link moves for you.")), + VARIANT_DEFAULT(_(" Huh?#W What's linking?#W\nWell, if you link moves...#W\nYou can use them at the same time.")), + VARIANT_DEFAULT(_(" I think you should ask Gulpin\nif you want to know more.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" This is #C5Kangaskhan Storage#R.\nStore items here so they'll never be\nlost.")), + VARIANT(/* == */ 1, _(" If you have important\nitems, you should store them before you\nhead out to a dungeon.")), + VARIANT_DEFAULT(_(" This is #C5Kangaskhan Storage#R.\nIf you store items here, they'll never go\nmissing.")), + VARIANT_DEFAULT(_(" You should store important\nitems here before you go out on any\ndungeon adventure.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" How do you like it?\nThe shops are useful, huh?")), + VARIANT_DEFAULT(_(" What do you think?\nThe businesses here help us.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Oh, yeah, there's also the\n#C5Pelipper Post Office#R.\nIt's straight ahead past here.")), + VARIANT_DEFAULT(_(" Oh, and there's also the\n#C5Pelipper Post Office#R.\nThat's up past here.")), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" I'm sure you can get\ninformation on rescue jobs there.")), + VARIANT(/* == */ 1, _(" So, let's start with a visit\nto the #C5Pelipper Post Office#R.")), + VARIANT(/* == */ 3, _(" I think we can get rescue-\njob information there.")), + VARIANT(/* == */ 3, _(" So, how about we go to\nthe #C5Pelipper Post Office#R first?")), + VARIANT_DEFAULT(_(" I think we can get some\ninformation on rescue jobs.")), + VARIANT_DEFAULT(_(" Let's first go to the\n#C5Pelipper Post Office#R.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs1_g6_s0_lives1_dlg0[] = { /* 0x813df88 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0080, 0x00000008, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g7_s0_station_sref_script[] = { /* 0x813e0f8 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs1_g7_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs1_g7_s0_station_sref_script }; /* 0x813e128 */ + +static const struct ScriptCommand s_gs1_g7_s0_lives0_dlg2[] = { /* 0x813e134 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g7_s0_lives1_dlg2[] = { /* 0x813e194 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g7_s0_lives2_dlg2[] = { /* 0x813e1f4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g7_s0_lives3_dlg2[] = { /* 0x813e254 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g7_s0_lives4_dlg2[] = { /* 0x813e2b4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g7_s0_lives5_dlg1[] = { /* 0x813e314 */ + DEBUGINFO, + { 0x51, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(MOVE_BOY), + RET, +}; + +static const struct ScriptCommand s_gs1_g7_s0_lives5_dlg2[] = { /* 0x813e354 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I don't know why, but\nthere've been many natural disasters\nlately.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" A lot of Pokémon have gone\nwild and violent because the disasters\nscared them...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's a mean world out there.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g7_s0_lives6_dlg1[] = { /* 0x813e494 */ + DEBUGINFO, + { 0x51, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(MOVE_GIRL), + RET, +}; + +static const struct ScriptCommand s_gs1_g7_s0_lives6_dlg2[] = { /* 0x813e4d4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There was a forest fire not\nlong ago.\nIt was terrible.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Luckily, Blastoise and\nFeraligatr were able to douse it quickly...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But it could have been much\nworse if they were slower getting\nthere.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g7_s0_lives7_dlg2[] = { /* 0x813e61c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Pardon?\nOh, the #C5Pelipper Post Office#R?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The #C5Pelipper Post Office#R\nwould be...") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Straight down this path.") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's out at the cape.\nYou can't miss it.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g7_s0_lives7_dlg3[] = { /* 0x813e794 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_END_TALK_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs1_g7_s1_station_sref_script[] = { /* 0x813e844 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET, +}; + +static const struct ScriptRef s_gs1_g7_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs1_g7_s1_station_sref_script }; /* 0x813e874 */ + +static const struct ScriptCommand s_gs1_g7_s1_lives0_dlg0[] = { /* 0x813e880 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh?\nAre you going home already?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(10), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" We haven't gone to the\n#C5Pelipper Post Office#R yet?")), + VARIANT(/* == */ 1, _(" You can go home after we\ngo to the #C5Pelipper Post Office#R.")), + VARIANT_DEFAULT(_(" We haven't gone to the\n#C5Pelipper Post Office#R yet.")), + VARIANT_DEFAULT(_(" Let's go to the #C5Pelipper\nPost Office#R at least.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs1_g7_s1_lives1_dlg0[] = { /* 0x813ead4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g8_s0_station_sref_script[] = { /* 0x813eb54 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_MAIN, 5, 4, /* to label */ 0), + CANCEL_LIVES(8, 0), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + SELECT_ENTITIES(-1, -1), + LABEL(1), /* = 0x01 */ + RET_DIRECT, +}; + +static const struct ScriptRef s_gs1_g8_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs1_g8_s0_station_sref_script }; /* 0x813ebd4 */ + +static const struct ScriptCommand s_gs1_g8_s0_lives0_dlg2[] = { /* 0x813ebe0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g8_s0_lives1_dlg2[] = { /* 0x813ec40 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g8_s0_lives2_dlg2[] = { /* 0x813eca0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g8_s0_lives3_dlg2[] = { /* 0x813ed00 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g8_s0_lives4_dlg2[] = { /* 0x813ed60 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g8_s0_lives5_dlg2[] = { /* 0x813edc0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_SCENE_LT(SCENARIO_MAIN, 5, 4, /* to label */ 0), + { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + EXECUTE_STATION(-1, 9, 0), + HALT, +}; + +static const struct ScriptCommand s_gs1_g8_s0_lives6_dlg1[] = { /* 0x813ee60 */ + DEBUGINFO, + { 0x51, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(MOVE_BOY), + RET, +}; + +static const struct ScriptCommand s_gs1_g8_s0_lives6_dlg2[] = { /* 0x813eea0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There've been so many\nnatural disasters lately...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" More Pokémon are starting\ntheir own rescue teams.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g8_s0_lives7_dlg1[] = { /* 0x813ef7c */ + DEBUGINFO, + { 0x51, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(MOVE_GIRL), + RET, +}; + +static const struct ScriptCommand s_gs1_g8_s0_lives7_dlg2[] = { /* 0x813efbc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x0000004f, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, my gosh, the forest fire\na while back was simply awful.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I hightailed it out of there!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g8_s1_station_sref_script[] = { /* 0x813f0a0 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET, +}; + +static const struct ScriptRef s_gs1_g8_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs1_g8_s1_station_sref_script }; /* 0x813f0d0 */ + +static const struct ScriptCommand s_gs1_g8_s1_lives0_dlg0[] = { /* 0x813f0dc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh?\nYou want to go home already?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We're already here.\nLet me show you around a bit more.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g8_s1_lives1_dlg0[] = { /* 0x813f23c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g8_s2_lives0_dlg0[] = { /* 0x813f2bc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g8_s2_lives1_dlg0[] = { /* 0x813f2ec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g8_s2_lives2_dlg0[] = { /* 0x813f31c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g8_s2_lives3_dlg0[] = { /* 0x813f34c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g8_s2_lives4_dlg0[] = { /* 0x813f37c */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g8_s2_lives5_dlg0[] = { /* 0x813f3bc */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g8_s2_lives6_dlg0[] = { /* 0x813f3fc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(1), + RET, +}; + +static const struct ScriptCommand s_gs1_g8_s2_lives7_dlg0[] = { /* 0x813f44c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(1), + RET, +}; + +static const struct ScriptCommand s_gs1_g8_s2_lives8_dlg2[] = { /* 0x813f49c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g8_s2_lives9_dlg2[] = { /* 0x813f4fc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g8_s2_evt0_sref_script[] = { /* 0x813f55c */ + DEBUGINFO, + EXECUTE_STATION(-1, 10, 0), + HALT, +}; + +static const struct ScriptRef s_gs1_g8_s2_evt0_sref = { 57, 7, NULL /* NORMAL_EVENT */, s_gs1_g8_s2_evt0_sref_script }; /* 0x813f58c */ + +static const struct ScriptCommand s_gs1_g9_s0_station_sref_script[] = { /* 0x813f598 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 5, 4), + CANCEL_LIVES(8, 0), + SELECT_ENTITIES(8, 2), + RET, +}; + +static const struct ScriptRef s_gs1_g9_s0_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs1_g9_s0_station_sref_script }; /* 0x813f608 */ + +static const struct ScriptCommand s_gs1_g9_s0_lives0_dlg0[] = { /* 0x813f614 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000012, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Friends are my treasures!\nWelcome to $n2 Club--a circle\nof friends! ") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Oh?#W\nIs this your first visit here?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Oh, I get it!#W\nYou started a rescue team too, didn't you?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You've come to the right\nplace!#W I sell Friend Areas to add\nmembers to your rescue team.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Since you're here for the\nvery first time, I'll give you two Friend\nAreas for free!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Let's do it!#W\nWigglytuff〜♪ Wigglytuff〜♪#W\nLet's be friends... Taaaaaaah!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(603), + { 0x28, 0x01, 0x0005, 0x00000002, 0x00808010, NULL }, + { 0x27, 0x01, 0x0005, 0x00000002, 0x00808010, NULL }, + { 0x28, 0x01, 0x0005, 0x00000002, 0x00808010, NULL }, + { 0x27, 0x01, 0x0005, 0x00000002, 0x00808010, NULL }, + { 0xe2, 0x00, 0x025b, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY(206), + { 0x3b, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Congratulations!#W\nYou can go to the #CHWild Plains#R now.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You can also go to the\n#CHMist-Rise Forest#R.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Now you can recruit\nPokémon that live in these two Friend\nAreas.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" How do you recruit new\nmembers?#W Well, if you're fighting\nPokémon that live in a Friend Area...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Sometimes, they will come\nto admire you as a friend.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" In that case, they may ask\nto join your team.#W\nJust keep trying!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + SELECT_ENTITIES(-1, 1), + WAIT(1), + WAIT(15), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" BZBZBZZT!#W\nIF YOU'RE GIVING FRIEND AREAS AWAY...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" CAN YOU ALSO GIVE MY\nFRIENDS ACCESS TO THE #CHPOWER PLANT#R\nFRIEND AREA?") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I ALSO WANT TO JOIN\nTHEIR RESCUE TEAM.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" OK! Gotcha!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm giving it away today!#W\nWigglytuff〜♪ Wigglytuff〜♪#W\nLet's be friends... Taaaaaaah!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(603), + { 0x28, 0x01, 0x0005, 0x00000002, 0x00808010, NULL }, + { 0x27, 0x01, 0x0005, 0x00000002, 0x00808010, NULL }, + { 0x28, 0x01, 0x0005, 0x00000002, 0x00808010, NULL }, + { 0x27, 0x01, 0x0005, 0x00000002, 0x00808010, NULL }, + { 0xe2, 0x00, 0x025b, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY(206), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Congratulations!#W\nYou can go to the #CHPower Plant#R now.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0004, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" YES!\nNOW I CAN JOIN THEIR TEAM!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" YAY! BZBZBZZT!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" SORRY.#W\nI KNOW MY FRIEND TURNED DOWN YOUR\nOFFER TO JOIN YOUR TEAM YESTERDAY...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" BUT AFTER MULLING IT\nOVER ALL LAST NIGHT...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" MY FRIEND DEVELOPED AN\nOVERWHELMING DESIRE TO BECOME YOUR\nTEAM MEMBER.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I APOLOGIZE, BUT COULD\nYOU ALLOW MY FRIEND TO JOIN YOUR\nRESCUE TEAM?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, wow!#W\nDon't forget, we were the ones that asked\nyour friend to join us.") }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" So, yes, that'd be awesome!\nGlad to have your friend on board!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ALL RIGHT!\nGOOD ON YOU! BZBZBZZ!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" DO YOUR BEST, AND TRY\nNOT TO HINDER YOUR RESCUE\nTEAMMATES! BZBZBZZT!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0004, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" YEAH! I'LL DO MY BEST!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" YAY, BZBZBZZ!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY(204), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n4 became a team member!") }, + { 0xe1, 0x00, 0x00cc, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x3b, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to $n4?")), + CHOICE(/* label */ 0, _("*Yes.")), + CHOICE(/* label */ 1, _("No.")), + LABEL(0), /* = 0x00 */ + { 0x3d, 0x00, 0x0000, -0x00000001, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0x3b, 0x19, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I'LL BE RESTING UP IN THE\n#CHPOWER PLANT#R FRIEND AREA.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" IF YOU WANT ME ALONG\nFOR A RESCUE, COME GET ME AT THE\n#CHPOWER PLANT#R.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" OK! BZBZBZZ!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You can go to your Friend\nAreas by taking the left path from your\nrescue team base.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There's a sign on the path\nto the left of your rescue team base,\nso you shouldn't have any trouble.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That's all the giveaways\ntoday!#W If you want more Friend Areas,\nyou'll have to buy them now.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g9_s0_lives1_dlg0[] = { /* 0x81408d0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000013, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(7), + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g9_s0_lives2_dlg0[] = { /* 0x8140a10 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g9_s0_lives2_dlg2[] = { /* 0x8140ae0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_SCENE_LT(SCENARIO_MAIN, 5, 4, /* to label */ 0), + { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_MAIN, 5, 4), + CANCEL_LIVES(8, 0), + SELECT_ENTITIES(8, 2), + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g9_s1_lives0_dlg0[] = { /* 0x8140ba0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0180, 0x00000014, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x10, 0x0080, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x89, 0x88, 0x0100, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g9_s1_lives1_dlg0[] = { /* 0x8140dc0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0180, 0x00000015, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(7), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x89, 0x88, 0x0100, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g10_s0_station_sref_script[] = { /* 0x8140f60 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 0), + CANCEL_ENTITIES(8, 0), + BGM_SWITCH(7), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 1), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 2), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(60), + EXECUTE_FUNCTION(EVENT_M01E03A_L003), + RET, +}; + +static const struct ScriptRef s_gs1_g10_s0_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs1_g10_s0_station_sref_script }; /* 0x8141040 */ + +static const struct ScriptCommand s_gs1_g10_s0_eff0_script[] = { /* 0x814104c */ + DEBUGINFO, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x28, 0x0200, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x28, 0x0200, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x28, 0x0200, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x20, 0x0300, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x30, 0x0200, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x88, 0x00, 0x0400, 0x00000059, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x88, 0x00, 0x0100, 0x0000005a, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x88, 0x00, 0x0100, 0x00000058, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x7a, 0x00, 0x00f0, 0x0000001b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x18, 0x0100, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x88, 0x00, 0x0180, 0x0000005b, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g10_s0_lives2_dlg0[] = { /* 0x81412bc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh? What's going on over\nthere?#W\nThere seems to be a commotion.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(120), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x00000016, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x0000004e, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x2e, 0x0f, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Please help my friend!\nPlease, I need help!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Forget it.\nWe're not about to work for that.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But my friend needs a gust\nof wind! Please!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, what's up?")), + VARIANT_DEFAULT(_(" Hi, what's going on?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x93, 0x04, 0x000b, 0x0000004d, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x05, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Huh? That scene there?") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" $n2's begging for\na rescue mission, but not finding any luck.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" See that guy?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000055, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x00, 0x0004, -0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" There, the one in the middle\nwith the pointy nose.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" He's a Pokémon named\n$m3.\nHe's got his own rescue team.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x05, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" But his team's greedy.\nThey don't work unless they get paid\nroyally.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" $n2's been begging\nfor help, but...#W\nI feel sorry for that poor Pokémon.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Wait!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x93, 0x04, 0x000b, 0x00000058, 0x00000000, NULL }, + WAIT(1), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(70), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0003, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh! Wh-what do you want?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Oh! It's $n5!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" That's $n5?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Hey. Rather coldhearted,\naren't you?") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" To save $n2's\nfriend, a strong wind is needed.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Your leafy fans can whip up\npowerful winds.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" It's an easy matter for you.#W\nHelp that Pokémon out.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x10, 0x0003, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Grr...#W\nTch! OK, we'll do it.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Wow...") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" That $n3 agreed without\nany argument...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + BGM_FADEIN(80, 7), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, who are those guys?")), + VARIANT_DEFAULT(_(" Say, who are they?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x05, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" What? You don't know?!\nIt's $n5's team!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" They're the most famous\nrescue team around these parts.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x00, 0x0004, -0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" That's $n6.#W\nHis Flamethrower can melt mountains!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" That's $n7.#W\nHe takes great pride in his armored\nbody and amazing strength.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" And that's the leader,\n$n5.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" $n5 doesn't like\nphysical attacks.\nHe fights with his psychic powers.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" He's endowed with an\namazing brain and an IQ of 5,000.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Apparently, he's memorized\neverything that's happened in the world.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" $n5 does all the\ncommanding in the team.#W\nHe's clearly in charge.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(16), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Th-thank you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x2e, 0x02, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" No need for thanks.\nIt is only natural that you get help.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" If anyone turns you down\nagain, come see me.\nTake care.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + WAIT(1), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + WAIT(46), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("#C6{SPEECH_BUBBLE}#R: C-cool...") }, + WAIT(60), + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("#C6{SPEECH_BUBBLE}#R: I wouldn't expect less from a Gold\nRank rescue team.") }, + WAIT(40), + { 0x91, 0x0a, 0x000b, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(70), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(30), + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x14, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" ...!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(24), + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Wah! What's wrong?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" What's up?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0f, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" ......#W\nIt's fine. Nothing.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(64), + { 0x2e, 0x14, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Let's go.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(94), + WAIT(30), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + BGM_FADEIN(60, 7), + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Whew!\nThat was scary! Sheesh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0001, 0x0000000b, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...C-cool...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Whew, $n0...#W\nThat's what we've got to become.")), + VARIANT(/* == */ 1, _(" Let's get more members and\nmake our rescue team first-class!")), + VARIANT(/* == */ 3, _(" Whew, $n0!#W\nWe need to become like them!")), + VARIANT(/* == */ 3, _(" Let's recruit more members\nand make our rescue team first-class!")), + VARIANT_DEFAULT(_(" Whew, $n0!#W\nWe need to become like them!")), + VARIANT_DEFAULT(_(" Let's recruit more members\nand make our rescue team first-class!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(32), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Not if I can help it!\nKekeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(120), + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs1_g10_s0_lives3_dlg0[] = { /* 0x8142cf4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x0000004e, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x00000017, 0x00000000, NULL }, + { 0x8e, 0x01, 0x0000, 0x0000004e, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x0000004d, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(3), + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000058, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x0000004d, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000058, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(455), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x90, 0x20, 0x0000, 0x0000001c, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g10_s0_lives4_dlg0[] = { /* 0x8142f64 */ + DEBUGINFO, + { 0x54, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000058, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0x91, 0x01, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0x61, 0x00, 0x0400, 0x00000230, 0x00000108, NULL }, + WAIT(30), + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + WAIT(150), + { 0x91, 0x08, 0x0002, 0x00000001, 0x00000000, NULL }, + WAIT(60), + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g10_s0_lives5_dlg0[] = { /* 0x8143104 */ + DEBUGINFO, + { 0x54, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + WAIT(150), + { 0x91, 0x08, 0x0001, 0x00000003, 0x00000000, NULL }, + WAIT(60), + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g10_s0_lives6_dlg0[] = { /* 0x8143254 */ + DEBUGINFO, + { 0x54, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000058, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + WAIT(65), + { 0x91, 0x01, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0x61, 0x00, 0x0400, 0x000001d0, 0x00000108, NULL }, + WAIT(30), + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g10_s0_lives7_dlg0[] = { /* 0x81433e4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x10, 0x0200, 0x00000006, 0x00000000, NULL }, + { 0x89, 0x10, 0x0100, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + WAIT(48), + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(20), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x08, 0x0100, 0x00000003, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000007, 0x00000000, NULL }, + WAIT(50), + { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, + WAIT(70), + { 0x89, 0x30, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g10_s0_lives8_dlg0[] = { /* 0x8143574 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x01, 0x0000, 0x00000058, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_STOP2(465), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, + FANFARE_PLAY2(468), + WAIT(48), + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + WAIT(40), + { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + FANFARE_PLAY2(468), + WAIT(40), + { 0x91, 0x04, 0x000b, 0x00000007, 0x00000000, NULL }, + FANFARE_PLAY2(468), + WAIT(40), + FANFARE_STOP2(468), + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + WAIT(16), + FANFARE_PLAY2(470), + CALL_SCRIPT(SWEAT_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x01cc, 0x00000018, 0x00000000, NULL }, + WAIT(1), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x01cc, 0x00000018, 0x00000000, NULL }, + WAIT(32), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g10_s0_lives9_dlg0[] = { /* 0x81437d4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x01, 0x0000, 0x00000058, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x01cc, 0x00000019, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g10_s0_lives10_dlg0[] = { /* 0x8143884 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x01, 0x0000, 0x00000058, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6b, 0x00, 0x01cc, 0x00000019, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g10_s0_lives11_dlg0[] = { /* 0x8143934 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x01, 0x0000, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x0002, 0x00000055, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(3), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x01, 0x0000, 0x00000058, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x01, 0x0000, 0x00000004, 0x00000000, NULL }, + FANFARE_PLAY2(455), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x01, 0x0000, 0x00000058, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(455), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0x62, 0x00, 0x0100, -0x00000008, -0x00000008, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g10_s1_lives0_dlg0[] = { /* 0x8143b44 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000001a, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x0f, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x7a, 0x00, 0x00f0, 0x0000001b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(466), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x10, 0x0000, 0x00000059, 0x00000000, NULL }, + WAIT(16), + { 0x8e, 0x10, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT(16), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x7a, 0x00, 0x0080, 0x0000001c, 0x00000000, NULL }, + WAIT(128), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g10_s1_lives1_dlg0[] = { /* 0x8143d14 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000001d, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x7a, 0x00, 0x00f0, 0x0000001e, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x8e, 0x10, 0x0000, 0x00000058, 0x00000000, NULL }, + WAIT(16), + FANFARE_PLAY2(469), + CALL_SCRIPT(QUESTION_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(5), + FANFARE_STOP2(469), + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x7a, 0x00, 0x0088, 0x0000001f, 0x00000000, NULL }, + WAIT(136), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g10_s1_lives2_dlg0[] = { /* 0x8143e74 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000020, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x7a, 0x00, 0x00f0, 0x00000021, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x10, 0x0000, 0x00000058, 0x00000000, NULL }, + WAIT(16), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x7a, 0x00, 0x0088, 0x00000022, 0x00000000, NULL }, + WAIT(136), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g10_s2_lives0_dlg0[] = { /* 0x8143f74 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x01, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x04, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x54, 0x00, 0x0018, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x7a, 0x00, 0x008c, 0x00000023, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g11_s0_station_sref_script[] = { /* 0x8144064 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs1_g11_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs1_g11_s0_station_sref_script }; /* 0x8144094 */ + +static const struct ScriptCommand s_gs1_g11_s0_lives0_dlg2[] = { /* 0x81440a0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g11_s0_lives1_dlg2[] = { /* 0x8144100 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g11_s0_lives2_dlg2[] = { /* 0x8144160 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g11_s0_lives3_dlg2[] = { /* 0x81441c0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g11_s0_lives4_dlg2[] = { /* 0x8144220 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g11_s0_lives5_dlg2[] = { /* 0x8144280 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g11_s0_lives6_dlg1[] = { /* 0x81442e0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0024, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(MOVE_BOY), + RET, +}; + +static const struct ScriptCommand s_gs1_g11_s0_lives6_dlg2[] = { /* 0x8144320 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x0000004d, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Alakazam and his sidekicks\nwere sure cool before.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" That's how a real hero has\nto carry himself.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" By the way...#W\nApparently, it's been impossible for us to\nevolve lately.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You know how we Pokémon\nevolve if the conditions are right?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But for some reason, we\nhaven't been able to evolve at all.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's rumored that the natural\ndisasters are to blame, but...#W\nI wonder what's going on.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g11_s0_lives7_dlg1[] = { /* 0x8144578 */ + DEBUGINFO, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g11_s0_lives7_dlg2[] = { /* 0x81445b8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Did you know that a new\ntraining gym--I think they called it\na dojo--opened in town?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You know how many rescue\nteams started up? To deal with all\nthe natural disasters?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There was a group of\nconcerned Pokémon...#W\nThey wanted to support rescue teams.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" So they got together and\nbuilt the dojo.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You can find the dojo easily.") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" From here, it's just straight\ndown this path.") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you have a rescue team\ntoo, I highly recommend you pay the dojo\na visit.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g11_s0_lives7_dlg3[] = { /* 0x8144888 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_END_TALK_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs1_g11_s0_lives8_dlg2[] = { /* 0x8144938 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Alakazam's team has the\nGold Rank. Isn't that awesome?") }, + ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" You have a rescue team too,\ndon't you?#W\nWhat's your rank?")), + CHOICE(/* label */ 0, _("Nothing special.")), + CHOICE(/* label */ 1, _("Gold Rank.")), + LABEL(0), /* = 0x00 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I guess that's true.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It might be rude to say it...#W\nbut you obviously look like you really are\nnothing special.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It just goes to show how\nawesome Alakazam's team is!") }, + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What?!\nYou're Gold Rank too?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ......#W\nI'm not falling for a lie like that.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g12_s0_station_sref_script[] = { /* 0x8144bf0 */ + DEBUGINFO, + SELECT_MAP(1), + SELECT_ENTITIES(-1, 0), + FANFARE_PLAY(0), + { 0x27, 0x01, 0x000e, 0x0000001e, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + FANFARE_STOP(0), + { 0x28, 0x01, 0x000e, 0x0000001e, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs1_g12_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs1_g12_s0_station_sref_script }; /* 0x8144c80 */ + +static const struct ScriptCommand s_gs1_g12_s0_lives0_dlg0[] = { /* 0x8144c8c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0000, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Please help my friend!\nPlease, I need help!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Forget it.\nWe're not about to work for that.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" But my friend needs a gust\nof wind! Please!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + +static const struct ScriptCommand s_gs1_g12_s0_lives1_dlg0[] = { /* 0x8144d9c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g12_s0_lives2_dlg0[] = { /* 0x8144ddc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g12_s0_lives3_dlg0[] = { /* 0x8144e0c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g12_s0_lives4_dlg0[] = { /* 0x8144e3c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g12_s0_lives5_dlg0[] = { /* 0x8144e6c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g12_s0_lives6_dlg0[] = { /* 0x8144e9c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g12_s0_lives7_dlg0[] = { /* 0x8144ecc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g12_s0_lives8_dlg0[] = { /* 0x8144efc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g12_s0_lives9_dlg0[] = { /* 0x8144f2c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g13_s0_station_sref_script[] = { /* 0x8144f5c */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs1_g13_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs1_g13_s0_station_sref_script }; /* 0x8144f8c */ + +static const struct ScriptCommand s_gs1_g13_s0_lives0_dlg2[] = { /* 0x8144f98 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g13_s0_lives1_dlg2[] = { /* 0x8144ff8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g13_s0_lives2_dlg2[] = { /* 0x8145058 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g13_s0_lives3_dlg2[] = { /* 0x81450b8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g13_s0_lives4_dlg2[] = { /* 0x8145118 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g13_s0_lives5_dlg2[] = { /* 0x8145178 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g13_s0_lives6_dlg1[] = { /* 0x81451d8 */ + DEBUGINFO, + { 0x51, 0x00, 0x0026, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(MOVE_BOY), + RET, +}; + +static const struct ScriptCommand s_gs1_g13_s0_lives6_dlg2[] = { /* 0x8145218 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We heard.#W\nShiftry hasn't returned?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wonder...\nDid Shiftry maybe just run off?") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g13_s0_lives7_dlg1[] = { /* 0x81452e0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0025, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(MOVE_GIRL), + RET, +}; + +static const struct ScriptCommand s_gs1_g13_s0_lives7_dlg2[] = { /* 0x8145320 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm afraid Shiftry's team is\nalways about the money.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" They went out on that\nrescue only because Alakazam told them\nto...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I don't think they were\nvery enthusiastic about it.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g14_s0_station_sref_script[] = { /* 0x8145458 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs1_g14_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs1_g14_s0_station_sref_script }; /* 0x8145488 */ + +static const struct ScriptCommand s_gs1_g14_s0_lives0_dlg2[] = { /* 0x8145494 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g14_s0_lives1_dlg2[] = { /* 0x81454f4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g14_s0_lives2_dlg2[] = { /* 0x8145554 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g14_s0_lives3_dlg2[] = { /* 0x81455b4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g14_s0_lives4_dlg2[] = { /* 0x8145614 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g14_s0_lives5_dlg2[] = { /* 0x8145674 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g14_s0_lives6_dlg1[] = { /* 0x81456d4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0028, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(MOVE_BOY), + RET, +}; + +static const struct ScriptCommand s_gs1_g14_s0_lives6_dlg2[] = { /* 0x8145714 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Shiftry was abducted?\nThat's shocking news!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g14_s0_lives7_dlg1[] = { /* 0x81457a4 */ + DEBUGINFO, + { 0x51, 0x00, 0x0027, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(MOVE_GIRL), + RET, +}; + +static const struct ScriptCommand s_gs1_g14_s0_lives7_dlg2[] = { /* 0x81457e4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Is that right...\nShiftry was taken away to #CDMt. Thunder#R...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wonder what that place is\nlike?#W\nIt sounds rather horrible.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh? Me?#W\nI couldn't possibly go rescue him.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g14_s0_lives8_dlg1[] = { /* 0x8145914 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g14_s0_lives8_dlg2[] = { /* 0x8145944 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000050, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x0000004e, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x03, 0x0003, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm glad to see you're\nback safe.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Thank you.\nBut Shiftry is in trouble now...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Shiftry came and rescued\nme...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0003, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I hope he is safe...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g14_s0_lives9_dlg1[] = { /* 0x8145ae4 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g14_s0_lives9_dlg2[] = { /* 0x8145b14 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000050, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x0000004e, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x03, 0x0003, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm glad to see you're\nback safe.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Thank you.\nBut Shiftry is in trouble now...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Shiftry came and rescued\nme...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0003, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I hope he is safe...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g14_s0_lives10_dlg1[] = { /* 0x8145c24 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g14_s0_lives10_dlg2[] = { /* 0x8145c54 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000050, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x0000004e, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x03, 0x0003, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm glad to see you're\nback safe.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Thank you.\nBut Shiftry is in trouble now...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Shiftry came and rescued\nme...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0003, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I hope he is safe...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g15_s0_station_sref_script[] = { /* 0x8145d64 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs1_g15_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs1_g15_s0_station_sref_script }; /* 0x8145d94 */ + +static const struct ScriptCommand s_gs1_g15_s0_lives0_dlg2[] = { /* 0x8145da0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g15_s0_lives1_dlg2[] = { /* 0x8145e00 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g15_s0_lives2_dlg2[] = { /* 0x8145e60 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g15_s0_lives3_dlg2[] = { /* 0x8145ec0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g15_s0_lives4_dlg2[] = { /* 0x8145f20 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g15_s0_lives5_dlg2[] = { /* 0x8145f80 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g15_s0_lives6_dlg1[] = { /* 0x8145fe0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0029, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(MOVE_BOY), + RET, +}; + +static const struct ScriptCommand s_gs1_g15_s0_lives6_dlg2[] = { /* 0x8146020 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x0000004d, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Xatu?#W I wouldn't know.#W\nThere's really a Pokémon named that?") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g15_s0_lives7_dlg1[] = { /* 0x81460d8 */ + DEBUGINFO, + { 0x51, 0x00, 0x002a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(MOVE_BOY), + RET, +}; + +static const struct ScriptCommand s_gs1_g15_s0_lives7_dlg2[] = { /* 0x8146118 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x0000004f, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I must say, I'm very\nimpressed.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Your team is surprisingly\ncourageous. It casts you in a new light!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g15_s0_lives8_dlg2[] = { /* 0x8146204 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm glad that Shiftry is\nsafe.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g15_s0_lives9_dlg2[] = { /* 0x8146288 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0, your team is\nfantastic!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's shocking to hear that\nyou've beaten Zapdos!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g16_s0_station_sref_script[] = { /* 0x8146350 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs1_g16_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs1_g16_s0_station_sref_script }; /* 0x8146380 */ + +static const struct ScriptCommand s_gs1_g16_s0_lives0_dlg2[] = { /* 0x814638c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g16_s0_lives1_dlg2[] = { /* 0x81463ec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g16_s0_lives2_dlg2[] = { /* 0x814644c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g16_s0_lives3_dlg2[] = { /* 0x81464ac */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g16_s0_lives4_dlg2[] = { /* 0x814650c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g16_s0_lives5_dlg2[] = { /* 0x814656c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g16_s0_evt0_sref_script[] = { /* 0x81465cc */ + DEBUGINFO, + EXECUTE_STATION(-1, 17, 0), + HALT, +}; + +static const struct ScriptRef s_gs1_g16_s0_evt0_sref = { 57, 7, NULL /* NORMAL_EVENT */, s_gs1_g16_s0_evt0_sref_script }; /* 0x81465fc */ + +static const struct ScriptCommand s_gs1_g17_s0_station_sref_script[] = { /* 0x8146608 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 0), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(18, 0), + CANCEL_ENTITIES(16, 0), + SCENARIO_CALC(SCENARIO_MAIN, 9, 4), + RET, +}; + +static const struct ScriptRef s_gs1_g17_s0_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs1_g17_s0_station_sref_script }; /* 0x8146678 */ + +static const struct ScriptCommand s_gs1_g17_s0_eff0_script[] = { /* 0x8146684 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0180, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g17_s0_lives0_dlg0[] = { /* 0x8146704 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0005, 0x00000062, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0006, 0x00000063, 0x00000000, NULL }, + WAIT(30), + { 0x93, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hah?#W\nWhat are those guys talking about?")), + VARIANT_DEFAULT(_(" Huh?#W\nWhat are they chatting about?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yeah, I'm kind of shocked.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I always thought it was\nonly a legend.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0f, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" But could it be true?#W\nI'm having a hard time believing it...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000002d, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000002b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, what's up?")), + VARIANT_DEFAULT(_(" Hi, what's happening?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x10, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Well, you know the\n#C4$n6 legend#R?\nThat old story?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000010, 0x00000000, NULL }, + { 0x91, 0x08, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The $n6 legend?#W\nWhat's that?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What, you don't know?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You know, it's that old\nfairy tale.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" How you'll get cursed if you\never grab one of Ninetales's tails.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" All this time, everyone\nthought it was just a legend.") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" But lately, it's been rumored\nthat maybe it really happened.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Well, it is still a mere\nrumor.") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I wouldn't put too much\nstock in that story if I were you.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Personally, I don't believe\nin rumors of that sort.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If you want to know more\nabout the $n6 legend...") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You should go see a\nPokémon named $n5.\nHe knows the story well.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n5 is uh...#W\nYou know, in his pond.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x2e, 0x10, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You should visit him if you\nwant to know more.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g17_s0_lives1_dlg0[] = { /* 0x8147160 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(464), + CALL_SCRIPT(NOTICE_FUNC), + { 0x8e, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000002c, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000010, 0x00000000, NULL }, + { 0x91, 0x08, 0x0002, 0x00000003, 0x00000000, NULL }, + WAIT(20), + FANFARE_PLAY2(469), + CALL_SCRIPT(QUESTION_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g17_s0_lives2_dlg0[] = { /* 0x8147330 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(30), + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g17_s0_lives3_dlg0[] = { /* 0x81474c0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x01, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g17_s0_lives4_dlg0[] = { /* 0x8147590 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g18_s0_station_sref_script[] = { /* 0x8147620 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs1_g18_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs1_g18_s0_station_sref_script }; /* 0x8147650 */ + +static const struct ScriptCommand s_gs1_g18_s0_lives0_dlg2[] = { /* 0x814765c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g18_s0_lives1_dlg2[] = { /* 0x81476bc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g18_s0_lives2_dlg2[] = { /* 0x814771c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g18_s0_lives3_dlg2[] = { /* 0x814777c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g18_s0_lives4_dlg2[] = { /* 0x81477dc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g18_s0_lives5_dlg2[] = { /* 0x814783c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g18_s0_lives6_dlg2[] = { /* 0x814789c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Whiscash is in the pond just\nnorth of here.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You should visit him if you\nwant to chat.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g18_s0_lives7_dlg2[] = { /* 0x8147968 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Well, it is still a mere\nrumor.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I don't put any stock in\nrumors like that...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g18_s0_lives8_dlg2[] = { /* 0x8147a08 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I always thought it was\nonly a legend.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g19_s0_station_sref_script[] = { /* 0x8147a68 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(45), + { 0x23, 0x01, 0x002d, 0x00000000, 0x00000000, NULL }, + WAIT(30), + EXECUTE_FUNCTION(EVENT_M01E05B_L005), + HALT, +}; + +static const struct ScriptRef s_gs1_g19_s0_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs1_g19_s0_station_sref_script }; /* 0x8147ae8 */ + +static const struct ScriptCommand s_gs1_g19_s0_lives0_dlg0[] = { /* 0x8147af4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...Listen, $n0.")), + VARIANT_DEFAULT(_(" ...Say, $n0.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0001, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Want to knock\noff for today?\nI can't seem to get into it...")), + VARIANT_DEFAULT(_(" Want to call it a day now?\nI can't seem to get motivated today...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g19_s0_lives1_dlg0[] = { /* 0x8147cf0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g20_s0_station_sref_script[] = { /* 0x8147d50 */ + DEBUGINFO, + SELECT_MAP(1), + SELECT_ENTITIES(-1, 0), + BGM_STOP, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x22, 0x00, 0x001e, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0x23, 0x00, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x22, 0x00, 0x001e, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0x23, 0x00, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x22, 0x00, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs1_g20_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs1_g20_s0_station_sref_script }; /* 0x8147ea0 */ + +static const struct ScriptCommand s_gs1_g20_s0_eff0_script[] = { /* 0x8147eac */ + DEBUGINFO, + { 0x5b, 0x00, 0x0000, 0x0000002e, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x7a, 0x00, 0x00b4, 0x0000002f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x00000030, 0x00000000, NULL }, + { 0x6c, 0xb4, 0x0100, 0x00000031, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x00000032, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000050, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g20_s0_lives0_dlg0[] = { /* 0x8147f8c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0080, 0x00000050, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(469), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x05, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x0a, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The town's atmosphere\nfeels different somehow...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Maybe something's happened.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0, let's check\nit out!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000078, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs1_g20_s0_lives1_dlg0[] = { /* 0x81481f8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0080, 0x00000050, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(QUESTION_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000048, 0x00000000, NULL }, + { 0x91, 0x05, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x05, 0x0001, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x05, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000078, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g21_s0_station_sref_script[] = { /* 0x8148378 */ + DEBUGINFO, + SELECT_MAP(1), + SELECT_ENTITIES(-1, 0), + BGM_STOP, + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs1_g21_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs1_g21_s0_station_sref_script }; /* 0x81483f8 */ + +static const struct ScriptCommand s_gs1_g21_s0_eff0_script[] = { /* 0x8148404 */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6b, 0x00, 0x0200, 0x00000033, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x7a, 0x00, 0x0005, 0x0000003a, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g21_s0_lives0_dlg0[] = { /* 0x81484d4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0007, 0x00000061, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0008, 0x00000052, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000046, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(464), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Look!\nWhy's everyone gathered over there?")), + VARIANT_DEFAULT(_(" Look!\nWhy is everyone gathered together?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, what's up?")), + VARIANT_DEFAULT(_(" Hi, what's going on?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0005, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Let me tell you, I was\namazed!#W\nIt really was true!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" What are you talking about?")), + VARIANT_DEFAULT(_(" What was true?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" The Ninetales legend!") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" I never believed the\nrumors, so you can bet I was shocked\nto learn the truth!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" $n0, $n1.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(463), + CALL_SCRIPT(NOTICE_FUNC), + { 0x93, 0x05, 0x000a, 0x00000036, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, hi, $n3!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x0a, 0x000a, 0x00000036, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Even you came out,\n$n3?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Yes.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Ssh!#W Quiet.") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" That guy there's telling us.\nKeep it down.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hah?#W\nWho's doing the talking?")), + VARIANT_DEFAULT(_(" Huh?#W Who's talking?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I-it's...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x0000005b, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x7a, 0x00, 0x0096, 0x00000037, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x0000005b, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(473), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Ge-$n2?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + BGM_SWITCH(9), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...So I went up to the\n#C5Hill of the Ancients#R.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And that's where I saw it!\nIt was shocking stuff, I tell you!\nKekeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Shocking stuff?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This certain Pokémon was\ngetting advice from $n7.") }, + { 0x2e, 0x15, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That Pokémon...\nIt looks like an ordinary Pokémon...") }, + { 0x2e, 0x15, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But get this!#W\nIt was originally a human!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(15), + FANFARE_PLAY2(464), + CALL_SCRIPT(NOTICE_FUNC), + { 0x93, 0x05, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" What?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x2e, 0x05, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" It really existed...\nA human that turned into a Pokémon.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x2e, 0x15, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There's more.\n$n7 told the human...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That how the human became\na Pokémon has a lot to do with how\nthe world's balance is upset.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Wait a second...#W\nThat's exactly like the Ninetales legend!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x14, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh!\nDon't be too shocked yet.\nThere's more.") }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You all know how there've\nbeen many natural disasters, correct?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" According to $n7,\nthose disasters are caused by the world's\nbalance being upset.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And if the world's balance\nisn't restored soon...") }, + { 0x2e, 0x15, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The unthinkable will happen\nto the world! That's what Xatu said!\nKekeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(15), + FANFARE_PLAY2(473), + { 0x93, 0x05, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Wh-what?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0c, 0x0005, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" The world...#W\nThe unthinkable's going to happen?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" What are we to do?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000003, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" That Gengar...!#W\nHe's getting everyone worked up...")), + VARIANT_DEFAULT(_(" That Gengar...!#W\nHe's deliberately working everyone up...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Now, now, people.#W\nThere's no need to panic.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Why, I think there's a way\nwe can do something about this.\nKekeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + { 0xe4, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + WAIT(60), + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Wh-what can we do?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh, it's quite simple,\nactually.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If the world's balance is\nupset by a human becoming a Pokémon...") }, + { 0x2e, 0x15, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Then, if that human is\ngone, then everything should return\nto normal, correct?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe5, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Th-that's true!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x04, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" When you put it that way...\nmaybe you're right.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh!\nAnd that human is the rotten coward\nthat abandoned $n8, correct?") }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I don't think the human can\ncomplain about anything if we get\nrid of it.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_STOP, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Isn't that right,\n$n0?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(15), + FANFARE_PLAY2(473), + CALL_SCRIPT(SHOCK_FUNC), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + CLEAR_ARRAY(EVENT_LOCAL), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Wha...#W What?!#W\nIt... It can't be!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Y-you...#W\nYou were that human?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Is that true?\nHey!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(10), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" W-w-whoa...#W\nThis is, like...\nWe can explain...")), + VARIANT_DEFAULT(_(" W-w-wait...#W\nThis is, like...\nThere's a good explanation for...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" We're not asking you.\nWe're asking $n0!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Hey! $n0!\nSo what is it?!") }, + { 0x2e, 0x15, 0x0006, -0x00000002, 0x00000000, NULL }, + ASK3(FALSE, /*default*/ -1, /* speaker */ 6, _(" Are you really the human\nthat was in the legend?")), + CHOICE(/* label */ 35, _("..................")), + CHOICE(/* label */ 35, _("..................")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + LABEL(35), /* = 0x23 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x05, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" $n0...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekekekekekeh!\nLooks like you have nothing to say\nin your defense, $n0!") }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That's how it is, fellow\nPokémon.") }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(15), + { 0x93, 0x05, 0x000a, 0x0000005b, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Let's get rid of\n$n0 and regain peace.\nKekekekekeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(15), + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(15), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...Wh-what?")), + VARIANT(/* == */ 1, _(" E-everyone, hold up.\nWhat's with you?#W\nWhat are you going to do?")), + VARIANT_DEFAULT(_(" ...Wh-what?")), + VARIANT_DEFAULT(_(" E-everyone, what's gotten\ninto you?#W\nWhat are you going to do?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x05, 0x0002, 0x00000004, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x05, 0x0001, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x05, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0x62, 0x00, 0x004c, -0x00000008, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" $n0, forgive me!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(497), + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000008, -0x00000008, NULL }, + WAIT(60), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Wah! What the...?!")), + VARIANT_DEFAULT(_(" Wah! What are you doing?!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Waaaaah!#W\n$n0, run!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x02, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(15), + WAIT(15), + { 0xe5, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0300, -0x00000078, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Serves them right!\nKekekekeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, + LABEL(15), /* = 0x0f */ + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, + HALT, +}; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs1_g21_s0_lives1_dlg0[] = { /* 0x814a970 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000050, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000018, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x05, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x0a, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x7a, 0x00, 0x0096, 0x00000036, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + WAIT(15), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x93, 0x05, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x91, 0x08, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + WAIT(15), + { 0x6a, 0x00, 0x0100, 0x00000010, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x00000050, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x0000000a, 0x00000000, NULL }, + WAIT(2), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x004c, -0x00000008, -0x00000008, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0x91, 0x02, 0x0002, 0x00000004, 0x00000000, NULL }, + WAIT(15), + { 0x62, 0x00, 0x004c, -0x00000008, 0x00000008, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x02, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + CALL_SCRIPT(SHOCK_FUNC), + { 0x6b, 0x00, 0x0200, 0x00000037, 0x00000000, NULL }, + { 0x91, 0x02, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x02, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x6a, 0x00, 0x0300, -0x00000078, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g21_s0_lives2_dlg0[] = { /* 0x814aee0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x0000004d, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x05, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + WAIT(30), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x06, 0x0001, 0x00000006, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x06, 0x0002, 0x00000002, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x06, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x05, 0x000a, 0x00000007, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0x8b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x004c, 0x00000000, -0x00000010, NULL }, + { 0x93, 0x05, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x05, 0x000a, 0x00000006, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g21_s0_lives3_dlg0[] = { /* 0x814b1e0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000003d, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x0a, 0x000a, 0x0000005b, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0080, 0x0000003e, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0080, 0x00000035, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + LABEL(0), /* = 0x00 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + CJUMP_RANDOM(4), + COND_EQUAL(0, /* to label */ 2), + COND_EQUAL(1, /* to label */ 3), + COND_EQUAL(2, /* to label */ 4), + COND_EQUAL(3, /* to label */ 5), + LABEL(2), /* = 0x02 */ + { 0x91, 0x05, 0x000a, 0x00000004, 0x00000000, NULL }, + JUMP_LABEL(6), + LABEL(3), /* = 0x03 */ + { 0x91, 0x05, 0x000a, 0x00000003, 0x00000000, NULL }, + JUMP_LABEL(6), + LABEL(4), /* = 0x04 */ + { 0x91, 0x05, 0x000a, 0x00000005, 0x00000000, NULL }, + JUMP_LABEL(6), + LABEL(5), /* = 0x05 */ + { 0x91, 0x05, 0x000a, 0x00000002, 0x00000000, NULL }, + JUMP_LABEL(6), + LABEL(6), /* = 0x06 */ + WAIT_RANDOM(15, 90), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + CALL_SCRIPT(NOTICE_FUNC), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x05, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0x91, 0x08, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0x91, 0x08, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0080, -0x00000010, 0x00000010, NULL }, + WAIT(30), + { 0x93, 0x05, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g21_s0_lives4_dlg0[] = { /* 0x814b6a0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + LABEL(0), /* = 0x00 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + CJUMP_RANDOM(4), + COND_EQUAL(0, /* to label */ 3), + COND_EQUAL(1, /* to label */ 4), + COND_EQUAL(2, /* to label */ 5), + COND_EQUAL(3, /* to label */ 6), + LABEL(3), /* = 0x03 */ + { 0x91, 0x05, 0x000a, 0x00000004, 0x00000000, NULL }, + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + { 0x91, 0x05, 0x000a, 0x00000007, 0x00000000, NULL }, + JUMP_LABEL(7), + LABEL(5), /* = 0x05 */ + { 0x91, 0x05, 0x000a, 0x00000005, 0x00000000, NULL }, + JUMP_LABEL(7), + LABEL(6), /* = 0x06 */ + { 0x91, 0x05, 0x000a, 0x00000006, 0x00000000, NULL }, + JUMP_LABEL(7), + LABEL(7), /* = 0x07 */ + WAIT_RANDOM(15, 90), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + CALL_SCRIPT(NOTICE_FUNC), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x00000050, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0080, 0x00000039, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x7a, 0x00, 0x001e, 0x00000037, 0x00000000, NULL }, + { 0x57, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0080, 0x00000018, 0x00000000, NULL }, + { 0x57, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x004c, 0x00000008, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x62, 0x00, 0x0300, -0x00000030, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs1_g21_s0_lives5_dlg0[] = { /* 0x814bad0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + WAIT(15), + { 0x6b, 0x00, 0x00cc, 0x0000003b, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x0002, 0x00000036, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000036, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0080, 0x0000003c, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0080, 0x00000038, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + LABEL(0), /* = 0x00 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + CJUMP_RANDOM(4), + COND_EQUAL(0, /* to label */ 3), + COND_EQUAL(1, /* to label */ 4), + COND_EQUAL(2, /* to label */ 5), + COND_EQUAL(3, /* to label */ 6), + LABEL(3), /* = 0x03 */ + { 0x91, 0x05, 0x000a, 0x00000002, 0x00000000, NULL }, + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + { 0x91, 0x05, 0x000a, 0x00000001, 0x00000000, NULL }, + JUMP_LABEL(7), + LABEL(5), /* = 0x05 */ + { 0x91, 0x05, 0x000a, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(7), + LABEL(6), /* = 0x06 */ + { 0x91, 0x05, 0x000a, 0x00000007, 0x00000000, NULL }, + JUMP_LABEL(7), + LABEL(7), /* = 0x07 */ + WAIT_RANDOM(15, 90), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + CALL_SCRIPT(NOTICE_FUNC), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x004c, -0x00000008, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x004c, 0x00000000, 0x00000008, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x05, 0x0001, 0x00000006, 0x00000000, NULL }, + WAIT(15), + { 0x62, 0x00, 0x0200, -0x00000008, 0x00000008, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs1_g21_s0_lives6_dlg0[] = { /* 0x814bfb0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x02, 0x000a, 0x00000022, 0x00000000, NULL }, + CALL_SCRIPT(ANGRY_START_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(ANGRY_END_FUNC), + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0080, 0x00000034, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + LABEL(0), /* = 0x00 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + CJUMP_RANDOM(4), + COND_EQUAL(0, /* to label */ 3), + COND_EQUAL(1, /* to label */ 4), + COND_EQUAL(2, /* to label */ 5), + COND_EQUAL(3, /* to label */ 6), + LABEL(3), /* = 0x03 */ + { 0x91, 0x05, 0x000a, 0x00000004, 0x00000000, NULL }, + JUMP_LABEL(7), + LABEL(4), /* = 0x04 */ + { 0x91, 0x05, 0x000a, 0x00000003, 0x00000000, NULL }, + JUMP_LABEL(7), + LABEL(5), /* = 0x05 */ + { 0x91, 0x05, 0x000a, 0x00000005, 0x00000000, NULL }, + JUMP_LABEL(7), + LABEL(6), /* = 0x06 */ + { 0x91, 0x05, 0x000a, 0x00000006, 0x00000000, NULL }, + JUMP_LABEL(7), + LABEL(7), /* = 0x07 */ + WAIT_RANDOM(15, 90), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + CALL_SCRIPT(NOTICE_FUNC), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x0000004d, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(ANGRY_START_FUNC), + { 0x93, 0x05, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(ANGRY_END_FUNC), + WAIT(30), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x05, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x004c, -0x00000018, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x004c, -0x00000008, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x05, 0x0002, 0x00000006, 0x00000000, NULL }, + WAIT(15), + { 0x62, 0x00, 0x0200, -0x00000008, -0x00000008, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs1_g21_s0_lives7_dlg0[] = { /* 0x814c4b0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + LABEL(0), /* = 0x00 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0x91, 0x06, 0x0002, 0x00000001, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0x91, 0x06, 0x0001, 0x00000006, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + CALL_SCRIPT(NOTICE_FUNC), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(2), + CALL_SCRIPT(SHOCK_FUNC), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(2), + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(2), + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(2), + { 0x6a, 0x00, 0x0080, -0x00000040, -0x00000008, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(2), + { 0x6a, 0x00, 0x0300, -0x00000010, 0x00000008, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + LABEL(2), /* = 0x02 */ + WAIT_RANDOM(0, 30), + RET_DIRECT, + RET, +}; + +static const struct ScriptCommand s_gs1_g21_s0_lives8_dlg0[] = { /* 0x814c770 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + LABEL(0), /* = 0x00 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0x91, 0x06, 0x0001, 0x00000003, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0x91, 0x06, 0x0002, 0x00000006, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + CALL_SCRIPT(NOTICE_FUNC), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(2), + CALL_SCRIPT(SHOCK_FUNC), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(2), + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(2), + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(2), + { 0x6a, 0x00, 0x0080, -0x00000018, -0x00000008, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(2), + { 0x62, 0x00, 0x0300, -0x00000008, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + LABEL(2), /* = 0x02 */ + WAIT_RANDOM(0, 30), + RET_DIRECT, + RET, +}; + +static const struct ScriptCommand s_gs1_g21_s0_lives9_dlg0[] = { /* 0x814ca30 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + LABEL(0), /* = 0x00 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0x62, 0x00, 0x0080, 0x00000000, -0x00000010, NULL }, + WAIT_RANDOM(15, 90), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 2), + { 0x62, 0x00, 0x0080, 0x00000000, 0x00000010, NULL }, + WAIT_RANDOM(15, 90), + JUMP_LABEL(0), + LABEL(2), /* = 0x02 */ + { 0x62, 0x00, 0x0080, 0x00000000, 0x00000010, NULL }, + LABEL(1), /* = 0x01 */ + CALL_SCRIPT(NOTICE_FUNC), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(3), + CALL_SCRIPT(SHOCK_FUNC), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(3), + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(3), + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(3), + { 0x6a, 0x00, 0x0080, -0x00000020, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0080, -0x00000020, 0x00000018, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(3), + { 0x62, 0x00, 0x0100, -0x00000020, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, + LABEL(3), /* = 0x03 */ + WAIT_RANDOM(0, 30), + RET_DIRECT, + RET, +}; + +static const struct ScriptCommand s_gs1_g21_s0_lives10_dlg0[] = { /* 0x814cd40 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + LABEL(0), /* = 0x00 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0x54, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x00000007, 0x00000000, NULL }, + WAIT(1), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + CALL_SCRIPT(NOTICE_FUNC), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(2), + CALL_SCRIPT(SHOCK_FUNC), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(2), + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(2), + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(2), + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + LABEL(2), /* = 0x02 */ + WAIT_RANDOM(0, 30), + RET_DIRECT, + RET, +}; + +static const struct ScriptCommand s_gs1_g21_s0_lives11_dlg0[] = { /* 0x814cfe0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + WAIT(15), + { 0x93, 0x04, 0x000a, 0x00000047, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(0), + CALL_SCRIPT(SHOCK_FUNC), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(0), + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(0), + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x6a, 0x00, 0x004c, -0x00000018, -0x00000010, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(0), + { 0x93, 0x04, 0x000a, 0x00000047, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + WAIT_RANDOM(0, 30), + RET_DIRECT, + RET, +}; + +static const struct ScriptCommand s_gs1_g21_s0_lives12_dlg0[] = { /* 0x814d270 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + WAIT(15), + { 0x93, 0x04, 0x000a, 0x00000046, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(0), + CALL_SCRIPT(SHOCK_FUNC), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(0), + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(0), + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6a, 0x00, 0x004c, -0x00000010, -0x00000008, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + CALL_LABEL(0), + { 0x93, 0x04, 0x000a, 0x00000046, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + WAIT_RANDOM(0, 30), + RET_DIRECT, + RET, +}; + +static const struct ScriptCommand s_gs1_g22_s0_station_sref_script[] = { /* 0x814d4f0 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs1_g22_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs1_g22_s0_station_sref_script }; /* 0x814d520 */ + +static const struct ScriptCommand s_gs1_g22_s0_lives0_dlg1[] = { /* 0x814d52c */ + DEBUGINFO, + JUMP_SCRIPT(MOVE_SLEEP), +}; + +static const struct ScriptCommand s_gs1_g22_s0_lives0_dlg2[] = { /* 0x814d54c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x00, 0x0001, -0x00000002, 0x00000000, NULL }, + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g22_s0_lives0_dlg3[] = { /* 0x814d5cc */ + DEBUGINFO, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(LIVES_REPLY), +}; + +static const struct ScriptCommand s_gs1_g22_s0_lives1_dlg1[] = { /* 0x814d5fc */ + DEBUGINFO, + JUMP_SCRIPT(MOVE_SLEEP), +}; + +static const struct ScriptCommand s_gs1_g22_s0_lives1_dlg2[] = { /* 0x814d61c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x00, 0x0001, -0x00000002, 0x00000000, NULL }, + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g22_s0_lives1_dlg3[] = { /* 0x814d69c */ + DEBUGINFO, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(LIVES_REPLY), +}; + +static const struct ScriptCommand s_gs1_g22_s0_lives2_dlg1[] = { /* 0x814d6cc */ + DEBUGINFO, + JUMP_SCRIPT(MOVE_SLEEP), +}; + +static const struct ScriptCommand s_gs1_g22_s0_lives2_dlg2[] = { /* 0x814d6ec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x00, 0x0001, -0x00000002, 0x00000000, NULL }, + { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g22_s0_lives2_dlg3[] = { /* 0x814d76c */ + DEBUGINFO, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(LIVES_REPLY), +}; + +static const struct ScriptCommand s_gs1_g22_s0_lives3_dlg1[] = { /* 0x814d79c */ + DEBUGINFO, + JUMP_SCRIPT(MOVE_SLEEP), +}; + +static const struct ScriptCommand s_gs1_g22_s0_lives3_dlg2[] = { /* 0x814d7bc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x00, 0x0001, -0x00000002, 0x00000000, NULL }, + { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g22_s0_lives3_dlg3[] = { /* 0x814d83c */ + DEBUGINFO, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(LIVES_REPLY), +}; + +static const struct ScriptCommand s_gs1_g22_s0_lives4_dlg1[] = { /* 0x814d86c */ + DEBUGINFO, + JUMP_SCRIPT(MOVE_SLEEP), +}; + +static const struct ScriptCommand s_gs1_g22_s0_lives4_dlg2[] = { /* 0x814d88c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x00, 0x0001, -0x00000002, 0x00000000, NULL }, + { 0x3c, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g22_s0_lives4_dlg3[] = { /* 0x814d90c */ + DEBUGINFO, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(LIVES_REPLY), +}; + +static const struct ScriptCommand s_gs1_g22_s0_lives5_dlg1[] = { /* 0x814d93c */ + DEBUGINFO, + JUMP_SCRIPT(MOVE_SLEEP), +}; + +static const struct ScriptCommand s_gs1_g22_s0_lives5_dlg2[] = { /* 0x814d95c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x00, 0x0001, -0x00000002, 0x00000000, NULL }, + { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g22_s0_lives5_dlg3[] = { /* 0x814d9dc */ + DEBUGINFO, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(LIVES_REPLY), +}; + +static const struct ScriptCommand s_gs1_g23_s0_station_sref_script[] = { /* 0x814da0c */ + DEBUGINFO, + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(1), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Meanwhile, back in\n#+Pokémon Square...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 0), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(60), + RET, +}; + +static const struct ScriptRef s_gs1_g23_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs1_g23_s0_station_sref_script }; /* 0x814db38 */ + + +static const struct ScriptCommand s_gs1_g23_s0_eff0_script[] = { /* 0x814db44 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x20, 0x0100, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x1c, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x40, 0x0099, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g23_s0_lives0_dlg0[] = { /* 0x814dc14 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(472), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh!\nYou lot!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Why aren't you out there\nhunting down $n0's team?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" That's easy for you to say...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" It's too much for us...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x2e, 0x03, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" They say $n0's\nteam has gone way far out there.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" If we went, the best we\ncould hope for is maybe the Lapis Cave.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0003, -0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I joined the chase...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" But they fled into Mt. Blaze.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" For the life of me, I can't\ngo in there.\nAnd that's where I lost their trail.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I'm a Grass type, see.#W\nFire doesn't agree with me at all.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I don't know what became\nof $n0's team after that.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...But those fugitives...\nTo think they would risk Mt. Blaze...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" They've grown up tough!\nI can't keep up!") }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000042, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Hahaha!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0b, 0x0002, 0x00000043, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh!\nWhat a spineless lot you are!\nTch!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0004, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You're so full of big talk!\nWhat about your team, Gengar?") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You just hang around in the\nsquare and don't do a thing.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Walk the talk.\nYou guys go.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We're out of that picture.\nKekeh!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Our role is to receive word\nabout $n0's demise.\nKekekekekeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x2e, 0x15, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Tch!\nJust appointed yourself that...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Oh, my gosh! Oh, my goodness!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n7, what's\nthe word?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0007, 0x00000042, 0x00000000, NULL }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" $n0...\n$n0 is...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh! Finally!\nWe're finally rid of $n0!\nKekeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0007, 0x00000045, 0x00000000, NULL }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" No!#W\nIt's the opposite!") }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" $n0 is back!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(463), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000046, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh?!\nWhat did you say?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(50), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000003f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0d, 0x0003, 0x00000042, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0003, 0x00000000, -0x00000001, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" H-hey! Over there...") }, + WAIT(4), + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x05, 0x0006, 0x00000042, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0006, -0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" ...$n0!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x2e, 0x03, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0005, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Th-they're back...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000040, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + BGM_SWITCH(7), + { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hi, everyone!\nWe're back!") }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Whew!\nWe finally made it back.\nWe've been gone for so long...") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" It's good to be back in the\nsquare again, $n0.")), + VARIANT_DEFAULT(_(" It feels kind of nostalgic\nto be back in the square, $n0.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hey, $n1!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0x93, 0x01, 0x000b, 0x0000005b, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hm! Oh, it's you,\n$n2.\nIt's been a while.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" (Kekeh! What's with that\nsmug confidence?)") }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" (Kekeh! Maybe...)\n") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n2!#W\nYou spewed all sorts of trumped up\ngarbage, didn't you?!")), + VARIANT(/* == */ 1, _(" $n0 had nothing to\ndo with it!")), + VARIANT(/* == */ 1, _(" $n0 was innocent!")), + VARIANT_DEFAULT(_(" $n2!#W\nEverything you said was completely\nwrong!")), + VARIANT_DEFAULT(_(" $n0 had nothing to\ndo with it!")), + VARIANT_DEFAULT(_(" $n0 was innocent!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(463), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0002, 0x00000046, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ugege?!") }, + { 0x2e, 0x05, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0004, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Wh-what?!") }, + { 0x2e, 0x0d, 0x0003, 0x00000042, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0003, -0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Is that true?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" You bet.\nWe met Ninetales and found out.")), + VARIANT(/* == */ 1, _(" $n0 isn't the human\nfrom that legend.")), + VARIANT(/* == */ 1, _(" We came back when we\nfound that out.")), + VARIANT_DEFAULT(_(" Yup.\nWe met Ninetales and asked.")), + VARIANT_DEFAULT(_(" $n0 isn't the human\nfrom the legend.")), + VARIANT_DEFAULT(_(" We're back because we\ndiscovered the truth.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ugegegegegegegeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + FANFARE_PLAY2(470), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh! W-wait a second!#W\nYou can't be trusted yet.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If you're going to make that\nclaim, let's see some proof.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" P-proof?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000022, 0x00000000, NULL }, + WAIT(45), + { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That's right.\nSome hard evidence! Kekeh!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Let's see some proof!\nCome on, out with it!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Proof...#W\nWe don't have any proof...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(470), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekekekekekeh!#W\nIt's too bad you don't have proof!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You came back for us so\nwe could get rid of you easier!\nHow conveniently foolish! Kekekeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Now, fellow Pokémon.#W\nHere's your chance to get rid of\n$n0! Kekekekekeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(90), + FANFARE_PLAY2(468), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(180), + { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#WKekeh?!#W\nWhat's wrong, everyone?\nDon't you want to be rid of $n0?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000001, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" I...#W\nI always believed in $n0!") }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" You don't fool me!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(468), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000046, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ugeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x0000005b, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...I...\nI'm out.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I was saved by\n$n0's team before.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I joined the chase with a\nheavy heart because of your urging...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" But I simply can't think\nof $n0 being bad in any way.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(455), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x14, 0x0002, 0x00000046, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ugegegeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0004, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I've heard enough too!\nI believe $n0!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Yeah, that's right!\nWho needs proof?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x0f, 0x0002, 0x00000046, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ugegegegegege!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x2e, 0x15, 0x0001, 0x00000008, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" E-everyone...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + SELECT_ENTITIES(-1, 1), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x2b, 0x00, 0x0000, 0x000000d2, 0x000000d2, NULL }, + { 0x2e, 0x03, 0x0009, -0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Extra! Extra!\nRead all about it!") }, + { 0x31, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2b, 0x00, 0x0000, -0x00000001, -0x00000001, NULL }, + { 0x91, 0x0a, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x08, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(90), + FANFARE_PLAY2(468), + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" What?\nWhat is this?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x2e, 0x0c, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" ......#W\nIt looks like a newspaper...\nDoesn't it?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" OK, I'll read it aloud.\nLet's see...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+\n#+= EXTRA =") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+ \n#+$n0 Innocent!") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 met with Ninetales under\n#+the watchful eye of Alakazam...") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+...And proved that it had nothing to\n#+do with the human in the legend.") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+As a result, Gengar's claims were\n#+found to be malicious lies.") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+-End-") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(470), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ugegegegegegegegegegegeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x05, 0x0004, 0x00000041, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0004, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You rotten...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(455), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gegegeh!\nR-run!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000004, 0x00000000, NULL }, + WAIT(80), + FANFARE_PLAY2(471), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Stop, you liar!\nYou conned us!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(180), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000b, 0x00000036, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Welcome back!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yup! It's good to be back!#W\nWe're back like we promised.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0006, 0x00000042, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" ...Sniffle...") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" I'm so glad...#W\n$n0 isn't suspected anymore...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yup, I'm glad too.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We won't have to keep\nrunning from everyone anymore.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000022, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" All right, $n0.")), + VARIANT(/* == */ 1, _(" We're both worn out.\nI'm going to get some sleep.")), + VARIANT(/* == */ 1, _(" Our rescue team is back\nin business tomorrow!#W\nLet's give it our best!")), + VARIANT_DEFAULT(_(" $n0.")), + VARIANT_DEFAULT(_(" We're both exhausted.\nI'm going to get some sleep.")), + VARIANT_DEFAULT(_(" Our rescue team gets\nrevived tomorrow!#W\nLet's try to do our best!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs1_g23_s0_lives1_dlg0[] = { /* 0x8150a08 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000041, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000042, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x0000005b, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x93, 0x04, 0x000b, 0x00000036, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(210), + { 0x91, 0x0a, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0c, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(45), + { 0x91, 0x0c, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000036, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g23_s0_lives2_dlg0[] = { /* 0x8150cb8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000043, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000044, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + WAIT(220), + { 0x91, 0x0c, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x91, 0x0c, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x93, 0x08, 0x000a, 0x00000036, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g23_s0_lives3_dlg0[] = { /* 0x8150de8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x93, 0x04, 0x000b, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(ANGRY_START_FUNC), + WAIT(60), + CALL_SCRIPT(ANGRY_END_FUNC), + FANFARE_PLAY2(472), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000b, 0x0000004d, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x0000005d, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(65), + { 0x6b, 0x00, 0x0099, 0x00000048, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x08, 0x0100, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + { 0x7e, 0x00, 0x0100, 0x00000008, -0x00000008, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x000b, 0x00000001, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(QUESTION_FUNC), + WAIT(1), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000055, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000b, 0x0000004d, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + CALL_SCRIPT(SWEAT_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(180), + { 0x91, 0x0c, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(10), + CALL_SCRIPT(LOOK_AROUND_FUNC), + WAIT(20), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x62, 0x00, 0x0100, 0x00000000, -0x0000000c, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x40, 0x0200, 0x00000004, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g23_s0_lives4_dlg0[] = { /* 0x81513c8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x93, 0x04, 0x000b, 0x0000004d, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000b, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(30), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x93, 0x04, 0x000b, 0x0000005d, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x93, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x93, 0x04, 0x000b, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x93, 0x04, 0x000b, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(140), + { 0x91, 0x0a, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x0a, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x0a, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x08, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x10, 0x0099, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x0000004d, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x38, 0x0200, 0x00000004, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g23_s0_lives5_dlg0[] = { /* 0x81516e8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000050, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000b, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x0000005b, 0x00000000, NULL }, + CALL_SCRIPT(ANGRY_START_FUNC), + WAIT(30), + CALL_SCRIPT(ANGRY_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x93, 0x3c, 0x000b, 0x0000005d, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x93, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(62), + { 0x6b, 0x00, 0x0099, 0x00000047, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(2), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x93, 0x08, 0x000b, 0x0000005b, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(8), + { 0x93, 0x04, 0x000b, 0x00000022, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x0000005b, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(160), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(12), + { 0x91, 0x08, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x08, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x30, 0x0099, 0x00000004, 0x00000000, NULL }, + { 0x54, 0x00, 0x001f, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + FANFARE_PLAY2(471), + CALL_SCRIPT(ANGRY_START_FUNC), + WAIT(45), + CALL_SCRIPT(ANGRY_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x89, 0x38, 0x0200, 0x00000004, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g23_s0_lives6_dlg0[] = { /* 0x8151b48 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x93, 0x04, 0x000b, 0x0000004d, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x93, 0x08, 0x000b, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x93, 0x04, 0x000b, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + WAIT(60), + { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(8), + { 0x93, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000b, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(8), + { 0x93, 0x04, 0x000b, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(150), + { 0x91, 0x0c, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x06, 0x0100, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x89, 0x38, 0x0200, 0x00000004, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g23_s0_lives7_dlg0[] = { /* 0x8151e18 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(8), + { 0x93, 0x04, 0x000b, 0x00000055, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + WAIT(45), + { 0x91, 0x04, 0x000b, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(8), + { 0x93, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x6b, 0x00, 0x0099, 0x00000045, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(5), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x93, 0x08, 0x000b, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x93, 0x04, 0x000b, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000b, 0x0000005b, 0x00000000, NULL }, + { 0x89, 0x08, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(200), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(13), + { 0x91, 0x0a, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x0a, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x08, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x08, 0x0080, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x18, 0x0080, 0x00000004, 0x00000000, NULL }, + { 0x89, 0x05, 0x0080, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g23_s0_lives8_dlg0[] = { /* 0x81521a8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x00000049, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x0000005b, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(55), + { 0x6b, 0x00, 0x0099, 0x0000004a, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(5), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x93, 0x08, 0x000b, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(20), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, + WAIT(45), + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(469), + CALL_SCRIPT(QUESTION_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000001, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x0000004d, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(30), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(230), + { 0x91, 0x08, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT(120), + { 0x91, 0x0c, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x89, 0x40, 0x0200, 0x00000004, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g23_s0_lives9_dlg0[] = { /* 0x81525b8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x0000005d, 0x00000000, NULL }, + WAIT(45), + { 0x91, 0x04, 0x000b, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x93, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x91, 0x04, 0x000b, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000b, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(20), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, + WAIT(45), + { 0x91, 0x04, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(10), + CALL_SCRIPT(QUESTION_FUNC), + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000001, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000b, 0x0000004d, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(215), + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(10), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0x91, 0x0a, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000b, 0x00000001, 0x00000000, NULL }, + CALL_SCRIPT(QUESTION_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SWEAT_FUNC), + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x89, 0x40, 0x0200, 0x00000004, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g23_s1_lives0_dlg0[] = { /* 0x8152988 */ + DEBUGINFO, + { 0x2d, 0x07, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + FANFARE_PLAY2(451), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_STOP2(451), + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g23_s1_eff0_script[] = { /* 0x8152a68 */ + DEBUGINFO, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + WAIT(344), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000065, 0x00000000, NULL }, + WAIT(288), + { 0x52, 0x00, 0x0000, 0x00020000, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000066, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g23_s1_eff1_script[] = { /* 0x8152ba8 */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00020000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + WAIT(328), + { 0x56, 0x00, 0x0000, 0x000001be, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g24_s0_station_sref_script[] = { /* 0x8152c28 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs1_g24_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs1_g24_s0_station_sref_script }; /* 0x8152c68 */ + +static const struct ScriptCommand s_gs1_g24_s0_lives0_dlg2[] = { /* 0x8152c74 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_2N, 0, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_2N, 0, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm so sorry.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I was fully convinced of\nyour guilt, $n0.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But I am glad to hear\nyou are free from that cloud of\nsuspicion〜♪") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll never give you my\nbusiness again!#W\nI hope you won't say that.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g24_s0_lives1_dlg2[] = { /* 0x8152e2c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_2N, 1, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_2N, 1, 1), + EXECUTE_STATION(-1, 24, 1), + HALT, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g24_s0_lives2_dlg2[] = { /* 0x8152edc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_2N, 2, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_2N, 2, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I do apologize.#W\nHow could one run a bank without\ntrusting clients?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I promise to satisfy all\nyour banking needs from now on.\nI hope you'll stay.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g24_s0_lives3_dlg2[] = { /* 0x8153034 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_2N, 3, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_2N, 3, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I doubted you too!\nI do so apologize!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you could wipe the slate\nclean, I will do my best to serve your\nlinking needs!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g24_s0_lives4_dlg2[] = { /* 0x8153174 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_2N, 4, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_2N, 4, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I expected this.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I thought there had to\nbe a mistake.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I mean, look at you.\nYou don't look like the sort who can be\nup to no good.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll keep looking after your\nthings, dears! You can always count on me!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g24_s0_lives5_dlg2[] = { /* 0x8153334 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_2N, 5, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_2N, 5, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I believed in you,\n$n0!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Because you're my friend!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g24_s0_lives6_dlg1[] = { /* 0x8153430 */ + DEBUGINFO, + { 0x51, 0x00, 0x004f, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(MOVE_BOY), + RET, +}; + +static const struct ScriptCommand s_gs1_g24_s0_lives6_dlg2[] = { /* 0x8153470 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We got conned by Gengar...#W\nI'm sorry.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g24_s0_lives7_dlg1[] = { /* 0x81534fc */ + DEBUGINFO, + { 0x51, 0x00, 0x004e, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(MOVE_GIRL), + RET, +}; + +static const struct ScriptCommand s_gs1_g24_s0_lives7_dlg2[] = { /* 0x815353c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm truly sorry for what\nhappened.#W\nSorry for suspecting you.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g24_s0_lives8_dlg1[] = { /* 0x81535e0 */ + DEBUGINFO, + { 0x51, 0x00, 0x004d, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(MOVE_RANDOM), + RET, +}; + +static const struct ScriptCommand s_gs1_g24_s0_lives8_dlg2[] = { /* 0x8153620 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...So, what became of\nAlakazam's team?\nDid they head underground?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Groudon...#W\nThe mythical Pokémon...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It is rather worrying...#W\nBut I suppose it is Alakazam's team.\nThey should be fine.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g24_s0_lives9_dlg2[] = { /* 0x8153768 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Aww. No...\nI thought you were completely guilty.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm sorry you had to go\nthrough such a miserable time.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g24_s1_station_sref_script[] = { /* 0x8153848 */ + DEBUGINFO, + SELECT_LIVES(-1, 1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs1_g24_s1_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs1_g24_s1_station_sref_script }; /* 0x8153888 */ + +static const struct ScriptCommand s_gs1_g24_s1_lives0_dlg0[] = { /* 0x8153894 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x0c, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I am so sorry!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I was convinced that\n$n0 had to be the one.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I'm very ashamed that I\ntreated a valuable customer with such\ndisdain and suspicion...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It isn't just you, my brother.#W\nI am guilty of the same.") }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" B-Brother...#W\nSniffle... My brother...") }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" We both promise, we will\nnot repeat the same mistake.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I will do my best to obtain\neven better Technical Machines and Orbs.\nI hope for your continued patronage!") }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_LIVES(-1, 0), + RET, +}; + +static const struct ScriptCommand s_gs1_g24_s1_lives1_dlg0[] = { /* 0x8153bf4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g24_s1_lives2_dlg0[] = { /* 0x8153c34 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g24_s1_lives2_dlg2[] = { /* 0x8153cd4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_2N, 0, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_2N, 0, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm so sorry.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I was fully convinced of\nyour guilt, $n0.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But I am glad to hear\nyou are free from that cloud of\nsuspicion〜♪") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll never give you my\nbusiness again!#W\nI hope you won't say that.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g24_s1_lives3_dlg0[] = { /* 0x8153db4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g24_s1_lives3_dlg2[] = { /* 0x8153e64 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_2N, 1, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_2N, 1, 1), + EXECUTE_STATION(-1, 24, 1), + HALT, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g25_s0_station_sref_script[] = { /* 0x8153f14 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs1_g25_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs1_g25_s0_station_sref_script }; /* 0x8153f54 */ + +static const struct ScriptCommand s_gs1_g25_s0_lives0_dlg2[] = { /* 0x8153f60 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g25_s0_lives1_dlg2[] = { /* 0x8153fc0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g25_s0_lives2_dlg2[] = { /* 0x8154020 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g25_s0_lives3_dlg2[] = { /* 0x8154080 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g25_s0_lives4_dlg2[] = { /* 0x81540e0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g25_s0_lives5_dlg2[] = { /* 0x8154140 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g25_s0_lives6_dlg1[] = { /* 0x81541a0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0052, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(MOVE_BOY), + RET, +}; + +static const struct ScriptCommand s_gs1_g25_s0_lives6_dlg2[] = { /* 0x81541e0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" That quake was\nsomething else!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It caught me by surprise.\nI almost drowned in the pond!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g25_s0_lives7_dlg1[] = { /* 0x81542ac */ + DEBUGINFO, + { 0x51, 0x00, 0x0051, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(MOVE_GIRL), + RET, +}; + +static const struct ScriptCommand s_gs1_g25_s0_lives7_dlg2[] = { /* 0x81542ec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, wasn't it shocking?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" That earthquake was\nterrible!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g25_s0_lives8_dlg1[] = { /* 0x815439c */ + DEBUGINFO, + { 0x51, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(MOVE_RANDOM), + RET, +}; + +static const struct ScriptCommand s_gs1_g25_s0_lives8_dlg2[] = { /* 0x81543dc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What's that?\nHas Alakazam's team returned?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm not sure...#W\nI haven't seen them around the square.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I don't think Alakazam's\nteam has come back.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g25_s0_lives9_dlg2[] = { /* 0x8154500 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" That earthquake here\nwas wicked...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If it can happen here,\nwill more serious natural disasters\ncome to the square?") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g26_s0_station_sref_script[] = { /* 0x81545e8 */ + DEBUGINFO, + SELECT_MAP(1), + SELECT_ENTITIES(-1, 0), + BGM_STOP, + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(120), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs1_g26_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs1_g26_s0_station_sref_script }; /* 0x8154678 */ + +static const struct ScriptCommand s_gs1_g26_s0_eff0_script[] = { /* 0x8154684 */ + DEBUGINFO, + { 0x59, 0x00, -0x0040, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000040, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, -0x00000040, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000040, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, -0x00000040, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g26_s0_lives0_dlg0[] = { /* 0x8154794 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0008, 0x00000058, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0009, 0x00000067, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000053, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wow!\nLook at all the Pokémon!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000004d, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Looks like they sent out\nto a lot of rescue teams for help.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I've seen some pretty\nfamous leaders from faraway places.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That $n3...\nI wonder what he's planning to do with\nall these rescue teams?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0003, 0x00000000, -0x00000001, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Can I get everyone's\nattention here?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I, uh...#W\nIt's not my style to get up in front of\neveryone like this, and...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...Sorry.\nThis isn't the time for that!") }, + BGM_SWITCH(10), + { 0x2e, 0x15, 0x0003, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" There's big trouble!#W\n$n8's team went underground...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" But they haven't returned!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(473), + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + WAIT(90), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Wh-what?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Is that true?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Yes, unfortunately.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" $n8 led his team\nunderground to quell $n9...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" And that's it.\nWe haven't heard anything from them.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" To be honest...#W\nWe have no idea what became of them.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" No idea?#W\nHow is that possible?!#W\nThis is $n8 you're talking about?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" But they haven't come back.\nThat's for real!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" That's right...\nAnd it sounds as if $n9 is out of\nour league...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" What? It's that tough?\nThis Pokémon named $n9?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Why don't you go underground and\nsee for yourself?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Hunh?!\nYou've gotta be kidding me!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" There's magma flowing everywhere\nunderground.#W\nI'd burn up if I went anywhere like that!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Quiet, please! Be quiet!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" There's no denying that\nit is dangerous underground.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" It's not a place where just\nanyone can go.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" That's why I asked so many\nrescue teams to gather today.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I propose that a special\nteam be formed by choosing the best of\nthe best.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Who will step forward?!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Who among us will be the\nheroes to take on the challenges\nunderground?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(150), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, $n0.\nThis is some chance. Let's go for it.")), + VARIANT_DEFAULT(_(" Say, $n0.\nThis is a great opportunity. Let's go.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000010, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Don't bother, you guys.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" What's with you?\nCan you get out of the way?")), + VARIANT_DEFAULT(_(" What's with you?\nCan you step aside?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You guys have gotten a lot\ntougher, that's for sure, but...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There's plenty of tougher\nPokémon out there.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Will no one step forward?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + WAIT(120), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I'll go.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(60), + BGM_SWITCH(7), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Whoa!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" It's B-$n4!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" You mean...\n#C5Team Hydro#R's roughneck $n4?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Those waterspouts on his back can\nrocket water so fast that it punches\nthrough thick iron plates!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0004, 0x00000000, 0x00000001, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" It's rumored $n9\nis a Ground type.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I am a Water type.\nStrong against the Ground type.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" My Hydro Pump will put\n$n9 down in one shot.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I'll join the party too.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000069, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Woohoo! It's $n5!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" She's #C5Team Constrictor#R's leader.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" She's known for persistent and\nclingy attacks.#W She ensnares foes with\nher tentacles, then head-butts them!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" She'd be nasty to face in any battle\nof endurance.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0d, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0005, 0x00000000, -0x00000001, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Darlings, when I see a tough\nPokémon, I want to tangle with them.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Say, how about not forgetting about\nme?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000006a, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Wow! $n6!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" He's the most brutal out of #C5Team\nRumblerock#R!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" His body is rock hard.\nHe's supposed to be able to withstand\nhuge explosions without taking damage.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x03, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0006, 0x00000000, 0x00000001, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" If $n9's awakened\nunderground, that suits me fine.") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" I'll use my Rock Throw to\nkeep it buried underground.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + WAIT(30), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh, $n4!\n$n5! And $n6!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" No one could complain\nabout your selection.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" We will have these three\nrescuers head underground!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Yeah! Good choice!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" You're representing us!\nMake us proud!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Let's go!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000054, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000055, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0x91, 0x1e, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Win it for us!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Save $n8's team!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000004d, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" See?\nThey look pretty tough, eh?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Let them handle things.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" OK...\nI guess we can't say anything,\n$n0.")), + VARIANT_DEFAULT(_(" Hmmm...\nIt can't be helped, $n0.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs1_g26_s0_lives1_dlg0[] = { /* 0x8156884 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000056, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000004d, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000000, -0x00000010, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6b, 0x00, 0x0100, 0x00000054, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000057, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0x91, 0x14, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000004d, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g26_s0_lives2_dlg0[] = { /* 0x8156c44 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000058, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, 0x00000008, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000059, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x1e, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, 0x00000010, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g26_s0_lives3_dlg0[] = { /* 0x8156eb4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x08, 0x000a, 0x00000007, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x08, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x08, 0x000a, 0x00000007, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x08, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000069, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000006a, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x08, 0x000a, 0x00000007, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x08, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + +static const struct ScriptCommand s_gs1_g26_s0_lives4_dlg0[] = { /* 0x81570c4 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + CJUMP_RANDOM(3), + COND_EQUAL(0, /* to label */ 3), + COND_EQUAL(1, /* to label */ 4), + COND_EQUAL(2, /* to label */ 5), + LABEL(3), /* = 0x03 */ + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + JUMP_LABEL(6), + LABEL(4), /* = 0x04 */ + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + JUMP_LABEL(6), + LABEL(5), /* = 0x05 */ + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + JUMP_LABEL(6), + LABEL(6), /* = 0x06 */ + WAIT_RANDOM(15, 90), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(7), /* = 0x07 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 8), + { 0x91, 0x08, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 8), + { 0x91, 0x08, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + JUMP_LABEL(7), + LABEL(8), /* = 0x08 */ + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x004c, 0x00000008, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x004c, 0x0000005a, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + LABEL(9), /* = 0x09 */ + { 0x93, 0x04, 0x000a, 0x00000069, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 9), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + LABEL(10), /* = 0x0a */ + { 0x93, 0x04, 0x000a, 0x0000006a, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 10), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000069, 0x00000000, NULL }, + WAIT(30), + { 0x93, 0x04, 0x000a, 0x0000006a, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000005b, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs1_g26_s0_lives5_dlg0[] = { /* 0x81575e4 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + CJUMP_RANDOM(3), + COND_EQUAL(0, /* to label */ 2), + COND_EQUAL(1, /* to label */ 3), + COND_EQUAL(2, /* to label */ 4), + LABEL(2), /* = 0x02 */ + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + JUMP_LABEL(5), + LABEL(3), /* = 0x03 */ + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(5), + LABEL(4), /* = 0x04 */ + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + LABEL(5), /* = 0x05 */ + WAIT_RANDOM(15, 90), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(6), /* = 0x06 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 7), + { 0x91, 0x08, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 7), + { 0x91, 0x08, 0x0001, 0x00000005, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + JUMP_LABEL(6), + LABEL(7), /* = 0x07 */ + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + LABEL(8), /* = 0x08 */ + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 8), + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x004c, 0x0000005c, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + LABEL(9), /* = 0x09 */ + { 0x93, 0x04, 0x000a, 0x0000006a, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 9), + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(30), + { 0x6b, 0x00, 0x0100, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g26_s0_lives6_dlg0[] = { /* 0x8157a64 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + CJUMP_RANDOM(3), + COND_EQUAL(0, /* to label */ 2), + COND_EQUAL(1, /* to label */ 3), + COND_EQUAL(2, /* to label */ 4), + LABEL(2), /* = 0x02 */ + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + JUMP_LABEL(5), + LABEL(3), /* = 0x03 */ + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + JUMP_LABEL(5), + LABEL(4), /* = 0x04 */ + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + LABEL(5), /* = 0x05 */ + WAIT_RANDOM(15, 90), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(6), /* = 0x06 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 7), + { 0x91, 0x08, 0x0002, 0x00000006, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 7), + { 0x91, 0x08, 0x0001, 0x00000003, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + JUMP_LABEL(6), + LABEL(7), /* = 0x07 */ + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + LABEL(8), /* = 0x08 */ + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 8), + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + LABEL(9), /* = 0x09 */ + { 0x93, 0x04, 0x000a, 0x00000069, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 9), + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x004c, 0x0000005d, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(60), + { 0x6b, 0x00, 0x0100, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g26_s0_lives7_dlg0[] = { /* 0x8157ee4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x0000000a, 0x00000000, NULL }, + WAIT(2), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 60), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + CJUMP_RANDOM(3), + COND_EQUAL(0, /* to label */ 2), + COND_EQUAL(1, /* to label */ 3), + COND_EQUAL(2, /* to label */ 4), + LABEL(2), /* = 0x02 */ + { 0x91, 0x08, 0x0001, 0x00000003, 0x00000000, NULL }, + JUMP_LABEL(5), + LABEL(3), /* = 0x03 */ + { 0x91, 0x08, 0x000a, 0x00000005, 0x00000000, NULL }, + JUMP_LABEL(5), + LABEL(4), /* = 0x04 */ + { 0x91, 0x08, 0x0002, 0x00000007, 0x00000000, NULL }, + LABEL(5), /* = 0x05 */ + WAIT_RANDOM(15, 90), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 60), + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(6), /* = 0x06 */ + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 6), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(7), /* = 0x07 */ + { 0x93, 0x04, 0x000a, 0x00000069, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 7), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(8), /* = 0x08 */ + { 0x93, 0x04, 0x000a, 0x0000006a, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 8), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 120), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(9), /* = 0x09 */ + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(30), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 9), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g26_s0_lives8_dlg0[] = { /* 0x8158324 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x0000000a, 0x00000000, NULL }, + WAIT(2), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 60), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 60), + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 60), + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 0), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0x93, 0x04, 0x000a, 0x00000069, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(2), /* = 0x02 */ + { 0x93, 0x04, 0x000a, 0x0000006a, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 2), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 120), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(3), /* = 0x03 */ + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(30), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 3), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g26_s0_lives9_dlg0[] = { /* 0x8158684 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0x91, 0x08, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0x91, 0x08, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(2), /* = 0x02 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 3), + { 0x91, 0x08, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 3), + { 0x91, 0x08, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(4), /* = 0x04 */ + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 4), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(5), /* = 0x05 */ + { 0x93, 0x04, 0x000a, 0x00000069, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 5), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(6), /* = 0x06 */ + { 0x93, 0x04, 0x000a, 0x0000006a, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 6), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 120), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(7), /* = 0x07 */ + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(30), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 7), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g26_s0_lives10_dlg0[] = { /* 0x8158a44 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x0000000a, 0x00000000, NULL }, + WAIT(2), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 60), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 60), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 60), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 0), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0x93, 0x04, 0x000a, 0x00000069, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(2), /* = 0x02 */ + { 0x93, 0x04, 0x000a, 0x0000006a, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 2), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 120), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(3), /* = 0x03 */ + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(30), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 3), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g26_s0_lives11_dlg0[] = { /* 0x8158da4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x0000000a, 0x00000000, NULL }, + WAIT(2), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 60), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 60), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 60), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 0), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0x93, 0x04, 0x000a, 0x00000069, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(2), /* = 0x02 */ + { 0x93, 0x04, 0x000a, 0x0000006a, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 2), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 120), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(3), /* = 0x03 */ + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(30), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 3), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g26_s0_lives12_dlg0[] = { /* 0x8159104 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x0000000a, 0x00000000, NULL }, + WAIT(2), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 60), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 60), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 60), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 0), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0x93, 0x04, 0x000a, 0x00000069, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(2), /* = 0x02 */ + { 0x93, 0x04, 0x000a, 0x0000006a, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 2), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 120), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(3), /* = 0x03 */ + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(30), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 3), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g26_s0_lives13_dlg0[] = { /* 0x8159464 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x0000000a, 0x00000000, NULL }, + WAIT(2), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 60), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 60), + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 60), + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 0), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0x93, 0x04, 0x000a, 0x00000069, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(2), /* = 0x02 */ + { 0x93, 0x04, 0x000a, 0x0000006a, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 2), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 120), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(15), + { 0x6b, 0x00, 0x0080, 0x0000005f, 0x00000000, NULL }, + LABEL(3), /* = 0x03 */ + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(30), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 3), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g26_s0_lives14_dlg0[] = { /* 0x8159804 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 60), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 60), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 0), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0x93, 0x04, 0x000a, 0x00000069, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(2), /* = 0x02 */ + { 0x93, 0x04, 0x000a, 0x0000006a, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 2), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 120), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(3), /* = 0x03 */ + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(30), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 3), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g26_s0_lives15_dlg0[] = { /* 0x8159b04 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x0000000a, 0x00000000, NULL }, + WAIT(2), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 60), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 60), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(0, 60), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 0), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0x93, 0x04, 0x000a, 0x00000069, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(2), /* = 0x02 */ + { 0x93, 0x04, 0x000a, 0x0000006a, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 2), + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x0000005e, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 120), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(3), /* = 0x03 */ + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(30), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 3), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g26_s0_lives16_dlg0[] = { /* 0x8159e94 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(2), /* = 0x02 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 3), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 3), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(4), /* = 0x04 */ + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 4), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(5), /* = 0x05 */ + { 0x93, 0x04, 0x000a, 0x00000069, 0x00000000, NULL }, + WAIT(60), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 5), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(6), /* = 0x06 */ + { 0x93, 0x04, 0x000a, 0x0000006a, 0x00000000, NULL }, + WAIT(60), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 6), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 120), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(7), /* = 0x07 */ + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + WAIT(30), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 7), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g27_s0_station_sref_script[] = { /* 0x815a254 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs1_g27_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs1_g27_s0_station_sref_script }; /* 0x815a294 */ + +static const struct ScriptCommand s_gs1_g27_s0_lives0_dlg2[] = { /* 0x815a2a0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g27_s0_lives1_dlg2[] = { /* 0x815a300 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g27_s0_lives2_dlg2[] = { /* 0x815a360 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g27_s0_lives3_dlg2[] = { /* 0x815a3c0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g27_s0_lives4_dlg2[] = { /* 0x815a420 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g27_s0_lives5_dlg2[] = { /* 0x815a480 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g27_s0_lives6_dlg1[] = { /* 0x815a4e0 */ + DEBUGINFO, + { 0x51, 0x00, 0x0062, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(MOVE_BOY), + RET, +}; + +static const struct ScriptCommand s_gs1_g27_s0_lives6_dlg2[] = { /* 0x815a520 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You bet I'm worried about\nAlakazam's team...#W\nBut Blastoise and company are tough.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Don't you worry now.\nThey'll get the job done.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g27_s0_lives7_dlg1[] = { /* 0x815a620 */ + DEBUGINFO, + { 0x51, 0x00, 0x0061, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(MOVE_GIRL), + RET, +}; + +static const struct ScriptCommand s_gs1_g27_s0_lives7_dlg2[] = { /* 0x815a660 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There have been so many\nearthquakes...#W\nI can't get a decent night's sleep!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g27_s0_lives8_dlg1[] = { /* 0x815a714 */ + DEBUGINFO, + { 0x51, 0x00, 0x0060, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(MOVE_RANDOM), + RET, +}; + +static const struct ScriptCommand s_gs1_g27_s0_lives8_dlg2[] = { /* 0x815a754 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We agreed to let Blastoise's\ncrew handle this situation.\nLet's give them some time.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g27_s0_lives9_dlg2[] = { /* 0x815a810 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You know how we've had\nso many earthquakes lately?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Are they signs that\nsomething a lot worse is coming?#W\nI shudder to think!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g28_s0_station_sref_script[] = { /* 0x815a904 */ + DEBUGINFO, + SELECT_MAP(1), + SELECT_ENTITIES(-1, 0), + BGM_STOP, + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs1_g28_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs1_g28_s0_station_sref_script }; /* 0x815a9a4 */ + +static const struct ScriptCommand s_gs1_g28_s0_eff0_script[] = { /* 0x815a9b0 */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000070, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x00000071, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x00000070, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000072, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000070, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g28_s0_lives0_dlg0[] = { /* 0x815aae0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0008, 0x00000058, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0009, 0x00000067, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000063, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000004d, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, $n2!")), + VARIANT(/* == */ 1, _(" What's up here?")), + VARIANT_DEFAULT(_(" Oh! $n2!")), + VARIANT_DEFAULT(_(" What's going on here?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hey, $n1.\nW-well...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...You should just go see\nfor yourself...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000064, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(9), + { 0x2e, 0x0e, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Look!\nIt's $n5!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n3!#W\nWhat's going on here?!")), + VARIANT_DEFAULT(_(" $n3!#W\nWhat happened here?!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0003, 0x00000000, -0x00000001, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ............#W\nThey were wiped out...#W\nIn the underground dungeon...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You're kidding!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0005, 0x00000003, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0005, 0x00000000, 0x00000001, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Groan... That place...#W\nIt's rough, seriously...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0d, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0006, 0x00000000, -0x00000001, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" ...We couldn't get far\nenough to even see $n9...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0007, 0x00000000, 0x00000001, NULL }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" I don't want to ever go\nback to a place that bad...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...It appears the dungeon\nunderground...#W\nis far worse than we'd imagined...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + WAIT(60), + BGM_SWITCH(10), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Kekekekekeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + WAIT(5), + CALL_SCRIPT(SHOCK_FUNC), + WAIT(30), + { 0x2e, 0x0e, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" What fools.#W\nThat's what you get for trying the\nimpossible.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x05, 0x0001, 0x00000003, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Ge-$n4!")), + VARIANT(/* == */ 1, _(" Why don't you shut up?!#W\nThis is about saving $n8's team.\nWe have to try!")), + VARIANT_DEFAULT(_(" Ge-$n4!")), + VARIANT_DEFAULT(_(" What are you saying?!#W\nIt's only expected that we try. This is for\nsaving $n8's team.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + WAIT(15), + { 0x2e, 0x0e, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Kekeh!\nYou really find thinking hard, don't you?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x13, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Even they look smart\ncompared to you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" It's too much...\nEven $n5 went down...") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" It's gotta be awful tough.") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Who'd want to go into a dungeon that\ndangerous?") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" There's no way. I can't go.#W\nI burn too easily.") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I can't take earthquakes.") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" It'd be like going and knowing full\nwell we'd get wiped...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0d, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...E-everyone...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + WAIT(15), + { 0x2e, 0x0e, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You see?\nEven they finally seem to understand\ntheir situation. Kekeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I...#W\nMy leafy fans would burn up...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + WAIT(15), + { 0x2e, 0x0e, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0001, -0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" E-even $n3...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x13, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Kekeh! Get over it!\nDon't expect to be rewarded just because\nyou tried!") }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Sometimes, it's better to\nwise up and give up!") }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0004, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ............Huh?#W\nDid I say something profound?\nKekekekekekekeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0d, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Urf...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + BGM_FADEOUT(150), + WAIT(30), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0...\nI don't know anymore...")), + VARIANT(/* == */ 1, _(" What should we do?")), + VARIANT(/* == */ 1, _(" Even if it's impossible...")), + VARIANT(/* == */ 3, _(" $n0...\nI don't know anymore...")), + VARIANT(/* == */ 3, _(" What should we do?")), + VARIANT(/* == */ 3, _(" Even if it's the impossible...")), + VARIANT_DEFAULT(_(" $n0...\nI don't know anymore...")), + VARIANT_DEFAULT(_(" What should we do?")), + VARIANT_DEFAULT(_(" Even if it's the impossible...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(17), /* = 0x11 */ + ASK3(FALSE, /*default*/ -1, /* speaker */ 1, _(" Should we still\ntry to rescue $n8?")), + CHOICE(/* label */ 18, _("Let's go!")), + CHOICE(/* label */ 19, _("Let's not.")), + LABEL(19), /* = 0x13 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...#WReally...?#W\nYou honestly think we shouldn't go?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(17), + LABEL(18), /* = 0x12 */ + { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...#WYes...#W\nYeah, you're right.")), + VARIANT(/* == */ 1, _(" All right, $n0!")), + VARIANT_DEFAULT(_(" ...#WYes...#W\nI think so too.")), + VARIANT_DEFAULT(_(" OK, $n0!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + BGM_SWITCH(7), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Everyone, listen!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" We're going!\nTo rescue $n8's team!")), + VARIANT(/* == */ 3, _(" We're going!\nTo rescue $n8's team!")), + VARIANT_DEFAULT(_(" We're going!\nTo rescue $n8's team!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Wha-what?!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" What did they say?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0004, 0x00000006, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Ugegege?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Hey, who are they?") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Can't say I know them...") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" It's #C5Team $t#R.#W\nThey're well known around these parts.") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" #C5Team $t#R...?#W\nYou mean the lot that were suspected of\ninvolvement in the Ninetales legend?") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I heard about that!#W\nWeren't they living like fugitives until\nrecently?") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Can they handle it?#W\nThey don't look very tough.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Sure, the rescue might be\ntoo much for us to handle.")), + VARIANT(/* == */ 3, _(" Yes, the rescue might be too\nmuch of a challenge for us.")), + VARIANT_DEFAULT(_(" It's true--the rescue might\nbe too much for us to handle.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But...#W\nwe're still a rescue team.")), + VARIANT(/* == */ 1, _(" I wanted to help Pokémon\nthat were suffering from the natural\ndisasters...")), + VARIANT(/* == */ 1, _(" That's why we started up\nour rescue team!")), + VARIANT(/* == */ 3, _(" But...#W\nEven so, we're still a rescue team.")), + VARIANT(/* == */ 3, _(" To help Pokémon suffering\nfrom the natural disasters...")), + VARIANT(/* == */ 3, _(" That's why we started up\nour rescue team!")), + VARIANT_DEFAULT(_(" But...#W\nwe're still a rescue team.")), + VARIANT_DEFAULT(_(" To help Pokémon suffering\nfrom the natural disasters...")), + VARIANT_DEFAULT(_(" That's why we started up\nour rescue team!")), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" That's why I want to\nrescue $n8's team more than\nanything.")), + VARIANT(/* == */ 1, _(" Never giving up...\nThat's what #C5Team $t#R takes\npride in!")), + VARIANT(/* == */ 3, _(" That's why I want to rescue\n$n8's team, even if it's risky.")), + VARIANT(/* == */ 3, _(" Never giving up...\nThat's where #C5Team $t#R stakes\nits pride!")), + VARIANT_DEFAULT(_(" That's why I want to\nrescue $n8's team more than\nanything.")), + VARIANT_DEFAULT(_(" Never giving up...\nThat's where #C5Team $t#R stakes\nits pride!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x0e, 0x0004, 0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ............#WKeh.#W Kekekeh!#W\nYou really aren't very bright, are you?") }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0x2e, 0x13, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Why don't you do like\neveryone else and wise up?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0003, 0x00000000, -0x00000001, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...No.\n$n1 is right.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x0001, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0004, 0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ...Ugeh?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ...That's right.\nI wasn't thinking straight...out of fear.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x13, 0x0004, 0x00000006, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ...Ugegegeh?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" We all forgot the most important\nthing. We are rescue teams.") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ...Pride...") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" We have it too!\nPride as rescuers!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0004, 0x00000006, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Ugegegegeh!\nHave you lost your senses?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0004, 0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Why would you listen to\nthat clown and, worse, be persuaded?") }, + WAIT(15), + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0004, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Why go if you're facing\ncertain defeat?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x15, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Is that so...?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x0001, 0x00000068, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" ...We've only failed once.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0e, 0x0001, 0x0000000b, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n5!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" ...This is no time to be\nlying around!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0004, 0x00000006, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Ugegeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Yes, no more wallowing in\nwoe-is-me self-pity.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" If we give up, that's how\nit ends. Not for me.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0e, 0x0001, 0x0000000b, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n6!\nAnd $n7 too!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0004, 0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Ugegegeh!\nYou lot, that wasn't the tune you\nwere whistling just a little...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Aye, that's right!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" There've got to be ways we can\nget through!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" If we all pull together, we'll be sure\nto find a way!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" We'll conquer the dungeon by\nhaving all the rescue teams cooperate!") }, + WAIT(30), + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Wrooooooooaaaar!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Ugegegegegegegegeh!#W\nAre you dreaming?!") }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Don't say I didn't warn you\nwhen you get into a world of pain!\nUgegegegeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + WAIT(30), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Thank you, $n1.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" You stopped us from\nthrowing away the most important thing\nwe have--pride.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" My thanks from all of us.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Everyone!#W\nIt's time to get to work!") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Let's show them what we\nrescue teams are really about!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Wrooooooaaaaar!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs1_g28_s0_lives1_dlg0[] = { /* 0x815dbb8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000065, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000004d, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6b, 0x00, 0x0100, 0x00000066, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000067, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(464), + CALL_SCRIPT(SHOCK_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(463), + CALL_SCRIPT(SHOCK_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + WAIT(5), + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x0002, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0001, 0x00000004, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x08, 0x0002, 0x00000001, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x08, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x08, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x0002, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x0002, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000069, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000006a, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(0, /* to label */ 0), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g28_s0_lives2_dlg0[] = { /* 0x815e298 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000069, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000006a, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(0, /* to label */ 0), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g28_s0_lives3_dlg0[] = { /* 0x815e488 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000068, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000069, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + WAIT(30), + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + WAIT(15), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000069, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000006a, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0300, 0x0000006a, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g28_s0_lives4_dlg0[] = { /* 0x815eaa8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x001a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g28_s0_lives5_dlg0[] = { /* 0x815ebb8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g28_s0_lives6_dlg0[] = { /* 0x815ec78 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g28_s0_lives7_dlg0[] = { /* 0x815ed38 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x0001, 0x00000022, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + WAIT(60), + { 0x93, 0x04, 0x0001, 0x00000022, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 90), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(0, /* to label */ 0), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 90), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g28_s0_lives8_dlg0[] = { /* 0x815f118 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 90), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(0, /* to label */ 0), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 90), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g28_s0_lives9_dlg0[] = { /* 0x815f428 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0x6b, 0x00, 0x0080, 0x0000006b, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(60, 120), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0x6b, 0x00, 0x0080, 0x0000006c, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(60, 120), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + { 0x6b, 0x00, 0x0080, 0x0000006d, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(30), + { 0x6b, 0x00, 0x004c, 0x0000006e, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000008e, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000008e, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 90), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000010, 0x00000000, NULL }, + LABEL(2), /* = 0x02 */ + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(0, /* to label */ 2), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0080, 0x00000010, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 90), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g28_s0_lives10_dlg0[] = { /* 0x815f928 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 90), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(0, /* to label */ 0), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 90), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g28_s0_lives11_dlg0[] = { /* 0x815fc58 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0x91, 0x08, 0x000a, 0x00000007, 0x00000000, NULL }, + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(60, 120), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0x91, 0x08, 0x000a, 0x00000001, 0x00000000, NULL }, + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(60, 120), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(2), /* = 0x02 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 3), + { 0x91, 0x08, 0x000a, 0x00000007, 0x00000000, NULL }, + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 3), + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(60, 120), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 3), + { 0x91, 0x08, 0x000a, 0x00000001, 0x00000000, NULL }, + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 3), + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(60, 120), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 90), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(4), /* = 0x04 */ + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(0, /* to label */ 4), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 90), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g28_s0_lives12_dlg0[] = { /* 0x8160158 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 1), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(2), /* = 0x02 */ + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 3), + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 3), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT_RANDOM(15, 90), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 90), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(4), /* = 0x04 */ + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(0, /* to label */ 4), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 90), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g28_s0_lives13_dlg0[] = { /* 0x8160588 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 90), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(0, /* to label */ 0), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 90), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g28_s0_lives14_dlg0[] = { /* 0x8160898 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x08, 0x000a, 0x00000088, 0x00000000, NULL }, + WAIT(30), + { 0x6b, 0x00, 0x0080, 0x0000006f, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000088, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 90), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000010, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(0, /* to label */ 0), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 90), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g28_s0_lives15_dlg0[] = { /* 0x8160c78 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + WAIT(15), + { 0x62, 0x00, 0x0100, 0x00000000, 0x00000010, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, -0x00000010, 0x00000010, NULL }, + { 0x6a, 0x00, 0x0100, -0x00000008, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 90), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, + WAIT(15), + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(0, /* to label */ 0), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, + WAIT_RANDOM(30, 90), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g29_s0_station_sref_script[] = { /* 0x8161008 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs1_g29_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs1_g29_s0_station_sref_script }; /* 0x8161048 */ + +static const struct ScriptCommand s_gs1_g29_s0_lives0_dlg2[] = { /* 0x8161054 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000022, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_8N, 0, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_8N, 0, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, my goodness, yes!\n$n2's talk was such an\ninspiration!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It has stoked a raging fire\nin our hearts!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I will keep bringing in fine\nmerchandise!#W This, I do for you!#W\nSo...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g29_s0_lives1_dlg2[] = { /* 0x81611f0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_8N, 1, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_8N, 1, 1), + EXECUTE_STATION(-1, 29, 1), + HALT, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g29_s0_lives2_dlg2[] = { /* 0x81612a0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_8N, 2, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_8N, 2, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Aren't you remarkable?#W\nYour money will be jealously guarded,\nso feel secure on your outings!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g29_s0_lives3_dlg2[] = { /* 0x81613b4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000022, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_8N, 3, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_8N, 3, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n2's words struck\nme deeply.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You can count on me for all\nyour move-linking needs!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g29_s0_lives4_dlg2[] = { /* 0x81614e0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_8N, 4, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_8N, 4, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Dear, I wasn't wrong about\nyou at all.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I always thought you weren't\nthe ordinary sort.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll keep your valuables\nunder my watchful eye! You can go out and\nfight without worrying about them!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g29_s0_lives5_dlg2[] = { /* 0x816167c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_8N, 5, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_8N, 5, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll do my best to get more\nFriend Areas!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Because $n0's team\nare my friends!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g29_s0_lives6_dlg0[] = { /* 0x8161794 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g29_s0_lives6_dlg2[] = { /* 0x81617c4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x0000004d, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000068, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What's it like?\nThis #CDMagma Cavern#R.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" It was teeming with tough\nPokémon, that's for sure.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I'm strong against fire...#W\nbut that place is special.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g29_s0_lives7_dlg0[] = { /* 0x8161948 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g29_s0_lives7_dlg2[] = { /* 0x8161978 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x0000004d, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000068, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What's it like?\nThis #CDMagma Cavern#R.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" It was teeming with tough\nPokémon, that's for sure.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I'm strong against fire...#W\nbut that place is special.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g29_s0_lives8_dlg0[] = { /* 0x8161a58 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g29_s0_lives8_dlg2[] = { /* 0x8161a88 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x0000004f, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000069, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" The #CDMagma Cavern#R...\nAbove all, there were many Fire-type\nPokémon.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Fire-type Pokémon...#W\nI think they would burn me up in no time...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But, no!#W\nI mustn't make excuses for myself!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Now is the time for each\nand every one of us to make a stand!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g29_s0_lives9_dlg0[] = { /* 0x8161c7c */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g29_s0_lives9_dlg2[] = { /* 0x8161cac */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x0000004f, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000069, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" The #CDMagma Cavern#R...\nAbove all, there were many Fire-type\nPokémon.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Fire-type Pokémon...#W\nI think they would burn me up in no time...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But, no!#W\nI mustn't make excuses for myself!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Now is the time for each\nand every one of us to make a stand!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g29_s0_lives10_dlg0[] = { /* 0x8161d9c */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g29_s0_lives10_dlg2[] = { /* 0x8161dcc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000055, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x0000006a, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oi, you lot shouldn't go.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" The #CDMagma Cavern#R is\nalive with flames. You'll be burned up!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We can't do that!#W\nWe are a rescue team too.\nWe can't stand by idly!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g29_s0_lives11_dlg0[] = { /* 0x8161f5c */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g29_s0_lives11_dlg2[] = { /* 0x8161f8c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000055, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x0000006a, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oi, you lot shouldn't go.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" The #CDMagma Cavern#R is\nalive with flames. You'll be burned up!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We can't do that!#W\nWe are a rescue team too.\nWe can't stand by idly!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g29_s0_lives12_dlg2[] = { /* 0x816206c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Several rescue teams have\nalready left for the #CDMagma Cavern#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0, you guys take\ncare, too.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g29_s1_station_sref_script[] = { /* 0x8162144 */ + DEBUGINFO, + SELECT_LIVES(-1, 1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs1_g29_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs1_g29_s1_station_sref_script }; /* 0x8162184 */ + +static const struct ScriptCommand s_gs1_g29_s1_lives0_dlg0[] = { /* 0x8162190 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x0c, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" $n1's words\nshook me up with inspiration!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Especially the part about\ntaking pride...#W That made me...#W\nIt left me choked up...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It isn't just you, my brother.#W\nI am likewise inspired beyond words.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" B-Brother...#W\nSniffle... My brother...") }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I will do my best to obtain\neven better Technical Machines and Orbs.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" All with the pride of a\nmerchant!") }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_LIVES(-1, 0), + RET, +}; + +static const struct ScriptCommand s_gs1_g29_s1_lives1_dlg0[] = { /* 0x81624a0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g29_s1_lives2_dlg0[] = { /* 0x81624e0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g29_s1_lives2_dlg2[] = { /* 0x8162580 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000022, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_8N, 0, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_8N, 0, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, my goodness, yes!\n$n2's talk was such an\ninspiration!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It has stoked a raging fire\nin our hearts!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I will keep bringing in fine\nmerchandise!#W This, I do for you!#W\nSo...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g29_s1_lives3_dlg0[] = { /* 0x8162660 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g29_s1_lives3_dlg2[] = { /* 0x8162710 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_8N, 1, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_8N, 1, 1), + EXECUTE_STATION(-1, 29, 1), + HALT, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g30_s0_station_sref_script[] = { /* 0x81627c0 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs1_g30_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs1_g30_s0_station_sref_script }; /* 0x8162800 */ + +static const struct ScriptCommand s_gs1_g30_s0_lives0_dlg2[] = { /* 0x816280c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000022, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_8N, 0, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_8N, 0, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, my goodness, yes!\n$n2's talk was such an\ninspiration!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It has stoked a raging fire\nin our hearts!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I will keep bringing in fine\nmerchandise!#W This, I do for you!#W\nSo...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g30_s0_lives1_dlg0[] = { /* 0x81628ec */ + DEBUGINFO, + RET, +}; + +static const struct ScriptCommand s_gs1_g30_s0_lives1_dlg2[] = { /* 0x816290c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_8N, 1, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_8N, 1, 1), + EXECUTE_STATION(-1, 30, 1), + HALT, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g30_s0_lives2_dlg2[] = { /* 0x81629bc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_8N, 2, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_8N, 2, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Aren't you remarkable?#W\nYour money will be jealously guarded,\nso feel secure on your outings!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g30_s0_lives3_dlg2[] = { /* 0x8162a6c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000022, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_8N, 3, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_8N, 3, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n2's words struck\nme deeply.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You can count on me for all\nyour move-linking needs!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g30_s0_lives4_dlg2[] = { /* 0x8162b3c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_8N, 4, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_8N, 4, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Dears, I wasn't wrong about\nyou at all.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I always thought you weren't\nthe ordinary sort.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll keep your valuables\nunder my watchful eye! You can go out and\nfight without worrying about them!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g30_s0_lives5_dlg2[] = { /* 0x8162c3c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_8N, 5, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_8N, 5, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll do my best to get more\nFriend Areas!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Because $n0's team\nare my friends!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g30_s0_lives6_dlg0[] = { /* 0x8162cfc */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g30_s0_lives6_dlg2[] = { /* 0x8162d2c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000068, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000069, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0004, 0x0000006a, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0005, 0x0000006b, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x00, 0x0005, -0x00000002, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" We got wiped again...#W\nFifteen times now we have been to that\ninfernal #CDMagma Cavern#R.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Why does this keep\nhappening?#W\nWe can't be that weak!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Maybe we're just lacking\nthe will to win.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The will to win?#W\nThat's it! This is about willpower!\nI didn't realize!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Darlings, we will will\nourselves to win, and we will win!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Let's take it down! Groudon!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Hoorah!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g30_s0_lives7_dlg0[] = { /* 0x8163090 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g30_s0_lives7_dlg2[] = { /* 0x81630c0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000068, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000069, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0004, 0x0000006a, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0005, 0x0000006b, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x00, 0x0005, -0x00000002, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" We got wiped again...#W\nFifteen times now we have been to that\ninfernal #CDMagma Cavern#R.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Why does this keep\nhappening?#W\nWe can't be that weak!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Maybe we're just lacking\nthe will to win.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The will to win?#W\nThat's it! This is about willpower!\nI didn't realize!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Darlings, we will will\nourselves to win, and we will win!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Let's take it down! Groudon!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Hoorah!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g30_s0_lives8_dlg0[] = { /* 0x81632a0 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g30_s0_lives8_dlg2[] = { /* 0x81632d0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000068, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000069, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0004, 0x0000006a, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0005, 0x0000006b, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x00, 0x0005, -0x00000002, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" We got wiped again...#W\nFifteen times now we have been to that\ninfernal #CDMagma Cavern#R.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Why does this keep\nhappening?#W\nWe can't be that weak!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Maybe we're just lacking\nthe will to win.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The will to win?#W\nThat's it! This is about willpower!\nI didn't realize!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Darlings, we will will\nourselves to win, and we will win!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Let's take it down! Groudon!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Hoorah!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g30_s0_lives9_dlg1[] = { /* 0x81634b0 */ + DEBUGINFO, + LABEL(0), /* = 0x00 */ + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, -0x00000010, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0x6a, 0x00, 0x0100, 0x00000010, 0x00000000, NULL }, + WAIT(90), + { 0x6a, 0x00, 0x0100, 0x00000010, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0x6a, 0x00, 0x0100, -0x00000010, 0x00000000, NULL }, + WAIT(90), + JUMP_LABEL(0), +}; + +static const struct ScriptCommand s_gs1_g30_s0_lives9_dlg2[] = { /* 0x81635b0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I ventured into the #CDMagma\nCavern#R, but...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I got nowhere.#W\nI got KO'd and kicked out as soon as I\nwent in...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But I won't give up!\nNot ever!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g30_s0_lives10_dlg2[] = { /* 0x81636d0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's tough for us to get\nvery deep in there...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But it helps that other\nrescue teams give us information about\nwhat's underground.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" However...#W\nWhatever became of Alakazam?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If he had fallen in\na dungeon, he would've been\nexpelled back here...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Since he hasn't returned,\ndoes it mean he's still in the dungeon?") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g30_s0_lives11_dlg2[] = { /* 0x81638c0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I talked to other rescue\nteams.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" They all say the #CDMagma\nCavern#R goes very deep.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wonder exactly how deep\nit goes?") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g30_s0_lives12_dlg2[] = { /* 0x81639bc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I overheard some rescue\nteam Pokémon earlier.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" They say it's very taxing\nbecause it's so easy to get burns there.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Please be careful of burns,\n$n0.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g30_s1_station_sref_script[] = { /* 0x8163ad8 */ + DEBUGINFO, + SELECT_LIVES(-1, 1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs1_g30_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs1_g30_s1_station_sref_script }; /* 0x8163b18 */ + +static const struct ScriptCommand s_gs1_g30_s1_lives0_dlg0[] = { /* 0x8163b24 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x0c, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" $n1's words\nshook me up with inspiration!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Especially the part about\ntaking pride...#W That made me...#W\nIt left me choked up...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It isn't just you, my brother.#W\nI am likewise inspired beyond words.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" B-Brother...#W\nSniffle... My brother...") }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I will do my best to obtain\neven better Technical Machines and Orbs.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" All with the pride of a\nmerchant!") }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_LIVES(-1, 0), + RET, +}; + +static const struct ScriptCommand s_gs1_g30_s1_lives1_dlg0[] = { /* 0x8163cf4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g30_s1_lives2_dlg0[] = { /* 0x8163d34 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g30_s1_lives2_dlg2[] = { /* 0x8163dd4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000022, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_8N, 0, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_8N, 0, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, my goodness, yes!\n$n2's talk was such an\ninspiration!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It has stoked a raging fire\nin our hearts!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I will keep bringing in fine\nmerchandise!#W This, I do for you!#W\nSo...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g30_s1_lives3_dlg0[] = { /* 0x8163eb4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g30_s1_lives3_dlg2[] = { /* 0x8163f64 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E09A_8N, 1, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E09A_8N, 1, 1), + EXECUTE_STATION(-1, 30, 1), + HALT, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g31_s0_station_sref_script[] = { /* 0x8164014 */ + DEBUGINFO, + BGM_STOP, + { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_MAP(1), + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And in the square...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(7), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x0005, 0x00000014, 0x00ffffff, NULL }, + WAIT(20), + RET, +}; + +static const struct ScriptRef s_gs1_g31_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs1_g31_s0_station_sref_script }; /* 0x816412c */ + + +static const struct ScriptCommand s_gs1_g31_s0_eff0_script[] = { /* 0x8164138 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000073, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g31_s0_lives0_dlg0[] = { /* 0x81641b8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Is $n0's team\nalmost here?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x10, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0003, -0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Look!\nHere they come!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" It's true, darlings!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Let's go!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x00cc, 0x00000074, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0004, 0x00000042, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Great work!\nGreat work, $n0!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" You really took down that\nGroudon?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Darlings, it's fantastic!#W\nYou have won me over!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Whoa!\nW-wait a second!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" How does everyone know\nabout what happened underground?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0003, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Pelipper spread the word\nwith an extra edition of the Pokémon\nNews.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You bunch became stronger\nthan I expected!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" You can be proud of it!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0d, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" You lot did great!#W\nWhy don't we team up sometime?\nGahahahaha!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" You've earned everyone's\nrespect now.") }, + { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" Your #C5Team $t#R\nis a first-class rescue team.") }, + { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" Take pride in that.#W\n$n1, $n0.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(5), + { 0x2e, 0x15, 0x0001, 0x00000008, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Sniff... Sniffle...#W\n$n0!#W This is great!")), + VARIANT(/* == */ 1, _(" All the work we put in...\nIt was all worth it!")), + VARIANT(/* == */ 3, _(" Sniff... Sniffle...#W\n$n0!#W I can't believe it!")), + VARIANT(/* == */ 3, _(" Everything we experienced...\nIt was all worthwhile!")), + VARIANT_DEFAULT(_(" Sniff... Sniffle...#W\n$n0!#W This is great!")), + VARIANT_DEFAULT(_(" Every bit of our effort...\nIt was all worthwhile!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Would you look at that?#W\nI didn't think someone that could take down\nGroudon'd be such a crybaby! Gahahahaha!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(30), + FANFARE_PLAY2(487), + { 0x28, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, + { 0x27, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, + WAIT(60), + FANFARE_PLAY2(468), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Huh?#W What was that?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I thought I heard something\njust for a moment...#W\nDid I just imagine it?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(60), + FANFARE_PLAY2(487), + { 0x28, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, + { 0x27, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" No. I heard it too.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Me too.#W\nEven now, I hear it...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" Someone talking?#W\n...Not sure.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(60), + FANFARE_PLAY2(487), + { 0x28, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, + { 0x27, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, + WAIT(60), + { 0x2d, 0x09, 0x0009, 0x00000061, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Th-this voice...#W\nI remember this voice.")), + VARIANT(/* == */ 1, _(" This voice...#W I think...#W\nThat's it! It's $n9!")), + VARIANT_DEFAULT(_(" Th-this voice...#W\nI've heard it before.")), + VARIANT_DEFAULT(_(" This voice...#W I'm sure...#W\nThat's it! It's $n9!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" $n9?#W\nAh, that's it! Telepathy!") }, + { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" $n9 is calling out\nto us using telepathy!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(487), + { 0x28, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, + { 0x27, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, + WAIT(30), + BGM_SWITCH(19), + { 0x2e, 0x00, 0x0009, -0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" ...To all Pokémon!\nCalling all Pokémon!") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Terrible, it is!#W\nFrom the sky...#W Falls a star...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs1_g31_s0_lives1_dlg0[] = { /* 0x8165464 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x00cc, 0x00000075, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(3), + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(5), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(5), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g31_s0_lives2_dlg0[] = { /* 0x8165654 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000007b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(QUESTION_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g31_s0_lives3_dlg0[] = { /* 0x8165794 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000079, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0080, -0x00000008, 0x00000008, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0c, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x0c, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0c, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x0c, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x0c, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g31_s0_lives4_dlg0[] = { /* 0x8165964 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000007a, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(5), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(5), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g31_s0_lives5_dlg0[] = { /* 0x8165ab4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000007c, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x91, 0x08, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x91, 0x08, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g31_s0_lives6_dlg0[] = { /* 0x8165c34 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000007d, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(50), + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(50), + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g31_s0_lives7_dlg0[] = { /* 0x8165d94 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000007e, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g31_s0_lives8_dlg0[] = { /* 0x8165ea4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x00cc, 0x00000076, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g31_s0_lives9_dlg0[] = { /* 0x8165f34 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x00cc, 0x00000077, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0c, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(45), + { 0x91, 0x0c, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0c, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(45), + { 0x91, 0x0c, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g31_s0_lives10_dlg0[] = { /* 0x8166034 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x00cc, 0x00000078, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0c, 0x000a, 0x00000007, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x0c, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0c, 0x000a, 0x00000007, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x0c, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g31_s0_lives11_dlg0[] = { /* 0x8166134 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000084, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(5), + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x0c, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x0c, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x0c, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x0c, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g31_s0_lives12_dlg0[] = { /* 0x81662a4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x6b, 0x00, 0x0100, 0x00000086, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(3), + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x0c, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x0c, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x0c, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x0c, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x0c, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x0c, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g31_s0_lives13_dlg0[] = { /* 0x8166474 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6b, 0x00, 0x0100, 0x00000085, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(6), + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT(45), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT(45), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g31_s0_lives14_dlg0[] = { /* 0x81665d4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000080, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(7), + { 0x91, 0x0c, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x0c, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(7), + { 0x91, 0x0c, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x0c, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g31_s0_lives15_dlg0[] = { /* 0x8166724 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6b, 0x00, 0x0100, 0x00000081, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g31_s0_lives16_dlg0[] = { /* 0x81667f4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000007f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g31_s0_lives17_dlg0[] = { /* 0x81668b4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x6b, 0x00, 0x0100, 0x00000082, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(2), + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(3), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g31_s0_lives18_dlg0[] = { /* 0x81669d4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x6b, 0x00, 0x0100, 0x00000083, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(12), + { 0x91, 0x0c, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x08, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + WAIT(12), + { 0x91, 0x0c, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x08, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g31_s0_lives19_dlg0[] = { /* 0x8166b54 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g31_s0_lives19_dlg2[] = { /* 0x8166b84 */ + DEBUGINFO, + RET, +}; + +static const struct ScriptCommand s_gs1_g31_s0_lives20_dlg0[] = { /* 0x8166ba4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g31_s0_lives20_dlg2[] = { /* 0x8166bd4 */ + DEBUGINFO, + RET, +}; + +static const struct ScriptCommand s_gs1_g32_s0_station_sref_script[] = { /* 0x8166bf4 */ + DEBUGINFO, + SELECT_MAP(1), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(19), + { 0x27, 0x00, 0x0005, 0x00000020, 0x00ffffff, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs1_g32_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs1_g32_s0_station_sref_script }; /* 0x8166c74 */ + +static const struct ScriptCommand s_gs1_g32_s0_lives0_dlg0[] = { /* 0x8166c80 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" $n9.#W\nTell us.") }, + { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" Can the falling star be\nstopped?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2d, 0x09, 0x0007, 0x0000006c, 0x00000000, NULL }, + FANFARE_PLAY2(487), + { 0x28, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, + { 0x27, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, + WAIT(30), + { 0x2e, 0x00, 0x0009, -0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" ............#WThere is a way.") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" ...To prevent collision,\nthere is but one solution.") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" You must ask $n7.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0d, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" $n7?#W\nWhat might that be?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(487), + { 0x28, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, + { 0x27, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" A Pokémon, living far above\nus in the sky.\nLegendary, it is.") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" $n7 must be asked\nto destroy the star from the sky.") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" However...#W\nFar, far up in the sky lives $n7.\nKnown by few and seen by none.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" The sky...#W\nHow are we to go there?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(487), + { 0x28, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, + { 0x27, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" $n8 and I\namplify our Teleport together...") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" And send Pokémon to the\nsky.") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" However...#W\nThe sky is a world above the clouds.") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" What will become of the\nPokémon sent to the sky?#W\nEven I can guess nothing...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x10, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Then, we'll do it!#W\nWe'll go!")), + VARIANT(/* == */ 3, _(" Then, we'll do it!#W\nWe'll go!")), + VARIANT_DEFAULT(_(" Then, we'll do it!#W\nWe'll go!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" I also...#W\nI thought there could be none but you...") }, + { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" But...#W Are you sure?#W\nThere's no telling what you would find\nin that world above the clouds.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" We expect danger!")), + VARIANT(/* == */ 1, _(" It's my wish that all\nPokémon can live in peace.")), + VARIANT(/* == */ 3, _(" We expect danger!")), + VARIANT(/* == */ 3, _(" It's my wish that all\nPokémon can live in peace.")), + VARIANT_DEFAULT(_(" We expect danger!")), + VARIANT_DEFAULT(_(" It's my wish that all\nPokémon can live in peace.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(487), + { 0x28, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, + { 0x27, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" $n1, $n0.#W\nDo you hear?#W This is $n9.") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Discuss we will,\n$n8 and I, about how our\nTeleport can be amplified.") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Departure, it is tomorrow.#W\nRest you should until then.") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Last word.#W\nDangerous will be your adventure...#W\nBut fail, you must not. Surpass yourselves.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" No problem!\nWe'll be fine!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, $n0!\nLet's get it done!")), + VARIANT_DEFAULT(_(" Right, $n0?\nLet's get it done!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + +static const struct ScriptCommand s_gs1_g32_s0_lives1_dlg0[] = { /* 0x8167744 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_HAPPY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g32_s0_lives2_dlg0[] = { /* 0x8167814 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g32_s0_lives3_dlg0[] = { /* 0x8167854 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x59, 0x00, -0x0008, 0x00000008, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g32_s0_lives4_dlg0[] = { /* 0x81678a4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g32_s0_lives5_dlg0[] = { /* 0x81678e4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g32_s0_lives6_dlg0[] = { /* 0x8167924 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g32_s0_lives7_dlg0[] = { /* 0x8167964 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g32_s0_lives8_dlg0[] = { /* 0x81679a4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g32_s0_lives9_dlg0[] = { /* 0x8167a04 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g32_s0_lives10_dlg0[] = { /* 0x8167a34 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g32_s0_lives11_dlg0[] = { /* 0x8167a64 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g32_s0_lives12_dlg0[] = { /* 0x8167aa4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g32_s0_lives13_dlg0[] = { /* 0x8167ae4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g32_s0_lives14_dlg0[] = { /* 0x8167b24 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g32_s0_lives15_dlg0[] = { /* 0x8167b64 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g32_s0_lives16_dlg0[] = { /* 0x8167ba4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g32_s0_lives17_dlg0[] = { /* 0x8167be4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g32_s0_lives18_dlg0[] = { /* 0x8167c24 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g33_s0_station_sref_script[] = { /* 0x8167c64 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 1), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 9), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(1), + SELECT_ENTITIES(-1, 0), + SELECT_ENTITIES(0, 0), + CALL_STATION( 34, 0), + BGM_SWITCH(19), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs1_g33_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs1_g33_s0_station_sref_script }; /* 0x8167d34 */ + +static const struct ScriptCommand s_gs1_g33_s0_lives0_dlg0[] = { /* 0x8167d40 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs1_g34_s0_station_sref_script[] = { /* 0x8167d80 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs1_g34_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs1_g34_s0_station_sref_script }; /* 0x8167db0 */ + +static const struct ScriptCommand s_gs1_g34_s0_lives0_dlg2[] = { /* 0x8167dbc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0.")), + VARIANT_DEFAULT(_(" $n0.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" Are you all ready for\nthe sky?")), + VARIANT_DEFAULT(_(" Are you all ready for\nthe sky?")), + CHOICE(/* label */ 2, _("All set!")), + CHOICE(/* label */ 3, _("Not yet.")), + LABEL(3), /* = 0x03 */ + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" All right.")), + VARIANT(/* == */ 1, _(" Give me a shout when you're\nall set to go to the sky.")), + VARIANT_DEFAULT(_(" OK.")), + VARIANT_DEFAULT(_(" Just tell me when you're\nready to go to the sky.")), + JUMP_SCRIPT(END_TALK), + LABEL(2), /* = 0x02 */ + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Great!\nLooks like you're all set to roll!")), + VARIANT(/* == */ 1, _(" We leave tomorrow.")), + VARIANT(/* == */ 1, _(" Let's get plenty of rest\ntonight and get set for tomorrow.")), + VARIANT(/* == */ 1, _(" Tomorrow!#W\nLet's give it everything we've got,\n$n0!")), + VARIANT_DEFAULT(_(" Yup!\nLooks like we're ready to go!")), + VARIANT_DEFAULT(_(" We leave tomorrow.")), + VARIANT_DEFAULT(_(" So let's get plenty of rest\nfor tomorrow.")), + VARIANT_DEFAULT(_(" Tomorrow!#W\nLet's give it everything we can,\n$n0!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(150), + { 0x23, 0x01, 0x002d, 0x00000000, 0x00000000, NULL }, + WAIT(180), + EXECUTE_FUNCTION(EVENT_M01E10A_L002), + HALT, +}; + + + +static const struct ScriptCommand s_gs1_g34_s0_lives1_dlg2[] = { /* 0x8168208 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E10A_1N, 0, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E10A_1N, 0, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We hope you'll succeed!\nPlease don't give up!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g34_s0_lives2_dlg2[] = { /* 0x81682ec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E10A_1N, 1, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E10A_1N, 1, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I also hope for your\nsuccess. Fight!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g34_s0_lives3_dlg2[] = { /* 0x81683c4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E10A_1N, 2, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E10A_1N, 2, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0, you're our\none hope!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g34_s0_lives4_dlg2[] = { /* 0x8168494 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E10A_1N, 3, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E10A_1N, 3, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm rooting for your\nsuccess, $n0!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g34_s0_lives5_dlg2[] = { /* 0x816856c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E10A_1N, 4, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E10A_1N, 4, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You'll do fine!#W\nI'm sure you'll find success!\nHave confidence in yourselves!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g34_s0_lives6_dlg2[] = { /* 0x8168674 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E10A_1N, 5, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E10A_1N, 5, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I don't know what sort of\nPokémon Rayquaza is...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But with you, I know it can\nbecome a friend!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g34_s0_lives7_dlg2[] = { /* 0x8168798 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Everything depends on you!\nDon't fail!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g34_s0_lives8_dlg2[] = { /* 0x8168824 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Darlings, I can't begin to\nimagine a world above the clouds...#W\nThe best of luck!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g34_s0_lives9_dlg2[] = { /* 0x81688dc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Rayquaza is a legendary\nPokémon, isn't that right?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Getting to it sounds difficult\nenough...\nBut you can't fail!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g34_s0_lives10_dlg2[] = { /* 0x81689c4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If anyone can do it, it's you!\nKeep your faith!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g34_s0_lives11_dlg2[] = { /* 0x8168a5c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" This is getting heavy!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But I have this feeling\nthat you can do it.#W\nWe need you to win!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g34_s0_lives12_dlg2[] = { /* 0x8168b28 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I will wait for you.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0, I'm sure that\nyou will succeed and come back.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g34_s0_lives13_dlg2[] = { /* 0x8168be8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I will set out to confer\nwith Xatu.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You leave tomorrow.\nPrepare for your journey before then.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g34_s0_lives14_dlg2[] = { /* 0x8168cbc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm throwing in my lot with\n#C5Team $t#R!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Get out there and save\nthe world!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g34_s0_lives15_dlg2[] = { /* 0x8168d80 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You can do it!#W\nYou can stop the star from falling!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g35_s0_station_sref_script[] = { /* 0x8168e18 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs1_g35_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs1_g35_s0_station_sref_script }; /* 0x8168e58 */ + +static const struct ScriptCommand s_gs1_g35_s0_lives0_dlg2[] = { /* 0x8168e64 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E10A_3N, 0, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E10A_3N, 0, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I see you're heading out\nsoon.\nThe best of luck!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g35_s0_lives1_dlg2[] = { /* 0x8168f48 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E10A_3N, 1, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E10A_3N, 1, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Ah, you're leaving?\nGood luck!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g35_s0_lives2_dlg2[] = { /* 0x816901c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E10A_3N, 2, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E10A_3N, 2, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0, don't let us\ndown!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g35_s0_lives3_dlg2[] = { /* 0x81690ec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E10A_3N, 3, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E10A_3N, 3, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm rooting for you!\nGo get 'em, $n0!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g35_s0_lives4_dlg2[] = { /* 0x81691cc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E10A_3N, 4, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E10A_3N, 4, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" This is it, isn't it?\nMake us proud!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g35_s0_lives5_dlg2[] = { /* 0x81692a8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E10A_3N, 5, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E10A_3N, 5, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Are you heading out now?\nDon't give up!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g35_s0_lives6_dlg2[] = { /* 0x8169384 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You're going, hey?\nBuckle down and get it done!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g35_s0_lives7_dlg2[] = { /* 0x816941c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0, take care,\ndarling.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g35_s0_lives8_dlg2[] = { /* 0x816949c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I can't even imagine what's\nup in the sky, but be brave!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g35_s0_lives9_dlg2[] = { /* 0x816953c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Go with care!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g35_s0_lives10_dlg2[] = { /* 0x81695ac */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, yeah. Leaving soon?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Give it your best shot!\nDon't you lose!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g35_s0_lives11_dlg2[] = { /* 0x8169664 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You guys can do it for sure!\nThere's nothing to worry about!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Go with confidence!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g35_s0_lives12_dlg2[] = { /* 0x816972c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Go for it! Take care!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g35_s0_lives13_dlg2[] = { /* 0x81697a4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" WE CAME TO WISH YOU\nWELL TOO! BZBZBZZZT!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g35_s0_lives14_dlg2[] = { /* 0x8169830 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" SAVE THE WORLD!\nBZBZBZZ!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g36_s0_station_sref_script[] = { /* 0x81698ac */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs1_g36_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs1_g36_s0_station_sref_script }; /* 0x81698ec */ + +static const struct ScriptCommand s_gs1_g36_s0_lives0_dlg2[] = { /* 0x81698f8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E10A_5N, 0, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E10A_5N, 0, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You still have everything\nto prove!\nThe best of luck!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g36_s0_lives1_dlg2[] = { /* 0x81699e0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E10A_5N, 1, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E10A_5N, 1, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0, I'm certain\nthat you will succeed!\nGood luck!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g36_s0_lives2_dlg2[] = { /* 0x8169ac8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E10A_5N, 2, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E10A_5N, 2, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It must be difficult, but\ndon't let us down!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g36_s0_lives3_dlg2[] = { /* 0x8169bac */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E10A_5N, 3, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E10A_5N, 3, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You're not finished yet!\nI hope I can serve you in good stead!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g36_s0_lives4_dlg2[] = { /* 0x8169ca0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E10A_5N, 4, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E10A_5N, 4, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I know you too well.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You're not about to ever\ngive up!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Your fight's only begun!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g36_s0_lives5_dlg2[] = { /* 0x8169dcc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M01E10A_5N, 5, /* to label */ 0), + SET_ARRAYVAL(EVENT_M01E10A_5N, 5, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Everyone hopes you reach\nRayquaza.\nKeep it up!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g36_s0_lives6_dlg2[] = { /* 0x8169eac */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" From failure comes success.\nKeep your faith!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g36_s0_lives7_dlg2[] = { /* 0x8169f3c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Darling, you've only begun.#W\n$n0, keep your chin up!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g36_s0_lives8_dlg2[] = { /* 0x8169fdc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh? There's a tower of\nclouds in the sky?!#W\nIt exists? Amazing!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g36_s0_lives9_dlg2[] = { /* 0x816a084 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I know exactly how gutsy\nyou are.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" This is just a setback!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g36_s0_lives10_dlg2[] = { /* 0x816a134 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Go for it!\nDon't you lose!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g36_s0_lives11_dlg2[] = { /* 0x816a1b4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You'll be fine!\nGo with confidence!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g36_s0_lives12_dlg2[] = { /* 0x816a23c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Get it done the next time!\nKeep at it!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g36_s0_lives13_dlg2[] = { /* 0x816a2c4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" IT'S NOT OVER YET!\nBZBZBZZ!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g36_s0_lives14_dlg2[] = { /* 0x816a344 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" THE TIME IS NOW!\nSAVE THE WORLD! BZBZBZZ!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g37_s0_station_sref_script[] = { /* 0x816a3d0 */ + DEBUGINFO, + SELECT_MAP(1), + SELECT_ENTITIES(-1, -1), + { 0x22, 0x01, 0x002d, 0x00000000, 0x00000000, NULL }, + WAIT(240), + { 0x23, 0x01, 0x002d, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs1_g37_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs1_g37_s0_station_sref_script }; /* 0x816a440 */ + +static const struct ScriptCommand s_gs1_g37_s0_eff0_script[] = { /* 0x816a44c */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0099, 0x00000087, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g38_s0_station_sref_script[] = { /* 0x816a48c */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs1_g38_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs1_g38_s0_station_sref_script }; /* 0x816a4cc */ + +static const struct ScriptCommand s_gs1_g38_s0_lives0_dlg2[] = { /* 0x816a4d8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M02E01A_2N, 0, /* to label */ 0), + SET_ARRAYVAL(EVENT_M02E01A_2N, 0, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yes! You did it,\n$n0!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Now that peace has been\nrestored, I can sell my wares with\npeace of mind.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Thank you so much!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g38_s0_lives1_dlg2[] = { /* 0x816a628 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M02E01A_2N, 1, /* to label */ 0), + SET_ARRAYVAL(EVENT_M02E01A_2N, 1, 1), + EXECUTE_STATION(-1, 38, 1), + HALT, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g38_s0_lives2_dlg2[] = { /* 0x816a6d8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M02E01A_2N, 2, /* to label */ 0), + SET_ARRAYVAL(EVENT_M02E01A_2N, 2, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Peace has returned!\nThank you, $n0!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g38_s0_lives3_dlg2[] = { /* 0x816a7b0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M02E01A_2N, 3, /* to label */ 0), + SET_ARRAYVAL(EVENT_M02E01A_2N, 3, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Thank you so much!\nI can keep my shop running, thanks to you!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g38_s0_lives4_dlg2[] = { /* 0x816a8a4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M02E01A_2N, 4, /* to label */ 0), + SET_ARRAYVAL(EVENT_M02E01A_2N, 4, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You did it! Good for you!\nThat is so cool!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g38_s0_lives5_dlg2[] = { /* 0x816a980 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M02E01A_2N, 5, /* to label */ 0), + SET_ARRAYVAL(EVENT_M02E01A_2N, 5, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's peaceful again!\nThank you! I never expected less from\nyou, my friend!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g38_s0_lives6_dlg2[] = { /* 0x816aa80 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You guys were amazing...#W\nTruly, you've impressed me.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g38_s0_lives7_dlg2[] = { /* 0x816ab1c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You've done it,\n$n0!\nYou're the greatest! Really!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g38_s0_lives8_dlg2[] = { /* 0x816abb8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000022, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0! $n2!\nYou both hung in there! Great job!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...But you're still not up to\nour caliber!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g38_s0_lives9_dlg2[] = { /* 0x816ac98 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We're here now because\nyou succeeded! You have my thanks!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...Of course, we did our bit\nto help too!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g38_s0_lives10_dlg2[] = { /* 0x816ad78 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" THANK YOU, BZBZBZZ!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g38_s0_lives11_dlg2[] = { /* 0x816adf0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" AWESOME! AWESOME!\nBZBZBZZZT!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g38_s0_lives12_dlg2[] = { /* 0x816ae70 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000022, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We will soon be departing\nthe area.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sincerely, thank you for\nall the help and kindness you've given us.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0 and\n$n2, please do take care!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g38_s0_lives13_dlg2[] = { /* 0x816af9c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000022, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We will soon be leaving\nthis area.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We Jumpluff travel the\nworld, carried wherever the winds will\ntake us.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0 and\n$n2, we owe so much to you.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Thank you for everything.#W\nMay we meet again.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g38_s1_station_sref_script[] = { /* 0x816b104 */ + DEBUGINFO, + SELECT_LIVES(-1, 1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs1_g38_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs1_g38_s1_station_sref_script }; /* 0x816b144 */ + +static const struct ScriptCommand s_gs1_g38_s1_lives0_dlg0[] = { /* 0x816b150 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x0c, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I'm all shaken up with\nemotion!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Knowing that the square will\nbe safe...#W That made me...#W\nIt left me choked up...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It isn't just you, my brother.#W\nI am likewise overcome with joy.") }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" B-Brother...#W\nSniffle... My brother...") }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" $n0 and\n$n1...#W\nWe only have gratitude for you.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Thank you ever so much!") }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g38_s1_lives1_dlg0[] = { /* 0x816b424 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g38_s1_lives1_dlg2[] = { /* 0x816b4d4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M02E01A_2N, 0, /* to label */ 0), + SET_ARRAYVAL(EVENT_M02E01A_2N, 0, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, my, you've outdone\nyourself, $n0!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Because peace has been\nrestored, I may go about securely in my\nbusiness.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Thank you ever so much!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g38_s1_lives2_dlg0[] = { /* 0x816b620 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g38_s1_lives2_dlg2[] = { /* 0x816b6f0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_M02E01A_2N, 1, /* to label */ 0), + SET_ARRAYVAL(EVENT_M02E01A_2N, 1, 1), + EXECUTE_STATION(-1, 38, 1), + HALT, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g39_s0_lives0_dlg2[] = { /* 0x816b7a0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + ASK3(FALSE, /*default*/ -1, /* speaker */ 1, _(" Have you made room so\nI may join your rescue team?")), + CHOICE(/* label */ 0, _("Yes.")), + CHOICE(/* label */ 1, _("No.")), + LABEL(0), /* = 0x00 */ + { 0x3b, 0x1d, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 2), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Thank you!") }, + FANFARE_PLAY(204), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n1 \n#+became a member!") }, + { 0xe1, 0x00, 0x00cc, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x1e, 0x0000, 0x00000000, 0x00000000, NULL }, + ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to $n1?")), + CHOICE(/* label */ 3, _("*Yes.")), + CHOICE(/* label */ 4, _("No.")), + LABEL(3), /* = 0x03 */ + { 0x3d, 0x00, 0x0000, -0x00000001, 0x00000000, NULL }, + LABEL(4), /* = 0x04 */ + { 0x3b, 0x1f, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB1, 32, 3), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + CANCEL_ENTITIES(39, -1), + WAIT(30), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), + LABEL(2), /* = 0x02 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yes!\nThank you!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...But there appears to be\nno room for me in my Friend Area...#W\nHow disappointing...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I would be able to join your\nrescue team if there were less Pokémon\nin #C4Sky Blue Plains#R...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Please let me know then.") }, + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, I see...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There still is no room for\nme in the Friend Area I must go to...\nHow disappointing...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I would be able to join your\nrescue team if there were less Pokémon\nin #C4Sky Blue Plains#R...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Please let me know then.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g40_s0_lives0_dlg0[] = { /* 0x816bc04 */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g40_s0_lives0_dlg2[] = { /* 0x816bc34 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + WAIT(1), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh? What's that?#W\n...Oh, you mean what happened at sea?") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wasn't drowning!#W\nSheesh, they're making up stories about\nme!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" Want to know what really\nhappened?")), + CHOICE(/* label */ 2, _("Yes.")), + CHOICE(/* label */ 3, _("No.")), + LABEL(3), /* = 0x03 */ + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Tch! Fine, then!\nHumph!") }, + RESET_ARRAY(EVENT_LOCAL), + JUMP_SCRIPT(END_TALK), + LABEL(2), /* = 0x02 */ + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" See, I went out to the sea\nto frolic a while back.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You know?#W\nI was trying that Dive thing.") }, + { 0x2e, 0x15, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" So, I was having fun\ngoing underwater...#W\nAnd I got washed out to sea a bit.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" All of a sudden, these\nwicked clouds rolled in...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And before I knew it, there\nwas a full-blown storm raging!") }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There's more!#W\nA dungeon appeared in the sea!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I was shocked witless!\nI got out of there fast!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But who'd've guessed it?\nA dungeon in a stormy sea!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(468), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh?#W\nYou want to know more about that\ndungeon in the sea?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I vamoosed it out of there,\nso I can't tell you much...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(60), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I know!#W\nMaybe Whiscash would know something.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yeah, that'd be best.\nGo talk to Whiscash.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RESET_ARRAY(EVENT_LOCAL), + JUMPIF_SCENE_GT(SCENARIO_SUB2, 33, 3, /* to label */ 4), + SCENARIO_CALC(SCENARIO_SUB2, 33, 3), + LABEL(4), /* = 0x04 */ + JUMP_SCRIPT(END_TALK), +}; + + + +static const struct ScriptCommand s_gs1_g40_s0_lives0_dlg3[] = { /* 0x816c390 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005e, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(0, /* to label */ 0), + CALL_SCRIPT(QUESTION_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x92, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x92, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + LABEL(0), /* = 0x00 */ + { 0x8d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(12), + RET, +}; + +static const struct ScriptCommand s_gs1_g41_s0_lives0_dlg0[] = { /* 0x816c510 */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g41_s0_lives0_dlg2[] = { /* 0x816c540 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I have heard of a weather\nanomaly afflicting a certain sea.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" They say a whirlpool\nstretches from sea to sky in a\ncolossal tornado.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It is said to be near the\n#C4Legendary Island#R Friend Area.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It hasn't caused any damage\nso far as I know...#W\nBut it does concern me.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The #C4Legendary Island#R\nbelongs to your team.") }, + ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" Will you travel to the\n#C4Legendary Island#R and observe what is\ntaking place?")), + CHOICE(/* label */ 2, _("Yes.")), + CHOICE(/* label */ 3, _("No.")), + LABEL(3), /* = 0x03 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Feeling contrary today?#W\nWe need your help, please.") }, + ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" Will you travel to the\n#C4Legendary Island#R and observe what is\ntaking place?")), + CHOICE(/* label */ 2, _("Yes.")), + CHOICE(/* label */ 3, _("No.")), + LABEL(2), /* = 0x02 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Ah, good.\nYou accept the job.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I hope for the best from\nyou.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMPIF_SCENE_GT(SCENARIO_SUB2, 34, 2, /* to label */ 4), + SCENARIO_CALC(SCENARIO_SUB2, 34, 2), + LABEL(4), /* = 0x04 */ + JUMP_SCRIPT(END_TALK), +}; + + + +static const struct ScriptCommand s_gs1_g41_s0_lives0_dlg3[] = { /* 0x816c958 */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00000400, 0x00000000, NULL }, + { 0x8d, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x8d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(12), + RET, +}; + +static const struct ScriptCommand s_gs1_g42_s0_lives0_dlg2[] = { /* 0x816ca38 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x0000004d, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's cool and all that it's\npeaceful, but...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There's also been no\nexcitement. It's a little sad.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wish there was some\npizzazz to spice things up...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g42_s0_lives1_dlg0[] = { /* 0x816cb70 */ + DEBUGINFO, + CANCEL_ENTITIES(1, 0), + RET, +}; + +static const struct ScriptCommand s_gs1_g42_s0_lives1_dlg2[] = { /* 0x816cba0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x0000004f, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Good morning.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Ahh... Another refreshing\nday...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g42_s0_lives2_dlg2[] = { /* 0x816cc54 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g42_s0_lives3_dlg2[] = { /* 0x816ccb4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g42_s0_lives4_dlg2[] = { /* 0x816cd14 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g42_s0_lives5_dlg2[] = { /* 0x816cd74 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g42_s0_lives6_dlg2[] = { /* 0x816cdd4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g42_s0_evt0_sref_script[] = { /* 0x816ce34 */ + DEBUGINFO, + EXECUTE_STATION(-1, 43, 0), + HALT, +}; + +static const struct ScriptRef s_gs1_g42_s0_evt0_sref = { 57, 7, NULL /* NORMAL_EVENT */, s_gs1_g42_s0_evt0_sref_script }; /* 0x816ce64 */ + +static const struct ScriptCommand s_gs1_g43_s0_station_sref_script[] = { /* 0x816ce70 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 0), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + WAIT(10), + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S04E01A_L001), + RET, +}; + +static const struct ScriptRef s_gs1_g43_s0_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs1_g43_s0_station_sref_script }; /* 0x816cef0 */ + +static const struct ScriptCommand s_gs1_g43_s0_eff0_script[] = { /* 0x816cefc */ + DEBUGINFO, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0200, -0x00000100, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g43_s0_lives0_dlg0[] = { /* 0x816cf4c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x11, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh?") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Who is that? Over there.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Never seen it before.#W\nIt's not from around these parts.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(120), + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x58, 0x01, 0x0000, 0x000001c0, 0x00000138, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" No more...#W\nI can't walk anymore...") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I'm falling down...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Goodness!#W\nIt needs help!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x01cc, -0x000000a0, 0x00000000, NULL }, + HALT, +}; + + + + + +static const struct ScriptCommand s_gs1_g43_s0_lives1_dlg0[] = { /* 0x816d2cc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x58, 0x01, 0x0000, 0x000001d0, 0x00000150, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x01cc, -0x000000c8, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g43_s0_lives2_dlg0[] = { /* 0x816d39c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(469), + CALL_SCRIPT(QUESTION_FUNC), + { 0xe2, 0x00, 0x01d4, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x58, 0x01, 0x0000, 0x000001f0, 0x00000138, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x01cc, -0x000000c8, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g43_s0_lives3_dlg0[] = { /* 0x816d48c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe2, 0x00, 0x01d1, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x58, 0x01, 0x0000, 0x000001f0, 0x00000150, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x01cc, -0x000000c8, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g43_s0_lives4_dlg0[] = { /* 0x816d56c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000008, -0x00000008, NULL }, + WAIT(60), + { 0x6a, 0x00, 0x0100, 0x00000008, 0x00000008, NULL }, + WAIT(60), + { 0x6a, 0x00, 0x0100, 0x00000008, -0x00000008, NULL }, + FANFARE_PLAY2(468), + { 0xe2, 0x00, 0x01d4, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(468), + WAIT(45), + { 0x6a, 0x00, 0x0100, 0x00000008, 0x00000008, NULL }, + FANFARE_PLAY2(468), + { 0xe2, 0x00, 0x01d4, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(468), + WAIT(45), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(809), + { 0x54, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x01, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe2, 0x00, 0x0329, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(510), + WAIT(60), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g44_s0_lives0_dlg2[] = { /* 0x816d78c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0001, 0x00000073, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I...#W\nI've given up on ever seeing the mirage\nPokémon...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I...#W\nI've reached the limit of my endurance...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm as tired as tired can\nbe...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs1_g45_s0_lives0_dlg2[] = { /* 0x816d8b4 */ + DEBUGINFO, + EXECUTE_STATION(-1, 45, 1), + HALT, +}; + +static const struct ScriptCommand s_gs1_g45_s1_station_sref_script[] = { /* 0x816d8e4 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB4, 43, 2), + RET, +}; + +static const struct ScriptRef s_gs1_g45_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs1_g45_s1_station_sref_script }; /* 0x816d934 */ + +static const struct ScriptCommand s_gs1_g45_s1_lives0_dlg0[] = { /* 0x816d940 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Wh-wh-wh-what?!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You've seen the mirage\nPokémon?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Wh-wh-what sort of a\nPokémon was it?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...I see.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............I see, I see.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Ah... Understood.\nSo, it is named Ho-Oh...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ah, I see indeed!#W\nTruly!#W Truly, I envy you!") }, + { 0x3b, 0x23, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 1), + COND_EQUAL(1, /* to label */ 1), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Wait!#W Huh?!#W\nYou are!#W You are the one-and-only Ho-Oh?!") }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x23, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(2, /* to label */ 2), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Wroooooooah!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I...#W You...#W\nYou've made me open my eyes!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Well, they still look googly,\nbut still...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The lesson is: we mustn't\never give up!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Because if you give up,\nthat's when it ends!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Thank you!#W\nYou have inspired me to resume my\ntravels!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I will again travel the\nworld to find rare Pokémon, perhaps even\nbefore you.#W Farewell!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(3), + LABEL(2), /* = 0x02 */ + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Waaaaaaaaaaaah!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" My head...#W Is spinning...#W\nMy head's spinning...#W Waaaaaah!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + WAIT(90), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm so sorry I keeled over\nlike that...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And you even came to my\naid when I was down...#W\nThank you...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But I...#W\nI'm feeling overcome by emotion.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Never...#W\nNever did I expect to meet the mirage\nPokémon...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I feel giddily elated...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The lesson is we mustn't\never give up!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Because if you give up,\nthat's when it ends!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Thank you!#W\nYou have inspired me to resume my\ntravels!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" My meeting you...\nIt will be a memory I will cherish\nforever!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I will keep the memory...#W\nin a special place deep in my heart!#W\nFarewell!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(3), /* = 0x03 */ + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00000004, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, -0x00000020, 0x00000000, NULL }, + { 0x8e, 0x0f, 0x000a, 0x00000073, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs1_g45_s1_lives1_dlg0[] = { /* 0x816e32c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(SHOCK_FUNC), + { 0xe2, 0x00, 0x01d1, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x54, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x23, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 0), + COND_EQUAL(1, /* to label */ 0), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + WAIT(20), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x54, 0x00, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(762), + { 0x54, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe2, 0x00, 0x02fa, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(510), + WAIT(60), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x23, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(2, /* to label */ 1), + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(80), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + FANFARE_PLAY2(473), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe2, 0x00, 0x01d9, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(80), + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(510), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + LABEL(2), /* = 0x02 */ + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + WAIT(20), + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6a, 0x00, 0x0100, 0x00000008, 0x00000010, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x6a, 0x00, 0x0100, -0x00000008, 0x00000010, NULL }, + WAIT(60), + { 0x6a, 0x00, 0x0100, 0x00000008, 0x00000010, NULL }, + WAIT(60), + { 0x6a, 0x00, 0x0100, -0x00000008, 0x00000010, NULL }, + WAIT(60), + { 0x6a, 0x00, 0x0100, 0x00000008, 0x00000010, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6a, 0x00, 0x0100, -0x00000008, 0x00000010, NULL }, + WAIT(60), + { 0x6a, 0x00, 0x0100, 0x00000008, 0x00000010, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6a, 0x00, 0x0100, -0x00000008, 0x00000010, NULL }, + WAIT(30), + { 0x6a, 0x00, 0x0100, 0x00000008, 0x00000010, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g46_s0_station_sref_script[] = { /* 0x816e8bc */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 1), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 9), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(1), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(7), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs1_g46_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs1_g46_s0_station_sref_script }; /* 0x816e97c */ + +static const struct ScriptCommand s_gs1_g46_s0_eff0_script[] = { /* 0x816e988 */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, -0x00000020, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g46_s0_lives0_dlg0[] = { /* 0x816e9f8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x0d, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0005, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...I've always wondered...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Who would be the most\npowerful Pokémon of all?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What, there's someone\nbesides Rayquaza?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Is that it?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Well, sheesh, Rayquaza\ndestroyed a star!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Wobbuffet!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Who else but Rayquaza\nwould be able to do that?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Wobbuffet!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" But there's Groudon.\nIsn't that tough?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Is that true?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Why, even Alakazam's team\ncouldn't defeat it!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Wobbuffet!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Legend has it that Groudon\nshaped continents.\nIt's an incredible Pokémon!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Wobbuffet!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x6b, 0x00, 0x0100, 0x00000089, 0x00000000, NULL }, + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hey, you came along at\nthe right time.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We're having a little\nargument about who the most powerful\nPokémon happens to be.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n0, what do you\nthink?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + ASK3( TRUE, /*default*/ -1, /* speaker */ 2, _(" Who do you think is the\nmost powerful Pokémon?")), + CHOICE(/* label */ 5, _("Rayquaza.")), + CHOICE(/* label */ 6, _("Groudon.")), + CHOICE(/* label */ 7, _("Me.")), + LABEL(5), /* = 0x05 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh, yeah?\n$n0, you think so too?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yeah, you bet it is!#W\nRayquaza is the toughest!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(8), + LABEL(6), /* = 0x06 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 2), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Ah, yes!\n$n0! Isn't that right!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Groudon is the most\npowerful when all's said and done!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 3), + FANFARE_PLAY2(470), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000001, 0x00000000, NULL }, + { 0x2e, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x11, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _("....................................") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _("...................................") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _("....................................") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _("....................................") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("...............................................................\n...............................................................\n...............................................................") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...#WWell, uh...#W\nI know you want to become tougher, but...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I hope you never give up\nchasing your dreams.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + LABEL(8), /* = 0x08 */ + { 0x2e, 0x0d, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0005, 0x00000001, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ...Um...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000006d, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I heard this story...") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Somewhere in the world is\na Pokémon that was made for fighting.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" A Pokémon...#W\nmade for fighting?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Yup.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" They say it has so much\nfighting power...") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" All it can think of is\ndefeating anything it meets.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Th-that's rather a savage\nPokémon! I shudder to think...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Where might such a horrid\nPokémon be now?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Rumors say...#W\nit is storing its power...") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" They say it is sleeping in\na dungeon somewhere...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + WAIT(30), + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" That rumor...#W\nIt's true...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000059, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(9), + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + WAIT(120), + { 0x62, 0x00, 0x0080, 0x00000010, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n6...#W\nAnd $n7...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh my gosh!\nWhat happened to you?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They're hurt bad...#W\nWhat exactly happened?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0006, 0x00000003, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0007, 0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" Urgh...#W\nIt's what that $n4 was saying...") }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" ...We were wiped out by\nthat Pokémon...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(473), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Wh-what did you say?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Grgh... There's no mistake...#W\nIt said it was born to fight...") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" ...But that Pokémon's\npower...#W\nThere was nothing fake about it...") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" ...It really was the most\npowerful...#W\n...Gfah!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(473), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ch-$n6!\nAre you OK?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + WAIT(60), + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" There is a cave...\nfar in the west...#W\nIt's there...") }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" I never want...#W\nto go back again...#W Gfwoh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(473), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh, my gosh!\nBlastoise went down, too!#W\nThey need help now!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I'll go get someone!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x12, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Wow, it really exists...#W\nA Pokémon that tough...") }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000004d, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...But, you know?#W\nSo we now know that Pokémon is in the\n#CDWestern Cave#R...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I still don't feel like going\nout there...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Going anywhere like that'd\nbe too scary by half!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I'm scared too...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000006d, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0005, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Wobbuffet!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The cave shunned\n#+by all out of fear...") }, + BGM_STOP, + FANFARE_PLAY(205), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The #CDWestern Cave#R\n#+is now open for exploration!") }, + { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + RET, +}; + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs1_g46_s0_lives1_dlg0[] = { /* 0x817094c */ + DEBUGINFO, + END_DELETE, + RET, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g46_s0_lives2_dlg0[] = { /* 0x81709ac */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000004f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000004f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x93, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 0), + COND_EQUAL(2, /* to label */ 1), + COND_EQUAL(3, /* to label */ 2), + LABEL(0), /* = 0x00 */ + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005d, 0x00000000, NULL }, + WAIT(60), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(3), + LABEL(1), /* = 0x01 */ + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000004f, 0x00000000, NULL }, + JUMP_LABEL(3), + LABEL(2), /* = 0x02 */ + CALL_SCRIPT(SWEAT_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + LABEL(3), /* = 0x03 */ + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000006d, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000059, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000008a, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000059, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g46_s0_lives3_dlg0[] = { /* 0x8170d6c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000004d, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x93, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 0), + COND_EQUAL(2, /* to label */ 1), + COND_EQUAL(3, /* to label */ 2), + LABEL(0), /* = 0x00 */ + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000004d, 0x00000000, NULL }, + JUMP_LABEL(3), + LABEL(1), /* = 0x01 */ + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005d, 0x00000000, NULL }, + WAIT(60), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(3), + LABEL(2), /* = 0x02 */ + CALL_SCRIPT(SWEAT_FUNC), + LABEL(3), /* = 0x03 */ + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000006d, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000059, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000008b, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000059, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0300, 0x0000008c, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0300, 0x0000008d, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs1_g46_s0_lives4_dlg0[] = { /* 0x817113c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000004f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000004d, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000004f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 0), + COND_EQUAL(2, /* to label */ 1), + COND_EQUAL(3, /* to label */ 2), + LABEL(0), /* = 0x00 */ + JUMP_LABEL(3), + LABEL(1), /* = 0x01 */ + JUMP_LABEL(3), + LABEL(2), /* = 0x02 */ + CALL_SCRIPT(SWEAT_FUNC), + LABEL(3), /* = 0x03 */ + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000004f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000059, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000004d, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g46_s0_lives5_dlg0[] = { /* 0x817145c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000004f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000004d, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000004f, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + WAIT(30), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CJUMP_VAR(EVENT_LOCAL), + COND_EQUAL(1, /* to label */ 0), + COND_EQUAL(2, /* to label */ 1), + COND_EQUAL(3, /* to label */ 2), + LABEL(0), /* = 0x00 */ + JUMP_LABEL(3), + LABEL(1), /* = 0x01 */ + JUMP_LABEL(3), + LABEL(2), /* = 0x02 */ + CALL_SCRIPT(SWEAT_FUNC), + LABEL(3), /* = 0x03 */ + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000006d, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000059, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000004d, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000006d, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g46_s0_lives6_dlg0[] = { /* 0x817197c */ + DEBUGINFO, + { 0x54, 0x00, 0x0020, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x6c, 0x78, 0x004c, 0x0000008e, 0x00000000, NULL }, + WAIT_RANDOM(30, 60), + { 0x6c, 0x78, 0x004c, 0x0000008e, 0x00000000, NULL }, + WAIT_RANDOM(30, 60), + { 0x6b, 0x00, 0x004c, 0x0000008e, 0x00000000, NULL }, + { 0x54, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0019, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + WAIT(25), + FANFARE_PLAY2(400), + { 0xe2, 0x00, 0x0190, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g46_s0_lives7_dlg0[] = { /* 0x8171aac */ + DEBUGINFO, + { 0x54, 0x00, 0x0021, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x6c, 0xb4, 0x004c, 0x0000008f, 0x00000000, NULL }, + WAIT_RANDOM(30, 60), + { 0x6c, 0x78, 0x004c, 0x0000008f, 0x00000000, NULL }, + WAIT_RANDOM(30, 60), + { 0x6b, 0x00, 0x004c, 0x0000008f, 0x00000000, NULL }, + { 0x54, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x001a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + WAIT(20), + FANFARE_PLAY2(400), + { 0xe2, 0x00, 0x0190, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g47_s0_station_sref_script[] = { /* 0x8171bec */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 1), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 9), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(1), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(7), + { 0x22, 0x00, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + WAIT(60), + RET, +}; + +static const struct ScriptRef s_gs1_g47_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs1_g47_s0_station_sref_script }; /* 0x8171cdc */ + +static const struct ScriptCommand s_gs1_g47_s0_eff0_script[] = { /* 0x8171ce8 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g47_s0_lives0_dlg0[] = { /* 0x8171d48 */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000050, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, $n0.\nEveryone's gathered around.")), + VARIANT_DEFAULT(_(" Look, $n0.\nEveryone's gathered around.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Aiyiyi...\nI do not deserve this! I am outraged!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000091, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" What's up, folks?")), + VARIANT_DEFAULT(_(" What's up, everyone?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Up? Up? Up?!\nHow could it be up, I ask you!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" My beautiful shop...\nMy fine wares were stolen from me!") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + { 0x56, 0x00, 0x0000, 0x00000146, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Many, many TMs are simply\ngone! Spirited away!\nDark clouds fill my heart!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" My bank wasn't hit, but...#W\nThese are frightening times.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Is the storage OK?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" No problem.#W\nNothing gets stolen from under my eye.") }, + { 0x2e, 0x0f, 0x0005, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" This mama's not about to\nmake a stupid mistake like that! Kakakah!") }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You're insinuating...#W\nthat we were robbed for being careless?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Now wait.") }, + WAIT(10), + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Tell me, Kecleon.#W\nYou saw...this thief?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hmm...?#W\nNo, not very clearly, I didn't.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" When I saw it, it had\nalready taken off...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Taken off?#W\nYou mean it flew away?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x11, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It flew off in yonder\ndirection, yes.") }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" At tremendous speed\ntoo.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" The yonder direction...#W\nThat would be the Northern Range...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" It's impossible to determine\nwhat the thief is...") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" So we'll need to investigate\nthis matter properly.") }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x11, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes. I beg for justice.#W\nMy business faces ruination.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0.\nWant to go check it out?")), + VARIANT_DEFAULT(_(" $n0.\nWant to look into this?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0's team took on\n#+the case of pursuing the burglar\n#+that struck Kecleon's shop.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The burglar's alleged\n#+getaway spot...") }, + BGM_STOP, + FANFARE_PLAY(205), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The #CDNorthern Range#R\n#+is now open for investigation!") }, + { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs1_g47_s0_lives1_dlg0[] = { /* 0x8172b68 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000050, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe2, 0x00, 0x01d1, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x8e, 0x01, 0x0000, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000090, 0x00000000, NULL }, + FANFARE_PLAY2(468), + CALL_SCRIPT(QUESTION_FUNC), + { 0xe2, 0x00, 0x01d4, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000146, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x01, 0x000a, 0x00000004, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g47_s0_lives2_dlg0[] = { /* 0x8172d68 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g47_s0_lives3_dlg0[] = { /* 0x8172de8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(ANGRY_START_FUNC), + WAIT(60), + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + WAIT(60), + CALL_SCRIPT(ANGRY_END_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0200, -0x00000010, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + FANFARE_PLAY2(457), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + FANFARE_PLAY2(469), + CALL_SCRIPT(QUESTION_FUNC), + { 0xe2, 0x00, 0x01d5, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g47_s0_lives4_dlg0[] = { /* 0x8173008 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g47_s0_lives5_dlg0[] = { /* 0x81730a8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(30), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g47_s0_lives6_dlg0[] = { /* 0x8173188 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000008, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, -0x00000008, 0x00000018, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe2, 0x00, 0x01d1, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g48_s0_station_sref_script[] = { /* 0x81732b8 */ + DEBUGINFO, + SELECT_MAP(1), + SELECT_ENTITIES(-1, 0), + BGM_SWITCH(7), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(60), + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs1_g48_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs1_g48_s0_station_sref_script }; /* 0x8173358 */ + +static const struct ScriptCommand s_gs1_g48_s0_eff0_script[] = { /* 0x8173364 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g48_s0_lives0_dlg0[] = { /* 0x8173394 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Look! He's waking up!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0005, -0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" ...Wh-where...?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" This is Pokémon Square.")), + VARIANT(/* == */ 1, _(" You passed out in the\n#CDNorthern Range#R, so we brought you back\nwith us.")), + VARIANT_DEFAULT(_(" This is Pokémon Square.")), + VARIANT_DEFAULT(_(" You fainted in the #CDNorthern\nRange#R, so we brought you back here.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You! How dare you steal\nmy fine selection of quality merchandise!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You had better be prepared\nfor harsh justice!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0004, -0x00000003, 0x00000001, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Now wait.#W\nThere must be a good reason for this.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" We should at least hear\nthat.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" ...!#W That's right!\nI have to get my sister...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(SHOCK_FUNC), + { 0xe2, 0x00, 0x01d1, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Ggh! This wound!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You're injured.\nYou can't fly for now.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Tell me, how do you justify\nwhat you've done?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(114), + WAIT(60), + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" I have a younger sister.\nHer name is Latias.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Latias...#W\nCrashed somewhere in the #CDPitfall Valley#R...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" What?!#W\nThe #CDPitfall Valley#R?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" ...What is that?#W\nWhat's the #CDPitfall Valley#R?")), + VARIANT_DEFAULT(_(" ...What is that?#W\nWhat is the #CDPitfall Valley#R?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It is near the #CDNorthern\nRange#R.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They say that anyone so\nunlucky to fall into the #CDPitfall Valley#R...#W\nwill never again emerge.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Latias and I were flying\nover the Northern Range.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" When suddenly, what\nappeared to be a meteorite struck\nLatias on the wing...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Her wing shattered by the\nblow, Latias tumbled down into the\ndepths of the #CDPitfall Valley#R...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" A meteorite?!") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0!#W\nDo you think maybe that it's a chunk of\nthe blown-up meteor?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" I went to the #CDPitfall Valley#R\nin hopes of rescuing my sister, but...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" I made little headway...\nI wasn't up to the task...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" So that drove you to steal\nTechnical Machines...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Yes.#W\nI intended to make amends after I saved\nmy sister...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" But that doesn't mean I can\nget away with thievery.#W\nIt was wrong, and I'm sorry.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh... Oh, my!#W\nIt is not a problem! Not a problem at all!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" For a reason so compelling,\nit can't be helped. Hahaha.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" However...#W\nEven if you were to plumb the depths of\n#CDPitfall Valley#R...") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" What would you do then?") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" The nether regions of the\n#CDPitfall Valley#R are a void...") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You will wander forever,\nneither falling...#Wnor living...#W\nWhat then?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" ............#W\nSo much time has passed since my sister\ncrashed.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Latias hasn't been able to\nclimb out of the depths.\nShe is all alone down there.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Even if I end up like her,\nunable to escape...#W\nTwo would be better than one.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Latias wouldn't have to\nbe so alone...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" How foolish...#W\nDo you think Latias wishes for that?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" But...#W\nIt's a place you can never escape, right?")), + VARIANT(/* == */ 1, _(" How are we supposed to pull\noff a rescue from a place like that...?")), + VARIANT_DEFAULT(_(" But...#W\nIt's a place you can't escape, isn't it?")), + VARIANT_DEFAULT(_(" I don't see how we could\ndo a rescue in a place like that...")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" No...#W There is...#W\nThere is but one possible way...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(SHOCK_FUNC), + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You can?!#W\nHow?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You already have the means\nin your possession.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" The #CITeleport Gem#R.#W\nUse that.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The #CITeleport Gem#R?#W\nThe one we used to get up to the sky\nwhere Rayquaza lives?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But it got broken in the\nfalling star's explosion.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" While it is unlikely to\ncarry you to the sky again, it should\nbe able to carry you a shorter distance.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" If you were to use the\n#CITeleport Gem#R from deep within the #CDPitfall\nValley#R...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0001, 0x00000009, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" That's it!#W\nIf we did that, we could escape with\nLatias!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0!#W\nThis is a rescue that only we can do!")), + VARIANT(/* == */ 1, _(" Let's get out there and\nhelp Latias!")), + VARIANT(/* == */ 3, _(" $n0!#W\nThis is a rescue that only we can do!")), + VARIANT(/* == */ 3, _(" Let's go get Latias!")), + VARIANT_DEFAULT(_(" $n0!#W\nThis is a rescue that only we can do!")), + VARIANT_DEFAULT(_(" Let's go rescue Latias!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + BGM_STOP, + FANFARE_PLAY(205), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 gained access to\n#+the #CDPitfall Valley#R!") }, + { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs1_g48_s0_lives1_dlg0[] = { /* 0x8174e1c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + FANFARE_PLAY2(469), + CALL_SCRIPT(QUESTION_FUNC), + { 0xe2, 0x00, 0x01d5, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe2, 0x00, 0x01d1, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g48_s0_lives2_dlg0[] = { /* 0x817500c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + HALT, +}; + +static const struct ScriptCommand s_gs1_g48_s0_lives3_dlg0[] = { /* 0x81750cc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(ANGRY_START_FUNC), + WAIT(1), + FANFARE_PLAY2(457), + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000008, NULL }, + CALL_SCRIPT(ANGRY_END_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(SHOCK_FUNC), + { 0xe2, 0x00, 0x01d1, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(468), + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + WAIT(20), + FANFARE_PLAY2(468), + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + FANFARE_PLAY2(457), + { 0x56, 0x00, 0x0000, 0x00000047, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + HALT, +}; + +static const struct ScriptCommand s_gs1_g48_s0_lives4_dlg0[] = { /* 0x817534c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0500, -0x00000008, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0200, -0x00000028, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000018, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, -0x00000018, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000007, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g48_s0_lives5_dlg0[] = { /* 0x81754ac */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe2, 0x00, 0x01d1, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x001b, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + BGM_STOP, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(475), + { 0x54, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe2, 0x00, 0x01db, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x001a, 0x00000000, 0x00000000, NULL }, + WAIT(40), + FANFARE_PLAY2(682), + { 0xe2, 0x00, 0x02aa, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0019, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x001b, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x001d, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0019, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x001d, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SHOCK_FUNC), + HALT, +}; + +static const struct ScriptCommand s_gs1_g49_s0_station_sref_script[] = { /* 0x817576c */ + DEBUGINFO, + SELECT_MAP(1), + SELECT_ENTITIES(-1, 0), + { 0x27, 0x01, 0x0001, 0x0000003c, 0x00ffffff, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs1_g49_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs1_g49_s0_station_sref_script }; /* 0x81757ec */ + +static const struct ScriptCommand s_gs1_g49_s0_lives0_dlg0[] = { /* 0x81757f8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(7), + WAIT(30), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" $n6!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Latios!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0005, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" You're safe!\nThis is incredible...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" I'm sorry...\nI caused you so much worry...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh, this is great...\nIt's so touching... Sniffle...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" My sister is safe, all\nthanks to you.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" To be honest, I came close\nto giving up...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" But we're back together\nagain...#W\nIt's happiness beyond words...") }, + { 0x2e, 0x15, 0x0005, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" We owe you so much\ngratitude! Thank you!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0001, 0x00000009, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, now, that's OK.#W\nIt's even a little embarrassing when you\nput it that way, hahaha!")), + VARIANT_DEFAULT(_(" It's OK, really.#W\nWhen you put it that way, it's even a little\nembarrassing. Hahaha.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" However...\nWe have no money or any other way of\nrepaying your kindness.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" So, and it's the least we\ncan do...#W\nMay we join your rescue team?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh...?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" We would like to join #C5Team\n$t#R and help with your rescue\nwork.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Would that work?#W\nWould you be willing to accept us on\nyour rescue team?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, + ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" $n0, what do you\nsay?#W\nShould we let Latios and Latias join?")), + VARIANT_DEFAULT(_(" $n0, what should\nwe do?#W\nDo we let Latios and Latias join?")), + CHOICE(/* label */ 10, _("Yes.")), + CHOICE(/* label */ 11, _("No.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + LABEL(11), /* = 0x0b */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + FANFARE_PLAY2(455), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh?\nYou're really sure about that?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0001, 0x00000005, 0x00000000, NULL }, + ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" They're volunteering!\nDon't you think we should let them join?")), + CHOICE(/* label */ 10, _("Accept.")), + CHOICE(/* label */ 13, _("No, forget it.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + LABEL(13), /* = 0x0d */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(455), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x0d, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" It is you who decides.\nThe outcome is of no concern to me.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" However...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Latios and Latias are\nPokémon so rarely seen that they are\nconsidered mythical.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" If you part ways with them\nnow, you may never see them again.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Strike that.\nYou will never again see them.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Even knowing that...#W\nEven if you would never see them again,\nyou will still not accept them?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0, think good\nand hard about this.")), + VARIANT_DEFAULT(_(" $n0, give it good\nthought.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), + VARIANT(/* == */ 1, _(" Should we let Latios and\nLatias join?")), + VARIANT_DEFAULT(_(" Do we let Latios and Latias\njoin?")), + CHOICE(/* label */ 10, _("Yes.")), + CHOICE(/* label */ 11, _("No.")), + LABEL(10), /* = 0x0a */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000009, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Done deal!")), + VARIANT(/* == */ 1, _(" You're our fellow members\nfrom now on! Welcome aboard!")), + VARIANT_DEFAULT(_(" Done!")), + VARIANT_DEFAULT(_(" You're our fellow members\nfrom now on. Great to have you!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0005, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Thanks for having us!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0006, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Delighted to join!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+And thus...") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+#C5Team $t#R was\n#+joined by $n5 and $n6!") }, + BGM_STOP, + FANFARE_PLAY(204), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n5 and $n6\n#+became team members!") }, + { 0xe1, 0x00, 0x00cc, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x24, 0x0000, 0x00000000, 0x00000000, NULL }, + ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to $n5?")), + CHOICE(/* label */ 17, _("*Yes.")), + CHOICE(/* label */ 18, _("No.")), + LABEL(17), /* = 0x11 */ + { 0x3d, 0x00, 0x0000, -0x00000001, 0x00000000, NULL }, + LABEL(18), /* = 0x12 */ + { 0x3b, 0x25, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x26, 0x0000, 0x00000000, 0x00000000, NULL }, + ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to $n6?")), + CHOICE(/* label */ 19, _("*Yes.")), + CHOICE(/* label */ 20, _("No.")), + LABEL(19), /* = 0x13 */ + { 0x3d, 0x00, 0x0000, -0x00000001, 0x00000000, NULL }, + LABEL(20), /* = 0x14 */ + { 0x3b, 0x27, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs1_g49_s0_lives1_dlg0[] = { /* 0x8176dcc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(30), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(SHOCK_FUNC), + { 0xe2, 0x00, 0x01d1, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 1), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 1), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs1_g49_s0_lives2_dlg0[] = { /* 0x817708c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 1), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 1), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs1_g49_s0_lives3_dlg0[] = { /* 0x817725c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 1), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 1), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs1_g49_s0_lives4_dlg0[] = { /* 0x817742c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0500, -0x00000008, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 1), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 1), + { 0x6a, 0x00, 0x0100, -0x00000010, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000010, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + { 0x91, 0x04, 0x0002, 0x00000007, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs1_g49_s0_lives5_dlg0[] = { /* 0x817755c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, -0x00000010, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x6a, 0x00, 0x0100, -0x00000008, 0x00000000, NULL }, + { 0x54, 0x00, 0x0018, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, -0x00000008, 0x00000008, NULL }, + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0200, -0x00000008, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x54, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000008, -0x00000008, NULL }, + { 0x91, 0x01, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000008, -0x00000008, NULL }, + { 0x91, 0x01, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000008, -0x00000008, NULL }, + { 0x91, 0x01, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000008, -0x00000008, NULL }, + { 0x91, 0x01, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000008, 0x00000008, NULL }, + { 0x91, 0x01, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000008, 0x00000008, NULL }, + { 0x91, 0x01, 0x0001, 0x00000006, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000008, 0x00000008, NULL }, + { 0x91, 0x01, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000008, 0x00000008, NULL }, + { 0x91, 0x01, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0200, 0x00000008, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g49_s0_lives6_dlg0[] = { /* 0x817785c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000010, 0x00000000, NULL }, + WAIT(30), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x54, 0x00, 0x0018, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000010, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(455), + { 0x54, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000008, 0x00000008, NULL }, + { 0x91, 0x01, 0x0001, 0x00000007, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000008, 0x00000008, NULL }, + { 0x91, 0x01, 0x0001, 0x00000006, 0x00000000, NULL }, + FANFARE_PLAY2(457), + { 0x62, 0x00, 0x0100, -0x00000008, 0x00000008, NULL }, + { 0x91, 0x01, 0x0001, 0x00000005, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000008, 0x00000008, NULL }, + { 0x91, 0x01, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000008, -0x00000008, NULL }, + { 0x91, 0x01, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, -0x00000008, -0x00000008, NULL }, + { 0x91, 0x01, 0x0001, 0x00000002, 0x00000000, NULL }, + FANFARE_PLAY2(457), + { 0x62, 0x00, 0x0100, 0x00000008, -0x00000008, NULL }, + { 0x91, 0x01, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x62, 0x00, 0x0100, 0x00000008, -0x00000008, NULL }, + { 0x91, 0x01, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs1_g50_s0_lives0_dlg2[] = { /* 0x8177b2c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + SET_ARRAYVAL(EVENT_S07E01, 0, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hey, have you heard?\nAbout the #CDBuried Relic#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" They're rumoring that there\nare treasures in there.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And they say the treasures\naren't just lying around on the ground.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Know what they're saying?#W\nThey're saying that treasures are even\nembedded in the walls!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you knock down the walls,\nthere might be treasures galore!#W\nSounds really enticing, eh?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I think Shiftry knows where\nthe #CDBuried Relic#R is.") }, + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs1_g50_s0_lives1_dlg2[] = { /* 0x8177da0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + SET_ARRAYVAL(EVENT_S07E01, 1, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I heard rumors that\nPokémon from ancient times live in the\n#CDBuried Relic#R.") }, + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs1_g50_s0_lives2_dlg2[] = { /* 0x8177e60 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + SET_ARRAYVAL(EVENT_S07E01, 2, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I've heard that there are\ntreasures to be found in the relic.#W\nI wonder how much is true?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But, I must admit...#W\nI do get a certain thrill from it!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I guess there's a sense of\ndrama and adventure about it.") }, + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs1_g50_s0_lives3_dlg0[] = { /* 0x8177fcc */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x01, -0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g50_s0_lives3_dlg2[] = { /* 0x817803c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + SET_ARRAYVAL(EVENT_S07E01, 4, 1), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What's that?\nWhere is the #CDBuried Relic#R?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The #CDBuried Relic#R is deep\nin the jungle to the southeast.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Are you dreaming about\nthe treasures too?") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Kukukuh...#W Me too!#W\nBest of luck, compadre!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMPIF_SCENE_GT(SCENARIO_SUB7, 49, 2, /* to label */ 1), + WAIT(30), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Leaving aside the disturbing fact that\n#+$n1 made them compadres...") }, + FANFARE_PLAY(205), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0's team gained\n#+access to the #CDBuried Relic#R!") }, + { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMPIF_SCENE_GT(SCENARIO_SUB7, 49, 2, /* to label */ 1), + { 0xaf, 0x01, 0x001b, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB7, 49, 3), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(END_TALK), +}; + + + +static const struct ScriptCommand s_gs1_g50_s0_lives3_dlg3[] = { /* 0x8178340 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x8d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005d, 0x00000000, NULL }, + WAIT(60), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs1_g50_s0_lives4_dlg2[] = { /* 0x8178410 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_S07E01, 5, /* to label */ 0), + SET_ARRAYVAL(EVENT_S07E01, 5, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It seems talk of the relic\nis on everyone's lips today!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you find any\ntreasures, please do sell them to me.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And now...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs1_g50_s0_lives5_dlg2[] = { /* 0x8178564 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_S07E01, 6, /* to label */ 0), + SET_ARRAYVAL(EVENT_S07E01, 6, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, isn't it exciting?#W\nWhy, I wouldn't mind closing up the shop\nso I could go treasure hunting!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And now...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs1_g50_s0_lives6_dlg2[] = { /* 0x8178690 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_S07E01, 7, /* to label */ 0), + SET_ARRAYVAL(EVENT_S07E01, 7, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you find a fortune in the\nrelic, save it here with me!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs1_g50_s0_lives7_dlg2[] = { /* 0x8178780 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_S07E01, 8, /* to label */ 0), + SET_ARRAYVAL(EVENT_S07E01, 8, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wonder what kinds of\nfriends are in the #CDBuried Relic#R?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs1_g50_s0_lives8_dlg2[] = { /* 0x8178870 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_S07E01, 9, /* to label */ 0), + SET_ARRAYVAL(EVENT_S07E01, 9, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You're going too, aren't you?\nTo the #CDBuried Relic#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" This mama's behind you all\nthe way! Go for it!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" OK...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs1_g50_s0_lives9_dlg2[] = { /* 0x81789bc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_S07E01, 10, /* to label */ 0), + SET_ARRAYVAL(EVENT_S07E01, 10, 1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What treasures can be\nfound in the #CDBuried Relic#R, I wonder?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It makes me drool thinking\nwhat I could swallow in a place like that.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs1_g51_s0_lives0_dlg2[] = { /* 0x8178b08 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I think Gengar headed off\nto #CDMt. Freeze#R.") }, + { 0x2e, 0x02, 0x0001, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I have heard it is a place\nthat is very difficult.#W\nWill he be OK?") }, + SCENARIO_CALC(SCENARIO_SUB9, 53, 4), + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs1_g51_s0_lives1_dlg2[] = { /* 0x8178c10 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Gengar wants to meet with\nNinetales. That's what I think.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What he means to do when\nhe does meet...I don't know.") }, + SCENARIO_CALC(SCENARIO_SUB9, 53, 4), + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs1_g52_s0_lives0_dlg2[] = { /* 0x8178d0c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I have done a lot of\nthinking...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I would like to join #C5Team \n$t#R and help on rescues.") }, + ASK3(FALSE, /*default*/ -1, /* speaker */ 1, _(" Please, may I become\na member?")), + CHOICE(/* label */ 2, _("Yes.")), + CHOICE(/* label */ 3, _("No.")), + LABEL(2), /* = 0x02 */ + { 0x3b, 0x30, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 4), + { 0x2e, 0x02, 0x0001, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Thank you!#W\nI promise to do my best for the team!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY(204), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n1 became the\n#+rescue team's newest member!") }, + { 0xe1, 0x00, 0x00cc, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x3b, 0x31, 0x0000, 0x00000000, 0x00000000, NULL }, + ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to $n1?")), + CHOICE(/* label */ 6, _("*Yes.")), + CHOICE(/* label */ 7, _("No.")), + LABEL(6), /* = 0x06 */ + { 0x3d, 0x00, 0x0000, -0x00000001, 0x00000000, NULL }, + LABEL(7), /* = 0x07 */ + { 0x3b, 0x32, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB9, 55, 3), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + CANCEL_ENTITIES(52, -1), + WAIT(30), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), + LABEL(4), /* = 0x04 */ + { 0x2e, 0x02, 0x0001, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yes!\nThank you!") }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...However, there seems to\nbe no space for me in my Friend Area...#W\nThis is disappointing...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I could join your rescue\nteam if there were less Pokémon in\n#C4Sky Blue Plains#R...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Please tell me then.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), + LABEL(3), /* = 0x03 */ + { 0x2e, 0x15, 0x0001, 0x00000042, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...I see.#W\nThis is disappointing...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct GroundLivesData s_gs1_g0_s1_lives[] = { /* 0x8179214 */ + /* 0 */ { 0, 2, 0, 0, { 8, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 2, 0, 0, { 5, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g0_s2_lives[] = { /* 0x8179244 */ + /* 0 */ { 0, 0, 0, 0, { 64, 9, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g0_s2_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 64, 7, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g0_s2_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g0_s3_lives[] = { /* 0x8179274 */ + /* 0 */ { 0, 6, 0, 0, { 112, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 6, 0, 0, { 115, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g0_s4_lives[] = { /* 0x81792a4 */ + /* 0 */ { 0, 4, 0, 0, { 66, 83, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 66, 85, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g0_s7_lives[] = { /* 0x81792d4 */ + /* 0 */ { 0, 0, 0, 0, { 64, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g0_s7_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 64, 30, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g0_s7_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g0_s8_lives[] = { /* 0x8179304 */ + /* 0 */ { 0, 0, 0, 0, { 8, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g0_s8_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 5, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g0_s8_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g1_s0_lives[] = { /* 0x8179334 */ + /* 0 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 74, 0, 0, 0, { 82, 60, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 75, 0, 0, 0, { 41, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g1_s0_lives4_dlg2, + } }, + /* 5 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g1_s0_lives5_dlg2, + } }, + /* 6 */ { 85, 7, 0, 0, { 69, 36, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g1_s0_lives6_dlg2, + } }, + /* 7 */ { 77, 5, 0, 0, { 71, 44, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g1_s0_lives7_dlg2, + } }, + /* 8 */ { 81, 0, 0, 0, { 58, 44, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g1_s0_lives8_dlg2, + } }, + /* 9 */ { 89, 2, 0, 0, { 57, 33, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g1_s0_lives9_dlg2, + } }, + /* 10 */ { 90, 6, 0, 0, { 61, 33, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g1_s0_lives10_dlg2, + } }, + /* 11 */ { 88, 0, 0, 0, { 90, 37, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g1_s0_lives11_dlg2, + } }, + /* 12 */ { 61, 0, 0, 0, { 58, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g1_s0_lives12_dlg2, + } }, + /* 13 */ { 62, 0, 0, 0, { 61, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g1_s0_lives13_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g3_s0_lives[] = { /* 0x8179484 */ + /* 0 */ { 127, 0, 0, 0, { 109, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g3_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g4_s0_lives[] = { /* 0x817949c */ + /* 0 */ { 127, 0, 0, 0, { 115, 39, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g4_s0_lives0_dlg1, + [2] = s_gs1_g4_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g4_s1_lives[] = { /* 0x81794b4 */ + /* 0 */ { 0, 0, 0, 0, { 115, 39, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g4_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 115, 39, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g4_s1_lives1_dlg0, + } }, + /* 2 */ { 127, 6, 0, 0, { 115, 39, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g4_s1_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g4_s2_lives[] = { /* 0x81794fc */ + /* 0 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g4_s2_lives0_dlg0, + } }, + /* 1 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g4_s2_lives1_dlg0, + } }, + /* 2 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g4_s2_lives2_dlg0, + } }, + /* 3 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g4_s2_lives3_dlg0, + } }, + /* 4 */ { 85, 7, 0, 0, { 69, 36, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g4_s2_lives4_dlg0, + } }, + /* 5 */ { 77, 5, 0, 0, { 71, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g4_s2_lives5_dlg0, + } }, + /* 6 */ { 81, 0, 0, 0, { 58, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g4_s2_lives6_dlg0, + } }, + /* 7 */ { 89, 2, 0, 0, { 57, 33, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g4_s2_lives7_dlg0, + } }, + /* 8 */ { 90, 6, 0, 0, { 61, 33, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g4_s2_lives8_dlg0, + } }, + /* 9 */ { 88, 0, 0, 0, { 90, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g4_s2_lives9_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g4_s3_lives[] = { /* 0x81795ec */ + /* 0 */ { 127, 6, 0, 0, { 115, 39, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g4_s3_lives0_dlg0, + [1] = s_gs1_g4_s3_lives0_dlg1, + [2] = s_gs1_g4_s3_lives0_dlg2, + [3] = s_gs1_g4_s3_lives0_dlg3, + } }, +}; + +static const struct GroundLivesData s_gs1_g4_s4_lives[] = { /* 0x8179604 */ + /* 0 */ { 127, 6, 0, 0, { 115, 39, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g4_s4_lives0_dlg1, + [2] = s_gs1_g4_s4_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g5_s0_lives[] = { /* 0x817961c */ + /* 0 */ { 127, 0, 0, 0, { 115, 39, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g5_s0_lives0_dlg1, + [2] = s_gs1_g5_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g5_s1_lives[] = { /* 0x8179634 */ + /* 0 */ { 0, 0, 0, 0, { 115, 39, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g5_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 115, 39, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g5_s1_lives1_dlg0, + } }, + /* 2 */ { 127, 6, 0, 0, { 115, 39, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g5_s1_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g5_s2_lives[] = { /* 0x817967c */ + /* 0 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g5_s2_lives0_dlg0, + } }, + /* 1 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g5_s2_lives1_dlg0, + } }, + /* 2 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g5_s2_lives2_dlg0, + } }, + /* 3 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g5_s2_lives3_dlg0, + } }, + /* 4 */ { 85, 7, 0, 0, { 69, 36, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g5_s2_lives4_dlg0, + } }, + /* 5 */ { 77, 5, 0, 0, { 71, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g5_s2_lives5_dlg0, + } }, + /* 6 */ { 81, 0, 0, 0, { 58, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g5_s2_lives6_dlg0, + } }, + /* 7 */ { 89, 2, 0, 0, { 57, 33, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g5_s2_lives7_dlg0, + } }, + /* 8 */ { 90, 6, 0, 0, { 61, 33, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g5_s2_lives8_dlg0, + } }, + /* 9 */ { 88, 0, 0, 0, { 90, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g5_s2_lives9_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g5_s3_lives[] = { /* 0x817976c */ + /* 0 */ { 127, 6, 0, 0, { 115, 39, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g5_s3_lives0_dlg1, + [2] = s_gs1_g5_s3_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g5_s4_lives[] = { /* 0x8179784 */ + /* 0 */ { 0, 0, 0, 0, { 115, 39, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g5_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 115, 39, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g5_s4_lives1_dlg0, + } }, + /* 2 */ { 127, 6, 0, 0, { 115, 39, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g5_s4_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g5_s5_lives[] = { /* 0x81797cc */ + /* 0 */ { 127, 6, 0, 0, { 115, 39, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g5_s5_lives0_dlg1, + [2] = s_gs1_g5_s5_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g5_s6_lives[] = { /* 0x81797e4 */ + /* 0 */ { 127, 2, 0, 0, { 115, 39, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g5_s6_lives0_dlg1, + [2] = s_gs1_g5_s6_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g6_s0_lives[] = { /* 0x81797fc */ + /* 0 */ { 0, 2, 0, 0, { 5, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g6_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 2, 0, 0, { 8, 39, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g6_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g7_s0_lives[] = { /* 0x817982c */ + /* 0 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g7_s0_lives0_dlg2, + } }, + /* 1 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g7_s0_lives1_dlg2, + } }, + /* 2 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g7_s0_lives2_dlg2, + } }, + /* 3 */ { 74, 0, 0, 0, { 82, 60, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g7_s0_lives3_dlg2, + } }, + /* 4 */ { 75, 0, 0, 0, { 41, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g7_s0_lives4_dlg2, + } }, + /* 5 */ { 77, 0, 0, 0, { 60, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g7_s0_lives5_dlg1, + [2] = s_gs1_g7_s0_lives5_dlg2, + } }, + /* 6 */ { 79, 3, 0, 0, { 62, 45, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g7_s0_lives6_dlg1, + [2] = s_gs1_g7_s0_lives6_dlg2, + } }, + /* 7 */ { 80, 6, 0, 0, { 69, 39, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g7_s0_lives7_dlg2, + [3] = s_gs1_g7_s0_lives7_dlg3, + } }, +}; + +static const struct GroundLivesData s_gs1_g7_s1_lives[] = { /* 0x81798ec */ + /* 0 */ { 0, 2, 0, 0, { 5, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g7_s1_lives0_dlg0, + } }, + /* 1 */ { 7, 2, 0, 0, { 8, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g7_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g8_s0_lives[] = { /* 0x817991c */ + /* 0 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g8_s0_lives0_dlg2, + } }, + /* 1 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g8_s0_lives1_dlg2, + } }, + /* 2 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g8_s0_lives2_dlg2, + } }, + /* 3 */ { 74, 0, 0, 0, { 82, 60, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g8_s0_lives3_dlg2, + } }, + /* 4 */ { 75, 0, 0, 0, { 41, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g8_s0_lives4_dlg2, + } }, + /* 5 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g8_s0_lives5_dlg2, + } }, + /* 6 */ { 77, 0, 0, 0, { 75, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g8_s0_lives6_dlg1, + [2] = s_gs1_g8_s0_lives6_dlg2, + } }, + /* 7 */ { 79, 0, 0, 0, { 65, 46, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g8_s0_lives7_dlg1, + [2] = s_gs1_g8_s0_lives7_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g8_s1_lives[] = { /* 0x81799dc */ + /* 0 */ { 0, 2, 0, 0, { 5, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g8_s1_lives0_dlg0, + } }, + /* 1 */ { 7, 2, 0, 0, { 8, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g8_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g8_s2_lives[] = { /* 0x8179a0c */ + /* 0 */ { 78, 6, 0, 0, { 70, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g8_s2_lives0_dlg0, + } }, + /* 1 */ { 85, 2, 0, 0, { 65, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g8_s2_lives1_dlg0, + } }, + /* 2 */ { 86, 2, 0, 0, { 62, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g8_s2_lives2_dlg0, + } }, + /* 3 */ { 87, 2, 0, 0, { 62, 42, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g8_s2_lives3_dlg0, + } }, + /* 4 */ { 77, 6, 0, 0, { 75, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g8_s2_lives4_dlg0, + } }, + /* 5 */ { 79, 4, 0, 0, { 65, 46, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g8_s2_lives5_dlg0, + } }, + /* 6 */ { 54, 0, 0, 0, { 62, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g8_s2_lives6_dlg0, + } }, + /* 7 */ { 80, 0, 0, 0, { 66, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g8_s2_lives7_dlg0, + } }, + /* 8 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g8_s2_lives8_dlg2, + } }, + /* 9 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g8_s2_lives9_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g9_s0_lives[] = { /* 0x8179afc */ + /* 0 */ { 0, 4, 0, 0, { 97, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g9_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 97, 39, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g9_s0_lives1_dlg0, + } }, + /* 2 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g9_s0_lives2_dlg0, + [2] = s_gs1_g9_s0_lives2_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g9_s1_lives[] = { /* 0x8179b44 */ + /* 0 */ { 61, 6, 0, 0, { 79, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g9_s1_lives0_dlg0, + } }, + /* 1 */ { 62, 6, 0, 0, { 77, 39, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g9_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g10_s0_lives[] = { /* 0x8179b74 */ + /* 0 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, {} }, + /* 1 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, {} }, + /* 2 */ { 0, 6, 0, 0, { 79, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g10_s0_lives2_dlg0, + } }, + /* 3 */ { 7, 2, 0, 0, { 79, 39, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g10_s0_lives3_dlg0, + } }, + /* 4 */ { 80, 0, 0, 0, { 66, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g10_s0_lives4_dlg0, + } }, + /* 5 */ { 79, 4, 0, 0, { 65, 46, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g10_s0_lives5_dlg0, + } }, + /* 6 */ { 54, 0, 0, 0, { 62, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g10_s0_lives6_dlg0, + } }, + /* 7 */ { 78, 6, 0, 0, { 70, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g10_s0_lives7_dlg0, + } }, + /* 8 */ { 85, 2, 0, 0, { 65, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g10_s0_lives8_dlg0, + } }, + /* 9 */ { 86, 6, 0, 0, { 62, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g10_s0_lives9_dlg0, + } }, + /* 10 */ { 87, 2, 0, 0, { 62, 42, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g10_s0_lives10_dlg0, + } }, + /* 11 */ { 77, 6, 0, 0, { 75, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g10_s0_lives11_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g10_s1_lives[] = { /* 0x8179c94 */ + /* 0 */ { 88, 2, 0, 0, { 47, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g10_s1_lives0_dlg0, + } }, + /* 1 */ { 89, 2, 0, 0, { 44, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g10_s1_lives1_dlg0, + } }, + /* 2 */ { 90, 2, 0, 0, { 44, 42, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g10_s1_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g10_s2_lives[] = { /* 0x8179cdc */ + /* 0 */ { 91, 4, 0, 0, { 62, 60, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g10_s2_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g11_s0_lives[] = { /* 0x8179cf4 */ + /* 0 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g11_s0_lives0_dlg2, + } }, + /* 1 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g11_s0_lives1_dlg2, + } }, + /* 2 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g11_s0_lives2_dlg2, + } }, + /* 3 */ { 74, 0, 0, 0, { 82, 60, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g11_s0_lives3_dlg2, + } }, + /* 4 */ { 75, 0, 0, 0, { 41, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g11_s0_lives4_dlg2, + } }, + /* 5 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g11_s0_lives5_dlg2, + } }, + /* 6 */ { 77, 0, 0, 0, { 57, 46, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g11_s0_lives6_dlg1, + [2] = s_gs1_g11_s0_lives6_dlg2, + } }, + /* 7 */ { 79, 6, 0, 0, { 67, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g11_s0_lives7_dlg1, + [2] = s_gs1_g11_s0_lives7_dlg2, + [3] = s_gs1_g11_s0_lives7_dlg3, + } }, + /* 8 */ { 80, 0, 0, 0, { 68, 30, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g11_s0_lives8_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g12_s0_lives[] = { /* 0x8179dcc */ + /* 0 */ { 78, 6, 0, 0, { 70, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g12_s0_lives0_dlg0, + } }, + /* 1 */ { 85, 2, 0, 0, { 65, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g12_s0_lives1_dlg0, + } }, + /* 2 */ { 86, 2, 0, 0, { 62, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g12_s0_lives2_dlg0, + } }, + /* 3 */ { 87, 2, 0, 0, { 62, 42, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g12_s0_lives3_dlg0, + } }, + /* 4 */ { 77, 6, 0, 0, { 75, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g12_s0_lives4_dlg0, + } }, + /* 5 */ { 80, 0, 0, 0, { 66, 33, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g12_s0_lives5_dlg0, + } }, + /* 6 */ { 79, 4, 0, 0, { 65, 46, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g12_s0_lives6_dlg0, + } }, + /* 7 */ { 54, 0, 0, 0, { 62, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g12_s0_lives7_dlg0, + } }, + /* 8 */ { 0, 6, 0, 0, { 76, 39, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g12_s0_lives8_dlg0, + } }, + /* 9 */ { 34, 6, 0, 0, { 76, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g12_s0_lives9_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g13_s0_lives[] = { /* 0x8179ebc */ + /* 0 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g13_s0_lives0_dlg2, + } }, + /* 1 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g13_s0_lives1_dlg2, + } }, + /* 2 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g13_s0_lives2_dlg2, + } }, + /* 3 */ { 74, 0, 0, 0, { 82, 60, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g13_s0_lives3_dlg2, + } }, + /* 4 */ { 75, 0, 0, 0, { 41, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g13_s0_lives4_dlg2, + } }, + /* 5 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g13_s0_lives5_dlg2, + } }, + /* 6 */ { 77, 0, 0, 0, { 77, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g13_s0_lives6_dlg1, + [2] = s_gs1_g13_s0_lives6_dlg2, + } }, + /* 7 */ { 79, 0, 0, 0, { 59, 47, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g13_s0_lives7_dlg1, + [2] = s_gs1_g13_s0_lives7_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g14_s0_lives[] = { /* 0x8179f7c */ + /* 0 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g14_s0_lives0_dlg2, + } }, + /* 1 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g14_s0_lives1_dlg2, + } }, + /* 2 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g14_s0_lives2_dlg2, + } }, + /* 3 */ { 74, 0, 0, 0, { 82, 60, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g14_s0_lives3_dlg2, + } }, + /* 4 */ { 75, 0, 0, 0, { 41, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g14_s0_lives4_dlg2, + } }, + /* 5 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g14_s0_lives5_dlg2, + } }, + /* 6 */ { 77, 0, 0, 0, { 77, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g14_s0_lives6_dlg1, + [2] = s_gs1_g14_s0_lives6_dlg2, + } }, + /* 7 */ { 79, 0, 0, 0, { 59, 47, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g14_s0_lives7_dlg1, + [2] = s_gs1_g14_s0_lives7_dlg2, + } }, + /* 8 */ { 80, 0, 0, 0, { 59, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g14_s0_lives8_dlg1, + [2] = s_gs1_g14_s0_lives8_dlg2, + } }, + /* 9 */ { 78, 3, 0, 0, { 57, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g14_s0_lives9_dlg1, + [2] = s_gs1_g14_s0_lives9_dlg2, + } }, + /* 10 */ { 95, 5, 0, 0, { 61, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g14_s0_lives10_dlg1, + [2] = s_gs1_g14_s0_lives10_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g15_s0_lives[] = { /* 0x817a084 */ + /* 0 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g15_s0_lives0_dlg2, + } }, + /* 1 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g15_s0_lives1_dlg2, + } }, + /* 2 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g15_s0_lives2_dlg2, + } }, + /* 3 */ { 74, 0, 0, 0, { 82, 60, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g15_s0_lives3_dlg2, + } }, + /* 4 */ { 75, 0, 0, 0, { 41, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g15_s0_lives4_dlg2, + } }, + /* 5 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g15_s0_lives5_dlg2, + } }, + /* 6 */ { 77, 2, 0, 0, { 70, 45, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g15_s0_lives6_dlg1, + [2] = s_gs1_g15_s0_lives6_dlg2, + } }, + /* 7 */ { 79, 6, 0, 0, { 59, 47, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g15_s0_lives7_dlg1, + [2] = s_gs1_g15_s0_lives7_dlg2, + } }, + /* 8 */ { 78, 0, 0, 0, { 57, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g15_s0_lives8_dlg2, + } }, + /* 9 */ { 95, 0, 0, 0, { 61, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g15_s0_lives9_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g16_s0_lives[] = { /* 0x817a174 */ + /* 0 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g16_s0_lives0_dlg2, + } }, + /* 1 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g16_s0_lives1_dlg2, + } }, + /* 2 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g16_s0_lives2_dlg2, + } }, + /* 3 */ { 74, 0, 0, 0, { 82, 60, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g16_s0_lives3_dlg2, + } }, + /* 4 */ { 75, 0, 0, 0, { 41, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g16_s0_lives4_dlg2, + } }, + /* 5 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g16_s0_lives5_dlg2, + } }, + /* 6 */ { 77, 2, 0, 0, { 63, 40, 0, 0 }, {} }, + /* 7 */ { 79, 7, 0, 0, { 67, 37, CPOS_HALFTILE, CPOS_HALFTILE }, {} }, + /* 8 */ { 80, 5, 0, 0, { 67, 41, CPOS_HALFTILE, CPOS_HALFTILE }, {} }, +}; + +static const struct GroundLivesData s_gs1_g17_s0_lives[] = { /* 0x817a24c */ + /* 0 */ { 0, 2, 0, 0, { 46, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g17_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 2, 0, 0, { 41, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g17_s0_lives1_dlg0, + } }, + /* 2 */ { 77, 2, 0, 0, { 63, 40, 0, 0 }, { + [0] = s_gs1_g17_s0_lives2_dlg0, + } }, + /* 3 */ { 79, 7, 0, 0, { 67, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g17_s0_lives3_dlg0, + } }, + /* 4 */ { 80, 5, 0, 0, { 67, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g17_s0_lives4_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g18_s0_lives[] = { /* 0x817a2c4 */ + /* 0 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g18_s0_lives0_dlg2, + } }, + /* 1 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g18_s0_lives1_dlg2, + } }, + /* 2 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g18_s0_lives2_dlg2, + } }, + /* 3 */ { 74, 0, 0, 0, { 82, 60, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g18_s0_lives3_dlg2, + } }, + /* 4 */ { 75, 0, 0, 0, { 41, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g18_s0_lives4_dlg2, + } }, + /* 5 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g18_s0_lives5_dlg2, + } }, + /* 6 */ { 77, 2, 0, 0, { 63, 40, 0, 0 }, { + [2] = s_gs1_g18_s0_lives6_dlg2, + } }, + /* 7 */ { 79, 7, 0, 0, { 67, 38, 0, 0 }, { + [2] = s_gs1_g18_s0_lives7_dlg2, + } }, + /* 8 */ { 80, 5, 0, 0, { 67, 42, 0, 0 }, { + [2] = s_gs1_g18_s0_lives8_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g19_s0_lives[] = { /* 0x817a39c */ + /* 0 */ { 0, 2, 0, 0, { 5, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g19_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 2, 0, 0, { 8, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g19_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g20_s0_lives[] = { /* 0x817a3cc */ + /* 0 */ { 0, 2, 0, 0, { 7, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g20_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 2, 0, 0, { 4, 39, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g20_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g21_s0_lives[] = { /* 0x817a3fc */ + /* 0 */ { 0, 2, 0, 0, { 34, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g21_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 2, 0, 0, { 34, 39, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g21_s0_lives1_dlg0, + } }, + /* 2 */ { 91, 0, 0, 0, { 65, 39, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g21_s0_lives2_dlg0, + } }, + /* 3 */ { 54, 3, 0, 0, { 60, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g21_s0_lives3_dlg0, + } }, + /* 4 */ { 77, 5, 0, 0, { 69, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g21_s0_lives4_dlg0, + } }, + /* 5 */ { 79, 3, 0, 0, { 59, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g21_s0_lives5_dlg0, + } }, + /* 6 */ { 80, 3, 0, 0, { 61, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g21_s0_lives6_dlg0, + } }, + /* 7 */ { 72, 7, 0, 0, { 70, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g21_s0_lives7_dlg0, + } }, + /* 8 */ { 75, 5, 0, 0, { 71, 47, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g21_s0_lives8_dlg0, + } }, + /* 9 */ { 73, 6, 0, 0, { 77, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g21_s0_lives9_dlg0, + } }, + /* 10 */ { 76, 4, 0, 0, { 63, 48, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g21_s0_lives10_dlg0, + } }, + /* 11 */ { 70, 6, 0, 0, { 72, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g21_s0_lives11_dlg0, + } }, + /* 12 */ { 71, 6, 0, 0, { 72, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g21_s0_lives12_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g22_s0_lives[] = { /* 0x817a534 */ + /* 0 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [1] = s_gs1_g22_s0_lives0_dlg1, + [2] = s_gs1_g22_s0_lives0_dlg2, + [3] = s_gs1_g22_s0_lives0_dlg3, + } }, + /* 1 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [1] = s_gs1_g22_s0_lives1_dlg1, + [2] = s_gs1_g22_s0_lives1_dlg2, + [3] = s_gs1_g22_s0_lives1_dlg3, + } }, + /* 2 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g22_s0_lives2_dlg1, + [2] = s_gs1_g22_s0_lives2_dlg2, + [3] = s_gs1_g22_s0_lives2_dlg3, + } }, + /* 3 */ { 74, 0, 0, 0, { 82, 60, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g22_s0_lives3_dlg1, + [2] = s_gs1_g22_s0_lives3_dlg2, + [3] = s_gs1_g22_s0_lives3_dlg3, + } }, + /* 4 */ { 75, 0, 0, 0, { 41, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g22_s0_lives4_dlg1, + [2] = s_gs1_g22_s0_lives4_dlg2, + [3] = s_gs1_g22_s0_lives4_dlg3, + } }, + /* 5 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g22_s0_lives5_dlg1, + [2] = s_gs1_g22_s0_lives5_dlg2, + [3] = s_gs1_g22_s0_lives5_dlg3, + } }, +}; + +static const struct GroundLivesData s_gs1_g23_s0_lives[] = { /* 0x817a5c4 */ + /* 0 */ { 0, 2, 0, 0, { 43, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g23_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 2, 0, 0, { 43, 42, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g23_s0_lives1_dlg0, + } }, + /* 2 */ { 83, 2, 0, 0, { 40, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g23_s0_lives2_dlg0, + } }, + /* 3 */ { 91, 0, 0, 0, { 65, 39, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g23_s0_lives3_dlg0, + } }, + /* 4 */ { 85, 6, 0, 0, { 70, 39, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g23_s0_lives4_dlg0, + } }, + /* 5 */ { 77, 4, 0, 0, { 65, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g23_s0_lives5_dlg0, + } }, + /* 6 */ { 80, 5, 0, 0, { 70, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g23_s0_lives6_dlg0, + } }, + /* 7 */ { 54, 3, 0, 0, { 60, 43, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g23_s0_lives7_dlg0, + } }, + /* 8 */ { 93, 2, 0, 0, { 46, 39, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g23_s0_lives8_dlg0, + } }, + /* 9 */ { 92, 1, 0, 0, { 62, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g23_s0_lives9_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g23_s1_lives[] = { /* 0x817a6b4 */ + /* 0 */ { 55, 0, 0, 0, { 65, 44, CPOS_HALFTILE, 0 }, { + [0] = s_gs1_g23_s1_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g24_s0_lives[] = { /* 0x817a6cc */ + /* 0 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g24_s0_lives0_dlg2, + } }, + /* 1 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g24_s0_lives1_dlg2, + } }, + /* 2 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g24_s0_lives2_dlg2, + } }, + /* 3 */ { 74, 0, 0, 0, { 82, 60, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g24_s0_lives3_dlg2, + } }, + /* 4 */ { 75, 0, 0, 0, { 41, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g24_s0_lives4_dlg2, + } }, + /* 5 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g24_s0_lives5_dlg2, + } }, + /* 6 */ { 77, 5, 0, 0, { 70, 45, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g24_s0_lives6_dlg1, + [2] = s_gs1_g24_s0_lives6_dlg2, + } }, + /* 7 */ { 79, 3, 0, 0, { 59, 47, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g24_s0_lives7_dlg1, + [2] = s_gs1_g24_s0_lives7_dlg2, + } }, + /* 8 */ { 85, 6, 0, 0, { 65, 36, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g24_s0_lives8_dlg1, + [2] = s_gs1_g24_s0_lives8_dlg2, + } }, + /* 9 */ { 80, 0, 0, 0, { 68, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g24_s0_lives9_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g24_s1_lives[] = { /* 0x817a7bc */ + /* 0 */ { 0, 0, 0, 0, { 61, 30, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g24_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 61, 30, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g24_s1_lives1_dlg0, + } }, + /* 2 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g24_s1_lives2_dlg0, + [2] = s_gs1_g24_s1_lives2_dlg2, + } }, + /* 3 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g24_s1_lives3_dlg0, + [2] = s_gs1_g24_s1_lives3_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g25_s0_lives[] = { /* 0x817a81c */ + /* 0 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g25_s0_lives0_dlg2, + } }, + /* 1 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g25_s0_lives1_dlg2, + } }, + /* 2 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g25_s0_lives2_dlg2, + } }, + /* 3 */ { 74, 0, 0, 0, { 82, 60, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g25_s0_lives3_dlg2, + } }, + /* 4 */ { 75, 0, 0, 0, { 41, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g25_s0_lives4_dlg2, + } }, + /* 5 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g25_s0_lives5_dlg2, + } }, + /* 6 */ { 77, 0, 0, 0, { 70, 45, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g25_s0_lives6_dlg1, + [2] = s_gs1_g25_s0_lives6_dlg2, + } }, + /* 7 */ { 79, 0, 0, 0, { 59, 47, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g25_s0_lives7_dlg1, + [2] = s_gs1_g25_s0_lives7_dlg2, + } }, + /* 8 */ { 85, 0, 0, 0, { 65, 36, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g25_s0_lives8_dlg1, + [2] = s_gs1_g25_s0_lives8_dlg2, + } }, + /* 9 */ { 80, 0, 0, 0, { 68, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g25_s0_lives9_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g26_s0_lives[] = { /* 0x817a90c */ + /* 0 */ { 0, 2, 0, 0, { 38, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g26_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 2, 0, 0, { 35, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g26_s0_lives1_dlg0, + } }, + /* 2 */ { 77, 2, 0, 0, { 38, 39, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g26_s0_lives2_dlg0, + } }, + /* 3 */ { 85, 6, 0, 0, { 76, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g26_s0_lives3_dlg0, + } }, + /* 4 */ { 104, 2, 0, 0, { 63, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g26_s0_lives4_dlg0, + } }, + /* 5 */ { 105, 1, 0, 0, { 69, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g26_s0_lives5_dlg0, + } }, + /* 6 */ { 106, 3, 0, 0, { 67, 45, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g26_s0_lives6_dlg0, + } }, + /* 7 */ { 135, 1, 0, 0, { 64, 36, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g26_s0_lives7_dlg0, + } }, + /* 8 */ { 136, 1, 0, 0, { 61, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g26_s0_lives8_dlg0, + } }, + /* 9 */ { 137, 2, 0, 0, { 60, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g26_s0_lives9_dlg0, + } }, + /* 10 */ { 138, 1, 0, 0, { 65, 33, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g26_s0_lives10_dlg0, + } }, + /* 11 */ { 139, 2, 0, 0, { 64, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g26_s0_lives11_dlg0, + } }, + /* 12 */ { 140, 3, 0, 0, { 63, 46, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g26_s0_lives12_dlg0, + } }, + /* 13 */ { 141, 2, 0, 0, { 60, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g26_s0_lives13_dlg0, + } }, + /* 14 */ { 142, 2, 0, 0, { 67, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g26_s0_lives14_dlg0, + } }, + /* 15 */ { 143, 2, 0, 0, { 68, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g26_s0_lives15_dlg0, + } }, + /* 16 */ { 79, 3, 0, 0, { 70, 47, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g26_s0_lives16_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g27_s0_lives[] = { /* 0x817aaa4 */ + /* 0 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g27_s0_lives0_dlg2, + } }, + /* 1 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g27_s0_lives1_dlg2, + } }, + /* 2 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g27_s0_lives2_dlg2, + } }, + /* 3 */ { 74, 0, 0, 0, { 82, 60, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g27_s0_lives3_dlg2, + } }, + /* 4 */ { 75, 0, 0, 0, { 41, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g27_s0_lives4_dlg2, + } }, + /* 5 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g27_s0_lives5_dlg2, + } }, + /* 6 */ { 77, 0, 0, 0, { 72, 45, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g27_s0_lives6_dlg1, + [2] = s_gs1_g27_s0_lives6_dlg2, + } }, + /* 7 */ { 79, 0, 0, 0, { 59, 47, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g27_s0_lives7_dlg1, + [2] = s_gs1_g27_s0_lives7_dlg2, + } }, + /* 8 */ { 85, 0, 0, 0, { 62, 36, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g27_s0_lives8_dlg1, + [2] = s_gs1_g27_s0_lives8_dlg2, + } }, + /* 9 */ { 80, 0, 0, 0, { 68, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g27_s0_lives9_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g28_s0_lives[] = { /* 0x817ab94 */ + /* 0 */ { 0, 2, 0, 0, { 41, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g28_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 2, 0, 0, { 41, 39, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g28_s0_lives1_dlg0, + } }, + /* 2 */ { 85, 6, 0, 0, { 76, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g28_s0_lives2_dlg0, + } }, + /* 3 */ { 91, 0, 0, 0, { 64, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g28_s0_lives3_dlg0, + } }, + /* 4 */ { 104, 6, 0, 0, { 72, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g28_s0_lives4_dlg0, + } }, + /* 5 */ { 105, 6, 0, 0, { 72, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g28_s0_lives5_dlg0, + } }, + /* 6 */ { 106, 5, 0, 0, { 72, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g28_s0_lives6_dlg0, + } }, + /* 7 */ { 77, 2, 0, 0, { 57, 39, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g28_s0_lives7_dlg0, + } }, + /* 8 */ { 79, 3, 0, 0, { 66, 47, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g28_s0_lives8_dlg0, + } }, + /* 9 */ { 136, 1, 0, 0, { 61, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g28_s0_lives9_dlg0, + } }, + /* 10 */ { 137, 2, 0, 0, { 60, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g28_s0_lives10_dlg0, + } }, + /* 11 */ { 139, 2, 0, 0, { 64, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g28_s0_lives11_dlg0, + } }, + /* 12 */ { 140, 3, 0, 0, { 63, 46, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g28_s0_lives12_dlg0, + } }, + /* 13 */ { 141, 2, 0, 0, { 60, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g28_s0_lives13_dlg0, + } }, + /* 14 */ { 142, 1, 0, 0, { 68, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g28_s0_lives14_dlg0, + } }, + /* 15 */ { 143, 2, 0, 0, { 64, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g28_s0_lives15_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g29_s0_lives[] = { /* 0x817ad14 */ + /* 0 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g29_s0_lives0_dlg2, + } }, + /* 1 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g29_s0_lives1_dlg2, + } }, + /* 2 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g29_s0_lives2_dlg2, + } }, + /* 3 */ { 74, 0, 0, 0, { 82, 60, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g29_s0_lives3_dlg2, + } }, + /* 4 */ { 75, 0, 0, 0, { 41, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g29_s0_lives4_dlg2, + } }, + /* 5 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g29_s0_lives5_dlg2, + } }, + /* 6 */ { 77, 2, 0, 0, { 62, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g29_s0_lives6_dlg0, + [2] = s_gs1_g29_s0_lives6_dlg2, + } }, + /* 7 */ { 104, 6, 0, 0, { 65, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g29_s0_lives7_dlg0, + [2] = s_gs1_g29_s0_lives7_dlg2, + } }, + /* 8 */ { 79, 2, 0, 0, { 59, 47, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g29_s0_lives8_dlg0, + [2] = s_gs1_g29_s0_lives8_dlg2, + } }, + /* 9 */ { 105, 6, 0, 0, { 62, 47, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g29_s0_lives9_dlg0, + [2] = s_gs1_g29_s0_lives9_dlg2, + } }, + /* 10 */ { 85, 2, 0, 0, { 65, 43, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g29_s0_lives10_dlg0, + [2] = s_gs1_g29_s0_lives10_dlg2, + } }, + /* 11 */ { 106, 6, 0, 0, { 68, 43, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g29_s0_lives11_dlg0, + [2] = s_gs1_g29_s0_lives11_dlg2, + } }, + /* 12 */ { 80, 0, 0, 0, { 68, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g29_s0_lives12_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g29_s1_lives[] = { /* 0x817ae4c */ + /* 0 */ { 0, 0, 0, 0, { 61, 30, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g29_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 61, 30, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g29_s1_lives1_dlg0, + } }, + /* 2 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g29_s1_lives2_dlg0, + [2] = s_gs1_g29_s1_lives2_dlg2, + } }, + /* 3 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g29_s1_lives3_dlg0, + [2] = s_gs1_g29_s1_lives3_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g30_s0_lives[] = { /* 0x817aeac */ + /* 0 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g30_s0_lives0_dlg2, + } }, + /* 1 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g30_s0_lives1_dlg0, + [2] = s_gs1_g30_s0_lives1_dlg2, + } }, + /* 2 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g30_s0_lives2_dlg2, + } }, + /* 3 */ { 74, 0, 0, 0, { 82, 60, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g30_s0_lives3_dlg2, + } }, + /* 4 */ { 75, 0, 0, 0, { 41, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g30_s0_lives4_dlg2, + } }, + /* 5 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g30_s0_lives5_dlg2, + } }, + /* 6 */ { 104, 0, 0, 0, { 65, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g30_s0_lives6_dlg0, + [2] = s_gs1_g30_s0_lives6_dlg2, + } }, + /* 7 */ { 105, 3, 0, 0, { 62, 42, 0, 0 }, { + [0] = s_gs1_g30_s0_lives7_dlg0, + [2] = s_gs1_g30_s0_lives7_dlg2, + } }, + /* 8 */ { 106, 5, 0, 0, { 68, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g30_s0_lives8_dlg0, + [2] = s_gs1_g30_s0_lives8_dlg2, + } }, + /* 9 */ { 79, 0, 0, 0, { 59, 47, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs1_g30_s0_lives9_dlg1, + [2] = s_gs1_g30_s0_lives9_dlg2, + } }, + /* 10 */ { 85, 0, 0, 0, { 57, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g30_s0_lives10_dlg2, + } }, + /* 11 */ { 80, 0, 0, 0, { 68, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g30_s0_lives11_dlg2, + } }, + /* 12 */ { 78, 0, 0, 0, { 69, 14, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g30_s0_lives12_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g30_s1_lives[] = { /* 0x817afe4 */ + /* 0 */ { 0, 0, 0, 0, { 61, 30, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g30_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 61, 30, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g30_s1_lives1_dlg0, + } }, + /* 2 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g30_s1_lives2_dlg0, + [2] = s_gs1_g30_s1_lives2_dlg2, + } }, + /* 3 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g30_s1_lives3_dlg0, + [2] = s_gs1_g30_s1_lives3_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g31_s0_lives[] = { /* 0x817b044 */ + /* 0 */ { 0, 2, 0, 0, { 46, 39, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g31_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 2, 0, 0, { 46, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g31_s0_lives1_dlg0, + } }, + /* 2 */ { 77, 4, 0, 0, { 82, 42, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g31_s0_lives2_dlg0, + } }, + /* 3 */ { 54, 6, 0, 0, { 78, 36, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g31_s0_lives3_dlg0, + } }, + /* 4 */ { 85, 0, 0, 0, { 82, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g31_s0_lives4_dlg0, + } }, + /* 5 */ { 104, 7, 0, 0, { 89, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g31_s0_lives5_dlg0, + } }, + /* 6 */ { 105, 6, 0, 0, { 90, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g31_s0_lives6_dlg0, + } }, + /* 7 */ { 106, 5, 0, 0, { 87, 42, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g31_s0_lives7_dlg0, + } }, + /* 8 */ { 88, 2, 0, 0, { 41, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g31_s0_lives8_dlg0, + } }, + /* 9 */ { 89, 2, 0, 0, { 40, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g31_s0_lives9_dlg0, + } }, + /* 10 */ { 90, 2, 0, 0, { 40, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g31_s0_lives10_dlg0, + } }, + /* 11 */ { 143, 3, 0, 0, { 56, 50, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g31_s0_lives11_dlg0, + } }, + /* 12 */ { 135, 4, 0, 0, { 75, 54, 0, 0 }, { + [0] = s_gs1_g31_s0_lives12_dlg0, + } }, + /* 13 */ { 137, 4, 0, 0, { 67, 54, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g31_s0_lives13_dlg0, + } }, + /* 14 */ { 79, 0, 0, 0, { 62, 26, 0, 0 }, { + [0] = s_gs1_g31_s0_lives14_dlg0, + } }, + /* 15 */ { 136, 0, 0, 0, { 65, 24, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g31_s0_lives15_dlg0, + } }, + /* 16 */ { 140, 0, 0, 0, { 66, 26, 0, 0 }, { + [0] = s_gs1_g31_s0_lives16_dlg0, + } }, + /* 17 */ { 141, 0, 0, 0, { 60, 22, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g31_s0_lives17_dlg0, + } }, + /* 18 */ { 142, 0, 0, 0, { 68, 21, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g31_s0_lives18_dlg0, + } }, + /* 19 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g31_s0_lives19_dlg0, + [2] = s_gs1_g31_s0_lives19_dlg2, + } }, + /* 20 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g31_s0_lives20_dlg0, + [2] = s_gs1_g31_s0_lives20_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g32_s0_lives[] = { /* 0x817b23c */ + /* 0 */ { 0, 6, 0, 0, { 63, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g32_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 6, 0, 0, { 63, 39, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g32_s0_lives1_dlg0, + } }, + /* 2 */ { 77, 5, 0, 0, { 67, 42, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g32_s0_lives2_dlg0, + } }, + /* 3 */ { 54, 7, 0, 0, { 68, 36, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g32_s0_lives3_dlg0, + } }, + /* 4 */ { 85, 6, 0, 0, { 70, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g32_s0_lives4_dlg0, + } }, + /* 5 */ { 104, 6, 0, 0, { 72, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g32_s0_lives5_dlg0, + } }, + /* 6 */ { 105, 6, 0, 0, { 72, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g32_s0_lives6_dlg0, + } }, + /* 7 */ { 106, 5, 0, 0, { 70, 42, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g32_s0_lives7_dlg0, + } }, + /* 8 */ { 88, 2, 0, 0, { 59, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g32_s0_lives8_dlg0, + } }, + /* 9 */ { 89, 2, 0, 0, { 58, 38, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g32_s0_lives9_dlg0, + } }, + /* 10 */ { 90, 2, 0, 0, { 58, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g32_s0_lives10_dlg0, + } }, + /* 11 */ { 143, 4, 0, 0, { 60, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g32_s0_lives11_dlg0, + } }, + /* 12 */ { 135, 5, 0, 0, { 71, 45, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g32_s0_lives12_dlg0, + } }, + /* 13 */ { 137, 4, 0, 0, { 65, 46, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g32_s0_lives13_dlg0, + } }, + /* 14 */ { 79, 0, 0, 0, { 62, 35, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g32_s0_lives14_dlg0, + } }, + /* 15 */ { 136, 0, 0, 0, { 63, 32, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g32_s0_lives15_dlg0, + } }, + /* 16 */ { 140, 0, 0, 0, { 66, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g32_s0_lives16_dlg0, + } }, + /* 17 */ { 141, 1, 0, 0, { 58, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g32_s0_lives17_dlg0, + } }, + /* 18 */ { 142, 7, 0, 0, { 70, 33, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g32_s0_lives18_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g33_s0_lives[] = { /* 0x817b404 */ + /* 0 */ { 0, 0, 0, 0, { 65, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g33_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g34_s0_lives[] = { /* 0x817b41c */ + /* 0 */ { 34, 0, 0, 0, { 65, 37, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g34_s0_lives0_dlg2, + } }, + /* 1 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g34_s0_lives1_dlg2, + } }, + /* 2 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g34_s0_lives2_dlg2, + } }, + /* 3 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g34_s0_lives3_dlg2, + } }, + /* 4 */ { 74, 0, 0, 0, { 82, 60, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g34_s0_lives4_dlg2, + } }, + /* 5 */ { 75, 0, 0, 0, { 41, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g34_s0_lives5_dlg2, + } }, + /* 6 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g34_s0_lives6_dlg2, + } }, + /* 7 */ { 104, 6, 0, 0, { 72, 37, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g34_s0_lives7_dlg2, + } }, + /* 8 */ { 105, 6, 0, 0, { 72, 44, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g34_s0_lives8_dlg2, + } }, + /* 9 */ { 106, 4, 0, 0, { 64, 48, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g34_s0_lives9_dlg2, + } }, + /* 10 */ { 85, 6, 0, 0, { 70, 34, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g34_s0_lives10_dlg2, + } }, + /* 11 */ { 77, 5, 0, 0, { 59, 47, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g34_s0_lives11_dlg2, + } }, + /* 12 */ { 54, 1, 0, 0, { 56, 44, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g34_s0_lives12_dlg2, + } }, + /* 13 */ { 88, 1, 0, 0, { 60, 34, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g34_s0_lives13_dlg2, + } }, + /* 14 */ { 89, 1, 0, 0, { 56, 35, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g34_s0_lives14_dlg2, + } }, + /* 15 */ { 90, 1, 0, 0, { 59, 31, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g34_s0_lives15_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g35_s0_lives[] = { /* 0x817b59c */ + /* 0 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g35_s0_lives0_dlg2, + } }, + /* 1 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g35_s0_lives1_dlg2, + } }, + /* 2 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g35_s0_lives2_dlg2, + } }, + /* 3 */ { 74, 0, 0, 0, { 82, 60, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g35_s0_lives3_dlg2, + } }, + /* 4 */ { 75, 0, 0, 0, { 41, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g35_s0_lives4_dlg2, + } }, + /* 5 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g35_s0_lives5_dlg2, + } }, + /* 6 */ { 104, 7, 0, 0, { 71, 34, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g35_s0_lives6_dlg2, + } }, + /* 7 */ { 105, 6, 0, 0, { 73, 37, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g35_s0_lives7_dlg2, + } }, + /* 8 */ { 106, 0, 0, 0, { 68, 31, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g35_s0_lives8_dlg2, + } }, + /* 9 */ { 85, 5, 0, 0, { 71, 45, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g35_s0_lives9_dlg2, + } }, + /* 10 */ { 77, 0, 0, 0, { 58, 36, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g35_s0_lives10_dlg2, + } }, + /* 11 */ { 89, 3, 0, 0, { 59, 46, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g35_s0_lives11_dlg2, + } }, + /* 12 */ { 90, 4, 0, 0, { 62, 48, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g35_s0_lives12_dlg2, + } }, + /* 13 */ { 61, 1, 0, 0, { 61, 28, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g35_s0_lives13_dlg2, + } }, + /* 14 */ { 62, 1, 0, 0, { 59, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g35_s0_lives14_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g36_s0_lives[] = { /* 0x817b704 */ + /* 0 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g36_s0_lives0_dlg2, + } }, + /* 1 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g36_s0_lives1_dlg2, + } }, + /* 2 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g36_s0_lives2_dlg2, + } }, + /* 3 */ { 74, 0, 0, 0, { 82, 60, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g36_s0_lives3_dlg2, + } }, + /* 4 */ { 75, 0, 0, 0, { 41, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g36_s0_lives4_dlg2, + } }, + /* 5 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g36_s0_lives5_dlg2, + } }, + /* 6 */ { 104, 7, 0, 0, { 71, 37, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g36_s0_lives6_dlg2, + } }, + /* 7 */ { 105, 2, 0, 0, { 58, 20, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g36_s0_lives7_dlg2, + } }, + /* 8 */ { 106, 1, 0, 0, { 61, 18, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g36_s0_lives8_dlg2, + } }, + /* 9 */ { 85, 6, 0, 0, { 68, 34, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g36_s0_lives9_dlg2, + } }, + /* 10 */ { 77, 5, 0, 0, { 71, 45, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g36_s0_lives10_dlg2, + } }, + /* 11 */ { 89, 1, 0, 0, { 59, 46, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g36_s0_lives11_dlg2, + } }, + /* 12 */ { 90, 5, 0, 0, { 62, 48, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g36_s0_lives12_dlg2, + } }, + /* 13 */ { 61, 0, 0, 0, { 57, 36, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g36_s0_lives13_dlg2, + } }, + /* 14 */ { 62, 0, 0, 0, { 60, 36, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g36_s0_lives14_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g37_s0_lives[] = { /* 0x817b86c */ + /* 0 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, {} }, + /* 1 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, {} }, + /* 2 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, {} }, + /* 3 */ { 74, 0, 0, 0, { 82, 60, CPOS_HALFTILE, CPOS_HALFTILE }, {} }, + /* 4 */ { 75, 0, 0, 0, { 41, 61, CPOS_HALFTILE, CPOS_HALFTILE }, {} }, + /* 5 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, {} }, +}; + +static const struct GroundLivesData s_gs1_g38_s0_lives[] = { /* 0x817b8fc */ + /* 0 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g38_s0_lives0_dlg2, + } }, + /* 1 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g38_s0_lives1_dlg2, + } }, + /* 2 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g38_s0_lives2_dlg2, + } }, + /* 3 */ { 74, 0, 0, 0, { 82, 60, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g38_s0_lives3_dlg2, + } }, + /* 4 */ { 75, 0, 0, 0, { 41, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g38_s0_lives4_dlg2, + } }, + /* 5 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g38_s0_lives5_dlg2, + } }, + /* 6 */ { 85, 7, 0, 0, { 69, 36, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g38_s0_lives6_dlg2, + } }, + /* 7 */ { 77, 0, 0, 0, { 90, 37, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g38_s0_lives7_dlg2, + } }, + /* 8 */ { 89, 0, 0, 0, { 57, 33, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g38_s0_lives8_dlg2, + } }, + /* 9 */ { 90, 0, 0, 0, { 61, 33, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g38_s0_lives9_dlg2, + } }, + /* 10 */ { 61, 0, 0, 0, { 58, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g38_s0_lives10_dlg2, + } }, + /* 11 */ { 62, 0, 0, 0, { 61, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g38_s0_lives11_dlg2, + } }, + /* 12 */ { 95, 2, 0, 0, { 60, 43, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g38_s0_lives12_dlg2, + } }, + /* 13 */ { 78, 6, 0, 0, { 64, 43, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g38_s0_lives13_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g38_s1_lives[] = { /* 0x817ba4c */ + /* 0 */ { 0, 0, 0, 0, { 35, 25, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g38_s1_lives0_dlg0, + } }, + /* 1 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g38_s1_lives1_dlg0, + [2] = s_gs1_g38_s1_lives1_dlg2, + } }, + /* 2 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g38_s1_lives2_dlg0, + [2] = s_gs1_g38_s1_lives2_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g39_s0_lives[] = { /* 0x817ba94 */ + /* 0 */ { 124, 0, 0, 0, { 60, 11, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g39_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g40_s0_lives[] = { /* 0x817baac */ + /* 0 */ { 77, 5, 0, 0, { 71, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g40_s0_lives0_dlg0, + [2] = s_gs1_g40_s0_lives0_dlg2, + [3] = s_gs1_g40_s0_lives0_dlg3, + } }, +}; + +static const struct GroundLivesData s_gs1_g41_s0_lives[] = { /* 0x817bac4 */ + /* 0 */ { 88, 0, 0, 0, { 68, 27, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g41_s0_lives0_dlg0, + [2] = s_gs1_g41_s0_lives0_dlg2, + [3] = s_gs1_g41_s0_lives0_dlg3, + } }, +}; + +static const struct GroundLivesData s_gs1_g42_s0_lives[] = { /* 0x817badc */ + /* 0 */ { 77, 0, 0, 0, { 65, 37, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g42_s0_lives0_dlg2, + } }, + /* 1 */ { 79, 0, 0, 0, { 65, 36, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g42_s0_lives1_dlg0, + [2] = s_gs1_g42_s0_lives1_dlg2, + } }, + /* 2 */ { 75, 0, 0, 0, { 41, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g42_s0_lives2_dlg2, + } }, + /* 3 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g42_s0_lives3_dlg2, + } }, + /* 4 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g42_s0_lives4_dlg2, + } }, + /* 5 */ { 76, 0, 0, 0, { 82, 60, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g42_s0_lives5_dlg2, + } }, + /* 6 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g42_s0_lives6_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g43_s0_lives[] = { /* 0x817bb84 */ + /* 0 */ { 0, 2, 0, 0, { 70, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g43_s0_lives0_dlg0, + } }, + /* 1 */ { 4, 2, 0, 0, { 70, 42, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g43_s0_lives1_dlg0, + } }, + /* 2 */ { 77, 6, 0, 0, { 65, 38, 0, 0 }, { + [0] = s_gs1_g43_s0_lives2_dlg0, + } }, + /* 3 */ { 79, 0, 0, 0, { 65, 37, 0, 0 }, { + [0] = s_gs1_g43_s0_lives3_dlg0, + } }, + /* 4 */ { 115, 2, 0, 0, { 29, 41, 0, 0 }, { + [0] = s_gs1_g43_s0_lives4_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g44_s0_lives[] = { /* 0x817bbfc */ + /* 0 */ { 115, 0, 0, 0, { 70, 20, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g44_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g45_s0_lives[] = { /* 0x817bc14 */ + /* 0 */ { 115, 0, 0, 0, { 70, 20, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g45_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g45_s1_lives[] = { /* 0x817bc2c */ + /* 0 */ { 0, 2, 0, 0, { 46, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g45_s1_lives0_dlg0, + } }, + /* 1 */ { 115, 2, 0, 0, { 26, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g45_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g46_s0_lives[] = { /* 0x817bc5c */ + /* 0 */ { 1, 2, 0, 0, { 46, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g46_s0_lives0_dlg0, + } }, + /* 1 */ { 4, 2, 0, 0, { 55, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g46_s0_lives1_dlg0, + } }, + /* 2 */ { 77, 7, 0, 0, { 67, 38, 0, 0 }, { + [0] = s_gs1_g46_s0_lives2_dlg0, + } }, + /* 3 */ { 79, 5, 0, 0, { 67, 43, 0, 0 }, { + [0] = s_gs1_g46_s0_lives3_dlg0, + } }, + /* 4 */ { 109, 3, 0, 0, { 63, 43, 0, 0 }, { + [0] = s_gs1_g46_s0_lives4_dlg0, + } }, + /* 5 */ { 110, 1, 0, 0, { 63, 38, 0, 0 }, { + [0] = s_gs1_g46_s0_lives5_dlg0, + } }, + /* 6 */ { 89, 2, 0, 0, { 42, 42, 0, 0 }, { + [0] = s_gs1_g46_s0_lives6_dlg0, + } }, + /* 7 */ { 104, 2, 0, 0, { 39, 39, 0, 0 }, { + [0] = s_gs1_g46_s0_lives7_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g47_s0_lives[] = { /* 0x817bd1c */ + /* 0 */ { 1, 2, 0, 0, { 39, 41, 0, 0 }, { + [0] = s_gs1_g47_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 2, 0, 0, { 43, 41, 0, 0 }, { + [0] = s_gs1_g47_s0_lives1_dlg0, + } }, + /* 2 */ { 70, 5, 0, 0, { 67, 44, 0, 0 }, { + [0] = s_gs1_g47_s0_lives2_dlg0, + } }, + /* 3 */ { 71, 4, 0, 0, { 65, 40, 0, 0 }, { + [0] = s_gs1_g47_s0_lives3_dlg0, + } }, + /* 4 */ { 72, 3, 0, 0, { 63, 44, 0, 0 }, { + [0] = s_gs1_g47_s0_lives4_dlg0, + } }, + /* 5 */ { 75, 1, 0, 0, { 63, 37, 0, 0 }, { + [0] = s_gs1_g47_s0_lives5_dlg0, + } }, + /* 6 */ { 88, 7, 0, 0, { 68, 37, 0, 0 }, { + [0] = s_gs1_g47_s0_lives6_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g48_s0_lives[] = { /* 0x817bdc4 */ + /* 0 */ { 1, 3, 0, 0, { 60, 42, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g48_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 3, 0, 0, { 62, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g48_s0_lives1_dlg0, + } }, + /* 2 */ { 70, 5, 0, 0, { 68, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g48_s0_lives2_dlg0, + } }, + /* 3 */ { 71, 4, 0, 0, { 65, 46, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g48_s0_lives3_dlg0, + } }, + /* 4 */ { 88, 5, 0, 0, { 71, 42, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g48_s0_lives4_dlg0, + } }, + /* 5 */ { 121, 0, 0, 0, { 65, 39, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g48_s0_lives5_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g49_s0_lives[] = { /* 0x817be54 */ + /* 0 */ { 1, 2, 0, 0, { 59, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g49_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 2, 0, 0, { 59, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g49_s0_lives1_dlg0, + } }, + /* 2 */ { 70, 0, 0, 0, { 63, 35, 0, 0 }, { + [0] = s_gs1_g49_s0_lives2_dlg0, + } }, + /* 3 */ { 71, 0, 0, 0, { 67, 35, 0, 0 }, { + [0] = s_gs1_g49_s0_lives3_dlg0, + } }, + /* 4 */ { 88, 7, 0, 0, { 71, 37, 0, 0 }, { + [0] = s_gs1_g49_s0_lives4_dlg0, + } }, + /* 5 */ { 121, 6, 0, 0, { 69, 41, 0, 0 }, { + [0] = s_gs1_g49_s0_lives5_dlg0, + } }, + /* 6 */ { 122, 2, 0, 0, { 62, 41, 0, 0 }, { + [0] = s_gs1_g49_s0_lives6_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs1_g50_s0_lives[] = { /* 0x817befc */ + /* 0 */ { 77, 0, 0, 0, { 71, 44, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g50_s0_lives0_dlg2, + } }, + /* 1 */ { 81, 4, 0, 0, { 58, 44, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g50_s0_lives1_dlg2, + } }, + /* 2 */ { 79, 4, 0, 0, { 59, 47, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g50_s0_lives2_dlg2, + } }, + /* 3 */ { 85, 2, 0, 0, { 61, 19, 0, CPOS_HALFTILE }, { + [0] = s_gs1_g50_s0_lives3_dlg0, + [2] = s_gs1_g50_s0_lives3_dlg2, + [3] = s_gs1_g50_s0_lives3_dlg3, + } }, + /* 4 */ { 70, 0, 0, 0, { 36, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g50_s0_lives4_dlg2, + } }, + /* 5 */ { 71, 0, 0, 0, { 39, 30, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g50_s0_lives5_dlg2, + } }, + /* 6 */ { 72, 0, 0, 0, { 82, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g50_s0_lives6_dlg2, + } }, + /* 7 */ { 73, 0, 0, 0, { 97, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g50_s0_lives7_dlg2, + } }, + /* 8 */ { 75, 0, 0, 0, { 41, 61, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g50_s0_lives8_dlg2, + } }, + /* 9 */ { 74, 0, 0, 0, { 82, 60, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs1_g50_s0_lives9_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g51_s0_lives[] = { /* 0x817bfec */ + /* 0 */ { 93, 2, 0, 0, { 61, 48, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g51_s0_lives0_dlg2, + } }, + /* 1 */ { 92, 6, 0, 0, { 65, 48, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g51_s0_lives1_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs1_g52_s0_lives[] = { /* 0x817c01c */ + /* 0 */ { 82, 6, 0, 0, { 65, 48, 0, CPOS_HALFTILE }, { + [2] = s_gs1_g52_s0_lives0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs1_g0_s0_objs[] = { /* 0x817c034 */ + /* 0 */ { 15, 0, 3, 2, { 13, 37, CPOS_HALFTILE, 0 }, { + [2] = s_gs1_g0_s0_obj0_dlg2, + } }, + /* 1 */ { 15, 0, 3, 2, { 68, 10, CPOS_HALFTILE, 0 }, { + [2] = s_gs1_g0_s0_obj1_dlg2, + } }, + /* 2 */ { 15, 0, 3, 2, { 114, 36, CPOS_HALFTILE, 0 }, { + [2] = s_gs1_g0_s0_obj2_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs1_g5_s1_objs[] = { /* 0x817c07c */ + /* 0 */ { 66, 0, 2, 2, { 115, 39, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g5_s1_obj0_dlg0, + [1] = s_gs1_g5_s1_obj0_dlg1, + [2] = s_gs1_g5_s1_obj0_dlg2, + } }, + /* 1 */ { 66, 0, 2, 2, { 115, 39, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g5_s1_obj1_dlg0, + [1] = s_gs1_g5_s1_obj1_dlg1, + [2] = s_gs1_g5_s1_obj1_dlg2, + } }, + /* 2 */ { 66, 0, 2, 2, { 115, 39, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs1_g5_s1_obj2_dlg0, + [1] = s_gs1_g5_s1_obj2_dlg1, + [2] = s_gs1_g5_s1_obj2_dlg2, + } }, +}; + +static const struct GroundEffectData s_gs1_g6_s0_effs[] = { /* 0x817c0c4 */ + /* 0 */ { 0, 0, 1, 1, { 15, 39, 0, CPOS_HALFTILE }, s_gs1_g6_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs1_g10_s0_effs[] = { /* 0x817c0d0 */ + /* 0 */ { 0, 0, 1, 1, { 66, 40, 0, CPOS_HALFTILE }, s_gs1_g10_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs1_g12_s0_effs[] = { /* 0x817c0dc */ + /* 0 */ { 0, 0, 1, 1, { 66, 40, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs1_g17_s0_effs[] = { /* 0x817c0e8 */ + /* 0 */ { 0, 0, 1, 1, { 64, 40, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs1_g17_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs1_g20_s0_effs[] = { /* 0x817c0f4 */ + /* 0 */ { 0, 0, 1, 1, { 11, 40, 0, CPOS_HALFTILE }, s_gs1_g20_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs1_g21_s0_effs[] = { /* 0x817c100 */ + /* 0 */ { 0, 0, 1, 1, { 43, 42, 0, CPOS_HALFTILE }, s_gs1_g21_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs1_g23_s0_effs[] = { /* 0x817c10c */ + /* 0 */ { 0, 0, 1, 1, { 66, 42, 0, CPOS_HALFTILE }, s_gs1_g23_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs1_g23_s1_effs[] = { /* 0x817c118 */ + /* 0 */ { 5, 0, 1, 1, { 66, 41, 0, CPOS_HALFTILE }, s_gs1_g23_s1_eff0_script }, + /* 1 */ { 5, 0, 1, 1, { 66, 41, 0, CPOS_HALFTILE }, s_gs1_g23_s1_eff1_script }, +}; + +static const struct GroundEffectData s_gs1_g26_s0_effs[] = { /* 0x817c130 */ + /* 0 */ { 0, 0, 1, 1, { 65, 42, 0, CPOS_HALFTILE }, s_gs1_g26_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs1_g28_s0_effs[] = { /* 0x817c13c */ + /* 0 */ { 0, 0, 1, 1, { 53, 42, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs1_g28_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs1_g31_s0_effs[] = { /* 0x817c148 */ + /* 0 */ { 0, 0, 1, 1, { 84, 40, 0, CPOS_HALFTILE }, s_gs1_g31_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs1_g32_s0_effs[] = { /* 0x817c154 */ + /* 0 */ { 0, 0, 1, 1, { 65, 40, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs1_g37_s0_effs[] = { /* 0x817c160 */ + /* 0 */ { 0, 0, 1, 1, { 23, 34, 0, CPOS_HALFTILE }, s_gs1_g37_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs1_g43_s0_effs[] = { /* 0x817c16c */ + /* 0 */ { 0, 0, 1, 1, { 69, 40, 0, CPOS_HALFTILE }, s_gs1_g43_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs1_g46_s0_effs[] = { /* 0x817c178 */ + /* 0 */ { 0, 0, 1, 1, { 64, 42, 0, 0 }, s_gs1_g46_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs1_g47_s0_effs[] = { /* 0x817c184 */ + /* 0 */ { 0, 0, 1, 1, { 65, 41, 0, 0 }, s_gs1_g47_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs1_g48_s0_effs[] = { /* 0x817c190 */ + /* 0 */ { 0, 0, 1, 1, { 65, 44, 0, 0 }, s_gs1_g48_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs1_g49_s0_effs[] = { /* 0x817c19c */ + /* 0 */ { 0, 0, 1, 1, { 64, 41, CPOS_HALFTILE, 0 }, NULL }, +}; + +static const struct GroundEventData s_gs1_g0_s0_evts[] = { /* 0x817c1a8 */ + /* 0 */ { 3, 12, 0, 0, { 0, 35, 0, 0 }, &s_gs1_g0_s0_evt0_sref }, + /* 1 */ { 15, 6, 0, 0, { 57, 0, 0, 0 }, &s_gs1_g0_s0_evt1_sref }, + /* 2 */ { 3, 12, 0, 0, { 117, 34, 0, 0 }, &s_gs1_g0_s0_evt2_sref }, + /* 3 */ { 9, 3, 0, 0, { 63, 87, 0, 0 }, &s_gs1_g0_s0_evt3_sref }, +}; + +static const struct GroundEventData s_gs1_g8_s2_evts[] = { /* 0x817c1d8 */ + /* 0 */ { 3, 9, 0, 0, { 75, 35, 0, 0 }, &s_gs1_g8_s2_evt0_sref }, +}; + +static const struct GroundEventData s_gs1_g16_s0_evts[] = { /* 0x817c1e4 */ + /* 0 */ { 6, 9, 0, 0, { 47, 36, 0, 0 }, &s_gs1_g16_s0_evt0_sref }, +}; + +static const struct GroundEventData s_gs1_g42_s0_evts[] = { /* 0x817c1f0 */ + /* 0 */ { 6, 9, 0, 0, { 71, 35, 0, 0 }, &s_gs1_g42_s0_evt0_sref }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x817c1fc */ + &s_gs1_g0_s0_station_sref, + &s_gs1_g1_s0_station_sref, + &s_gs1_g2_s0_station_sref, + &s_gs1_g4_s1_station_sref, + &s_gs1_g5_s1_station_sref, + &s_gs1_g5_s4_station_sref, + &s_gs1_g6_s0_station_sref, + &s_gs1_g7_s0_station_sref, + &s_gs1_g7_s1_station_sref, + &s_gs1_g8_s0_station_sref, + &s_gs1_g8_s1_station_sref, + &s_gs1_g9_s0_station_sref, + &s_gs1_g10_s0_station_sref, + &s_gs1_g11_s0_station_sref, + &s_gs1_g12_s0_station_sref, + &s_gs1_g13_s0_station_sref, + &s_gs1_g14_s0_station_sref, + &s_gs1_g15_s0_station_sref, + &s_gs1_g16_s0_station_sref, + &s_gs1_g17_s0_station_sref, + &s_gs1_g18_s0_station_sref, + &s_gs1_g19_s0_station_sref, + &s_gs1_g20_s0_station_sref, + &s_gs1_g21_s0_station_sref, + &s_gs1_g22_s0_station_sref, + &s_gs1_g23_s0_station_sref, + &s_gs1_g24_s0_station_sref, + &s_gs1_g24_s1_station_sref, + &s_gs1_g25_s0_station_sref, + &s_gs1_g26_s0_station_sref, + &s_gs1_g27_s0_station_sref, + &s_gs1_g28_s0_station_sref, + &s_gs1_g29_s0_station_sref, + &s_gs1_g29_s1_station_sref, + &s_gs1_g30_s0_station_sref, + &s_gs1_g30_s1_station_sref, + &s_gs1_g31_s0_station_sref, + &s_gs1_g32_s0_station_sref, + &s_gs1_g33_s0_station_sref, + &s_gs1_g34_s0_station_sref, + &s_gs1_g35_s0_station_sref, + &s_gs1_g36_s0_station_sref, + &s_gs1_g37_s0_station_sref, + &s_gs1_g38_s0_station_sref, + &s_gs1_g38_s1_station_sref, + &s_gs1_g43_s0_station_sref, + &s_gs1_g45_s1_station_sref, + &s_gs1_g46_s0_station_sref, + &s_gs1_g47_s0_station_sref, + &s_gs1_g48_s0_station_sref, + &s_gs1_g49_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs1_g0_sectors[] = { /* 0x817c2c8 */ + { 0,NULL, LPARRAY(s_gs1_g0_s0_objs), 0,NULL, LPARRAY(s_gs1_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs1_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs1_g0_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs1_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs1_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs1_g0_s7_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs1_g0_s8_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs1_g1_sectors[] = { /* 0x817c430 */ + { LPARRAY(s_gs1_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs1_g2_sectors[] = { /* 0x817c458 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptSector s_gs1_g3_sectors[] = { /* 0x817c480 */ + { LPARRAY(s_gs1_g3_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs1_g4_sectors[] = { /* 0x817c4a8 */ + { LPARRAY(s_gs1_g4_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs1_g4_s1_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[3], }, + { LPARRAY(s_gs1_g4_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs1_g4_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs1_g4_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs1_g5_sectors[] = { /* 0x817c570 */ + { LPARRAY(s_gs1_g5_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs1_g5_s1_lives), LPARRAY(s_gs1_g5_s1_objs), 0,NULL, 0,NULL, 1,&sStationScripts[4], }, + { LPARRAY(s_gs1_g5_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs1_g5_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs1_g5_s4_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[5], }, + { LPARRAY(s_gs1_g5_s5_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs1_g5_s6_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs1_g6_sectors[] = { /* 0x817c688 */ + { LPARRAY(s_gs1_g6_s0_lives), 0,NULL, LPARRAY(s_gs1_g6_s0_effs), 0,NULL, 1,&sStationScripts[6], }, +}; + +static const struct GroundScriptSector s_gs1_g7_sectors[] = { /* 0x817c6b0 */ + { LPARRAY(s_gs1_g7_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[7], }, + { LPARRAY(s_gs1_g7_s1_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[8], }, +}; + +static const struct GroundScriptSector s_gs1_g8_sectors[] = { /* 0x817c700 */ + { LPARRAY(s_gs1_g8_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[9], }, + { LPARRAY(s_gs1_g8_s1_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[10], }, + { LPARRAY(s_gs1_g8_s2_lives), 0,NULL, 0,NULL, LPARRAY(s_gs1_g8_s2_evts), 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs1_g9_sectors[] = { /* 0x817c778 */ + { LPARRAY(s_gs1_g9_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[11], }, + { LPARRAY(s_gs1_g9_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs1_g10_sectors[] = { /* 0x817c7c8 */ + { LPARRAY(s_gs1_g10_s0_lives), 0,NULL, LPARRAY(s_gs1_g10_s0_effs), 0,NULL, 1,&sStationScripts[12], }, + { LPARRAY(s_gs1_g10_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs1_g10_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs1_g11_sectors[] = { /* 0x817c840 */ + { LPARRAY(s_gs1_g11_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[13], }, +}; + +static const struct GroundScriptSector s_gs1_g12_sectors[] = { /* 0x817c868 */ + { LPARRAY(s_gs1_g12_s0_lives), 0,NULL, LPARRAY(s_gs1_g12_s0_effs), 0,NULL, 1,&sStationScripts[14], }, +}; + +static const struct GroundScriptSector s_gs1_g13_sectors[] = { /* 0x817c890 */ + { LPARRAY(s_gs1_g13_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[15], }, +}; + +static const struct GroundScriptSector s_gs1_g14_sectors[] = { /* 0x817c8b8 */ + { LPARRAY(s_gs1_g14_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[16], }, +}; + +static const struct GroundScriptSector s_gs1_g15_sectors[] = { /* 0x817c8e0 */ + { LPARRAY(s_gs1_g15_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[17], }, +}; + +static const struct GroundScriptSector s_gs1_g16_sectors[] = { /* 0x817c908 */ + { LPARRAY(s_gs1_g16_s0_lives), 0,NULL, 0,NULL, LPARRAY(s_gs1_g16_s0_evts), 1,&sStationScripts[18], }, +}; + +static const struct GroundScriptSector s_gs1_g17_sectors[] = { /* 0x817c930 */ + { LPARRAY(s_gs1_g17_s0_lives), 0,NULL, LPARRAY(s_gs1_g17_s0_effs), 0,NULL, 1,&sStationScripts[19], }, +}; + +static const struct GroundScriptSector s_gs1_g18_sectors[] = { /* 0x817c958 */ + { LPARRAY(s_gs1_g18_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[20], }, +}; + +static const struct GroundScriptSector s_gs1_g19_sectors[] = { /* 0x817c980 */ + { LPARRAY(s_gs1_g19_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[21], }, +}; + +static const struct GroundScriptSector s_gs1_g20_sectors[] = { /* 0x817c9a8 */ + { LPARRAY(s_gs1_g20_s0_lives), 0,NULL, LPARRAY(s_gs1_g20_s0_effs), 0,NULL, 1,&sStationScripts[22], }, +}; + +static const struct GroundScriptSector s_gs1_g21_sectors[] = { /* 0x817c9d0 */ + { LPARRAY(s_gs1_g21_s0_lives), 0,NULL, LPARRAY(s_gs1_g21_s0_effs), 0,NULL, 1,&sStationScripts[23], }, +}; + +static const struct GroundScriptSector s_gs1_g22_sectors[] = { /* 0x817c9f8 */ + { LPARRAY(s_gs1_g22_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[24], }, +}; + +static const struct GroundScriptSector s_gs1_g23_sectors[] = { /* 0x817ca20 */ + { LPARRAY(s_gs1_g23_s0_lives), 0,NULL, LPARRAY(s_gs1_g23_s0_effs), 0,NULL, 1,&sStationScripts[25], }, + { LPARRAY(s_gs1_g23_s1_lives), 0,NULL, LPARRAY(s_gs1_g23_s1_effs), 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs1_g24_sectors[] = { /* 0x817ca70 */ + { LPARRAY(s_gs1_g24_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[26], }, + { LPARRAY(s_gs1_g24_s1_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[27], }, +}; + +static const struct GroundScriptSector s_gs1_g25_sectors[] = { /* 0x817cac0 */ + { LPARRAY(s_gs1_g25_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[28], }, +}; + +static const struct GroundScriptSector s_gs1_g26_sectors[] = { /* 0x817cae8 */ + { LPARRAY(s_gs1_g26_s0_lives), 0,NULL, LPARRAY(s_gs1_g26_s0_effs), 0,NULL, 1,&sStationScripts[29], }, +}; + +static const struct GroundScriptSector s_gs1_g27_sectors[] = { /* 0x817cb10 */ + { LPARRAY(s_gs1_g27_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[30], }, +}; + +static const struct GroundScriptSector s_gs1_g28_sectors[] = { /* 0x817cb38 */ + { LPARRAY(s_gs1_g28_s0_lives), 0,NULL, LPARRAY(s_gs1_g28_s0_effs), 0,NULL, 1,&sStationScripts[31], }, +}; + +static const struct GroundScriptSector s_gs1_g29_sectors[] = { /* 0x817cb60 */ + { LPARRAY(s_gs1_g29_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[32], }, + { LPARRAY(s_gs1_g29_s1_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[33], }, +}; + +static const struct GroundScriptSector s_gs1_g30_sectors[] = { /* 0x817cbb0 */ + { LPARRAY(s_gs1_g30_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[34], }, + { LPARRAY(s_gs1_g30_s1_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[35], }, +}; + +static const struct GroundScriptSector s_gs1_g31_sectors[] = { /* 0x817cc00 */ + { LPARRAY(s_gs1_g31_s0_lives), 0,NULL, LPARRAY(s_gs1_g31_s0_effs), 0,NULL, 1,&sStationScripts[36], }, +}; + +static const struct GroundScriptSector s_gs1_g32_sectors[] = { /* 0x817cc28 */ + { LPARRAY(s_gs1_g32_s0_lives), 0,NULL, LPARRAY(s_gs1_g32_s0_effs), 0,NULL, 1,&sStationScripts[37], }, +}; + +static const struct GroundScriptSector s_gs1_g33_sectors[] = { /* 0x817cc50 */ + { LPARRAY(s_gs1_g33_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[38], }, +}; + +static const struct GroundScriptSector s_gs1_g34_sectors[] = { /* 0x817cc78 */ + { LPARRAY(s_gs1_g34_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[39], }, +}; + +static const struct GroundScriptSector s_gs1_g35_sectors[] = { /* 0x817cca0 */ + { LPARRAY(s_gs1_g35_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[40], }, +}; + +static const struct GroundScriptSector s_gs1_g36_sectors[] = { /* 0x817ccc8 */ + { LPARRAY(s_gs1_g36_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[41], }, +}; + +static const struct GroundScriptSector s_gs1_g37_sectors[] = { /* 0x817ccf0 */ + { LPARRAY(s_gs1_g37_s0_lives), 0,NULL, LPARRAY(s_gs1_g37_s0_effs), 0,NULL, 1,&sStationScripts[42], }, +}; + +static const struct GroundScriptSector s_gs1_g38_sectors[] = { /* 0x817cd18 */ + { LPARRAY(s_gs1_g38_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[43], }, + { LPARRAY(s_gs1_g38_s1_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[44], }, +}; + +static const struct GroundScriptSector s_gs1_g39_sectors[] = { /* 0x817cd68 */ + { LPARRAY(s_gs1_g39_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs1_g40_sectors[] = { /* 0x817cd90 */ + { LPARRAY(s_gs1_g40_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs1_g41_sectors[] = { /* 0x817cdb8 */ + { LPARRAY(s_gs1_g41_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs1_g42_sectors[] = { /* 0x817cde0 */ + { LPARRAY(s_gs1_g42_s0_lives), 0,NULL, 0,NULL, LPARRAY(s_gs1_g42_s0_evts), 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs1_g43_sectors[] = { /* 0x817ce08 */ + { LPARRAY(s_gs1_g43_s0_lives), 0,NULL, LPARRAY(s_gs1_g43_s0_effs), 0,NULL, 1,&sStationScripts[45], }, +}; + +static const struct GroundScriptSector s_gs1_g44_sectors[] = { /* 0x817ce30 */ + { LPARRAY(s_gs1_g44_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs1_g45_sectors[] = { /* 0x817ce58 */ + { LPARRAY(s_gs1_g45_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs1_g45_s1_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[46], }, +}; + +static const struct GroundScriptSector s_gs1_g46_sectors[] = { /* 0x817cea8 */ + { LPARRAY(s_gs1_g46_s0_lives), 0,NULL, LPARRAY(s_gs1_g46_s0_effs), 0,NULL, 1,&sStationScripts[47], }, +}; + +static const struct GroundScriptSector s_gs1_g47_sectors[] = { /* 0x817ced0 */ + { LPARRAY(s_gs1_g47_s0_lives), 0,NULL, LPARRAY(s_gs1_g47_s0_effs), 0,NULL, 1,&sStationScripts[48], }, +}; + +static const struct GroundScriptSector s_gs1_g48_sectors[] = { /* 0x817cef8 */ + { LPARRAY(s_gs1_g48_s0_lives), 0,NULL, LPARRAY(s_gs1_g48_s0_effs), 0,NULL, 1,&sStationScripts[49], }, +}; + +static const struct GroundScriptSector s_gs1_g49_sectors[] = { /* 0x817cf20 */ + { LPARRAY(s_gs1_g49_s0_lives), 0,NULL, LPARRAY(s_gs1_g49_s0_effs), 0,NULL, 1,&sStationScripts[50], }, +}; + +static const struct GroundScriptSector s_gs1_g50_sectors[] = { /* 0x817cf48 */ + { LPARRAY(s_gs1_g50_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs1_g51_sectors[] = { /* 0x817cf70 */ + { LPARRAY(s_gs1_g51_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs1_g52_sectors[] = { /* 0x817cf98 */ + { LPARRAY(s_gs1_g52_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs1_groups[] = { /* 0x817cfc0 */ + { LPARRAY(s_gs1_g0_sectors) }, + { LPARRAY(s_gs1_g1_sectors) }, + { LPARRAY(s_gs1_g2_sectors) }, + { LPARRAY(s_gs1_g3_sectors) }, + { LPARRAY(s_gs1_g4_sectors) }, + { LPARRAY(s_gs1_g5_sectors) }, + { LPARRAY(s_gs1_g6_sectors) }, + { LPARRAY(s_gs1_g7_sectors) }, + { LPARRAY(s_gs1_g8_sectors) }, + { LPARRAY(s_gs1_g9_sectors) }, + { LPARRAY(s_gs1_g10_sectors) }, + { LPARRAY(s_gs1_g11_sectors) }, + { LPARRAY(s_gs1_g12_sectors) }, + { LPARRAY(s_gs1_g13_sectors) }, + { LPARRAY(s_gs1_g14_sectors) }, + { LPARRAY(s_gs1_g15_sectors) }, + { LPARRAY(s_gs1_g16_sectors) }, + { LPARRAY(s_gs1_g17_sectors) }, + { LPARRAY(s_gs1_g18_sectors) }, + { LPARRAY(s_gs1_g19_sectors) }, + { LPARRAY(s_gs1_g20_sectors) }, + { LPARRAY(s_gs1_g21_sectors) }, + { LPARRAY(s_gs1_g22_sectors) }, + { LPARRAY(s_gs1_g23_sectors) }, + { LPARRAY(s_gs1_g24_sectors) }, + { LPARRAY(s_gs1_g25_sectors) }, + { LPARRAY(s_gs1_g26_sectors) }, + { LPARRAY(s_gs1_g27_sectors) }, + { LPARRAY(s_gs1_g28_sectors) }, + { LPARRAY(s_gs1_g29_sectors) }, + { LPARRAY(s_gs1_g30_sectors) }, + { LPARRAY(s_gs1_g31_sectors) }, + { LPARRAY(s_gs1_g32_sectors) }, + { LPARRAY(s_gs1_g33_sectors) }, + { LPARRAY(s_gs1_g34_sectors) }, + { LPARRAY(s_gs1_g35_sectors) }, + { LPARRAY(s_gs1_g36_sectors) }, + { LPARRAY(s_gs1_g37_sectors) }, + { LPARRAY(s_gs1_g38_sectors) }, + { LPARRAY(s_gs1_g39_sectors) }, + { LPARRAY(s_gs1_g40_sectors) }, + { LPARRAY(s_gs1_g41_sectors) }, + { LPARRAY(s_gs1_g42_sectors) }, + { LPARRAY(s_gs1_g43_sectors) }, + { LPARRAY(s_gs1_g44_sectors) }, + { LPARRAY(s_gs1_g45_sectors) }, + { LPARRAY(s_gs1_g46_sectors) }, + { LPARRAY(s_gs1_g47_sectors) }, + { LPARRAY(s_gs1_g48_sectors) }, + { LPARRAY(s_gs1_g49_sectors) }, + { LPARRAY(s_gs1_g50_sectors) }, + { LPARRAY(s_gs1_g51_sectors) }, + { LPARRAY(s_gs1_g52_sectors) }, +}; + +static const struct GroundLink s_gs1_links[] = { /* 0x817d168 */ + /* link 0 */ { { /*x*/ 90, /*y*/ 39, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 30, /*y*/ 39, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 2 */ { { /*x*/ 2, /*y*/ 39, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 3 */ { { /*x*/ 117, /*y*/ 39, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 4 */ { { /*x*/ 70, /*y*/ 39, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 5 */ { { /*x*/ 59, /*y*/ 39, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 6 */ { { /*x*/ 2, /*y*/ 39, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 7 */ { { /*x*/ 12, /*y*/ 41, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 8 */ { { /*x*/ 14, /*y*/ 39, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 9 */ { { /*x*/ 37, /*y*/ 34, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 10 */ { { /*x*/ 82, /*y*/ 34, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 11 */ { { /*x*/ 82, /*y*/ 61, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 12 */ { { /*x*/ 41, /*y*/ 61, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 13 */ { { /*x*/ 14, /*y*/ 41, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 14 */ { { /*x*/ 56, /*y*/ 42, /*flags*/ 0, 0 }, /*w*/ 12, /*h*/ 7, /*ret*/ 3, /*?*/ 2 }, + /* link 15 */ { { /*x*/ 56, /*y*/ 30, /*flags*/ 0, 0 }, /*w*/ 12, /*h*/ 9, /*ret*/ 3, /*?*/ 2 }, + /* link 16 */ { { /*x*/ 68, /*y*/ 33, /*flags*/ 0, 0 }, /*w*/ 8, /*h*/ 13, /*ret*/ 3, /*?*/ 2 }, + /* link 17 */ { { /*x*/ 56, /*y*/ 42, /*flags*/ 0, 0 }, /*w*/ 12, /*h*/ 7, /*ret*/ 3, /*?*/ 2 }, + /* link 18 */ { { /*x*/ 97, /*y*/ 37, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 19 */ { { /*x*/ 97, /*y*/ 39, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 20 */ { { /*x*/ 93, /*y*/ 37, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 21 */ { { /*x*/ 93, /*y*/ 39, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 22 */ { { /*x*/ 76, /*y*/ 39, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 23 */ { { /*x*/ 76, /*y*/ 37, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 24 */ { { /*x*/ 65, /*y*/ 23, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 25 */ { { /*x*/ 62, /*y*/ 23, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 26 */ { { /*x*/ 58, /*y*/ 40, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 27 */ { { /*x*/ 83, /*y*/ 40, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 28 */ { { /*x*/ 101, /*y*/ 40, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 29 */ { { /*x*/ 56, /*y*/ 38, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 30 */ { { /*x*/ 86, /*y*/ 38, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 31 */ { { /*x*/ 98, /*y*/ 38, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 32 */ { { /*x*/ 56, /*y*/ 42, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 33 */ { { /*x*/ 86, /*y*/ 42, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 34 */ { { /*x*/ 99, /*y*/ 42, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 35 */ { { /*x*/ 49, /*y*/ 65, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 36 */ { { /*x*/ 56, /*y*/ 42, /*flags*/ 0, 0 }, /*w*/ 12, /*h*/ 7, /*ret*/ 3, /*?*/ 2 }, + /* link 37 */ { { /*x*/ 56, /*y*/ 41, /*flags*/ 0, 0 }, /*w*/ 11, /*h*/ 8, /*ret*/ 3, /*?*/ 2 }, + /* link 38 */ { { /*x*/ 67, /*y*/ 33, /*flags*/ 0, 0 }, /*w*/ 12, /*h*/ 13, /*ret*/ 3, /*?*/ 2 }, + /* link 39 */ { { /*x*/ 56, /*y*/ 41, /*flags*/ 0, 0 }, /*w*/ 11, /*h*/ 8, /*ret*/ 3, /*?*/ 2 }, + /* link 40 */ { { /*x*/ 67, /*y*/ 33, /*flags*/ 0, 0 }, /*w*/ 12, /*h*/ 13, /*ret*/ 3, /*?*/ 2 }, + /* link 41 */ { { /*x*/ 68, /*y*/ 33, /*flags*/ 0, 0 }, /*w*/ 8, /*h*/ 13, /*ret*/ 3, /*?*/ 2 }, + /* link 42 */ { { /*x*/ 56, /*y*/ 42, /*flags*/ 0, 0 }, /*w*/ 12, /*h*/ 7, /*ret*/ 3, /*?*/ 2 }, + /* link 43 */ { { /*x*/ 58, /*y*/ 37, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 44 */ { { /*x*/ 58, /*y*/ 41, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 45 */ { { /*x*/ 56, /*y*/ 38, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 46 */ { { /*x*/ 94, /*y*/ 20, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 47 */ { { /*x*/ 94, /*y*/ 43, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 48 */ { { /*x*/ 35, /*y*/ 62, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 49 */ { { /*x*/ 87, /*y*/ 62, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 50 */ { { /*x*/ 26, /*y*/ 40, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 51 */ { { /*x*/ 65, /*y*/ 42, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 52 */ { { /*x*/ 65, /*y*/ 44, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 53 */ { { /*x*/ 61, /*y*/ 44, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 54 */ { { /*x*/ 59, /*y*/ 39, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 55 */ { { /*x*/ 59, /*y*/ 41, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 56 */ { { /*x*/ 60, /*y*/ 36, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 57 */ { { /*x*/ 65, /*y*/ 41, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 58 */ { { /*x*/ 61, /*y*/ 42, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 59 */ { { /*x*/ 51, /*y*/ 39, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 60 */ { { /*x*/ 57, /*y*/ 39, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 61 */ { { /*x*/ 51, /*y*/ 41, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 62 */ { { /*x*/ 57, /*y*/ 41, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 63 */ { { /*x*/ 50, /*y*/ 40, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 64 */ { { /*x*/ 60, /*y*/ 40, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 65 */ { { /*x*/ 50, /*y*/ 42, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 66 */ { { /*x*/ 60, /*y*/ 42, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 67 */ { { /*x*/ 47, /*y*/ 41, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 68 */ { { /*x*/ 56, /*y*/ 41, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 69 */ { { /*x*/ 63, /*y*/ 44, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 70 */ { { /*x*/ 63, /*y*/ 41, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 71 */ { { /*x*/ 66, /*y*/ 44, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 72 */ { { /*x*/ 66, /*y*/ 38, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 73 */ { { /*x*/ 60, /*y*/ 39, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 74 */ { { /*x*/ 59, /*y*/ 37, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 75 */ { { /*x*/ 65, /*y*/ 40, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 76 */ { { /*x*/ 39, /*y*/ 40, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 77 */ { { /*x*/ 55, /*y*/ 29, /*flags*/ 0, 0 }, /*w*/ 11, /*h*/ 9, /*ret*/ 3, /*?*/ 2 }, + /* link 78 */ { { /*x*/ 56, /*y*/ 41, /*flags*/ 0, 0 }, /*w*/ 11, /*h*/ 8, /*ret*/ 3, /*?*/ 2 }, + /* link 79 */ { { /*x*/ 68, /*y*/ 33, /*flags*/ 0, 0 }, /*w*/ 10, /*h*/ 13, /*ret*/ 3, /*?*/ 2 }, + /* link 80 */ { { /*x*/ 55, /*y*/ 29, /*flags*/ 0, 0 }, /*w*/ 11, /*h*/ 9, /*ret*/ 3, /*?*/ 2 }, + /* link 81 */ { { /*x*/ 56, /*y*/ 41, /*flags*/ 0, 0 }, /*w*/ 11, /*h*/ 8, /*ret*/ 3, /*?*/ 2 }, + /* link 82 */ { { /*x*/ 68, /*y*/ 33, /*flags*/ 0, 0 }, /*w*/ 10, /*h*/ 13, /*ret*/ 3, /*?*/ 2 }, + /* link 83 */ { { /*x*/ 57, /*y*/ 41, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 84 */ { { /*x*/ 57, /*y*/ 41, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 85 */ { { /*x*/ 60, /*y*/ 43, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 86 */ { { /*x*/ 54, /*y*/ 41, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 87 */ { { /*x*/ 57, /*y*/ 43, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 88 */ { { /*x*/ 57, /*y*/ 39, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 89 */ { { /*x*/ 57, /*y*/ 37, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 90 */ { { /*x*/ 72, /*y*/ 40, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 91 */ { { /*x*/ 35, /*y*/ 40, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 92 */ { { /*x*/ 72, /*y*/ 37, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 93 */ { { /*x*/ 72, /*y*/ 43, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 94 */ { { /*x*/ 67, /*y*/ 45, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 95 */ { { /*x*/ 59, /*y*/ 46, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 96 */ { { /*x*/ 55, /*y*/ 29, /*flags*/ 0, 0 }, /*w*/ 11, /*h*/ 9, /*ret*/ 3, /*?*/ 2 }, + /* link 97 */ { { /*x*/ 56, /*y*/ 41, /*flags*/ 0, 0 }, /*w*/ 11, /*h*/ 8, /*ret*/ 3, /*?*/ 2 }, + /* link 98 */ { { /*x*/ 68, /*y*/ 33, /*flags*/ 0, 0 }, /*w*/ 10, /*h*/ 13, /*ret*/ 3, /*?*/ 2 }, + /* link 99 */ { { /*x*/ 53, /*y*/ 41, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 100 */ { { /*x*/ 67, /*y*/ 41, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 101 */ { { /*x*/ 53, /*y*/ 39, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 102 */ { { /*x*/ 64, /*y*/ 41, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 103 */ { { /*x*/ 67, /*y*/ 38, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 104 */ { { /*x*/ 64, /*y*/ 35, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 105 */ { { /*x*/ 64, /*y*/ 38, /*flags*/ CPOS_CURRENT, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 106 */ { { /*x*/ 64, /*y*/ 21, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 107 */ { { /*x*/ 62, /*y*/ 35, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 108 */ { { /*x*/ 58, /*y*/ 35, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 109 */ { { /*x*/ 60, /*y*/ 35, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 110 */ { { /*x*/ 62, /*y*/ 35, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 111 */ { { /*x*/ 65, /*y*/ 35, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 112 */ { { /*x*/ 65, /*y*/ 42, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 113 */ { { /*x*/ 62, /*y*/ 44, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 114 */ { { /*x*/ 70, /*y*/ 42, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 115 */ { { /*x*/ 65, /*y*/ 40, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 116 */ { { /*x*/ 63, /*y*/ 41, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 117 */ { { /*x*/ 63, /*y*/ 39, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 118 */ { { /*x*/ 59, /*y*/ 40, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 119 */ { { /*x*/ 58, /*y*/ 38, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 120 */ { { /*x*/ 58, /*y*/ 42, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 121 */ { { /*x*/ 68, /*y*/ 36, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 122 */ { { /*x*/ 70, /*y*/ 38, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 123 */ { { /*x*/ 67, /*y*/ 42, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 124 */ { { /*x*/ 72, /*y*/ 37, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 125 */ { { /*x*/ 72, /*y*/ 40, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 126 */ { { /*x*/ 70, /*y*/ 42, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 127 */ { { /*x*/ 66, /*y*/ 34, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 128 */ { { /*x*/ 62, /*y*/ 35, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 129 */ { { /*x*/ 63, /*y*/ 32, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 130 */ { { /*x*/ 58, /*y*/ 34, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 131 */ { { /*x*/ 70, /*y*/ 33, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 132 */ { { /*x*/ 60, /*y*/ 44, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 133 */ { { /*x*/ 65, /*y*/ 46, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 134 */ { { /*x*/ 71, /*y*/ 45, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 135 */ { { /*x*/ 59, /*y*/ 34, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 136 */ { { /*x*/ 65, /*y*/ 20, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 137 */ { { /*x*/ 59, /*y*/ 40, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 138 */ { { /*x*/ 59, /*y*/ 35, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 139 */ { { /*x*/ 59, /*y*/ 44, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 140 */ { { /*x*/ 67, /*y*/ 44, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 141 */ { { /*x*/ 67, /*y*/ 59, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 142 */ { { /*x*/ 56, /*y*/ 41, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 143 */ { { /*x*/ 57, /*y*/ 38, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 144 */ { { /*x*/ 60, /*y*/ 41, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 145 */ { { /*x*/ 60, /*y*/ 38, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs1 = { LPARRAY(s_gs1_groups), s_gs1_links }; /* 0x817d5f8 */ diff --git a/src/data/ground/ground_data_t01p02a_station.h b/src/data/ground/ground_data_t01p02a_station.h new file mode 100644 index 000000000..9b1fecaa2 --- /dev/null +++ b/src/data/ground/ground_data_t01p02a_station.h @@ -0,0 +1,3431 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs2_g0_s0_station_sref_script[] = { /* 0x817d60c */ + DEBUGINFO, + SELECT_MAP(2), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_LE, 4, /* to label */ 0), + COND(JUDGE_LE, 5, /* to label */ 1), + COND(JUDGE_EQ, 6, /* to label */ 2), + COND(JUDGE_EQ, 7, /* to label */ 3), + COND(JUDGE_EQ, 8, /* to label */ 4), + COND(JUDGE_EQ, 9, /* to label */ 5), + COND(JUDGE_LE, 9, /* to label */ 6), + COND(JUDGE_LT, 15, /* to label */ 6), + COND(JUDGE_EQ, 15, /* to label */ 7), + COND(JUDGE_EQ, 16, /* to label */ 8), + COND(JUDGE_LT, 18, /* to label */ 9), + COND(JUDGE_EQ, 18, /* to label */ 10), + JUMP_LABEL(11), + LABEL(0), /* = 0x00 */ + CALL_STATION( 10, 0), + JUMP_LABEL(12), + LABEL(1), /* = 0x01 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 13), + COND(JUDGE_LE, 4, /* to label */ 14), + COND(JUDGE_LE, 7, /* to label */ 15), + CALL_STATION( 13, 0), + JUMP_LABEL(12), + LABEL(13), /* = 0x0d */ + CALL_STATION( 10, 0), + JUMP_LABEL(12), + LABEL(14), /* = 0x0e */ + CALL_STATION( 11, 0), + JUMP_LABEL(12), + LABEL(15), /* = 0x0f */ + CALL_STATION( 12, 0), + JUMP_LABEL(12), + LABEL(2), /* = 0x02 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 16), + CALL_STATION( 14, 0), + JUMP_LABEL(12), + LABEL(16), /* = 0x10 */ + CALL_STATION( 13, 0), + JUMP_LABEL(12), + LABEL(3), /* = 0x03 */ + CALL_STATION( 14, 0), + JUMP_LABEL(12), + LABEL(4), /* = 0x04 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 17), + CALL_STATION( 15, 0), + JUMP_LABEL(12), + LABEL(17), /* = 0x11 */ + CALL_STATION( 14, 0), + JUMP_LABEL(12), + LABEL(5), /* = 0x05 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 18), + COND(JUDGE_LE, 5, /* to label */ 19), + JUMP_LABEL(12), + LABEL(18), /* = 0x12 */ + CALL_STATION( 15, 0), + JUMP_LABEL(12), + LABEL(19), /* = 0x13 */ + CALL_STATION( 16, 0), + JUMP_LABEL(12), + LABEL(6), /* = 0x06 */ + CALL_STATION( 19, 0), + JUMP_LABEL(12), + LABEL(7), /* = 0x07 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 3, /* to label */ 20), + COND(JUDGE_LE, 5, /* to label */ 21), + COND(JUDGE_LE, 7, /* to label */ 22), + COND(JUDGE_LE, 11, /* to label */ 23), + JUMP_LABEL(24), + LABEL(20), /* = 0x14 */ + CALL_STATION( 20, 0), + JUMP_LABEL(12), + LABEL(21), /* = 0x15 */ + CALL_STATION( 21, 0), + JUMP_LABEL(12), + LABEL(22), /* = 0x16 */ + CALL_STATION( 22, 0), + JUMP_LABEL(12), + LABEL(23), /* = 0x17 */ + CALL_STATION( 23, 0), + JUMP_LABEL(12), + LABEL(24), /* = 0x18 */ + CALL_STATION( 24, 0), + JUMP_LABEL(12), + LABEL(8), /* = 0x08 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 25), + COND(JUDGE_LE, 4, /* to label */ 26), + JUMP_LABEL(27), + LABEL(25), /* = 0x19 */ + CALL_STATION( 25, 0), + JUMP_LABEL(12), + LABEL(26), /* = 0x1a */ + CALL_STATION( 26, 0), + JUMP_LABEL(12), + LABEL(27), /* = 0x1b */ + CALL_STATION( 27, 0), + JUMP_LABEL(12), + LABEL(9), /* = 0x09 */ + CALL_STATION( 27, 0), + JUMP_LABEL(12), + LABEL(10), /* = 0x0a */ + CALL_STATION( 30, 0), + JUMP_LABEL(12), + LABEL(11), /* = 0x0b */ + CALL_STATION( 1, 0), + JUMP_LABEL(12), + LABEL(12), /* = 0x0c */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 28), + COND_EQUAL(8, /* to label */ 29), + LABEL(28), /* = 0x1c */ + SELECT_LIVES(0, 1), + JUMP_LABEL(30), + LABEL(29), /* = 0x1d */ + SELECT_LIVES(0, 2), + JUMP_LABEL(30), + LABEL(30), /* = 0x1e */ + BGM_SWITCH(8), + JUMPIF_SCENARIOCHECK(6, /* to label */ 31), + JUMP_LABEL(32), + LABEL(31), /* = 0x1f */ + SELECT_EVENTS(0, 2), + LABEL(32), /* = 0x20 */ + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs2_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs2_g0_s0_station_sref_script }; /* 0x817de6c */ + +static const struct ScriptCommand s_gs2_g0_s0_evt0_sref_script[] = { /* 0x817de78 */ + DEBUGINFO, + { 0x01, 0x00, -0x0001, 0x00000001, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptRef s_gs2_g0_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs2_g0_s0_evt0_sref_script }; /* 0x817dea8 */ + +static const struct ScriptCommand s_gs2_g0_s1_lives0_dlg0[] = { /* 0x817deb4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs2_g0_s1_lives1_dlg0[] = { /* 0x817def4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs2_g0_s2_evt0_sref_script[] = { /* 0x817df34 */ + DEBUGINFO, + JUMPIF(JUDGE_GT, UNIT_SUM, 1, /* to label */ 0), + { 0x01, 0x00, -0x0001, 0x00000008, 0x00000000, NULL }, + HALT, + LABEL(0), /* = 0x00 */ + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The entrance is too narrow.\n#+There is only room for one.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Come alone to enter!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs2_g0_s2_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs2_g0_s2_evt0_sref_script }; /* 0x817e018 */ + +static const struct ScriptCommand s_gs2_g0_s2_lives0_dlg0[] = { /* 0x817e024 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs2_g0_s2_lives1_dlg0[] = { /* 0x817e064 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs2_g1_s0_station_sref_script[] = { /* 0x817e0a4 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs2_g1_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs2_g1_s0_station_sref_script }; /* 0x817e0e4 */ + +static const struct ScriptCommand s_gs2_g1_s0_lives0_dlg0[] = { /* 0x817e0f0 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g1_s0_lives0_dlg2[] = { /* 0x817e130 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000036, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x0000005e, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I went into the cave, but...#W\nI couldn't evolve into Butterfree.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That's too bad, Metapod.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I bet you weren't high\nenough in level, Metapod.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If you train and raise your\nlevel, I think you'll be able to evolve.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh, so it's my level!#W\nI get it! I'll work at leveling up!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g1_s0_lives1_dlg0[] = { /* 0x817e380 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g1_s0_lives1_dlg2[] = { /* 0x817e3c0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000036, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x0000005e, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I went into the cave, but...#W\nI couldn't evolve into Butterfree.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That's too bad, Metapod.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I bet you weren't high\nenough in level, Metapod.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If you train and raise your\nlevel, I think you'll be able to evolve.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh, so it's my level!#W\nI get it! I'll work at leveling up!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g1_s0_lives2_dlg0[] = { /* 0x817e4e0 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g1_s0_lives2_dlg2[] = { /* 0x817e520 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The Jumpluff appear to\nhave left on the winds.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I shall miss them...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g1_s0_obj0_dlg2[] = { /* 0x817e5d8 */ + DEBUGINFO, + { 0x21, 0x00, 0x0000, 0x00000062, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g2_s0_station_sref_script[] = { /* 0x817e608 */ + DEBUGINFO, + JUMPIF_EQUAL(WARP_LOCK, 0, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + JUMPIF_SCENE_EQ(SCENARIO_SUB2, 33, 3, /* to label */ 1), + JUMPIF_SCENE_EQ(SCENARIO_SUB8, 51, 1, /* to label */ 2), + JUMPIF_SCENE_EQ(SCENARIO_SUB8, 51, 3, /* to label */ 3), + JUMPIF_SCENE_EQ(SCENARIO_SUB8, 51, 5, /* to label */ 4), + JUMPIF_SCENE_EQ(SCENARIO_SUB8, 51, 6, /* to label */ 4), + JUMPIF_SCENE_LT(SCENARIO_SUB7, 49, 2, /* to label */ 5), + JUMPIF_SCENE_GT(SCENARIO_SUB7, 49, -1, /* to label */ 5), + JUMPIF_SCENE_LT(SCENARIO_SUB7, 49, 4, /* to label */ 6), + JUMPIF_SUM(JUDGE_LT, EVENT_S07E01, 11, /* to label */ 6), + LABEL(5), /* = 0x05 */ + RET_DIRECT, + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(3, 0), + RET_DIRECT, + LABEL(6), /* = 0x06 */ + SELECT_ENTITIES(4, 0), + RET_DIRECT, + LABEL(2), /* = 0x02 */ + SELECT_ENTITIES(5, 0), + RET_DIRECT, + LABEL(3), /* = 0x03 */ + SELECT_ENTITIES(7, 0), + RET_DIRECT, + LABEL(4), /* = 0x04 */ + SELECT_ENTITIES(9, 0), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs2_g2_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs2_g2_s0_station_sref_script }; /* 0x817e7e8 */ + +static const struct ScriptCommand s_gs2_g3_s0_lives0_dlg0[] = { /* 0x817e7f4 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g3_s0_lives0_dlg2[] = { /* 0x817e834 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_SCENE_GT(SCENARIO_SUB2, 33, 3, /* to label */ 0), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Ah, so you wish to know\nabout the dungeon in the sea?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I, too, have heard of it.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I have heard of a place that\nis far off our coast...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It is a sea churned by\ntorrential storms and violent waves.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It is a place appropriately\nnamed the #CDStormy Sea#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There, one will find a\ndungeon that leads to the bottom of\nthe sea.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The sea is infinitely dark,\nand its depth unimaginable.\nThat is what I have heard.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hohoho!#W\nYou look eager to go.") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" However...#W\nTo go beneath the sea, a Hidden Machine\nnamed #CIDive#R is needed.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Without #CIDive#R, you cannot\ngo to the #CDStormy Sea#R.") }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hohoho! Your face tells me\nyou are desperate to go.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" So be it.#W\nYou may have this.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x3c, 0x2c, 0x0000, 0x000000e7, 0x00000000, NULL }, + WAIT(20), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I understand that it is\na very rare item that was found in a place\ncalled the #CDSolar Cave#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you were to carry that\nHidden Machine as an item...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Or if any team member\nwishing to enter the dungeon used that\nHidden Machine to learn #CIDive#R...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You would be able to enter\nthe #CDStormy Sea#R.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + BGM_STOP, + FANFARE_PLAY(205), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Gained access to\n#+the #CDStormy Sea#R!") }, + { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Beware--you must take the HM #CIDive#R,\n#+or a team member must learn #CIDive#R\n#+as a move for the team to enter!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(8), + { 0xaf, 0x01, 0x0010, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB2, 33, 4), + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you were to carry the\nHidden Machine #CIDive#R as an item...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Or if any team member\nwishing to enter the dungeon used that\nHidden Machine to learn #CIDive#R...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You would be able to enter\nthe #CDStormy Sea#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh?#W\nWhat happens if you lose the\nHidden Machine #CIDive#R?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" All I had was the one\nI gave you...#W\nHmm... What should one do?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The Hidden Machine #CIDive#R\nwas apparently found in the #CDSolar Cave#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I suppose it wouldn't hurt\nto search there.") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hohoho.#W\nAdventures keep you young.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Why, if I were only a little\nyounger, I might have joined you on your\nadventures.") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), + RET, +}; + + + + + +static const struct ScriptCommand s_gs2_g3_s0_lives0_dlg3[] = { /* 0x817f2d4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMPIF_SCENE_GT(SCENARIO_SUB2, 33, 3, /* to label */ 0), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005d, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x8d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(12), + RET, + LABEL(0), /* = 0x00 */ + { 0x56, 0x00, 0x0000, 0x0000005d, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g3_s0_obj0_dlg2[] = { /* 0x817f474 */ + DEBUGINFO, + { 0x21, 0x00, 0x0000, 0x00000062, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g4_s0_lives0_dlg0[] = { /* 0x817f4a4 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g4_s0_lives0_dlg2[] = { /* 0x817f4e4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + SET_ARRAYVAL(EVENT_S07E01, 3, 1), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hohoho.#W\nThere is an old saying about the #CDBuried\nRelic#R.") }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Three parts there are,\nguarded by three disciples.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" When the three parts\nare gathered in hand...#W\nA mirage shall appear to the bearer...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...What this actually means,\nthere is no telling now. Hohoho.") }, + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs2_g4_s0_lives0_dlg3[] = { /* 0x817f6b8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x8d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005d, 0x00000000, NULL }, + WAIT(60), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g4_s0_obj0_dlg2[] = { /* 0x817f758 */ + DEBUGINFO, + { 0x21, 0x00, 0x0000, 0x00000062, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g5_s0_lives0_dlg2[] = { /* 0x817f788 */ + DEBUGINFO, + EXECUTE_STATION(-1, 6, 0), + HALT, +}; + +static const struct ScriptCommand s_gs2_g5_s0_lives1_dlg2[] = { /* 0x817f7b8 */ + DEBUGINFO, + EXECUTE_STATION(-1, 6, 0), + HALT, +}; + +static const struct ScriptCommand s_gs2_g5_s0_evt0_sref_script[] = { /* 0x817f7e8 */ + DEBUGINFO, + EXECUTE_STATION(-1, 6, 0), + HALT, +}; + +static const struct ScriptRef s_gs2_g5_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs2_g5_s0_evt0_sref_script }; /* 0x817f818 */ + +static const struct ScriptCommand s_gs2_g6_s0_station_sref_script[] = { /* 0x817f824 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 0), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMPIF_SCENE_GT(SCENARIO_SUB8, 51, 2, /* to label */ 0), + SCENARIO_CALC(SCENARIO_SUB8, 51, 2), + LABEL(0), /* = 0x00 */ + RET, +}; + +static const struct ScriptRef s_gs2_g6_s0_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs2_g6_s0_station_sref_script }; /* 0x817f894 */ + +static const struct ScriptCommand s_gs2_g6_s0_eff0_script[] = { /* 0x817f8a0 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs2_g6_s0_lives0_dlg0[] = { /* 0x817f910 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x95, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ........................") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ........................") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...We've found it at last!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Yesss! Find it we did!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" My wish...\nIt will finally come true!#W\nPshehehe!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Hey, now, don't forget about\nmy wish!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Listen, $n3.#W\nWe must keep this a secret just between\nthe two of us.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We can't tell any Pokémon.\nNot even Gengar.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I know that!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Let's decide on how\nwe're going to do this...#W First...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0003, 0x00000001, 0x00000000, NULL }, + CJUMP_UNK_C8(92), + COND_EQUAL(6, /* to label */ 3), + COND_EQUAL(5, /* to label */ 3), + COND_EQUAL(7, /* to label */ 3), + { 0x2e, 0x03, 0x0003, 0x00000001, 0x00000000, NULL }, + LABEL(3), /* = 0x03 */ + FANFARE_PLAY2(473), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Aiyeeeeeeeeeeeh!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I...#W\nI don't know anything!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Me too!\nI don't know a thing!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I don't know anything about\nmaking wishes come true!#W\nI know nothing!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x93, 0x08, 0x000a, 0x0000005d, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + CANCEL_EVENTS(5, 0), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + + + +static const struct ScriptCommand s_gs2_g6_s0_lives1_dlg0[] = { /* 0x818009c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g6_s0_lives2_dlg0[] = { /* 0x81800fc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005d, 0x00000000, NULL }, + WAIT(60), + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005d, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x0000000a, 0x00000000, NULL }, + WAIT(60), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(30), + CJUMP_UNK_C8(0), + COND_EQUAL(2, /* to label */ 0), + { 0x6b, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + { 0x6b, 0x00, 0x0200, 0x00000001, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0x6b, 0x00, 0x0200, 0x00000003, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x00000004, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs2_g6_s0_lives3_dlg0[] = { /* 0x818034c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005d, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x0000000a, 0x00000000, NULL }, + WAIT(60), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CJUMP_UNK_C8(0), + COND_EQUAL(2, /* to label */ 0), + { 0x6b, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + { 0x6b, 0x00, 0x0200, 0x00000002, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0x6b, 0x00, 0x0200, 0x00000003, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x00000004, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs2_g7_s0_lives0_dlg2[] = { /* 0x81804fc */ + DEBUGINFO, + EXECUTE_STATION(-1, 8, 0), + HALT, +}; + +static const struct ScriptCommand s_gs2_g7_s0_lives1_dlg2[] = { /* 0x818052c */ + DEBUGINFO, + EXECUTE_STATION(-1, 8, 0), + HALT, +}; + +static const struct ScriptCommand s_gs2_g7_s0_evt0_sref_script[] = { /* 0x818055c */ + DEBUGINFO, + EXECUTE_STATION(-1, 8, 0), + HALT, +}; + +static const struct ScriptRef s_gs2_g7_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs2_g7_s0_evt0_sref_script }; /* 0x818058c */ + +static const struct ScriptCommand s_gs2_g8_s0_station_sref_script[] = { /* 0x8180598 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 0), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMPIF_SCENE_GT(SCENARIO_SUB8, 51, 3, /* to label */ 0), + SCENARIO_CALC(SCENARIO_SUB8, 51, 4), + LABEL(0), /* = 0x00 */ + RET, +}; + +static const struct ScriptRef s_gs2_g8_s0_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs2_g8_s0_station_sref_script }; /* 0x8180608 */ + +static const struct ScriptCommand s_gs2_g8_s0_eff0_script[] = { /* 0x8180614 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs2_g8_s0_lives0_dlg0[] = { /* 0x8180674 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x95, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n3, listen.#W\nI'm thinking it is best if only we go\ninto the dungeon.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If either one of us\nfalls before the end...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh, I get it.#W\nThe other one can still go make wishes!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" That's smart, $n2!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But of course.\nI can't wait until our wishes\ncome true〜♪") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" My wish is for a broader\nlower jaw.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I want bigger jaws so I can\nswallow bigger things whole.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000003, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" My wish is for a place\nwhere I can meditate in peace〜♪") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" With no one to bother me...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It would be magnificent\nif I could meditate for a year without\nfood〜♪") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0002, 0x00000002, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0003, 0x00000001, 0x00000000, NULL }, + CJUMP_UNK_C8(92), + COND_EQUAL(6, /* to label */ 4), + COND_EQUAL(5, /* to label */ 4), + COND_EQUAL(7, /* to label */ 4), + { 0x2e, 0x03, 0x0003, 0x00000001, 0x00000000, NULL }, + LABEL(4), /* = 0x04 */ + FANFARE_PLAY2(473), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Giyaaaaaaaaaaaaaaaaah!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I...#W\nI don't know anything!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Me too!\nI don't know a thing!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I don't know anything about\na dungeon that makes wishes come true!#W\nI know nothing!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x93, 0x08, 0x000a, 0x0000005d, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + CANCEL_EVENTS(7, 0), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + + + + +static const struct ScriptCommand s_gs2_g8_s0_lives1_dlg0[] = { /* 0x8180dc0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g8_s0_lives2_dlg0[] = { /* 0x8180e20 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x0000000a, 0x00000000, NULL }, + WAIT(60), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(30), + CJUMP_UNK_C8(0), + COND_EQUAL(2, /* to label */ 0), + { 0x6b, 0x00, 0x0200, 0x00000006, 0x00000000, NULL }, + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + { 0x6b, 0x00, 0x0200, 0x00000007, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0x6b, 0x00, 0x0200, 0x00000009, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x0000000a, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs2_g8_s0_lives3_dlg0[] = { /* 0x8181010 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x0000000a, 0x00000000, NULL }, + WAIT(60), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CJUMP_UNK_C8(0), + COND_EQUAL(2, /* to label */ 0), + { 0x6b, 0x00, 0x0200, 0x00000006, 0x00000000, NULL }, + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + { 0x6b, 0x00, 0x0200, 0x00000008, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0x6b, 0x00, 0x0200, 0x00000009, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0200, 0x0000000a, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs2_g9_s0_lives0_dlg0[] = { /* 0x81811c0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g9_s0_lives0_dlg2[] = { /* 0x8181200 */ + DEBUGINFO, + EXECUTE_STATION(-1, 9, 1), + HALT, +}; + +static const struct ScriptCommand s_gs2_g9_s1_station_sref_script[] = { /* 0x8181230 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMPIF_SCENE_GT(SCENARIO_SUB8, 51, 5, /* to label */ 0), + SCENARIO_CALC(SCENARIO_SUB8, 51, 6), + LABEL(0), /* = 0x00 */ + SELECT_ENTITIES(9, 0), + RET, +}; + +static const struct ScriptRef s_gs2_g9_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs2_g9_s1_station_sref_script }; /* 0x81812b0 */ + +static const struct ScriptCommand s_gs2_g9_s1_eff0_script[] = { /* 0x81812bc */ + DEBUGINFO, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xa1, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs2_g9_s1_lives0_dlg0[] = { /* 0x818131c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...I got KO'd in that\ndungeon, but what about Medicham?\nHope she's OK...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I hope she gets to the end\nand gets my wish to come true...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(473), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Giyah!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Wh-what are you staring\nat, you?!") }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm having a hard time\ntrying to make up my mind!#W\nGet lost!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Hunh? Wait a second...\nMaybe I shouldn't be wishing for\na bigger lower jaw...?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I wonder if it'd be better\nif I could coil myself tighter...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Hmm...\nMutter...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xa1, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + + + +static const struct ScriptCommand s_gs2_g9_s1_lives1_dlg0[] = { /* 0x81816d0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g9_s1_lives2_dlg0[] = { /* 0x8181730 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x0000000a, 0x00000000, NULL }, + WAIT(60), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x92, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g10_s0_station_sref_script[] = { /* 0x8181870 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs2_g10_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs2_g10_s0_station_sref_script }; /* 0x81818a0 */ + +static const struct ScriptCommand s_gs2_g10_s0_lives0_dlg0[] = { /* 0x81818ac */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g10_s0_lives0_dlg2[] = { /* 0x81818ec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I've heard fissures have\nopened up in the ground here and there.\nThey're trouble for everyone.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It worries me to no\nend, thinking that children will fall\ndown into them...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g10_s0_obj0_dlg2[] = { /* 0x8181a20 */ + DEBUGINFO, + { 0x21, 0x00, 0x0000, 0x00000062, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g11_s0_station_sref_script[] = { /* 0x8181a50 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs2_g11_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs2_g11_s0_station_sref_script }; /* 0x8181a80 */ + +static const struct ScriptCommand s_gs2_g11_s0_lives0_dlg0[] = { /* 0x8181a8c */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g11_s0_lives0_dlg2[] = { /* 0x8181acc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I've lived in this pond for\nmany long years...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But never have I seen such\nfrequent natural disasters...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g11_s0_obj0_dlg2[] = { /* 0x8181bac */ + DEBUGINFO, + { 0x21, 0x00, 0x0000, 0x00000062, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g12_s0_station_sref_script[] = { /* 0x8181bdc */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs2_g12_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs2_g12_s0_station_sref_script }; /* 0x8181c0c */ + +static const struct ScriptCommand s_gs2_g12_s0_lives0_dlg0[] = { /* 0x8181c18 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g12_s0_lives0_dlg2[] = { /* 0x8181c58 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Seeing the innocence of\nchildren at play is a good thing.\nHohoho.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" When I was small...#W\nI was tiny...#W\nHohoho.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g12_s0_obj0_dlg2[] = { /* 0x8181d3c */ + DEBUGINFO, + { 0x21, 0x00, 0x0000, 0x00000062, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g12_s0_lives1_dlg2[] = { /* 0x8181d6c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000022, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x0000005e, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh! $n0 and\n$n2! Long time no see!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I have a new friend!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" His name is $n3.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm going to call on\n$n3 and go play in the woods!\nIt's going to be fun!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g13_s0_station_sref_script[] = { /* 0x8181ebc */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs2_g13_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs2_g13_s0_station_sref_script }; /* 0x8181eec */ + +static const struct ScriptCommand s_gs2_g13_s0_lives0_dlg0[] = { /* 0x8181ef8 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g13_s0_lives0_dlg2[] = { /* 0x8181f38 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000036, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I've not seen $n2\nor other children lately.\nI wonder how they are keeping.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Not seeing the children\ngives me a twinge of sadness...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g13_s0_obj0_dlg2[] = { /* 0x8182044 */ + DEBUGINFO, + { 0x21, 0x00, 0x0000, 0x00000062, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g14_s0_station_sref_script[] = { /* 0x8182074 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs2_g14_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs2_g14_s0_station_sref_script }; /* 0x81820a4 */ + +static const struct ScriptCommand s_gs2_g14_s0_lives0_dlg0[] = { /* 0x81820b0 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g14_s0_lives0_dlg2[] = { /* 0x81820f0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's good to see the\nyoungsters back.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I heard you saved them.#W\nGetting through the dungeon must have\nbeen very taxing on you.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm also grateful for what\nyou've done. Thank you.") }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Incidentally...#W\nI have heard of a particularly challenging\ndungeon somewhere in our world.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It starts your level at one...#W\nclears all your gained stats...#W\nand empties your Toolbox at the start.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" In other words, it forces\none to enter in a completely clean state.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It has never been conquered\nby any rescue team...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It has earned its title as\nthe #CDUltimate Dungeon#R...") }, + { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Perhaps your team will take\non that challenge one day? Hohoho!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g14_s0_obj0_dlg2[] = { /* 0x8182484 */ + DEBUGINFO, + { 0x21, 0x00, 0x0000, 0x00000062, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g14_s0_lives1_dlg2[] = { /* 0x81824b4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x0000005e, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I can play with $n2\nagain!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Thank you!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g14_s0_lives2_dlg2[] = { /* 0x818255c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000022, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0 and\n$n2, thank you!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g15_s0_station_sref_script[] = { /* 0x81825e8 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs2_g15_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs2_g15_s0_station_sref_script }; /* 0x8182618 */ + +static const struct ScriptCommand s_gs2_g15_s0_lives0_dlg0[] = { /* 0x8182624 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g15_s0_lives0_dlg2[] = { /* 0x8182664 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x00, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Seeing children at play is\nwhat I most enjoy now.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g15_s0_obj0_dlg2[] = { /* 0x8182708 */ + DEBUGINFO, + { 0x21, 0x00, 0x0000, 0x00000062, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g15_s0_lives1_dlg0[] = { /* 0x8182738 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g15_s0_lives1_dlg2[] = { /* 0x8182768 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000036, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x0000005e, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yay, $n3!\nWhat'll we do next?") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Let's play battle!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" OK, I use String Shot!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Then, I use Harden!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ahahaha!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Ahahaha!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g15_s0_lives2_dlg0[] = { /* 0x81828d4 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g15_s0_lives2_dlg2[] = { /* 0x8182904 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000036, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x0000005e, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yay, $n3!\nWhat'll we do next?") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Let's play battle!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" OK, I use String Shot!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Then, I use Harden!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ahahaha!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Ahahaha!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g16_s0_station_sref_script[] = { /* 0x81829f4 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs2_g16_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs2_g16_s0_station_sref_script }; /* 0x8182a24 */ + +static const struct ScriptCommand s_gs2_g16_s0_lives0_dlg0[] = { /* 0x8182a30 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g16_s0_lives0_dlg2[] = { /* 0x8182a70 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000063, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hohoho.\nYou wish to hear me tell old folklore?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + ASK3(FALSE, /*default*/ -1, /* speaker */ 1, _(" What was that?\nYou wish to hear the #C4$n2 legend#R?")), + CHOICE(/* label */ 1, _("Yes.")), + CHOICE(/* label */ 2, _("No.")), + LABEL(1), /* = 0x01 */ + BGM_FADEOUT(90), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hohoho. Fine, then.#W\nLet me recount the tale.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_STATION(-1, 16, 1), + HALT, + LABEL(2), /* = 0x02 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I see.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you feel the urge to hear\nmy tale, come see me anytime. Hohoho.") }, + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs2_g16_s0_obj0_dlg2[] = { /* 0x8182cb8 */ + DEBUGINFO, + { 0x21, 0x00, 0x0000, 0x00000062, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g16_s0_lives1_dlg2[] = { /* 0x8182ce8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000062, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n2 told us\nfolklore from long ago.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It was fun.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g16_s0_lives2_dlg2[] = { /* 0x8182da0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000062, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The folklore was fun and\ninteresting.#W\n$n2 is very wise.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g16_s0_eff0_script[] = { /* 0x8182e4c */ + DEBUGINFO, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs2_g16_s1_station_sref_script[] = { /* 0x8182eac */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + JUMPIF_SCENE_GT(SCENARIO_MAIN, 9, 5, /* to label */ 0), + SCENARIO_CALC(SCENARIO_MAIN, 9, 5), + LABEL(0), /* = 0x00 */ + RET, +}; + +static const struct ScriptRef s_gs2_g16_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs2_g16_s1_station_sref_script }; /* 0x8182f0c */ + +static const struct ScriptCommand s_gs2_g16_s1_lives0_dlg0[] = { /* 0x8182f18 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000063, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0004, 0x00000052, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x6b, 0x00, 0x0100, 0x0000000c, 0x00000000, NULL }, + { 0x8b, 0x1e, 0x0004, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(6), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There once lived a Pokémon\nby the name of $n2.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Now, $n2 had\nmany tails, all of them imbued with\npsychic power...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It was said that anyone so\nfoolish as to touch a tail would be cursed\nfor a thousand years.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But there was someone\nso foolish as to grab a tail.#W\nAnd it was a human.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0003, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" A human?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yes, a human.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" As one might expect, the\nhuman that grabbed the tail was subjected\nto a thousand-year curse.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" However, just when the\ncurse was cast, a Pokémon named\n$n4 shielded the human...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And sacrificed herself to\nabsorb the curse.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Why?") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Why would that Pokémon,\nGardevoir, take the human's place?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" To $n4, that human\nwas her partner.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There exist strong bonds\nbetween humans and Pokémon.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0003, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 3), + VARIANT(/* == */ 1, _(" ...All right.#W\nBut humans... Aren't there good ones and\nbad ones too?")), + VARIANT_DEFAULT(_(" ...OK.#W\nBut humans... Aren't there good humans\nand bad ones too?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Correct.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Taking pity on $n4,\n$n2 asked the human this...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" “Do you wish to save\n$n4?” it asked...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But the human had already\nabandoned $n4 and fled.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n2 became\ndisillusioned with the human...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And it made this prediction...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" “That human will one day\nbe reborn as a Pokémon...”") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(466), + CALL_SCRIPT(SHOCK_FUNC), + { 0x2e, 0x03, 0x0003, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" What?!#W\nA human turn into a Pokémon?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + FANFARE_PLAY2(470), + CALL_SCRIPT(SWEAT_FUNC), + WAIT(60), + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" “And when the human \nbecomes a Pokémon...”") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" “The world's balance will\nbe upset...”") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...And that is how the legend\nends.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Well?\nDid you find it interesting?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_FADEOUT(120), + WAIT(80), + { 0x2e, 0x03, 0x0003, 0x00000005, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ........................") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Ah-hah!#W\nYou found it so interesting, you're at\na loss for words? Hohoho.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There's no need to wear\nsuch a serious expression.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Certainly some rumors say\nthat the legend may actually be true...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But it is only ancient\nfolklore, nothing more.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you feel the urge to hear\nmy tale again, come see me. Hohoho.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(8), + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g16_s1_lives1_dlg0[] = { /* 0x8183b64 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000000d, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(466), + CALL_SCRIPT(SHOCK_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + FANFARE_PLAY2(470), + CALL_SCRIPT(SWEAT_FUNC), + WAIT(60), + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g16_s1_lives2_dlg0[] = { /* 0x8183c84 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(30), + CALL_SCRIPT(SMILE_END_FUNC), + HALT, +}; + +static const struct ScriptCommand s_gs2_g16_s1_lives2_dlg2[] = { /* 0x8183d24 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000063, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hohoho.\nYou wish to hear me tell old folklore?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + ASK3(FALSE, /*default*/ -1, /* speaker */ 1, _(" What was that?\nYou wish to hear the #C4$n2 legend#R?")), + CHOICE(/* label */ 1, _("Yes.")), + CHOICE(/* label */ 2, _("No.")), + LABEL(1), /* = 0x01 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hohoho. Fine, then.#W\nLet me recount the tale.") }, + EXECUTE_STATION(-1, 16, 1), + HALT, + LABEL(2), /* = 0x02 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I see.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you feel the urge to hear\nmy tale again, come see me anytime.\nHohoho.") }, + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs2_g17_s0_station_sref_script[] = { /* 0x8183ea0 */ + DEBUGINFO, + SELECT_MAP(2), + SELECT_ENTITIES(-1, 0), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs2_g17_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs2_g17_s0_station_sref_script }; /* 0x8183f10 */ + +static const struct ScriptCommand s_gs2_g18_s0_station_sref_script[] = { /* 0x8183f1c */ + DEBUGINFO, + SELECT_MAP(2), + SELECT_ENTITIES(-1, 0), + { 0x27, 0x01, 0x000e, 0x0000001e, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x28, 0x01, 0x000e, 0x0000001e, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs2_g18_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs2_g18_s0_station_sref_script }; /* 0x8183f8c */ + +static const struct ScriptCommand s_gs2_g18_s0_lives0_dlg0[] = { /* 0x8183f98 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000052, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes, a human.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" As one might expect, the\nhuman that grabbed the tail was subjected\nto a curse of a thousand years.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" However, just when the\ncurse was cast, a Pokémon named\n$n3 shielded the human...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And sacrificed herself to\nabsorb the curse.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Why?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Why would that Pokémon,\nGardevoir, take the human's place?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" To $n3, that human\nwas her partner.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There exist strong bonds\nbetween humans and Pokémon.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + +static const struct ScriptCommand s_gs2_g18_s0_lives1_dlg0[] = { /* 0x81841f0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs2_g18_s0_lives2_dlg0[] = { /* 0x8184230 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs2_g19_s0_station_sref_script[] = { /* 0x8184280 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs2_g19_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs2_g19_s0_station_sref_script }; /* 0x81842b0 */ + +static const struct ScriptCommand s_gs2_g19_s0_lives0_dlg0[] = { /* 0x81842bc */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g19_s0_lives0_dlg1[] = { /* 0x81842fc */ + DEBUGINFO, + JUMP_SCRIPT(MOVE_SLEEP), +}; + +static const struct ScriptCommand s_gs2_g20_s0_station_sref_script[] = { /* 0x818431c */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs2_g20_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs2_g20_s0_station_sref_script }; /* 0x818435c */ + +static const struct ScriptCommand s_gs2_g20_s0_lives0_dlg0[] = { /* 0x8184368 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g20_s0_lives0_dlg2[] = { /* 0x81843a8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I regret this...#W\nHow some old folklore I told...#W\ncould cause such an uproar...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I got carried away and\nrecounted that tale...#W\nI should've left well enough alone...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g20_s0_obj0_dlg2[] = { /* 0x81844c8 */ + DEBUGINFO, + { 0x21, 0x00, 0x0000, 0x00000062, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g20_s0_lives1_dlg0[] = { /* 0x81844f8 */ + DEBUGINFO, + JUMPIF_SCENE_EQ(SCENARIO_SUB1, 30, -1, /* to label */ 0), + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, + LABEL(0), /* = 0x00 */ + END_DELETE, +}; + +static const struct ScriptCommand s_gs2_g20_s0_lives1_dlg2[] = { /* 0x8184568 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm so glad $n0\nisn't under suspicion anymore.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g20_s0_lives2_dlg2[] = { /* 0x81845fc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I just knew $n0\ncouldn't be evil.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I hope you keep doing good\nwith your rescue work!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g21_s0_station_sref_script[] = { /* 0x81846c8 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs2_g21_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs2_g21_s0_station_sref_script }; /* 0x8184708 */ + +static const struct ScriptCommand s_gs2_g21_s0_lives0_dlg0[] = { /* 0x8184714 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g21_s0_lives0_dlg2[] = { /* 0x8184754 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wroooar!\nI can't relax!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" My whiskers...#W\nThey tell me of coming earthquakes.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And many quakes are indeed\ncoming.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g21_s0_obj0_dlg2[] = { /* 0x818484c */ + DEBUGINFO, + { 0x21, 0x00, 0x0000, 0x00000062, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g21_s0_lives1_dlg0[] = { /* 0x818487c */ + DEBUGINFO, + JUMPIF_SCENE_EQ(SCENARIO_SUB1, 30, -1, /* to label */ 0), + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, + LABEL(0), /* = 0x00 */ + END_DELETE, +}; + +static const struct ScriptCommand s_gs2_g21_s0_lives1_dlg2[] = { /* 0x81848ec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" That earthquake really\nfrightened me...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I was so scared, I spat silk\nall over the place...#W\nIt was a mess for everyone...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g21_s0_lives2_dlg2[] = { /* 0x81849e0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I hardened when the quake\nhit...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I couldn't take a step...#W\nI was just shaking inside my shell...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Waaah!\nThinking about it is scary!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g22_s0_station_sref_script[] = { /* 0x8184af0 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs2_g22_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs2_g22_s0_station_sref_script }; /* 0x8184b30 */ + +static const struct ScriptCommand s_gs2_g22_s0_lives0_dlg0[] = { /* 0x8184b3c */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g22_s0_lives0_dlg2[] = { /* 0x8184b7c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wroooar!\nI can't relax!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" My whiskers...#W\nThey tell me of coming earthquakes.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And many quakes are indeed\ncoming.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g22_s0_obj0_dlg2[] = { /* 0x8184bfc */ + DEBUGINFO, + { 0x21, 0x00, 0x0000, 0x00000062, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g22_s0_lives1_dlg0[] = { /* 0x8184c2c */ + DEBUGINFO, + JUMPIF_SCENE_EQ(SCENARIO_SUB1, 30, -1, /* to label */ 0), + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, + LABEL(0), /* = 0x00 */ + END_DELETE, +}; + +static const struct ScriptCommand s_gs2_g22_s0_lives1_dlg2[] = { /* 0x8184c9c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm terrified of all the\nearthquakes...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g22_s0_lives2_dlg2[] = { /* 0x8184d28 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I haven't relaxed from\nhardening at all...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g23_s0_station_sref_script[] = { /* 0x8184db8 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs2_g23_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs2_g23_s0_station_sref_script }; /* 0x8184df8 */ + +static const struct ScriptCommand s_gs2_g23_s0_lives0_dlg0[] = { /* 0x8184e04 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g23_s0_lives0_dlg2[] = { /* 0x8184e44 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Your words in the square\nstruck me to my heart.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I shouldn't be panicking.#W\nI have the ability to sense quakes.\nI must remain calm.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It appears I've learned\nsomething from you youngsters.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g23_s0_obj0_dlg2[] = { /* 0x8184f8c */ + DEBUGINFO, + { 0x21, 0x00, 0x0000, 0x00000062, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g23_s0_lives1_dlg0[] = { /* 0x8184fbc */ + DEBUGINFO, + JUMPIF_SCENE_EQ(SCENARIO_SUB1, 30, -1, /* to label */ 0), + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, + LABEL(0), /* = 0x00 */ + END_DELETE, +}; + +static const struct ScriptCommand s_gs2_g23_s0_lives1_dlg2[] = { /* 0x818502c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000022, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0!\nPlease take care!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We'll be OK.\nWe'll try not to be scared of the quakes!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g23_s0_lives2_dlg2[] = { /* 0x8185100 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll do my best to harden\nmyself!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g24_s0_station_sref_script[] = { /* 0x8185188 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs2_g24_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs2_g24_s0_station_sref_script }; /* 0x81851c8 */ + +static const struct ScriptCommand s_gs2_g24_s0_lives0_dlg0[] = { /* 0x81851d4 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g24_s0_lives0_dlg2[] = { /* 0x8185214 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sniffle...\nThis is so inspiring...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Pokémon have united in\ntheir efforts to rescue Alakazam's team...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I can feel their resolve...#W\nThe same feeling...from everyone.\nSniffle...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g24_s0_obj0_dlg2[] = { /* 0x818534c */ + DEBUGINFO, + { 0x21, 0x00, 0x0000, 0x00000062, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g24_s0_lives1_dlg0[] = { /* 0x818537c */ + DEBUGINFO, + JUMPIF_SCENE_EQ(SCENARIO_SUB1, 30, -1, /* to label */ 0), + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, + LABEL(0), /* = 0x00 */ + END_DELETE, +}; + +static const struct ScriptCommand s_gs2_g24_s0_lives1_dlg2[] = { /* 0x81853ec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" My mom has joined other\nPokémon to fight in the #CDMagma Cavern#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Mom is weak to fire, so it\nisn't easy for her...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But she is doing her best.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Mom also told me...#W\nIt is hard going because there are so many\nmonster houses.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If my information helps\neven a little, $n0, I'm happy.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g24_s0_lives2_dlg2[] = { /* 0x81855b8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I've hardened quite a lot!\nNo earthquake can touch me now!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g25_s0_station_sref_script[] = { /* 0x8185658 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs2_g25_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs2_g25_s0_station_sref_script }; /* 0x8185688 */ + +static const struct ScriptCommand s_gs2_g25_s0_lives0_dlg0[] = { /* 0x8185694 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g25_s0_lives0_dlg2[] = { /* 0x81856d4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" A shooting star is on\na collision course...#W\nThis is indeed a desperate time.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But there is nothing that\nI can do.#W\nAll our hopes ride with you.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I realize that it is a heavy\nburden to bear, but...#W\nwe must count on you to succeed.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g25_s0_obj0_dlg2[] = { /* 0x8185844 */ + DEBUGINFO, + { 0x21, 0x00, 0x0000, 0x00000062, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g25_s0_lives1_dlg2[] = { /* 0x8185874 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll use Harden and wait for\n$n0's team to come back!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g26_s0_station_sref_script[] = { /* 0x8185910 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs2_g26_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs2_g26_s0_station_sref_script }; /* 0x8185950 */ + +static const struct ScriptCommand s_gs2_g26_s0_lives0_dlg0[] = { /* 0x818595c */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g26_s0_lives0_dlg2[] = { /* 0x818599c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I see...\nYou are finally off.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" This journey promises to be\nharsh.\nI count on your perseverance.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g26_s0_obj0_dlg2[] = { /* 0x8185a70 */ + DEBUGINFO, + { 0x21, 0x00, 0x0000, 0x00000062, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g26_s0_lives1_dlg2[] = { /* 0x8185aa0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000022, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You're soon going...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But this is $n0\nand $n2.#W\nYou can't fail.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I believe in you.\nSo I'll be waiting for you.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g26_s0_lives2_dlg2[] = { /* 0x8185bac */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hello, I am Caterpie's\nmother. It's been a while.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You also have my support.#W\nPlease do your best. And please be careful!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g26_s0_lives3_dlg2[] = { /* 0x8185ca4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll use Harden and wait for\n$n0's team to come back!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g27_s0_station_sref_script[] = { /* 0x8185d04 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs2_g27_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs2_g27_s0_station_sref_script }; /* 0x8185d44 */ + +static const struct ScriptCommand s_gs2_g27_s0_lives0_dlg0[] = { /* 0x8185d50 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g27_s0_lives0_dlg2[] = { /* 0x8185d90 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Ah...#W The #CDSky Tower#R,\nyou say...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" In all my long years, I'd\nnot known of any world above the clouds.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The world remains a vast\nmystery...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g27_s0_obj0_dlg2[] = { /* 0x8185eac */ + DEBUGINFO, + { 0x21, 0x00, 0x0000, 0x00000062, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g27_s0_lives1_dlg2[] = { /* 0x8185edc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000022, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" This is $n0\nand $n2 after all.#W\nYou can't fail.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I believe in you.\nSo I'll be waiting for you.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g27_s0_lives2_dlg2[] = { /* 0x8185f90 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I believe too.\n$n0, don't let us down!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g27_s0_lives3_dlg2[] = { /* 0x818601c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, is that right?\nYou can climb above the clouds?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wish I could use Harden\nup on the clouds...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g28_s0_station_sref_script[] = { /* 0x81860f4 */ + DEBUGINFO, + SELECT_MAP(2), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(41), + { 0x22, 0x01, 0x002d, 0x00000000, 0x00000000, NULL }, + WAIT(240), + { 0x23, 0x01, 0x002d, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs2_g28_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs2_g28_s0_station_sref_script }; /* 0x8186174 */ + +static const struct ScriptCommand s_gs2_g28_s0_eff0_script[] = { /* 0x8186180 */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0099, 0x0000000e, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs2_g28_s0_lives0_dlg0[] = { /* 0x81861c0 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g29_s0_station_sref_script[] = { /* 0x8186200 */ + DEBUGINFO, + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 2), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 1), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(3), + SELECT_ENTITIES(-1, 0), + WAIT(30), + BGM_SWITCH(8), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + SELECT_EVENTS(0, 2), + CALL_STATION( 30, 0), + RET, +}; + +static const struct ScriptRef s_gs2_g29_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs2_g29_s0_station_sref_script }; /* 0x8186300 */ + +static const struct ScriptCommand s_gs2_g29_s0_eff0_script[] = { /* 0x818630c */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000017, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x00000018, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0200, 0x00000019, 0x00000000, NULL }, + WAIT(150), + { 0x86, 0x00, 0x0200, 0x00000018, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs2_g29_s0_lives0_dlg0[] = { /* 0x81863ec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000000f, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hi, $n4!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000010, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(468), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hey, $n4?#W\nHave you seen Snubbull around?")), + VARIANT(/* == */ 1, _(" I heard something weird\nhappened to him.")), + VARIANT_DEFAULT(_(" Hi, $n4.\nHave you seen Snubbull?")), + VARIANT_DEFAULT(_(" I heard something strange\nhappened to him.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0005, 0x00000002, 0x00000003, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" I'm Snubbull.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Whaaaat?!#W\nYou're Snubbull?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But you don't look anything\nlike the way you did before!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" I don't really understand,\neither.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" I went into the cave there,\nand all of a sudden...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What cave?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x0d, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0006, 0x00000000, -0x00000001, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" It appeared without me\nnoticing.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" See?\nRight there.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" So you went in there...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + WAIT(15), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Yup.#W\nAnd I came out looking like this...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Snubbull underwent\n“evolution.”#W\nHe evolved.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + WAIT(30), + FANFARE_PLAY2(468), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Evolution? Evolved?#W\nWhat's that about?")), + VARIANT_DEFAULT(_(" Evolution? Evolved?#W\nI don't follow.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Pokémon, upon satisfying\ncertain conditions, may evolve.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" When a Pokémon undergoes\nevolution, its appearance changes.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, wow!#W\nYour own appearance...#W\nThat can change?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I suspect that cave is where\nevolution can take place.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" This is merely a guess...") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Perhaps evolution could\nnot take place before because the world's\nbalance was askew.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" However, now that the star\nhas been destroyed...#W\nThe world's balance has been restored...") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" And perhaps that cave\nbecame unsealed.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0002, -0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" So if I evolved, I would\nbecome like $n3?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2f, 0x00, 0x0003, -0x00000001, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I wish...#W\nI want to be Butterfree quickly...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" W-wait a second.#W\nI don't know if I like this or not...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" My cute little face turned\nall craggy...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Evolution is not a bad\nthing.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Appearance isn't the only\nthing that changes through evolution.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" One's power and abilities\nmay be enhanced, for example.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Oh! Really?!#W\nI...#W I might be stronger?!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" That makes me want to\nevolve even more!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I wish I could be Butterfree\nsoon...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" M-me too!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Can we evolve if we go to\nthat cave?")), + VARIANT(/* == */ 3, _(" Can we evolve if we go to\nthat cave?")), + VARIANT_DEFAULT(_(" Can we evolve if we go to\nthat cave?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Yes.#W\nBut it would depend on the conditions.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0.#W\nWe should go to the cave if we want to\nevolve.")), + VARIANT(/* == */ 3, _(" $n0.#W\nLet's go to the cave if we're ready to\nevolve.")), + VARIANT_DEFAULT(_(" $n0.#W\nLet's go to the cave if we're ready to\nevolve.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs2_g29_s0_lives1_dlg0[] = { /* 0x8187888 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000011, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000012, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(QUESTION_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + WAIT(90), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g29_s0_lives2_dlg0[] = { /* 0x8187b78 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000013, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x6b, 0x00, 0x0100, 0x00000014, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(3), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_ANGRY_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs2_g29_s0_lives3_dlg0[] = { /* 0x8187d98 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000015, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x6b, 0x00, 0x0100, 0x00000016, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(4), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs2_g29_s0_lives4_dlg0[] = { /* 0x8187f58 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000007, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs2_g29_s0_lives5_dlg0[] = { /* 0x81880b8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x08, 0x000a, 0x00000007, 0x00000000, NULL }, + WAIT(30), + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0a, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000047, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs2_g29_s0_lives6_dlg0[] = { /* 0x81882a8 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x0c, 0x000a, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + WAIT(4), + { 0x91, 0x0c, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs2_g30_s0_station_sref_script[] = { /* 0x8188368 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs2_g30_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs2_g30_s0_station_sref_script }; /* 0x81883a8 */ + +static const struct ScriptCommand s_gs2_g30_s0_lives0_dlg2[] = { /* 0x81883b4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" First I have to evolve like\nMetapod!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g30_s0_lives1_dlg2[] = { /* 0x818843c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, I hope I can be\nButterfree soon...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g30_s0_lives2_dlg2[] = { /* 0x81884c8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I suspect that cave is where\nevolution can take place.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You should enter that cave\nif you wish to evolve.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g30_s0_lives3_dlg2[] = { /* 0x818856c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I might become\nstronger!#W\nOoh, it's exciting...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g30_s0_lives4_dlg0[] = { /* 0x8188604 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs2_g30_s0_lives4_dlg2[] = { /* 0x8188644 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" That cave's entrance\nappears rather narrow.\nOnly one may enter at a time, it seems.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you wish to enter the\ncave, you must come alone.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs2_g30_s0_obj0_dlg2[] = { /* 0x8188748 */ + DEBUGINFO, + { 0x21, 0x00, 0x0000, 0x00000062, 0x00000000, NULL }, + RET, +}; + +static const struct GroundLivesData s_gs2_g0_s1_lives[] = { /* 0x8188778 */ + /* 0 */ { 0, 4, 0, 0, { 28, 71, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 28, 73, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs2_g0_s2_lives[] = { /* 0x81887a8 */ + /* 0 */ { 0, 0, 0, 0, { 28, 27, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g0_s2_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 28, 25, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g0_s2_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs2_g1_s0_lives[] = { /* 0x81887d8 */ + /* 0 */ { 54, 6, 0, 0, { 35, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g1_s0_lives0_dlg0, + [2] = s_gs2_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 94, 2, 0, 0, { 31, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g1_s0_lives1_dlg0, + [2] = s_gs2_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 98, 0, 0, 0, { 40, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g1_s0_lives2_dlg0, + [2] = s_gs2_g1_s0_lives2_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs2_g3_s0_lives[] = { /* 0x8188820 */ + /* 0 */ { 98, 0, 0, 0, { 40, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g3_s0_lives0_dlg0, + [2] = s_gs2_g3_s0_lives0_dlg2, + [3] = s_gs2_g3_s0_lives0_dlg3, + } }, +}; + +static const struct GroundLivesData s_gs2_g4_s0_lives[] = { /* 0x8188838 */ + /* 0 */ { 98, 0, 0, 0, { 40, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g4_s0_lives0_dlg0, + [2] = s_gs2_g4_s0_lives0_dlg2, + [3] = s_gs2_g4_s0_lives0_dlg3, + } }, +}; + +static const struct GroundLivesData s_gs2_g5_s0_lives[] = { /* 0x8188850 */ + /* 0 */ { 93, 2, 0, 0, { 16, 43, 0, CPOS_HALFTILE }, { + [2] = s_gs2_g5_s0_lives0_dlg2, + } }, + /* 1 */ { 92, 6, 0, 0, { 20, 43, 0, CPOS_HALFTILE }, { + [2] = s_gs2_g5_s0_lives1_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs2_g6_s0_lives[] = { /* 0x8188880 */ + /* 0 */ { 0, 4, 0, 0, { 16, 46, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g6_s0_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 20, 46, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g6_s0_lives1_dlg0, + } }, + /* 2 */ { 93, 0, 0, 0, { 16, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g6_s0_lives2_dlg0, + } }, + /* 3 */ { 92, 0, 0, 0, { 20, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g6_s0_lives3_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs2_g7_s0_lives[] = { /* 0x81888e0 */ + /* 0 */ { 93, 2, 0, 0, { 16, 43, 0, CPOS_HALFTILE }, { + [2] = s_gs2_g7_s0_lives0_dlg2, + } }, + /* 1 */ { 92, 6, 0, 0, { 20, 43, 0, CPOS_HALFTILE }, { + [2] = s_gs2_g7_s0_lives1_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs2_g8_s0_lives[] = { /* 0x8188910 */ + /* 0 */ { 0, 2, 0, 0, { 16, 46, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g8_s0_lives0_dlg0, + } }, + /* 1 */ { 4, 2, 0, 0, { 20, 46, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g8_s0_lives1_dlg0, + } }, + /* 2 */ { 93, 2, 0, 0, { 16, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g8_s0_lives2_dlg0, + } }, + /* 3 */ { 92, 6, 0, 0, { 20, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g8_s0_lives3_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs2_g9_s0_lives[] = { /* 0x8188970 */ + /* 0 */ { 92, 6, 0, 0, { 18, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g9_s0_lives0_dlg0, + [2] = s_gs2_g9_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs2_g9_s1_lives[] = { /* 0x8188988 */ + /* 0 */ { 0, 2, 0, 0, { 16, 46, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g9_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 6, 0, 0, { 20, 46, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g9_s1_lives1_dlg0, + } }, + /* 2 */ { 92, 2, 0, 0, { 18, 43, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g9_s1_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs2_g10_s0_lives[] = { /* 0x81889d0 */ + /* 0 */ { 98, 0, 0, 0, { 28, 20, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g10_s0_lives0_dlg0, + [2] = s_gs2_g10_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs2_g11_s0_lives[] = { /* 0x81889e8 */ + /* 0 */ { 98, 0, 0, 0, { 28, 20, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g11_s0_lives0_dlg0, + [2] = s_gs2_g11_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs2_g12_s0_lives[] = { /* 0x8188a00 */ + /* 0 */ { 98, 0, 0, 0, { 28, 20, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g12_s0_lives0_dlg0, + [2] = s_gs2_g12_s0_lives0_dlg2, + } }, + /* 1 */ { 54, 0, 0, 0, { 34, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g12_s0_lives1_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs2_g13_s0_lives[] = { /* 0x8188a30 */ + /* 0 */ { 98, 0, 0, 0, { 28, 20, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g13_s0_lives0_dlg0, + [2] = s_gs2_g13_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs2_g14_s0_lives[] = { /* 0x8188a48 */ + /* 0 */ { 98, 0, 0, 0, { 28, 20, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g14_s0_lives0_dlg0, + [2] = s_gs2_g14_s0_lives0_dlg2, + } }, + /* 1 */ { 54, 2, 0, 0, { 32, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g14_s0_lives1_dlg2, + } }, + /* 2 */ { 94, 6, 0, 0, { 36, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g14_s0_lives2_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs2_g15_s0_lives[] = { /* 0x8188a90 */ + /* 0 */ { 98, 0, 0, 0, { 28, 20, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g15_s0_lives0_dlg0, + [2] = s_gs2_g15_s0_lives0_dlg2, + } }, + /* 1 */ { 54, 2, 0, 0, { 32, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g15_s0_lives1_dlg0, + [2] = s_gs2_g15_s0_lives1_dlg2, + } }, + /* 2 */ { 94, 6, 0, 0, { 36, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g15_s0_lives2_dlg0, + [2] = s_gs2_g15_s0_lives2_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs2_g16_s0_lives[] = { /* 0x8188ad8 */ + /* 0 */ { 98, 0, 0, 0, { 28, 20, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g16_s0_lives0_dlg0, + [2] = s_gs2_g16_s0_lives0_dlg2, + } }, + /* 1 */ { 54, 0, 0, 0, { 32, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g16_s0_lives1_dlg2, + } }, + /* 2 */ { 94, 0, 0, 0, { 36, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g16_s0_lives2_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs2_g16_s1_lives[] = { /* 0x8188b20 */ + /* 0 */ { 0, 4, 0, 0, { 27, 23, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g16_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 30, 23, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g16_s1_lives1_dlg0, + } }, + /* 2 */ { 98, 0, 0, 0, { 28, 20, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g16_s1_lives2_dlg0, + [2] = s_gs2_g16_s1_lives2_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs2_g18_s0_lives[] = { /* 0x8188b68 */ + /* 0 */ { 0, 4, 0, 0, { 27, 23, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g18_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 30, 23, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g18_s0_lives1_dlg0, + } }, + /* 2 */ { 98, 0, 0, 0, { 28, 20, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g18_s0_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs2_g19_s0_lives[] = { /* 0x8188bb0 */ + /* 0 */ { 98, 0, 0, 0, { 35, 29, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g19_s0_lives0_dlg0, + [1] = s_gs2_g19_s0_lives0_dlg1, + } }, +}; + +static const struct GroundLivesData s_gs2_g20_s0_lives[] = { /* 0x8188bc8 */ + /* 0 */ { 98, 0, 0, 0, { 28, 20, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g20_s0_lives0_dlg0, + [2] = s_gs2_g20_s0_lives0_dlg2, + } }, + /* 1 */ { 54, 0, 0, 0, { 32, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g20_s0_lives1_dlg0, + [2] = s_gs2_g20_s0_lives1_dlg2, + } }, + /* 2 */ { 94, 0, 0, 0, { 36, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g20_s0_lives2_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs2_g21_s0_lives[] = { /* 0x8188c10 */ + /* 0 */ { 98, 0, 0, 0, { 28, 20, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g21_s0_lives0_dlg0, + [2] = s_gs2_g21_s0_lives0_dlg2, + } }, + /* 1 */ { 54, 0, 0, 0, { 32, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g21_s0_lives1_dlg0, + [2] = s_gs2_g21_s0_lives1_dlg2, + } }, + /* 2 */ { 94, 0, 0, 0, { 36, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g21_s0_lives2_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs2_g22_s0_lives[] = { /* 0x8188c58 */ + /* 0 */ { 98, 0, 0, 0, { 28, 20, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g22_s0_lives0_dlg0, + [2] = s_gs2_g22_s0_lives0_dlg2, + } }, + /* 1 */ { 54, 0, 0, 0, { 32, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g22_s0_lives1_dlg0, + [2] = s_gs2_g22_s0_lives1_dlg2, + } }, + /* 2 */ { 94, 0, 0, 0, { 36, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g22_s0_lives2_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs2_g23_s0_lives[] = { /* 0x8188ca0 */ + /* 0 */ { 98, 0, 0, 0, { 28, 20, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g23_s0_lives0_dlg0, + [2] = s_gs2_g23_s0_lives0_dlg2, + } }, + /* 1 */ { 54, 0, 0, 0, { 32, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g23_s0_lives1_dlg0, + [2] = s_gs2_g23_s0_lives1_dlg2, + } }, + /* 2 */ { 94, 0, 0, 0, { 36, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g23_s0_lives2_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs2_g24_s0_lives[] = { /* 0x8188ce8 */ + /* 0 */ { 98, 0, 0, 0, { 28, 20, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g24_s0_lives0_dlg0, + [2] = s_gs2_g24_s0_lives0_dlg2, + } }, + /* 1 */ { 54, 0, 0, 0, { 32, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g24_s0_lives1_dlg0, + [2] = s_gs2_g24_s0_lives1_dlg2, + } }, + /* 2 */ { 94, 0, 0, 0, { 36, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g24_s0_lives2_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs2_g25_s0_lives[] = { /* 0x8188d30 */ + /* 0 */ { 98, 0, 0, 0, { 28, 20, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g25_s0_lives0_dlg0, + [2] = s_gs2_g25_s0_lives0_dlg2, + } }, + /* 1 */ { 94, 0, 0, 0, { 36, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g25_s0_lives1_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs2_g26_s0_lives[] = { /* 0x8188d60 */ + /* 0 */ { 98, 0, 0, 0, { 28, 20, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g26_s0_lives0_dlg0, + [2] = s_gs2_g26_s0_lives0_dlg2, + } }, + /* 1 */ { 54, 0, 0, 0, { 35, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g26_s0_lives1_dlg2, + } }, + /* 2 */ { 53, 0, 0, 0, { 31, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g26_s0_lives2_dlg2, + } }, + /* 3 */ { 94, 0, 0, 0, { 39, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g26_s0_lives3_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs2_g27_s0_lives[] = { /* 0x8188dc0 */ + /* 0 */ { 98, 0, 0, 0, { 28, 20, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g27_s0_lives0_dlg0, + [2] = s_gs2_g27_s0_lives0_dlg2, + } }, + /* 1 */ { 54, 0, 0, 0, { 35, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g27_s0_lives1_dlg2, + } }, + /* 2 */ { 53, 0, 0, 0, { 31, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g27_s0_lives2_dlg2, + } }, + /* 3 */ { 94, 0, 0, 0, { 39, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g27_s0_lives3_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs2_g28_s0_lives[] = { /* 0x8188e20 */ + /* 0 */ { 98, 0, 0, 0, { 28, 20, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g28_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs2_g29_s0_lives[] = { /* 0x8188e38 */ + /* 0 */ { 0, 4, 0, 0, { 30, 65, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g29_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 27, 65, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g29_s0_lives1_dlg0, + } }, + /* 2 */ { 54, 4, 0, 0, { 27, 68, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g29_s0_lives2_dlg0, + } }, + /* 3 */ { 94, 4, 0, 0, { 30, 69, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g29_s0_lives3_dlg0, + } }, + /* 4 */ { 88, 4, 0, 0, { 34, 39, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g29_s0_lives4_dlg0, + } }, + /* 5 */ { 81, 4, 0, 0, { 38, 39, 0, CPOS_HALFTILE }, { + [0] = s_gs2_g29_s0_lives5_dlg0, + } }, + /* 6 */ { 98, 0, 0, 0, { 40, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g29_s0_lives6_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs2_g30_s0_lives[] = { /* 0x8188ee0 */ + /* 0 */ { 54, 3, 0, 0, { 33, 44, 0, CPOS_HALFTILE }, { + [2] = s_gs2_g30_s0_lives0_dlg2, + } }, + /* 1 */ { 94, 4, 0, 0, { 39, 44, 0, CPOS_HALFTILE }, { + [2] = s_gs2_g30_s0_lives1_dlg2, + } }, + /* 2 */ { 88, 0, 0, 0, { 34, 39, 0, CPOS_HALFTILE }, { + [2] = s_gs2_g30_s0_lives2_dlg2, + } }, + /* 3 */ { 81, 0, 0, 0, { 38, 39, 0, CPOS_HALFTILE }, { + [2] = s_gs2_g30_s0_lives3_dlg2, + } }, + /* 4 */ { 98, 0, 0, 0, { 40, 33, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs2_g30_s0_lives4_dlg0, + [2] = s_gs2_g30_s0_lives4_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs2_g1_s0_objs[] = { /* 0x8188f58 */ + /* 0 */ { 4, 0, 3, 1, { 40, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g1_s0_obj0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs2_g3_s0_objs[] = { /* 0x8188f70 */ + /* 0 */ { 4, 0, 3, 1, { 40, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g3_s0_obj0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs2_g4_s0_objs[] = { /* 0x8188f88 */ + /* 0 */ { 4, 0, 3, 1, { 40, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g4_s0_obj0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs2_g10_s0_objs[] = { /* 0x8188fa0 */ + /* 0 */ { 4, 0, 3, 1, { 28, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g10_s0_obj0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs2_g11_s0_objs[] = { /* 0x8188fb8 */ + /* 0 */ { 4, 0, 3, 1, { 28, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g11_s0_obj0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs2_g12_s0_objs[] = { /* 0x8188fd0 */ + /* 0 */ { 4, 0, 3, 1, { 28, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g12_s0_obj0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs2_g13_s0_objs[] = { /* 0x8188fe8 */ + /* 0 */ { 4, 0, 3, 1, { 28, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g13_s0_obj0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs2_g14_s0_objs[] = { /* 0x8189000 */ + /* 0 */ { 4, 0, 3, 1, { 28, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g14_s0_obj0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs2_g15_s0_objs[] = { /* 0x8189018 */ + /* 0 */ { 4, 0, 3, 1, { 28, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g15_s0_obj0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs2_g16_s0_objs[] = { /* 0x8189030 */ + /* 0 */ { 4, 0, 3, 1, { 28, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g16_s0_obj0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs2_g20_s0_objs[] = { /* 0x8189048 */ + /* 0 */ { 4, 0, 3, 1, { 28, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g20_s0_obj0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs2_g21_s0_objs[] = { /* 0x8189060 */ + /* 0 */ { 4, 0, 3, 1, { 28, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g21_s0_obj0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs2_g22_s0_objs[] = { /* 0x8189078 */ + /* 0 */ { 4, 0, 3, 1, { 28, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g22_s0_obj0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs2_g23_s0_objs[] = { /* 0x8189090 */ + /* 0 */ { 4, 0, 3, 1, { 28, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g23_s0_obj0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs2_g24_s0_objs[] = { /* 0x81890a8 */ + /* 0 */ { 4, 0, 3, 1, { 28, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g24_s0_obj0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs2_g25_s0_objs[] = { /* 0x81890c0 */ + /* 0 */ { 4, 0, 3, 1, { 28, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g25_s0_obj0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs2_g26_s0_objs[] = { /* 0x81890d8 */ + /* 0 */ { 4, 0, 3, 1, { 28, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g26_s0_obj0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs2_g27_s0_objs[] = { /* 0x81890f0 */ + /* 0 */ { 4, 0, 3, 1, { 28, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g27_s0_obj0_dlg2, + } }, +}; + +static const struct GroundObjectData s_gs2_g30_s0_objs[] = { /* 0x8189108 */ + /* 0 */ { 4, 0, 3, 1, { 40, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs2_g30_s0_obj0_dlg2, + } }, +}; + +static const struct GroundEffectData s_gs2_g6_s0_effs[] = { /* 0x8189120 */ + /* 0 */ { 0, 0, 1, 1, { 18, 46, 0, 0 }, s_gs2_g6_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs2_g8_s0_effs[] = { /* 0x818912c */ + /* 0 */ { 0, 0, 1, 1, { 18, 46, 0, 0 }, s_gs2_g8_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs2_g9_s1_effs[] = { /* 0x8189138 */ + /* 0 */ { 0, 0, 1, 1, { 18, 46, 0, 0 }, s_gs2_g9_s1_eff0_script }, +}; + +static const struct GroundEffectData s_gs2_g16_s0_effs[] = { /* 0x8189144 */ + /* 0 */ { 0, 0, 1, 1, { 28, 22, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs2_g16_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs2_g18_s0_effs[] = { /* 0x8189150 */ + /* 0 */ { 0, 0, 1, 1, { 28, 22, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs2_g28_s0_effs[] = { /* 0x818915c */ + /* 0 */ { 0, 0, 1, 1, { 28, 40, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs2_g28_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs2_g29_s0_effs[] = { /* 0x8189168 */ + /* 0 */ { 0, 0, 1, 1, { 28, 64, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs2_g29_s0_eff0_script }, +}; + +static const struct GroundEventData s_gs2_g0_s0_evts[] = { /* 0x8189174 */ + /* 0 */ { 9, 3, 0, 0, { 24, 75, 0, 0 }, &s_gs2_g0_s0_evt0_sref }, +}; + +static const struct GroundEventData s_gs2_g0_s2_evts[] = { /* 0x8189180 */ + /* 0 */ { 3, 3, 0, 0, { 27, 22, 0, 0 }, &s_gs2_g0_s2_evt0_sref }, +}; + +static const struct GroundEventData s_gs2_g5_s0_evts[] = { /* 0x818918c */ + /* 0 */ { 9, 5, 0, 0, { 14, 41, 0, 0 }, &s_gs2_g5_s0_evt0_sref }, +}; + +static const struct GroundEventData s_gs2_g7_s0_evts[] = { /* 0x8189198 */ + /* 0 */ { 9, 5, 0, 0, { 14, 41, 0, 0 }, &s_gs2_g7_s0_evt0_sref }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x81891a4 */ + &s_gs2_g0_s0_station_sref, + &s_gs2_g1_s0_station_sref, + &s_gs2_g2_s0_station_sref, + &s_gs2_g6_s0_station_sref, + &s_gs2_g8_s0_station_sref, + &s_gs2_g9_s1_station_sref, + &s_gs2_g10_s0_station_sref, + &s_gs2_g11_s0_station_sref, + &s_gs2_g12_s0_station_sref, + &s_gs2_g13_s0_station_sref, + &s_gs2_g14_s0_station_sref, + &s_gs2_g15_s0_station_sref, + &s_gs2_g16_s0_station_sref, + &s_gs2_g16_s1_station_sref, + &s_gs2_g17_s0_station_sref, + &s_gs2_g18_s0_station_sref, + &s_gs2_g19_s0_station_sref, + &s_gs2_g20_s0_station_sref, + &s_gs2_g21_s0_station_sref, + &s_gs2_g22_s0_station_sref, + &s_gs2_g23_s0_station_sref, + &s_gs2_g24_s0_station_sref, + &s_gs2_g25_s0_station_sref, + &s_gs2_g26_s0_station_sref, + &s_gs2_g27_s0_station_sref, + &s_gs2_g28_s0_station_sref, + &s_gs2_g29_s0_station_sref, + &s_gs2_g30_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs2_g0_sectors[] = { /* 0x8189214 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs2_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs2_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs2_g0_s2_lives), 0,NULL, 0,NULL, LPARRAY(s_gs2_g0_s2_evts), 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs2_g1_sectors[] = { /* 0x818928c */ + { LPARRAY(s_gs2_g1_s0_lives), LPARRAY(s_gs2_g1_s0_objs), 0,NULL, 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs2_g2_sectors[] = { /* 0x81892b4 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptSector s_gs2_g3_sectors[] = { /* 0x81892dc */ + { LPARRAY(s_gs2_g3_s0_lives), LPARRAY(s_gs2_g3_s0_objs), 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs2_g4_sectors[] = { /* 0x8189304 */ + { LPARRAY(s_gs2_g4_s0_lives), LPARRAY(s_gs2_g4_s0_objs), 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs2_g5_sectors[] = { /* 0x818932c */ + { LPARRAY(s_gs2_g5_s0_lives), 0,NULL, 0,NULL, LPARRAY(s_gs2_g5_s0_evts), 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs2_g6_sectors[] = { /* 0x8189354 */ + { LPARRAY(s_gs2_g6_s0_lives), 0,NULL, LPARRAY(s_gs2_g6_s0_effs), 0,NULL, 1,&sStationScripts[3], }, +}; + +static const struct GroundScriptSector s_gs2_g7_sectors[] = { /* 0x818937c */ + { LPARRAY(s_gs2_g7_s0_lives), 0,NULL, 0,NULL, LPARRAY(s_gs2_g7_s0_evts), 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs2_g8_sectors[] = { /* 0x81893a4 */ + { LPARRAY(s_gs2_g8_s0_lives), 0,NULL, LPARRAY(s_gs2_g8_s0_effs), 0,NULL, 1,&sStationScripts[4], }, +}; + +static const struct GroundScriptSector s_gs2_g9_sectors[] = { /* 0x81893cc */ + { LPARRAY(s_gs2_g9_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs2_g9_s1_lives), 0,NULL, LPARRAY(s_gs2_g9_s1_effs), 0,NULL, 1,&sStationScripts[5], }, +}; + +static const struct GroundScriptSector s_gs2_g10_sectors[] = { /* 0x818941c */ + { LPARRAY(s_gs2_g10_s0_lives), LPARRAY(s_gs2_g10_s0_objs), 0,NULL, 0,NULL, 1,&sStationScripts[6], }, +}; + +static const struct GroundScriptSector s_gs2_g11_sectors[] = { /* 0x8189444 */ + { LPARRAY(s_gs2_g11_s0_lives), LPARRAY(s_gs2_g11_s0_objs), 0,NULL, 0,NULL, 1,&sStationScripts[7], }, +}; + +static const struct GroundScriptSector s_gs2_g12_sectors[] = { /* 0x818946c */ + { LPARRAY(s_gs2_g12_s0_lives), LPARRAY(s_gs2_g12_s0_objs), 0,NULL, 0,NULL, 1,&sStationScripts[8], }, +}; + +static const struct GroundScriptSector s_gs2_g13_sectors[] = { /* 0x8189494 */ + { LPARRAY(s_gs2_g13_s0_lives), LPARRAY(s_gs2_g13_s0_objs), 0,NULL, 0,NULL, 1,&sStationScripts[9], }, +}; + +static const struct GroundScriptSector s_gs2_g14_sectors[] = { /* 0x81894bc */ + { LPARRAY(s_gs2_g14_s0_lives), LPARRAY(s_gs2_g14_s0_objs), 0,NULL, 0,NULL, 1,&sStationScripts[10], }, +}; + +static const struct GroundScriptSector s_gs2_g15_sectors[] = { /* 0x81894e4 */ + { LPARRAY(s_gs2_g15_s0_lives), LPARRAY(s_gs2_g15_s0_objs), 0,NULL, 0,NULL, 1,&sStationScripts[11], }, +}; + +static const struct GroundScriptSector s_gs2_g16_sectors[] = { /* 0x818950c */ + { LPARRAY(s_gs2_g16_s0_lives), LPARRAY(s_gs2_g16_s0_objs), LPARRAY(s_gs2_g16_s0_effs), 0,NULL, 1,&sStationScripts[12], }, + { LPARRAY(s_gs2_g16_s1_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[13], }, +}; + +static const struct GroundScriptSector s_gs2_g17_sectors[] = { /* 0x818955c */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[14], }, +}; + +static const struct GroundScriptSector s_gs2_g18_sectors[] = { /* 0x8189584 */ + { LPARRAY(s_gs2_g18_s0_lives), 0,NULL, LPARRAY(s_gs2_g18_s0_effs), 0,NULL, 1,&sStationScripts[15], }, +}; + +static const struct GroundScriptSector s_gs2_g19_sectors[] = { /* 0x81895ac */ + { LPARRAY(s_gs2_g19_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[16], }, +}; + +static const struct GroundScriptSector s_gs2_g20_sectors[] = { /* 0x81895d4 */ + { LPARRAY(s_gs2_g20_s0_lives), LPARRAY(s_gs2_g20_s0_objs), 0,NULL, 0,NULL, 1,&sStationScripts[17], }, +}; + +static const struct GroundScriptSector s_gs2_g21_sectors[] = { /* 0x81895fc */ + { LPARRAY(s_gs2_g21_s0_lives), LPARRAY(s_gs2_g21_s0_objs), 0,NULL, 0,NULL, 1,&sStationScripts[18], }, +}; + +static const struct GroundScriptSector s_gs2_g22_sectors[] = { /* 0x8189624 */ + { LPARRAY(s_gs2_g22_s0_lives), LPARRAY(s_gs2_g22_s0_objs), 0,NULL, 0,NULL, 1,&sStationScripts[19], }, +}; + +static const struct GroundScriptSector s_gs2_g23_sectors[] = { /* 0x818964c */ + { LPARRAY(s_gs2_g23_s0_lives), LPARRAY(s_gs2_g23_s0_objs), 0,NULL, 0,NULL, 1,&sStationScripts[20], }, +}; + +static const struct GroundScriptSector s_gs2_g24_sectors[] = { /* 0x8189674 */ + { LPARRAY(s_gs2_g24_s0_lives), LPARRAY(s_gs2_g24_s0_objs), 0,NULL, 0,NULL, 1,&sStationScripts[21], }, +}; + +static const struct GroundScriptSector s_gs2_g25_sectors[] = { /* 0x818969c */ + { LPARRAY(s_gs2_g25_s0_lives), LPARRAY(s_gs2_g25_s0_objs), 0,NULL, 0,NULL, 1,&sStationScripts[22], }, +}; + +static const struct GroundScriptSector s_gs2_g26_sectors[] = { /* 0x81896c4 */ + { LPARRAY(s_gs2_g26_s0_lives), LPARRAY(s_gs2_g26_s0_objs), 0,NULL, 0,NULL, 1,&sStationScripts[23], }, +}; + +static const struct GroundScriptSector s_gs2_g27_sectors[] = { /* 0x81896ec */ + { LPARRAY(s_gs2_g27_s0_lives), LPARRAY(s_gs2_g27_s0_objs), 0,NULL, 0,NULL, 1,&sStationScripts[24], }, +}; + +static const struct GroundScriptSector s_gs2_g28_sectors[] = { /* 0x8189714 */ + { LPARRAY(s_gs2_g28_s0_lives), 0,NULL, LPARRAY(s_gs2_g28_s0_effs), 0,NULL, 1,&sStationScripts[25], }, +}; + +static const struct GroundScriptSector s_gs2_g29_sectors[] = { /* 0x818973c */ + { LPARRAY(s_gs2_g29_s0_lives), 0,NULL, LPARRAY(s_gs2_g29_s0_effs), 0,NULL, 1,&sStationScripts[26], }, +}; + +static const struct GroundScriptSector s_gs2_g30_sectors[] = { /* 0x8189764 */ + { LPARRAY(s_gs2_g30_s0_lives), LPARRAY(s_gs2_g30_s0_objs), 0,NULL, 0,NULL, 1,&sStationScripts[27], }, +}; + +static const struct GroundScriptGroup s_gs2_groups[] = { /* 0x818978c */ + { LPARRAY(s_gs2_g0_sectors) }, + { LPARRAY(s_gs2_g1_sectors) }, + { LPARRAY(s_gs2_g2_sectors) }, + { LPARRAY(s_gs2_g3_sectors) }, + { LPARRAY(s_gs2_g4_sectors) }, + { LPARRAY(s_gs2_g5_sectors) }, + { LPARRAY(s_gs2_g6_sectors) }, + { LPARRAY(s_gs2_g7_sectors) }, + { LPARRAY(s_gs2_g8_sectors) }, + { LPARRAY(s_gs2_g9_sectors) }, + { LPARRAY(s_gs2_g10_sectors) }, + { LPARRAY(s_gs2_g11_sectors) }, + { LPARRAY(s_gs2_g12_sectors) }, + { LPARRAY(s_gs2_g13_sectors) }, + { LPARRAY(s_gs2_g14_sectors) }, + { LPARRAY(s_gs2_g15_sectors) }, + { LPARRAY(s_gs2_g16_sectors) }, + { LPARRAY(s_gs2_g17_sectors) }, + { LPARRAY(s_gs2_g18_sectors) }, + { LPARRAY(s_gs2_g19_sectors) }, + { LPARRAY(s_gs2_g20_sectors) }, + { LPARRAY(s_gs2_g21_sectors) }, + { LPARRAY(s_gs2_g22_sectors) }, + { LPARRAY(s_gs2_g23_sectors) }, + { LPARRAY(s_gs2_g24_sectors) }, + { LPARRAY(s_gs2_g25_sectors) }, + { LPARRAY(s_gs2_g26_sectors) }, + { LPARRAY(s_gs2_g27_sectors) }, + { LPARRAY(s_gs2_g28_sectors) }, + { LPARRAY(s_gs2_g29_sectors) }, + { LPARRAY(s_gs2_g30_sectors) }, +}; + +static const struct GroundLink s_gs2_links[] = { /* 0x8189884 */ + /* link 0 */ { { /*x*/ 28, /*y*/ 43, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 1 */ { { /*x*/ 16, /*y*/ 48, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 2 */ { { /*x*/ 20, /*y*/ 48, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 3 */ { { /*x*/ 28, /*y*/ 48, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 4 */ { { /*x*/ 28, /*y*/ 60, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 5 */ { { /*x*/ 18, /*y*/ 43, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 3 }, + /* link 6 */ { { /*x*/ 28, /*y*/ 43, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 7 */ { { /*x*/ 16, /*y*/ 48, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 8 */ { { /*x*/ 20, /*y*/ 48, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 9 */ { { /*x*/ 28, /*y*/ 48, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 10 */ { { /*x*/ 28, /*y*/ 60, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 11 */ { { /*x*/ 18, /*y*/ 43, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 3 }, + /* link 12 */ { { /*x*/ 27, /*y*/ 23, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 13 */ { { /*x*/ 30, /*y*/ 23, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 14 */ { { /*x*/ 28, /*y*/ 9, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 15 */ { { /*x*/ 30, /*y*/ 49, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 16 */ { { /*x*/ 38, /*y*/ 42, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 17 */ { { /*x*/ 27, /*y*/ 49, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 18 */ { { /*x*/ 34, /*y*/ 42, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 19 */ { { /*x*/ 27, /*y*/ 51, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 20 */ { { /*x*/ 33, /*y*/ 44, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 21 */ { { /*x*/ 30, /*y*/ 51, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 22 */ { { /*x*/ 39, /*y*/ 44, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 23 */ { { /*x*/ 28, /*y*/ 48, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 24 */ { { /*x*/ 35, /*y*/ 42, /*flags*/ CPOS_HALFTILE, 0 }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 25 */ { { /*x*/ 28, /*y*/ 24, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs2 = { LPARRAY(s_gs2_groups), s_gs2_links }; /* 0x8189954 */ diff --git a/src/data/ground/ground_data_t01p03_station.h b/src/data/ground/ground_data_t01p03_station.h new file mode 100644 index 000000000..b8de3531a --- /dev/null +++ b/src/data/ground/ground_data_t01p03_station.h @@ -0,0 +1,3954 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs4_g0_s0_station_sref_script[] = { /* 0x8189968 */ + DEBUGINFO, + SELECT_MAP(4), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_LT, 4, /* to label */ 0), + COND(JUDGE_EQ, 4, /* to label */ 1), + COND(JUDGE_EQ, 5, /* to label */ 2), + COND(JUDGE_EQ, 6, /* to label */ 3), + COND(JUDGE_EQ, 7, /* to label */ 4), + COND(JUDGE_EQ, 8, /* to label */ 5), + COND(JUDGE_EQ, 9, /* to label */ 6), + COND(JUDGE_LT, 15, /* to label */ 7), + COND(JUDGE_EQ, 15, /* to label */ 8), + COND(JUDGE_EQ, 16, /* to label */ 9), + COND(JUDGE_LT, 18, /* to label */ 10), + COND(JUDGE_EQ, 18, /* to label */ 11), + JUMP_LABEL(12), + LABEL(1), /* = 0x01 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 3, /* to label */ 13), + JUMP_LABEL(14), + LABEL(13), /* = 0x0d */ + JUMP_SCRIPT(EVENT_M01E02B_L003), + LABEL(14), /* = 0x0e */ + CALL_STATION( 13, 0), + JUMP_LABEL(0), + LABEL(2), /* = 0x02 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 15), + COND(JUDGE_LE, 4, /* to label */ 16), + SELECT_ENTITIES(15, 0), + JUMP_LABEL(0), + LABEL(15), /* = 0x0f */ + CALL_STATION( 13, 0), + JUMP_LABEL(0), + LABEL(16), /* = 0x10 */ + SELECT_ENTITIES(14, 0), + JUMP_LABEL(0), + LABEL(3), /* = 0x03 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 17), + CALL_STATION( 16, 0), + JUMP_LABEL(0), + LABEL(17), /* = 0x11 */ + CALL_STATION( 15, 0), + JUMP_LABEL(0), + LABEL(4), /* = 0x04 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 18), + CALL_STATION( 17, 0), + JUMP_LABEL(0), + LABEL(18), /* = 0x12 */ + CALL_STATION( 16, 0), + JUMP_LABEL(0), + LABEL(5), /* = 0x05 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 1, /* to label */ 19), + CALL_STATION( 18, 0), + JUMP_LABEL(0), + LABEL(19), /* = 0x13 */ + CALL_STATION( 17, 0), + JUMP_LABEL(0), + LABEL(6), /* = 0x06 */ + CALL_STATION( 18, 0), + JUMP_LABEL(0), + LABEL(7), /* = 0x07 */ + JUMP_LABEL(0), + LABEL(8), /* = 0x08 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 3, /* to label */ 20), + COND(JUDGE_LE, 5, /* to label */ 21), + COND(JUDGE_LE, 7, /* to label */ 22), + COND(JUDGE_LE, 11, /* to label */ 23), + JUMP_LABEL(24), + LABEL(20), /* = 0x14 */ + CALL_STATION( 19, 0), + JUMP_LABEL(0), + LABEL(21), /* = 0x15 */ + CALL_STATION( 20, 0), + JUMP_LABEL(0), + LABEL(22), /* = 0x16 */ + CALL_STATION( 21, 0), + JUMP_LABEL(0), + LABEL(23), /* = 0x17 */ + CALL_STATION( 22, 0), + JUMP_LABEL(0), + LABEL(24), /* = 0x18 */ + CALL_STATION( 23, 0), + JUMP_LABEL(0), + LABEL(9), /* = 0x09 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND(JUDGE_LE, 2, /* to label */ 25), + COND(JUDGE_LE, 4, /* to label */ 26), + JUMP_LABEL(27), + LABEL(25), /* = 0x19 */ + CALL_STATION( 24, 0), + JUMP_LABEL(0), + LABEL(26), /* = 0x1a */ + CALL_STATION( 25, 0), + JUMP_LABEL(0), + LABEL(27), /* = 0x1b */ + CALL_STATION( 26, 0), + JUMP_LABEL(0), + LABEL(10), /* = 0x0a */ + CALL_STATION( 26, 0), + JUMP_LABEL(0), + LABEL(11), /* = 0x0b */ + CALL_STATION( 28, 0), + JUMP_LABEL(0), + LABEL(12), /* = 0x0c */ + CALL_STATION( 1, 0), + JUMP_LABEL(0), + LABEL(0), /* = 0x00 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 28), + COND_EQUAL(5, /* to label */ 29), + SELECT_LIVES(0, 4), + JUMP_LABEL(31), + LABEL(28), /* = 0x1c */ + SELECT_LIVES(0, 1), + JUMP_LABEL(31), + LABEL(29), /* = 0x1d */ + SELECT_LIVES(0, 2), + JUMP_LABEL(31), + LABEL(31), /* = 0x1f */ + BGM_SWITCH(7), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs4_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs4_g0_s0_station_sref_script }; /* 0x818a174 */ + + +static const struct ScriptCommand s_gs4_g0_s0_evt0_sref_script[] = { /* 0x818a180 */ + DEBUGINFO, + { 0x01, 0x00, -0x0001, 0x00000001, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptRef s_gs4_g0_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs4_g0_s0_evt0_sref_script }; /* 0x818a1b0 */ + +static const struct ScriptCommand s_gs4_g0_s0_evt1_sref_script[] = { /* 0x818a1bc */ + DEBUGINFO, + { 0x01, 0x00, -0x0001, 0x00000005, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptRef s_gs4_g0_s0_evt1_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs4_g0_s0_evt1_sref_script }; /* 0x818a1ec */ + +static const struct ScriptCommand s_gs4_g0_s0_obj0_dlg2[] = { /* 0x818a1f8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xaf, 0x01, 0x000d, 0x00000000, 0x00000000, NULL }, + { 0x3c, 0x20, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 0), + COND_EQUAL(2, /* to label */ 1), + COND_EQUAL(3, /* to label */ 2), + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S01E01A_L002), + HALT, + LABEL(1), /* = 0x01 */ + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S01E02A_L001), + HALT, + LABEL(2), /* = 0x02 */ + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S08E01A_L005B), + HALT, +}; + +static const struct ScriptCommand s_gs4_g0_s0_lives0_dlg0[] = { /* 0x818a358 */ + DEBUGINFO, + JUMPIF_EQUAL(SCENARIO_MAIN, 11, /* to label */ 0), + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x000001e0, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x60, 0x00, 0x0000, 0x00000018, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0x53, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + WAIT(15), + { 0x68, 0x00, 0x0100, 0x00000018, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x1e, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0x7a, 0x00, 0x012c, 0x00000001, 0x00000000, NULL }, + { 0x7a, 0x00, 0x012c, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x1e, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x68, 0x00, 0x0100, 0x00000008, 0x00000000, NULL }, + WAIT(15), + { 0x52, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + WAIT(300), + JUMP_LABEL(1), + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + RET, + LABEL(0), /* = 0x00 */ + END_DELETE, +}; + +static const struct ScriptCommand s_gs4_g0_s0_lives1_dlg0[] = { /* 0x818a4f8 */ + DEBUGINFO, + JUMPIF_EQUAL(SCENARIO_MAIN, 11, /* to label */ 0), + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x000001e0, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x60, 0x00, 0x0000, 0x00000018, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + WAIT(90), + { 0x7a, 0x00, 0x012c, 0x00000002, 0x00000000, NULL }, + { 0x91, 0x1e, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x68, 0x00, 0x0100, 0x00000008, 0x00000000, NULL }, + WAIT(15), + { 0x52, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + WAIT(300), + { 0x53, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + WAIT(15), + { 0x68, 0x00, 0x0100, 0x00000018, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x1e, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0x7a, 0x00, 0x012c, 0x00000003, 0x00000000, NULL }, + JUMP_LABEL(1), + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + RET, + LABEL(0), /* = 0x00 */ + END_DELETE, +}; + +static const struct ScriptCommand s_gs4_g0_s1_lives0_dlg0[] = { /* 0x818a6a8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs4_g0_s1_lives1_dlg0[] = { /* 0x818a6e8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs4_g0_s2_lives0_dlg0[] = { /* 0x818a728 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs4_g0_s2_lives1_dlg0[] = { /* 0x818a768 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs4_g0_s3_lives0_dlg0[] = { /* 0x818a7a8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs4_g0_s3_lives1_dlg0[] = { /* 0x818a7e8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs4_g0_s4_lives0_dlg0[] = { /* 0x818a828 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs4_g0_s4_lives1_dlg0[] = { /* 0x818a868 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs4_g1_s0_station_sref_script[] = { /* 0x818a8a8 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 0), + JUMPIF_ARRAY(EVENT_T01P03, 1, /* to label */ 0), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + SELECT_ENTITIES(-1, 2), + LABEL(1), /* = 0x01 */ + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs4_g1_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs4_g1_s0_station_sref_script }; /* 0x818a938 */ + +static const struct ScriptCommand s_gs4_g1_s0_lives0_dlg2[] = { /* 0x818a944 */ + DEBUGINFO, + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs4_g1_s0_lives1_dlg2[] = { /* 0x818a974 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" My #C5Team Hydro#R is Bronze\nRank.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We need to do better.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g1_s0_lives2_dlg2[] = { /* 0x818aa20 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Our #C5Team Rumblerock#R\nis famous for savagery...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But we're actually only\nNormal Rank.#W\nIt's an embarrassment...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g1_s0_lives3_dlg2[] = { /* 0x818ab0c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_UNK_BD(118, /* to label */ 0), /* likely "is friend area unlocked" (by GroundEnter id) */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Darlings, did you know?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Every so often, there are\nrescue jobs that reward you with a new\nFriend Area...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Well, lately there've been\nrumors about a new Friend Area!#W\nThe #CHSky Blue Plains#R, they say!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Just maybe, getting that\nFriend Area could be the start of\nsomething enchanting.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Darlings, if you spot rescue\njobs that seem promising, you should\ntry them!") }, + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Darlings, I'll have you know\nthat my #C5Team Constrictor#R is actually\nSilver Rank.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Not too bad, is it?#W\nWe surprise people with our excellence.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g1_s0_lives4_dlg0[] = { /* 0x818ae1c */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB7, 49, 2, /* to label */ 0), + JUMPIF_SCENE_GT(SCENARIO_SUB7, 49, -1, /* to label */ 0), + JUMPIF_SCENE_LT(SCENARIO_SUB7, 49, 4, /* to label */ 1), + JUMPIF_SUM(JUDGE_LT, EVENT_S07E01, 11, /* to label */ 1), + LABEL(0), /* = 0x00 */ + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, + LABEL(1), /* = 0x01 */ + END_DELETE, +}; + +static const struct ScriptCommand s_gs4_g1_s0_lives4_dlg2[] = { /* 0x818aecc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + JUMPIF_ARRAY(EVENT_T01P03, 2, /* to label */ 0), + { 0x3b, 0x35, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 1), + COND_EQUAL(2, /* to label */ 2), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, hello!\nDid you know?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Somewhere in the world\nthere is an extremely rare Pokémon...#W\nnamed Chansey.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" This is what they say about\nChansey...#W If you are lucky enough to\nmeet one, you will be filled with happiness.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wonder what sort of\na Pokémon it is.#W\nWouldn't you like to meet one, even once?") }, + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............#WOh-oh-oh?!#W\nYou've met Chansey?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" That is so lucky!\nWhat are the chances of that?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, my gosh!\nHow wonderful for you!\nHow I envy you!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wish I could meet Chansey\nand be filled with happiness...") }, + JUMP_SCRIPT(END_TALK), + LABEL(2), /* = 0x02 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, hello!\nDid you know?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Somewhere in the world\nthere is an extremely rare Pokémon...#W\nnamed Chansey.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" This is what they say about\nChansey.#W If you are lucky enough to meet\none, you will be filled with happiness.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wonder what sort of\na Pokémon it is.#W Wouldn't you like to meet\none, even once?#W Wait a second...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Waaaaaaaaaaaaaaaaaaaah!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You're...#W\nMaybe...#W Chansey?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You are! You really are!#W\nI'm so lucky!") }, + SET_ARRAYVAL(EVENT_T01P03, 2, 1), + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, my gosh...\nI've finally met you...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm bursting with happiness!#W\nOh, I am so lucky!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g1_s0_lives4_dlg3[] = { /* 0x818b4d4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMPIF_ARRAY(EVENT_T01P03, 2, /* to label */ 1), + { 0x3b, 0x35, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 1), + COND_EQUAL(2, /* to label */ 2), + LABEL(1), /* = 0x01 */ + { 0x8d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(12), + RET, + LABEL(2), /* = 0x02 */ + { 0x8d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(465), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(12), + RET, +}; + + +static const struct ScriptCommand s_gs4_g1_s1_station_sref_script[] = { /* 0x818b624 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 2), + RET, +}; + +static const struct ScriptRef s_gs4_g1_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs4_g1_s1_station_sref_script }; /* 0x818b674 */ + +static const struct ScriptCommand s_gs4_g1_s1_eff0_script[] = { /* 0x818b680 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x86, 0x00, 0x0100, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs4_g1_s1_lives0_dlg0[] = { /* 0x818b710 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" (Papa still hasn't come\nhome...)") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Our son!#W\nSorry to make you wait!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...Oh!#W\nThat voice!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(453), + { 0x97, 0x00, 0x0002, 0x00000003, 0x00000002, NULL }, + WAIT(120), + FANFARE_STOP2(453), + { 0x97, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Get set!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ha!") }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ha!") }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ha!") }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ha!") }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ha!") }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2b, 0x00, 0x0000, -0x00000001, -0x00000001, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Papa!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Our son, we're sorry for\ncausing you anxiety.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Papa.#W\nWhere were you?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We were traveling the\nworld.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The world is vast.#W\nThere are countless Pokémon around the\nworld that are unknown in these areas.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" That's why you were gone...#W\nPapa, did you see all the Pokémon that\naren't known in these areas?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................#W\nOf course.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What do you take us for?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh! Of course!#W\nPapa, you're so special!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + SET_ARRAYVAL(EVENT_T01P03, 1, 1), + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g1_s1_lives1_dlg0[] = { /* 0x818bfec */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g1_s1_lives2_dlg0[] = { /* 0x818c05c */ + DEBUGINFO, + { 0x57, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x54, 0x00, 0x0400, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x00000005, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + FANFARE_PLAY2(454), + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(486), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x00000006, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(454), + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(486), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x00000007, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(454), + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(486), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x00000008, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(454), + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(486), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x5b, 0x00, 0x0000, 0x00000009, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(454), + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x57, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g1_s1_lives3_dlg0[] = { /* 0x818c4dc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(15), + CALL_SCRIPT(LOOK_AROUND_FUNC), + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SMILE_START_FUNC), + WAIT(60), + CALL_SCRIPT(SMILE_END_FUNC), + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000400, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g1_s2_station_sref_script[] = { /* 0x818c72c */ + DEBUGINFO, + SELECT_ENTITIES(-1, 2), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs4_g1_s2_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs4_g1_s2_station_sref_script }; /* 0x818c75c */ + +static const struct ScriptCommand s_gs4_g1_s2_lives0_dlg2[] = { /* 0x818c768 */ + DEBUGINFO, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What do you take us for?!#W\n...Uh, er... Um, yes.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g1_s2_lives1_dlg2[] = { /* 0x818c7f0 */ + DEBUGINFO, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" My papa is so special!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g2_s0_station_sref_script[] = { /* 0x818c858 */ + DEBUGINFO, + JUMPIF_EQUAL(WARP_LOCK, 0, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + JUMPIF_SCENE_EQ(SCENARIO_SUB9, 53, 1, /* to label */ 1), + JUMPIF_SCENE_EQ(SCENARIO_SUB9, 53, 2, /* to label */ 2), + JUMPIF_SCENE_EQ(SCENARIO_SUB8, 51, 7, /* to label */ 3), + JUMPIF_SCENE_EQ(SCENARIO_SUB8, 51, 8, /* to label */ 3), + RET_DIRECT, + LABEL(3), /* = 0x03 */ + SELECT_ENTITIES(6, 0), + RET_DIRECT, + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(8, 0), + RET_DIRECT, + LABEL(2), /* = 0x02 */ + SELECT_ENTITIES(10, 0), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs4_g2_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs4_g2_s0_station_sref_script }; /* 0x818c978 */ + +static const struct ScriptCommand s_gs4_g3_s0_station_sref_script[] = { /* 0x818c984 */ + DEBUGINFO, + SELECT_MAP(4), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(7), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs4_g3_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs4_g3_s0_station_sref_script }; /* 0x818ca04 */ + +static const struct ScriptCommand s_gs4_g3_s0_eff0_script[] = { /* 0x818ca10 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs4_g3_s0_lives0_dlg0[] = { /* 0x818ca80 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There was a job posted on\nthe Bulletin Board which said, “Punish bad\n#CNMankey#R.”") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Did you two put up that job?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yup, yup!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0003, 0x00000041, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wobbuffet!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" A bad Mankey gang is going\nwild in our forest.\nEveryone is upset.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wobbuffet!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We don't know why they\nrampage around...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But they are always angry\nand attack anyone they see!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wobbuffet!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Hmm... That is a problem.")), + VARIANT_DEFAULT(_(" Oh, no... That is a problem.")), + { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" $n0, we should go.")), + VARIANT_DEFAULT(_(" $n0, we should go.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Thank you!\nWe're counting on you!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wobbuffet!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The place where the Mankey gang\n#+is wreaking havoc on others...") }, + BGM_STOP, + FANFARE_PLAY(205), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The #CDUproar Forest#R is now\n#+open for exploration!") }, + { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + + + +static const struct ScriptCommand s_gs4_g3_s0_lives1_dlg0[] = { /* 0x818d208 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6a, 0x00, 0x0100, -0x00000050, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g3_s0_lives2_dlg0[] = { /* 0x818d328 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000007, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g3_s0_lives3_dlg0[] = { /* 0x818d3c8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g4_s0_lives0_dlg2[] = { /* 0x818d588 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + ASK3( TRUE, /*default*/ 0, /* speaker */ -1, _("Activate sub-scenario 1-2\n“Team Flag”?")), + CHOICE(/* label */ 1, _("Activate.")), + CHOICE(/* label */ 2, _("*Cancel.")), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_S01E02A_L001), + CANCEL_ENTITIES(4, 0), + JUMP_SCRIPT(END_TALK), +}; + + +static const struct ScriptCommand s_gs4_g5_s0_station_sref_script[] = { /* 0x818d6ac */ + DEBUGINFO, + SELECT_MAP(4), + WAIT(30), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(7), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs4_g5_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs4_g5_s0_station_sref_script }; /* 0x818d74c */ + +static const struct ScriptCommand s_gs4_g5_s0_lives0_dlg0[] = { /* 0x818d758 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" “Smeargle's desperate plea,“\nhuh...?#W\nThat's some title.")), + VARIANT(/* == */ 1, _(" What's it say?#W\nCan you read it?")), + VARIANT_DEFAULT(_(" “Smeargle's desperate plea,”\nhuh...?#W\nThat's quite the title.")), + VARIANT_DEFAULT(_(" What does it say?#W\nCan you read it?")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 read the letter.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("“Please allow me to introduce myself.\nMy name is Smeargle.") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("I once had aspirations of becoming\nan artist.") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("Then, one day...#W\nThere was an incident of an unforgivable\nnature...") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("I fled because I didn't want to become an\nadult.#W\nBut then I lost my way...") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("I now find myself in this forest, unable to\nextricate myself...") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("I am lost in the #CDHowling Forest#R!#W\nSomebody!#W Please save me!”") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" .............#W\nIt says he ran away because he didn't want\nto be an adult...#W What's up with that?")), + VARIANT(/* == */ 1, _(" I don't really get it, but...#W\nWell, let's go rescue this Smeargle!")), + VARIANT_DEFAULT(_(" .............#W\nHe ran away because he didn't want to\nbecome an adult...#W What's that about?")), + VARIANT_DEFAULT(_(" I don't really get this...#W\nBut let's go rescue this Smeargle anyway!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The forest in which Smeargle\n#+is thought to have gone missing...") }, + BGM_STOP, + FANFARE_PLAY(205), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The #CDHowling Forest#R\n#+is now open for exploration!") }, + { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + + + + +static const struct ScriptCommand s_gs4_g5_s0_lives1_dlg0[] = { /* 0x818def4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g6_s0_lives0_dlg0[] = { /* 0x818dfd4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + WAIT(90), + { 0x54, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(0), + RET, +}; + +static const struct ScriptCommand s_gs4_g6_s0_lives0_dlg2[] = { /* 0x818e0a4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, no...\nMedicham went down...\nWhat should I do...?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If I went, I'd only last a\nlittle while... Oh, no...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(1), + SELECT_LIVES(6, 0), + { 0xe4, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs4_g6_s0_lives0_dlg3[] = { /* 0x818e248 */ + DEBUGINFO, + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x92, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + WAIT(5), + { 0x92, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + WAIT(5), + { 0x92, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x92, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + WAIT(5), + { 0x92, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + WAIT(5), + { 0x92, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g7_s0_station_sref_script[] = { /* 0x818e3b8 */ + DEBUGINFO, + SELECT_MAP(4), + WAIT(30), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(7), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + WAIT(30), + RET, +}; + +static const struct ScriptRef s_gs4_g7_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs4_g7_s0_station_sref_script }; /* 0x818e458 */ + +static const struct ScriptCommand s_gs4_g7_s0_lives0_dlg0[] = { /* 0x818e464 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 read the SOS Mail\n#+apparently sent by Medicham.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("“My name is Medicham.") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("We had no trouble entering this dungeon...#W\nBut it's horrible here!\nIt is much too difficult!") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("Ekans, he was defeated right away.\nIt makes me want to scream!") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("Somebody!#W\nPlease help me!") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("The place is the #CDWish Cave#R.") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("The reward is a secret〜♪#W\nBut it's really very nice--you can be\nsure of that〜♪”") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The place in which Medicham\n#+is thought to have gone missing...") }, + BGM_STOP, + FANFARE_PLAY(205), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The #CDWish Cave#R is now\n#+open for exploration!") }, + { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g7_s0_lives1_dlg0[] = { /* 0x818e800 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g7_s0_lives2_dlg0[] = { /* 0x818e840 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g7_s0_lives3_dlg0[] = { /* 0x818e880 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g7_s0_lives4_dlg0[] = { /* 0x818e8c0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + WAIT(90), + { 0x54, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0011, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(0), + HALT, +}; + +static const struct ScriptCommand s_gs4_g8_s0_lives0_dlg0[] = { /* 0x818e990 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g8_s0_lives0_dlg2[] = { /* 0x818e9e0 */ + DEBUGINFO, + EXECUTE_STATION(-1, 9, 0), + HALT, +}; + +static const struct ScriptCommand s_gs4_g8_s0_lives1_dlg0[] = { /* 0x818ea10 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g8_s0_lives1_dlg2[] = { /* 0x818ea60 */ + DEBUGINFO, + EXECUTE_STATION(-1, 9, 0), + HALT, +}; + +static const struct ScriptCommand s_gs4_g9_s0_station_sref_script[] = { /* 0x818ea90 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(10, 0), + EXECUTE_FUNCTION(EVENT_S09E01A_L002), + RET, +}; + +static const struct ScriptRef s_gs4_g9_s0_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs4_g9_s0_station_sref_script }; /* 0x818eaf0 */ + +static const struct ScriptCommand s_gs4_g9_s0_lives0_dlg0[] = { /* 0x818eafc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005d, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + ASK3(FALSE, /*default*/ -1, /* speaker */ 2, _(" Say, sweetie.#W\nHave you seen Gengar around?")), + CHOICE(/* label */ 2, _("Yes.")), + CHOICE(/* label */ 3, _("No.")), + LABEL(2), /* = 0x02 */ + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0002, 0x00000042, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hunh? You did?#W\n...Wh-where?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(45), + { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................#W\nOh, you're just joking.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(3), /* = 0x03 */ + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), + { 0x2e, 0x15, 0x0002, 0x00000046, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Oh, OK.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x93, 0x04, 0x000a, 0x0000005c, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Something seems to be\nwrong with Gengar lately.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" He won't do anything wicked\nwith us anymore...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I wonder what's wrong with\nhim?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Yeah... He looks like he has\na lot on his mind...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005d, 0x00000000, NULL }, + { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You think so?#W\nHis expression...\nIt looks the same as usual, no?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" All I have seen is him\nlaughing in his usual mean way?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005c, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" No, it's different.#W\nI can tell.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" The way he sets his mouth.\nIt's different just a little at the corners.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Hmm...#W\nPerhaps that is so.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005d, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Anyway, without Gengar\naround, #C5Team Meanies#R can't operate.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Such a vexing problem!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + + + + + + + + + +static const struct ScriptCommand s_gs4_g9_s0_lives1_dlg0[] = { /* 0x818f284 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g9_s0_lives2_dlg0[] = { /* 0x818f2e4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 1, /* to label */ 0), + CALL_SCRIPT(JUMP_SURPRISE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMPIF(JUDGE_EQ, EVENT_LOCAL, 0, /* to label */ 0), + LABEL(0), /* = 0x00 */ + { 0x93, 0x04, 0x000a, 0x0000005c, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + + +static const struct ScriptCommand s_gs4_g9_s0_lives3_dlg0[] = { /* 0x818f434 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x0000005d, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g10_s0_lives0_dlg2[] = { /* 0x818f4f4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Anyway, without Gengar\naround, #C5Team Meanies#R can't operate.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Such a vexing problem!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g10_s0_lives1_dlg2[] = { /* 0x818f564 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Something seems to be\nwrong with Gengar lately.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g11_s0_station_sref_script[] = { /* 0x818f5c4 */ + DEBUGINFO, + { 0x3c, 0x22, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 0), + COND_EQUAL(2, /* to label */ 1), + COND_EQUAL(3, /* to label */ 2), + BGM_FADEOUT(60), + WAIT(60), + RET, + LABEL(0), /* = 0x00 */ + WAIT(60), + SELECT_MAP(4), + SELECT_ENTITIES(-1, 0), + SELECT_ENTITIES(-1, 3), + JUMP_LABEL(3), + LABEL(1), /* = 0x01 */ + WAIT(60), + SELECT_MAP(4), + SELECT_ENTITIES(-1, 0), + SELECT_ENTITIES(-1, 4), + JUMP_LABEL(3), + LABEL(2), /* = 0x02 */ + WAIT(60), + SELECT_MAP(4), + SELECT_ENTITIES(-1, 0), + SELECT_ENTITIES(-1, 5), + JUMP_LABEL(3), + LABEL(3), /* = 0x03 */ + JUMPIF_EQUAL(PARTNER1_KIND, 0, /* to label */ 4), + SELECT_ENTITIES(-1, 1), + JUMP_LABEL(5), + LABEL(4), /* = 0x04 */ + SELECT_ENTITIES(-1, 2), + JUMP_LABEL(5), + LABEL(5), /* = 0x05 */ + BGM_SWITCH(7), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs4_g11_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs4_g11_s0_station_sref_script }; /* 0x818f834 */ + + +static const struct ScriptCommand s_gs4_g11_s1_lives0_dlg0[] = { /* 0x818f840 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x3c, 0x23, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g11_s1_lives1_dlg0[] = { /* 0x818f8e0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g11_s2_lives0_dlg0[] = { /* 0x818f920 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3c, 0x23, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g11_s3_lives0_dlg0[] = { /* 0x818f9b0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g11_s4_lives0_dlg0[] = { /* 0x818fa00 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0e, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g11_s5_lives0_dlg0[] = { /* 0x818fa50 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0c, 0x0002, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g11_s5_lives1_dlg0[] = { /* 0x818faa0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g12_s0_station_sref_script[] = { /* 0x818faf0 */ + DEBUGINFO, + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 4), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 1), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + SELECT_MAP(4), + SELECT_ENTITIES(-1, -1), + CANCEL_LIVES(0, 0), + BGM_SWITCH(7), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + SELECT_LIVES(0, 0), + { 0xaf, 0x01, 0x000d, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs4_g12_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs4_g12_s0_station_sref_script }; /* 0x818fbe0 */ + +static const struct ScriptCommand s_gs4_g12_s0_eff0_script[] = { /* 0x818fbec */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x7a, 0x00, 0x008c, 0x0000000a, 0x00000000, NULL }, + FANFARE_PLAY2(451), + WAIT(150), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + FANFARE_STOP2(451), + { 0x7a, 0x00, 0x003c, 0x0000000b, 0x00000000, NULL }, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + END_DELETE, +}; + +static const struct ScriptCommand s_gs4_g12_s0_lives0_dlg0[] = { /* 0x818fcdc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x50, 0x00cc, 0x00000002, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Over there... The\n#C5Pelipper Post Office#R.")), + VARIANT_DEFAULT(_(" That building is the\n#C5Pelipper Post Office#R.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000000c, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" This is where information\nis gathered from Pokémon needing rescue\nin all sorts of places.")), + VARIANT_DEFAULT(_(" This is where information\nis gathered from Pokémon needing rescue\nin various locations.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Take a look at this!\nSee this Bulletin Board?")), + VARIANT_DEFAULT(_(" See?\nHave a look at this Bulletin Board.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x8b, 0x14, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It lists rescue jobs.\nCheck it out?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3c, 0x20, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" See?\nThere were jobs listed, right?")), + VARIANT(/* == */ 1, _(" If you want to go on a\nrescue, you first choose the job by\nselecting it with #C6Accept#R...")), + VARIANT(/* == */ 1, _(" Then, on the #C5Job List#R,\nchoose the job, then confirm it with\n#C6Take Job#R to go on that rescue mission.")), + VARIANT(/* == */ 1, _(" If you don't select #C6Take Job#R,\nyou won't be able to do the rescue job even\nif you go to the dungeon.")), + VARIANT(/* == */ 1, _(" For the time being, we\nshould just stick with the jobs posted\nhere.")), + VARIANT(/* == */ 1, _(" Our team'll become known\nafter we do some rescue jobs.")), + VARIANT(/* == */ 1, _(" I bet we'll get job offers\nin our Mailbox soon.")), + VARIANT(/* == */ 3, _(" See?\nThere were jobs listed, right?")), + VARIANT(/* == */ 3, _(" If you want to do a rescue\njob, you first select it with #C6Accept#R...")), + VARIANT(/* == */ 3, _(" Then, on the #C5Job List#R,\nchoose the job, then confirm it with\n#C6Take Job#R to go on that rescue mission.")), + VARIANT(/* == */ 3, _(" If you don't select #C6Take Job#R,\nyou can't do that rescue job even if you go\nto the dungeon. Be careful!")), + VARIANT(/* == */ 3, _(" While we're starting out,\nwe should handle the jobs that are posted\nhere.")), + VARIANT(/* == */ 3, _(" Doing that should get our\nteam some recognition.")), + VARIANT(/* == */ 3, _(" That should pull in job\noffers to our Mailbox soon.")), + VARIANT_DEFAULT(_(" See?\nThere were jobs listed, right?")), + VARIANT_DEFAULT(_(" To do a rescue job, you first\nselect it with #C6Accept#R...")), + VARIANT_DEFAULT(_(" Then, on the #C5Job List#R,\nchoose the job, then confirm it with\n#C6Take Job#R to go on that rescue mission.")), + VARIANT_DEFAULT(_(" If you don't select #C6Take Job#R,\nyou can't do that rescue job even if you go\nto the dungeon.")), + VARIANT_DEFAULT(_(" Since we're just starting up,\nwe should handle the jobs that are posted\nhere.")), + VARIANT_DEFAULT(_(" Our team name will get\nbetter known by doing that.")), + VARIANT_DEFAULT(_(" I think that will bring\njob offers to our Mailbox.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" And if you want to take on\na rescue job...")), + VARIANT(/* == */ 1, _(" Choose the job on the #C5Job\nList#R...#W Then, select #C6Take Job#R.#W\nGet in the habit of doing that regularly!")), + VARIANT(/* == */ 3, _(" And if you want to go on\na rescue mission...")), + VARIANT(/* == */ 3, _(" Choose the job on the #C5Job\nList#R...#W Then, select #C6Take Job#R.#W\nDon't forget to do that before you leave!")), + VARIANT_DEFAULT(_(" And if you want to go on\na rescue mission...")), + VARIANT_DEFAULT(_(" Choose the job on the #C5Job\nList#R...#W Then, select #C6Take Job#R.#W\nTry to always do that before you leave!")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + +static const struct ScriptCommand s_gs4_g12_s0_lives1_dlg0[] = { /* 0x81909bc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x89, 0x50, 0x00cc, 0x00000002, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x0000000d, 0x00000000, NULL }, + WAIT(20), + { 0x8e, 0x14, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x8b, 0x14, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe5, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g12_s0_lives2_dlg0[] = { /* 0x8190aec */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x60, 0x00, 0x0000, 0x00000008, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x68, 0x00, 0x0100, 0x00000018, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x1e, 0x000a, 0x00000006, 0x00000000, NULL }, + WAIT(15), + { 0x7a, 0x00, 0x0078, 0x0000000e, 0x00000000, NULL }, + WAIT(15), + END_DELETE, + RET, +}; + +static const struct ScriptCommand s_gs4_g12_s0_lives3_dlg0[] = { /* 0x8190bec */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x60, 0x00, 0x0000, 0x00000018, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + WAIT(160), + { 0x7a, 0x00, 0x0078, 0x0000000f, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x1e, 0x000a, 0x00000000, 0x00000000, NULL }, + WAIT(15), + { 0x68, 0x00, 0x0100, 0x00000008, 0x00000000, NULL }, + WAIT(15), + END_DELETE, + RET, +}; + +static const struct ScriptCommand s_gs4_g13_s0_station_sref_script[] = { /* 0x8190cec */ + DEBUGINFO, + RET_DIRECT, +}; + +static const struct ScriptRef s_gs4_g13_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs4_g13_s0_station_sref_script }; /* 0x8190d0c */ + +static const struct ScriptCommand s_gs4_g14_s0_station_sref_script[] = { /* 0x8190d18 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs4_g14_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs4_g14_s0_station_sref_script }; /* 0x8190d48 */ + +static const struct ScriptCommand s_gs4_g15_s0_station_sref_script[] = { /* 0x8190d54 */ + DEBUGINFO, + RET_DIRECT, +}; + +static const struct ScriptRef s_gs4_g15_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs4_g15_s0_station_sref_script }; /* 0x8190d74 */ + +static const struct ScriptCommand s_gs4_g16_s0_station_sref_script[] = { /* 0x8190d80 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs4_g16_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs4_g16_s0_station_sref_script }; /* 0x8190db0 */ + +static const struct ScriptCommand s_gs4_g16_s0_lives0_dlg2[] = { /* 0x8190dbc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Did you know that you get\na reward if you complete a rescue job?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Some Pokémon run rescue\nteams because they want the rewards.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g16_s0_lives1_dlg0[] = { /* 0x8190eb0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g16_s0_lives1_dlg2[] = { /* 0x8190ef0 */ + DEBUGINFO, + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs4_g16_s0_lives2_dlg0[] = { /* 0x8190f20 */ + DEBUGINFO, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g16_s0_lives2_dlg2[] = { /* 0x8190f60 */ + DEBUGINFO, + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs4_g16_s1_station_sref_script[] = { /* 0x8190f90 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 1), + RET, +}; + +static const struct ScriptRef s_gs4_g16_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs4_g16_s1_station_sref_script }; /* 0x8190fc0 */ + +static const struct ScriptCommand s_gs4_g16_s1_lives0_dlg0[] = { /* 0x8190fcc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000042, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000044, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What do you think, our son?\nIsn't the sea vast?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Yes, Papa.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Papa?#W\nPapa, have you ever gone out to sea?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................#W\nOf course.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What do you take us for?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh! You have!#W\nPapa, you're so special!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g16_s1_lives1_dlg0[] = { /* 0x8191244 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g16_s1_lives1_dlg2[] = { /* 0x81912f4 */ + DEBUGINFO, + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs4_g16_s1_lives2_dlg0[] = { /* 0x8191324 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g16_s1_lives2_dlg2[] = { /* 0x81913c4 */ + DEBUGINFO, + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs4_g17_s0_station_sref_script[] = { /* 0x81913f4 */ + DEBUGINFO, + SELECT_ENTITIES(-1, -1), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs4_g17_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs4_g17_s0_station_sref_script }; /* 0x8191424 */ + +static const struct ScriptCommand s_gs4_g17_s0_lives0_dlg0[] = { /* 0x8191430 */ + DEBUGINFO, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g17_s0_lives0_dlg2[] = { /* 0x8191470 */ + DEBUGINFO, + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs4_g17_s0_lives1_dlg0[] = { /* 0x81914a0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g17_s0_lives1_dlg2[] = { /* 0x81914e0 */ + DEBUGINFO, + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs4_g17_s1_station_sref_script[] = { /* 0x8191510 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 1), + RET, +}; + +static const struct ScriptRef s_gs4_g17_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs4_g17_s1_station_sref_script }; /* 0x8191540 */ + +static const struct ScriptCommand s_gs4_g17_s1_lives0_dlg0[] = { /* 0x819154c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000042, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000044, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What do you think, our son?\nIsn't the sea vast?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Yes, Papa.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Papa?#W\nPapa, have you ever gone out to sea?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................#W\nOf course.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What do you take us for?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh! You have!#W\nPapa, you're so special!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g17_s1_lives1_dlg0[] = { /* 0x819171c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g17_s1_lives1_dlg2[] = { /* 0x81917cc */ + DEBUGINFO, + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs4_g17_s1_lives2_dlg0[] = { /* 0x81917fc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g17_s1_lives2_dlg2[] = { /* 0x819189c */ + DEBUGINFO, + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs4_g18_s0_station_sref_script[] = { /* 0x81918cc */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_MAIN, 9, 4, /* to label */ 0), + SELECT_ENTITIES(-1, -1), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + SELECT_ENTITIES(-1, -1), + SELECT_LIVES(-1, 1), + LABEL(1), /* = 0x01 */ + RET_DIRECT, +}; + +static const struct ScriptRef s_gs4_g18_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs4_g18_s0_station_sref_script }; /* 0x819195c */ + +static const struct ScriptCommand s_gs4_g18_s0_lives0_dlg2[] = { /* 0x8191968 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000042, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000044, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ............Papa said they've\ngone to sea before...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" .........(Does that mean Papa\ncan swim...?)") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + ASK3( TRUE, /*default*/ -1, /* speaker */ 3, _(" $n0.#W\n$n0, can you swim?")), + CHOICE(/* label */ 0, _("Yes.")), + CHOICE(/* label */ 1, _("No.")), + LABEL(0), /* = 0x00 */ + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh.\nSo you can swim too, $n0...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" OK!\nI'm going to try hard to swim too!") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh.\nSo you can't swim either, $n0...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" But that's natural.\nSwimming isn't very easy.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" My papa is special!\nI'm going to try hard to swim too!") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g18_s0_lives0_dlg3[] = { /* 0x8191c7c */ + DEBUGINFO, + { 0x2d, 0x09, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x0a, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g18_s1_lives0_dlg2[] = { /* 0x8191d1c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You know what?\nThe jobs on the Bulletin Board...") }, + ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" You can do several rescue\njobs at the same time.\nDid you know that?")), + CHOICE(/* label */ 0, _("Yes.")), + CHOICE(/* label */ 1, _("No.")), + LABEL(0), /* = 0x00 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, you already knew?#W\nThat's OK, then.") }, + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you choose jobs in the\nsame dungeon on the #C5Job List#R, you can\ndo them at the same time.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" For example, say there are\ntwo rescue jobs in the same dungeon, but\none on 5F and one on 10F.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You can accept these two\njobs, then select #C6Take Job#R on both of them\nbefore heading into that dungeon.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You can complete the first\nrescue on 5F. Then, instead of exiting,\ngo on to the job on 10F.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" That way, you can do two\nrescue jobs in one outing.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" See?#W If you do that, you\ncan take care of rescue jobs efficiently.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...Ehe, this is what Alakazam\ntold me.#W I just repeated what he said,\nso don't tell anyone else.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g19_s0_station_sref_script[] = { /* 0x8192190 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 0), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs4_g19_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs4_g19_s0_station_sref_script }; /* 0x81921d0 */ + +static const struct ScriptCommand s_gs4_g19_s0_lives0_dlg0[] = { /* 0x81921dc */ + DEBUGINFO, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g19_s0_lives0_dlg2[] = { /* 0x819221c */ + DEBUGINFO, + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs4_g19_s0_lives1_dlg0[] = { /* 0x819224c */ + DEBUGINFO, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g19_s0_lives1_dlg2[] = { /* 0x819228c */ + DEBUGINFO, + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs4_g19_s1_station_sref_script[] = { /* 0x81922bc */ + DEBUGINFO, + SELECT_ENTITIES(-1, 1), + RET, +}; + +static const struct ScriptRef s_gs4_g19_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs4_g19_s1_station_sref_script }; /* 0x81922ec */ + +static const struct ScriptCommand s_gs4_g19_s1_lives0_dlg0[] = { /* 0x81922f8 */ + DEBUGINFO, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000042, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000044, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What do you think, Son?\nIsn't the sea wonderful?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Yes, Papa.") }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Papa?#W\nPapa, can you swim?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................#W\nOf course.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What do you take us for?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh! So you can swim!#W\nPapa, you're so special!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g19_s1_lives1_dlg0[] = { /* 0x8192548 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g19_s1_lives1_dlg2[] = { /* 0x81925f8 */ + DEBUGINFO, + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs4_g19_s1_lives2_dlg0[] = { /* 0x8192628 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g19_s1_lives2_dlg2[] = { /* 0x81926c8 */ + DEBUGINFO, + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs4_g20_s0_station_sref_script[] = { /* 0x81926f8 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 0), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs4_g20_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs4_g20_s0_station_sref_script }; /* 0x8192738 */ + +static const struct ScriptCommand s_gs4_g20_s0_lives0_dlg0[] = { /* 0x8192744 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g20_s0_lives0_dlg2[] = { /* 0x8192784 */ + DEBUGINFO, + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs4_g20_s0_lives1_dlg0[] = { /* 0x81927b4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g20_s0_lives1_dlg2[] = { /* 0x8192854 */ + DEBUGINFO, + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs4_g20_s1_lives0_dlg0[] = { /* 0x8192884 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g20_s1_station_sref_script[] = { /* 0x81928e4 */ + DEBUGINFO, + CANCEL_LIVES(-1, 0), + SELECT_ENTITIES(-1, 1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs4_g20_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs4_g20_s1_station_sref_script }; /* 0x8192934 */ + +static const struct ScriptCommand s_gs4_g20_s1_eff0_script[] = { /* 0x8192940 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs4_g20_s1_lives1_dlg0[] = { /* 0x81929a0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000042, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000044, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Well, Son, doesn't it feel\ngood to look out over the sea?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Yes, Papa.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Papa?#W\nPapa, how do you swim in the sea?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................#W\nWell, Son...#W\nThe three of us cooperate, and...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x2b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hah!") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hah!") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hah!") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0x2b, 0x00, 0x0000, 0x0000001e, 0x0000001e, NULL }, + { 0x2e, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hah!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2b, 0x00, 0x0000, -0x00000001, -0x00000001, NULL }, + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...And that's sort of how\nwe swim!#W\nGasp, gasp...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What do you...#W\nTake us for?!#W\nGasp, gasp...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" OK!#W\nPapa, you're so special!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g20_s1_lives2_dlg0[] = { /* 0x8192fa8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g20_s1_lives3_dlg0[] = { /* 0x8193098 */ + DEBUGINFO, + { 0x57, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0400, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(486), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + { 0x59, 0x01, -0x0050, 0x00000030, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(454), + { 0x53, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(486), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + { 0x59, 0x01, 0x0050, -0x00000030, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(454), + { 0x53, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(486), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + { 0x59, 0x01, -0x0030, 0x00000030, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(454), + { 0x53, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(486), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + { 0x59, 0x01, 0x0030, -0x00000030, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(454), + { 0x53, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x57, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g20_s1_lives3_dlg2[] = { /* 0x81934f8 */ + DEBUGINFO, + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs4_g20_s1_lives4_dlg0[] = { /* 0x8193528 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + RET, + HALT, +}; + +static const struct ScriptCommand s_gs4_g20_s1_lives4_dlg2[] = { /* 0x8193668 */ + DEBUGINFO, + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs4_g21_s0_station_sref_script[] = { /* 0x8193698 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 0), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs4_g21_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs4_g21_s0_station_sref_script }; /* 0x81936d8 */ + +static const struct ScriptCommand s_gs4_g21_s0_lives0_dlg0[] = { /* 0x81936e4 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g21_s0_lives0_dlg2[] = { /* 0x8193724 */ + DEBUGINFO, + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs4_g21_s0_lives1_dlg0[] = { /* 0x8193754 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g21_s0_lives1_dlg2[] = { /* 0x8193794 */ + DEBUGINFO, + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs4_g21_s1_station_sref_script[] = { /* 0x81937c4 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs4_g21_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs4_g21_s1_station_sref_script }; /* 0x8193804 */ + +static const struct ScriptCommand s_gs4_g21_s1_eff0_script[] = { /* 0x8193810 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs4_g21_s1_lives0_dlg0[] = { /* 0x8193870 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000042, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000044, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Well, our son!\nTell me, do the earthquakes frighten you?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Yes, Papa.#W\nThey are very scary.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Especially when I'm\nburrowing. It makes me twitchy because\nI get so scared.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Papa?#W\nPapa, aren't you afraid of earthquakes?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ........................#W\nOf course they don't scare us.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What do you...#W\nTake us for?!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If we were in charge...#W\nThis is what we'd do to any earthquake!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hah!") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x08, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hah!") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hah!") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0x2b, 0x00, 0x0000, 0x0000001e, 0x0000001e, NULL }, + { 0x2e, 0x08, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hah!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2b, 0x00, 0x0000, -0x00000001, -0x00000001, NULL }, + { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gasp, gasp...") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" OK!#W\nPapa, you're so special!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g21_s1_lives1_dlg0[] = { /* 0x8193edc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g21_s1_lives2_dlg0[] = { /* 0x8193fcc */ + DEBUGINFO, + { 0x57, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0400, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(486), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + { 0x59, 0x01, -0x0050, 0x00000030, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(454), + { 0x53, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(486), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + { 0x59, 0x01, 0x0050, -0x00000030, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(454), + { 0x53, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(486), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + { 0x59, 0x01, -0x0030, 0x00000030, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(454), + { 0x53, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(486), + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + { 0x59, 0x01, 0x0030, -0x00000030, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(454), + { 0x53, 0x00, 0x0000, 0x00400000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x57, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g21_s1_lives2_dlg2[] = { /* 0x819442c */ + DEBUGINFO, + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs4_g21_s1_lives3_dlg0[] = { /* 0x819445c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g21_s1_lives3_dlg2[] = { /* 0x819458c */ + DEBUGINFO, + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs4_g22_s0_station_sref_script[] = { /* 0x81945bc */ + DEBUGINFO, + SELECT_ENTITIES(-1, 0), + JUMPIF_ARRAY(EVENT_T01P03, 0, /* to label */ 0), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + SELECT_ENTITIES(-1, 2), + LABEL(1), /* = 0x01 */ + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs4_g22_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs4_g22_s0_station_sref_script }; /* 0x819464c */ + +static const struct ScriptCommand s_gs4_g22_s0_lives0_dlg0[] = { /* 0x8194658 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g22_s0_lives0_dlg2[] = { /* 0x8194698 */ + DEBUGINFO, + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs4_g22_s0_lives1_dlg2[] = { /* 0x81946c8 */ + DEBUGINFO, + EXECUTE_STATION(-1, -1, 1), + HALT, +}; + +static const struct ScriptCommand s_gs4_g22_s1_station_sref_script[] = { /* 0x81946f8 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_ENTITIES(-1, 2), + RET, +}; + +static const struct ScriptRef s_gs4_g22_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs4_g22_s1_station_sref_script }; /* 0x8194748 */ + +static const struct ScriptCommand s_gs4_g22_s1_eff0_script[] = { /* 0x8194754 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs4_g22_s1_lives0_dlg0[] = { /* 0x81947b4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0002, 0x00000042, 0x00000000, NULL }, + { 0x2d, 0x09, 0x0003, 0x00000044, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Well, my son?\nDoes Groudon frighten you?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Yes, Papa.#W\nIt frightens me so much I don't know\nwhat to think.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Papa?#W\nAre you going to the #CDMagma Cavern#R too,\nPapa?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ........................#W\nOf course.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What do you take us for?!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If we were in charge...#W\nThis is what we'd do to the #CDMagma\nCavern#R!#W Hah!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x2b, 0x00, 0x0000, 0x0000000a, 0x0000000a, NULL }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hah!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + FANFARE_PLAY2(486), + { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2b, 0x00, 0x0000, -0x00000001, -0x00000001, NULL }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ............") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ........................") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ....................................#WHuh?#W\nPapa?#W Where did you go, Papa?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + SET_ARRAYVAL(EVENT_T01P03, 0, 1), + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g22_s1_lives1_dlg0[] = { /* 0x8194c3c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g22_s1_lives2_dlg0[] = { /* 0x8194cac */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0017, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(5), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs4_g22_s1_lives3_dlg0[] = { /* 0x8194d7c */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x04, 0x000a, 0x00000042, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(LOOK_AROUND_FUNC), + WAIT(30), + FANFARE_PLAY2(469), + CALL_SCRIPT(QUESTION_FUNC), + WAIT(10), + { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g22_s2_lives0_dlg0[] = { /* 0x8194e7c */ + DEBUGINFO, + END_DELETE, +}; + +static const struct ScriptCommand s_gs4_g22_s2_lives1_dlg0[] = { /* 0x8194e9c */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g22_s2_lives1_dlg2[] = { /* 0x8194ecc */ + DEBUGINFO, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ?") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g23_s0_station_sref_script[] = { /* 0x8194f20 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 0), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs4_g23_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs4_g23_s0_station_sref_script }; /* 0x8194f60 */ + +static const struct ScriptCommand s_gs4_g23_s0_lives0_dlg1[] = { /* 0x8194f6c */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g23_s0_lives0_dlg2[] = { /* 0x8194fac */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Papa hasn't come back...#W\nI wonder where they went?") }, + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh!#W Maybe they've already\ngone to the #CDMagma Cavern#R...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And maybe they're already\nfighting Groudon.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And, maybe, maybe...#W\nMaybe they've already won.#W\nMaybe they've already beaten Groudon!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, wow! That's amazing!#W\nMaybe Papa is special!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g23_s0_lives0_dlg3[] = { /* 0x81951c0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g24_s0_station_sref_script[] = { /* 0x8195240 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 0), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs4_g24_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs4_g24_s0_station_sref_script }; /* 0x8195270 */ + +static const struct ScriptCommand s_gs4_g24_s0_lives0_dlg0[] = { /* 0x819527c */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00000400, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g24_s0_lives0_dlg2[] = { /* 0x81952bc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Papa hasn't come back yet...\nI wonder what happened to them?") }, + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh!#W\nMaybe they've already gone to the sky...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And maybe they've already\nmet Rayquaza...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...That's not possible.\nEven Papa can't fly.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sigh...\nWhere did Papa go...?") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g24_s0_lives0_dlg3[] = { /* 0x8195484 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g24_s0_lives1_dlg2[] = { /* 0x8195504 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If that shooting star\ncrashes, it's going to be terrible!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You're our only hope!\nGo for it!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g24_s0_lives2_dlg2[] = { /* 0x81955d8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh my, isn't this awful!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But I get the feeling that\nyou can make a difference, $n0!\nPlease don't let us down!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g25_s0_station_sref_script[] = { /* 0x81956c4 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 0), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs4_g25_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs4_g25_s0_station_sref_script }; /* 0x8195704 */ + +static const struct ScriptCommand s_gs4_g25_s0_lives0_dlg0[] = { /* 0x8195710 */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00000400, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g25_s0_lives0_dlg2[] = { /* 0x8195750 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Papa hasn't come back yet...\nI wonder what happened to them?") }, + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh!#W\nMaybe they've already gone to the sky...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And maybe they've already\nmet Rayquaza...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...That's not possible.\nEven Papa can't fly.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sigh...\nWhere did Papa go...?") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g25_s0_lives0_dlg3[] = { /* 0x8195820 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g25_s0_lives1_dlg2[] = { /* 0x81958a0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You're going, aren't you?\nGo for it!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g25_s0_lives2_dlg2[] = { /* 0x819592c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh my, it's time to go?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Please take care.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g26_s0_station_sref_script[] = { /* 0x81959d0 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 0), + JUMP_STATION( 2, 0), + RET, +}; + +static const struct ScriptRef s_gs4_g26_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs4_g26_s0_station_sref_script }; /* 0x8195a10 */ + +static const struct ScriptCommand s_gs4_g26_s0_lives0_dlg0[] = { /* 0x8195a1c */ + DEBUGINFO, + { 0x52, 0x00, 0x0000, 0x00000400, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g26_s0_lives0_dlg2[] = { /* 0x8195a5c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Papa hasn't come back yet...\nI wonder what happened to them?") }, + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh!#W\nMaybe they've already gone to the sky...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And maybe they've already\nmet Rayquaza...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...That's not possible.\nEven Papa can't fly.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sigh...\nWhere did Papa go...?") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g26_s0_lives0_dlg3[] = { /* 0x8195b2c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g26_s0_lives1_dlg2[] = { /* 0x8195bac */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You'll get it done next time!\nGo for it!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g26_s0_lives2_dlg2[] = { /* 0x8195c38 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You must make another\nchallenge.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You have my support!\nPlease don't fail us!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g27_s0_station_sref_script[] = { /* 0x8195cfc */ + DEBUGINFO, + SELECT_MAP(4), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(41), + { 0x22, 0x01, 0x002d, 0x00000000, 0x00000000, NULL }, + WAIT(240), + { 0x23, 0x01, 0x002d, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs4_g27_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs4_g27_s0_station_sref_script }; /* 0x8195d7c */ + +static const struct ScriptCommand s_gs4_g27_s0_eff0_script[] = { /* 0x8195d88 */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0099, 0x00000010, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs4_g28_s0_station_sref_script[] = { /* 0x8195dc8 */ + DEBUGINFO, + SELECT_ENTITIES(-1, 0), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs4_g28_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs4_g28_s0_station_sref_script }; /* 0x8195df8 */ + +static const struct ScriptCommand s_gs4_g28_s0_lives0_dlg1[] = { /* 0x8195e04 */ + DEBUGINFO, + { 0x8b, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000200, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g28_s0_lives0_dlg2[] = { /* 0x8195e54 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" (Everything returned to\npeace...)") }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But Papa still hasn't come\nback...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Everyone says they haven't\nseen them...#W\nWhere did my papa go?") }, + FANFARE_PLAY2(465), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh!#W\nMaybe they got left behind in the sky...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And maybe Rayquaza is\nhaving them as a meal...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ......#WThat's not possible.#W\nPapa can't fly in the first place.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sigh...\nWhere did Papa go...?") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g28_s0_lives0_dlg3[] = { /* 0x819609c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x93, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(NOTICE_FUNC), + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs4_g28_s0_lives1_dlg2[] = { /* 0x819614c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, how marvelous,\n$n0!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I can go on living again\nwithout fear. Thank you!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g28_s0_lives2_dlg2[] = { /* 0x8196210 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You were flat-out\nincredible!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Seriously, consider teaming\nup with me! Gahahaha!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g28_s0_lives3_dlg2[] = { /* 0x81962d8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, darlings, you've outdone\nyourselves, $n0!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g28_s0_lives4_dlg2[] = { /* 0x8196370 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You fought your way up\na tower of clouds?#W I can't even imagine\nthat. Sounds kind of wow!#W Ayup!") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs4_g29_s0_station_sref_script[] = { /* 0x8196438 */ + DEBUGINFO, + SELECT_MAP(4), + CANCEL_ENTITIES(0, 0), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(40), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs4_g29_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs4_g29_s0_station_sref_script }; /* 0x81964c8 */ + +static const struct ScriptCommand s_gs4_g29_s0_lives0_dlg0[] = { /* 0x81964d4 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x80, 0x00, 0x0100, 0x00000011, 0x00000000, NULL }, + { 0x80, 0x00, 0x0180, 0x00000012, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x80, 0x00, 0x0200, 0x00000013, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs4_g0_s0_lives[] = { /* 0x8196574 */ + /* 0 */ { 56, 0, 0, 0, { 49, 25, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs4_g0_s0_lives0_dlg0, + } }, + /* 1 */ { 57, 0, 0, 0, { 89, 20, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs4_g0_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs4_g0_s1_lives[] = { /* 0x81965a4 */ + /* 0 */ { 0, 2, 0, 0, { 9, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs4_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 2, 0, 0, { 6, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs4_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs4_g0_s2_lives[] = { /* 0x81965d4 */ + /* 0 */ { 0, 0, 0, 0, { 49, 37, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs4_g0_s2_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 49, 35, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs4_g0_s2_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs4_g0_s3_lives[] = { /* 0x8196604 */ + /* 0 */ { 0, 0, 0, 0, { 27, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs4_g0_s3_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 23, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs4_g0_s3_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs4_g0_s4_lives[] = { /* 0x8196634 */ + /* 0 */ { 0, 4, 0, 0, { 37, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs4_g0_s4_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 37, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs4_g0_s4_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs4_g1_s0_lives[] = { /* 0x8196664 */ + /* 0 */ { 68, 2, 0, 0, { 63, 34, 0, CPOS_HALFTILE }, { + [2] = s_gs4_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 104, 3, 0, 0, { 33, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs4_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 106, 4, 0, 0, { 37, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs4_g1_s0_lives2_dlg2, + } }, + /* 3 */ { 105, 5, 0, 0, { 41, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [2] = s_gs4_g1_s0_lives3_dlg2, + } }, + /* 4 */ { 79, 0, 0, 0, { 29, 33, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g1_s0_lives4_dlg0, + [2] = s_gs4_g1_s0_lives4_dlg2, + [3] = s_gs4_g1_s0_lives4_dlg3, + } }, +}; + +static const struct GroundLivesData s_gs4_g1_s1_lives[] = { /* 0x81966dc */ + /* 0 */ { 0, 2, 0, 0, { 60, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g1_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 2, 0, 0, { 60, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g1_s1_lives1_dlg0, + } }, + /* 2 */ { 66, 2, 0, 0, { 63, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g1_s1_lives2_dlg0, + } }, + /* 3 */ { 68, 2, 0, 0, { 63, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g1_s1_lives3_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs4_g1_s2_lives[] = { /* 0x819673c */ + /* 0 */ { 66, 2, 0, 0, { 63, 31, 0, CPOS_HALFTILE }, { + [2] = s_gs4_g1_s2_lives0_dlg2, + } }, + /* 1 */ { 68, 2, 0, 0, { 63, 34, 0, CPOS_HALFTILE }, { + [2] = s_gs4_g1_s2_lives1_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs4_g3_s0_lives[] = { /* 0x819676c */ + /* 0 */ { 0, 4, 0, 0, { 23, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g3_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 4, 0, 0, { 27, 40, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g3_s0_lives1_dlg0, + } }, + /* 2 */ { 109, 0, 0, 0, { 27, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g3_s0_lives2_dlg0, + } }, + /* 3 */ { 110, 0, 0, 0, { 23, 37, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g3_s0_lives3_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs4_g4_s0_lives[] = { /* 0x81967cc */ + /* 0 */ { 124, 0, 0, 0, { 27, 37, 0, CPOS_HALFTILE }, { + [2] = s_gs4_g4_s0_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs4_g5_s0_lives[] = { /* 0x81967e4 */ + /* 0 */ { 1, 4, 0, 0, { 35, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs4_g5_s0_lives0_dlg0, + } }, + /* 1 */ { 34, 4, 0, 0, { 39, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs4_g5_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs4_g6_s0_lives[] = { /* 0x8196814 */ + /* 0 */ { 92, 4, 0, 0, { 39, 46, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g6_s0_lives0_dlg0, + [2] = s_gs4_g6_s0_lives0_dlg2, + [3] = s_gs4_g6_s0_lives0_dlg3, + } }, +}; + +static const struct GroundLivesData s_gs4_g7_s0_lives[] = { /* 0x819682c */ + /* 0 */ { 0, 4, 0, 0, { 37, 40, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs4_g7_s0_lives0_dlg0, + } }, + /* 1 */ { 104, 3, 0, 0, { 33, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs4_g7_s0_lives1_dlg0, + } }, + /* 2 */ { 106, 4, 0, 0, { 37, 42, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs4_g7_s0_lives2_dlg0, + } }, + /* 3 */ { 105, 5, 0, 0, { 41, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs4_g7_s0_lives3_dlg0, + } }, + /* 4 */ { 92, 4, 0, 0, { 39, 46, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g7_s0_lives4_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs4_g8_s0_lives[] = { /* 0x81968a4 */ + /* 0 */ { 93, 2, 0, 0, { 26, 47, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g8_s0_lives0_dlg0, + [2] = s_gs4_g8_s0_lives0_dlg2, + } }, + /* 1 */ { 92, 6, 0, 0, { 30, 47, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g8_s0_lives1_dlg0, + [2] = s_gs4_g8_s0_lives1_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs4_g9_s0_lives[] = { /* 0x81968d4 */ + /* 0 */ { 0, 0, 0, 0, { 28, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g9_s0_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 28, 42, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g9_s0_lives1_dlg0, + } }, + /* 2 */ { 93, 2, 0, 0, { 30, 47, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g9_s0_lives2_dlg0, + } }, + /* 3 */ { 92, 6, 0, 0, { 26, 47, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g9_s0_lives3_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs4_g10_s0_lives[] = { /* 0x8196934 */ + /* 0 */ { 93, 2, 0, 0, { 26, 47, 0, CPOS_HALFTILE }, { + [2] = s_gs4_g10_s0_lives0_dlg2, + } }, + /* 1 */ { 92, 6, 0, 0, { 30, 47, 0, CPOS_HALFTILE }, { + [2] = s_gs4_g10_s0_lives1_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs4_g11_s1_lives[] = { /* 0x8196964 */ + /* 0 */ { 0, 4, 0, 0, { 35, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g11_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 40, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g11_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs4_g11_s2_lives[] = { /* 0x8196994 */ + /* 0 */ { 0, 4, 0, 0, { 37, 44, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs4_g11_s2_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs4_g11_s3_lives[] = { /* 0x81969ac */ + /* 0 */ { 30, 0, 0, 0, { 37, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs4_g11_s3_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs4_g11_s4_lives[] = { /* 0x81969c4 */ + /* 0 */ { 31, 0, 0, 0, { 37, 41, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs4_g11_s4_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs4_g11_s5_lives[] = { /* 0x81969dc */ + /* 0 */ { 30, 0, 0, 0, { 35, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g11_s5_lives0_dlg0, + } }, + /* 1 */ { 31, 0, 0, 0, { 40, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g11_s5_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs4_g12_s0_lives[] = { /* 0x8196a0c */ + /* 0 */ { 0, 2, 0, 0, { 3, 41, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g12_s0_lives0_dlg0, + } }, + /* 1 */ { 7, 2, 0, 0, { 6, 39, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g12_s0_lives1_dlg0, + } }, + /* 2 */ { 58, 0, 0, 0, { 50, 26, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g12_s0_lives2_dlg0, + } }, + /* 3 */ { 59, 6, 0, 0, { 73, 21, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g12_s0_lives3_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs4_g16_s0_lives[] = { /* 0x8196a6c */ + /* 0 */ { 80, 4, 0, 0, { 40, 42, 0, CPOS_HALFTILE }, { + [2] = s_gs4_g16_s0_lives0_dlg2, + } }, + /* 1 */ { 66, 2, 0, 0, { 63, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g16_s0_lives1_dlg0, + [2] = s_gs4_g16_s0_lives1_dlg2, + } }, + /* 2 */ { 68, 2, 0, 0, { 63, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g16_s0_lives2_dlg0, + [2] = s_gs4_g16_s0_lives2_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs4_g16_s1_lives[] = { /* 0x8196ab4 */ + /* 0 */ { 0, 0, 0, 0, { 61, 20, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g16_s1_lives0_dlg0, + } }, + /* 1 */ { 66, 2, 0, 0, { 63, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g16_s1_lives1_dlg0, + [2] = s_gs4_g16_s1_lives1_dlg2, + } }, + /* 2 */ { 68, 2, 0, 0, { 63, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g16_s1_lives2_dlg0, + [2] = s_gs4_g16_s1_lives2_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs4_g17_s0_lives[] = { /* 0x8196afc */ + /* 0 */ { 66, 2, 0, 0, { 63, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g17_s0_lives0_dlg0, + [2] = s_gs4_g17_s0_lives0_dlg2, + } }, + /* 1 */ { 68, 2, 0, 0, { 63, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g17_s0_lives1_dlg0, + [2] = s_gs4_g17_s0_lives1_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs4_g17_s1_lives[] = { /* 0x8196b2c */ + /* 0 */ { 0, 0, 0, 0, { 61, 20, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g17_s1_lives0_dlg0, + } }, + /* 1 */ { 66, 2, 0, 0, { 63, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g17_s1_lives1_dlg0, + [2] = s_gs4_g17_s1_lives1_dlg2, + } }, + /* 2 */ { 68, 2, 0, 0, { 63, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g17_s1_lives2_dlg0, + [2] = s_gs4_g17_s1_lives2_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs4_g18_s0_lives[] = { /* 0x8196b74 */ + /* 0 */ { 68, 2, 0, 0, { 63, 34, 0, CPOS_HALFTILE }, { + [2] = s_gs4_g18_s0_lives0_dlg2, + [3] = s_gs4_g18_s0_lives0_dlg3, + } }, +}; + +static const struct GroundLivesData s_gs4_g18_s1_lives[] = { /* 0x8196b8c */ + /* 0 */ { 80, 4, 0, 0, { 40, 42, 0, CPOS_HALFTILE }, { + [2] = s_gs4_g18_s1_lives0_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs4_g19_s0_lives[] = { /* 0x8196ba4 */ + /* 0 */ { 66, 2, 0, 0, { 63, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g19_s0_lives0_dlg0, + [2] = s_gs4_g19_s0_lives0_dlg2, + } }, + /* 1 */ { 68, 2, 0, 0, { 63, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g19_s0_lives1_dlg0, + [2] = s_gs4_g19_s0_lives1_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs4_g19_s1_lives[] = { /* 0x8196bd4 */ + /* 0 */ { 0, 0, 0, 0, { 7, 10, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g19_s1_lives0_dlg0, + } }, + /* 1 */ { 66, 2, 0, 0, { 63, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g19_s1_lives1_dlg0, + [2] = s_gs4_g19_s1_lives1_dlg2, + } }, + /* 2 */ { 68, 2, 0, 0, { 63, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g19_s1_lives2_dlg0, + [2] = s_gs4_g19_s1_lives2_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs4_g20_s0_lives[] = { /* 0x8196c1c */ + /* 0 */ { 66, 2, 0, 0, { 63, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g20_s0_lives0_dlg0, + [2] = s_gs4_g20_s0_lives0_dlg2, + } }, + /* 1 */ { 68, 2, 0, 0, { 63, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g20_s0_lives1_dlg0, + [2] = s_gs4_g20_s0_lives1_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs4_g20_s1_lives[] = { /* 0x8196c4c */ + /* 0 */ { 4, 2, 0, 0, { 60, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g20_s1_lives0_dlg0, + } }, + /* 1 */ { 0, 2, 0, 0, { 60, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g20_s1_lives1_dlg0, + } }, + /* 2 */ { 4, 2, 0, 0, { 60, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g20_s1_lives2_dlg0, + } }, + /* 3 */ { 66, 2, 0, 0, { 63, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g20_s1_lives3_dlg0, + [2] = s_gs4_g20_s1_lives3_dlg2, + } }, + /* 4 */ { 68, 2, 0, 0, { 63, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g20_s1_lives4_dlg0, + [2] = s_gs4_g20_s1_lives4_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs4_g21_s0_lives[] = { /* 0x8196cc4 */ + /* 0 */ { 66, 2, 0, 0, { 63, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g21_s0_lives0_dlg0, + [2] = s_gs4_g21_s0_lives0_dlg2, + } }, + /* 1 */ { 68, 2, 0, 0, { 63, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g21_s0_lives1_dlg0, + [2] = s_gs4_g21_s0_lives1_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs4_g21_s1_lives[] = { /* 0x8196cf4 */ + /* 0 */ { 0, 2, 0, 0, { 60, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g21_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 2, 0, 0, { 60, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g21_s1_lives1_dlg0, + } }, + /* 2 */ { 66, 2, 0, 0, { 63, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g21_s1_lives2_dlg0, + [2] = s_gs4_g21_s1_lives2_dlg2, + } }, + /* 3 */ { 68, 2, 0, 0, { 63, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g21_s1_lives3_dlg0, + [2] = s_gs4_g21_s1_lives3_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs4_g22_s0_lives[] = { /* 0x8196d54 */ + /* 0 */ { 66, 2, 0, 0, { 63, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g22_s0_lives0_dlg0, + [2] = s_gs4_g22_s0_lives0_dlg2, + } }, + /* 1 */ { 68, 2, 0, 0, { 63, 34, 0, CPOS_HALFTILE }, { + [2] = s_gs4_g22_s0_lives1_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs4_g22_s1_lives[] = { /* 0x8196d84 */ + /* 0 */ { 0, 2, 0, 0, { 60, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g22_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 2, 0, 0, { 60, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g22_s1_lives1_dlg0, + } }, + /* 2 */ { 66, 2, 0, 0, { 63, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g22_s1_lives2_dlg0, + } }, + /* 3 */ { 68, 2, 0, 0, { 63, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g22_s1_lives3_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs4_g22_s2_lives[] = { /* 0x8196de4 */ + /* 0 */ { 66, 2, 0, 0, { 63, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g22_s2_lives0_dlg0, + } }, + /* 1 */ { 68, 2, 0, 0, { 63, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g22_s2_lives1_dlg0, + [2] = s_gs4_g22_s2_lives1_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs4_g23_s0_lives[] = { /* 0x8196e14 */ + /* 0 */ { 68, 2, 0, 0, { 63, 34, 0, CPOS_HALFTILE }, { + [1] = s_gs4_g23_s0_lives0_dlg1, + [2] = s_gs4_g23_s0_lives0_dlg2, + [3] = s_gs4_g23_s0_lives0_dlg3, + } }, +}; + +static const struct GroundLivesData s_gs4_g24_s0_lives[] = { /* 0x8196e2c */ + /* 0 */ { 68, 2, 0, 0, { 63, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g24_s0_lives0_dlg0, + [2] = s_gs4_g24_s0_lives0_dlg2, + [3] = s_gs4_g24_s0_lives0_dlg3, + } }, + /* 1 */ { 80, 4, 0, 0, { 40, 42, 0, CPOS_HALFTILE }, { + [2] = s_gs4_g24_s0_lives1_dlg2, + } }, + /* 2 */ { 79, 0, 0, 0, { 29, 33, 0, CPOS_HALFTILE }, { + [2] = s_gs4_g24_s0_lives2_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs4_g25_s0_lives[] = { /* 0x8196e74 */ + /* 0 */ { 68, 2, 0, 0, { 63, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g25_s0_lives0_dlg0, + [2] = s_gs4_g25_s0_lives0_dlg2, + [3] = s_gs4_g25_s0_lives0_dlg3, + } }, + /* 1 */ { 80, 4, 0, 0, { 40, 42, 0, CPOS_HALFTILE }, { + [2] = s_gs4_g25_s0_lives1_dlg2, + } }, + /* 2 */ { 79, 0, 0, 0, { 29, 33, 0, CPOS_HALFTILE }, { + [2] = s_gs4_g25_s0_lives2_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs4_g26_s0_lives[] = { /* 0x8196ebc */ + /* 0 */ { 68, 2, 0, 0, { 63, 34, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g26_s0_lives0_dlg0, + [2] = s_gs4_g26_s0_lives0_dlg2, + [3] = s_gs4_g26_s0_lives0_dlg3, + } }, + /* 1 */ { 80, 4, 0, 0, { 40, 42, 0, CPOS_HALFTILE }, { + [2] = s_gs4_g26_s0_lives1_dlg2, + } }, + /* 2 */ { 79, 0, 0, 0, { 29, 33, 0, CPOS_HALFTILE }, { + [2] = s_gs4_g26_s0_lives2_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs4_g28_s0_lives[] = { /* 0x8196f04 */ + /* 0 */ { 68, 2, 0, 0, { 63, 34, 0, CPOS_HALFTILE }, { + [1] = s_gs4_g28_s0_lives0_dlg1, + [2] = s_gs4_g28_s0_lives0_dlg2, + [3] = s_gs4_g28_s0_lives0_dlg3, + } }, + /* 1 */ { 79, 0, 0, 0, { 29, 33, 0, CPOS_HALFTILE }, { + [2] = s_gs4_g28_s0_lives1_dlg2, + } }, + /* 2 */ { 104, 6, 0, 0, { 40, 41, 0, CPOS_HALFTILE }, { + [2] = s_gs4_g28_s0_lives2_dlg2, + } }, + /* 3 */ { 105, 6, 0, 0, { 40, 43, 0, CPOS_HALFTILE }, { + [2] = s_gs4_g28_s0_lives3_dlg2, + } }, + /* 4 */ { 106, 2, 0, 0, { 34, 43, 0, 0 }, { + [2] = s_gs4_g28_s0_lives4_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs4_g29_s0_lives[] = { /* 0x8196f7c */ + /* 0 */ { 55, 2, 0, 0, { 51, 25, 0, CPOS_HALFTILE }, { + [0] = s_gs4_g29_s0_lives0_dlg0, + } }, +}; + +static const struct GroundObjectData s_gs4_g0_s0_objs[] = { /* 0x8196f94 */ + /* 0 */ { 14, 0, 5, 2, { 37, 38, CPOS_HALFTILE, 0 }, { + [2] = s_gs4_g0_s0_obj0_dlg2, + } }, +}; + +static const struct GroundEffectData s_gs4_g1_s1_effs[] = { /* 0x8196fac */ + /* 0 */ { 0, 0, 1, 1, { 56, 39, 0, 0 }, s_gs4_g1_s1_eff0_script }, +}; + +static const struct GroundEffectData s_gs4_g3_s0_effs[] = { /* 0x8196fb8 */ + /* 0 */ { 0, 0, 1, 1, { 25, 38, 0, CPOS_HALFTILE }, s_gs4_g3_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs4_g5_s0_effs[] = { /* 0x8196fc4 */ + /* 0 */ { 0, 0, 1, 1, { 37, 38, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs4_g7_s0_effs[] = { /* 0x8196fd0 */ + /* 0 */ { 0, 0, 1, 1, { 37, 38, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs4_g11_s0_effs[] = { /* 0x8196fdc */ + /* 0 */ { 0, 0, 1, 1, { 37, 42, CPOS_HALFTILE, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEffectData s_gs4_g12_s0_effs[] = { /* 0x8196fe8 */ + /* 0 */ { 0, 0, 1, 1, { 15, 40, 0, CPOS_HALFTILE }, s_gs4_g12_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs4_g20_s1_effs[] = { /* 0x8196ff4 */ + /* 0 */ { 0, 0, 1, 1, { 61, 34, 0, 0 }, s_gs4_g20_s1_eff0_script }, +}; + +static const struct GroundEffectData s_gs4_g21_s1_effs[] = { /* 0x8197000 */ + /* 0 */ { 0, 0, 1, 1, { 61, 34, 0, 0 }, s_gs4_g21_s1_eff0_script }, +}; + +static const struct GroundEffectData s_gs4_g22_s1_effs[] = { /* 0x819700c */ + /* 0 */ { 0, 0, 1, 1, { 61, 34, 0, 0 }, s_gs4_g22_s1_eff0_script }, +}; + +static const struct GroundEffectData s_gs4_g27_s0_effs[] = { /* 0x8197018 */ + /* 0 */ { 0, 0, 1, 1, { 32, 29, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs4_g27_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs4_g29_s0_effs[] = { /* 0x8197024 */ + /* 0 */ { 0, 0, 1, 1, { 55, 27, 0, CPOS_HALFTILE }, NULL }, +}; + +static const struct GroundEventData s_gs4_g0_s0_evts[] = { /* 0x8197030 */ + /* 0 */ { 3, 66, 0, 0, { 0, 0, 0, 0 }, &s_gs4_g0_s0_evt0_sref }, + /* 1 */ { 3, 3, 0, 0, { 48, 31, 0, 0 }, &s_gs4_g0_s0_evt1_sref }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8197048 */ + &s_gs4_g0_s0_station_sref, + &s_gs4_g1_s0_station_sref, + &s_gs4_g1_s1_station_sref, + &s_gs4_g1_s2_station_sref, + &s_gs4_g2_s0_station_sref, + &s_gs4_g3_s0_station_sref, + &s_gs4_g5_s0_station_sref, + &s_gs4_g7_s0_station_sref, + &s_gs4_g9_s0_station_sref, + &s_gs4_g11_s0_station_sref, + &s_gs4_g12_s0_station_sref, + &s_gs4_g13_s0_station_sref, + &s_gs4_g14_s0_station_sref, + &s_gs4_g15_s0_station_sref, + &s_gs4_g16_s0_station_sref, + &s_gs4_g16_s1_station_sref, + &s_gs4_g17_s0_station_sref, + &s_gs4_g17_s1_station_sref, + &s_gs4_g18_s0_station_sref, + &s_gs4_g19_s0_station_sref, + &s_gs4_g19_s1_station_sref, + &s_gs4_g20_s0_station_sref, + &s_gs4_g20_s1_station_sref, + &s_gs4_g21_s0_station_sref, + &s_gs4_g21_s1_station_sref, + &s_gs4_g22_s0_station_sref, + &s_gs4_g22_s1_station_sref, + &s_gs4_g23_s0_station_sref, + &s_gs4_g24_s0_station_sref, + &s_gs4_g25_s0_station_sref, + &s_gs4_g26_s0_station_sref, + &s_gs4_g27_s0_station_sref, + &s_gs4_g28_s0_station_sref, + &s_gs4_g29_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs4_g0_sectors[] = { /* 0x81970d0 */ + { LPARRAY(s_gs4_g0_s0_lives), LPARRAY(s_gs4_g0_s0_objs), 0,NULL, LPARRAY(s_gs4_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs4_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs4_g0_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs4_g0_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs4_g0_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs4_g1_sectors[] = { /* 0x8197198 */ + { LPARRAY(s_gs4_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[1], }, + { LPARRAY(s_gs4_g1_s1_lives), 0,NULL, LPARRAY(s_gs4_g1_s1_effs), 0,NULL, 1,&sStationScripts[2], }, + { LPARRAY(s_gs4_g1_s2_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[3], }, +}; + +static const struct GroundScriptSector s_gs4_g2_sectors[] = { /* 0x8197210 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[4], }, +}; + +static const struct GroundScriptSector s_gs4_g3_sectors[] = { /* 0x8197238 */ + { LPARRAY(s_gs4_g3_s0_lives), 0,NULL, LPARRAY(s_gs4_g3_s0_effs), 0,NULL, 1,&sStationScripts[5], }, +}; + +static const struct GroundScriptSector s_gs4_g4_sectors[] = { /* 0x8197260 */ + { LPARRAY(s_gs4_g4_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs4_g5_sectors[] = { /* 0x8197288 */ + { LPARRAY(s_gs4_g5_s0_lives), 0,NULL, LPARRAY(s_gs4_g5_s0_effs), 0,NULL, 1,&sStationScripts[6], }, +}; + +static const struct GroundScriptSector s_gs4_g6_sectors[] = { /* 0x81972b0 */ + { LPARRAY(s_gs4_g6_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs4_g7_sectors[] = { /* 0x81972d8 */ + { LPARRAY(s_gs4_g7_s0_lives), 0,NULL, LPARRAY(s_gs4_g7_s0_effs), 0,NULL, 1,&sStationScripts[7], }, +}; + +static const struct GroundScriptSector s_gs4_g8_sectors[] = { /* 0x8197300 */ + { LPARRAY(s_gs4_g8_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs4_g9_sectors[] = { /* 0x8197328 */ + { LPARRAY(s_gs4_g9_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[8], }, +}; + +static const struct GroundScriptSector s_gs4_g10_sectors[] = { /* 0x8197350 */ + { LPARRAY(s_gs4_g10_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs4_g11_sectors[] = { /* 0x8197378 */ + { 0,NULL, 0,NULL, LPARRAY(s_gs4_g11_s0_effs), 0,NULL, 1,&sStationScripts[9], }, + { LPARRAY(s_gs4_g11_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs4_g11_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs4_g11_s3_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs4_g11_s4_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs4_g11_s5_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs4_g12_sectors[] = { /* 0x8197468 */ + { LPARRAY(s_gs4_g12_s0_lives), 0,NULL, LPARRAY(s_gs4_g12_s0_effs), 0,NULL, 1,&sStationScripts[10], }, +}; + +static const struct GroundScriptSector s_gs4_g13_sectors[] = { /* 0x8197490 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[11], }, +}; + +static const struct GroundScriptSector s_gs4_g14_sectors[] = { /* 0x81974b8 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[12], }, +}; + +static const struct GroundScriptSector s_gs4_g15_sectors[] = { /* 0x81974e0 */ + { 0,NULL, 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[13], }, +}; + +static const struct GroundScriptSector s_gs4_g16_sectors[] = { /* 0x8197508 */ + { LPARRAY(s_gs4_g16_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[14], }, + { LPARRAY(s_gs4_g16_s1_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[15], }, +}; + +static const struct GroundScriptSector s_gs4_g17_sectors[] = { /* 0x8197558 */ + { LPARRAY(s_gs4_g17_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[16], }, + { LPARRAY(s_gs4_g17_s1_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[17], }, +}; + +static const struct GroundScriptSector s_gs4_g18_sectors[] = { /* 0x81975a8 */ + { LPARRAY(s_gs4_g18_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[18], }, + { LPARRAY(s_gs4_g18_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs4_g19_sectors[] = { /* 0x81975f8 */ + { LPARRAY(s_gs4_g19_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[19], }, + { LPARRAY(s_gs4_g19_s1_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[20], }, +}; + +static const struct GroundScriptSector s_gs4_g20_sectors[] = { /* 0x8197648 */ + { LPARRAY(s_gs4_g20_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[21], }, + { LPARRAY(s_gs4_g20_s1_lives), 0,NULL, LPARRAY(s_gs4_g20_s1_effs), 0,NULL, 1,&sStationScripts[22], }, +}; + +static const struct GroundScriptSector s_gs4_g21_sectors[] = { /* 0x8197698 */ + { LPARRAY(s_gs4_g21_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[23], }, + { LPARRAY(s_gs4_g21_s1_lives), 0,NULL, LPARRAY(s_gs4_g21_s1_effs), 0,NULL, 1,&sStationScripts[24], }, +}; + +static const struct GroundScriptSector s_gs4_g22_sectors[] = { /* 0x81976e8 */ + { LPARRAY(s_gs4_g22_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[25], }, + { LPARRAY(s_gs4_g22_s1_lives), 0,NULL, LPARRAY(s_gs4_g22_s1_effs), 0,NULL, 1,&sStationScripts[26], }, + { LPARRAY(s_gs4_g22_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs4_g23_sectors[] = { /* 0x8197760 */ + { LPARRAY(s_gs4_g23_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[27], }, +}; + +static const struct GroundScriptSector s_gs4_g24_sectors[] = { /* 0x8197788 */ + { LPARRAY(s_gs4_g24_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[28], }, +}; + +static const struct GroundScriptSector s_gs4_g25_sectors[] = { /* 0x81977b0 */ + { LPARRAY(s_gs4_g25_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[29], }, +}; + +static const struct GroundScriptSector s_gs4_g26_sectors[] = { /* 0x81977d8 */ + { LPARRAY(s_gs4_g26_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[30], }, +}; + +static const struct GroundScriptSector s_gs4_g27_sectors[] = { /* 0x8197800 */ + { 0,NULL, 0,NULL, LPARRAY(s_gs4_g27_s0_effs), 0,NULL, 1,&sStationScripts[31], }, +}; + +static const struct GroundScriptSector s_gs4_g28_sectors[] = { /* 0x8197828 */ + { LPARRAY(s_gs4_g28_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[32], }, +}; + +static const struct GroundScriptSector s_gs4_g29_sectors[] = { /* 0x8197850 */ + { LPARRAY(s_gs4_g29_s0_lives), 0,NULL, LPARRAY(s_gs4_g29_s0_effs), 0,NULL, 1,&sStationScripts[33], }, +}; + +static const struct GroundScriptGroup s_gs4_groups[] = { /* 0x8197878 */ + { LPARRAY(s_gs4_g0_sectors) }, + { LPARRAY(s_gs4_g1_sectors) }, + { LPARRAY(s_gs4_g2_sectors) }, + { LPARRAY(s_gs4_g3_sectors) }, + { LPARRAY(s_gs4_g4_sectors) }, + { LPARRAY(s_gs4_g5_sectors) }, + { LPARRAY(s_gs4_g6_sectors) }, + { LPARRAY(s_gs4_g7_sectors) }, + { LPARRAY(s_gs4_g8_sectors) }, + { LPARRAY(s_gs4_g9_sectors) }, + { LPARRAY(s_gs4_g10_sectors) }, + { LPARRAY(s_gs4_g11_sectors) }, + { LPARRAY(s_gs4_g12_sectors) }, + { LPARRAY(s_gs4_g13_sectors) }, + { LPARRAY(s_gs4_g14_sectors) }, + { LPARRAY(s_gs4_g15_sectors) }, + { LPARRAY(s_gs4_g16_sectors) }, + { LPARRAY(s_gs4_g17_sectors) }, + { LPARRAY(s_gs4_g18_sectors) }, + { LPARRAY(s_gs4_g19_sectors) }, + { LPARRAY(s_gs4_g20_sectors) }, + { LPARRAY(s_gs4_g21_sectors) }, + { LPARRAY(s_gs4_g22_sectors) }, + { LPARRAY(s_gs4_g23_sectors) }, + { LPARRAY(s_gs4_g24_sectors) }, + { LPARRAY(s_gs4_g25_sectors) }, + { LPARRAY(s_gs4_g26_sectors) }, + { LPARRAY(s_gs4_g27_sectors) }, + { LPARRAY(s_gs4_g28_sectors) }, + { LPARRAY(s_gs4_g29_sectors) }, +}; + +static const struct GroundLink s_gs4_links[] = { /* 0x8197968 */ + /* link 0 */ { { /*x*/ 50, /*y*/ 26, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 1 */ { { /*x*/ 0, /*y*/ 9, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 2 */ { { /*x*/ 53, /*y*/ 26, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 3 */ { { /*x*/ 88, /*y*/ 20, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 4 */ { { /*x*/ 61, /*y*/ 33, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 5 */ { { /*x*/ 53, /*y*/ 39, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 6 */ { { /*x*/ 56, /*y*/ 36, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 7 */ { { /*x*/ 59, /*y*/ 38, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 8 */ { { /*x*/ 60, /*y*/ 29, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 9 */ { { /*x*/ 63, /*y*/ 31, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 10 */ { { /*x*/ 50, /*y*/ 25, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 11 */ { { /*x*/ 37, /*y*/ 39, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 12 */ { { /*x*/ 36, /*y*/ 41, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 13 */ { { /*x*/ 39, /*y*/ 39, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 14 */ { { /*x*/ 22, /*y*/ 18, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 15 */ { { /*x*/ 53, /*y*/ 26, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 16 */ { { /*x*/ 57, /*y*/ 29, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 1, /*?*/ 0 }, + /* link 17 */ { { /*x*/ 57, /*y*/ 23, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 18 */ { { /*x*/ 63, /*y*/ 20, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 19 */ { { /*x*/ 74, /*y*/ 12, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs4 = { LPARRAY(s_gs4_groups), s_gs4_links }; /* 0x8197a08 */ diff --git a/src/data/ground/ground_data_t01p04_station.h b/src/data/ground/ground_data_t01p04_station.h new file mode 100644 index 000000000..8cfad439f --- /dev/null +++ b/src/data/ground/ground_data_t01p04_station.h @@ -0,0 +1,474 @@ + + + + + + + + + + + + + + +static const struct ScriptCommand s_gs5_g0_s0_station_sref_script[] = { /* 0x8197a1c */ + DEBUGINFO, + SELECT_MAP(5), + JUMP_LABEL(0), + LABEL(0), /* = 0x00 */ + CALL_STATION( 1, 0), + JUMP_LABEL(1), + LABEL(1), /* = 0x01 */ + CJUMP_VAR(START_MODE), + COND_EQUAL(12, /* to label */ 2), + COND_EQUAL(11, /* to label */ 2), + COND_EQUAL(10, /* to label */ 3), + COND_EQUAL(9, /* to label */ 4), + SELECT_LIVES(0, 1), + JUMP_LABEL(6), + LABEL(2), /* = 0x02 */ + EXECUTE_SUBSTATION(-1, 4, 0), + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + RET, + LABEL(3), /* = 0x03 */ + EXECUTE_SUBSTATION(-1, 3, 0), + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + RET, + LABEL(4), /* = 0x04 */ + EXECUTE_SUBSTATION(-1, 2, 0), + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + RET, + LABEL(6), /* = 0x06 */ + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + BGM_SWITCH(7), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs5_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs5_g0_s0_station_sref_script }; /* 0x8197c28 */ + + +static const struct ScriptCommand s_gs5_g0_s0_evt0_sref_script[] = { /* 0x8197c34 */ + DEBUGINFO, + { 0x01, 0x00, -0x0001, 0x00000004, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptRef s_gs5_g0_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs5_g0_s0_evt0_sref_script }; /* 0x8197c64 */ + +static const struct ScriptCommand s_gs5_g0_s1_lives0_dlg0[] = { /* 0x8197c70 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs5_g0_s1_lives1_dlg0[] = { /* 0x8197cb0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs5_g1_s0_station_sref_script[] = { /* 0x8197cf0 */ + DEBUGINFO, + JUMPIF_EQUAL(SCENARIO_MAIN, 11, /* to label */ 0), + CANCEL_EVENTS(-1, -1), + SELECT_ENTITIES(-1, -1), + LABEL(0), /* = 0x00 */ + RET_DIRECT, +}; + +static const struct ScriptRef s_gs5_g1_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs5_g1_s0_station_sref_script }; /* 0x8197d50 */ + +static const struct ScriptCommand s_gs5_g1_s0_lives0_dlg2[] = { /* 0x8197d5c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x1c, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 0), + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + { 0x05, 0x00, 0x001e, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(-1, /* to label */ 1), + BGM_FADEOUT(30), + HALT, + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs5_g1_s0_lives1_dlg2[] = { /* 0x8197e3c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x1e, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs5_g1_s0_lives2_dlg2[] = { /* 0x8197e9c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x1f, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs5_g1_s0_obj0_dlg2[] = { /* 0x8197efc */ + DEBUGINFO, + { 0x21, 0x00, 0x0000, 0x00000032, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs5_g2_s0_station_sref_script[] = { /* 0x8197f2c */ + DEBUGINFO, + SELECT_MAP(5), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + CALL_STATION( 1, 0), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(7), + { 0x22, 0x01, -0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 1, 0), + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs5_g2_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs5_g2_s0_station_sref_script }; /* 0x8197fdc */ + +static const struct ScriptCommand s_gs5_g2_s0_lives0_dlg0[] = { /* 0x8197fe8 */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x1d, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs5_g2_s0_lives1_dlg0[] = { /* 0x8198098 */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs5_g2_s0_lives2_dlg0[] = { /* 0x8198118 */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs5_g3_s0_station_sref_script[] = { /* 0x8198178 */ + DEBUGINFO, + SELECT_MAP(5), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER2_FUNC), + CALL_STATION( 1, 0), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(7), + { 0x22, 0x01, -0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 1, 0), + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs5_g3_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs5_g3_s0_station_sref_script }; /* 0x8198228 */ + +static const struct ScriptCommand s_gs5_g3_s0_lives0_dlg0[] = { /* 0x8198234 */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + { 0x2d, 0x09, 0x0002, 0x0000002f, 0x00000000, NULL }, + { 0x3b, 0x0c, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 0), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh! Welcome back!#W\nThe rescue...#Wwent badly, I see...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But that wasn't the final\nchance! Don't give up!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, + LABEL(0), /* = 0x00 */ + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh! Welcome back!#W\nThe rescue...#Wwent badly, I see...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm terribly sorry, but you\nmay not go on that rescue again...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Please inform your friend\nthat, regrettably, the friend rescue\nmission ended in failure.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs5_g3_s0_lives1_dlg0[] = { /* 0x81984bc */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs5_g4_s0_station_sref_script[] = { /* 0x819853c */ + DEBUGINFO, + SELECT_MAP(5), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER3_FUNC), + CALL_STATION( 1, 0), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(7), + { 0x22, 0x01, -0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 1, 0), + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs5_g4_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs5_g4_s0_station_sref_script }; /* 0x81985ec */ + +static const struct ScriptCommand s_gs5_g4_s0_lives0_dlg0[] = { /* 0x81985f8 */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + { 0x2d, 0x09, 0x0002, 0x0000002f, 0x00000000, NULL }, + { 0x3b, 0x0c, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 0), + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh! Welcome back!#W\nThe rescue...#Wwent badly, I see...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But that wasn't the final\nchance! Don't give up!") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, + LABEL(0), /* = 0x00 */ + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh! Welcome back!#W\nThe rescue...#Wwent badly, I see...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm terribly sorry, but you\nmay not go on that rescue again...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Please inform your friend\nthat, regrettably, the friend rescue\nmission ended in failure.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs5_g4_s0_lives1_dlg0[] = { /* 0x8198768 */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs5_g5_s0_station_sref_script[] = { /* 0x81987e8 */ + DEBUGINFO, + SELECT_MAP(5), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(40), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptRef s_gs5_g5_s0_station_sref = { 400, 7, NULL /* EVENT_CONTROL */, s_gs5_g5_s0_station_sref_script }; /* 0x8198868 */ + +static const struct ScriptCommand s_gs5_g5_s0_eff0_script[] = { /* 0x8198874 */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x6b, 0x00, 0x0080, 0x00000000, 0x00000000, NULL }, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + END_DELETE, +}; + +static const struct ScriptCommand s_gs5_g5_s0_lives0_dlg0[] = { /* 0x81988f4 */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(60), + { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + WAIT(30), + { 0x68, 0x00, 0x0080, 0x00000020, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x80, 0x00, 0x0080, 0x00000002, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000002, 0x00000000, NULL }, + { 0x80, 0x00, 0x0100, 0x00000003, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x80, 0x00, 0x0100, 0x00000004, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs5_g5_s0_lives1_dlg0[] = { /* 0x8198a24 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x91, 0x08, 0x000a, 0x00000006, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_gs5_g5_s0_lives2_dlg0[] = { /* 0x8198a84 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x6b, 0x00, 0x0100, 0x00000005, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct GroundLivesData s_gs5_g0_s1_lives[] = { /* 0x8198ae4 */ + /* 0 */ { 0, 4, 0, 0, { 33, 44, 0, CPOS_HALFTILE }, { + [0] = s_gs5_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 33, 46, 0, CPOS_HALFTILE }, { + [0] = s_gs5_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs5_g1_s0_lives[] = { /* 0x8198b14 */ + /* 0 */ { 47, 0, 0, 0, { 31, 32, 0, CPOS_HALFTILE }, { + [2] = s_gs5_g1_s0_lives0_dlg2, + } }, + /* 1 */ { 48, 0, 0, 0, { 38, 32, 0, CPOS_HALFTILE }, { + [2] = s_gs5_g1_s0_lives1_dlg2, + } }, + /* 2 */ { 50, 6, 0, 0, { 49, 38, 0, 0 }, { + [2] = s_gs5_g1_s0_lives2_dlg2, + } }, +}; + +static const struct GroundLivesData s_gs5_g2_s0_lives[] = { /* 0x8198b5c */ + /* 0 */ { 0, 4, 0, 0, { 31, 36, 0, CPOS_HALFTILE }, { + [0] = s_gs5_g2_s0_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 31, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs5_g2_s0_lives1_dlg0, + } }, + /* 2 */ { 47, 0, 0, 0, { 31, 32, 0, CPOS_HALFTILE }, { + [0] = s_gs5_g2_s0_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs5_g3_s0_lives[] = { /* 0x8198ba4 */ + /* 0 */ { 0, 4, 0, 0, { 31, 36, 0, CPOS_HALFTILE }, { + [0] = s_gs5_g3_s0_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 31, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs5_g3_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs5_g4_s0_lives[] = { /* 0x8198bd4 */ + /* 0 */ { 0, 4, 0, 0, { 31, 36, 0, CPOS_HALFTILE }, { + [0] = s_gs5_g4_s0_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 31, 38, 0, CPOS_HALFTILE }, { + [0] = s_gs5_g4_s0_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs5_g5_s0_lives[] = { /* 0x8198c04 */ + /* 0 */ { 56, 0, 0, 0, { 31, 32, 0, CPOS_HALFTILE }, { + [0] = s_gs5_g5_s0_lives0_dlg0, + } }, + /* 1 */ { 57, 0, 0, 0, { 38, 32, 0, CPOS_HALFTILE }, { + [0] = s_gs5_g5_s0_lives1_dlg0, + } }, + /* 2 */ { 36, 4, 0, 0, { 31, 47, 0, CPOS_HALFTILE }, { + [0] = s_gs5_g5_s0_lives2_dlg0, + } }, +}; + +static const struct GroundObjectData s_gs5_g1_s0_objs[] = { /* 0x8198c4c */ + /* 0 */ { 4, 0, 3, 3, { 46, 38, CPOS_HALFTILE, 0 }, { + [2] = s_gs5_g1_s0_obj0_dlg2, + } }, +}; + +static const struct GroundEffectData s_gs5_g5_s0_effs[] = { /* 0x8198c64 */ + /* 0 */ { 0, 0, 1, 1, { 34, 34, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs5_g5_s0_eff0_script }, +}; + +static const struct GroundEventData s_gs5_g0_s0_evts[] = { /* 0x8198c70 */ + /* 0 */ { 8, 3, 0, 0, { 29, 48, 0, 0 }, &s_gs5_g0_s0_evt0_sref }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x8198c7c */ + &s_gs5_g0_s0_station_sref, + &s_gs5_g1_s0_station_sref, + &s_gs5_g2_s0_station_sref, + &s_gs5_g3_s0_station_sref, + &s_gs5_g4_s0_station_sref, + &s_gs5_g5_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs5_g0_sectors[] = { /* 0x8198c94 */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs5_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs5_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs5_g1_sectors[] = { /* 0x8198ce4 */ + { LPARRAY(s_gs5_g1_s0_lives), LPARRAY(s_gs5_g1_s0_objs), 0,NULL, 0,NULL, 1,&sStationScripts[1], }, +}; + +static const struct GroundScriptSector s_gs5_g2_sectors[] = { /* 0x8198d0c */ + { LPARRAY(s_gs5_g2_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptSector s_gs5_g3_sectors[] = { /* 0x8198d34 */ + { LPARRAY(s_gs5_g3_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[3], }, +}; + +static const struct GroundScriptSector s_gs5_g4_sectors[] = { /* 0x8198d5c */ + { LPARRAY(s_gs5_g4_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[4], }, +}; + +static const struct GroundScriptSector s_gs5_g5_sectors[] = { /* 0x8198d84 */ + { LPARRAY(s_gs5_g5_s0_lives), 0,NULL, LPARRAY(s_gs5_g5_s0_effs), 0,NULL, 1,&sStationScripts[5], }, +}; + +static const struct GroundScriptGroup s_gs5_groups[] = { /* 0x8198dac */ + { LPARRAY(s_gs5_g0_sectors) }, + { LPARRAY(s_gs5_g1_sectors) }, + { LPARRAY(s_gs5_g2_sectors) }, + { LPARRAY(s_gs5_g3_sectors) }, + { LPARRAY(s_gs5_g4_sectors) }, + { LPARRAY(s_gs5_g5_sectors) }, +}; + +static const struct GroundLink s_gs5_links[] = { /* 0x8198ddc */ + /* link 0 */ { { /*x*/ 34, /*y*/ 17, /*flags*/ CPOS_HALFTILE, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 1 */ { { /*x*/ 31, /*y*/ 28, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 2 */ { { /*x*/ 31, /*y*/ 23, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 3 */ { { /*x*/ 33, /*y*/ 18, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 4 */ { { /*x*/ 40, /*y*/ 14, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, + /* link 5 */ { { /*x*/ 31, /*y*/ 37, /*flags*/ 0, CPOS_HALFTILE }, /*w*/ 1, /*h*/ 1, /*ret*/ 2, /*?*/ 1 }, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs5 = { LPARRAY(s_gs5_groups), s_gs5_links }; /* 0x8198e0c */ diff --git a/src/data/ground/ground_data_t01p05_station.h b/src/data/ground/ground_data_t01p05_station.h new file mode 100644 index 000000000..aee2e7b08 --- /dev/null +++ b/src/data/ground/ground_data_t01p05_station.h @@ -0,0 +1,529 @@ + + + + + + + + +static const struct ScriptCommand s_gs6_g0_s0_station_sref_script[] = { /* 0x8198e20 */ + DEBUGINFO, + SELECT_MAP(6), + JUMP_LABEL(0), + LABEL(0), /* = 0x00 */ + CALL_STATION( 1, 0), + JUMP_LABEL(1), + LABEL(1), /* = 0x01 */ + CJUMP_VAR(START_MODE), + COND_EQUAL(12, /* to label */ 2), + COND_EQUAL(11, /* to label */ 2), + COND_EQUAL(10, /* to label */ 3), + COND_EQUAL(9, /* to label */ 4), + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(1, /* to label */ 5), + COND_EQUAL(7, /* to label */ 6), + LABEL(5), /* = 0x05 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(7), + LABEL(6), /* = 0x06 */ + SELECT_LIVES(0, 2), + JUMP_LABEL(7), + LABEL(2), /* = 0x02 */ + EXECUTE_SUBSTATION(-1, 4, 0), + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + RET, + LABEL(3), /* = 0x03 */ + EXECUTE_SUBSTATION(-1, 3, 0), + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + RET, + LABEL(4), /* = 0x04 */ + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + { 0x3b, 0x0d, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 8), + EXECUTE_SUBSTATION(-1, 2, 0), + RET, + LABEL(8), /* = 0x08 */ + EXECUTE_SUBSTATION(-1, 5, 0), + RET, + LABEL(7), /* = 0x07 */ + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + BGM_SWITCH(7), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs6_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs6_g0_s0_station_sref_script }; /* 0x81990ec */ + +static const struct ScriptCommand s_gs6_g0_s0_evt0_sref_script[] = { /* 0x81990f8 */ + DEBUGINFO, + { 0x01, 0x00, -0x0001, 0x00000001, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptRef s_gs6_g0_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs6_g0_s0_evt0_sref_script }; /* 0x8199128 */ + +static const struct ScriptCommand s_gs6_g0_s1_lives0_dlg0[] = { /* 0x8199134 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs6_g0_s1_lives1_dlg0[] = { /* 0x8199174 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs6_g0_s2_lives0_dlg0[] = { /* 0x81991b4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs6_g0_s2_lives1_dlg0[] = { /* 0x81991f4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs6_g0_s3_evt0_sref_script[] = { /* 0x8199234 */ + DEBUGINFO, + { 0x21, 0x00, 0x0000, 0x00000054, 0x00000000, NULL }, + HALT, + JUMPIF_EQUAL(WARP_LOCK, 0, /* to label */ 0), + JUMP_LABEL(0), + CALL_SCRIPT(EVENT_DIVIDE_WARP_LOCK_FUNC), + RET, + LABEL(0), /* = 0x00 */ + { 0x06, 0x00, 0x001e, -0x00000001, 0x00000000, NULL }, + COND_EQUAL(-1, /* to label */ 2), + HALT, + LABEL(2), /* = 0x02 */ + RET, +}; + +static const struct ScriptRef s_gs6_g0_s3_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs6_g0_s3_evt0_sref_script }; /* 0x8199304 */ + + +static const struct ScriptCommand s_gs6_g1_s0_station_sref_script[] = { /* 0x8199310 */ + DEBUGINFO, + JUMPIF_SCENARIOCHECK(10, /* to label */ 0), + CANCEL_EVENTS(-1, -1), + SELECT_ENTITIES(-1, 1), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + CANCEL_EVENTS(-1, -1), + SELECT_ENTITIES(-1, 0), + RET_DIRECT, +}; + +static const struct ScriptRef s_gs6_g1_s0_station_sref = { 403, 8, NULL /* STATION_CONTROL */, s_gs6_g1_s0_station_sref_script }; /* 0x81993a0 */ + +static const struct ScriptCommand s_gs6_g1_s0_lives0_dlg1[] = { /* 0x81993ac */ + DEBUGINFO, + { 0x53, 0x00, 0x0000, 0x00000400, 0x00000000, NULL }, + JUMP_SCRIPT(MOVE_PLAZA_SLEEP), +}; + +static const struct ScriptCommand s_gs6_g1_s0_lives0_dlg2[] = { /* 0x81993dc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x06, 0x00, 0x001e, -0x00000001, 0x00000000, NULL }, + COND_EQUAL(-1, /* to label */ 0), + BGM_FADEOUT(30), + HALT, + LABEL(0), /* = 0x00 */ + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_gs6_g1_s0_lives0_dlg3[] = { /* 0x819947c */ + DEBUGINFO, + CALL_SCRIPT(INIT_PLAZA_SLEEP_TALK_FUNC), + JUMPIF_SCENARIOCHECK(4, /* to label */ 0), + { 0x8e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x8d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(LIVES_REPLY), +}; + +static const struct ScriptCommand s_gs6_g1_s0_evt0_sref_script[] = { /* 0x81994ec */ + DEBUGINFO, + { 0x21, 0x00, 0x0000, 0x00000054, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptRef s_gs6_g1_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs6_g1_s0_evt0_sref_script }; /* 0x819951c */ + +static const struct ScriptCommand s_gs6_g1_s1_evt0_sref_script[] = { /* 0x8199528 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+There appears to be no one inside.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+............!#W\n#+There is a notice posted in the back.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Under Construction - Keep Out\n#+- Makuhita Dojo -") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptRef s_gs6_g1_s1_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs6_g1_s1_evt0_sref_script }; /* 0x8199640 */ + +static const struct ScriptCommand s_gs6_g2_s0_station_sref_script[] = { /* 0x819964c */ + DEBUGINFO, + SELECT_MAP(6), + CALL_STATION( 1, 0), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(7), + { 0x22, 0x01, -0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 1, 0), + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs6_g2_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs6_g2_s0_station_sref_script }; /* 0x81996ec */ + +static const struct ScriptCommand s_gs6_g2_s0_lives0_dlg0[] = { /* 0x81996f8 */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + CALL_SCRIPT(WAIT_START_FUNC), + { 0x3c, 0x25, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x0e, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 0), + COND_EQUAL(2, /* to label */ 0), + COND_EQUAL(3, /* to label */ 0), + COND_EQUAL(4, /* to label */ 0), + COND_EQUAL(5, /* to label */ 0), + JUMP_LABEL(5), + LABEL(0), /* = 0x00 */ + { 0x3c, 0x2c, 0x0000, 0x00000049, 0x00000000, NULL }, + LABEL(5), /* = 0x05 */ + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + + + + + +static const struct ScriptCommand s_gs6_g2_s0_lives1_dlg0[] = { /* 0x8199848 */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs6_g2_s0_lives2_dlg0[] = { /* 0x81998c8 */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(INIT_PLAZA_SLEEP_TALK_FUNC), + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs6_g3_s0_station_sref_script[] = { /* 0x8199938 */ + DEBUGINFO, + SELECT_MAP(6), + CALL_STATION( 1, 0), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(7), + { 0x22, 0x01, -0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 1, 0), + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs6_g3_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs6_g3_s0_station_sref_script }; /* 0x81999d8 */ + +static const struct ScriptCommand s_gs6_g3_s0_lives0_dlg0[] = { /* 0x81999e4 */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + CALL_SCRIPT(WAIT_START_FUNC), + { 0x3c, 0x26, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs6_g3_s0_lives1_dlg0[] = { /* 0x8199a94 */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs6_g3_s0_lives2_dlg0[] = { /* 0x8199b14 */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(INIT_PLAZA_SLEEP_TALK_FUNC), + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs6_g4_s0_station_sref_script[] = { /* 0x8199b84 */ + DEBUGINFO, + SELECT_MAP(6), + CALL_STATION( 1, 0), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(7), + { 0x22, 0x01, -0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 1, 0), + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs6_g4_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs6_g4_s0_station_sref_script }; /* 0x8199c24 */ + +static const struct ScriptCommand s_gs6_g4_s0_lives0_dlg0[] = { /* 0x8199c30 */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + CALL_SCRIPT(WAIT_START_FUNC), + { 0x3c, 0x26, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs6_g4_s0_lives1_dlg0[] = { /* 0x8199ce0 */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs6_g4_s0_lives2_dlg0[] = { /* 0x8199d60 */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(INIT_PLAZA_SLEEP_TALK_FUNC), + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs6_g5_s0_station_sref_script[] = { /* 0x8199dd0 */ + DEBUGINFO, + SELECT_MAP(6), + CALL_STATION( 1, 0), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(7), + { 0x22, 0x01, -0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + CALL_STATION( 1, 0), + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs6_g5_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs6_g5_s0_station_sref_script }; /* 0x8199e70 */ + +static const struct ScriptCommand s_gs6_g5_s0_lives0_dlg0[] = { /* 0x8199e7c */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + CALL_SCRIPT(WAIT_START_FUNC), + { 0x3c, 0x27, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs6_g5_s0_lives1_dlg0[] = { /* 0x8199f2c */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + { 0xe3, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs6_g5_s0_lives2_dlg0[] = { /* 0x8199fac */ + DEBUGINFO, + { 0x4f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(INIT_PLAZA_SLEEP_TALK_FUNC), + { 0x2d, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x8e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct GroundLivesData s_gs6_g0_s1_lives[] = { /* 0x819a01c */ + /* 0 */ { 0, 0, 0, 0, { 45, 9, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs6_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 45, 7, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs6_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs6_g0_s2_lives[] = { /* 0x819a04c */ + /* 0 */ { 0, 0, 0, 0, { 34, 32, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs6_g0_s2_lives0_dlg0, + } }, + /* 1 */ { 4, 0, 0, 0, { 34, 30, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs6_g0_s2_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs6_g1_s0_lives[] = { /* 0x819a07c */ + /* 0 */ { 84, 0, 0, 0, { 30, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [1] = s_gs6_g1_s0_lives0_dlg1, + [2] = s_gs6_g1_s0_lives0_dlg2, + [3] = s_gs6_g1_s0_lives0_dlg3, + } }, +}; + +static const struct GroundLivesData s_gs6_g2_s0_lives[] = { /* 0x819a094 */ + /* 0 */ { 0, 6, 0, 0, { 34, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs6_g2_s0_lives0_dlg0, + } }, + /* 1 */ { 4, 6, 0, 0, { 38, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs6_g2_s0_lives1_dlg0, + } }, + /* 2 */ { 84, 2, 0, 0, { 30, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs6_g2_s0_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs6_g3_s0_lives[] = { /* 0x819a0dc */ + /* 0 */ { 0, 6, 0, 0, { 34, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs6_g3_s0_lives0_dlg0, + } }, + /* 1 */ { 4, 6, 0, 0, { 38, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs6_g3_s0_lives1_dlg0, + } }, + /* 2 */ { 84, 2, 0, 0, { 30, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs6_g3_s0_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs6_g4_s0_lives[] = { /* 0x819a124 */ + /* 0 */ { 0, 6, 0, 0, { 34, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs6_g4_s0_lives0_dlg0, + } }, + /* 1 */ { 4, 6, 0, 0, { 38, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs6_g4_s0_lives1_dlg0, + } }, + /* 2 */ { 84, 2, 0, 0, { 30, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs6_g4_s0_lives2_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs6_g5_s0_lives[] = { /* 0x819a16c */ + /* 0 */ { 0, 6, 0, 0, { 34, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs6_g5_s0_lives0_dlg0, + } }, + /* 1 */ { 4, 6, 0, 0, { 38, 31, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs6_g5_s0_lives1_dlg0, + } }, + /* 2 */ { 84, 2, 0, 0, { 30, 31, 0, CPOS_HALFTILE }, { + [0] = s_gs6_g5_s0_lives2_dlg0, + } }, +}; + +static const struct GroundEventData s_gs6_g0_s0_evts[] = { /* 0x819a1b4 */ + /* 0 */ { 16, 6, 0, 0, { 38, 0, 0, 0 }, &s_gs6_g0_s0_evt0_sref }, +}; + +static const struct GroundEventData s_gs6_g0_s3_evts[] = { /* 0x819a1c0 */ + /* 0 */ { 3, 3, 0, 0, { 33, 26, 0, 0 }, &s_gs6_g0_s3_evt0_sref }, +}; + +static const struct GroundEventData s_gs6_g1_s0_evts[] = { /* 0x819a1cc */ + /* 0 */ { 3, 3, 0, 0, { 33, 26, 0, 0 }, &s_gs6_g1_s0_evt0_sref }, +}; + +static const struct GroundEventData s_gs6_g1_s1_evts[] = { /* 0x819a1d8 */ + /* 0 */ { 3, 3, 0, 0, { 33, 26, 0, 0 }, &s_gs6_g1_s1_evt0_sref }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x819a1e4 */ + &s_gs6_g0_s0_station_sref, + &s_gs6_g1_s0_station_sref, + &s_gs6_g2_s0_station_sref, + &s_gs6_g3_s0_station_sref, + &s_gs6_g4_s0_station_sref, + &s_gs6_g5_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs6_g0_sectors[] = { /* 0x819a1fc */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs6_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs6_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { LPARRAY(s_gs6_g0_s2_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs6_g0_s3_evts), 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs6_g1_sectors[] = { /* 0x819a29c */ + { LPARRAY(s_gs6_g1_s0_lives), 0,NULL, 0,NULL, LPARRAY(s_gs6_g1_s0_evts), 1,&sStationScripts[1], }, + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs6_g1_s1_evts), 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs6_g2_sectors[] = { /* 0x819a2ec */ + { LPARRAY(s_gs6_g2_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptSector s_gs6_g3_sectors[] = { /* 0x819a314 */ + { LPARRAY(s_gs6_g3_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[3], }, +}; + +static const struct GroundScriptSector s_gs6_g4_sectors[] = { /* 0x819a33c */ + { LPARRAY(s_gs6_g4_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[4], }, +}; + +static const struct GroundScriptSector s_gs6_g5_sectors[] = { /* 0x819a364 */ + { LPARRAY(s_gs6_g5_s0_lives), 0,NULL, 0,NULL, 0,NULL, 1,&sStationScripts[5], }, +}; + +static const struct GroundScriptGroup s_gs6_groups[] = { /* 0x819a38c */ + { LPARRAY(s_gs6_g0_sectors) }, + { LPARRAY(s_gs6_g1_sectors) }, + { LPARRAY(s_gs6_g2_sectors) }, + { LPARRAY(s_gs6_g3_sectors) }, + { LPARRAY(s_gs6_g4_sectors) }, + { LPARRAY(s_gs6_g5_sectors) }, +}; + +static const struct GroundLink s_gs6_links[] = { /* 0x819a3bc */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs6 = { LPARRAY(s_gs6_groups), s_gs6_links }; /* 0x819a3c4 */ diff --git a/src/data/ground/ground_data_t01p06_station.h b/src/data/ground/ground_data_t01p06_station.h new file mode 100644 index 000000000..e26c72c04 --- /dev/null +++ b/src/data/ground/ground_data_t01p06_station.h @@ -0,0 +1,99 @@ + + + + + + + + +static const struct ScriptCommand s_gs7_g0_s0_station_sref_script[] = { /* 0x819a3d8 */ + DEBUGINFO, + SELECT_MAP(7), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_LT, 4, /* to label */ 0), + COND(JUDGE_EQ, 4, /* to label */ 1), + COND(JUDGE_EQ, 5, /* to label */ 2), + JUMP_LABEL(2), + JUMP_LABEL(0), + LABEL(1), /* = 0x01 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(0), + LABEL(2), /* = 0x02 */ + SELECT_ENTITIES(1, 0), + JUMP_LABEL(0), + LABEL(0), /* = 0x00 */ + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(6, /* to label */ 3), + LABEL(3), /* = 0x03 */ + SELECT_LIVES(0, 1), + JUMP_LABEL(4), + LABEL(4), /* = 0x04 */ + BGM_SWITCH(110), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs7_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs7_g0_s0_station_sref_script }; /* 0x819a574 */ + +static const struct ScriptCommand s_gs7_g0_s0_evt0_sref_script[] = { /* 0x819a580 */ + DEBUGINFO, + { 0x01, 0x00, -0x0001, 0x00000006, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptRef s_gs7_g0_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs7_g0_s0_evt0_sref_script }; /* 0x819a5b0 */ + +static const struct ScriptCommand s_gs7_g0_s1_lives0_dlg0[] = { /* 0x819a5bc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs7_g0_s1_lives1_dlg0[] = { /* 0x819a5fc */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct GroundLivesData s_gs7_g0_s1_lives[] = { /* 0x819a63c */ + /* 0 */ { 0, 4, 0, 0, { 31, 34, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs7_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 31, 36, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs7_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs7_g1_s0_lives[] = { /* 0x819a66c */ + /* 0 */ { 43, 0, 0, 0, { 27, 24, CPOS_HALFTILE, CPOS_HALFTILE }, {} }, + /* 1 */ { 76, 0, 0, 0, { 39, 24, CPOS_HALFTILE, CPOS_HALFTILE }, {} }, +}; + +static const struct GroundEventData s_gs7_g0_s0_evts[] = { /* 0x819a69c */ + /* 0 */ { 9, 3, 0, 0, { 27, 38, 0, 0 }, &s_gs7_g0_s0_evt0_sref }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x819a6a8 */ + &s_gs7_g0_s0_station_sref, +}; + +static const struct GroundScriptSector s_gs7_g0_sectors[] = { /* 0x819a6ac */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs7_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs7_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs7_g1_sectors[] = { /* 0x819a6fc */ + { LPARRAY(s_gs7_g1_s0_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptGroup s_gs7_groups[] = { /* 0x819a724 */ + { LPARRAY(s_gs7_g0_sectors) }, + { LPARRAY(s_gs7_g1_sectors) }, +}; + +static const struct GroundLink s_gs7_links[] = { /* 0x819a734 */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs7 = { LPARRAY(s_gs7_groups), s_gs7_links }; /* 0x819a73c */ diff --git a/src/data/ground/ground_data_t01p07_station.h b/src/data/ground/ground_data_t01p07_station.h new file mode 100644 index 000000000..c6c93f789 --- /dev/null +++ b/src/data/ground/ground_data_t01p07_station.h @@ -0,0 +1,171 @@ + + + + + + + + +static const struct ScriptCommand s_gs8_g0_s0_station_sref_script[] = { /* 0x819a750 */ + DEBUGINFO, + SELECT_MAP(8), + CJUMP_VAR(GROUND_GETOUT), + COND_EQUAL(2, /* to label */ 1), + COND_EQUAL(3, /* to label */ 1), + SELECT_LIVES(0, 1), + JUMP_LABEL(2), + LABEL(1), /* = 0x01 */ + JUMP_STATION( 1, 0), + LABEL(2), /* = 0x02 */ + BGM_SWITCH(8), + JUMP_SCRIPT(COMMON_ENTER), +}; + +static const struct ScriptRef s_gs8_g0_s0_station_sref = { 404, 1, NULL /* ENTER_CONTROL */, s_gs8_g0_s0_station_sref_script }; /* 0x819a83c */ + + +static const struct ScriptCommand s_gs8_g0_s0_evt0_sref_script[] = { /* 0x819a848 */ + DEBUGINFO, + { 0x01, 0x00, -0x0001, 0x00000002, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptRef s_gs8_g0_s0_evt0_sref = { 357, 2, NULL /* GETOUT_NORMAL */, s_gs8_g0_s0_evt0_sref_script }; /* 0x819a878 */ + +static const struct ScriptCommand s_gs8_g0_s1_lives0_dlg0[] = { /* 0x819a884 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs8_g0_s1_lives1_dlg0[] = { /* 0x819a8c4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_gs8_g1_s0_station_sref_script[] = { /* 0x819a904 */ + DEBUGINFO, + SELECT_MAP(8), + SELECT_ENTITIES(-1, -1), + BGM_SWITCH(8), + { 0x22, 0x01, -0x0001, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs8_g1_s0_station_sref = { 402, 7, NULL /* EVENT_STATION */, s_gs8_g1_s0_station_sref_script }; /* 0x819a984 */ + +static const struct ScriptCommand s_gs8_g1_s0_eff0_script[] = { /* 0x819a990 */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3c, 0x1a, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs8_g1_s0_lives0_dlg0[] = { /* 0x819aa10 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_gs8_g1_s1_station_sref_script[] = { /* 0x819aa80 */ + DEBUGINFO, + SELECT_EFFECTS(-1, 1), + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + SELECT_EVENTS(0, 0), + RET, +}; + +static const struct ScriptRef s_gs8_g1_s1_station_sref = { 401, 7, NULL /* EVENT_WAKEUP */, s_gs8_g1_s1_station_sref_script }; /* 0x819aad0 */ + +static const struct ScriptCommand s_gs8_g1_s1_eff0_script[] = { /* 0x819aadc */ + DEBUGINFO, + { 0x56, 0x00, 0x0000, 0x000001b4, 0x00000000, NULL }, + WAIT(30), + CANCEL_LIVES(-1, 0), + SELECT_LIVES(-1, 1), + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_gs8_g1_s1_lives0_dlg0[] = { /* 0x819ab4c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, + { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct GroundLivesData s_gs8_g0_s1_lives[] = { /* 0x819abbc */ + /* 0 */ { 0, 4, 0, 0, { 25, 26, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs8_g0_s1_lives0_dlg0, + } }, + /* 1 */ { 4, 4, 0, 0, { 25, 28, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs8_g0_s1_lives1_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs8_g1_s0_lives[] = { /* 0x819abec */ + /* 0 */ { 0, 4, 0, 0, { 25, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs8_g1_s0_lives0_dlg0, + } }, +}; + +static const struct GroundLivesData s_gs8_g1_s1_lives[] = { /* 0x819ac04 */ + /* 0 */ { 0, 4, 0, 0, { 25, 21, CPOS_HALFTILE, CPOS_HALFTILE }, { + [0] = s_gs8_g1_s1_lives0_dlg0, + } }, +}; + +static const struct GroundEffectData s_gs8_g1_s0_effs[] = { /* 0x819ac1c */ + /* 0 */ { 0, 0, 1, 1, { 25, 21, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs8_g1_s0_eff0_script }, +}; + +static const struct GroundEffectData s_gs8_g1_s1_effs[] = { /* 0x819ac28 */ + /* 0 */ { 3, 0, 1, 1, { 25, 21, CPOS_HALFTILE, CPOS_HALFTILE }, s_gs8_g1_s1_eff0_script }, +}; + +static const struct GroundEventData s_gs8_g0_s0_evts[] = { /* 0x819ac34 */ + /* 0 */ { 9, 3, 0, 0, { 21, 30, 0, 0 }, &s_gs8_g0_s0_evt0_sref }, +}; + +static const struct ScriptRef * const (sStationScripts[]) = { /* 0x819ac40 */ + &s_gs8_g0_s0_station_sref, + &s_gs8_g1_s0_station_sref, + &s_gs8_g1_s1_station_sref, +}; + +static const struct GroundScriptSector s_gs8_g0_sectors[] = { /* 0x819ac4c */ + { 0,NULL, 0,NULL, 0,NULL, LPARRAY(s_gs8_g0_s0_evts), 1,&sStationScripts[0], }, + { LPARRAY(s_gs8_g0_s1_lives), 0,NULL, 0,NULL, 0,NULL, 0,NULL, }, +}; + +static const struct GroundScriptSector s_gs8_g1_sectors[] = { /* 0x819ac9c */ + { LPARRAY(s_gs8_g1_s0_lives), 0,NULL, LPARRAY(s_gs8_g1_s0_effs), 0,NULL, 1,&sStationScripts[1], }, + { LPARRAY(s_gs8_g1_s1_lives), 0,NULL, LPARRAY(s_gs8_g1_s1_effs), 0,NULL, 1,&sStationScripts[2], }, +}; + +static const struct GroundScriptGroup s_gs8_groups[] = { /* 0x819acec */ + { LPARRAY(s_gs8_g0_sectors) }, + { LPARRAY(s_gs8_g1_sectors) }, +}; + +static const struct GroundLink s_gs8_links[] = { /* 0x819acfc */ + {}, +}; + +/*extern*/ const struct GroundScriptHeader gGroundScript_gs8 = { LPARRAY(s_gs8_groups), s_gs8_links }; /* 0x819ad04 */ diff --git a/src/data/ground/ground_event_data.h b/src/data/ground/ground_event_data.h new file mode 100644 index 000000000..f7f71488e --- /dev/null +++ b/src/data/ground/ground_event_data.h @@ -0,0 +1,5673 @@ + + + + + + + + + + + + +static const struct ScriptCommand s_script_END_TALK[] = { /* 0x811ee64 */ + DEBUGINFO, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_script_WAIT_END_TALK_FUNC[] = { /* 0x811eec8 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_WAIT_END_EVENT_FUNC[] = { /* 0x811eef8 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_WAIT_START_FUNC[] = { /* 0x811ef28 */ + DEBUGINFO, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_INCOMPLETE_TALK[] = { /* 0x811ef58 */ + DEBUGINFO, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#CWUnregistered dialog script#R") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_script_NORMAL_WAIT_END_TALK[] = { /* 0x811efa8 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_script_LIVES_REPLY_NORMAL[] = { /* 0x811efd8 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x8d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(12), + RET, +}; + +static const struct ScriptCommand s_script_LIVES_REPLY[] = { /* 0x811f048 */ + DEBUGINFO, + { 0x2d, 0x07, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x8d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe3, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(12), + RET, +}; + +static const struct ScriptCommand s_script_OBJECT_REPLY_NORMAL[] = { /* 0x811f0a8 */ + DEBUGINFO, + { 0xe3, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(20), + RET, +}; + +static const struct ScriptCommand s_script_EXAMINE_MISS[] = { /* 0x811f0e8 */ + DEBUGINFO, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("$n0 checked underfoot.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("But there was nothing to be found...") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_script_ENTER_WAIT_FUNC[] = { /* 0x811f168 */ + DEBUGINFO, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_UNIT_TALK[] = { /* 0x811f188 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x00, 0x0001, -0x00000002, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("Let's go.") }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_script_HABITAT_TALK[] = { /* 0x811f214 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x00, 0x0001, -0x00000002, 0x00000000, NULL }, + { 0x3b, 0x0a, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 0), + COND_EQUAL(2, /* to label */ 1), + { 0xe3, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, + LABEL(0), /* = 0x00 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _("Pleased to meet you.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(HABITAT_TALK_S01E02A), +}; + +static const struct ScriptCommand s_script_HABITAT_TALK_S01E02A[] = { /* 0x811f36c */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x2e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x2e, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMPIF_EQUAL(FLAG_KIND_CHANGE_REQUEST, 0, /* to label */ 0), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I will dedicate myself to\ncreating a fantastic new design.\nPlease check the rescue team flag later!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If my design fails to\nimpress you, please let me know.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If so, I will change the\ndesign to one perhaps more to your liking.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, + LABEL(0), /* = 0x00 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hello!") }, + ASK3(FALSE, /*default*/ 1, /* speaker */ 1, _(" Oh?#W Did you perhaps wish\nto change the team flag's design?")), + CHOICE(/* label */ 1, _("No need to change.")), + CHOICE(/* label */ 2, _("Yes, please.")), + LABEL(1), /* = 0x01 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I see.#W If you would like the\nflag's design changed, please tell me.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, + LABEL(2), /* = 0x02 */ + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Ah, very well!#W\nI may be unknown, but nonetheless, I am\nan artist.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I will do my best to create\na splendid design for you!\nPlease check the rescue team flag later!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If my design fails to\nimpress you, please let me know.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If so, I will change the\ndesign to one perhaps more to your liking.") }, + UPDATE_VARINT(CALC_SET, FLAG_KIND_CHANGE_REQUEST, 1), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_script_HABITAT_MOVE1[] = { /* 0x811f7c0 */ + DEBUGINFO, + { 0x3b, 0x14, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 0), + JUMP_SCRIPT(HABITAT_MOVE_STAY_TURN), + LABEL(0), /* = 0x00 */ + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0x8a, 0x18, 0x0100, 0x00000009, 0x00000000, NULL }, + WAIT_RANDOM(24, 48), + JUMP_LABEL(1), +}; + +static const struct ScriptCommand s_script_HABITAT_MOVE2[] = { /* 0x811f860 */ + DEBUGINFO, + { 0x3b, 0x14, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 0), + JUMP_SCRIPT(HABITAT_MOVE_STAY_TURN), + LABEL(0), /* = 0x00 */ + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00000002, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00000001, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0x8a, 0x18, 0x0100, 0x00000009, 0x00000000, NULL }, + WAIT_RANDOM(24, 48), + JUMP_LABEL(1), +}; + +static const struct ScriptCommand s_script_HABITAT_MOVE_PAUSE[] = { /* 0x811f920 */ + DEBUGINFO, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x8d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + WAIT(240), + JUMP_LABEL(0), +}; + +static const struct ScriptCommand s_script_HABITAT_MOVE_STAY_FIX[] = { /* 0x811f990 */ + DEBUGINFO, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x8d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + WAIT(240), + JUMP_LABEL(0), +}; + +static const struct ScriptCommand s_script_HABITAT_MOVE_STAY_TURN[] = { /* 0x811fa00 */ + DEBUGINFO, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x8d, 0x01, 0x0009, 0x00000000, 0x00000000, NULL }, + WAIT_RANDOM(24, 48), + JUMP_LABEL(0), +}; + +static const struct ScriptCommand s_script_LIVES_MOVE_NORMAL[] = { /* 0x811fa70 */ + DEBUGINFO, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + WAIT(240), + JUMP_LABEL(0), +}; + +static const struct ScriptCommand s_script_LIVES_MOVE_CHANGE[] = { /* 0x811fad0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + WAIT(240), + JUMP_LABEL(0), +}; + +static const struct ScriptCommand s_script_OBJECT_MOVE_NORMAL[] = { /* 0x811fb30 */ + DEBUGINFO, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + WAIT(240), + JUMP_LABEL(0), +}; + +static const struct ScriptCommand s_script_OBJECT_MOVE_CHANGE[] = { /* 0x811fb80 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + WAIT(240), + JUMP_LABEL(0), +}; + +static const struct ScriptCommand s_script_EFFECT_MOVE_NORMAL[] = { /* 0x811fbd0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + WAIT(240), + JUMP_LABEL(0), +}; + +static const struct ScriptCommand s_script_EFFECT_MOVE_CHANGE[] = { /* 0x811fc20 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + WAIT(240), + JUMP_LABEL(0), +}; + +static const struct ScriptCommand s_script_MOVE_INIT[] = { /* 0x811fc70 */ + DEBUGINFO, + WAIT(12), + RET, +}; + +static const struct ScriptCommand s_script_MOVE_PAUSE[] = { /* 0x811fca0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x8d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + WAIT(240), + JUMP_LABEL(0), +}; + +static const struct ScriptCommand s_script_MOVE_STAY[] = { /* 0x811fd10 */ + DEBUGINFO, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x8d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + WAIT(240), + JUMP_LABEL(0), +}; + +static const struct ScriptCommand s_script_MOVE_SLEEP[] = { /* 0x811fd80 */ + DEBUGINFO, + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + WAIT(240), + JUMP_LABEL(0), +}; + +static const struct ScriptCommand s_script_MOVE_RANDOM[] = { /* 0x811fde0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x8a, 0x18, 0x0100, 0x00000008, 0x00000000, NULL }, + WAIT(48), + JUMP_LABEL(0), +}; + +static const struct ScriptCommand s_script_MOVE_BOY[] = { /* 0x811fe40 */ + DEBUGINFO, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x8a, 0x18, 0x0100, 0x00000008, 0x00000000, NULL }, + WAIT_RANDOM(24, 48), + JUMP_LABEL(0), +}; + +static const struct ScriptCommand s_script_MOVE_GIRL[] = { /* 0x811fea0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + { 0x8a, 0x10, 0x0100, 0x00000008, 0x00000000, NULL }, + WAIT_RANDOM(16, 24), + JUMP_LABEL(0), +}; + +static const struct ScriptCommand s_script_WAKEUP_FUNC[] = { /* 0x811ff00 */ + DEBUGINFO, + JUMPIF_UNK_BE(/* to label */ 0), /* something sleep related?*/ + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x3c, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(60), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + { 0x54, 0x00, 0x0026, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x3c, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0027, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + WAIT(40), + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_LOOK_AROUND_FUNC[] = { /* 0x8120000 */ + DEBUGINFO, + { 0x92, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + WAIT(15), + { 0x92, 0x04, 0x0001, 0x00000005, 0x00000000, NULL }, + WAIT(15), + { 0x92, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, + WAIT(15), + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_LOOK_AROUND_DOWN_FUNC[] = { /* 0x8120080 */ + DEBUGINFO, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_LOOK_AROUND_RIGHT_FUNC[] = { /* 0x81200f0 */ + DEBUGINFO, + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_LOOK_AROUND_LEFT_FUNC[] = { /* 0x8120160 */ + DEBUGINFO, + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, + WAIT(15), + { 0x91, 0x04, 0x0001, 0x00000006, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_JUMP_HAPPY_FUNC[] = { /* 0x81201d0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x0000000a, 0x00000000, NULL }, + WAIT(1), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_JUMP_SURPRISE_FUNC[] = { /* 0x8120240 */ + DEBUGINFO, + { 0x54, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x0000000a, 0x00000000, NULL }, + WAIT(2), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_JUMP_ANGRY_FUNC[] = { /* 0x81202c0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x70, 0x00, 0x0200, 0x00000006, 0x00000000, NULL }, + WAIT(1), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + WAIT(2), + { 0x70, 0x00, 0x0200, 0x00000006, 0x00000000, NULL }, + WAIT(1), + { 0x70, 0x00, 0x0200, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_NOTICE_FUNC[] = { /* 0x8120370 */ + DEBUGINFO, + { 0x56, 0x00, 0x0000, 0x00000058, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_QUESTION_FUNC[] = { /* 0x81203b0 */ + DEBUGINFO, + { 0x56, 0x00, 0x0000, 0x00000059, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_SWEAT_FUNC[] = { /* 0x81203f0 */ + DEBUGINFO, + { 0x56, 0x00, 0x0000, 0x0000005c, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_SHOCK_FUNC[] = { /* 0x8120430 */ + DEBUGINFO, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_SPREE_START_FUNC[] = { /* 0x8120470 */ + DEBUGINFO, + { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_SPREE_END_FUNC[] = { /* 0x81204a0 */ + DEBUGINFO, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_SMILE_START_FUNC[] = { /* 0x81204d0 */ + DEBUGINFO, + { 0x56, 0x00, 0x0000, 0x0000005d, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_SMILE_END_FUNC[] = { /* 0x8120500 */ + DEBUGINFO, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_ANGRY_START_FUNC[] = { /* 0x8120530 */ + DEBUGINFO, + { 0x56, 0x00, 0x0000, 0x0000005e, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_ANGRY_END_FUNC[] = { /* 0x8120560 */ + DEBUGINFO, + { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_MOVE_PLAZA_SLEEP[] = { /* 0x8120590 */ + DEBUGINFO, + CALL_SCRIPT(INIT_PLAZA_SLEEP_STAY_FUNC), + { 0x8d, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + WAIT(240), + JUMP_LABEL(0), +}; + +static const struct ScriptCommand s_script_INIT_PLAZA_SLEEP_STAY_FUNC[] = { /* 0x81205f0 */ + DEBUGINFO, + JUMPIF_SCENARIOCHECK(4, /* to label */ 0), + { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, + { 0x54, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, + LABEL(0), /* = 0x00 */ + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_INIT_PLAZA_SLEEP_TALK_FUNC[] = { /* 0x8120670 */ + DEBUGINFO, + JUMPIF_SCENARIOCHECK(4, /* to label */ 0), + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, + LABEL(0), /* = 0x00 */ + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_INIT_SLEEP_FUNC[] = { /* 0x81206e0 */ + DEBUGINFO, + JUMPIF_UNK_BE(/* to label */ 0), /* something sleep related?*/ + { 0x54, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, + LABEL(0), /* = 0x00 */ + { 0x54, 0x00, 0x0026, 0x00000000, 0x00000000, NULL }, + { 0x8b, 0x3c, 0x0002, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_INIT_BASE_FUNC[] = { /* 0x8120770 */ + DEBUGINFO, + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_INIT_DEBUG_HABITAT[] = { /* 0x81207d0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x000001e0, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00000010, 0x00000000, NULL }, + CALL_SCRIPT(WAIT_START_FUNC), + RET, +}; + +static const struct ScriptCommand s_script_NORMAL_CAMERA[] = { /* 0x8120840 */ + DEBUGINFO, + { 0x99, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + END_DELETE, +}; + +static const struct ScriptCommand s_script_DISMISSAL_SALLY_MEMBER_FUNC[] = { /* 0x8120880 */ + DEBUGINFO, + { 0xf2, 0x00, 0x0002, 0x00000000, 0x00000000, _("DISMISSAL_SALLY_MEMBER_FUNC\n") }, + { 0x3b, 0x09, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 0), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The rescue team member(s)\n#+dispersed to the Friend Area(s).") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+If you want to add members to\n#+the rescue team, go visit\n#+them in their Friend Areas.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_DISMISSAL_SALLY_MEMBER2_FUNC[] = { /* 0x81209cc */ + DEBUGINFO, + { 0xf2, 0x00, 0x0002, 0x00000000, 0x00000000, _("DISMISSAL_SALLY_MEMBER2_FUNC\n") }, + { 0x3b, 0x09, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 0), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The rescue team member(s)\n#+dispersed to the Friend Area(s).") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+If you want to add members to\n#+the rescue team, go visit\n#+them in their Friend Areas.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_DISMISSAL_SALLY_MEMBER3_FUNC[] = { /* 0x8120a7c */ + DEBUGINFO, + { 0xf2, 0x00, 0x0002, 0x00000000, 0x00000000, _("DISMISSAL_SALLY_MEMBER3_FUNC\n") }, + { 0x3b, 0x09, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 0), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The rescue team member(s)\n#+dispersed to the Friend Area(s).") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+If you want to add members to\n#+the rescue team, go visit\n#+them in their Friend Areas.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_DISMISSAL_SALLY_MEMBER4_FUNC[] = { /* 0x8120b2c */ + DEBUGINFO, + { 0xf2, 0x00, 0x0002, 0x00000000, 0x00000000, _("DISMISSAL_SALLY_MEMBER4_FUNC\n") }, + { 0x3b, 0x09, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 0), + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The rescue team member(s)\n#+dispersed to the Friend Area(s).") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+If you want to add members to\n#+the rescue team, go visit\n#+them in their Friend Areas.") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_NEXT_SAVE_FUNC[] = { /* 0x8120bdc */ + DEBUGINFO, + { 0xf2, 0x00, 0x0002, 0x00000000, 0x00000000, _("NEXT_SAVE_FUNC\n") }, + ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Would you like to save your adventure?")), + CHOICE(/* label */ 0, _("Yes")), + CHOICE(/* label */ 1, _("*No")), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + { 0x3c, 0x0e, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_NEXT_SAVE2_FUNC[] = { /* 0x8120cdc */ + DEBUGINFO, + { 0xf2, 0x00, 0x0002, 0x00000000, 0x00000000, _("NEXT_SAVE2_FUNC\n") }, + ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Would you like to save your adventure?")), + CHOICE(/* label */ 0, _("Yes")), + CHOICE(/* label */ 1, _("*No")), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + { 0x3c, 0x0f, 0x0000, 0x00000000, 0x00000000, NULL }, + LABEL(1), /* = 0x01 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(60), + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_SAVE_POINT[] = { /* 0x8120db0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3a, 0x00, 0x0000, 0x00000000, -0x00000001, _("Would you like to save your adventure?") }, + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SAVE_START_FUNC), + { 0x3c, 0x0e, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SAVE_END_FUNC), + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_script_WAREHOUSE_POINT[] = { /* 0x8120e60 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(1), + { 0x3c, 0x11, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_script_SAVE_AND_WAREHOUSE_POINT[] = { /* 0x8120ec0 */ + DEBUGINFO, + { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, + { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, + ASK1( TRUE, /*default*/ 0, /* speaker */ -1, _("What would you like to do?")), + CHOICE(/* label */ 0, _("Check storage.")), + CHOICE(/* label */ 1, _("Save.")), + JUMP_SCRIPT(END_TALK), + LABEL(0), /* = 0x00 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3c, 0x11, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(END_TALK), + LABEL(1), /* = 0x01 */ + { 0x3a, 0x00, 0x0002, 0x00000000, -0x00000001, _("Would you like to save your adventure?") }, + JUMP_SCRIPT(END_TALK), + LABEL(2), /* = 0x02 */ + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SAVE_START_FUNC), + { 0x3c, 0x0e, 0x0000, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(SAVE_END_FUNC), + JUMP_SCRIPT(END_TALK), +}; + +static const struct ScriptCommand s_script_WORLD_MAP_POINT[] = { /* 0x8121034 */ + DEBUGINFO, + EXECUTE_SUBSTATION(228, 1, 0), + EXECUTE_SUBSTATION(12, 1, 1), + HALT, +}; + +static const struct ScriptCommand s_script_FORMATION_HERO[] = { /* 0x8121074 */ + DEBUGINFO, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + JUMPIF_SCENE_GT(SCENARIO_MAIN, 19, 2, /* to label */ 0), + SCENARIO_CALC(SCENARIO_MAIN, 19, 2), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + LABEL(0), /* = 0x00 */ + UPDATE_VARVAR(CALC_SET, GROUND_GETOUT, GROUND_ENTER), + UPDATE_VARINT(CALC_SET, START_MODE, 2), + EXECUTE_FUNCTION(EVENT_DIVIDE), + HALT, +}; + +static const struct ScriptCommand s_script_EVOLUTION_HERO[] = { /* 0x8121124 */ + DEBUGINFO, + EXECUTE_STATION(8, 1, 1), + HALT, +}; + +static const struct ScriptCommand s_script_WARP_LIVES_START[] = { /* 0x8121154 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_START_FUNC), + HALT, +}; + +static const struct ScriptCommand s_script_WARP_LIVES_START2[] = { /* 0x8121184 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_START2_FUNC), + HALT, +}; + +static const struct ScriptCommand s_script_WARP_LIVES_START3[] = { /* 0x81211b4 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_START3_FUNC), + HALT, +}; + +static const struct ScriptCommand s_script_WARP_LIVES_ARRIVE[] = { /* 0x81211e4 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE_FUNC), + RET, +}; + +static const struct ScriptCommand s_script_WARP_LIVES_ARRIVE2[] = { /* 0x8121214 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE2_FUNC), + RET, +}; + +static const struct ScriptCommand s_script_WARP_LIVES_ARRIVE3[] = { /* 0x8121244 */ + DEBUGINFO, + CALL_SCRIPT(LIVES_WARP_ARRIVE3_FUNC), + RET, +}; + +static const struct ScriptCommand s_script_LIVES_WARP_START_FUNC[] = { /* 0x8121274 */ + DEBUGINFO, + { 0x54, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + WAIT(20), + WAIT(6), + { 0x52, 0x00, 0x0000, 0x00080000, 0x00000000, NULL }, + { 0x68, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0x68, 0x00, 0x0200, 0x00000008, 0x00000000, NULL }, + { 0x68, 0x00, 0x0400, 0x00000010, 0x00000000, NULL }, + { 0x68, 0x00, 0x0800, 0x00000020, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x68, 0x00, 0x1000, 0x00000040, 0x00000000, NULL }, + { 0x68, 0x00, 0x2000, 0x000000c0, 0x00000000, NULL }, + RET_DIRECT, + { 0x68, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0x68, 0x00, 0x0200, 0x00000004, 0x00000000, NULL }, + { 0x68, 0x00, 0x0400, 0x00000008, 0x00000000, NULL }, + { 0x68, 0x00, 0x0800, 0x00000010, 0x00000000, NULL }, + { 0x68, 0x00, 0x1000, 0x00000020, 0x00000000, NULL }, + { 0x68, 0x00, 0x1800, 0x00000040, 0x00000000, NULL }, + { 0x68, 0x00, 0x2000, 0x000000c0, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_script_LIVES_WARP_START2_FUNC[] = { /* 0x81213c4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + WAIT(20), + { 0x54, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + WAIT(20), + WAIT(6), + { 0x52, 0x00, 0x0000, 0x00080000, 0x00000000, NULL }, + { 0x68, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0x68, 0x00, 0x0200, 0x00000008, 0x00000000, NULL }, + { 0x68, 0x00, 0x0400, 0x00000010, 0x00000000, NULL }, + { 0x68, 0x00, 0x0800, 0x00000020, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x68, 0x00, 0x1000, 0x00000040, 0x00000000, NULL }, + { 0x68, 0x00, 0x2000, 0x000000c0, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_LIVES_WARP_START3_FUNC[] = { /* 0x81214b4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + WAIT(40), + { 0x54, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + WAIT(20), + WAIT(6), + { 0x52, 0x00, 0x0000, 0x00080000, 0x00000000, NULL }, + { 0x68, 0x00, 0x0100, 0x00000002, 0x00000000, NULL }, + { 0x68, 0x00, 0x0200, 0x00000008, 0x00000000, NULL }, + { 0x68, 0x00, 0x0400, 0x00000010, 0x00000000, NULL }, + { 0x68, 0x00, 0x0800, 0x00000020, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x68, 0x00, 0x1000, 0x00000040, 0x00000000, NULL }, + { 0x68, 0x00, 0x2000, 0x000000c0, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_LIVES_WARP_START_SUB[] = { /* 0x81215a4 */ + DEBUGINFO, + { 0x60, 0x00, 0x0000, 0x00000060, 0x00000000, NULL }, + { 0x54, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_script_LIVES_WARP_ARRIVE_FUNC[] = { /* 0x81215f4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00080000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x60, 0x00, 0x0000, 0x000000c0, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(6), + { 0x68, 0x00, 0x2000, 0x00000040, 0x00000000, NULL }, + { 0x68, 0x00, 0x1000, 0x00000020, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x68, 0x00, 0x0800, 0x00000010, 0x00000000, NULL }, + { 0x68, 0x00, 0x0400, 0x00000008, 0x00000000, NULL }, + { 0x68, 0x00, 0x0200, 0x00000004, 0x00000000, NULL }, + { 0x68, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + WAIT(10), + { 0x53, 0x00, 0x0000, 0x00080000, 0x00000000, NULL }, + RET_DIRECT, + { 0x68, 0x00, 0x4000, 0x00000040, 0x00000000, NULL }, + { 0x68, 0x00, 0x2000, 0x00000020, 0x00000000, NULL }, + { 0x68, 0x00, 0x1000, 0x00000010, 0x00000000, NULL }, + { 0x68, 0x00, 0x0800, 0x00000008, 0x00000000, NULL }, + { 0x68, 0x00, 0x0400, 0x00000004, 0x00000000, NULL }, + { 0x68, 0x00, 0x0200, 0x00000002, 0x00000000, NULL }, + { 0x68, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_script_LIVES_WARP_ARRIVE2_FUNC[] = { /* 0x81217a4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00080000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x60, 0x00, 0x0000, 0x000000c0, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(20), + WAIT(6), + { 0x68, 0x00, 0x2000, 0x00000040, 0x00000000, NULL }, + { 0x68, 0x00, 0x1000, 0x00000020, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x68, 0x00, 0x0800, 0x00000010, 0x00000000, NULL }, + { 0x68, 0x00, 0x0400, 0x00000008, 0x00000000, NULL }, + { 0x68, 0x00, 0x0200, 0x00000004, 0x00000000, NULL }, + { 0x68, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00080000, 0x00000000, NULL }, + WAIT(10), + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_LIVES_WARP_ARRIVE3_FUNC[] = { /* 0x81218d4 */ + DEBUGINFO, + { 0x54, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x00080000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x60, 0x28, 0x0000, 0x000000c0, 0x00000000, NULL }, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + WAIT(40), + WAIT(6), + { 0x68, 0x00, 0x2000, 0x00000040, 0x00000000, NULL }, + { 0x68, 0x00, 0x1000, 0x00000020, 0x00000000, NULL }, + { 0x52, 0x00, 0x0000, 0x01000000, 0x00000000, NULL }, + { 0x68, 0x00, 0x0800, 0x00000010, 0x00000000, NULL }, + { 0x68, 0x00, 0x0400, 0x00000008, 0x00000000, NULL }, + { 0x68, 0x00, 0x0200, 0x00000004, 0x00000000, NULL }, + { 0x68, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, + { 0x53, 0x00, 0x0000, 0x00080000, 0x00000000, NULL }, + WAIT(10), + { 0x54, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_LIVES_WARP_ARRIVE_SUB[] = { /* 0x8121a04 */ + DEBUGINFO, + { 0x60, 0x00, 0x0000, 0x00000060, 0x00000000, NULL }, + { 0x54, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, + { 0xdd, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_script_GET_ITEM_FUNC[] = { /* 0x8121a54 */ + DEBUGINFO, + FANFARE_PLAY(203), + { 0xe1, 0x00, 0x00cb, 0x00000000, 0x00000000, NULL }, + { 0x31, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_GET_ITEM_WAIT_FUNC[] = { /* 0x8121aa4 */ + DEBUGINFO, + FANFARE_PLAY(203), + { 0xe1, 0x00, 0x00cb, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_GET_ITEM2_FUNC[] = { /* 0x8121af4 */ + DEBUGINFO, + FANFARE_PLAY(203), + { 0xe1, 0x00, 0x00cb, 0x00000000, 0x00000000, NULL }, + { 0x31, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_GET_ITEM2_WAIT_FUNC[] = { /* 0x8121b44 */ + DEBUGINFO, + FANFARE_PLAY(203), + { 0xe1, 0x00, 0x00cb, 0x00000000, 0x00000000, NULL }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_JOIN_FUNC[] = { /* 0x8121b94 */ + DEBUGINFO, + FANFARE_PLAY(204), + { 0xe1, 0x00, 0x00cc, 0x00000000, 0x00000000, NULL }, + { 0x31, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_LODGE_START_FUNC[] = { /* 0x8121be4 */ + DEBUGINFO, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_LODGE_WAIT_FUNC[] = { /* 0x8121c14 */ + DEBUGINFO, + WAIT(60), + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_LODGE_END_FUNC[] = { /* 0x8121c44 */ + DEBUGINFO, + WAIT(60), + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_LODGE_SOUND_FUNC[] = { /* 0x8121c84 */ + DEBUGINFO, + WAIT(60), + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_SAVE_START_FUNC[] = { /* 0x8121cb4 */ + DEBUGINFO, + { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x43, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(50), + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_SAVE_WAIT_FUNC[] = { /* 0x8121d04 */ + DEBUGINFO, + { 0xe0, 0x00, 0x0032, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x45, 0x001e, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_SAVE_END_FUNC[] = { /* 0x8121d44 */ + DEBUGINFO, + { 0xe0, 0x00, 0x0032, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x45, 0x001e, 0x00000000, 0x00000000, NULL }, + { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_SAVE_SOUND_FUNC[] = { /* 0x8121d94 */ + DEBUGINFO, + { 0x3b, 0x43, 0x0000, 0x00000000, 0x00000000, NULL }, + BGM_SWITCH(50), + { 0xe0, 0x00, 0x0032, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x45, 0x001e, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EFFECT_TEST1[] = { /* 0x8121df4 */ + DEBUGINFO, + { 0x56, 0x00, 0x0000, 0x00000019, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000001c, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000001d, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_script_EFFECT_TEST2[] = { /* 0x8121e74 */ + DEBUGINFO, + { 0x56, 0x00, 0x0000, 0x00000008, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x00000009, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000000a, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x56, 0x00, 0x0000, 0x0000000b, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_script_EFFECT_MOVE_DIVE[] = { /* 0x8121f14 */ + DEBUGINFO, + { 0x56, 0x00, 0x0000, 0x00000002, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_script_EFFECT_MOVE_WAVE[] = { /* 0x8121f54 */ + DEBUGINFO, + { 0x56, 0x00, 0x0000, 0x000001b6, 0x00000000, NULL }, + { 0xde, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +static const struct ScriptCommand s_script_EVENT_DIVIDE[] = { /* 0x8121f94 */ + DEBUGINFO, + CJUMP_SCENARIO_0(SCENARIO_SELECT), + COND(JUDGE_EQ, 0, /* to label */ 0), + COND(JUDGE_EQ, 57, /* to label */ 1), + COND(JUDGE_EQ, 56, /* to label */ 2), + COND(JUDGE_EQ, 30, /* to label */ 3), + COND(JUDGE_EQ, 31, /* to label */ 4), + COND(JUDGE_EQ, 33, /* to label */ 5), + COND(JUDGE_EQ, 34, /* to label */ 6), + COND(JUDGE_EQ, 36, /* to label */ 7), + COND(JUDGE_EQ, 38, /* to label */ 8), + COND(JUDGE_EQ, 39, /* to label */ 9), + COND(JUDGE_EQ, 40, /* to label */ 10), + COND(JUDGE_EQ, 41, /* to label */ 11), + COND(JUDGE_EQ, 42, /* to label */ 12), + COND(JUDGE_EQ, 44, /* to label */ 13), + COND(JUDGE_EQ, 46, /* to label */ 14), + COND(JUDGE_EQ, 47, /* to label */ 15), + COND(JUDGE_EQ, 49, /* to label */ 16), + COND(JUDGE_EQ, 51, /* to label */ 17), + COND(JUDGE_EQ, 52, /* to label */ 18), + COND(JUDGE_EQ, 53, /* to label */ 19), + COND(JUDGE_EQ, 54, /* to label */ 20), + COND(JUDGE_EQ, 58, /* to label */ 21), + SCENARIO_CALC(SCENARIO_SELECT, 0, 0), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 0, /* to label */ 22), + COND(JUDGE_EQ, 1, /* to label */ 22), + COND(JUDGE_EQ, 58, /* to label */ 21), + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_LE, 10, /* to label */ 24), + COND(JUDGE_LE, 17, /* to label */ 25), + COND(JUDGE_LE, 27, /* to label */ 26), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(22), /* = 0x16 */ + SCENARIO_CALC(SCENARIO_SELECT, 0, 0), + SCENARIO_CALC(SCENARIO_MAIN, 1, 0), + JUMP_SCRIPT(EVENT_M00E01A_L001), + LABEL(24), /* = 0x18 */ + JUMP_SCRIPT(EVENT_DIVIDE_FIRST), + LABEL(25), /* = 0x19 */ + JUMP_SCRIPT(EVENT_DIVIDE_SECOND), + LABEL(26), /* = 0x1a */ + JUMP_SCRIPT(EVENT_DIVIDE_AFTER), + LABEL(1), /* = 0x01 */ + SCENARIO_CALC(SCENARIO_SELECT, 0, 0), + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(EVENT_R00E01A_L001), + LABEL(3), /* = 0x03 */ + SCENARIO_CALC(SCENARIO_SELECT, 0, 0), + JUMP_SCRIPT(EVENT_S01E01B_L001L), + LABEL(4), /* = 0x04 */ + SCENARIO_CALC(SCENARIO_SELECT, 0, 0), + JUMP_SCRIPT(EVENT_S01E02A_L002L), + LABEL(5), /* = 0x05 */ + SCENARIO_CALC(SCENARIO_SELECT, 0, 0), + JUMP_SCRIPT(EVENT_S02E01A_L004L), + LABEL(6), /* = 0x06 */ + SCENARIO_CALC(SCENARIO_SELECT, 0, 0), + JUMP_SCRIPT(EVENT_S02E02A_L003L), + LABEL(7), /* = 0x07 */ + SCENARIO_CALC(SCENARIO_SELECT, 0, 0), + JUMP_SCRIPT(EVENT_S03E01A_L002L), + LABEL(8), /* = 0x08 */ + SCENARIO_CALC(SCENARIO_SELECT, 0, 0), + JUMP_SCRIPT(EVENT_S04E01A_L002L), + LABEL(9), /* = 0x09 */ + SCENARIO_CALC(SCENARIO_SELECT, 0, 0), + JUMP_SCRIPT(EVENT_S04E01B_L001L), + LABEL(10), /* = 0x0a */ + SCENARIO_CALC(SCENARIO_SELECT, 0, 0), + JUMP_SCRIPT(EVENT_S04E01C_L001L), + LABEL(11), /* = 0x0b */ + SCENARIO_CALC(SCENARIO_SELECT, 0, 0), + JUMP_SCRIPT(EVENT_S04E01D_L001L), + LABEL(12), /* = 0x0c */ + SCENARIO_CALC(SCENARIO_SELECT, 0, 0), + JUMP_SCRIPT(EVENT_S04E01E_L001L), + LABEL(13), /* = 0x0d */ + SCENARIO_CALC(SCENARIO_SELECT, 0, 0), + JUMP_SCRIPT(EVENT_S05E01A_L002L), + LABEL(14), /* = 0x0e */ + SCENARIO_CALC(SCENARIO_SELECT, 0, 0), + JUMP_SCRIPT(EVENT_S06E01A_L002L), + LABEL(15), /* = 0x0f */ + SCENARIO_CALC(SCENARIO_SELECT, 0, 0), + JUMP_SCRIPT(EVENT_S06E01B_L002L), + LABEL(16), /* = 0x10 */ + SCENARIO_CALC(SCENARIO_SELECT, 0, 0), + JUMP_SCRIPT(EVENT_S07E01A_L003L), + LABEL(17), /* = 0x11 */ + SCENARIO_CALC(SCENARIO_SELECT, 0, 0), + JUMP_SCRIPT(EVENT_S08E01A_L006L), + LABEL(18), /* = 0x12 */ + SCENARIO_CALC(SCENARIO_SELECT, 0, 0), + JUMP_SCRIPT(EVENT_S08E01A_L008L), + LABEL(19), /* = 0x13 */ + SCENARIO_CALC(SCENARIO_SELECT, 0, 0), + JUMP_SCRIPT(EVENT_S09E01A_L005L), + LABEL(20), /* = 0x14 */ + SCENARIO_CALC(SCENARIO_SELECT, 0, 0), + JUMP_SCRIPT(EVENT_S09E01B_L002L), + LABEL(21), /* = 0x15 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 27), + JUMP_LABEL(28), + LABEL(27), /* = 0x1b */ + SCENARIO_CALC(SCENARIO_SELECT, 58, 1), + SCENARIO_CALC(SCENARIO_MAIN, 58, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 0), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 0), + LABEL(28), /* = 0x1c */ + EXECUTE_MAP_VAR(GROUND_ENTER), +}; + + +static const struct ScriptCommand s_script_EVENT_DIVIDE_NEXT[] = { /* 0x81226e4 */ + DEBUGINFO, + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + EXECUTE_SUBSTATION(12, 3, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_DIVIDE_INIT_FUNC[] = { /* 0x8122724 */ + DEBUGINFO, + { 0xf2, 0x00, 0x0002, 0x00000000, 0x00000000, _("EVENT_DIVIDE_INIT_FUNC\n") }, + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + CLEAR_ARRAY(WARP_LIST), + UPDATE_VARINT(CALC_SET, WARP_LOCK, 0), + SET_PLAYER_KIND(2), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + CLEAR_ARRAY(CLEAR_COUNT), + { 0x3b, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_DIVIDE_NEXT_DAY_FUNC[] = { /* 0x812281c */ + DEBUGINFO, + { 0xf2, 0x00, 0x0002, 0x00000000, 0x00000000, _("EVENT_DIVIDE_NEXT_DAY_FUNC\n") }, + JUMPIF_SCENE_EQ(SCENARIO_MAIN, 15, 7, /* to label */ 0), + JUMPIF_SCENE_EQ(SCENARIO_MAIN, 18, 4, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + JUMPIF_SCENE_LT(SCENARIO_SUB1, 31, 0, /* to label */ 3), + JUMPIF(JUDGE_GE, CLEAR_COUNT, 2, /* to label */ 4), + LABEL(3), /* = 0x03 */ + RET_DIRECT, + LABEL(4), /* = 0x04 */ + EXECUTE_FUNCTION(EVENT_DIVIDE), + HALT, + LABEL(1), /* = 0x01 */ + SCENARIO_CALC(SCENARIO_MAIN, 19, 1), + LABEL(2), /* = 0x02 */ + JUMPIF_SCENE_EQ(SCENARIO_SUB8, 51, 2, /* to label */ 5), + JUMPIF_SCENE_EQ(SCENARIO_SUB8, 51, 4, /* to label */ 6), + JUMPIF_SCENE_EQ(SCENARIO_SUB8, 51, 6, /* to label */ 7), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SCENARIO_CALC(SCENARIO_SUB8, 51, 3), + JUMP_LABEL(8), + LABEL(6), /* = 0x06 */ + SCENARIO_CALC(SCENARIO_SUB8, 51, 5), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SCENARIO_CALC(SCENARIO_SUB8, 51, 7), + { 0xae, 0x01, 0x001c, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + JUMPIF_SCENE_EQ(SCENARIO_SUB9, 53, 2, /* to label */ 9), + JUMPIF_SCENE_EQ(SCENARIO_SUB9, 53, 4, /* to label */ 10), + JUMP_LABEL(11), + LABEL(9), /* = 0x09 */ + SCENARIO_CALC(SCENARIO_SUB9, 53, 3), + JUMP_LABEL(11), + LABEL(10), /* = 0x0a */ + SCENARIO_CALC(SCENARIO_SUB9, 53, 5), + JUMP_LABEL(11), + LABEL(11), /* = 0x0b */ + JUMPIF_SCENE_EQ(SCENARIO_SUB3, 36, 1, /* to label */ 12), + JUMP_LABEL(13), + LABEL(12), /* = 0x0c */ + EXECUTE_FUNCTION(EVENT_S03E01A_L001), + HALT, + LABEL(13), /* = 0x0d */ + JUMPIF_SCENE_EQ(SCENARIO_SUB5, 44, 1, /* to label */ 14), + JUMP_LABEL(15), + LABEL(14), /* = 0x0e */ + EXECUTE_FUNCTION(EVENT_S05E01A_L001), + HALT, + LABEL(15), /* = 0x0f */ + JUMPIF_SCENE_EQ(SCENARIO_SUB6, 46, 1, /* to label */ 16), + JUMP_LABEL(17), + LABEL(16), /* = 0x10 */ + EXECUTE_FUNCTION(EVENT_S06E01A_L001), + HALT, + LABEL(17), /* = 0x11 */ + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_DIVIDE_NEXT_DAY2_FUNC[] = { /* 0x8122bf8 */ + DEBUGINFO, + { 0xf2, 0x00, 0x0002, 0x00000000, 0x00000000, _("EVENT_DIVIDE_NEXT_DAY2_FUNC\n") }, + JUMPIF_SCENE_EQ(SCENARIO_MAIN, 15, 7, /* to label */ 0), + JUMPIF_SCENE_EQ(SCENARIO_MAIN, 18, 4, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + JUMPIF_SCENE_LT(SCENARIO_SUB1, 31, 0, /* to label */ 3), + JUMPIF(JUDGE_GE, CLEAR_COUNT, 2, /* to label */ 4), + LABEL(3), /* = 0x03 */ + RET_DIRECT, + LABEL(4), /* = 0x04 */ + EXECUTE_FUNCTION(EVENT_DIVIDE), + HALT, + LABEL(1), /* = 0x01 */ + SCENARIO_CALC(SCENARIO_MAIN, 19, 1), + LABEL(2), /* = 0x02 */ + JUMPIF_SCENE_EQ(SCENARIO_SUB8, 51, 2, /* to label */ 5), + JUMPIF_SCENE_EQ(SCENARIO_SUB8, 51, 4, /* to label */ 6), + JUMPIF_SCENE_EQ(SCENARIO_SUB8, 51, 6, /* to label */ 7), + JUMP_LABEL(8), + LABEL(5), /* = 0x05 */ + SCENARIO_CALC(SCENARIO_SUB8, 51, 3), + JUMP_LABEL(8), + LABEL(6), /* = 0x06 */ + SCENARIO_CALC(SCENARIO_SUB8, 51, 5), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + SCENARIO_CALC(SCENARIO_SUB8, 51, 7), + { 0xae, 0x01, 0x001c, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(8), + LABEL(8), /* = 0x08 */ + JUMPIF_SCENE_EQ(SCENARIO_SUB9, 53, 2, /* to label */ 9), + JUMPIF_SCENE_EQ(SCENARIO_SUB9, 53, 4, /* to label */ 10), + JUMP_LABEL(11), + LABEL(9), /* = 0x09 */ + SCENARIO_CALC(SCENARIO_SUB9, 53, 3), + JUMP_LABEL(11), + LABEL(10), /* = 0x0a */ + SCENARIO_CALC(SCENARIO_SUB9, 53, 5), + JUMP_LABEL(11), + LABEL(11), /* = 0x0b */ + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_DIVIDE_FIRST[] = { /* 0x8122eb8 */ + DEBUGINFO, + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 2, /* to label */ 0), + COND(JUDGE_EQ, 3, /* to label */ 1), + COND(JUDGE_EQ, 4, /* to label */ 2), + COND(JUDGE_EQ, 5, /* to label */ 3), + COND(JUDGE_EQ, 6, /* to label */ 4), + COND(JUDGE_EQ, 7, /* to label */ 5), + COND(JUDGE_EQ, 8, /* to label */ 6), + COND(JUDGE_EQ, 9, /* to label */ 7), + COND(JUDGE_EQ, 10, /* to label */ 8), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(0), /* = 0x00 */ + CLEAR_ARRAY(WARP_LIST), + UPDATE_VARINT(CALC_SET, WARP_LOCK, 0), + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 9), + COND_EQUAL(1, /* to label */ 10), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(9), /* = 0x09 */ + SCENARIO_CALC(SCENARIO_MAIN, 2, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 178), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 178), + LABEL(10), /* = 0x0a */ + JUMP_SCRIPT(EVENT_M01E01A_L001), + LABEL(1), /* = 0x01 */ + CLEAR_ARRAY(WARP_LIST), + UPDATE_VARINT(CALC_SET, WARP_LOCK, 0), + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 11), + COND_EQUAL(1, /* to label */ 12), + COND_EQUAL(3, /* to label */ 13), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(11), /* = 0x0b */ + SCENARIO_CALC(SCENARIO_MAIN, 3, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + SET_ARRAYVAL(WARP_LIST, 1, 1), + LABEL(12), /* = 0x0c */ + JUMP_SCRIPT(EVENT_M01E02A_L001), + LABEL(13), /* = 0x0d */ + JUMP_SCRIPT(EVENT_M01E02A_L001C), + LABEL(2), /* = 0x02 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 14), + COND_EQUAL(1, /* to label */ 15), + COND_EQUAL(3, /* to label */ 16), + COND_EQUAL(4, /* to label */ 17), + UPDATE_VARINT(CALC_SET, WARP_LOCK, 0), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(14), /* = 0x0e */ + SCENARIO_CALC(SCENARIO_MAIN, 4, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + SET_ARRAYVAL(WARP_LIST, 1, 1), + LABEL(15), /* = 0x0f */ + JUMP_SCRIPT(EVENT_M01E02B_L001), + LABEL(16), /* = 0x10 */ + UPDATE_VARINT(CALC_SET, WARP_LOCK, 3), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(17), /* = 0x11 */ + JUMPIF(JUDGE_GE, CLEAR_COUNT, 2, /* to label */ 18), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(18), /* = 0x12 */ + JUMP_SCRIPT(EVENT_M01E02B_L004), + UPDATE_VARINT(CALC_SET, WARP_LOCK, 0), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(3), /* = 0x03 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 20), + COND_EQUAL(1, /* to label */ 21), + COND(JUDGE_LE, 4, /* to label */ 22), + COND_EQUAL(5, /* to label */ 23), + COND(JUDGE_LE, 7, /* to label */ 24), + COND(JUDGE_LE, 9, /* to label */ 25), + UPDATE_VARINT(CALC_SET, WARP_LOCK, 0), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(20), /* = 0x14 */ + SCENARIO_CALC(SCENARIO_MAIN, 5, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + SET_ARRAYVAL(WARP_LIST, 1, 1), + JUMPIF(JUDGE_GE, CLEAR_COUNT, 0, /* to label */ 26), + JUMP_SCRIPT(EVENT_M01E03A_L000), + LABEL(21), /* = 0x15 */ + JUMPIF(JUDGE_GE, CLEAR_COUNT, 0, /* to label */ 26), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(26), /* = 0x1a */ + JUMP_SCRIPT(EVENT_M01E03A_L001), + LABEL(22), /* = 0x16 */ + UPDATE_VARINT(CALC_SET, WARP_LOCK, 4), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(23), /* = 0x17 */ + UPDATE_VARINT(CALC_SET, WARP_LOCK, 0), + JUMPIF(JUDGE_GE, CLEAR_COUNT, 3, /* to label */ 27), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(27), /* = 0x1b */ + JUMP_SCRIPT(EVENT_M01E03A_L004), + LABEL(24), /* = 0x18 */ + JUMPIF(JUDGE_GE, CLEAR_COUNT, 2, /* to label */ 28), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(28), /* = 0x1c */ + JUMP_SCRIPT(EVENT_M01E03A_L006), + LABEL(25), /* = 0x19 */ + UPDATE_VARINT(CALC_SET, WARP_LOCK, 0), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(4), /* = 0x04 */ + CLEAR_ARRAY(WARP_LIST), + UPDATE_VARINT(CALC_SET, WARP_LOCK, 0), + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 29), + COND_EQUAL(1, /* to label */ 30), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(29), /* = 0x1d */ + SCENARIO_CALC(SCENARIO_MAIN, 6, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + SET_ARRAYVAL(WARP_LIST, 1, 1), + JUMPIF(JUDGE_GE, CLEAR_COUNT, 0, /* to label */ 31), + JUMP_SCRIPT(EVENT_M01E04A_L000), + LABEL(30), /* = 0x1e */ + JUMPIF(JUDGE_GE, CLEAR_COUNT, 0, /* to label */ 31), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(31), /* = 0x1f */ + JUMP_SCRIPT(EVENT_M01E04A_L001), + LABEL(5), /* = 0x05 */ + CLEAR_ARRAY(WARP_LIST), + UPDATE_VARINT(CALC_SET, WARP_LOCK, 0), + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 32), + COND_EQUAL(1, /* to label */ 33), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(32), /* = 0x20 */ + SCENARIO_CALC(SCENARIO_MAIN, 7, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + SET_ARRAYVAL(WARP_LIST, 1, 1), + JUMPIF(JUDGE_GE, CLEAR_COUNT, 0, /* to label */ 34), + JUMP_SCRIPT(EVENT_M01E04B_L000), + LABEL(33), /* = 0x21 */ + JUMPIF(JUDGE_GE, CLEAR_COUNT, 0, /* to label */ 34), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(34), /* = 0x22 */ + JUMP_SCRIPT(EVENT_M01E04B_L001), + LABEL(6), /* = 0x06 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 35), + COND_EQUAL(1, /* to label */ 36), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(35), /* = 0x23 */ + SCENARIO_CALC(SCENARIO_MAIN, 8, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + SET_ARRAYVAL(WARP_LIST, 1, 1), + JUMPIF(JUDGE_GE, CLEAR_COUNT, 0, /* to label */ 37), + JUMP_SCRIPT(EVENT_M01E05A_L000), + LABEL(36), /* = 0x24 */ + JUMPIF(JUDGE_GE, CLEAR_COUNT, 0, /* to label */ 37), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(37), /* = 0x25 */ + JUMP_SCRIPT(EVENT_M01E05A_L001), + LABEL(7), /* = 0x07 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 38), + COND_EQUAL(1, /* to label */ 39), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(38), /* = 0x26 */ + SCENARIO_CALC(SCENARIO_MAIN, 9, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + SET_ARRAYVAL(WARP_LIST, 1, 1), + JUMPIF(JUDGE_GE, CLEAR_COUNT, 0, /* to label */ 40), + JUMP_SCRIPT(EVENT_M01E05B_L000), + LABEL(39), /* = 0x27 */ + JUMPIF(JUDGE_GE, CLEAR_COUNT, 0, /* to label */ 40), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(40), /* = 0x28 */ + JUMP_SCRIPT(EVENT_M01E05B_L001), + LABEL(8), /* = 0x08 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 41), + COND_EQUAL(1, /* to label */ 42), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(41), /* = 0x29 */ + SCENARIO_CALC(SCENARIO_MAIN, 10, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + LABEL(42), /* = 0x2a */ + JUMP_SCRIPT(EVENT_M01E06A_L001), +}; + + +static const struct ScriptCommand s_script_EVENT_DIVIDE_SECOND[] = { /* 0x8123a18 */ + DEBUGINFO, + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 11, /* to label */ 0), + COND(JUDGE_EQ, 12, /* to label */ 1), + COND(JUDGE_EQ, 13, /* to label */ 2), + COND(JUDGE_EQ, 14, /* to label */ 3), + COND(JUDGE_EQ, 15, /* to label */ 4), + COND(JUDGE_EQ, 16, /* to label */ 5), + COND(JUDGE_EQ, 17, /* to label */ 6), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 7), + COND_EQUAL(1, /* to label */ 8), + COND_EQUAL(2, /* to label */ 9), + COND_EQUAL(3, /* to label */ 9), + COND_EQUAL(4, /* to label */ 10), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(7), /* = 0x07 */ + SCENARIO_CALC(SCENARIO_MAIN, 11, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 9), + LABEL(8), /* = 0x08 */ + JUMP_SCRIPT(EVENT_M01E07A_L001), + LABEL(9), /* = 0x09 */ + UPDATE_VARINT(CALC_SET, WARP_LOCK, 5), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(10), /* = 0x0a */ + JUMP_SCRIPT(EVENT_M01E07A_L003), + LABEL(1), /* = 0x01 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 11), + COND_EQUAL(1, /* to label */ 12), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(11), /* = 0x0b */ + SCENARIO_CALC(SCENARIO_MAIN, 12, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 195), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 195), + LABEL(12), /* = 0x0c */ + JUMP_SCRIPT(EVENT_M01E07B_L001), + LABEL(2), /* = 0x02 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 13), + COND_EQUAL(1, /* to label */ 14), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(13), /* = 0x0d */ + SCENARIO_CALC(SCENARIO_MAIN, 13, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 198), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 198), + LABEL(14), /* = 0x0e */ + JUMP_SCRIPT(EVENT_M01E08A_L001), + LABEL(3), /* = 0x03 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 15), + COND_EQUAL(1, /* to label */ 16), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(15), /* = 0x0f */ + SCENARIO_CALC(SCENARIO_MAIN, 14, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 201), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 201), + LABEL(16), /* = 0x10 */ + JUMP_SCRIPT(EVENT_M01E08B_L001), + LABEL(4), /* = 0x04 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 17), + COND_EQUAL(1, /* to label */ 18), + COND_EQUAL(2, /* to label */ 19), + COND_EQUAL(3, /* to label */ 20), + COND_EQUAL(4, /* to label */ 19), + COND_EQUAL(5, /* to label */ 21), + COND_EQUAL(6, /* to label */ 19), + COND_EQUAL(7, /* to label */ 22), + COND_EQUAL(8, /* to label */ 19), + COND_EQUAL(9, /* to label */ 23), + LABEL(19), /* = 0x13 */ + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(17), /* = 0x11 */ + SCENARIO_CALC(SCENARIO_MAIN, 15, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + SET_ARRAYVAL(WARP_LIST, 1, 1), + LABEL(18), /* = 0x12 */ + JUMP_SCRIPT(EVENT_M01E09A_L001), + LABEL(20), /* = 0x14 */ + JUMPIF(JUDGE_GE, CLEAR_COUNT, 3, /* to label */ 24), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(24), /* = 0x18 */ + JUMP_SCRIPT(EVENT_M01E09A_L003), + LABEL(21), /* = 0x15 */ + JUMPIF(JUDGE_GE, CLEAR_COUNT, 4, /* to label */ 25), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(25), /* = 0x19 */ + JUMP_SCRIPT(EVENT_M01E09A_L005), + LABEL(22), /* = 0x16 */ + JUMPIF_SCENE_LT(SCENARIO_SUB1, 31, 0, /* to label */ 19), + JUMPIF(JUDGE_GE, CLEAR_COUNT, 2, /* to label */ 26), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(26), /* = 0x1a */ + JUMP_SCRIPT(EVENT_M01E09A_L007), + LABEL(23), /* = 0x17 */ + UPDATE_VARINT(CALC_SET, WARP_LOCK, 6), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(5), /* = 0x05 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 27), + COND_EQUAL(1, /* to label */ 28), + COND_EQUAL(2, /* to label */ 29), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(27), /* = 0x1b */ + SCENARIO_CALC(SCENARIO_MAIN, 16, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 1), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 1), + SET_ARRAYVAL(WARP_LIST, 1, 1), + LABEL(28), /* = 0x1c */ + JUMP_SCRIPT(EVENT_M01E10A_L001), + LABEL(29), /* = 0x1d */ + UPDATE_VARINT(CALC_SET, WARP_LOCK, 7), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(6), /* = 0x06 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 30), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(30), /* = 0x1e */ + SCENARIO_CALC(SCENARIO_MAIN, 17, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + CALL_SCRIPT(EVENT_S01E01A_END), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 1), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 1), + JUMP_SCRIPT(EVENT_M01END_L001), +}; + +static const struct ScriptCommand s_script_EVENT_DIVIDE_AFTER[] = { /* 0x8124268 */ + DEBUGINFO, + CJUMP_SCENARIO_0(SCENARIO_MAIN), + COND(JUDGE_EQ, 18, /* to label */ 0), + COND(JUDGE_EQ, 19, /* to label */ 1), + COND(JUDGE_EQ, 20, /* to label */ 2), + COND(JUDGE_EQ, 21, /* to label */ 3), + COND(JUDGE_EQ, 22, /* to label */ 4), + COND(JUDGE_EQ, 23, /* to label */ 5), + COND(JUDGE_EQ, 24, /* to label */ 6), + COND(JUDGE_EQ, 25, /* to label */ 7), + COND(JUDGE_EQ, 26, /* to label */ 8), + COND(JUDGE_EQ, 27, /* to label */ 9), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(0), /* = 0x00 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 10), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(10), /* = 0x0a */ + SCENARIO_CALC(SCENARIO_MAIN, 18, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + CALL_SCRIPT(EVENT_S01E01A_END), + JUMP_SCRIPT(EVENT_M02E01A_L001), + LABEL(1), /* = 0x01 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 11), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(11), /* = 0x0b */ + SCENARIO_CALC(SCENARIO_MAIN, 19, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + CALL_SCRIPT(EVENT_S01E01A_END), + JUMP_SCRIPT(EVENT_M02E02A_L001), + LABEL(2), /* = 0x02 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 12), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(12), /* = 0x0c */ + SCENARIO_CALC(SCENARIO_MAIN, 20, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + CALL_SCRIPT(EVENT_S01E02A_START), + CALL_SCRIPT(EVENT_S02E01A_END), + JUMP_SCRIPT(EVENT_M02E02B_L001), + LABEL(3), /* = 0x03 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 13), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(13), /* = 0x0d */ + SCENARIO_CALC(SCENARIO_MAIN, 21, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + CALL_SCRIPT(EVENT_S01E02A_START), + CALL_SCRIPT(EVENT_S02E01A_END), + CALL_SCRIPT(EVENT_S04E01A_START), + JUMP_SCRIPT(EVENT_M02E02C_L001), + LABEL(4), /* = 0x04 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 14), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(14), /* = 0x0e */ + SCENARIO_CALC(SCENARIO_MAIN, 22, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + CALL_SCRIPT(EVENT_S01E02A_START), + CALL_SCRIPT(EVENT_S02E01A_END), + CALL_SCRIPT(EVENT_S04E01A_LAST), + CALL_SCRIPT(EVENT_S05E01A_START), + JUMP_SCRIPT(EVENT_M02E02D_L001), + LABEL(5), /* = 0x05 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 15), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(15), /* = 0x0f */ + SCENARIO_CALC(SCENARIO_MAIN, 23, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + CALL_SCRIPT(EVENT_S01E02A_START), + CALL_SCRIPT(EVENT_S02E01A_END), + CALL_SCRIPT(EVENT_S04E01A_LAST), + CALL_SCRIPT(EVENT_S05E01A_CONTINUE), + CALL_SCRIPT(EVENT_S06E01A_START), + JUMP_SCRIPT(EVENT_M02E02E_L001), + LABEL(6), /* = 0x06 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 16), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(16), /* = 0x10 */ + SCENARIO_CALC(SCENARIO_MAIN, 24, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + CALL_SCRIPT(EVENT_S01E02A_START), + CALL_SCRIPT(EVENT_S02E02A_START), + CALL_SCRIPT(EVENT_S04E01A_END), + CALL_SCRIPT(EVENT_S05E01A_CONTINUE), + CALL_SCRIPT(EVENT_S06E01A_END), + CALL_SCRIPT(EVENT_S08E01A_START), + JUMP_SCRIPT(EVENT_M02E02F_L001), + LABEL(7), /* = 0x07 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 17), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(17), /* = 0x11 */ + SCENARIO_CALC(SCENARIO_MAIN, 25, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + CALL_SCRIPT(EVENT_S01E02A_START), + CALL_SCRIPT(EVENT_S02E02A_END), + CALL_SCRIPT(EVENT_S04E01A_END), + CALL_SCRIPT(EVENT_S05E01A_CONTINUE), + CALL_SCRIPT(EVENT_S06E01A_END), + CALL_SCRIPT(EVENT_S08E01A_START), + CALL_SCRIPT(EVENT_S03E01A_START), + JUMP_SCRIPT(EVENT_M02E02G_L001), + LABEL(8), /* = 0x08 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 18), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(18), /* = 0x12 */ + SCENARIO_CALC(SCENARIO_MAIN, 26, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + CALL_SCRIPT(EVENT_S01E02A_START), + CALL_SCRIPT(EVENT_S02E02A_END), + CALL_SCRIPT(EVENT_S04E01A_END), + CALL_SCRIPT(EVENT_S05E01A_CONTINUE), + CALL_SCRIPT(EVENT_S06E01A_END), + CALL_SCRIPT(EVENT_S08E01A_END), + CALL_SCRIPT(EVENT_S03E01A_CONTINUE), + CALL_SCRIPT(EVENT_S09E01A_START), + JUMP_SCRIPT(EVENT_M02E02H_L001), + LABEL(9), /* = 0x09 */ + CJUMP_SCENARIO_1(SCENARIO_MAIN), + COND_EQUAL(0, /* to label */ 19), + EXECUTE_MAP_VAR(GROUND_ENTER), + LABEL(19), /* = 0x13 */ + SCENARIO_CALC(SCENARIO_MAIN, 27, 1), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + CALL_SCRIPT(EVENT_S01E02A_END), + CALL_SCRIPT(EVENT_S02E02A_END), + CALL_SCRIPT(EVENT_S04E01A_END), + CALL_SCRIPT(EVENT_S05E01A_END), + CALL_SCRIPT(EVENT_S06E01A_END), + CALL_SCRIPT(EVENT_S07E01A_END), + CALL_SCRIPT(EVENT_S08E01A_END), + CALL_SCRIPT(EVENT_S03E01A_END), + CALL_SCRIPT(EVENT_S09E01A_END), + { 0xb0, 0x01, 0x001f, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x0020, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x0021, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x0022, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x0023, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x0024, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x0025, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x0027, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x0028, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x0029, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(EVENT_M02END_L001), +}; + +static const struct ScriptCommand s_script_EVENT_DIVIDE_WARP_LOCK_FUNC[] = { /* 0x8124bb8 */ + DEBUGINFO, + CJUMP_VAR(WARP_LOCK), + COND_EQUAL(3, /* to label */ 0), + COND_EQUAL(4, /* to label */ 1), + COND_EQUAL(5, /* to label */ 2), + COND_EQUAL(6, /* to label */ 3), + COND_EQUAL(7, /* to label */ 3), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + MSG_VAR(2, PARTNER_TALK_KIND, 1), + VARIANT(/* == */ 1, _(" Huh?\nAre you going home already?")), + VARIANT(/* == */ 1, _(" We haven't gone to the\n#C5Pelipper Post Office#R yet?")), + VARIANT(/* == */ 1, _(" You can go home after we\ngo to the #C5Pelipper Post Office#R.")), + VARIANT_DEFAULT(_(" Huh?\nYou want to go home already?")), + VARIANT_DEFAULT(_(" We're already here.\nLet me show you around a bit more.")), + VARIANT_DEFAULT(_(" Let's go to the #C5Pelipper\nPost Office#R at least.")), + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, + LABEL(1), /* = 0x01 */ + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh?\nYou want to go home already?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh?\nAre you ready to leave?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, + LABEL(2), /* = 0x02 */ + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh?\nAre you ready to leave?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, + LABEL(3), /* = 0x03 */ + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh?\nAre you ready to leave?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, + { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh?\nAre you ready to leave?") }, + { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + + + +static const struct ScriptCommand s_script_EVENT_RESCUE_ENTER_CHECK[] = { /* 0x8124f80 */ + DEBUGINFO, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x07, 0x00, 0x001e, -0x00000001, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_script_EVENT_RESCUE[] = { /* 0x8124fc0 */ + DEBUGINFO, + { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + RESCUE_SELECT, + RET, +}; + +static const struct ScriptCommand s_script_DEBUG_SCRIPT[] = { /* 0x8125000 */ + DEBUGINFO, + { 0x3c, 0x2a, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(-1, /* to label */ 0), + HALT, + LABEL(0), /* = 0x00 */ + { 0x3b, 0x41, 0x003c, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_script_DEMO_CANCEL[] = { /* 0x8125070 */ + DEBUGINFO, + HALT, +}; + +static const struct ScriptCommand s_script_DEMO_01[] = { /* 0x8125090 */ + DEBUGINFO, + EXECUTE_SUBSTATION(227, 1, 0), + { 0x3b, 0x41, 0x003c, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_script_DEMO_02[] = { /* 0x81250d0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(226, 1, 0), + { 0x3b, 0x41, 0x003c, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_script_DEMO_03[] = { /* 0x8125110 */ + DEBUGINFO, + EXECUTE_SUBSTATION(5, 5, 0), + EXECUTE_SUBSTATION(4, 29, 0), + EXECUTE_SUBSTATION(225, 1, 0), + EXECUTE_SUBSTATION(224, 3, 0), + { 0x3b, 0x41, 0x003c, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_script_DEMO_04[] = { /* 0x8125180 */ + DEBUGINFO, + EXECUTE_SUBSTATION(224, 4, 0), + { 0x3b, 0x41, 0x003c, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_script_EVENT_M00E01A_L001[] = { /* 0x81251c0 */ + DEBUGINFO, + BGM_STOP, + { 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL }, + EXECUTE_SUBSTATION(223, 1, 0), + { 0x3b, 0x39, 0x0000, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 2, 0), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_M01E01A_L001[] = { /* 0x8125230 */ + DEBUGINFO, + EXECUTE_SUBSTATION(178, 1, 0), + { 0xaf, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E01A_L002[] = { /* 0x8125270 */ + DEBUGINFO, + EXECUTE_SUBSTATION(178, 2, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E01A_L003[] = { /* 0x81252a0 */ + DEBUGINFO, + { 0x3b, 0x39, 0x0004, 0x00000000, 0x00000000, NULL }, + EXECUTE_SUBSTATION(179, 1, 0), + EXECUTE_SUBSTATION(178, 3, 0), + EXECUTE_SUBSTATION(9, 17, 0), + { 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL }, + EXECUTE_SUBSTATION(224, 2, 0), + { 0x3b, 0x39, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 3, 0), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_M01E02A_L001[] = { /* 0x8125350 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 15, 0), + SCENARIO_CALC(SCENARIO_MAIN, 3, 2), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E02A_L001B[] = { /* 0x8125390 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_MAIN, 3, 3), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E02A_L001C[] = { /* 0x81253c0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 17, 0), + SCENARIO_CALC(SCENARIO_MAIN, 3, 4), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E02A_L002[] = { /* 0x8125400 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 18, 0), + SCENARIO_CALC(SCENARIO_MAIN, 3, 5), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E02A_L003[] = { /* 0x8125440 */ + DEBUGINFO, + EXECUTE_SUBSTATION(180, 1, 0), + { 0xaf, 0x01, 0x0001, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 3, 6), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E02A_L004[] = { /* 0x8125490 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 18, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E02A_L005[] = { /* 0x81254c0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(180, 2, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E02A_L006[] = { /* 0x81254f0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(181, 1, 0), + EXECUTE_SUBSTATION(180, 3, 0), + EXECUTE_SUBSTATION(9, 23, 0), + { 0xb0, 0x01, 0x0001, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 4, 0), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + CALL_SCRIPT(NEXT_SAVE_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_M01E02B_L001[] = { /* 0x8125580 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 2, 0), + EXECUTE_SUBSTATION(162, 1, 0), + EXECUTE_SUBSTATION(12, 19, 0), + SCENARIO_CALC(SCENARIO_MAIN, 4, 2), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E02B_L002[] = { /* 0x81255e0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(1, 6, 0), + SCENARIO_CALC(SCENARIO_MAIN, 4, 3), + UPDATE_VARINT(CALC_SET, WARP_LOCK, 3), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E02B_L003[] = { /* 0x8125630 */ + DEBUGINFO, + EXECUTE_SUBSTATION(4, 12, 0), + SCENARIO_CALC(SCENARIO_MAIN, 4, 4), + UPDATE_VARINT(CALC_SET, WARP_LOCK, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E02B_L004[] = { /* 0x8125680 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 2, 0), + EXECUTE_SUBSTATION(162, 2, 0), + EXECUTE_SUBSTATION(12, 20, 0), + { 0xaf, 0x01, 0x0002, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 4, 5), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E02B_L004B[] = { /* 0x81256f0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 26, 0), + SCENARIO_CALC(SCENARIO_MAIN, 4, 6), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E02B_L005[] = { /* 0x8125730 */ + DEBUGINFO, + EXECUTE_SUBSTATION(182, 1, 0), + { 0x02, 0x00, 0x0000, 0x00000002, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E02B_L006[] = { /* 0x8125770 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 21, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E02B_L007[] = { /* 0x81257a0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(182, 2, 0), + { 0x02, 0x00, 0x0000, 0x00000002, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E02B_L008[] = { /* 0x81257e0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(183, 1, 0), + EXECUTE_SUBSTATION(9, 28, 0), + { 0xb0, 0x01, 0x0002, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 5, 0), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + CALL_SCRIPT(NEXT_SAVE_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_M01E03A_L000[] = { /* 0x8125860 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 3, 0), + SCENARIO_CALC(SCENARIO_MAIN, 5, 1), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E03A_L001[] = { /* 0x81258a0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 2, 0), + EXECUTE_SUBSTATION(162, 3, 0), + EXECUTE_SUBSTATION(12, 22, 0), + SCENARIO_CALC(SCENARIO_MAIN, 5, 2), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E03A_L002[] = { /* 0x8125900 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 29, 0), + SCENARIO_CALC(SCENARIO_MAIN, 5, 3), + UPDATE_VARINT(CALC_SET, WARP_LOCK, 4), + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + { 0x01, 0x00, -0x0001, 0x00000001, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E03A_L003[] = { /* 0x81259b0 */ + DEBUGINFO, + JUMPIF_EQUAL(SCRIPT_MODE, 1, /* to label */ 0), + UPDATE_VARINT(CALC_SET, WARP_LOCK, 0), + { 0x3b, 0x03, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMPIF(JUDGE_GE, CLEAR_COUNT, 3, /* to label */ 0), + EXECUTE_SUBSTATION(12, 3, 0), + SCENARIO_CALC(SCENARIO_MAIN, 5, 5), + RET, + LABEL(0), /* = 0x00 */ + JUMP_SCRIPT(EVENT_M01E03A_L004), +}; + +static const struct ScriptCommand s_script_EVENT_M01E03A_L004[] = { /* 0x8125a50 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 23, 0), + SCENARIO_CALC(SCENARIO_MAIN, 5, 6), + UPDATE_VARINT(CALC_SET, WARP_LOCK, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E03A_L005[] = { /* 0x8125aa0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 30, 0), + SCENARIO_CALC(SCENARIO_MAIN, 5, 7), + UPDATE_VARINT(CALC_SET, WARP_LOCK, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E03A_L006[] = { /* 0x8125af0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 24, 0), + SCENARIO_CALC(SCENARIO_MAIN, 5, 8), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E03A_L007[] = { /* 0x8125b30 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 31, 0), + { 0xaf, 0x01, 0x0003, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 5, 9), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E03A_L008[] = { /* 0x8125b80 */ + DEBUGINFO, + EXECUTE_SUBSTATION(184, 1, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E03A_L009[] = { /* 0x8125bb0 */ + DEBUGINFO, + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER3_FUNC), + EXECUTE_SUBSTATION(12, 25, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E03A_L010[] = { /* 0x8125bf0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(184, 2, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E03A_L011[] = { /* 0x8125c20 */ + DEBUGINFO, + EXECUTE_SUBSTATION(185, 1, 0), + EXECUTE_SUBSTATION(9, 34, 0), + { 0xb0, 0x01, 0x0003, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 6, 0), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + CALL_SCRIPT(NEXT_SAVE_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_M01E04A_L000[] = { /* 0x8125cb0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 3, 0), + SCENARIO_CALC(SCENARIO_MAIN, 6, 1), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E04A_L001[] = { /* 0x8125cf0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 26, 0), + SCENARIO_CALC(SCENARIO_MAIN, 6, 2), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E04A_L002[] = { /* 0x8125d30 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 35, 0), + { 0x3b, 0x3b, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_SUBSTATION(1, 12, 0), + EXECUTE_SUBSTATION(9, 36, 0), + { 0xaf, 0x01, 0x0004, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 6, 3), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E04A_L003[] = { /* 0x8125db0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(186, 1, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E04A_L004[] = { /* 0x8125de0 */ + DEBUGINFO, + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER3_FUNC), + EXECUTE_SUBSTATION(12, 27, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E04A_L005[] = { /* 0x8125e20 */ + DEBUGINFO, + { 0x02, 0x00, 0x001e, 0x00000006, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E04A_L006[] = { /* 0x8125e50 */ + DEBUGINFO, + EXECUTE_SUBSTATION(187, 1, 0), + EXECUTE_SUBSTATION(9, 39, 0), + { 0xb0, 0x01, 0x0004, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 7, 0), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + CALL_SCRIPT(NEXT_SAVE_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_M01E04B_L000[] = { /* 0x8125ee0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 3, 0), + SCENARIO_CALC(SCENARIO_MAIN, 7, 1), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E04B_L001[] = { /* 0x8125f20 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 28, 0), + SCENARIO_CALC(SCENARIO_MAIN, 7, 2), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E04B_L002[] = { /* 0x8125f60 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 40, 0), + { 0xaf, 0x01, 0x0005, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 7, 3), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E04B_L003[] = { /* 0x8125fb0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(188, 1, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E04B_L004[] = { /* 0x8125fe0 */ + DEBUGINFO, + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER3_FUNC), + EXECUTE_SUBSTATION(12, 29, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E04B_L005[] = { /* 0x8126020 */ + DEBUGINFO, + EXECUTE_SUBSTATION(188, 2, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E04B_L006[] = { /* 0x8126050 */ + DEBUGINFO, + EXECUTE_SUBSTATION(189, 1, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E04B_L007[] = { /* 0x8126080 */ + DEBUGINFO, + EXECUTE_SUBSTATION(190, 1, 0), + { 0xb0, 0x01, 0x0005, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 8, 0), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + CALL_SCRIPT(NEXT_SAVE_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_M01E05A_L000[] = { /* 0x8126100 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 3, 0), + SCENARIO_CALC(SCENARIO_MAIN, 8, 1), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E05A_L001[] = { /* 0x8126140 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 30, 0), + SCENARIO_CALC(SCENARIO_MAIN, 8, 2), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E05A_L002[] = { /* 0x8126180 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 43, 0), + { 0xaf, 0x01, 0x0006, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 8, 3), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E05A_L003[] = { /* 0x81261d0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(191, 1, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E05A_L004[] = { /* 0x8126200 */ + DEBUGINFO, + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER3_FUNC), + EXECUTE_SUBSTATION(12, 31, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E05A_L005[] = { /* 0x8126240 */ + DEBUGINFO, + EXECUTE_SUBSTATION(191, 2, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E05A_L006[] = { /* 0x8126270 */ + DEBUGINFO, + EXECUTE_SUBSTATION(192, 2, 0), + { 0xb0, 0x01, 0x0006, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 9, 0), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + CALL_SCRIPT(NEXT_SAVE_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_M01E05B_L000[] = { /* 0x81262f0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 3, 0), + SCENARIO_CALC(SCENARIO_MAIN, 9, 1), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E05B_L001[] = { /* 0x8126330 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 32, 0), + SCENARIO_CALC(SCENARIO_MAIN, 9, 2), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E05B_L002[] = { /* 0x8126370 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 45, 0), + SCENARIO_CALC(SCENARIO_MAIN, 9, 3), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E05B_L003[] = { /* 0x81263b0 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_MAIN, 9, 4), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E05B_L004[] = { /* 0x81263e0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(2, 17, 0), + SCENARIO_CALC(SCENARIO_MAIN, 9, 5), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E05B_L005[] = { /* 0x8126420 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 46, 0), + SCENARIO_CALC(SCENARIO_MAIN, 10, 0), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_M01E06A_L001[] = { /* 0x8126460 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 2, 0), + EXECUTE_SUBSTATION(162, 4, 0), + EXECUTE_SUBSTATION(12, 33, 0), + { 0x3b, 0x3b, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_SUBSTATION(2, 18, 0), + EXECUTE_SUBSTATION(12, 34, 0), + SCENARIO_CALC(SCENARIO_MAIN, 10, 2), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E06A_L002[] = { /* 0x81264f0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 47, 0), + SCENARIO_CALC(SCENARIO_MAIN, 10, 3), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E06A_L003[] = { /* 0x8126530 */ + DEBUGINFO, + EXECUTE_SUBSTATION(1, 20, 0), + EXECUTE_SUBSTATION(1, 21, 0), + EXECUTE_SUBSTATION(9, 48, 0), + SCENARIO_CALC(SCENARIO_MAIN, 11, 0), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_M01E07A_L001[] = { /* 0x8126590 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 49, 0), + SCENARIO_CALC(SCENARIO_MAIN, 11, 2), + UPDATE_VARINT(CALC_SET, WARP_LOCK, 5), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E07A_L002[] = { /* 0x81265e0 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_MAIN, 11, 4), + EXECUTE_SUBSTATION(9, 51, 0), + EXECUTE_SUBSTATION(9, 52, 0), + EXECUTE_SUBSTATION(9, 53, 0), + { 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL }, + EXECUTE_SUBSTATION(164, 1, 0), + EXECUTE_SUBSTATION(165, 1, 0), + { 0x3b, 0x39, 0x0000, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, WARP_LOCK, 0), + { 0x3b, 0x09, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_M01E07A_L003[] = { /* 0x81266a0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(193, 1, 0), + { 0xaf, 0x01, 0x0007, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E07A_L004[] = { /* 0x81266e0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(193, 2, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E07A_L005[] = { /* 0x8126710 */ + DEBUGINFO, + EXECUTE_SUBSTATION(194, 1, 0), + EXECUTE_SUBSTATION(166, 1, 0), + { 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL }, + EXECUTE_SUBSTATION(167, 1, 0), + { 0x3b, 0x39, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_SUBSTATION(166, 2, 0), + { 0xb0, 0x01, 0x0007, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 12, 0), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 24), + CALL_SCRIPT(NEXT_SAVE_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_M01E07A_T001[] = { /* 0x81267d0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(193, 5, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E07A_T002[] = { /* 0x8126800 */ + DEBUGINFO, + EXECUTE_SUBSTATION(193, 4, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E07B_L001[] = { /* 0x8126830 */ + DEBUGINFO, + EXECUTE_SUBSTATION(195, 1, 0), + SCENARIO_CALC(SCENARIO_MAIN, 12, 2), + JUMP_SCRIPT(EVENT_M01E07B_L002), +}; + +static const struct ScriptCommand s_script_EVENT_M01E07B_L002[] = { /* 0x8126870 */ + DEBUGINFO, + { 0xaf, 0x01, 0x0008, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E07B_L003[] = { /* 0x81268a0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(195, 3, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E07B_L004[] = { /* 0x81268d0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(196, 1, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E07B_L005[] = { /* 0x8126900 */ + DEBUGINFO, + EXECUTE_SUBSTATION(197, 1, 0), + { 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL }, + EXECUTE_SUBSTATION(167, 2, 0), + { 0x3b, 0x39, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x0008, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 13, 0), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 26), + CALL_SCRIPT(NEXT_SAVE_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_M01E07B_T001[] = { /* 0x81269a0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(195, 5, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E07B_T002[] = { /* 0x81269d0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(195, 4, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E08A_L001[] = { /* 0x8126a00 */ + DEBUGINFO, + { 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL }, + EXECUTE_SUBSTATION(168, 1, 0), + EXECUTE_SUBSTATION(168, 2, 0), + EXECUTE_SUBSTATION(169, 1, 0), + { 0x3b, 0x39, 0x0000, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 13, 2), + JUMP_SCRIPT(EVENT_M01E08A_L002), +}; + +static const struct ScriptCommand s_script_EVENT_M01E08A_L002[] = { /* 0x8126a80 */ + DEBUGINFO, + EXECUTE_SUBSTATION(198, 1, 0), + { 0xaf, 0x01, 0x0009, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E08A_L003[] = { /* 0x8126ac0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(198, 3, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E08A_L004[] = { /* 0x8126af0 */ + DEBUGINFO, + JUMPIF_UNK_BC(8, /* to label */ 0), + EXECUTE_SUBSTATION(199, 1, 0), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + EXECUTE_SUBSTATION(199, 2, 0), + LABEL(1), /* = 0x01 */ + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E08A_L005[] = { /* 0x8126b70 */ + DEBUGINFO, + EXECUTE_SUBSTATION(200, 1, 0), + { 0xb0, 0x01, 0x0009, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 14, 0), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 28), + CALL_SCRIPT(NEXT_SAVE_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_M01E08A_T001[] = { /* 0x8126be0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(198, 6, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E08A_T002[] = { /* 0x8126c10 */ + DEBUGINFO, + EXECUTE_SUBSTATION(198, 5, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E08B_L001[] = { /* 0x8126c40 */ + DEBUGINFO, + { 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL }, + EXECUTE_SUBSTATION(170, 1, 0), + EXECUTE_SUBSTATION(162, 5, 0), + EXECUTE_SUBSTATION(170, 2, 0), + { 0x3b, 0x39, 0x0000, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 14, 2), + JUMP_SCRIPT(EVENT_M01E08B_L002), +}; + +static const struct ScriptCommand s_script_EVENT_M01E08B_L002[] = { /* 0x8126cc0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(201, 1, 0), + { 0xaf, 0x01, 0x000a, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E08B_L003[] = { /* 0x8126d00 */ + DEBUGINFO, + EXECUTE_SUBSTATION(201, 3, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E08B_L004[] = { /* 0x8126d30 */ + DEBUGINFO, + EXECUTE_SUBSTATION(203, 2, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E08B_L005[] = { /* 0x8126d60 */ + DEBUGINFO, + EXECUTE_SUBSTATION(202, 1, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E08B_L006[] = { /* 0x8126d90 */ + DEBUGINFO, + EXECUTE_SUBSTATION(203, 2, 0), + EXECUTE_SUBSTATION(203, 3, 0), + { 0xb0, 0x01, 0x000a, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 15, 0), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 2), + CALL_SCRIPT(NEXT_SAVE_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_M01E08B_T001[] = { /* 0x8126e10 */ + DEBUGINFO, + EXECUTE_SUBSTATION(201, 5, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E08B_T002[] = { /* 0x8126e40 */ + DEBUGINFO, + EXECUTE_SUBSTATION(201, 4, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E09A_L001[] = { /* 0x8126e70 */ + DEBUGINFO, + EXECUTE_SUBSTATION(1, 23, 0), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + EXECUTE_SUBSTATION(12, 35, 0), + SCENARIO_CALC(SCENARIO_MAIN, 15, 2), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E09A_L002[] = { /* 0x8126ed0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 55, 0), + SCENARIO_CALC(SCENARIO_MAIN, 15, 3), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E09A_L003[] = { /* 0x8126f10 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 2, 0), + EXECUTE_SUBSTATION(162, 6, 0), + EXECUTE_SUBSTATION(12, 36, 0), + EXECUTE_SUBSTATION(162, 7, 0), + EXECUTE_SUBSTATION(12, 37, 0), + SCENARIO_CALC(SCENARIO_MAIN, 15, 4), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E09A_L004[] = { /* 0x8126f90 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 57, 0), + SCENARIO_CALC(SCENARIO_MAIN, 15, 5), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E09A_L005[] = { /* 0x8126fd0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 38, 0), + SCENARIO_CALC(SCENARIO_MAIN, 15, 6), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E09A_L006[] = { /* 0x8127010 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 58, 0), + EXECUTE_SUBSTATION(1, 26, 0), + SCENARIO_CALC(SCENARIO_MAIN, 15, 7), + EXECUTE_SUBSTATION(9, 59, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E09A_L007[] = { /* 0x8127070 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 39, 0), + SCENARIO_CALC(SCENARIO_MAIN, 15, 8), + JUMP_SCRIPT(EVENT_M01E09A_L008), +}; + +static const struct ScriptCommand s_script_EVENT_M01E09A_L008[] = { /* 0x81270b0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(1, 28, 0), + EXECUTE_SUBSTATION(9, 60, 0), + SCENARIO_CALC(SCENARIO_MAIN, 15, 9), + UPDATE_VARINT(CALC_SET, WARP_LOCK, 6), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E09A_L009[] = { /* 0x8127110 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 2, 0), + EXECUTE_SUBSTATION(162, 8, 0), + { 0x3b, 0x03, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_SUBSTATION(12, 40, 0), + { 0xaf, 0x01, 0x000b, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 15, 10), + UPDATE_VARINT(CALC_SET, WARP_LOCK, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E09A_L010[] = { /* 0x81271a0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 62, 0), + { 0xaf, 0x01, 0x000b, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 15, 11), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E09A_L011[] = { /* 0x81271f0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(204, 1, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E09A_L012[] = { /* 0x8127220 */ + DEBUGINFO, + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER3_FUNC), + EXECUTE_SUBSTATION(12, 41, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E09A_L013[] = { /* 0x8127260 */ + DEBUGINFO, + EXECUTE_SUBSTATION(204, 2, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E09A_L014[] = { /* 0x8127290 */ + DEBUGINFO, + EXECUTE_SUBSTATION(205, 1, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E09A_L015[] = { /* 0x81272c0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(206, 1, 0), + { 0xb0, 0x01, 0x000b, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 16, 0), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 2), + CALL_SCRIPT(NEXT_SAVE_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_M01E10A_L001[] = { /* 0x8127340 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_MAIN, 16, 1), + EXECUTE_SUBSTATION(1, 31, 0), + EXECUTE_SUBSTATION(171, 1, 0), + EXECUTE_SUBSTATION(173, 1, 0), + EXECUTE_SUBSTATION(171, 2, 0), + EXECUTE_SUBSTATION(1, 32, 0), + EXECUTE_SUBSTATION(1, 33, 0), + SCENARIO_CALC(SCENARIO_MAIN, 16, 2), + UPDATE_VARINT(CALC_SET, WARP_LOCK, 7), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E10A_L002[] = { /* 0x81273f0 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_MAIN, 16, 3), + EXECUTE_SUBSTATION(12, 2, 0), + EXECUTE_SUBSTATION(163, 1, 0), + EXECUTE_SUBSTATION(12, 42, 0), + EXECUTE_SUBSTATION(163, 2, 0), + EXECUTE_SUBSTATION(162, 9, 0), + { 0x3b, 0x03, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_SUBSTATION(12, 43, 0), + { 0xaf, 0x01, 0x000c, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, WARP_LOCK, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E10A_L003[] = { /* 0x81274b0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 65, 0), + { 0xaf, 0x01, 0x000c, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 16, 4), + UPDATE_VARINT(CALC_SET, WARP_LOCK, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E10A_L004[] = { /* 0x8127510 */ + DEBUGINFO, + EXECUTE_SUBSTATION(171, 3, 0), + EXECUTE_SUBSTATION(162, 10, 0), + EXECUTE_SUBSTATION(171, 4, 0), + EXECUTE_SUBSTATION(207, 1, 0), + EXECUTE_SUBSTATION(172, 1, 0), + EXECUTE_SUBSTATION(207, 2, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E10A_L005[] = { /* 0x8127590 */ + DEBUGINFO, + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER3_FUNC), + EXECUTE_SUBSTATION(12, 44, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E10A_L006[] = { /* 0x81275d0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(207, 3, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E10A_L007[] = { /* 0x8127600 */ + DEBUGINFO, + EXECUTE_SUBSTATION(208, 1, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M01E10A_L008[] = { /* 0x8127630 */ + DEBUGINFO, + EXECUTE_SUBSTATION(209, 1, 0), + EXECUTE_SUBSTATION(173, 2, 0), + EXECUTE_SUBSTATION(209, 2, 0), + EXECUTE_SUBSTATION(173, 3, 0), + EXECUTE_SUBSTATION(209, 3, 0), + { 0xb0, 0x01, 0x000c, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_MAIN, 17, 0), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_M01END_L001[] = { /* 0x81276c0 */ + DEBUGINFO, + { 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL }, + EXECUTE_SUBSTATION(174, 1, 0), + EXECUTE_SUBSTATION(171, 5, 0), + EXECUTE_SUBSTATION(1, 37, 0), + EXECUTE_SUBSTATION(2, 28, 0), + EXECUTE_SUBSTATION(4, 27, 0), + EXECUTE_SUBSTATION(171, 6, 0), + EXECUTE_SUBSTATION(171, 7, 0), + { 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL }, + EXECUTE_SUBSTATION(175, 1, 0), + EXECUTE_SUBSTATION(176, 1, 0), + SCENARIO_CALC(SCENARIO_MAIN, 18, 0), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + EXECUTE_SUBSTATION(175, 2, 0), + EXECUTE_SUBSTATION(9, 68, 0), + EXECUTE_SUBSTATION(177, 1, 0), + { 0x3b, 0x42, 0x0000, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_script_EVENT_M01END_L002[] = { /* 0x81277f0 */ + DEBUGINFO, + { 0x3b, 0x39, 0x0001, 0x00000000, 0x00000000, NULL }, + EXECUTE_SUBSTATION(175, 1, 0), + EXECUTE_SUBSTATION(176, 1, 0), + SCENARIO_CALC(SCENARIO_MAIN, 18, 0), + CALL_SCRIPT(EVENT_DIVIDE_INIT_FUNC), + EXECUTE_SUBSTATION(175, 2, 0), + EXECUTE_SUBSTATION(9, 68, 0), + EXECUTE_SUBSTATION(177, 1, 0), + { 0x3b, 0x42, 0x0000, 0x00000000, 0x00000000, NULL }, + HALT, +}; + +static const struct ScriptCommand s_script_EVENT_M02E01A_L001[] = { /* 0x81278a0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 45, 0), + SCENARIO_CALC(SCENARIO_MAIN, 18, 2), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M02E01A_L002[] = { /* 0x81278e0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 69, 0), + EXECUTE_SUBSTATION(2, 29, 0), + SCENARIO_CALC(SCENARIO_MAIN, 18, 3), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M02E01A_L003[] = { /* 0x8127930 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 72, 0), + SCENARIO_CALC(SCENARIO_MAIN, 18, 4), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M02E02A_L001[] = { /* 0x8127970 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_MAIN, 19, 2), + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + EXECUTE_SUBSTATION(12, 6, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M02E02B_L001[] = { /* 0x81279c0 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_MAIN, 20, 2), + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + EXECUTE_SUBSTATION(12, 6, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M02E02C_L001[] = { /* 0x8127a10 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_MAIN, 21, 2), + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + EXECUTE_SUBSTATION(12, 6, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M02E02D_L001[] = { /* 0x8127a60 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_MAIN, 22, 2), + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + EXECUTE_SUBSTATION(12, 6, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M02E02E_L001[] = { /* 0x8127ab0 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_MAIN, 23, 2), + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + EXECUTE_SUBSTATION(12, 6, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M02E02F_L001[] = { /* 0x8127b00 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_MAIN, 24, 2), + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + EXECUTE_SUBSTATION(12, 6, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M02E02G_L001[] = { /* 0x8127b50 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_MAIN, 25, 2), + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + EXECUTE_SUBSTATION(12, 6, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M02E02H_L001[] = { /* 0x8127ba0 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_MAIN, 26, 2), + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + EXECUTE_SUBSTATION(12, 6, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_M02END_L001[] = { /* 0x8127bf0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 6, 0), + SCENARIO_CALC(SCENARIO_MAIN, 27, 2), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S00E01A_L001[] = { /* 0x8127c30 */ + DEBUGINFO, + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER3_FUNC), + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + EXECUTE_SUBSTATION(12, 7, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S00E01A_L002[] = { /* 0x8127c80 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 6, 0), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + SCENARIO_CALC(SCENARIO_SELECT, 57, 0), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S00E01A_L003[] = { /* 0x8127cf0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 4, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S00E01A_L004[] = { /* 0x8127d20 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 5, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S01E01A_START[] = { /* 0x8127d50 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB1, 29, 1, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB1, 29, 1), + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S01E01A_CONTINUE[] = { /* 0x8127db0 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB1, 29, 2, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB1, 29, 2), + { 0xae, 0x01, 0x000e, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S01E01A_END[] = { /* 0x8127e20 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB1, 31, 0, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB1, 31, 0), + { 0xb0, 0x01, 0x000e, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, BASE_LEVEL, 2), + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S01E01A_L001[] = { /* 0x8127ea0 */ + DEBUGINFO, + { 0xae, 0x01, 0x000e, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB1, 29, 2), + RET, + SCENARIO_CALC(SCENARIO_MAIN, 15, 5), + SCENARIO_CALC(SCENARIO_SUB1, 29, 1), + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 9), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 2), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + EXECUTE_MAP_VAR(GROUND_ENTER), +}; + + +static const struct ScriptCommand s_script_EVENT_S01E01A_L002[] = { /* 0x8127f60 */ + DEBUGINFO, + EXECUTE_SUBSTATION(4, 3, 0), + { 0xaf, 0x01, 0x000e, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB1, 29, 3), + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 4), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 4), + EXECUTE_SUBSTATION(4, 0, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S01E01A_L003[] = { /* 0x8127ff0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 75, 0), + { 0xb0, 0x01, 0x000e, 0x00000000, 0x00000000, NULL }, + JUMP_SCRIPT(EVENT_S01E01B_L001), +}; + +static const struct ScriptCommand s_script_EVENT_S01E01B_L001[] = { /* 0x8128030 */ + DEBUGINFO, + UPDATE_VARINT(CALC_SET, BASE_LEVEL, 1), + EXECUTE_SUBSTATION(9, 76, 0), + SCENARIO_CALC(SCENARIO_SUB1, 30, 0), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + SCENARIO_CALC(SCENARIO_SELECT, 30, 0), + CALL_SCRIPT(NEXT_SAVE2_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S01E01B_L001L[] = { /* 0x81280c0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 8, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S01E01C_L001[] = { /* 0x81280f0 */ + DEBUGINFO, + UPDATE_VARINT(CALC_SET, BASE_LEVEL, 2), + EXECUTE_SUBSTATION(9, 78, 0), + SCENARIO_CALC(SCENARIO_SUB1, 31, 0), + { 0x3b, 0x03, 0x0000, 0x00000000, 0x00000000, NULL }, + EXECUTE_FUNCTION(EVENT_DIVIDE_NEXT), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S01E02A_START[] = { /* 0x8128160 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB1, 31, 1, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB1, 31, 1), + { 0xae, 0x01, 0x000f, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0xad, 0x01, 0x0076, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, BASE_LEVEL, 2), + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S01E02A_END[] = { /* 0x8128200 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB1, 32, 0, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB1, 32, 2), + { 0xb0, 0x01, 0x000e, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x000f, 0x00000000, 0x00000000, NULL }, + UPDATE_VARINT(CALC_SET, BASE_LEVEL, 2), + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S01E02A_L001[] = { /* 0x8128290 */ + DEBUGINFO, + EXECUTE_SUBSTATION(4, 5, 0), + { 0xaf, 0x01, 0x000f, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB1, 31, 2), + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 4), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 4), + EXECUTE_SUBSTATION(4, 0, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S01E02A_L002[] = { /* 0x8128320 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_SUB1, 32, 0), + EXECUTE_SUBSTATION(9, 79, 0), + { 0xb0, 0x01, 0x000f, 0x00000000, 0x00000000, NULL }, + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + SCENARIO_CALC(SCENARIO_SELECT, 31, 0), + CALL_SCRIPT(NEXT_SAVE2_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S01E02A_L002L[] = { /* 0x81283b0 */ + DEBUGINFO, + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY2_FUNC), + EXECUTE_SUBSTATION(12, 8, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S01E02B_L001[] = { /* 0x81283f0 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_SUB1, 32, 2), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S01E02B_L002[] = { /* 0x8128420 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_SUB1, 32, 3), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S02E01A_START[] = { /* 0x8128450 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB2, 33, 1, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB2, 33, 1), + { 0xb0, 0x01, 0x0010, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S02E01A_END[] = { /* 0x81284c0 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB2, 34, 0, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB2, 34, 0), + { 0xb0, 0x01, 0x0010, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S02E01A_L001[] = { /* 0x8128530 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_SUB2, 33, 2), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S02E01A_L002[] = { /* 0x8128560 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_SUB2, 33, 3), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S02E01A_L003[] = { /* 0x8128590 */ + DEBUGINFO, + { 0xaf, 0x01, 0x0010, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB2, 33, 4), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S02E01A_L004[] = { /* 0x81285d0 */ + DEBUGINFO, + { 0xb0, 0x01, 0x0010, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB2, 34, 0), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + SCENARIO_CALC(SCENARIO_SELECT, 33, 0), + CALL_SCRIPT(NEXT_SAVE2_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S02E01A_L004L[] = { /* 0x8128650 */ + DEBUGINFO, + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + EXECUTE_SUBSTATION(12, 8, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S02E02A_START[] = { /* 0x8128690 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB2, 34, 1, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB2, 34, 1), + { 0x3b, 0x20, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x0010, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S02E02A_END[] = { /* 0x8128710 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB2, 35, 0, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB2, 35, 0), + { 0xb0, 0x01, 0x0010, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x0011, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S02E02A_L001[] = { /* 0x8128790 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_SUB2, 34, 2), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S02E02A_L002[] = { /* 0x81287c0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(158, 2, 0), + { 0xaf, 0x01, 0x0011, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB2, 34, 3), + EXECUTE_SUBSTATION(12, 4, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S02E02A_L003[] = { /* 0x8128820 */ + DEBUGINFO, + { 0xb0, 0x01, 0x0011, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB2, 35, 0), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + SCENARIO_CALC(SCENARIO_SELECT, 34, 0), + CALL_SCRIPT(NEXT_SAVE2_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S02E02A_L003L[] = { /* 0x81288a0 */ + DEBUGINFO, + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + EXECUTE_SUBSTATION(12, 8, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S03E01A_START[] = { /* 0x81288e0 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB3, 36, 1, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB3, 36, 1), + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S03E01A_CONTINUE[] = { /* 0x8128940 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB3, 36, 2, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB3, 36, 2), + { 0xaf, 0x01, 0x0012, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S03E01A_END[] = { /* 0x81289b0 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB3, 37, 0, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB3, 37, 0), + { 0xb0, 0x01, 0x0012, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S03E01A_L001[] = { /* 0x8128a20 */ + DEBUGINFO, + { 0xaf, 0x01, 0x0012, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB3, 36, 2), + EXECUTE_SUBSTATION(9, 81, 0), + EXECUTE_SUBSTATION(12, 4, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S03E01A_L002[] = { /* 0x8128a80 */ + DEBUGINFO, + { 0xb0, 0x01, 0x0012, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB3, 37, 0), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + SCENARIO_CALC(SCENARIO_SELECT, 36, 0), + CALL_SCRIPT(NEXT_SAVE2_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S03E01A_L002L[] = { /* 0x8128b00 */ + DEBUGINFO, + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + EXECUTE_SUBSTATION(12, 8, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S04E01A_START[] = { /* 0x8128b40 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB4, 38, 1, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB4, 38, 1), + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S04E01A_LAST[] = { /* 0x8128ba0 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB4, 43, 0, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB4, 43, 0), + { 0xaf, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x0015, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x0017, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S04E01A_END[] = { /* 0x8128c50 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB4, 43, 2, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB4, 43, 2), + { 0xaf, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x0015, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x0017, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S04E01A_L001[] = { /* 0x8128d00 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 82, 0), + EXECUTE_SUBSTATION(12, 9, 0), + { 0xaf, 0x01, 0x0013, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB4, 38, 2), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S04E01A_L002[] = { /* 0x8128d60 */ + DEBUGINFO, + EXECUTE_SUBSTATION(192, 1, 0), + { 0xaf, 0x00, 0x0013, 0x00000000, 0x00000000, NULL }, + { 0xaf, 0x01, 0x0014, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB4, 39, 0), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + SCENARIO_CALC(SCENARIO_SELECT, 38, 0), + CALL_SCRIPT(NEXT_SAVE2_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S04E01A_L002L[] = { /* 0x8128e00 */ + DEBUGINFO, + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S04E01B_L001[] = { /* 0x8128e30 */ + DEBUGINFO, + EXECUTE_SUBSTATION(212, 1, 0), + { 0xb0, 0x01, 0x0014, 0x00000000, 0x00000000, NULL }, + { 0xaf, 0x01, 0x0015, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB4, 40, 0), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + SCENARIO_CALC(SCENARIO_SELECT, 39, 0), + CALL_SCRIPT(NEXT_SAVE2_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S04E01B_L001L[] = { /* 0x8128ed0 */ + DEBUGINFO, + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S04E01C_L001[] = { /* 0x8128f00 */ + DEBUGINFO, + EXECUTE_SUBSTATION(213, 1, 0), + { 0xb0, 0x01, 0x0015, 0x00000000, 0x00000000, NULL }, + { 0xaf, 0x01, 0x0016, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB4, 41, 0), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + SCENARIO_CALC(SCENARIO_SELECT, 40, 0), + CALL_SCRIPT(NEXT_SAVE2_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S04E01C_L001L[] = { /* 0x8128fa0 */ + DEBUGINFO, + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S04E01D_L001[] = { /* 0x8128fd0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(214, 1, 0), + { 0xb0, 0x01, 0x0016, 0x00000000, 0x00000000, NULL }, + { 0xaf, 0x01, 0x0017, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB4, 42, 0), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + SCENARIO_CALC(SCENARIO_SELECT, 41, 0), + CALL_SCRIPT(NEXT_SAVE2_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S04E01D_L001L[] = { /* 0x8129070 */ + DEBUGINFO, + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S04E01E_L001[] = { /* 0x81290a0 */ + DEBUGINFO, + { 0xb0, 0x01, 0x0017, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB4, 43, 0), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + SCENARIO_CALC(SCENARIO_SELECT, 42, 0), + CALL_SCRIPT(NEXT_SAVE2_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S04E01E_L001L[] = { /* 0x8129120 */ + DEBUGINFO, + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S04E01F_L001[] = { /* 0x8129150 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_SUB4, 43, 2), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S05E01A_START[] = { /* 0x8129180 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB5, 44, 1, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB5, 44, 1), + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S05E01A_CONTINUE[] = { /* 0x81291e0 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB5, 44, 2, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB5, 44, 2), + { 0xaf, 0x01, 0x0018, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S05E01A_END[] = { /* 0x8129250 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB5, 45, 0, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB5, 45, 0), + { 0xb0, 0x01, 0x0018, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S05E01A_L001[] = { /* 0x81292c0 */ + DEBUGINFO, + { 0xaf, 0x01, 0x0018, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB5, 44, 2), + EXECUTE_SUBSTATION(216, 1, 0), + EXECUTE_SUBSTATION(1, 46, 0), + EXECUTE_SUBSTATION(12, 4, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S05E01A_L002[] = { /* 0x8129330 */ + DEBUGINFO, + { 0xb0, 0x01, 0x0018, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB5, 45, 0), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + SCENARIO_CALC(SCENARIO_SELECT, 44, 0), + CALL_SCRIPT(NEXT_SAVE2_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S05E01A_L002L[] = { /* 0x81293b0 */ + DEBUGINFO, + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S06E01A_START[] = { /* 0x81293e0 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB6, 46, 1, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB6, 46, 1), + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S06E01A_CONTINUE[] = { /* 0x8129440 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB6, 46, 2, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB6, 46, 2), + { 0xaf, 0x01, 0x0019, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S06E01A_END[] = { /* 0x81294b0 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB6, 48, 0, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB6, 48, 0), + { 0xb0, 0x01, 0x0019, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x001a, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x24, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x25, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x26, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x27, 0x0000, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S06E01A_L001[] = { /* 0x8129570 */ + DEBUGINFO, + { 0xaf, 0x01, 0x0019, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB6, 46, 2), + EXECUTE_SUBSTATION(12, 10, 0), + EXECUTE_SUBSTATION(9, 83, 0), + EXECUTE_SUBSTATION(12, 11, 0), + EXECUTE_SUBSTATION(1, 47, 0), + EXECUTE_SUBSTATION(12, 5, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S06E01A_L002[] = { /* 0x8129600 */ + DEBUGINFO, + EXECUTE_SUBSTATION(217, 1, 0), + { 0xb0, 0x01, 0x0019, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB6, 47, 2), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 2), + SCENARIO_CALC(SCENARIO_SELECT, 46, 0), + CALL_SCRIPT(NEXT_SAVE2_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S06E01A_L002L[] = { /* 0x8129680 */ + DEBUGINFO, + JUMP_SCRIPT(EVENT_S06E01B_L001), +}; + +static const struct ScriptCommand s_script_EVENT_S06E01B_L001[] = { /* 0x81296a0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(1, 48, 0), + { 0xaf, 0x01, 0x001a, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB6, 47, 2), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + EXECUTE_SUBSTATION(12, 5, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S06E01B_L002[] = { /* 0x8129710 */ + DEBUGINFO, + EXECUTE_SUBSTATION(218, 1, 0), + EXECUTE_SUBSTATION(1, 49, 0), + { 0xb0, 0x01, 0x001a, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB6, 48, 0), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + SCENARIO_CALC(SCENARIO_SELECT, 47, 0), + CALL_SCRIPT(NEXT_SAVE2_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S06E01B_L002L[] = { /* 0x81297b0 */ + DEBUGINFO, + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + EXECUTE_SUBSTATION(12, 8, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S07E01A_START[] = { /* 0x81297f0 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB7, 49, 1, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB7, 49, 1), + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S07E01A_END[] = { /* 0x8129850 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB7, 50, 0, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB7, 50, 0), + { 0xb0, 0x01, 0x001b, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S07E01A_L001[] = { /* 0x81298c0 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_SUB7, 49, 2), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S07E01A_L002[] = { /* 0x81298f0 */ + DEBUGINFO, + { 0xaf, 0x01, 0x001b, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB7, 49, 3), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S07E01A_L003[] = { /* 0x8129930 */ + DEBUGINFO, + { 0xb0, 0x01, 0x001b, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB7, 50, 0), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + SCENARIO_CALC(SCENARIO_SELECT, 49, 0), + CALL_SCRIPT(NEXT_SAVE2_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S07E01A_L003L[] = { /* 0x81299b0 */ + DEBUGINFO, + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + EXECUTE_SUBSTATION(12, 8, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S08E01A_START[] = { /* 0x81299f0 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB8, 51, 1, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB8, 51, 1), + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S08E01A_END[] = { /* 0x8129a50 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB8, 52, 0, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB8, 52, 0), + { 0xb0, 0x01, 0x001c, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S08E01A_L001[] = { /* 0x8129ac0 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_SUB8, 51, 1), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S08E01A_L002[] = { /* 0x8129af0 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_SUB8, 51, 2), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S08E01A_L003[] = { /* 0x8129b20 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_SUB8, 51, 4), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S08E01A_L004[] = { /* 0x8129b50 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_SUB8, 51, 6), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S08E01A_L005[] = { /* 0x8129b80 */ + DEBUGINFO, + { 0xae, 0x01, 0x001c, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB8, 51, 7), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S08E01A_L005B[] = { /* 0x8129bc0 */ + DEBUGINFO, + EXECUTE_SUBSTATION(4, 7, 0), + { 0xaf, 0x01, 0x001c, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB8, 51, 8), + SET_DUNGEON_RES(/* result */ 0, /* enter */ -1), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 4), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 4), + EXECUTE_SUBSTATION(4, 0, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S08E01A_L006[] = { /* 0x8129c50 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 84, 0), + { 0xb0, 0x01, 0x001c, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB8, 52, 0), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + SCENARIO_CALC(SCENARIO_SELECT, 51, 0), + CALL_SCRIPT(NEXT_SAVE2_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S08E01A_L006L[] = { /* 0x8129ce0 */ + DEBUGINFO, + CALL_SCRIPT(EVENT_DIVIDE_NEXT_DAY_FUNC), + EXECUTE_SUBSTATION(12, 8, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S08E01A_L007[] = { /* 0x8129d20 */ + DEBUGINFO, + JUMP_SCRIPT(EVENT_S08E01A_L008), +}; + +static const struct ScriptCommand s_script_EVENT_S08E01A_L008[] = { /* 0x8129d40 */ + DEBUGINFO, + { 0xf2, 0x00, 0x0041, 0x00000000, 0x00000000, _("S08 SWITCH SELECT\n") }, + CJUMP_VAR(EVENT_S08E01), + COND_EQUAL(2, /* to label */ 0), + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + SCENARIO_CALC(SCENARIO_SELECT, 57, 0), + CALL_SCRIPT(NEXT_SAVE2_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), + LABEL(0), /* = 0x00 */ + CJUMP_RANDOM(2), + COND_EQUAL(0, /* to label */ 1), + COND_EQUAL(1, /* to label */ 2), + LABEL(1), /* = 0x01 */ + { 0x3b, 0x29, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 3), + LABEL(4), /* = 0x04 */ + EXECUTE_SUBSTATION(12, 12, 0), + { 0x3b, 0x2a, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 5), + EXECUTE_SUBSTATION(9, 85, 0), + JUMP_LABEL(5), + LABEL(2), /* = 0x02 */ + { 0x3b, 0x2d, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 3), + LABEL(6), /* = 0x06 */ + EXECUTE_SUBSTATION(12, 13, 0), + JUMP_LABEL(5), + LABEL(3), /* = 0x03 */ + { 0x3b, 0x29, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 4), + COND_EQUAL(2, /* to label */ 4), + { 0x3b, 0x2d, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 6), + EXECUTE_SUBSTATION(12, 14, 0), + JUMP_LABEL(5), + LABEL(5), /* = 0x05 */ + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + SCENARIO_CALC(SCENARIO_SELECT, 52, 0), + CALL_SCRIPT(NEXT_SAVE2_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S08E01A_L008L[] = { /* 0x812a034 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 5, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S08E01A_L008A[] = { /* 0x812a064 */ + DEBUGINFO, + { 0x3b, 0x29, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 0), + EXECUTE_SUBSTATION(12, 12, 0), + { 0x3b, 0x2a, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 0), + EXECUTE_SUBSTATION(9, 85, 0), + LABEL(0), /* = 0x00 */ + EXECUTE_SUBSTATION(12, 5, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S08E01A_L008B[] = { /* 0x812a104 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 13, 0), + EXECUTE_SUBSTATION(12, 5, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S08E01A_L008C[] = { /* 0x812a144 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 14, 0), + EXECUTE_SUBSTATION(12, 5, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S09E01A_START[] = { /* 0x812a184 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB9, 53, 1, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB9, 53, 1), + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S09E01A_END[] = { /* 0x812a1e4 */ + DEBUGINFO, + JUMPIF_SCENE_LT(SCENARIO_SUB9, 55, 0, /* to label */ 0), + RET_DIRECT, + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_SUB9, 55, 2), + { 0xaf, 0x00, 0x001d, 0x00000000, 0x00000000, NULL }, + { 0xb0, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + RET_DIRECT, +}; + +static const struct ScriptCommand s_script_EVENT_S09E01A_L001[] = { /* 0x812a264 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_SUB9, 53, 1), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S09E01A_L002[] = { /* 0x812a294 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_SUB9, 53, 2), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S09E01A_L003[] = { /* 0x812a2c4 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_SUB9, 53, 4), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S09E01A_L004[] = { /* 0x812a2f4 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 86, 0), + { 0xaf, 0x01, 0x001d, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB9, 53, 6), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S09E01A_L004B[] = { /* 0x812a344 */ + DEBUGINFO, + EXECUTE_SUBSTATION(201, 6, 0), + { 0x02, 0x00, 0x0000, 0x00000025, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S09E01A_L005[] = { /* 0x812a384 */ + DEBUGINFO, + EXECUTE_SUBSTATION(203, 1, 0), + EXECUTE_SUBSTATION(9, 88, 0), + { 0xaf, 0x00, 0x001d, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB9, 54, 0), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + SCENARIO_CALC(SCENARIO_SELECT, 53, 0), + CALL_SCRIPT(NEXT_SAVE2_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S09E01A_L005L[] = { /* 0x812a424 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 8, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S09E01B_L001[] = { /* 0x812a454 */ + DEBUGINFO, + EXECUTE_SUBSTATION(9, 89, 0), + { 0xaf, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB9, 54, 2), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S09E01B_L001B[] = { /* 0x812a4a4 */ + DEBUGINFO, + EXECUTE_SUBSTATION(221, 1, 0), + { 0x02, 0x00, 0x0000, 0x00000027, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S09E01B_L002[] = { /* 0x812a4e4 */ + DEBUGINFO, + EXECUTE_SUBSTATION(220, 1, 0), + EXECUTE_SUBSTATION(163, 3, 0), + EXECUTE_SUBSTATION(220, 2, 0), + EXECUTE_SUBSTATION(9, 91, 0), + { 0xb0, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, + SCENARIO_CALC(SCENARIO_SUB9, 55, 2), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + SCENARIO_CALC(SCENARIO_SELECT, 54, 0), + CALL_SCRIPT(NEXT_SAVE2_FUNC), + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_EVENT_S09E01B_L002L[] = { /* 0x812a5a4 */ + DEBUGINFO, + EXECUTE_SUBSTATION(12, 8, 0), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_S09E01C_L001[] = { /* 0x812a5d4 */ + DEBUGINFO, + SCENARIO_CALC(SCENARIO_SUB9, 55, 3), + RET, +}; + +static const struct ScriptCommand s_script_EVENT_R00E01A_L001[] = { /* 0x812a604 */ + DEBUGINFO, + CLEAR_ARRAY(EVENT_LOCAL), + LABEL(0), /* = 0x00 */ + EXECUTE_SUBSTATION(4, 11, 0), + CJUMP_SCENARIO_0(SCENARIO_SELECT), + COND(JUDGE_EQ, 56, /* to label */ 0), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 1), + JUMPIF_EQUAL(EVENT_LOCAL, 0, /* to label */ 2), + LABEL(1), /* = 0x01 */ + EXECUTE_SUBSTATION(9, 6, 0), + LABEL(2), /* = 0x02 */ + CJUMP_VAR(DUNGEON_ENTER_INDEX), + COND_EQUAL(36, /* to label */ 3), + LABEL(4), /* = 0x04 */ + UPDATE_VARINT(CALC_SET, GROUND_ENTER, 12), + UPDATE_VARINT(CALC_SET, GROUND_GETOUT, 12), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + CALL_SCRIPT(DISMISSAL_SALLY_MEMBER_FUNC), + UPDATE_VARINT(CALC_SET, GROUND_PLACE, 11), + SCENARIO_CALC(SCENARIO_SELECT, 57, 0), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMPIF_EQUAL(EVENT_LOCAL, 0, /* to label */ 6), + LABEL(5), /* = 0x05 */ + CALL_SCRIPT(NEXT_SAVE2_FUNC), + LABEL(6), /* = 0x06 */ + JUMP_SCRIPT(EVENT_DIVIDE), + LABEL(3), /* = 0x03 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 7), + JUMP_LABEL(4), + LABEL(7), /* = 0x07 */ + JUMP_SCRIPT(EVENT_S08E01A_L008), +}; + +static const struct ScriptCommand s_script_COMMON_ENTER[] = { /* 0x812a804 */ + DEBUGINFO, + SELECT_EVENTS(0, 0), + { 0x22, 0x00, -0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_script_DEBUG_ENTER[] = { /* 0x812a844 */ + DEBUGINFO, + { 0x22, 0x00, -0x0001, 0x00000000, 0x00000000, NULL }, + RET, +}; + +static const struct ScriptCommand s_script_GETOUT_HABITAT[] = { /* 0x812a874 */ + DEBUGINFO, + { 0x03, 0x00, 0x001e, 0x00000001, 0x00000000, NULL }, + COND_EQUAL(-1, /* to label */ 0), + HALT, + LABEL(0), /* = 0x00 */ + RET, +}; + +static const struct ScriptCommand s_script_GETOUT_M01E01A[] = { /* 0x812a8d4 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(0, /* to label */ 0), + COND_EQUAL(81, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_MAIN, 2, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMPIF_SCENE_GT(SCENARIO_MAIN, 2, 1, /* to label */ 4), + SCENARIO_CALC(SCENARIO_MAIN, 2, 2), + LABEL(4), /* = 0x04 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMP_SCRIPT(EVENT_M01E01A_L002), + LABEL(5), /* = 0x05 */ + JUMP_SCRIPT(EVENT_M01E01A_L003), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_M01E02A[] = { /* 0x812aa14 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(1, /* to label */ 0), + COND_EQUAL(81, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_MAIN, 3, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 2), + JUMP_SCRIPT(EVENT_M01E02A_L004), + LABEL(4), /* = 0x04 */ + JUMP_SCRIPT(EVENT_M01E02A_L006), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_M01E02B[] = { /* 0x812ab34 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(2, /* to label */ 0), + COND_EQUAL(3, /* to label */ 1), + COND_EQUAL(81, /* to label */ 2), + JUMP_LABEL(3), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_MAIN, 4, /* to label */ 4), + JUMP_LABEL(3), + LABEL(4), /* = 0x04 */ + JUMPIF_SCENE_GT(SCENARIO_MAIN, 4, 6, /* to label */ 5), + SCENARIO_CALC(SCENARIO_MAIN, 4, 7), + LABEL(5), /* = 0x05 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_M01E02B_L006), + LABEL(6), /* = 0x06 */ + { 0x02, 0x00, -0x0001, 0x00000003, 0x00000000, NULL }, + HALT, + LABEL(1), /* = 0x01 */ + JUMPIF_EQUAL(SCENARIO_MAIN, 4, /* to label */ 7), + JUMP_LABEL(3), + LABEL(7), /* = 0x07 */ + JUMPIF_SCENE_GT(SCENARIO_MAIN, 4, 7, /* to label */ 8), + SCENARIO_CALC(SCENARIO_MAIN, 4, 8), + LABEL(8), /* = 0x08 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 9), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_M01E02B_L006), + LABEL(9), /* = 0x09 */ + JUMP_SCRIPT(EVENT_M01E02B_L008), + LABEL(2), /* = 0x02 */ + CJUMP_VAR(DUNGEON_ENTER_INDEX), + COND_EQUAL(2, /* to label */ 10), + COND_EQUAL(3, /* to label */ 11), + JUMP_LABEL(3), + LABEL(10), /* = 0x0a */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 12), + LABEL(11), /* = 0x0b */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(12), /* = 0x0c */ + { 0x02, 0x00, -0x0001, 0x00000003, 0x00000000, NULL }, + HALT, + LABEL(3), /* = 0x03 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_M01E03A[] = { /* 0x812ae04 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(4, /* to label */ 0), + COND_EQUAL(5, /* to label */ 1), + COND_EQUAL(81, /* to label */ 2), + JUMP_LABEL(3), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_MAIN, 5, /* to label */ 4), + JUMP_LABEL(3), + LABEL(4), /* = 0x04 */ + JUMPIF_SCENE_GT(SCENARIO_MAIN, 5, 9, /* to label */ 5), + SCENARIO_CALC(SCENARIO_MAIN, 5, 10), + LABEL(5), /* = 0x05 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_M01E03A_L009), + LABEL(6), /* = 0x06 */ + { 0x02, 0x00, -0x0001, 0x00000005, 0x00000000, NULL }, + HALT, + LABEL(1), /* = 0x01 */ + JUMPIF_EQUAL(SCENARIO_MAIN, 5, /* to label */ 7), + JUMP_LABEL(3), + LABEL(7), /* = 0x07 */ + JUMPIF_SCENE_GT(SCENARIO_MAIN, 5, 10, /* to label */ 8), + SCENARIO_CALC(SCENARIO_MAIN, 5, 11), + LABEL(8), /* = 0x08 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 9), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_M01E03A_L009), + LABEL(9), /* = 0x09 */ + JUMP_SCRIPT(EVENT_M01E03A_L011), + LABEL(2), /* = 0x02 */ + CJUMP_VAR(DUNGEON_ENTER_INDEX), + COND_EQUAL(4, /* to label */ 10), + COND_EQUAL(5, /* to label */ 11), + JUMP_LABEL(3), + LABEL(10), /* = 0x0a */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 12), + LABEL(11), /* = 0x0b */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(12), /* = 0x0c */ + { 0x02, 0x00, -0x0001, 0x00000005, 0x00000000, NULL }, + HALT, + LABEL(3), /* = 0x03 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_M01E04A[] = { /* 0x812b0d4 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(6, /* to label */ 0), + COND_EQUAL(81, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_MAIN, 6, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMPIF_SCENE_GT(SCENARIO_MAIN, 6, 2, /* to label */ 4), + SCENARIO_CALC(SCENARIO_MAIN, 6, 3), + LABEL(4), /* = 0x04 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 2), + JUMP_SCRIPT(EVENT_M01E04A_L004), + LABEL(5), /* = 0x05 */ + JUMP_SCRIPT(EVENT_M01E04A_L006), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_M01E04B[] = { /* 0x812b224 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(7, /* to label */ 0), + COND_EQUAL(8, /* to label */ 1), + COND_EQUAL(81, /* to label */ 2), + JUMP_LABEL(3), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_MAIN, 7, /* to label */ 4), + JUMP_LABEL(3), + LABEL(4), /* = 0x04 */ + JUMPIF_SCENE_GT(SCENARIO_MAIN, 7, 3, /* to label */ 5), + SCENARIO_CALC(SCENARIO_MAIN, 7, 4), + LABEL(5), /* = 0x05 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_M01E04B_L004), + LABEL(6), /* = 0x06 */ + { 0x01, 0x00, -0x0001, 0x000000bd, 0x00000000, NULL }, + HALT, + LABEL(1), /* = 0x01 */ + JUMPIF_EQUAL(SCENARIO_MAIN, 7, /* to label */ 7), + JUMP_LABEL(3), + LABEL(7), /* = 0x07 */ + JUMPIF_SCENE_GT(SCENARIO_MAIN, 7, 4, /* to label */ 8), + SCENARIO_CALC(SCENARIO_MAIN, 7, 5), + LABEL(8), /* = 0x08 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 9), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_M01E04B_L006), + LABEL(9), /* = 0x09 */ + JUMP_SCRIPT(EVENT_M01E04B_L007), + LABEL(2), /* = 0x02 */ + CJUMP_VAR(DUNGEON_ENTER_INDEX), + COND_EQUAL(7, /* to label */ 10), + COND_EQUAL(8, /* to label */ 11), + JUMP_LABEL(3), + LABEL(10), /* = 0x0a */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 12), + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(11), /* = 0x0b */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 13), + JUMP_SCRIPT(EVENT_DIVIDE), + LABEL(13), /* = 0x0d */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(12), /* = 0x0c */ + { 0x3b, 0x0b, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 11), + { 0x01, 0x00, -0x0001, 0x000000bd, 0x00000000, NULL }, + HALT, + LABEL(3), /* = 0x03 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_M01E05A[] = { /* 0x812b554 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(9, /* to label */ 0), + COND_EQUAL(81, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_MAIN, 8, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMPIF_SCENE_GT(SCENARIO_MAIN, 8, 3, /* to label */ 4), + SCENARIO_CALC(SCENARIO_MAIN, 8, 4), + LABEL(4), /* = 0x04 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 2), + JUMP_SCRIPT(EVENT_M01E05A_L004), + LABEL(5), /* = 0x05 */ + JUMP_SCRIPT(EVENT_M01E05A_L006), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_M01E07A[] = { /* 0x812b6a4 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(10, /* to label */ 0), + COND_EQUAL(81, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_MAIN, 11, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMPIF_SCENE_GT(SCENARIO_MAIN, 11, 4, /* to label */ 4), + SCENARIO_CALC(SCENARIO_MAIN, 11, 5), + LABEL(4), /* = 0x04 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 2), + JUMP_SCRIPT(EVENT_M01E07A_L004), + LABEL(5), /* = 0x05 */ + JUMP_SCRIPT(EVENT_M01E07A_L005), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_M01E07B[] = { /* 0x812b7f4 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(11, /* to label */ 0), + COND_EQUAL(12, /* to label */ 1), + COND_EQUAL(81, /* to label */ 2), + JUMP_LABEL(3), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_MAIN, 12, /* to label */ 4), + JUMP_LABEL(3), + LABEL(4), /* = 0x04 */ + JUMPIF_SCENE_GT(SCENARIO_MAIN, 12, 2, /* to label */ 5), + SCENARIO_CALC(SCENARIO_MAIN, 12, 3), + LABEL(5), /* = 0x05 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_M01E07B_L003), + LABEL(6), /* = 0x06 */ + { 0x01, 0x00, -0x0001, 0x000000c4, 0x00000000, NULL }, + HALT, + LABEL(1), /* = 0x01 */ + JUMPIF_EQUAL(SCENARIO_MAIN, 12, /* to label */ 7), + JUMP_LABEL(3), + LABEL(7), /* = 0x07 */ + JUMPIF_SCENE_GT(SCENARIO_MAIN, 12, 3, /* to label */ 8), + SCENARIO_CALC(SCENARIO_MAIN, 12, 4), + LABEL(8), /* = 0x08 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 9), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_M01E07B_L004), + LABEL(9), /* = 0x09 */ + JUMP_SCRIPT(EVENT_M01E07B_L005), + LABEL(2), /* = 0x02 */ + CJUMP_VAR(DUNGEON_ENTER_INDEX), + COND_EQUAL(11, /* to label */ 10), + COND_EQUAL(12, /* to label */ 11), + JUMP_LABEL(3), + LABEL(10), /* = 0x0a */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 12), + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(11), /* = 0x0b */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 13), + JUMP_SCRIPT(EVENT_DIVIDE), + LABEL(13), /* = 0x0d */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(12), /* = 0x0c */ + { 0x3b, 0x0b, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 11), + { 0x01, 0x00, -0x0001, 0x000000c4, 0x00000000, NULL }, + HALT, + LABEL(3), /* = 0x03 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_M01E08A[] = { /* 0x812bb24 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(13, /* to label */ 0), + COND_EQUAL(14, /* to label */ 1), + COND_EQUAL(81, /* to label */ 2), + JUMP_LABEL(3), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_MAIN, 13, /* to label */ 4), + JUMP_LABEL(3), + LABEL(4), /* = 0x04 */ + JUMPIF_SCENE_GT(SCENARIO_MAIN, 13, 2, /* to label */ 5), + SCENARIO_CALC(SCENARIO_MAIN, 13, 3), + LABEL(5), /* = 0x05 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_M01E08A_L003), + LABEL(6), /* = 0x06 */ + { 0x01, 0x00, -0x0001, 0x000000c7, 0x00000000, NULL }, + HALT, + LABEL(1), /* = 0x01 */ + JUMPIF_EQUAL(SCENARIO_MAIN, 13, /* to label */ 7), + JUMP_LABEL(3), + LABEL(7), /* = 0x07 */ + JUMPIF_SCENE_GT(SCENARIO_MAIN, 13, 3, /* to label */ 8), + SCENARIO_CALC(SCENARIO_MAIN, 13, 4), + LABEL(8), /* = 0x08 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 9), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_M01E08A_L004), + LABEL(9), /* = 0x09 */ + JUMP_SCRIPT(EVENT_M01E08A_L005), + LABEL(2), /* = 0x02 */ + CJUMP_VAR(DUNGEON_ENTER_INDEX), + COND_EQUAL(13, /* to label */ 10), + COND_EQUAL(14, /* to label */ 11), + JUMP_LABEL(3), + LABEL(10), /* = 0x0a */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 12), + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(11), /* = 0x0b */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 13), + JUMP_SCRIPT(EVENT_DIVIDE), + LABEL(13), /* = 0x0d */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(12), /* = 0x0c */ + { 0x3b, 0x0b, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 11), + { 0x01, 0x00, -0x0001, 0x000000c7, 0x00000000, NULL }, + HALT, + LABEL(3), /* = 0x03 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_M01E08B[] = { /* 0x812be54 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(15, /* to label */ 0), + COND_EQUAL(16, /* to label */ 1), + COND_EQUAL(81, /* to label */ 2), + JUMP_LABEL(3), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_MAIN, 14, /* to label */ 4), + JUMP_LABEL(3), + LABEL(4), /* = 0x04 */ + JUMPIF_SCENE_GT(SCENARIO_MAIN, 14, 2, /* to label */ 5), + SCENARIO_CALC(SCENARIO_MAIN, 14, 3), + LABEL(5), /* = 0x05 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_M01E08B_L003), + LABEL(6), /* = 0x06 */ + { 0x01, 0x00, -0x0001, 0x000000ca, 0x00000000, NULL }, + HALT, + LABEL(1), /* = 0x01 */ + JUMPIF_EQUAL(SCENARIO_MAIN, 14, /* to label */ 7), + JUMP_LABEL(3), + LABEL(7), /* = 0x07 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 8), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_M01E08B_L005), + LABEL(8), /* = 0x08 */ + JUMP_SCRIPT(EVENT_M01E08B_L006), + LABEL(2), /* = 0x02 */ + CJUMP_VAR(DUNGEON_ENTER_INDEX), + COND_EQUAL(15, /* to label */ 9), + COND_EQUAL(16, /* to label */ 10), + JUMP_LABEL(3), + LABEL(9), /* = 0x09 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 11), + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(10), /* = 0x0a */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 12), + JUMP_SCRIPT(EVENT_DIVIDE), + LABEL(12), /* = 0x0c */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(11), /* = 0x0b */ + { 0x3b, 0x0b, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 10), + { 0x01, 0x00, -0x0001, 0x000000ca, 0x00000000, NULL }, + HALT, + LABEL(3), /* = 0x03 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_M01E09A[] = { /* 0x812c154 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(17, /* to label */ 0), + COND_EQUAL(18, /* to label */ 1), + COND_EQUAL(81, /* to label */ 2), + JUMP_LABEL(3), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_MAIN, 15, /* to label */ 4), + JUMP_LABEL(3), + LABEL(4), /* = 0x04 */ + JUMPIF_SCENE_GT(SCENARIO_MAIN, 15, 11, /* to label */ 5), + SCENARIO_CALC(SCENARIO_MAIN, 15, 12), + LABEL(5), /* = 0x05 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_M01E09A_L012), + LABEL(6), /* = 0x06 */ + { 0x01, 0x00, -0x0001, 0x000000cd, 0x00000000, NULL }, + HALT, + LABEL(1), /* = 0x01 */ + JUMPIF_EQUAL(SCENARIO_MAIN, 15, /* to label */ 7), + JUMP_LABEL(3), + LABEL(7), /* = 0x07 */ + JUMPIF_SCENE_GT(SCENARIO_MAIN, 15, 8, /* to label */ 8), + SCENARIO_CALC(SCENARIO_MAIN, 15, 9), + LABEL(8), /* = 0x08 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 9), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_M01E09A_L014), + LABEL(9), /* = 0x09 */ + JUMP_SCRIPT(EVENT_M01E09A_L015), + LABEL(2), /* = 0x02 */ + CJUMP_VAR(DUNGEON_ENTER_INDEX), + COND_EQUAL(17, /* to label */ 10), + COND_EQUAL(18, /* to label */ 11), + JUMP_LABEL(3), + LABEL(10), /* = 0x0a */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 12), + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(11), /* = 0x0b */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 13), + JUMP_SCRIPT(EVENT_DIVIDE), + LABEL(13), /* = 0x0d */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(12), /* = 0x0c */ + { 0x3b, 0x0b, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 11), + { 0x01, 0x00, -0x0001, 0x000000cd, 0x00000000, NULL }, + HALT, + LABEL(3), /* = 0x03 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_M01E10A[] = { /* 0x812c484 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(19, /* to label */ 0), + COND_EQUAL(20, /* to label */ 1), + COND_EQUAL(81, /* to label */ 2), + JUMP_LABEL(3), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_MAIN, 16, /* to label */ 4), + JUMP_LABEL(3), + LABEL(4), /* = 0x04 */ + JUMPIF_SCENE_GT(SCENARIO_MAIN, 16, 4, /* to label */ 5), + SCENARIO_CALC(SCENARIO_MAIN, 16, 5), + LABEL(5), /* = 0x05 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_M01E10A_L005), + LABEL(6), /* = 0x06 */ + { 0x01, 0x00, -0x0001, 0x000000d0, 0x00000000, NULL }, + HALT, + LABEL(1), /* = 0x01 */ + JUMPIF_EQUAL(SCENARIO_MAIN, 16, /* to label */ 7), + JUMP_LABEL(3), + LABEL(7), /* = 0x07 */ + JUMPIF_SCENE_GT(SCENARIO_MAIN, 16, 5, /* to label */ 8), + SCENARIO_CALC(SCENARIO_MAIN, 16, 6), + LABEL(8), /* = 0x08 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 9), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_M01E10A_L007), + LABEL(9), /* = 0x09 */ + JUMP_SCRIPT(EVENT_M01E10A_L008), + LABEL(2), /* = 0x02 */ + CJUMP_VAR(DUNGEON_ENTER_INDEX), + COND_EQUAL(19, /* to label */ 10), + COND_EQUAL(20, /* to label */ 11), + JUMP_LABEL(3), + LABEL(10), /* = 0x0a */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 12), + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(11), /* = 0x0b */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 13), + JUMP_SCRIPT(EVENT_DIVIDE), + LABEL(13), /* = 0x0d */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(12), /* = 0x0c */ + { 0x3b, 0x0b, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(1, /* to label */ 11), + { 0x01, 0x00, -0x0001, 0x000000d0, 0x00000000, NULL }, + HALT, + LABEL(3), /* = 0x03 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_S00E01A[] = { /* 0x812c7b4 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(21, /* to label */ 0), + COND_EQUAL(81, /* to label */ 0), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 2), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 1), + JUMP_SCRIPT(EVENT_S00E01A_L001), + LABEL(2), /* = 0x02 */ + UPDATE_VARINT(CALC_SET, CLEAR_COUNT, 100), + JUMP_SCRIPT(EVENT_S00E01A_L002), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_S01E01A[] = { /* 0x812c894 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(22, /* to label */ 0), + COND_EQUAL(81, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_SUB1, 29, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMPIF_SCENE_GT(SCENARIO_SUB1, 29, 3, /* to label */ 4), + SCENARIO_CALC(SCENARIO_SUB1, 29, 4), + LABEL(4), /* = 0x04 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 2), + JUMP_SCRIPT(EVENT_S00E01A_L001), + LABEL(5), /* = 0x05 */ + JUMP_SCRIPT(EVENT_S01E01A_L003), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_S01E02A[] = { /* 0x812c9e4 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(23, /* to label */ 0), + COND_EQUAL(81, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_SUB1, 31, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMPIF_SCENE_GT(SCENARIO_SUB1, 31, 2, /* to label */ 4), + SCENARIO_CALC(SCENARIO_SUB1, 31, 3), + LABEL(4), /* = 0x04 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 2), + JUMP_SCRIPT(EVENT_S00E01A_L001), + LABEL(5), /* = 0x05 */ + JUMP_SCRIPT(EVENT_S01E02A_L002), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_S02E01A[] = { /* 0x812cb34 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(24, /* to label */ 0), + COND_EQUAL(81, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_SUB2, 33, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMPIF_SCENE_GT(SCENARIO_SUB2, 33, 4, /* to label */ 4), + SCENARIO_CALC(SCENARIO_SUB2, 33, 5), + LABEL(4), /* = 0x04 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 2), + JUMP_SCRIPT(EVENT_S00E01A_L001), + LABEL(5), /* = 0x05 */ + JUMP_SCRIPT(EVENT_S02E01A_L004), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_S02E02A[] = { /* 0x812cc84 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(25, /* to label */ 0), + COND_EQUAL(81, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_SUB2, 34, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMPIF_SCENE_GT(SCENARIO_SUB2, 34, 4, /* to label */ 4), + SCENARIO_CALC(SCENARIO_SUB2, 34, 5), + LABEL(4), /* = 0x04 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 2), + JUMP_SCRIPT(EVENT_S00E01A_L001), + LABEL(5), /* = 0x05 */ + JUMP_SCRIPT(EVENT_S02E02A_L003), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_S03E01A[] = { /* 0x812cdd4 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(26, /* to label */ 0), + COND_EQUAL(81, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_SUB3, 36, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMPIF_SCENE_GT(SCENARIO_SUB3, 36, 2, /* to label */ 4), + SCENARIO_CALC(SCENARIO_SUB3, 36, 3), + LABEL(4), /* = 0x04 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 2), + JUMP_SCRIPT(EVENT_S00E01A_L001), + LABEL(5), /* = 0x05 */ + JUMP_SCRIPT(EVENT_S03E01A_L002), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_S04E01A[] = { /* 0x812cf24 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(27, /* to label */ 0), + COND_EQUAL(81, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_SUB4, 38, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 2), + JUMP_SCRIPT(EVENT_S00E01A_L001), + LABEL(5), /* = 0x05 */ + JUMP_SCRIPT(EVENT_S04E01A_L002), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + + +static const struct ScriptCommand s_script_GETOUT_S04E01B[] = { /* 0x812d044 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(28, /* to label */ 0), + COND_EQUAL(81, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_SUB4, 39, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMPIF_SCENE_GT(SCENARIO_SUB4, 39, 2, /* to label */ 4), + SCENARIO_CALC(SCENARIO_SUB4, 39, 3), + LABEL(4), /* = 0x04 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 2), + JUMP_SCRIPT(EVENT_S00E01A_L001), + LABEL(5), /* = 0x05 */ + JUMP_SCRIPT(EVENT_S04E01B_L001), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_S04E01C[] = { /* 0x812d194 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(29, /* to label */ 0), + COND_EQUAL(81, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_SUB4, 40, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMPIF_SCENE_GT(SCENARIO_SUB4, 40, 2, /* to label */ 4), + SCENARIO_CALC(SCENARIO_SUB4, 40, 3), + LABEL(4), /* = 0x04 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 2), + JUMP_SCRIPT(EVENT_S00E01A_L001), + LABEL(5), /* = 0x05 */ + JUMP_SCRIPT(EVENT_S04E01C_L001), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_S04E01D[] = { /* 0x812d2e4 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(30, /* to label */ 0), + COND_EQUAL(81, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_SUB4, 41, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMPIF_SCENE_GT(SCENARIO_SUB4, 41, 2, /* to label */ 4), + SCENARIO_CALC(SCENARIO_SUB4, 41, 3), + LABEL(4), /* = 0x04 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 2), + JUMP_SCRIPT(EVENT_S00E01A_L001), + LABEL(5), /* = 0x05 */ + JUMP_SCRIPT(EVENT_S04E01D_L001), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_S04E01E[] = { /* 0x812d434 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(31, /* to label */ 0), + COND_EQUAL(81, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_SUB4, 42, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMPIF_SCENE_GT(SCENARIO_SUB4, 42, 2, /* to label */ 4), + SCENARIO_CALC(SCENARIO_SUB4, 42, 3), + LABEL(4), /* = 0x04 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 2), + JUMP_SCRIPT(EVENT_S00E01A_L001), + LABEL(5), /* = 0x05 */ + JUMP_SCRIPT(EVENT_S04E01E_L001), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_S05E01A[] = { /* 0x812d584 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(32, /* to label */ 0), + COND_EQUAL(81, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_SUB5, 44, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMPIF_SCENE_GT(SCENARIO_SUB5, 44, 2, /* to label */ 4), + SCENARIO_CALC(SCENARIO_SUB5, 44, 3), + LABEL(4), /* = 0x04 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 2), + JUMP_SCRIPT(EVENT_S00E01A_L001), + LABEL(5), /* = 0x05 */ + JUMP_SCRIPT(EVENT_S05E01A_L002), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_S06E01A[] = { /* 0x812d6d4 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(33, /* to label */ 0), + COND_EQUAL(81, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_SUB6, 46, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMPIF_SCENE_GT(SCENARIO_SUB6, 46, 2, /* to label */ 4), + SCENARIO_CALC(SCENARIO_SUB6, 46, 3), + LABEL(4), /* = 0x04 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 2), + JUMP_SCRIPT(EVENT_S00E01A_L001), + LABEL(5), /* = 0x05 */ + JUMP_SCRIPT(EVENT_S06E01A_L002), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_S06E01B[] = { /* 0x812d824 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(34, /* to label */ 0), + COND_EQUAL(81, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_SUB6, 47, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMPIF_SCENE_GT(SCENARIO_SUB6, 47, 2, /* to label */ 4), + SCENARIO_CALC(SCENARIO_SUB6, 47, 3), + LABEL(4), /* = 0x04 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 2), + JUMP_SCRIPT(EVENT_S00E01A_L001), + LABEL(5), /* = 0x05 */ + JUMP_SCRIPT(EVENT_S06E01B_L002), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_S07E01A[] = { /* 0x812d974 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(35, /* to label */ 0), + COND_EQUAL(81, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_SUB7, 49, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMPIF_SCENE_GT(SCENARIO_SUB7, 49, 3, /* to label */ 4), + SCENARIO_CALC(SCENARIO_SUB7, 49, 4), + LABEL(4), /* = 0x04 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 2), + JUMP_SCRIPT(EVENT_S00E01A_L001), + LABEL(5), /* = 0x05 */ + JUMP_SCRIPT(EVENT_S07E01A_L003), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_S08E01A[] = { /* 0x812dac4 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(36, /* to label */ 0), + COND_EQUAL(81, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_SUB8, 51, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMPIF_SCENE_GT(SCENARIO_SUB8, 51, 8, /* to label */ 4), + SCENARIO_CALC(SCENARIO_SUB8, 51, 9), + LABEL(4), /* = 0x04 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 2), + JUMP_SCRIPT(EVENT_S00E01A_L001), + LABEL(5), /* = 0x05 */ + JUMP_SCRIPT(EVENT_S08E01A_L006), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_S09E01A[] = { /* 0x812dc14 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(37, /* to label */ 0), + COND_EQUAL(38, /* to label */ 1), + COND_EQUAL(81, /* to label */ 2), + JUMP_LABEL(3), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_SUB9, 53, /* to label */ 4), + JUMP_LABEL(3), + LABEL(4), /* = 0x04 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_DIVIDE), + LABEL(6), /* = 0x06 */ + { 0x01, 0x00, -0x0001, 0x000000ca, 0x00000000, NULL }, + HALT, + LABEL(1), /* = 0x01 */ + JUMPIF_EQUAL(SCENARIO_SUB9, 53, /* to label */ 7), + JUMP_LABEL(3), + LABEL(7), /* = 0x07 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 8), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_DIVIDE), + LABEL(8), /* = 0x08 */ + JUMP_SCRIPT(EVENT_S09E01A_L005), + LABEL(2), /* = 0x02 */ + CJUMP_VAR(DUNGEON_ENTER_INDEX), + COND_EQUAL(37, /* to label */ 9), + COND_EQUAL(38, /* to label */ 10), + JUMP_LABEL(3), + LABEL(9), /* = 0x09 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 11), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(10), /* = 0x0a */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(11), /* = 0x0b */ + { 0x01, 0x00, -0x0001, 0x000000ca, 0x00000000, NULL }, + HALT, + LABEL(3), /* = 0x03 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + + +static const struct ScriptCommand s_script_GETOUT_S09E01B[] = { /* 0x812dea4 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(39, /* to label */ 0), + COND_EQUAL(81, /* to label */ 1), + JUMP_LABEL(2), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(SCENARIO_SUB9, 54, /* to label */ 3), + JUMP_LABEL(2), + LABEL(3), /* = 0x03 */ + JUMPIF_SCENE_GT(SCENARIO_SUB9, 54, 3, /* to label */ 4), + SCENARIO_CALC(SCENARIO_SUB9, 54, 4), + LABEL(4), /* = 0x04 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 2), + JUMP_SCRIPT(EVENT_S00E01A_L001), + LABEL(5), /* = 0x05 */ + JUMP_SCRIPT(EVENT_S09E01B_L002), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(2), /* = 0x02 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_D62E01A[] = { /* 0x812dff4 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(50, /* to label */ 0), + COND_EQUAL(81, /* to label */ 0), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 2), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_S00E01A_L001), + LABEL(2), /* = 0x02 */ + { 0xb0, 0x01, 0x0029, 0x00000000, 0x00000000, NULL }, + LABEL(3), /* = 0x03 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_D43E01A[] = { /* 0x812e0e4 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(51, /* to label */ 0), + COND_EQUAL(81, /* to label */ 0), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 2), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_S00E01A_L001), + LABEL(2), /* = 0x02 */ + { 0xb0, 0x01, 0x002a, 0x00000000, 0x00000000, NULL }, + LABEL(3), /* = 0x03 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_D44E01A[] = { /* 0x812e1d4 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(52, /* to label */ 0), + COND_EQUAL(81, /* to label */ 0), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 2), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_S00E01A_L001), + LABEL(2), /* = 0x02 */ + { 0xb0, 0x01, 0x002b, 0x00000000, 0x00000000, NULL }, + LABEL(3), /* = 0x03 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_D45E01A[] = { /* 0x812e2c4 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(53, /* to label */ 0), + COND_EQUAL(81, /* to label */ 0), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 2), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_S00E01A_L001), + LABEL(2), /* = 0x02 */ + { 0xb0, 0x01, 0x002c, 0x00000000, 0x00000000, NULL }, + LABEL(3), /* = 0x03 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_D46E01A[] = { /* 0x812e3b4 */ + DEBUGINFO, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(54, /* to label */ 0), + COND_EQUAL(81, /* to label */ 0), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 2), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_S00E01A_L001), + LABEL(2), /* = 0x02 */ + { 0xb0, 0x01, 0x002d, 0x00000000, 0x00000000, NULL }, + LABEL(3), /* = 0x03 */ + JUMP_SCRIPT(GETOUT_R00E01A), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_U00E01A[] = { /* 0x812e4a4 */ + DEBUGINFO, + { 0xf2, 0x00, 0x0014, 0x00000000, 0x00000000, _("GETOUT U00E01A\n") }, + JUMPIF_SCENE_EQ(SCENARIO_MAIN, 18, 4, /* to label */ 0), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_MAIN, 19, 1), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + LABEL(1), /* = 0x01 */ + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(80, /* to label */ 2), + JUMP_SCRIPT(EVENT_DIVIDE), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 3), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + LABEL(3), /* = 0x03 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_R00E01A[] = { /* 0x812e5c4 */ + DEBUGINFO, + { 0xf2, 0x00, 0x0014, 0x00000000, 0x00000000, _("GETOUT R00E01A\n") }, + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(81, /* to label */ 0), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 2), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 2), + JUMP_SCRIPT(EVENT_S00E01A_L001), + LABEL(2), /* = 0x02 */ + SCENARIO_CALC(SCENARIO_SELECT, 56, 0), + JUMP_SCRIPT(EVENT_DIVIDE), + LABEL(1), /* = 0x01 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + +static const struct ScriptCommand s_script_GETOUT_T00E01A[] = { /* 0x812e6b4 */ + DEBUGINFO, + { 0xf2, 0x00, 0x0013, 0x00000000, 0x00000000, _("GETOUT T00E01A\n") }, + JUMPIF_SCENE_EQ(SCENARIO_MAIN, 18, 4, /* to label */ 0), + JUMP_LABEL(1), + LABEL(0), /* = 0x00 */ + SCENARIO_CALC(SCENARIO_MAIN, 19, 1), + UPDATE_VARINT(CALC_SET, PARTNER1_KIND, 0), + UPDATE_VARINT(CALC_SET, PARTNER2_KIND, 0), + LABEL(1), /* = 0x01 */ + CJUMP_VAR(DUNGEON_ENTER), + COND_EQUAL(82, /* to label */ 2), + JUMP_LABEL(3), + LABEL(2), /* = 0x02 */ + { 0xf2, 0x00, 0x0014, 0x00000000, 0x00000000, _("GETOUT T00E01A 7&8\n") }, + CJUMP_VAR(DUNGEON_ENTER_INDEX), + COND_EQUAL(78, /* to label */ 4), + COND_EQUAL(79, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 6), + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 7), + JUMP_LABEL(8), + LABEL(7), /* = 0x07 */ + CJUMP_VAR(DUNGEON_ENTER_INDEX), + COND_EQUAL(55, /* to label */ 9), + COND_EQUAL(56, /* to label */ 10), + COND_EQUAL(57, /* to label */ 11), + COND_EQUAL(58, /* to label */ 12), + COND_EQUAL(59, /* to label */ 13), + COND_EQUAL(60, /* to label */ 14), + COND_EQUAL(61, /* to label */ 15), + COND_EQUAL(62, /* to label */ 16), + COND_EQUAL(63, /* to label */ 17), + COND_EQUAL(64, /* to label */ 18), + COND_EQUAL(65, /* to label */ 19), + COND_EQUAL(66, /* to label */ 20), + COND_EQUAL(67, /* to label */ 21), + COND_EQUAL(68, /* to label */ 22), + COND_EQUAL(69, /* to label */ 23), + COND_EQUAL(70, /* to label */ 24), + COND_EQUAL(71, /* to label */ 25), + COND_EQUAL(72, /* to label */ 26), + COND_EQUAL(73, /* to label */ 27), + COND_EQUAL(74, /* to label */ 28), + COND_EQUAL(75, /* to label */ 29), + COND_EQUAL(76, /* to label */ 30), + COND_EQUAL(77, /* to label */ 31), + JUMP_LABEL(3), + LABEL(9), /* = 0x09 */ + { 0xb1, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(32), + LABEL(10), /* = 0x0a */ + { 0xb1, 0x01, 0x0001, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(32), + LABEL(11), /* = 0x0b */ + { 0xb1, 0x01, 0x0002, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(32), + LABEL(12), /* = 0x0c */ + { 0xb1, 0x01, 0x0003, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(32), + LABEL(13), /* = 0x0d */ + { 0xb1, 0x01, 0x0004, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(32), + LABEL(14), /* = 0x0e */ + { 0xb1, 0x01, 0x0005, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(32), + LABEL(15), /* = 0x0f */ + { 0xb1, 0x01, 0x0006, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(32), + LABEL(16), /* = 0x10 */ + { 0xb1, 0x01, 0x0007, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(32), + LABEL(17), /* = 0x11 */ + { 0xb1, 0x01, 0x0008, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(32), + LABEL(18), /* = 0x12 */ + { 0xb1, 0x01, 0x0009, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(32), + LABEL(19), /* = 0x13 */ + { 0xb1, 0x01, 0x000a, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(32), + LABEL(20), /* = 0x14 */ + { 0xb1, 0x01, 0x000b, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(32), + LABEL(21), /* = 0x15 */ + { 0xb1, 0x01, 0x000c, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(32), + LABEL(22), /* = 0x16 */ + { 0xb1, 0x01, 0x000d, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(32), + LABEL(23), /* = 0x17 */ + { 0xb1, 0x01, 0x000e, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(32), + LABEL(24), /* = 0x18 */ + { 0xb1, 0x01, 0x000f, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(32), + LABEL(25), /* = 0x19 */ + { 0xb1, 0x01, 0x0010, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(32), + LABEL(26), /* = 0x1a */ + { 0xb1, 0x01, 0x0011, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(32), + LABEL(27), /* = 0x1b */ + { 0xb1, 0x01, 0x0012, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(32), + LABEL(28), /* = 0x1c */ + { 0xb1, 0x01, 0x0013, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(32), + LABEL(29), /* = 0x1d */ + { 0xb1, 0x01, 0x0014, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(32), + LABEL(30), /* = 0x1e */ + { 0xb1, 0x01, 0x0015, 0x00000000, 0x00000000, NULL }, + JUMP_LABEL(32), + LABEL(31), /* = 0x1f */ + JUMP_LABEL(32), + LABEL(3), /* = 0x03 */ + JUMP_SCRIPT(EVENT_DIVIDE), + LABEL(8), /* = 0x08 */ + JUMP_SCRIPT(EVENT_DIVIDE), + LABEL(6), /* = 0x06 */ + JUMP_SCRIPT(EVENT_DIVIDE), + LABEL(32), /* = 0x20 */ + JUMP_SCRIPT(EVENT_DIVIDE), + LABEL(4), /* = 0x04 */ + JUMP_SCRIPT(GETOUT_M01E07T), + LABEL(5), /* = 0x05 */ + JUMP_SCRIPT(GETOUT_M01E08T), +}; + +static const struct ScriptCommand s_script_GETOUT_M01E07T[] = { /* 0x812eeb8 */ + DEBUGINFO, + { 0xf2, 0x00, 0x0013, 0x00000000, 0x00000000, _("GETOUT M01E07T\n") }, + JUMPIF_EQUAL(SCENARIO_MAIN, 11, /* to label */ 1), + JUMPIF_EQUAL(SCENARIO_MAIN, 12, /* to label */ 2), + JUMP_LABEL(3), + LABEL(1), /* = 0x01 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_M01E07A_T001), + LABEL(4), /* = 0x04 */ + JUMP_SCRIPT(EVENT_M01E07A_T002), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_M01E07B_T001), + LABEL(5), /* = 0x05 */ + JUMP_SCRIPT(EVENT_M01E07B_T002), + LABEL(3), /* = 0x03 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + + +static const struct ScriptCommand s_script_GETOUT_M01E08T[] = { /* 0x812eff8 */ + DEBUGINFO, + { 0xf2, 0x00, 0x0013, 0x00000000, 0x00000000, _("GETOUT M01E08T\n") }, + JUMPIF_EQUAL(SCENARIO_MAIN, 13, /* to label */ 1), + JUMPIF_EQUAL(SCENARIO_MAIN, 14, /* to label */ 2), + JUMP_LABEL(3), + LABEL(1), /* = 0x01 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 4), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_M01E08A_T001), + LABEL(4), /* = 0x04 */ + JUMP_SCRIPT(EVENT_M01E08A_T002), + LABEL(2), /* = 0x02 */ + JUMPIF_EQUAL(START_MODE, 9, /* to label */ 5), + JUMPIF_EQUAL(START_MODE, 10, /* to label */ 3), + JUMP_SCRIPT(EVENT_M01E08B_T001), + LABEL(5), /* = 0x05 */ + JUMP_SCRIPT(EVENT_M01E08B_T002), + LABEL(3), /* = 0x03 */ + JUMP_SCRIPT(EVENT_DIVIDE), +}; + + +static const struct ScriptCommand s_script_SETUP_DEBUG_CAMERA[] = { /* 0x812f138 */ + DEBUGINFO, + { 0x3b, 0x3e, 0x0000, 0x00000000, 0x00000000, NULL }, + COND_EQUAL(0, /* to label */ 0), + { 0xe3, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + LABEL(0), /* = 0x00 */ + RET, +}; + +static const struct ScriptCommand s_script_MOVE_DEBUG_CAMERA[] = { /* 0x812f198 */ + DEBUGINFO, + { 0x98, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0x3b, 0x3f, 0x0000, 0x00000000, 0x00000000, NULL }, + { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, + { 0x9a, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, + END_DELETE, +}; + +/*extern*/ const struct ScriptRef gFunctionScriptTable[] = { /* 0x812f1f8 */ + { 0, 4, _("END_TALK"), s_script_END_TALK }, + { 1, 4, _("WAIT_END_TALK_FUNC"), s_script_WAIT_END_TALK_FUNC }, + { 2, 4, _("WAIT_END_EVENT_FUNC"), s_script_WAIT_END_EVENT_FUNC }, + { 3, 4, _("WAIT_START_FUNC"), s_script_WAIT_START_FUNC }, + { 4, 4, _("INCOMPLETE_TALK"), s_script_INCOMPLETE_TALK }, + { 5, 4, _("NORMAL_WAIT_END_TALK"), s_script_NORMAL_WAIT_END_TALK }, + { 6, 4, _("LIVES_REPLY_NORMAL"), s_script_LIVES_REPLY_NORMAL }, + { 7, 4, _("LIVES_REPLY"), s_script_LIVES_REPLY }, + { 8, 4, _("OBJECT_REPLY_NORMAL"), s_script_OBJECT_REPLY_NORMAL }, + { 9, 4, _("EXAMINE_MISS"), s_script_EXAMINE_MISS }, + { 10, 4, _("ENTER_WAIT_FUNC"), s_script_ENTER_WAIT_FUNC }, + { 11, 4, _("UNIT_TALK"), s_script_UNIT_TALK }, + { 12, 4, _("HABITAT_TALK"), s_script_HABITAT_TALK }, + { 13, 4, _("HABITAT_TALK_S01E02A"), s_script_HABITAT_TALK_S01E02A }, + { 14, 5, _("HABITAT_MOVE1"), s_script_HABITAT_MOVE1 }, + { 15, 5, _("HABITAT_MOVE2"), s_script_HABITAT_MOVE2 }, + { 16, 5, _("HABITAT_MOVE_PAUSE"), s_script_HABITAT_MOVE_PAUSE }, + { 17, 5, _("HABITAT_MOVE_STAY_FIX"), s_script_HABITAT_MOVE_STAY_FIX }, + { 18, 5, _("HABITAT_MOVE_STAY_TURN"), s_script_HABITAT_MOVE_STAY_TURN }, + { 19, 5, _("LIVES_MOVE_NORMAL"), s_script_LIVES_MOVE_NORMAL }, + { 20, 5, _("LIVES_MOVE_CHANGE"), s_script_LIVES_MOVE_CHANGE }, + { 21, 5, _("OBJECT_MOVE_NORMAL"), s_script_OBJECT_MOVE_NORMAL }, + { 22, 5, _("OBJECT_MOVE_CHANGE"), s_script_OBJECT_MOVE_CHANGE }, + { 23, 5, _("EFFECT_MOVE_NORMAL"), s_script_EFFECT_MOVE_NORMAL }, + { 24, 5, _("EFFECT_MOVE_CHANGE"), s_script_EFFECT_MOVE_CHANGE }, + { 25, 5, _("MOVE_INIT"), s_script_MOVE_INIT }, + { 26, 5, _("MOVE_PAUSE"), s_script_MOVE_PAUSE }, + { 27, 5, _("MOVE_STAY"), s_script_MOVE_STAY }, + { 28, 5, _("MOVE_SLEEP"), s_script_MOVE_SLEEP }, + { 29, 5, _("MOVE_RANDOM"), s_script_MOVE_RANDOM }, + { 30, 5, _("MOVE_BOY"), s_script_MOVE_BOY }, + { 31, 5, _("MOVE_GIRL"), s_script_MOVE_GIRL }, + { 32, 9, _("WAKEUP_FUNC"), s_script_WAKEUP_FUNC }, + { 33, 9, _("LOOK_AROUND_FUNC"), s_script_LOOK_AROUND_FUNC }, + { 34, 9, _("LOOK_AROUND_DOWN_FUNC"), s_script_LOOK_AROUND_DOWN_FUNC }, + { 35, 9, _("LOOK_AROUND_RIGHT_FUNC"), s_script_LOOK_AROUND_RIGHT_FUNC }, + { 36, 9, _("LOOK_AROUND_LEFT_FUNC"), s_script_LOOK_AROUND_LEFT_FUNC }, + { 37, 9, _("JUMP_HAPPY_FUNC"), s_script_JUMP_HAPPY_FUNC }, + { 38, 9, _("JUMP_SURPRISE_FUNC"), s_script_JUMP_SURPRISE_FUNC }, + { 39, 9, _("JUMP_ANGRY_FUNC"), s_script_JUMP_ANGRY_FUNC }, + { 40, 9, _("NOTICE_FUNC"), s_script_NOTICE_FUNC }, + { 41, 9, _("QUESTION_FUNC"), s_script_QUESTION_FUNC }, + { 42, 9, _("SWEAT_FUNC"), s_script_SWEAT_FUNC }, + { 43, 9, _("SHOCK_FUNC"), s_script_SHOCK_FUNC }, + { 44, 9, _("SPREE_START_FUNC"), s_script_SPREE_START_FUNC }, + { 45, 9, _("SPREE_END_FUNC"), s_script_SPREE_END_FUNC }, + { 46, 9, _("SMILE_START_FUNC"), s_script_SMILE_START_FUNC }, + { 47, 9, _("SMILE_END_FUNC"), s_script_SMILE_END_FUNC }, + { 48, 9, _("ANGRY_START_FUNC"), s_script_ANGRY_START_FUNC }, + { 49, 9, _("ANGRY_END_FUNC"), s_script_ANGRY_END_FUNC }, + { 50, 5, _("MOVE_PLAZA_SLEEP"), s_script_MOVE_PLAZA_SLEEP }, + { 51, 9, _("INIT_PLAZA_SLEEP_STAY_FUNC"), s_script_INIT_PLAZA_SLEEP_STAY_FUNC }, + { 52, 9, _("INIT_PLAZA_SLEEP_TALK_FUNC"), s_script_INIT_PLAZA_SLEEP_TALK_FUNC }, + { 53, 8, _("INIT_SLEEP_FUNC"), s_script_INIT_SLEEP_FUNC }, + { 54, 8, _("INIT_BASE_FUNC"), s_script_INIT_BASE_FUNC }, + { 55, 8, _("INIT_DEBUG_HABITAT"), s_script_INIT_DEBUG_HABITAT }, + { 56, 7, _("NORMAL_MESSAGE"), NULL }, + { 57, 7, _("NORMAL_EVENT"), NULL }, + { 58, 7, _("NORMAL_CAMERA"), s_script_NORMAL_CAMERA }, + { 59, 7, _("DISMISSAL_SALLY_MEMBER_FUNC"), s_script_DISMISSAL_SALLY_MEMBER_FUNC }, + { 60, 7, _("DISMISSAL_SALLY_MEMBER2_FUNC"), s_script_DISMISSAL_SALLY_MEMBER2_FUNC }, + { 61, 7, _("DISMISSAL_SALLY_MEMBER3_FUNC"), s_script_DISMISSAL_SALLY_MEMBER3_FUNC }, + { 62, 7, _("DISMISSAL_SALLY_MEMBER4_FUNC"), s_script_DISMISSAL_SALLY_MEMBER4_FUNC }, + { 63, 7, _("NEXT_SAVE_FUNC"), s_script_NEXT_SAVE_FUNC }, + { 64, 7, _("NEXT_SAVE2_FUNC"), s_script_NEXT_SAVE2_FUNC }, + { 65, 7, _("SAVE_POINT"), s_script_SAVE_POINT }, + { 66, 7, _("WAREHOUSE_POINT"), s_script_WAREHOUSE_POINT }, + { 67, 7, _("SAVE_AND_WAREHOUSE_POINT"), s_script_SAVE_AND_WAREHOUSE_POINT }, + { 68, 7, _("WORLD_MAP_POINT"), s_script_WORLD_MAP_POINT }, + { 69, 7, _("FORMATION_HERO"), s_script_FORMATION_HERO }, + { 70, 7, _("EVOLUTION_HERO"), s_script_EVOLUTION_HERO }, + { 71, 7, _("WARP_LIVES_START"), s_script_WARP_LIVES_START }, + { 72, 7, _("WARP_LIVES_START2"), s_script_WARP_LIVES_START2 }, + { 73, 7, _("WARP_LIVES_START3"), s_script_WARP_LIVES_START3 }, + { 74, 7, _("WARP_LIVES_ARRIVE"), s_script_WARP_LIVES_ARRIVE }, + { 75, 7, _("WARP_LIVES_ARRIVE2"), s_script_WARP_LIVES_ARRIVE2 }, + { 76, 7, _("WARP_LIVES_ARRIVE3"), s_script_WARP_LIVES_ARRIVE3 }, + { 77, 7, _("LIVES_WARP_START_FUNC"), s_script_LIVES_WARP_START_FUNC }, + { 78, 7, _("LIVES_WARP_START2_FUNC"), s_script_LIVES_WARP_START2_FUNC }, + { 79, 7, _("LIVES_WARP_START3_FUNC"), s_script_LIVES_WARP_START3_FUNC }, + { 80, 7, _("LIVES_WARP_START_SUB"), s_script_LIVES_WARP_START_SUB }, + { 81, 7, _("LIVES_WARP_ARRIVE_FUNC"), s_script_LIVES_WARP_ARRIVE_FUNC }, + { 82, 7, _("LIVES_WARP_ARRIVE2_FUNC"), s_script_LIVES_WARP_ARRIVE2_FUNC }, + { 83, 7, _("LIVES_WARP_ARRIVE3_FUNC"), s_script_LIVES_WARP_ARRIVE3_FUNC }, + { 84, 7, _("LIVES_WARP_ARRIVE_SUB"), s_script_LIVES_WARP_ARRIVE_SUB }, + { 85, 7, _("GET_ITEM_FUNC"), s_script_GET_ITEM_FUNC }, + { 86, 7, _("GET_ITEM_WAIT_FUNC"), s_script_GET_ITEM_WAIT_FUNC }, + { 87, 7, _("GET_ITEM2_FUNC"), s_script_GET_ITEM2_FUNC }, + { 88, 7, _("GET_ITEM2_WAIT_FUNC"), s_script_GET_ITEM2_WAIT_FUNC }, + { 89, 7, _("JOIN_FUNC"), s_script_JOIN_FUNC }, + { 90, 7, _("LODGE_START_FUNC"), s_script_LODGE_START_FUNC }, + { 91, 7, _("LODGE_WAIT_FUNC"), s_script_LODGE_WAIT_FUNC }, + { 92, 7, _("LODGE_END_FUNC"), s_script_LODGE_END_FUNC }, + { 93, 7, _("LODGE_SOUND_FUNC"), s_script_LODGE_SOUND_FUNC }, + { 94, 7, _("SAVE_START_FUNC"), s_script_SAVE_START_FUNC }, + { 95, 7, _("SAVE_WAIT_FUNC"), s_script_SAVE_WAIT_FUNC }, + { 96, 7, _("SAVE_END_FUNC"), s_script_SAVE_END_FUNC }, + { 97, 7, _("SAVE_SOUND_FUNC"), s_script_SAVE_SOUND_FUNC }, + { 98, 9, _("EFFECT_TEST1"), s_script_EFFECT_TEST1 }, + { 99, 9, _("EFFECT_TEST2"), s_script_EFFECT_TEST2 }, + { 100, 9, _("EFFECT_MOVE_DIVE"), s_script_EFFECT_MOVE_DIVE }, + { 101, 9, _("EFFECT_MOVE_WAVE"), s_script_EFFECT_MOVE_WAVE }, + { 102, 7, _("EVENT_DIVIDE"), s_script_EVENT_DIVIDE }, + { 103, 7, _("EVENT_DIVIDE_NEXT"), s_script_EVENT_DIVIDE_NEXT }, + { 104, 7, _("EVENT_DIVIDE_INIT_FUNC"), s_script_EVENT_DIVIDE_INIT_FUNC }, + { 105, 7, _("EVENT_DIVIDE_NEXT_DAY_FUNC"), s_script_EVENT_DIVIDE_NEXT_DAY_FUNC }, + { 106, 7, _("EVENT_DIVIDE_NEXT_DAY2_FUNC"), s_script_EVENT_DIVIDE_NEXT_DAY2_FUNC }, + { 107, 7, _("EVENT_DIVIDE_FIRST"), s_script_EVENT_DIVIDE_FIRST }, + { 108, 7, _("EVENT_DIVIDE_SECOND"), s_script_EVENT_DIVIDE_SECOND }, + { 109, 7, _("EVENT_DIVIDE_AFTER"), s_script_EVENT_DIVIDE_AFTER }, + { 110, 7, _("EVENT_DIVIDE_WARP_LOCK_FUNC"), s_script_EVENT_DIVIDE_WARP_LOCK_FUNC }, + { 111, 7, _("EVENT_RESCUE_ENTER_CHECK"), s_script_EVENT_RESCUE_ENTER_CHECK }, + { 112, 7, _("EVENT_RESCUE"), s_script_EVENT_RESCUE }, + { 113, 7, _("DEBUG_SCRIPT"), s_script_DEBUG_SCRIPT }, + { 114, 7, _("DEMO_CANCEL"), s_script_DEMO_CANCEL }, + { 115, 10, _("DEMO_01"), s_script_DEMO_01 }, + { 116, 10, _("DEMO_02"), s_script_DEMO_02 }, + { 117, 10, _("DEMO_03"), s_script_DEMO_03 }, + { 118, 10, _("DEMO_04"), s_script_DEMO_04 }, + { 119, 10, _("EVENT_M00E01A_L001"), s_script_EVENT_M00E01A_L001 }, + { 120, 10, _("EVENT_M01E01A_L001"), s_script_EVENT_M01E01A_L001 }, + { 121, 10, _("EVENT_M01E01A_L002"), s_script_EVENT_M01E01A_L002 }, + { 122, 10, _("EVENT_M01E01A_L003"), s_script_EVENT_M01E01A_L003 }, + { 123, 10, _("EVENT_M01E02A_L001"), s_script_EVENT_M01E02A_L001 }, + { 124, 12, _("EVENT_M01E02A_L001B"), s_script_EVENT_M01E02A_L001B }, + { 125, 10, _("EVENT_M01E02A_L001C"), s_script_EVENT_M01E02A_L001C }, + { 126, 10, _("EVENT_M01E02A_L002"), s_script_EVENT_M01E02A_L002 }, + { 127, 10, _("EVENT_M01E02A_L003"), s_script_EVENT_M01E02A_L003 }, + { 128, 10, _("EVENT_M01E02A_L004"), s_script_EVENT_M01E02A_L004 }, + { 129, 10, _("EVENT_M01E02A_L005"), s_script_EVENT_M01E02A_L005 }, + { 130, 10, _("EVENT_M01E02A_L006"), s_script_EVENT_M01E02A_L006 }, + { 131, 10, _("EVENT_M01E02B_L001"), s_script_EVENT_M01E02B_L001 }, + { 132, 10, _("EVENT_M01E02B_L002"), s_script_EVENT_M01E02B_L002 }, + { 133, 10, _("EVENT_M01E02B_L003"), s_script_EVENT_M01E02B_L003 }, + { 134, 10, _("EVENT_M01E02B_L004"), s_script_EVENT_M01E02B_L004 }, + { 135, 10, _("EVENT_M01E02B_L004B"), s_script_EVENT_M01E02B_L004B }, + { 136, 10, _("EVENT_M01E02B_L005"), s_script_EVENT_M01E02B_L005 }, + { 137, 10, _("EVENT_M01E02B_L006"), s_script_EVENT_M01E02B_L006 }, + { 138, 10, _("EVENT_M01E02B_L007"), s_script_EVENT_M01E02B_L007 }, + { 139, 10, _("EVENT_M01E02B_L008"), s_script_EVENT_M01E02B_L008 }, + { 140, 10, _("EVENT_M01E03A_L000"), s_script_EVENT_M01E03A_L000 }, + { 141, 10, _("EVENT_M01E03A_L001"), s_script_EVENT_M01E03A_L001 }, + { 142, 10, _("EVENT_M01E03A_L002"), s_script_EVENT_M01E03A_L002 }, + { 143, 10, _("EVENT_M01E03A_L003"), s_script_EVENT_M01E03A_L003 }, + { 144, 10, _("EVENT_M01E03A_L004"), s_script_EVENT_M01E03A_L004 }, + { 145, 10, _("EVENT_M01E03A_L005"), s_script_EVENT_M01E03A_L005 }, + { 146, 10, _("EVENT_M01E03A_L006"), s_script_EVENT_M01E03A_L006 }, + { 147, 10, _("EVENT_M01E03A_L007"), s_script_EVENT_M01E03A_L007 }, + { 148, 10, _("EVENT_M01E03A_L008"), s_script_EVENT_M01E03A_L008 }, + { 149, 10, _("EVENT_M01E03A_L009"), s_script_EVENT_M01E03A_L009 }, + { 150, 10, _("EVENT_M01E03A_L010"), s_script_EVENT_M01E03A_L010 }, + { 151, 10, _("EVENT_M01E03A_L011"), s_script_EVENT_M01E03A_L011 }, + { 152, 10, _("EVENT_M01E04A_L000"), s_script_EVENT_M01E04A_L000 }, + { 153, 10, _("EVENT_M01E04A_L001"), s_script_EVENT_M01E04A_L001 }, + { 154, 10, _("EVENT_M01E04A_L002"), s_script_EVENT_M01E04A_L002 }, + { 155, 10, _("EVENT_M01E04A_L003"), s_script_EVENT_M01E04A_L003 }, + { 156, 10, _("EVENT_M01E04A_L004"), s_script_EVENT_M01E04A_L004 }, + { 157, 12, _("EVENT_M01E04A_L005"), s_script_EVENT_M01E04A_L005 }, + { 158, 10, _("EVENT_M01E04A_L006"), s_script_EVENT_M01E04A_L006 }, + { 159, 10, _("EVENT_M01E04B_L000"), s_script_EVENT_M01E04B_L000 }, + { 160, 10, _("EVENT_M01E04B_L001"), s_script_EVENT_M01E04B_L001 }, + { 161, 10, _("EVENT_M01E04B_L002"), s_script_EVENT_M01E04B_L002 }, + { 162, 10, _("EVENT_M01E04B_L003"), s_script_EVENT_M01E04B_L003 }, + { 163, 10, _("EVENT_M01E04B_L004"), s_script_EVENT_M01E04B_L004 }, + { 164, 10, _("EVENT_M01E04B_L005"), s_script_EVENT_M01E04B_L005 }, + { 165, 10, _("EVENT_M01E04B_L006"), s_script_EVENT_M01E04B_L006 }, + { 166, 10, _("EVENT_M01E04B_L007"), s_script_EVENT_M01E04B_L007 }, + { 167, 10, _("EVENT_M01E05A_L000"), s_script_EVENT_M01E05A_L000 }, + { 168, 10, _("EVENT_M01E05A_L001"), s_script_EVENT_M01E05A_L001 }, + { 169, 10, _("EVENT_M01E05A_L002"), s_script_EVENT_M01E05A_L002 }, + { 170, 10, _("EVENT_M01E05A_L003"), s_script_EVENT_M01E05A_L003 }, + { 171, 10, _("EVENT_M01E05A_L004"), s_script_EVENT_M01E05A_L004 }, + { 172, 10, _("EVENT_M01E05A_L005"), s_script_EVENT_M01E05A_L005 }, + { 173, 10, _("EVENT_M01E05A_L006"), s_script_EVENT_M01E05A_L006 }, + { 174, 10, _("EVENT_M01E05B_L000"), s_script_EVENT_M01E05B_L000 }, + { 175, 10, _("EVENT_M01E05B_L001"), s_script_EVENT_M01E05B_L001 }, + { 176, 10, _("EVENT_M01E05B_L002"), s_script_EVENT_M01E05B_L002 }, + { 177, 12, _("EVENT_M01E05B_L003"), s_script_EVENT_M01E05B_L003 }, + { 178, 10, _("EVENT_M01E05B_L004"), s_script_EVENT_M01E05B_L004 }, + { 179, 10, _("EVENT_M01E05B_L005"), s_script_EVENT_M01E05B_L005 }, + { 180, 10, _("EVENT_M01E06A_L001"), s_script_EVENT_M01E06A_L001 }, + { 181, 10, _("EVENT_M01E06A_L002"), s_script_EVENT_M01E06A_L002 }, + { 182, 10, _("EVENT_M01E06A_L003"), s_script_EVENT_M01E06A_L003 }, + { 183, 10, _("EVENT_M01E07A_L001"), s_script_EVENT_M01E07A_L001 }, + { 184, 10, _("EVENT_M01E07A_L002"), s_script_EVENT_M01E07A_L002 }, + { 185, 10, _("EVENT_M01E07A_L003"), s_script_EVENT_M01E07A_L003 }, + { 186, 10, _("EVENT_M01E07A_L004"), s_script_EVENT_M01E07A_L004 }, + { 187, 10, _("EVENT_M01E07A_L005"), s_script_EVENT_M01E07A_L005 }, + { 188, 10, _("EVENT_M01E07A_T001"), s_script_EVENT_M01E07A_T001 }, + { 189, 10, _("EVENT_M01E07A_T002"), s_script_EVENT_M01E07A_T002 }, + { 190, 10, _("EVENT_M01E07B_L001"), s_script_EVENT_M01E07B_L001 }, + { 191, 10, _("EVENT_M01E07B_L002"), s_script_EVENT_M01E07B_L002 }, + { 192, 10, _("EVENT_M01E07B_L003"), s_script_EVENT_M01E07B_L003 }, + { 193, 10, _("EVENT_M01E07B_L004"), s_script_EVENT_M01E07B_L004 }, + { 194, 10, _("EVENT_M01E07B_L005"), s_script_EVENT_M01E07B_L005 }, + { 195, 10, _("EVENT_M01E07B_T001"), s_script_EVENT_M01E07B_T001 }, + { 196, 10, _("EVENT_M01E07B_T002"), s_script_EVENT_M01E07B_T002 }, + { 197, 10, _("EVENT_M01E08A_L001"), s_script_EVENT_M01E08A_L001 }, + { 198, 10, _("EVENT_M01E08A_L002"), s_script_EVENT_M01E08A_L002 }, + { 199, 10, _("EVENT_M01E08A_L003"), s_script_EVENT_M01E08A_L003 }, + { 200, 10, _("EVENT_M01E08A_L004"), s_script_EVENT_M01E08A_L004 }, + { 201, 10, _("EVENT_M01E08A_L005"), s_script_EVENT_M01E08A_L005 }, + { 202, 10, _("EVENT_M01E08A_T001"), s_script_EVENT_M01E08A_T001 }, + { 203, 10, _("EVENT_M01E08A_T002"), s_script_EVENT_M01E08A_T002 }, + { 204, 10, _("EVENT_M01E08B_L001"), s_script_EVENT_M01E08B_L001 }, + { 205, 10, _("EVENT_M01E08B_L002"), s_script_EVENT_M01E08B_L002 }, + { 206, 10, _("EVENT_M01E08B_L003"), s_script_EVENT_M01E08B_L003 }, + { 207, 10, _("EVENT_M01E08B_L004"), s_script_EVENT_M01E08B_L004 }, + { 208, 10, _("EVENT_M01E08B_L005"), s_script_EVENT_M01E08B_L005 }, + { 209, 10, _("EVENT_M01E08B_L006"), s_script_EVENT_M01E08B_L006 }, + { 210, 10, _("EVENT_M01E08B_T001"), s_script_EVENT_M01E08B_T001 }, + { 211, 10, _("EVENT_M01E08B_T002"), s_script_EVENT_M01E08B_T002 }, + { 212, 10, _("EVENT_M01E09A_L001"), s_script_EVENT_M01E09A_L001 }, + { 213, 10, _("EVENT_M01E09A_L002"), s_script_EVENT_M01E09A_L002 }, + { 214, 10, _("EVENT_M01E09A_L003"), s_script_EVENT_M01E09A_L003 }, + { 215, 10, _("EVENT_M01E09A_L004"), s_script_EVENT_M01E09A_L004 }, + { 216, 10, _("EVENT_M01E09A_L005"), s_script_EVENT_M01E09A_L005 }, + { 217, 10, _("EVENT_M01E09A_L006"), s_script_EVENT_M01E09A_L006 }, + { 218, 10, _("EVENT_M01E09A_L007"), s_script_EVENT_M01E09A_L007 }, + { 219, 10, _("EVENT_M01E09A_L008"), s_script_EVENT_M01E09A_L008 }, + { 220, 10, _("EVENT_M01E09A_L009"), s_script_EVENT_M01E09A_L009 }, + { 221, 10, _("EVENT_M01E09A_L010"), s_script_EVENT_M01E09A_L010 }, + { 222, 10, _("EVENT_M01E09A_L011"), s_script_EVENT_M01E09A_L011 }, + { 223, 10, _("EVENT_M01E09A_L012"), s_script_EVENT_M01E09A_L012 }, + { 224, 10, _("EVENT_M01E09A_L013"), s_script_EVENT_M01E09A_L013 }, + { 225, 10, _("EVENT_M01E09A_L014"), s_script_EVENT_M01E09A_L014 }, + { 226, 10, _("EVENT_M01E09A_L015"), s_script_EVENT_M01E09A_L015 }, + { 227, 10, _("EVENT_M01E10A_L001"), s_script_EVENT_M01E10A_L001 }, + { 228, 10, _("EVENT_M01E10A_L002"), s_script_EVENT_M01E10A_L002 }, + { 229, 10, _("EVENT_M01E10A_L003"), s_script_EVENT_M01E10A_L003 }, + { 230, 10, _("EVENT_M01E10A_L004"), s_script_EVENT_M01E10A_L004 }, + { 231, 10, _("EVENT_M01E10A_L005"), s_script_EVENT_M01E10A_L005 }, + { 232, 10, _("EVENT_M01E10A_L006"), s_script_EVENT_M01E10A_L006 }, + { 233, 10, _("EVENT_M01E10A_L007"), s_script_EVENT_M01E10A_L007 }, + { 234, 10, _("EVENT_M01E10A_L008"), s_script_EVENT_M01E10A_L008 }, + { 235, 10, _("EVENT_M01END_L001"), s_script_EVENT_M01END_L001 }, + { 236, 10, _("EVENT_M01END_L002"), s_script_EVENT_M01END_L002 }, + { 237, 10, _("EVENT_M02E01A_L001"), s_script_EVENT_M02E01A_L001 }, + { 238, 10, _("EVENT_M02E01A_L002"), s_script_EVENT_M02E01A_L002 }, + { 239, 10, _("EVENT_M02E01A_L003"), s_script_EVENT_M02E01A_L003 }, + { 240, 10, _("EVENT_M02E02A_L001"), s_script_EVENT_M02E02A_L001 }, + { 241, 10, _("EVENT_M02E02B_L001"), s_script_EVENT_M02E02B_L001 }, + { 242, 10, _("EVENT_M02E02C_L001"), s_script_EVENT_M02E02C_L001 }, + { 243, 10, _("EVENT_M02E02D_L001"), s_script_EVENT_M02E02D_L001 }, + { 244, 10, _("EVENT_M02E02E_L001"), s_script_EVENT_M02E02E_L001 }, + { 245, 10, _("EVENT_M02E02F_L001"), s_script_EVENT_M02E02F_L001 }, + { 246, 10, _("EVENT_M02E02G_L001"), s_script_EVENT_M02E02G_L001 }, + { 247, 10, _("EVENT_M02E02H_L001"), s_script_EVENT_M02E02H_L001 }, + { 248, 10, _("EVENT_M02END_L001"), s_script_EVENT_M02END_L001 }, + { 249, 10, _("EVENT_S00E01A_L001"), s_script_EVENT_S00E01A_L001 }, + { 250, 10, _("EVENT_S00E01A_L002"), s_script_EVENT_S00E01A_L002 }, + { 251, 10, _("EVENT_S00E01A_L003"), s_script_EVENT_S00E01A_L003 }, + { 252, 10, _("EVENT_S00E01A_L004"), s_script_EVENT_S00E01A_L004 }, + { 253, 11, _("EVENT_S01E01A_START"), s_script_EVENT_S01E01A_START }, + { 254, 11, _("EVENT_S01E01A_CONTINUE"), s_script_EVENT_S01E01A_CONTINUE }, + { 255, 11, _("EVENT_S01E01A_END"), s_script_EVENT_S01E01A_END }, + { 256, 12, _("EVENT_S01E01A_L001"), s_script_EVENT_S01E01A_L001 }, + { 257, 10, _("EVENT_S01E01A_L002"), s_script_EVENT_S01E01A_L002 }, + { 258, 10, _("EVENT_S01E01A_L003"), s_script_EVENT_S01E01A_L003 }, + { 259, 10, _("EVENT_S01E01B_L001"), s_script_EVENT_S01E01B_L001 }, + { 260, 12, _("EVENT_S01E01B_L001L"), s_script_EVENT_S01E01B_L001L }, + { 261, 10, _("EVENT_S01E01C_L001"), s_script_EVENT_S01E01C_L001 }, + { 262, 11, _("EVENT_S01E02A_START"), s_script_EVENT_S01E02A_START }, + { 263, 11, _("EVENT_S01E02A_END"), s_script_EVENT_S01E02A_END }, + { 264, 10, _("EVENT_S01E02A_L001"), s_script_EVENT_S01E02A_L001 }, + { 265, 10, _("EVENT_S01E02A_L002"), s_script_EVENT_S01E02A_L002 }, + { 266, 12, _("EVENT_S01E02A_L002L"), s_script_EVENT_S01E02A_L002L }, + { 267, 12, _("EVENT_S01E02B_L001"), s_script_EVENT_S01E02B_L001 }, + { 268, 12, _("EVENT_S01E02B_L002"), s_script_EVENT_S01E02B_L002 }, + { 269, 11, _("EVENT_S02E01A_START"), s_script_EVENT_S02E01A_START }, + { 270, 11, _("EVENT_S02E01A_END"), s_script_EVENT_S02E01A_END }, + { 271, 12, _("EVENT_S02E01A_L001"), s_script_EVENT_S02E01A_L001 }, + { 272, 12, _("EVENT_S02E01A_L002"), s_script_EVENT_S02E01A_L002 }, + { 273, 12, _("EVENT_S02E01A_L003"), s_script_EVENT_S02E01A_L003 }, + { 274, 12, _("EVENT_S02E01A_L004"), s_script_EVENT_S02E01A_L004 }, + { 275, 12, _("EVENT_S02E01A_L004L"), s_script_EVENT_S02E01A_L004L }, + { 276, 11, _("EVENT_S02E02A_START"), s_script_EVENT_S02E02A_START }, + { 277, 11, _("EVENT_S02E02A_END"), s_script_EVENT_S02E02A_END }, + { 278, 12, _("EVENT_S02E02A_L001"), s_script_EVENT_S02E02A_L001 }, + { 279, 10, _("EVENT_S02E02A_L002"), s_script_EVENT_S02E02A_L002 }, + { 280, 12, _("EVENT_S02E02A_L003"), s_script_EVENT_S02E02A_L003 }, + { 281, 12, _("EVENT_S02E02A_L003L"), s_script_EVENT_S02E02A_L003L }, + { 282, 11, _("EVENT_S03E01A_START"), s_script_EVENT_S03E01A_START }, + { 283, 11, _("EVENT_S03E01A_CONTINUE"), s_script_EVENT_S03E01A_CONTINUE }, + { 284, 11, _("EVENT_S03E01A_END"), s_script_EVENT_S03E01A_END }, + { 285, 10, _("EVENT_S03E01A_L001"), s_script_EVENT_S03E01A_L001 }, + { 286, 12, _("EVENT_S03E01A_L002"), s_script_EVENT_S03E01A_L002 }, + { 287, 12, _("EVENT_S03E01A_L002L"), s_script_EVENT_S03E01A_L002L }, + { 288, 11, _("EVENT_S04E01A_START"), s_script_EVENT_S04E01A_START }, + { 289, 11, _("EVENT_S04E01A_LAST"), s_script_EVENT_S04E01A_LAST }, + { 290, 11, _("EVENT_S04E01A_END"), s_script_EVENT_S04E01A_END }, + { 291, 10, _("EVENT_S04E01A_L001"), s_script_EVENT_S04E01A_L001 }, + { 292, 10, _("EVENT_S04E01A_L002"), s_script_EVENT_S04E01A_L002 }, + { 293, 12, _("EVENT_S04E01A_L002L"), s_script_EVENT_S04E01A_L002L }, + { 294, 10, _("EVENT_S04E01B_L001"), s_script_EVENT_S04E01B_L001 }, + { 295, 12, _("EVENT_S04E01B_L001L"), s_script_EVENT_S04E01B_L001L }, + { 296, 10, _("EVENT_S04E01C_L001"), s_script_EVENT_S04E01C_L001 }, + { 297, 12, _("EVENT_S04E01C_L001L"), s_script_EVENT_S04E01C_L001L }, + { 298, 10, _("EVENT_S04E01D_L001"), s_script_EVENT_S04E01D_L001 }, + { 299, 12, _("EVENT_S04E01D_L001L"), s_script_EVENT_S04E01D_L001L }, + { 300, 10, _("EVENT_S04E01E_L001"), s_script_EVENT_S04E01E_L001 }, + { 301, 12, _("EVENT_S04E01E_L001L"), s_script_EVENT_S04E01E_L001L }, + { 302, 12, _("EVENT_S04E01F_L001"), s_script_EVENT_S04E01F_L001 }, + { 303, 11, _("EVENT_S05E01A_START"), s_script_EVENT_S05E01A_START }, + { 304, 11, _("EVENT_S05E01A_CONTINUE"), s_script_EVENT_S05E01A_CONTINUE }, + { 305, 11, _("EVENT_S05E01A_END"), s_script_EVENT_S05E01A_END }, + { 306, 10, _("EVENT_S05E01A_L001"), s_script_EVENT_S05E01A_L001 }, + { 307, 12, _("EVENT_S05E01A_L002"), s_script_EVENT_S05E01A_L002 }, + { 308, 12, _("EVENT_S05E01A_L002L"), s_script_EVENT_S05E01A_L002L }, + { 309, 11, _("EVENT_S06E01A_START"), s_script_EVENT_S06E01A_START }, + { 310, 11, _("EVENT_S06E01A_CONTINUE"), s_script_EVENT_S06E01A_CONTINUE }, + { 311, 11, _("EVENT_S06E01A_END"), s_script_EVENT_S06E01A_END }, + { 312, 10, _("EVENT_S06E01A_L001"), s_script_EVENT_S06E01A_L001 }, + { 313, 10, _("EVENT_S06E01A_L002"), s_script_EVENT_S06E01A_L002 }, + { 314, 12, _("EVENT_S06E01A_L002L"), s_script_EVENT_S06E01A_L002L }, + { 315, 10, _("EVENT_S06E01B_L001"), s_script_EVENT_S06E01B_L001 }, + { 316, 10, _("EVENT_S06E01B_L002"), s_script_EVENT_S06E01B_L002 }, + { 317, 12, _("EVENT_S06E01B_L002L"), s_script_EVENT_S06E01B_L002L }, + { 318, 11, _("EVENT_S07E01A_START"), s_script_EVENT_S07E01A_START }, + { 319, 11, _("EVENT_S07E01A_END"), s_script_EVENT_S07E01A_END }, + { 320, 12, _("EVENT_S07E01A_L001"), s_script_EVENT_S07E01A_L001 }, + { 321, 12, _("EVENT_S07E01A_L002"), s_script_EVENT_S07E01A_L002 }, + { 322, 12, _("EVENT_S07E01A_L003"), s_script_EVENT_S07E01A_L003 }, + { 323, 12, _("EVENT_S07E01A_L003L"), s_script_EVENT_S07E01A_L003L }, + { 324, 11, _("EVENT_S08E01A_START"), s_script_EVENT_S08E01A_START }, + { 325, 11, _("EVENT_S08E01A_END"), s_script_EVENT_S08E01A_END }, + { 326, 12, _("EVENT_S08E01A_L001"), s_script_EVENT_S08E01A_L001 }, + { 327, 12, _("EVENT_S08E01A_L002"), s_script_EVENT_S08E01A_L002 }, + { 328, 12, _("EVENT_S08E01A_L003"), s_script_EVENT_S08E01A_L003 }, + { 329, 12, _("EVENT_S08E01A_L004"), s_script_EVENT_S08E01A_L004 }, + { 330, 12, _("EVENT_S08E01A_L005"), s_script_EVENT_S08E01A_L005 }, + { 331, 10, _("EVENT_S08E01A_L005B"), s_script_EVENT_S08E01A_L005B }, + { 332, 10, _("EVENT_S08E01A_L006"), s_script_EVENT_S08E01A_L006 }, + { 333, 12, _("EVENT_S08E01A_L006L"), s_script_EVENT_S08E01A_L006L }, + { 334, 12, _("EVENT_S08E01A_L007"), s_script_EVENT_S08E01A_L007 }, + { 335, 10, _("EVENT_S08E01A_L008"), s_script_EVENT_S08E01A_L008 }, + { 336, 12, _("EVENT_S08E01A_L008L"), s_script_EVENT_S08E01A_L008L }, + { 337, 10, _("EVENT_S08E01A_L008A"), s_script_EVENT_S08E01A_L008A }, + { 338, 10, _("EVENT_S08E01A_L008B"), s_script_EVENT_S08E01A_L008B }, + { 339, 10, _("EVENT_S08E01A_L008C"), s_script_EVENT_S08E01A_L008C }, + { 340, 11, _("EVENT_S09E01A_START"), s_script_EVENT_S09E01A_START }, + { 341, 11, _("EVENT_S09E01A_END"), s_script_EVENT_S09E01A_END }, + { 342, 12, _("EVENT_S09E01A_L001"), s_script_EVENT_S09E01A_L001 }, + { 343, 12, _("EVENT_S09E01A_L002"), s_script_EVENT_S09E01A_L002 }, + { 344, 12, _("EVENT_S09E01A_L003"), s_script_EVENT_S09E01A_L003 }, + { 345, 10, _("EVENT_S09E01A_L004"), s_script_EVENT_S09E01A_L004 }, + { 346, 10, _("EVENT_S09E01A_L004B"), s_script_EVENT_S09E01A_L004B }, + { 347, 10, _("EVENT_S09E01A_L005"), s_script_EVENT_S09E01A_L005 }, + { 348, 12, _("EVENT_S09E01A_L005L"), s_script_EVENT_S09E01A_L005L }, + { 349, 10, _("EVENT_S09E01B_L001"), s_script_EVENT_S09E01B_L001 }, + { 350, 10, _("EVENT_S09E01B_L001B"), s_script_EVENT_S09E01B_L001B }, + { 351, 10, _("EVENT_S09E01B_L002"), s_script_EVENT_S09E01B_L002 }, + { 352, 12, _("EVENT_S09E01B_L002L"), s_script_EVENT_S09E01B_L002L }, + { 353, 12, _("EVENT_S09E01C_L001"), s_script_EVENT_S09E01C_L001 }, + { 354, 7, _("EVENT_R00E01A_L001"), s_script_EVENT_R00E01A_L001 }, + { 355, 1, _("COMMON_ENTER"), s_script_COMMON_ENTER }, + { 356, 1, _("DEBUG_ENTER"), s_script_DEBUG_ENTER }, + { 357, 2, _("GETOUT_NORMAL"), NULL }, + { 358, 2, _("GETOUT_HABITAT"), s_script_GETOUT_HABITAT }, + { 359, 2, _("GETOUT_M01E01A"), s_script_GETOUT_M01E01A }, + { 360, 2, _("GETOUT_M01E02A"), s_script_GETOUT_M01E02A }, + { 361, 2, _("GETOUT_M01E02B"), s_script_GETOUT_M01E02B }, + { 362, 2, _("GETOUT_M01E03A"), s_script_GETOUT_M01E03A }, + { 363, 2, _("GETOUT_M01E04A"), s_script_GETOUT_M01E04A }, + { 364, 2, _("GETOUT_M01E04B"), s_script_GETOUT_M01E04B }, + { 365, 2, _("GETOUT_M01E05A"), s_script_GETOUT_M01E05A }, + { 366, 2, _("GETOUT_M01E07A"), s_script_GETOUT_M01E07A }, + { 367, 2, _("GETOUT_M01E07B"), s_script_GETOUT_M01E07B }, + { 368, 2, _("GETOUT_M01E08A"), s_script_GETOUT_M01E08A }, + { 369, 2, _("GETOUT_M01E08B"), s_script_GETOUT_M01E08B }, + { 370, 2, _("GETOUT_M01E09A"), s_script_GETOUT_M01E09A }, + { 371, 2, _("GETOUT_M01E10A"), s_script_GETOUT_M01E10A }, + { 372, 2, _("GETOUT_S00E01A"), s_script_GETOUT_S00E01A }, + { 373, 2, _("GETOUT_S01E01A"), s_script_GETOUT_S01E01A }, + { 374, 2, _("GETOUT_S01E02A"), s_script_GETOUT_S01E02A }, + { 375, 2, _("GETOUT_S02E01A"), s_script_GETOUT_S02E01A }, + { 376, 2, _("GETOUT_S02E02A"), s_script_GETOUT_S02E02A }, + { 377, 2, _("GETOUT_S03E01A"), s_script_GETOUT_S03E01A }, + { 378, 2, _("GETOUT_S04E01A"), s_script_GETOUT_S04E01A }, + { 379, 2, _("GETOUT_S04E01B"), s_script_GETOUT_S04E01B }, + { 380, 2, _("GETOUT_S04E01C"), s_script_GETOUT_S04E01C }, + { 381, 2, _("GETOUT_S04E01D"), s_script_GETOUT_S04E01D }, + { 382, 2, _("GETOUT_S04E01E"), s_script_GETOUT_S04E01E }, + { 383, 2, _("GETOUT_S05E01A"), s_script_GETOUT_S05E01A }, + { 384, 2, _("GETOUT_S06E01A"), s_script_GETOUT_S06E01A }, + { 385, 2, _("GETOUT_S06E01B"), s_script_GETOUT_S06E01B }, + { 386, 2, _("GETOUT_S07E01A"), s_script_GETOUT_S07E01A }, + { 387, 2, _("GETOUT_S08E01A"), s_script_GETOUT_S08E01A }, + { 388, 2, _("GETOUT_S09E01A"), s_script_GETOUT_S09E01A }, + { 389, 2, _("GETOUT_S09E01B"), s_script_GETOUT_S09E01B }, + { 390, 2, _("GETOUT_D62E01A"), s_script_GETOUT_D62E01A }, + { 391, 2, _("GETOUT_D43E01A"), s_script_GETOUT_D43E01A }, + { 392, 2, _("GETOUT_D44E01A"), s_script_GETOUT_D44E01A }, + { 393, 2, _("GETOUT_D45E01A"), s_script_GETOUT_D45E01A }, + { 394, 2, _("GETOUT_D46E01A"), s_script_GETOUT_D46E01A }, + { 395, 2, _("GETOUT_U00E01A"), s_script_GETOUT_U00E01A }, + { 396, 2, _("GETOUT_R00E01A"), s_script_GETOUT_R00E01A }, + { 397, 2, _("GETOUT_T00E01A"), s_script_GETOUT_T00E01A }, + { 398, 2, _("GETOUT_M01E07T"), s_script_GETOUT_M01E07T }, + { 399, 2, _("GETOUT_M01E08T"), s_script_GETOUT_M01E08T }, + { 400, 7, _("EVENT_CONTROL"), NULL }, + { 401, 7, _("EVENT_WAKEUP"), NULL }, + { 402, 7, _("EVENT_STATION"), NULL }, + { 403, 8, _("STATION_CONTROL"), NULL }, + { 404, 1, _("ENTER_CONTROL"), NULL }, + { 405, 7, _("SETUP_DEBUG_CAMERA"), s_script_SETUP_DEBUG_CAMERA }, + { 406, 5, _("MOVE_DEBUG_CAMERA"), s_script_MOVE_DEBUG_CAMERA }, +}; + diff --git a/src/ground_data_a01p01_station.c b/src/ground_data_a01p01_station.c new file mode 100644 index 000000000..24cd1a3ee --- /dev/null +++ b/src/ground_data_a01p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_a01p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_a01p01_station.h" diff --git a/src/ground_data_a01p02_station.c b/src/ground_data_a01p02_station.c new file mode 100644 index 000000000..e0027f5e6 --- /dev/null +++ b/src/ground_data_a01p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_a01p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_a01p02_station.h" diff --git a/src/ground_data_a02p01_station.c b/src/ground_data_a02p01_station.c new file mode 100644 index 000000000..56b5d8372 --- /dev/null +++ b/src/ground_data_a02p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_a02p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_a02p01_station.h" diff --git a/src/ground_data_a02p02_station.c b/src/ground_data_a02p02_station.c new file mode 100644 index 000000000..2e9db0a76 --- /dev/null +++ b/src/ground_data_a02p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_a02p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_a02p02_station.h" diff --git a/src/ground_data_a02p03_station.c b/src/ground_data_a02p03_station.c new file mode 100644 index 000000000..b468f0db0 --- /dev/null +++ b/src/ground_data_a02p03_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_a02p03_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_a02p03_station.h" diff --git a/src/ground_data_a02p04_station.c b/src/ground_data_a02p04_station.c new file mode 100644 index 000000000..978062b68 --- /dev/null +++ b/src/ground_data_a02p04_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_a02p04_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_a02p04_station.h" diff --git a/src/ground_data_a03p01_station.c b/src/ground_data_a03p01_station.c new file mode 100644 index 000000000..0d362df12 --- /dev/null +++ b/src/ground_data_a03p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_a03p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_a03p01_station.h" diff --git a/src/ground_data_a03p02_station.c b/src/ground_data_a03p02_station.c new file mode 100644 index 000000000..d57a58ba5 --- /dev/null +++ b/src/ground_data_a03p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_a03p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_a03p02_station.h" diff --git a/src/ground_data_a03p03_station.c b/src/ground_data_a03p03_station.c new file mode 100644 index 000000000..be277a4a6 --- /dev/null +++ b/src/ground_data_a03p03_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_a03p03_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_a03p03_station.h" diff --git a/src/ground_data_a04p01_station.c b/src/ground_data_a04p01_station.c new file mode 100644 index 000000000..c66db2cb8 --- /dev/null +++ b/src/ground_data_a04p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_a04p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_a04p01_station.h" diff --git a/src/ground_data_a04p02_station.c b/src/ground_data_a04p02_station.c new file mode 100644 index 000000000..e360816af --- /dev/null +++ b/src/ground_data_a04p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_a04p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_a04p02_station.h" diff --git a/src/ground_data_a04p03_station.c b/src/ground_data_a04p03_station.c new file mode 100644 index 000000000..f101789bc --- /dev/null +++ b/src/ground_data_a04p03_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_a04p03_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_a04p03_station.h" diff --git a/src/ground_data_a04p04_station.c b/src/ground_data_a04p04_station.c new file mode 100644 index 000000000..f8a67ac3a --- /dev/null +++ b/src/ground_data_a04p04_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_a04p04_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_a04p04_station.h" diff --git a/src/ground_data_a05p01_station.c b/src/ground_data_a05p01_station.c new file mode 100644 index 000000000..e499440a2 --- /dev/null +++ b/src/ground_data_a05p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_a05p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_a05p01_station.h" diff --git a/src/ground_data_a05p02_station.c b/src/ground_data_a05p02_station.c new file mode 100644 index 000000000..7aadf9469 --- /dev/null +++ b/src/ground_data_a05p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_a05p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_a05p02_station.h" diff --git a/src/ground_data_a05p03_station.c b/src/ground_data_a05p03_station.c new file mode 100644 index 000000000..7f6d7a434 --- /dev/null +++ b/src/ground_data_a05p03_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_a05p03_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_a05p03_station.h" diff --git a/src/ground_data_b01p01a_station.c b/src/ground_data_b01p01a_station.c new file mode 100644 index 000000000..467e14458 --- /dev/null +++ b/src/ground_data_b01p01a_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_b01p01a_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_b01p01a_station.h" diff --git a/src/ground_data_b01p02a_station.c b/src/ground_data_b01p02a_station.c new file mode 100644 index 000000000..25a39893d --- /dev/null +++ b/src/ground_data_b01p02a_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_b01p02a_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_b01p02a_station.h" diff --git a/src/ground_data_d01p01_station.c b/src/ground_data_d01p01_station.c new file mode 100644 index 000000000..2760203c2 --- /dev/null +++ b/src/ground_data_d01p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d01p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d01p01_station.h" diff --git a/src/ground_data_d01p02_station.c b/src/ground_data_d01p02_station.c new file mode 100644 index 000000000..685fc74b0 --- /dev/null +++ b/src/ground_data_d01p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d01p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d01p02_station.h" diff --git a/src/ground_data_d02p01_station.c b/src/ground_data_d02p01_station.c new file mode 100644 index 000000000..0632af352 --- /dev/null +++ b/src/ground_data_d02p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d02p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d02p01_station.h" diff --git a/src/ground_data_d02p02_station.c b/src/ground_data_d02p02_station.c new file mode 100644 index 000000000..21c4e18a5 --- /dev/null +++ b/src/ground_data_d02p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d02p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d02p02_station.h" diff --git a/src/ground_data_d03p01_station.c b/src/ground_data_d03p01_station.c new file mode 100644 index 000000000..f939a5e8f --- /dev/null +++ b/src/ground_data_d03p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d03p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d03p01_station.h" diff --git a/src/ground_data_d03p02_station.c b/src/ground_data_d03p02_station.c new file mode 100644 index 000000000..b65f2d2bc --- /dev/null +++ b/src/ground_data_d03p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d03p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d03p02_station.h" diff --git a/src/ground_data_d04p01_station.c b/src/ground_data_d04p01_station.c new file mode 100644 index 000000000..2778481d9 --- /dev/null +++ b/src/ground_data_d04p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d04p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d04p01_station.h" diff --git a/src/ground_data_d04p02_station.c b/src/ground_data_d04p02_station.c new file mode 100644 index 000000000..0392300da --- /dev/null +++ b/src/ground_data_d04p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d04p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d04p02_station.h" diff --git a/src/ground_data_d05p01_station.c b/src/ground_data_d05p01_station.c new file mode 100644 index 000000000..ab64d90b1 --- /dev/null +++ b/src/ground_data_d05p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d05p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d05p01_station.h" diff --git a/src/ground_data_d05p02_station.c b/src/ground_data_d05p02_station.c new file mode 100644 index 000000000..a8aee3d30 --- /dev/null +++ b/src/ground_data_d05p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d05p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d05p02_station.h" diff --git a/src/ground_data_d06p01_station.c b/src/ground_data_d06p01_station.c new file mode 100644 index 000000000..f862a7932 --- /dev/null +++ b/src/ground_data_d06p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d06p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d06p01_station.h" diff --git a/src/ground_data_d06p02_station.c b/src/ground_data_d06p02_station.c new file mode 100644 index 000000000..ff1563a27 --- /dev/null +++ b/src/ground_data_d06p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d06p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d06p02_station.h" diff --git a/src/ground_data_d06p03_station.c b/src/ground_data_d06p03_station.c new file mode 100644 index 000000000..96c4a22a6 --- /dev/null +++ b/src/ground_data_d06p03_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d06p03_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d06p03_station.h" diff --git a/src/ground_data_d07p01_station.c b/src/ground_data_d07p01_station.c new file mode 100644 index 000000000..3ae829b53 --- /dev/null +++ b/src/ground_data_d07p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d07p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d07p01_station.h" diff --git a/src/ground_data_d07p02_station.c b/src/ground_data_d07p02_station.c new file mode 100644 index 000000000..c3473b9f5 --- /dev/null +++ b/src/ground_data_d07p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d07p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d07p02_station.h" diff --git a/src/ground_data_d08p01_station.c b/src/ground_data_d08p01_station.c new file mode 100644 index 000000000..f9ee8b071 --- /dev/null +++ b/src/ground_data_d08p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d08p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d08p01_station.h" diff --git a/src/ground_data_d08p02_station.c b/src/ground_data_d08p02_station.c new file mode 100644 index 000000000..7b5377523 --- /dev/null +++ b/src/ground_data_d08p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d08p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d08p02_station.h" diff --git a/src/ground_data_d09p01_station.c b/src/ground_data_d09p01_station.c new file mode 100644 index 000000000..d7d00c960 --- /dev/null +++ b/src/ground_data_d09p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d09p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d09p01_station.h" diff --git a/src/ground_data_d09p02_station.c b/src/ground_data_d09p02_station.c new file mode 100644 index 000000000..e874944c2 --- /dev/null +++ b/src/ground_data_d09p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d09p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d09p02_station.h" diff --git a/src/ground_data_d09p03_station.c b/src/ground_data_d09p03_station.c new file mode 100644 index 000000000..c91b0f086 --- /dev/null +++ b/src/ground_data_d09p03_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d09p03_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d09p03_station.h" diff --git a/src/ground_data_d10p01_station.c b/src/ground_data_d10p01_station.c new file mode 100644 index 000000000..9f5b91491 --- /dev/null +++ b/src/ground_data_d10p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d10p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d10p01_station.h" diff --git a/src/ground_data_d10p02_station.c b/src/ground_data_d10p02_station.c new file mode 100644 index 000000000..805ebe6b2 --- /dev/null +++ b/src/ground_data_d10p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d10p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d10p02_station.h" diff --git a/src/ground_data_d10p03_station.c b/src/ground_data_d10p03_station.c new file mode 100644 index 000000000..8c61e6a31 --- /dev/null +++ b/src/ground_data_d10p03_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d10p03_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d10p03_station.h" diff --git a/src/ground_data_d11p01_station.c b/src/ground_data_d11p01_station.c new file mode 100644 index 000000000..861909bdd --- /dev/null +++ b/src/ground_data_d11p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d11p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d11p01_station.h" diff --git a/src/ground_data_d11p02_station.c b/src/ground_data_d11p02_station.c new file mode 100644 index 000000000..19e7314dd --- /dev/null +++ b/src/ground_data_d11p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d11p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d11p02_station.h" diff --git a/src/ground_data_d11p03_station.c b/src/ground_data_d11p03_station.c new file mode 100644 index 000000000..3041c712e --- /dev/null +++ b/src/ground_data_d11p03_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d11p03_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d11p03_station.h" diff --git a/src/ground_data_d12p01_station.c b/src/ground_data_d12p01_station.c new file mode 100644 index 000000000..c1c108ff7 --- /dev/null +++ b/src/ground_data_d12p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d12p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d12p01_station.h" diff --git a/src/ground_data_d12p02_station.c b/src/ground_data_d12p02_station.c new file mode 100644 index 000000000..c47030c0f --- /dev/null +++ b/src/ground_data_d12p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d12p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d12p02_station.h" diff --git a/src/ground_data_d12p04_station.c b/src/ground_data_d12p04_station.c new file mode 100644 index 000000000..581d15ad2 --- /dev/null +++ b/src/ground_data_d12p04_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d12p04_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d12p04_station.h" diff --git a/src/ground_data_d13p01_station.c b/src/ground_data_d13p01_station.c new file mode 100644 index 000000000..7161325f9 --- /dev/null +++ b/src/ground_data_d13p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d13p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d13p01_station.h" diff --git a/src/ground_data_d13p02_station.c b/src/ground_data_d13p02_station.c new file mode 100644 index 000000000..d6a428e60 --- /dev/null +++ b/src/ground_data_d13p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d13p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d13p02_station.h" diff --git a/src/ground_data_d13p03_station.c b/src/ground_data_d13p03_station.c new file mode 100644 index 000000000..f30472030 --- /dev/null +++ b/src/ground_data_d13p03_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d13p03_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d13p03_station.h" diff --git a/src/ground_data_d14p01_station.c b/src/ground_data_d14p01_station.c new file mode 100644 index 000000000..4ea8245cf --- /dev/null +++ b/src/ground_data_d14p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d14p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d14p01_station.h" diff --git a/src/ground_data_d15p01_station.c b/src/ground_data_d15p01_station.c new file mode 100644 index 000000000..f58e5a171 --- /dev/null +++ b/src/ground_data_d15p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d15p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d15p01_station.h" diff --git a/src/ground_data_d16p01_station.c b/src/ground_data_d16p01_station.c new file mode 100644 index 000000000..0c1a872df --- /dev/null +++ b/src/ground_data_d16p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d16p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d16p01_station.h" diff --git a/src/ground_data_d17p01_station.c b/src/ground_data_d17p01_station.c new file mode 100644 index 000000000..21e47f170 --- /dev/null +++ b/src/ground_data_d17p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d17p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d17p01_station.h" diff --git a/src/ground_data_d18p01_station.c b/src/ground_data_d18p01_station.c new file mode 100644 index 000000000..5e494f89b --- /dev/null +++ b/src/ground_data_d18p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d18p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d18p01_station.h" diff --git a/src/ground_data_d19p01_station.c b/src/ground_data_d19p01_station.c new file mode 100644 index 000000000..5c56c6f65 --- /dev/null +++ b/src/ground_data_d19p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d19p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d19p01_station.h" diff --git a/src/ground_data_d20p01_station.c b/src/ground_data_d20p01_station.c new file mode 100644 index 000000000..bef6db1a7 --- /dev/null +++ b/src/ground_data_d20p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d20p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d20p01_station.h" diff --git a/src/ground_data_d21p01_station.c b/src/ground_data_d21p01_station.c new file mode 100644 index 000000000..ef6a9a34f --- /dev/null +++ b/src/ground_data_d21p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d21p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d21p01_station.h" diff --git a/src/ground_data_d22p01_station.c b/src/ground_data_d22p01_station.c new file mode 100644 index 000000000..393e35ce6 --- /dev/null +++ b/src/ground_data_d22p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d22p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d22p01_station.h" diff --git a/src/ground_data_d23p01_station.c b/src/ground_data_d23p01_station.c new file mode 100644 index 000000000..0312447ce --- /dev/null +++ b/src/ground_data_d23p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d23p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d23p01_station.h" diff --git a/src/ground_data_d24p01_station.c b/src/ground_data_d24p01_station.c new file mode 100644 index 000000000..156607e3d --- /dev/null +++ b/src/ground_data_d24p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d24p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d24p01_station.h" diff --git a/src/ground_data_d24p02_station.c b/src/ground_data_d24p02_station.c new file mode 100644 index 000000000..6f05ab66c --- /dev/null +++ b/src/ground_data_d24p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d24p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d24p02_station.h" diff --git a/src/ground_data_d25p01_station.c b/src/ground_data_d25p01_station.c new file mode 100644 index 000000000..1f019a36a --- /dev/null +++ b/src/ground_data_d25p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_d25p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_d25p01_station.h" diff --git a/src/ground_data_h01p01_station.c b/src/ground_data_h01p01_station.c new file mode 100644 index 000000000..5ee76b0ef --- /dev/null +++ b/src/ground_data_h01p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h01p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h01p01_station.h" diff --git a/src/ground_data_h01p02_station.c b/src/ground_data_h01p02_station.c new file mode 100644 index 000000000..23139f83a --- /dev/null +++ b/src/ground_data_h01p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h01p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h01p02_station.h" diff --git a/src/ground_data_h01p03_station.c b/src/ground_data_h01p03_station.c new file mode 100644 index 000000000..6cc5c16c9 --- /dev/null +++ b/src/ground_data_h01p03_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h01p03_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h01p03_station.h" diff --git a/src/ground_data_h02p01_station.c b/src/ground_data_h02p01_station.c new file mode 100644 index 000000000..2c266b0a7 --- /dev/null +++ b/src/ground_data_h02p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h02p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h02p01_station.h" diff --git a/src/ground_data_h02p02_station.c b/src/ground_data_h02p02_station.c new file mode 100644 index 000000000..4e17bc1b4 --- /dev/null +++ b/src/ground_data_h02p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h02p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h02p02_station.h" diff --git a/src/ground_data_h02p03_station.c b/src/ground_data_h02p03_station.c new file mode 100644 index 000000000..e0ed6020b --- /dev/null +++ b/src/ground_data_h02p03_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h02p03_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h02p03_station.h" diff --git a/src/ground_data_h03p01_station.c b/src/ground_data_h03p01_station.c new file mode 100644 index 000000000..71c4e6628 --- /dev/null +++ b/src/ground_data_h03p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h03p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h03p01_station.h" diff --git a/src/ground_data_h04p01_station.c b/src/ground_data_h04p01_station.c new file mode 100644 index 000000000..9c6391864 --- /dev/null +++ b/src/ground_data_h04p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h04p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h04p01_station.h" diff --git a/src/ground_data_h04p02_station.c b/src/ground_data_h04p02_station.c new file mode 100644 index 000000000..86df5b851 --- /dev/null +++ b/src/ground_data_h04p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h04p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h04p02_station.h" diff --git a/src/ground_data_h05p01_station.c b/src/ground_data_h05p01_station.c new file mode 100644 index 000000000..c550e7e6e --- /dev/null +++ b/src/ground_data_h05p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h05p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h05p01_station.h" diff --git a/src/ground_data_h05p02_station.c b/src/ground_data_h05p02_station.c new file mode 100644 index 000000000..b4dfc4ab6 --- /dev/null +++ b/src/ground_data_h05p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h05p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h05p02_station.h" diff --git a/src/ground_data_h06p01_station.c b/src/ground_data_h06p01_station.c new file mode 100644 index 000000000..f05098533 --- /dev/null +++ b/src/ground_data_h06p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h06p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h06p01_station.h" diff --git a/src/ground_data_h06p02_station.c b/src/ground_data_h06p02_station.c new file mode 100644 index 000000000..1f2d77a50 --- /dev/null +++ b/src/ground_data_h06p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h06p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h06p02_station.h" diff --git a/src/ground_data_h06p03_station.c b/src/ground_data_h06p03_station.c new file mode 100644 index 000000000..5d144592c --- /dev/null +++ b/src/ground_data_h06p03_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h06p03_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h06p03_station.h" diff --git a/src/ground_data_h06p04_station.c b/src/ground_data_h06p04_station.c new file mode 100644 index 000000000..4c948ae1f --- /dev/null +++ b/src/ground_data_h06p04_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h06p04_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h06p04_station.h" diff --git a/src/ground_data_h06p05_station.c b/src/ground_data_h06p05_station.c new file mode 100644 index 000000000..fd0288c5e --- /dev/null +++ b/src/ground_data_h06p05_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h06p05_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h06p05_station.h" diff --git a/src/ground_data_h06p06_station.c b/src/ground_data_h06p06_station.c new file mode 100644 index 000000000..79aadb2d9 --- /dev/null +++ b/src/ground_data_h06p06_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h06p06_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h06p06_station.h" diff --git a/src/ground_data_h07p01_station.c b/src/ground_data_h07p01_station.c new file mode 100644 index 000000000..f817a7689 --- /dev/null +++ b/src/ground_data_h07p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h07p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h07p01_station.h" diff --git a/src/ground_data_h07p02_station.c b/src/ground_data_h07p02_station.c new file mode 100644 index 000000000..bd42a2018 --- /dev/null +++ b/src/ground_data_h07p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h07p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h07p02_station.h" diff --git a/src/ground_data_h07p03_station.c b/src/ground_data_h07p03_station.c new file mode 100644 index 000000000..76d404ee1 --- /dev/null +++ b/src/ground_data_h07p03_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h07p03_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h07p03_station.h" diff --git a/src/ground_data_h07p04_station.c b/src/ground_data_h07p04_station.c new file mode 100644 index 000000000..dfbeff5e1 --- /dev/null +++ b/src/ground_data_h07p04_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h07p04_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h07p04_station.h" diff --git a/src/ground_data_h07p05_station.c b/src/ground_data_h07p05_station.c new file mode 100644 index 000000000..fb8a1563c --- /dev/null +++ b/src/ground_data_h07p05_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h07p05_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h07p05_station.h" diff --git a/src/ground_data_h07p06_station.c b/src/ground_data_h07p06_station.c new file mode 100644 index 000000000..dd7435654 --- /dev/null +++ b/src/ground_data_h07p06_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h07p06_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h07p06_station.h" diff --git a/src/ground_data_h07p07_station.c b/src/ground_data_h07p07_station.c new file mode 100644 index 000000000..eabcc4f71 --- /dev/null +++ b/src/ground_data_h07p07_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h07p07_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h07p07_station.h" diff --git a/src/ground_data_h07p08_station.c b/src/ground_data_h07p08_station.c new file mode 100644 index 000000000..319dc9061 --- /dev/null +++ b/src/ground_data_h07p08_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h07p08_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h07p08_station.h" diff --git a/src/ground_data_h08p01_station.c b/src/ground_data_h08p01_station.c new file mode 100644 index 000000000..fad6d03e8 --- /dev/null +++ b/src/ground_data_h08p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h08p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h08p01_station.h" diff --git a/src/ground_data_h09p01_station.c b/src/ground_data_h09p01_station.c new file mode 100644 index 000000000..d2225e17c --- /dev/null +++ b/src/ground_data_h09p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h09p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h09p01_station.h" diff --git a/src/ground_data_h09p02_station.c b/src/ground_data_h09p02_station.c new file mode 100644 index 000000000..ed445e63e --- /dev/null +++ b/src/ground_data_h09p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h09p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h09p02_station.h" diff --git a/src/ground_data_h10p01_station.c b/src/ground_data_h10p01_station.c new file mode 100644 index 000000000..a4a0fb05f --- /dev/null +++ b/src/ground_data_h10p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h10p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h10p01_station.h" diff --git a/src/ground_data_h10p02_station.c b/src/ground_data_h10p02_station.c new file mode 100644 index 000000000..816d73de7 --- /dev/null +++ b/src/ground_data_h10p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h10p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h10p02_station.h" diff --git a/src/ground_data_h11p01_station.c b/src/ground_data_h11p01_station.c new file mode 100644 index 000000000..f1652a344 --- /dev/null +++ b/src/ground_data_h11p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h11p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h11p01_station.h" diff --git a/src/ground_data_h12p01_station.c b/src/ground_data_h12p01_station.c new file mode 100644 index 000000000..8c07fcbf4 --- /dev/null +++ b/src/ground_data_h12p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h12p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h12p01_station.h" diff --git a/src/ground_data_h13p01_station.c b/src/ground_data_h13p01_station.c new file mode 100644 index 000000000..d282ee9e7 --- /dev/null +++ b/src/ground_data_h13p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h13p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h13p01_station.h" diff --git a/src/ground_data_h13p02_station.c b/src/ground_data_h13p02_station.c new file mode 100644 index 000000000..cc31ed558 --- /dev/null +++ b/src/ground_data_h13p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h13p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h13p02_station.h" diff --git a/src/ground_data_h13p03_station.c b/src/ground_data_h13p03_station.c new file mode 100644 index 000000000..cab326a2c --- /dev/null +++ b/src/ground_data_h13p03_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h13p03_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h13p03_station.h" diff --git a/src/ground_data_h13p04_station.c b/src/ground_data_h13p04_station.c new file mode 100644 index 000000000..f7c3bd557 --- /dev/null +++ b/src/ground_data_h13p04_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h13p04_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h13p04_station.h" diff --git a/src/ground_data_h14p01_station.c b/src/ground_data_h14p01_station.c new file mode 100644 index 000000000..f95e932ca --- /dev/null +++ b/src/ground_data_h14p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h14p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h14p01_station.h" diff --git a/src/ground_data_h15p01_station.c b/src/ground_data_h15p01_station.c new file mode 100644 index 000000000..6947fe9d5 --- /dev/null +++ b/src/ground_data_h15p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h15p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h15p01_station.h" diff --git a/src/ground_data_h16p01_station.c b/src/ground_data_h16p01_station.c new file mode 100644 index 000000000..7c8e75e0e --- /dev/null +++ b/src/ground_data_h16p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h16p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h16p01_station.h" diff --git a/src/ground_data_h17p01_station.c b/src/ground_data_h17p01_station.c new file mode 100644 index 000000000..6ef08682d --- /dev/null +++ b/src/ground_data_h17p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h17p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h17p01_station.h" diff --git a/src/ground_data_h18p01_station.c b/src/ground_data_h18p01_station.c new file mode 100644 index 000000000..8934d1aef --- /dev/null +++ b/src/ground_data_h18p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h18p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h18p01_station.h" diff --git a/src/ground_data_h19p01_station.c b/src/ground_data_h19p01_station.c new file mode 100644 index 000000000..76a0e258d --- /dev/null +++ b/src/ground_data_h19p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h19p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h19p01_station.h" diff --git a/src/ground_data_h20p01_station.c b/src/ground_data_h20p01_station.c new file mode 100644 index 000000000..a9df73cc1 --- /dev/null +++ b/src/ground_data_h20p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h20p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h20p01_station.h" diff --git a/src/ground_data_h21p01_station.c b/src/ground_data_h21p01_station.c new file mode 100644 index 000000000..66c6dc0c2 --- /dev/null +++ b/src/ground_data_h21p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h21p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h21p01_station.h" diff --git a/src/ground_data_h21p02_station.c b/src/ground_data_h21p02_station.c new file mode 100644 index 000000000..8fbe0fb37 --- /dev/null +++ b/src/ground_data_h21p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h21p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h21p02_station.h" diff --git a/src/ground_data_h22p01_station.c b/src/ground_data_h22p01_station.c new file mode 100644 index 000000000..472018363 --- /dev/null +++ b/src/ground_data_h22p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h22p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h22p01_station.h" diff --git a/src/ground_data_h23p01_station.c b/src/ground_data_h23p01_station.c new file mode 100644 index 000000000..d6e036b8b --- /dev/null +++ b/src/ground_data_h23p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h23p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h23p01_station.h" diff --git a/src/ground_data_h24p01_station.c b/src/ground_data_h24p01_station.c new file mode 100644 index 000000000..4f1109696 --- /dev/null +++ b/src/ground_data_h24p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h24p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h24p01_station.h" diff --git a/src/ground_data_h25p01_station.c b/src/ground_data_h25p01_station.c new file mode 100644 index 000000000..d719ce127 --- /dev/null +++ b/src/ground_data_h25p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h25p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h25p01_station.h" diff --git a/src/ground_data_h26p01_station.c b/src/ground_data_h26p01_station.c new file mode 100644 index 000000000..e5944584f --- /dev/null +++ b/src/ground_data_h26p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h26p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h26p01_station.h" diff --git a/src/ground_data_h27p01_station.c b/src/ground_data_h27p01_station.c new file mode 100644 index 000000000..cdf820374 --- /dev/null +++ b/src/ground_data_h27p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h27p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h27p01_station.h" diff --git a/src/ground_data_h28p01_station.c b/src/ground_data_h28p01_station.c new file mode 100644 index 000000000..12e1be007 --- /dev/null +++ b/src/ground_data_h28p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h28p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h28p01_station.h" diff --git a/src/ground_data_h28p02_station.c b/src/ground_data_h28p02_station.c new file mode 100644 index 000000000..0210a7017 --- /dev/null +++ b/src/ground_data_h28p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h28p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h28p02_station.h" diff --git a/src/ground_data_h29p01_station.c b/src/ground_data_h29p01_station.c new file mode 100644 index 000000000..3616ca8f8 --- /dev/null +++ b/src/ground_data_h29p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h29p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h29p01_station.h" diff --git a/src/ground_data_h29p02_station.c b/src/ground_data_h29p02_station.c new file mode 100644 index 000000000..fe8174cb9 --- /dev/null +++ b/src/ground_data_h29p02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h29p02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h29p02_station.h" diff --git a/src/ground_data_h29p03_station.c b/src/ground_data_h29p03_station.c new file mode 100644 index 000000000..8fcfcaccf --- /dev/null +++ b/src/ground_data_h29p03_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h29p03_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h29p03_station.h" diff --git a/src/ground_data_h29p04_station.c b/src/ground_data_h29p04_station.c new file mode 100644 index 000000000..b641151c4 --- /dev/null +++ b/src/ground_data_h29p04_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_h29p04_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_h29p04_station.h" diff --git a/src/ground_data_s01_station.c b/src/ground_data_s01_station.c new file mode 100644 index 000000000..c48a32df6 --- /dev/null +++ b/src/ground_data_s01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_s01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_s01_station.h" diff --git a/src/ground_data_s02_station.c b/src/ground_data_s02_station.c new file mode 100644 index 000000000..ff1524bc2 --- /dev/null +++ b/src/ground_data_s02_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_s02_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_s02_station.h" diff --git a/src/ground_data_s03_station.c b/src/ground_data_s03_station.c new file mode 100644 index 000000000..126ddf5e9 --- /dev/null +++ b/src/ground_data_s03_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_s03_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_s03_station.h" diff --git a/src/ground_data_s04_station.c b/src/ground_data_s04_station.c new file mode 100644 index 000000000..0ca4ab494 --- /dev/null +++ b/src/ground_data_s04_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_s04_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_s04_station.h" diff --git a/src/ground_data_s05_station.c b/src/ground_data_s05_station.c new file mode 100644 index 000000000..a6e681095 --- /dev/null +++ b/src/ground_data_s05_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_s05_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_s05_station.h" diff --git a/src/ground_data_s06_station.c b/src/ground_data_s06_station.c new file mode 100644 index 000000000..caf7ffa5a --- /dev/null +++ b/src/ground_data_s06_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_s06_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_s06_station.h" diff --git a/src/ground_data_t00p01_station.c b/src/ground_data_t00p01_station.c new file mode 100644 index 000000000..25c546c0f --- /dev/null +++ b/src/ground_data_t00p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_t00p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_t00p01_station.h" diff --git a/src/ground_data_t01p01_station.c b/src/ground_data_t01p01_station.c new file mode 100644 index 000000000..80aadc0c4 --- /dev/null +++ b/src/ground_data_t01p01_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_t01p01_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_t01p01_station.h" diff --git a/src/ground_data_t01p02a_station.c b/src/ground_data_t01p02a_station.c new file mode 100644 index 000000000..e4d25e627 --- /dev/null +++ b/src/ground_data_t01p02a_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_t01p02a_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_t01p02a_station.h" diff --git a/src/ground_data_t01p03_station.c b/src/ground_data_t01p03_station.c new file mode 100644 index 000000000..2abfc221c --- /dev/null +++ b/src/ground_data_t01p03_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_t01p03_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_t01p03_station.h" diff --git a/src/ground_data_t01p04_station.c b/src/ground_data_t01p04_station.c new file mode 100644 index 000000000..e2e26c591 --- /dev/null +++ b/src/ground_data_t01p04_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_t01p04_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_t01p04_station.h" diff --git a/src/ground_data_t01p05_station.c b/src/ground_data_t01p05_station.c new file mode 100644 index 000000000..86defa66f --- /dev/null +++ b/src/ground_data_t01p05_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_t01p05_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_t01p05_station.h" diff --git a/src/ground_data_t01p06_station.c b/src/ground_data_t01p06_station.c new file mode 100644 index 000000000..8dbc9225d --- /dev/null +++ b/src/ground_data_t01p06_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_t01p06_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_t01p06_station.h" diff --git a/src/ground_data_t01p07_station.c b/src/ground_data_t01p07_station.c new file mode 100644 index 000000000..1fe6fdc67 --- /dev/null +++ b/src/ground_data_t01p07_station.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_data_t01p07_station.c" + +#include "globaldata.h" +#include "data/ground/ground_data_t01p07_station.h" diff --git a/src/ground_event_data.c b/src/ground_event_data.c new file mode 100644 index 000000000..7cafb4ff7 --- /dev/null +++ b/src/ground_event_data.c @@ -0,0 +1,7 @@ +#include "global.h" +#include "data_script.h" + +#define FAKE_FILENAME "../data/ground/ground_event_data.c" + +#include "globaldata.h" +#include "data/ground/ground_event_data.h" diff --git a/src/ground_script.c b/src/ground_script.c index 521c60e5a..a79bdcd18 100644 --- a/src/ground_script.c +++ b/src/ground_script.c @@ -169,7 +169,7 @@ void SetPredefinedScript(Action *param_1, s16 index, ScriptCommand *param_3) bool8 GetPredefinedScript(Action *param_1, ScriptInfoSmall *script, s16 _index) { - ScriptCommand *scriptPtr; + const ScriptCommand *scriptPtr; s32 index = _index; scriptPtr = param_1->predefinedScripts[index]; diff --git a/src/ground_script_1.c b/src/ground_script_1.c index ba536a104..cc34579e1 100644 --- a/src/ground_script_1.c +++ b/src/ground_script_1.c @@ -20,29 +20,6 @@ #include "ground_main.h" #include "code_80A26CC.h" -typedef struct { - u8 xTiles; - u8 xFlags; - u8 yTiles; - u8 yFlags; -} PosInfo; -typedef struct GroundObjectData { - u8 kind; - u8 unk1; - u8 widthTiles; - u8 heightTiles; - PosInfo pos; - ScriptCommand *scripts[4]; // 2 - dialogue script -} GroundObjectData; -typedef struct GroundEffectData { - u8 kind; - u8 unk1; - u8 widthTiles; //??? - u8 heightTiles; - PosInfo pos; - ScriptCommand *script; -} GroundEffectData; - void GroundMap_Select(s16); void GroundMap_SelectDungeon(s16, DungeonLocation*, u8); void GroundMap_ExecuteEnter(s16); @@ -103,14 +80,14 @@ bool8 ScriptPrintEmptyTextbox(void); void sub_809A83C(s16); u32 sub_809AC7C(); u32 sub_809ADD8(); -bool8 ScriptPrintText(s32, s16, char*); -bool8 sub_809AEEC(char*); -bool8 sub_809AF2C(char*); -bool8 sub_809AF6C(s16, char*); -void sub_809AFC8(bool8, s32, s32, char*); +bool8 ScriptPrintText(s32, s16, const char*); +bool8 sub_809AEEC(const char*); +bool8 sub_809AF2C(const char*); +bool8 sub_809AF6C(s16, const char*); +void sub_809AFC8(bool8, s32, s32, const char*); u32 sub_809B028(); bool8 sub_809B1C0(s32, s32, char[12]); -void sub_809B1D4(u8, s32, s32, char*); +void sub_809B1D4(u8, s32, s32, const char*); void sub_809C770(s16, s16); s32 HasItemInInventory(u8); u32 sub_809CC90(); @@ -158,12 +135,10 @@ extern s16 gCurrentMap; extern s16 gUnknown_2039A32; extern s16 gUnknown_2039A34; -extern struct { char *unk0; s32 unk4; } gChoices[9]; +extern struct { const char *unk0; s32 unk4; } gChoices[9]; extern char gUnknown_2039D98[12]; extern int gNumChoices; -extern FunctionScript gFunctionScriptTable[]; - extern Position32 gUnknown_81164DC; extern char gUnknown_81165D4[]; extern char gUnknown_81165F4[]; @@ -436,8 +411,8 @@ s32 ExecuteScriptCommand(Action *action) { action->callbacks->getDirection(action->parentObject, unk); obj = ({ GroundObjectData obj = { .unk1 = *unk, - .widthTiles = 1, - .heightTiles = 1, + .width = 1, + .height = 1, .pos = {}, .kind = curCmd.arg2, .scripts = { [3] = gFunctionScriptTable[curCmd.arg1].script }, @@ -463,8 +438,8 @@ s32 ExecuteScriptCommand(Action *action) { action->callbacks->getDirection(action->parentObject, &unk); eff = ({ GroundEffectData eff = { .unk1 = unk, - .widthTiles = 1, - .heightTiles = 1, + .width = 1, + .height = 1, .pos = {}, .kind = curCmd.arg2, .script = gFunctionScriptTable[curCmd.arg1].script, @@ -1706,7 +1681,7 @@ s32 ExecuteScriptCommand(Action *action) { break; } case 0xd2 ... 0xd8: { - char *out = curCmd.argPtr; + const char *out = curCmd.argPtr; gNumChoices = 0; scriptData->branchDiscriminant = 0; switch(curCmd.op) { @@ -1865,11 +1840,11 @@ UNUSED bool8 GroundScript_ExecuteTrigger(s16 r0) s32 ret; ScriptInfoSmall scriptInfo; Action action; - FunctionScript *ptr; + const ScriptRef *ptr; ptr = &gFunctionScriptTable[r0]; - if(ptr->unk2 != 0xB) + if(ptr->type != 0xB) return FALSE; InitActionWithParams(&action, &gGroundScriptTriggerCallbacks, NULL, 0, 0); GetFunctionScript(NULL, &scriptInfo, r0); diff --git a/src/ground_script_2.c b/src/ground_script_2.c index ff64a806e..004db16f8 100644 --- a/src/ground_script_2.c +++ b/src/ground_script_2.c @@ -56,11 +56,11 @@ s32 GroundEffectsNotifyAll(s16); // } // } -ScriptCommand *FindLabel(Action *action, s32 r1) +const ScriptCommand *FindLabel(Action *action, s32 r1) { ScriptCommand script; - ScriptCommand *scriptPtr2; - ScriptCommand *scriptPtr; + const ScriptCommand *scriptPtr2; + const ScriptCommand *scriptPtr; scriptPtr2 = action->scriptData.script.ptr2; scriptPtr = scriptPtr2 + 1; @@ -77,10 +77,10 @@ ScriptCommand *FindLabel(Action *action, s32 r1) } } -ScriptCommand *ResolveJump(Action *action, s32 r1) +const ScriptCommand *ResolveJump(Action *action, s32 r1) { ScriptCommand script; - ScriptCommand *scriptPtr; + const ScriptCommand *scriptPtr; s32 temp; scriptPtr = action->scriptData.script.ptr; diff --git a/tmp/renames.sed b/tmp/renames.sed index d1cd647a2..80972f68e 100644 --- a/tmp/renames.sed +++ b/tmp/renames.sed @@ -1,13 +1,536 @@ -s/gUnknown_80FF22C/gMovementTutorial/g -s/gUnknown_80FF290/gHungerTutorial/g -s/gUnknown_80FF310/gFoodTutorial/g -s/gUnknown_80FF394/gOranTutorial/g -s/gUnknown_80FF3E8/gCheriTutorial/g -s/gUnknown_80FF440/gBlastSeedTutorial/g -s/gUnknown_80FF490/gGravelerockTutorial/g -s/gUnknown_80FF518/gPechaTutorial/g -s/gUnknown_80FF57C/gSleepSeedTutorial/g -s/gUnknown_80FF5E8/gMoneyTutorial/g -s/sub_8052EC0/HandleOnPickupTutorial/g -s/sub_80981A0/GetTutorialFlag/g -s/sub_8098170/SetTutorialFlag/g +s/gUnknown_8138254/gGroundScript_gs0/g +s/gUnknown_817D5F8/gGroundScript_gs1/g +s/gUnknown_8189954/gGroundScript_gs2/g +s/gUnknown_8197A08/gGroundScript_gs4/g +s/gUnknown_8198E0C/gGroundScript_gs5/g +s/gUnknown_819A3C4/gGroundScript_gs6/g +s/gUnknown_819A73C/gGroundScript_gs7/g +s/gUnknown_819AD04/gGroundScript_gs8/g +s/gUnknown_81E1940/gGroundScript_gs9/g +s/gUnknown_81EE214/gGroundScript_gs12/g +s/gUnknown_81EEAFC/gGroundScript_gs105/g +s/gUnknown_81EF524/gGroundScript_gs106/g +s/gUnknown_81EFCAC/gGroundScript_gs107/g +s/gUnknown_81F07B4/gGroundScript_gs108/g +s/gUnknown_81F0DEC/gGroundScript_gs109/g +s/gUnknown_81F1424/gGroundScript_gs110/g +s/gUnknown_81F1C8C/gGroundScript_gs111/g +s/gUnknown_81F2770/gGroundScript_gs112/g +s/gUnknown_81F3110/gGroundScript_gs113/g +s/gUnknown_81F3954/gGroundScript_gs114/g +s/gUnknown_81F3F8C/gGroundScript_gs115/g +s/gUnknown_81F4B04/gGroundScript_gs116/g +s/gUnknown_81F560C/gGroundScript_gs117/g +s/gUnknown_81F6184/gGroundScript_gs118/g +s/gUnknown_81F6DDC/gGroundScript_gs119/g +s/gUnknown_81F7804/gGroundScript_gs120/g +s/gUnknown_81F7F1C/gGroundScript_gs121/g +s/gUnknown_81F8B04/gGroundScript_gs122/g +s/gUnknown_81F95F4/gGroundScript_gs123/g +s/gUnknown_81F9F88/gGroundScript_gs124/g +s/gUnknown_81FAC2C/gGroundScript_gs125/g +s/gUnknown_81FB4D4/gGroundScript_gs126/g +s/gUnknown_81FBB64/gGroundScript_gs127/g +s/gUnknown_81FC3F4/gGroundScript_gs128/g +s/gUnknown_81FCDAC/gGroundScript_gs129/g +s/gUnknown_81FD754/gGroundScript_gs130/g +s/gUnknown_81FE0E8/gGroundScript_gs131/g +s/gUnknown_81FEB10/gGroundScript_gs132/g +s/gUnknown_81FF274/gGroundScript_gs133/g +s/gUnknown_81FFA9C/gGroundScript_gs134/g +s/gUnknown_8200374/gGroundScript_gs135/g +s/gUnknown_8200BDC/gGroundScript_gs136/g +s/gUnknown_8201674/gGroundScript_gs137/g +s/gUnknown_8201CAC/gGroundScript_gs138/g +s/gUnknown_8202434/gGroundScript_gs139/g +s/gUnknown_8202BA4/gGroundScript_gs140/g +s/gUnknown_820371C/gGroundScript_gs141/g +s/gUnknown_8203FD0/gGroundScript_gs142/g +s/gUnknown_8204A68/gGroundScript_gs143/g +s/gUnknown_8205500/gGroundScript_gs144/g +s/gUnknown_8205DD8/gGroundScript_gs145/g +s/gUnknown_82066B0/gGroundScript_gs146/g +s/gUnknown_8206F88/gGroundScript_gs147/g +s/gUnknown_8207B58/gGroundScript_gs148/g +s/gUnknown_8208728/gGroundScript_gs149/g +s/gUnknown_8208F90/gGroundScript_gs150/g +s/gUnknown_8209B08/gGroundScript_gs151/g +s/gUnknown_820A3E0/gGroundScript_gs152/g +s/gUnknown_820AC48/gGroundScript_gs153/g +s/gUnknown_820B280/gGroundScript_gs154/g +s/gUnknown_820B8B8/gGroundScript_gs155/g +s/gUnknown_820C120/gGroundScript_gs156/g +s/gUnknown_820C884/gGroundScript_gs157/g +s/gUnknown_820EA04/gGroundScript_gs158/g +s/gUnknown_820F0AC/gGroundScript_gs159/g +s/gUnknown_820F6E4/gGroundScript_gs160/g +s/gUnknown_820FD1C/gGroundScript_gs161/g +s/gUnknown_82163C0/gGroundScript_gs162/g +s/gUnknown_821812C/gGroundScript_gs163/g +s/gUnknown_821858C/gGroundScript_gs164/g +s/gUnknown_8218BA8/gGroundScript_gs165/g +s/gUnknown_8219770/gGroundScript_gs166/g +s/gUnknown_821BA10/gGroundScript_gs167/g +s/gUnknown_821CE8C/gGroundScript_gs168/g +s/gUnknown_821D1D0/gGroundScript_gs169/g +s/gUnknown_821F9A8/gGroundScript_gs170/g +s/gUnknown_82298A0/gGroundScript_gs171/g +s/gUnknown_8229B18/gGroundScript_gs172/g +s/gUnknown_822A110/gGroundScript_gs173/g +s/gUnknown_822AF6C/gGroundScript_gs174/g +s/gUnknown_822B658/gGroundScript_gs175/g +s/gUnknown_822BDD4/gGroundScript_gs176/g +s/gUnknown_822C234/gGroundScript_gs177/g +s/gUnknown_822FCA8/gGroundScript_gs178/g +s/gUnknown_82302E4/gGroundScript_gs179/g +s/gUnknown_8231C5C/gGroundScript_gs180/g +s/gUnknown_8232110/gGroundScript_gs181/g +s/gUnknown_8233244/gGroundScript_gs182/g +s/gUnknown_82342E0/gGroundScript_gs183/g +s/gUnknown_8234C7C/gGroundScript_gs184/g +s/gUnknown_82359F0/gGroundScript_gs185/g +s/gUnknown_8237B64/gGroundScript_gs186/g +s/gUnknown_8239164/gGroundScript_gs187/g +s/gUnknown_8239E3C/gGroundScript_gs188/g +s/gUnknown_823AA00/gGroundScript_gs189/g +s/gUnknown_823D7C8/gGroundScript_gs190/g +s/gUnknown_823E234/gGroundScript_gs191/g +s/gUnknown_8242BA4/gGroundScript_gs192/g +s/gUnknown_8245500/gGroundScript_gs193/g +s/gUnknown_8245CB4/gGroundScript_gs194/g +s/gUnknown_8248A40/gGroundScript_gs195/g +s/gUnknown_82496E8/gGroundScript_gs196/g +s/gUnknown_824BBE8/gGroundScript_gs197/g +s/gUnknown_824E700/gGroundScript_gs198/g +s/gUnknown_824FA10/gGroundScript_gs199/g +s/gUnknown_8251F30/gGroundScript_gs200/g +s/gUnknown_825568C/gGroundScript_gs201/g +s/gUnknown_8256520/gGroundScript_gs202/g +s/gUnknown_825CE20/gGroundScript_gs203/g +s/gUnknown_825DCB8/gGroundScript_gs204/g +s/gUnknown_825E844/gGroundScript_gs205/g +s/gUnknown_825FF54/gGroundScript_gs206/g +s/gUnknown_82614F8/gGroundScript_gs207/g +s/gUnknown_8262094/gGroundScript_gs208/g +s/gUnknown_8263ED0/gGroundScript_gs209/g +s/gUnknown_8264144/gGroundScript_gs210/g +s/gUnknown_8264820/gGroundScript_gs211/g +s/gUnknown_826562C/gGroundScript_gs212/g +s/gUnknown_82664BC/gGroundScript_gs213/g +s/gUnknown_82673B4/gGroundScript_gs214/g +s/gUnknown_8267AB4/gGroundScript_gs215/g +s/gUnknown_8269740/gGroundScript_gs216/g +s/gUnknown_8269D60/gGroundScript_gs217/g +s/gUnknown_826A590/gGroundScript_gs218/g +s/gUnknown_826A9F8/gGroundScript_gs219/g +s/gUnknown_826D720/gGroundScript_gs220/g +s/gUnknown_826DB04/gGroundScript_gs221/g +s/gUnknown_826DF6C/gGroundScript_gs222/g +s/gUnknown_826E288/gGroundScript_gs223/g +s/gUnknown_826EC44/gGroundScript_gs224/g +s/gUnknown_826F1A0/gGroundScript_gs225/g +s/gUnknown_826F5A0/gGroundScript_gs226/g +s/gUnknown_826F7FC/gGroundScript_gs227/g +s/gUnknown_826F980/gGroundScript_gs228/g +s/gUnknown_8138254/gGroundScript_gs0/g +s/gUnknown_817D5F8/gGroundScript_gs1/g +s/gUnknown_8189954/gGroundScript_gs2/g +s/gUnknown_8197A08/gGroundScript_gs4/g +s/gUnknown_8198E0C/gGroundScript_gs5/g +s/gUnknown_819A3C4/gGroundScript_gs6/g +s/gUnknown_819A73C/gGroundScript_gs7/g +s/gUnknown_819AD04/gGroundScript_gs8/g +s/gUnknown_81E1940/gGroundScript_gs9/g +s/gUnknown_81EE214/gGroundScript_gs12/g +s/gUnknown_81EEAFC/gGroundScript_gs105/g +s/gUnknown_81EF524/gGroundScript_gs106/g +s/gUnknown_81EFCAC/gGroundScript_gs107/g +s/gUnknown_81F07B4/gGroundScript_gs108/g +s/gUnknown_81F0DEC/gGroundScript_gs109/g +s/gUnknown_81F1424/gGroundScript_gs110/g +s/gUnknown_81F1C8C/gGroundScript_gs111/g +s/gUnknown_81F2770/gGroundScript_gs112/g +s/gUnknown_81F3110/gGroundScript_gs113/g +s/gUnknown_81F3954/gGroundScript_gs114/g +s/gUnknown_81F3F8C/gGroundScript_gs115/g +s/gUnknown_81F4B04/gGroundScript_gs116/g +s/gUnknown_81F560C/gGroundScript_gs117/g +s/gUnknown_81F6184/gGroundScript_gs118/g +s/gUnknown_81F6DDC/gGroundScript_gs119/g +s/gUnknown_81F7804/gGroundScript_gs120/g +s/gUnknown_81F7F1C/gGroundScript_gs121/g +s/gUnknown_81F8B04/gGroundScript_gs122/g +s/gUnknown_81F95F4/gGroundScript_gs123/g +s/gUnknown_81F9F88/gGroundScript_gs124/g +s/gUnknown_81FAC2C/gGroundScript_gs125/g +s/gUnknown_81FB4D4/gGroundScript_gs126/g +s/gUnknown_81FBB64/gGroundScript_gs127/g +s/gUnknown_81FC3F4/gGroundScript_gs128/g +s/gUnknown_81FCDAC/gGroundScript_gs129/g +s/gUnknown_81FD754/gGroundScript_gs130/g +s/gUnknown_81FE0E8/gGroundScript_gs131/g +s/gUnknown_81FEB10/gGroundScript_gs132/g +s/gUnknown_81FF274/gGroundScript_gs133/g +s/gUnknown_81FFA9C/gGroundScript_gs134/g +s/gUnknown_8200374/gGroundScript_gs135/g +s/gUnknown_8200BDC/gGroundScript_gs136/g +s/gUnknown_8201674/gGroundScript_gs137/g +s/gUnknown_8201CAC/gGroundScript_gs138/g +s/gUnknown_8202434/gGroundScript_gs139/g +s/gUnknown_8202BA4/gGroundScript_gs140/g +s/gUnknown_820371C/gGroundScript_gs141/g +s/gUnknown_8203FD0/gGroundScript_gs142/g +s/gUnknown_8204A68/gGroundScript_gs143/g +s/gUnknown_8205500/gGroundScript_gs144/g +s/gUnknown_8205DD8/gGroundScript_gs145/g +s/gUnknown_82066B0/gGroundScript_gs146/g +s/gUnknown_8206F88/gGroundScript_gs147/g +s/gUnknown_8207B58/gGroundScript_gs148/g +s/gUnknown_8208728/gGroundScript_gs149/g +s/gUnknown_8208F90/gGroundScript_gs150/g +s/gUnknown_8209B08/gGroundScript_gs151/g +s/gUnknown_820A3E0/gGroundScript_gs152/g +s/gUnknown_820AC48/gGroundScript_gs153/g +s/gUnknown_820B280/gGroundScript_gs154/g +s/gUnknown_820B8B8/gGroundScript_gs155/g +s/gUnknown_820C120/gGroundScript_gs156/g +s/gUnknown_820C884/gGroundScript_gs157/g +s/gUnknown_820EA04/gGroundScript_gs158/g +s/gUnknown_820F0AC/gGroundScript_gs159/g +s/gUnknown_820F6E4/gGroundScript_gs160/g +s/gUnknown_820FD1C/gGroundScript_gs161/g +s/gUnknown_82163C0/gGroundScript_gs162/g +s/gUnknown_821812C/gGroundScript_gs163/g +s/gUnknown_821858C/gGroundScript_gs164/g +s/gUnknown_8218BA8/gGroundScript_gs165/g +s/gUnknown_8219770/gGroundScript_gs166/g +s/gUnknown_821BA10/gGroundScript_gs167/g +s/gUnknown_821CE8C/gGroundScript_gs168/g +s/gUnknown_821D1D0/gGroundScript_gs169/g +s/gUnknown_821F9A8/gGroundScript_gs170/g +s/gUnknown_82298A0/gGroundScript_gs171/g +s/gUnknown_8229B18/gGroundScript_gs172/g +s/gUnknown_822A110/gGroundScript_gs173/g +s/gUnknown_822AF6C/gGroundScript_gs174/g +s/gUnknown_822B658/gGroundScript_gs175/g +s/gUnknown_822BDD4/gGroundScript_gs176/g +s/gUnknown_822C234/gGroundScript_gs177/g +s/gUnknown_822FCA8/gGroundScript_gs178/g +s/gUnknown_82302E4/gGroundScript_gs179/g +s/gUnknown_8231C5C/gGroundScript_gs180/g +s/gUnknown_8232110/gGroundScript_gs181/g +s/gUnknown_8233244/gGroundScript_gs182/g +s/gUnknown_82342E0/gGroundScript_gs183/g +s/gUnknown_8234C7C/gGroundScript_gs184/g +s/gUnknown_82359F0/gGroundScript_gs185/g +s/gUnknown_8237B64/gGroundScript_gs186/g +s/gUnknown_8239164/gGroundScript_gs187/g +s/gUnknown_8239E3C/gGroundScript_gs188/g +s/gUnknown_823AA00/gGroundScript_gs189/g +s/gUnknown_823D7C8/gGroundScript_gs190/g +s/gUnknown_823E234/gGroundScript_gs191/g +s/gUnknown_8242BA4/gGroundScript_gs192/g +s/gUnknown_8245500/gGroundScript_gs193/g +s/gUnknown_8245CB4/gGroundScript_gs194/g +s/gUnknown_8248A40/gGroundScript_gs195/g +s/gUnknown_82496E8/gGroundScript_gs196/g +s/gUnknown_824BBE8/gGroundScript_gs197/g +s/gUnknown_824E700/gGroundScript_gs198/g +s/gUnknown_824FA10/gGroundScript_gs199/g +s/gUnknown_8251F30/gGroundScript_gs200/g +s/gUnknown_825568C/gGroundScript_gs201/g +s/gUnknown_8256520/gGroundScript_gs202/g +s/gUnknown_825CE20/gGroundScript_gs203/g +s/gUnknown_825DCB8/gGroundScript_gs204/g +s/gUnknown_825E844/gGroundScript_gs205/g +s/gUnknown_825FF54/gGroundScript_gs206/g +s/gUnknown_82614F8/gGroundScript_gs207/g +s/gUnknown_8262094/gGroundScript_gs208/g +s/gUnknown_8263ED0/gGroundScript_gs209/g +s/gUnknown_8264144/gGroundScript_gs210/g +s/gUnknown_8264820/gGroundScript_gs211/g +s/gUnknown_826562C/gGroundScript_gs212/g +s/gUnknown_82664BC/gGroundScript_gs213/g +s/gUnknown_82673B4/gGroundScript_gs214/g +s/gUnknown_8267AB4/gGroundScript_gs215/g +s/gUnknown_8269740/gGroundScript_gs216/g +s/gUnknown_8269D60/gGroundScript_gs217/g +s/gUnknown_826A590/gGroundScript_gs218/g +s/gUnknown_826A9F8/gGroundScript_gs219/g +s/gUnknown_826D720/gGroundScript_gs220/g +s/gUnknown_826DB04/gGroundScript_gs221/g +s/gUnknown_826DF6C/gGroundScript_gs222/g +s/gUnknown_826E288/gGroundScript_gs223/g +s/gUnknown_826EC44/gGroundScript_gs224/g +s/gUnknown_826F1A0/gGroundScript_gs225/g +s/gUnknown_826F5A0/gGroundScript_gs226/g +s/gUnknown_826F7FC/gGroundScript_gs227/g +s/gUnknown_826F980/gGroundScript_gs228/g +s/gUnknown_8138254/gGroundScript_gs0/g +s/gUnknown_817D5F8/gGroundScript_gs1/g +s/gUnknown_8189954/gGroundScript_gs2/g +s/gUnknown_8197A08/gGroundScript_gs4/g +s/gUnknown_8198E0C/gGroundScript_gs5/g +s/gUnknown_819A3C4/gGroundScript_gs6/g +s/gUnknown_819A73C/gGroundScript_gs7/g +s/gUnknown_819AD04/gGroundScript_gs8/g +s/gUnknown_81E1940/gGroundScript_gs9/g +s/gUnknown_81EE214/gGroundScript_gs12/g +s/gUnknown_81EEAFC/gGroundScript_gs105/g +s/gUnknown_81EF524/gGroundScript_gs106/g +s/gUnknown_81EFCAC/gGroundScript_gs107/g +s/gUnknown_81F07B4/gGroundScript_gs108/g +s/gUnknown_81F0DEC/gGroundScript_gs109/g +s/gUnknown_81F1424/gGroundScript_gs110/g +s/gUnknown_81F1C8C/gGroundScript_gs111/g +s/gUnknown_81F2770/gGroundScript_gs112/g +s/gUnknown_81F3110/gGroundScript_gs113/g +s/gUnknown_81F3954/gGroundScript_gs114/g +s/gUnknown_81F3F8C/gGroundScript_gs115/g +s/gUnknown_81F4B04/gGroundScript_gs116/g +s/gUnknown_81F560C/gGroundScript_gs117/g +s/gUnknown_81F6184/gGroundScript_gs118/g +s/gUnknown_81F6DDC/gGroundScript_gs119/g +s/gUnknown_81F7804/gGroundScript_gs120/g +s/gUnknown_81F7F1C/gGroundScript_gs121/g +s/gUnknown_81F8B04/gGroundScript_gs122/g +s/gUnknown_81F95F4/gGroundScript_gs123/g +s/gUnknown_81F9F88/gGroundScript_gs124/g +s/gUnknown_81FAC2C/gGroundScript_gs125/g +s/gUnknown_81FB4D4/gGroundScript_gs126/g +s/gUnknown_81FBB64/gGroundScript_gs127/g +s/gUnknown_81FC3F4/gGroundScript_gs128/g +s/gUnknown_81FCDAC/gGroundScript_gs129/g +s/gUnknown_81FD754/gGroundScript_gs130/g +s/gUnknown_81FE0E8/gGroundScript_gs131/g +s/gUnknown_81FEB10/gGroundScript_gs132/g +s/gUnknown_81FF274/gGroundScript_gs133/g +s/gUnknown_81FFA9C/gGroundScript_gs134/g +s/gUnknown_8200374/gGroundScript_gs135/g +s/gUnknown_8200BDC/gGroundScript_gs136/g +s/gUnknown_8201674/gGroundScript_gs137/g +s/gUnknown_8201CAC/gGroundScript_gs138/g +s/gUnknown_8202434/gGroundScript_gs139/g +s/gUnknown_8202BA4/gGroundScript_gs140/g +s/gUnknown_820371C/gGroundScript_gs141/g +s/gUnknown_8203FD0/gGroundScript_gs142/g +s/gUnknown_8204A68/gGroundScript_gs143/g +s/gUnknown_8205500/gGroundScript_gs144/g +s/gUnknown_8205DD8/gGroundScript_gs145/g +s/gUnknown_82066B0/gGroundScript_gs146/g +s/gUnknown_8206F88/gGroundScript_gs147/g +s/gUnknown_8207B58/gGroundScript_gs148/g +s/gUnknown_8208728/gGroundScript_gs149/g +s/gUnknown_8208F90/gGroundScript_gs150/g +s/gUnknown_8209B08/gGroundScript_gs151/g +s/gUnknown_820A3E0/gGroundScript_gs152/g +s/gUnknown_820AC48/gGroundScript_gs153/g +s/gUnknown_820B280/gGroundScript_gs154/g +s/gUnknown_820B8B8/gGroundScript_gs155/g +s/gUnknown_820C120/gGroundScript_gs156/g +s/gUnknown_820C884/gGroundScript_gs157/g +s/gUnknown_820EA04/gGroundScript_gs158/g +s/gUnknown_820F0AC/gGroundScript_gs159/g +s/gUnknown_820F6E4/gGroundScript_gs160/g +s/gUnknown_820FD1C/gGroundScript_gs161/g +s/gUnknown_82163C0/gGroundScript_gs162/g +s/gUnknown_821812C/gGroundScript_gs163/g +s/gUnknown_821858C/gGroundScript_gs164/g +s/gUnknown_8218BA8/gGroundScript_gs165/g +s/gUnknown_8219770/gGroundScript_gs166/g +s/gUnknown_821BA10/gGroundScript_gs167/g +s/gUnknown_821CE8C/gGroundScript_gs168/g +s/gUnknown_821D1D0/gGroundScript_gs169/g +s/gUnknown_821F9A8/gGroundScript_gs170/g +s/gUnknown_82298A0/gGroundScript_gs171/g +s/gUnknown_8229B18/gGroundScript_gs172/g +s/gUnknown_822A110/gGroundScript_gs173/g +s/gUnknown_822AF6C/gGroundScript_gs174/g +s/gUnknown_822B658/gGroundScript_gs175/g +s/gUnknown_822BDD4/gGroundScript_gs176/g +s/gUnknown_822C234/gGroundScript_gs177/g +s/gUnknown_822FCA8/gGroundScript_gs178/g +s/gUnknown_82302E4/gGroundScript_gs179/g +s/gUnknown_8231C5C/gGroundScript_gs180/g +s/gUnknown_8232110/gGroundScript_gs181/g +s/gUnknown_8233244/gGroundScript_gs182/g +s/gUnknown_82342E0/gGroundScript_gs183/g +s/gUnknown_8234C7C/gGroundScript_gs184/g +s/gUnknown_82359F0/gGroundScript_gs185/g +s/gUnknown_8237B64/gGroundScript_gs186/g +s/gUnknown_8239164/gGroundScript_gs187/g +s/gUnknown_8239E3C/gGroundScript_gs188/g +s/gUnknown_823AA00/gGroundScript_gs189/g +s/gUnknown_823D7C8/gGroundScript_gs190/g +s/gUnknown_823E234/gGroundScript_gs191/g +s/gUnknown_8242BA4/gGroundScript_gs192/g +s/gUnknown_8245500/gGroundScript_gs193/g +s/gUnknown_8245CB4/gGroundScript_gs194/g +s/gUnknown_8248A40/gGroundScript_gs195/g +s/gUnknown_82496E8/gGroundScript_gs196/g +s/gUnknown_824BBE8/gGroundScript_gs197/g +s/gUnknown_824E700/gGroundScript_gs198/g +s/gUnknown_824FA10/gGroundScript_gs199/g +s/gUnknown_8251F30/gGroundScript_gs200/g +s/gUnknown_825568C/gGroundScript_gs201/g +s/gUnknown_8256520/gGroundScript_gs202/g +s/gUnknown_825CE20/gGroundScript_gs203/g +s/gUnknown_825DCB8/gGroundScript_gs204/g +s/gUnknown_825E844/gGroundScript_gs205/g +s/gUnknown_825FF54/gGroundScript_gs206/g +s/gUnknown_82614F8/gGroundScript_gs207/g +s/gUnknown_8262094/gGroundScript_gs208/g +s/gUnknown_8263ED0/gGroundScript_gs209/g +s/gUnknown_8264144/gGroundScript_gs210/g +s/gUnknown_8264820/gGroundScript_gs211/g +s/gUnknown_826562C/gGroundScript_gs212/g +s/gUnknown_82664BC/gGroundScript_gs213/g +s/gUnknown_82673B4/gGroundScript_gs214/g +s/gUnknown_8267AB4/gGroundScript_gs215/g +s/gUnknown_8269740/gGroundScript_gs216/g +s/gUnknown_8269D60/gGroundScript_gs217/g +s/gUnknown_826A590/gGroundScript_gs218/g +s/gUnknown_826A9F8/gGroundScript_gs219/g +s/gUnknown_826D720/gGroundScript_gs220/g +s/gUnknown_826DB04/gGroundScript_gs221/g +s/gUnknown_826DF6C/gGroundScript_gs222/g +s/gUnknown_826E288/gGroundScript_gs223/g +s/gUnknown_826EC44/gGroundScript_gs224/g +s/gUnknown_826F1A0/gGroundScript_gs225/g +s/gUnknown_826F5A0/gGroundScript_gs226/g +s/gUnknown_826F7FC/gGroundScript_gs227/g +s/gUnknown_826F980/gGroundScript_gs228/g +s/gUnknown_8138254/gGroundScript_gs0/g +s/gUnknown_817D5F8/gGroundScript_gs1/g +s/gUnknown_8189954/gGroundScript_gs2/g +s/gUnknown_8197A08/gGroundScript_gs4/g +s/gUnknown_8198E0C/gGroundScript_gs5/g +s/gUnknown_819A3C4/gGroundScript_gs6/g +s/gUnknown_819A73C/gGroundScript_gs7/g +s/gUnknown_819AD04/gGroundScript_gs8/g +s/gUnknown_81E1940/gGroundScript_gs9/g +s/gUnknown_81EE214/gGroundScript_gs12/g +s/gUnknown_81EEAFC/gGroundScript_gs105/g +s/gUnknown_81EF524/gGroundScript_gs106/g +s/gUnknown_81EFCAC/gGroundScript_gs107/g +s/gUnknown_81F07B4/gGroundScript_gs108/g +s/gUnknown_81F0DEC/gGroundScript_gs109/g +s/gUnknown_81F1424/gGroundScript_gs110/g +s/gUnknown_81F1C8C/gGroundScript_gs111/g +s/gUnknown_81F2770/gGroundScript_gs112/g +s/gUnknown_81F3110/gGroundScript_gs113/g +s/gUnknown_81F3954/gGroundScript_gs114/g +s/gUnknown_81F3F8C/gGroundScript_gs115/g +s/gUnknown_81F4B04/gGroundScript_gs116/g +s/gUnknown_81F560C/gGroundScript_gs117/g +s/gUnknown_81F6184/gGroundScript_gs118/g +s/gUnknown_81F6DDC/gGroundScript_gs119/g +s/gUnknown_81F7804/gGroundScript_gs120/g +s/gUnknown_81F7F1C/gGroundScript_gs121/g +s/gUnknown_81F8B04/gGroundScript_gs122/g +s/gUnknown_81F95F4/gGroundScript_gs123/g +s/gUnknown_81F9F88/gGroundScript_gs124/g +s/gUnknown_81FAC2C/gGroundScript_gs125/g +s/gUnknown_81FB4D4/gGroundScript_gs126/g +s/gUnknown_81FBB64/gGroundScript_gs127/g +s/gUnknown_81FC3F4/gGroundScript_gs128/g +s/gUnknown_81FCDAC/gGroundScript_gs129/g +s/gUnknown_81FD754/gGroundScript_gs130/g +s/gUnknown_81FE0E8/gGroundScript_gs131/g +s/gUnknown_81FEB10/gGroundScript_gs132/g +s/gUnknown_81FF274/gGroundScript_gs133/g +s/gUnknown_81FFA9C/gGroundScript_gs134/g +s/gUnknown_8200374/gGroundScript_gs135/g +s/gUnknown_8200BDC/gGroundScript_gs136/g +s/gUnknown_8201674/gGroundScript_gs137/g +s/gUnknown_8201CAC/gGroundScript_gs138/g +s/gUnknown_8202434/gGroundScript_gs139/g +s/gUnknown_8202BA4/gGroundScript_gs140/g +s/gUnknown_820371C/gGroundScript_gs141/g +s/gUnknown_8203FD0/gGroundScript_gs142/g +s/gUnknown_8204A68/gGroundScript_gs143/g +s/gUnknown_8205500/gGroundScript_gs144/g +s/gUnknown_8205DD8/gGroundScript_gs145/g +s/gUnknown_82066B0/gGroundScript_gs146/g +s/gUnknown_8206F88/gGroundScript_gs147/g +s/gUnknown_8207B58/gGroundScript_gs148/g +s/gUnknown_8208728/gGroundScript_gs149/g +s/gUnknown_8208F90/gGroundScript_gs150/g +s/gUnknown_8209B08/gGroundScript_gs151/g +s/gUnknown_820A3E0/gGroundScript_gs152/g +s/gUnknown_820AC48/gGroundScript_gs153/g +s/gUnknown_820B280/gGroundScript_gs154/g +s/gUnknown_820B8B8/gGroundScript_gs155/g +s/gUnknown_820C120/gGroundScript_gs156/g +s/gUnknown_820C884/gGroundScript_gs157/g +s/gUnknown_820EA04/gGroundScript_gs158/g +s/gUnknown_820F0AC/gGroundScript_gs159/g +s/gUnknown_820F6E4/gGroundScript_gs160/g +s/gUnknown_820FD1C/gGroundScript_gs161/g +s/gUnknown_82163C0/gGroundScript_gs162/g +s/gUnknown_821812C/gGroundScript_gs163/g +s/gUnknown_821858C/gGroundScript_gs164/g +s/gUnknown_8218BA8/gGroundScript_gs165/g +s/gUnknown_8219770/gGroundScript_gs166/g +s/gUnknown_821BA10/gGroundScript_gs167/g +s/gUnknown_821CE8C/gGroundScript_gs168/g +s/gUnknown_821D1D0/gGroundScript_gs169/g +s/gUnknown_821F9A8/gGroundScript_gs170/g +s/gUnknown_82298A0/gGroundScript_gs171/g +s/gUnknown_8229B18/gGroundScript_gs172/g +s/gUnknown_822A110/gGroundScript_gs173/g +s/gUnknown_822AF6C/gGroundScript_gs174/g +s/gUnknown_822B658/gGroundScript_gs175/g +s/gUnknown_822BDD4/gGroundScript_gs176/g +s/gUnknown_822C234/gGroundScript_gs177/g +s/gUnknown_822FCA8/gGroundScript_gs178/g +s/gUnknown_82302E4/gGroundScript_gs179/g +s/gUnknown_8231C5C/gGroundScript_gs180/g +s/gUnknown_8232110/gGroundScript_gs181/g +s/gUnknown_8233244/gGroundScript_gs182/g +s/gUnknown_82342E0/gGroundScript_gs183/g +s/gUnknown_8234C7C/gGroundScript_gs184/g +s/gUnknown_82359F0/gGroundScript_gs185/g +s/gUnknown_8237B64/gGroundScript_gs186/g +s/gUnknown_8239164/gGroundScript_gs187/g +s/gUnknown_8239E3C/gGroundScript_gs188/g +s/gUnknown_823AA00/gGroundScript_gs189/g +s/gUnknown_823D7C8/gGroundScript_gs190/g +s/gUnknown_823E234/gGroundScript_gs191/g +s/gUnknown_8242BA4/gGroundScript_gs192/g +s/gUnknown_8245500/gGroundScript_gs193/g +s/gUnknown_8245CB4/gGroundScript_gs194/g +s/gUnknown_8248A40/gGroundScript_gs195/g +s/gUnknown_82496E8/gGroundScript_gs196/g +s/gUnknown_824BBE8/gGroundScript_gs197/g +s/gUnknown_824E700/gGroundScript_gs198/g +s/gUnknown_824FA10/gGroundScript_gs199/g +s/gUnknown_8251F30/gGroundScript_gs200/g +s/gUnknown_825568C/gGroundScript_gs201/g +s/gUnknown_8256520/gGroundScript_gs202/g +s/gUnknown_825CE20/gGroundScript_gs203/g +s/gUnknown_825DCB8/gGroundScript_gs204/g +s/gUnknown_825E844/gGroundScript_gs205/g +s/gUnknown_825FF54/gGroundScript_gs206/g +s/gUnknown_82614F8/gGroundScript_gs207/g +s/gUnknown_8262094/gGroundScript_gs208/g +s/gUnknown_8263ED0/gGroundScript_gs209/g +s/gUnknown_8264144/gGroundScript_gs210/g +s/gUnknown_8264820/gGroundScript_gs211/g +s/gUnknown_826562C/gGroundScript_gs212/g +s/gUnknown_82664BC/gGroundScript_gs213/g +s/gUnknown_82673B4/gGroundScript_gs214/g +s/gUnknown_8267AB4/gGroundScript_gs215/g +s/gUnknown_8269740/gGroundScript_gs216/g +s/gUnknown_8269D60/gGroundScript_gs217/g +s/gUnknown_826A590/gGroundScript_gs218/g +s/gUnknown_826A9F8/gGroundScript_gs219/g +s/gUnknown_826D720/gGroundScript_gs220/g +s/gUnknown_826DB04/gGroundScript_gs221/g +s/gUnknown_826DF6C/gGroundScript_gs222/g +s/gUnknown_826E288/gGroundScript_gs223/g +s/gUnknown_826EC44/gGroundScript_gs224/g +s/gUnknown_826F1A0/gGroundScript_gs225/g +s/gUnknown_826F5A0/gGroundScript_gs226/g +s/gUnknown_826F7FC/gGroundScript_gs227/g +s/gUnknown_826F980/gGroundScript_gs228/g From 094d27d15f37d58363cbc35befb5c9fb95733b2d Mon Sep 17 00:00:00 2001 From: Mateon1 Date: Mon, 14 Oct 2024 23:57:55 +0200 Subject: [PATCH 08/10] Remove renames file --- tmp/renames.sed | 536 ------------------------------------------------ 1 file changed, 536 deletions(-) delete mode 100644 tmp/renames.sed diff --git a/tmp/renames.sed b/tmp/renames.sed deleted file mode 100644 index 80972f68e..000000000 --- a/tmp/renames.sed +++ /dev/null @@ -1,536 +0,0 @@ -s/gUnknown_8138254/gGroundScript_gs0/g -s/gUnknown_817D5F8/gGroundScript_gs1/g -s/gUnknown_8189954/gGroundScript_gs2/g -s/gUnknown_8197A08/gGroundScript_gs4/g -s/gUnknown_8198E0C/gGroundScript_gs5/g -s/gUnknown_819A3C4/gGroundScript_gs6/g -s/gUnknown_819A73C/gGroundScript_gs7/g -s/gUnknown_819AD04/gGroundScript_gs8/g -s/gUnknown_81E1940/gGroundScript_gs9/g -s/gUnknown_81EE214/gGroundScript_gs12/g -s/gUnknown_81EEAFC/gGroundScript_gs105/g -s/gUnknown_81EF524/gGroundScript_gs106/g -s/gUnknown_81EFCAC/gGroundScript_gs107/g -s/gUnknown_81F07B4/gGroundScript_gs108/g -s/gUnknown_81F0DEC/gGroundScript_gs109/g -s/gUnknown_81F1424/gGroundScript_gs110/g -s/gUnknown_81F1C8C/gGroundScript_gs111/g -s/gUnknown_81F2770/gGroundScript_gs112/g -s/gUnknown_81F3110/gGroundScript_gs113/g -s/gUnknown_81F3954/gGroundScript_gs114/g -s/gUnknown_81F3F8C/gGroundScript_gs115/g -s/gUnknown_81F4B04/gGroundScript_gs116/g -s/gUnknown_81F560C/gGroundScript_gs117/g -s/gUnknown_81F6184/gGroundScript_gs118/g -s/gUnknown_81F6DDC/gGroundScript_gs119/g -s/gUnknown_81F7804/gGroundScript_gs120/g -s/gUnknown_81F7F1C/gGroundScript_gs121/g -s/gUnknown_81F8B04/gGroundScript_gs122/g -s/gUnknown_81F95F4/gGroundScript_gs123/g -s/gUnknown_81F9F88/gGroundScript_gs124/g -s/gUnknown_81FAC2C/gGroundScript_gs125/g -s/gUnknown_81FB4D4/gGroundScript_gs126/g -s/gUnknown_81FBB64/gGroundScript_gs127/g -s/gUnknown_81FC3F4/gGroundScript_gs128/g -s/gUnknown_81FCDAC/gGroundScript_gs129/g -s/gUnknown_81FD754/gGroundScript_gs130/g -s/gUnknown_81FE0E8/gGroundScript_gs131/g -s/gUnknown_81FEB10/gGroundScript_gs132/g -s/gUnknown_81FF274/gGroundScript_gs133/g -s/gUnknown_81FFA9C/gGroundScript_gs134/g -s/gUnknown_8200374/gGroundScript_gs135/g -s/gUnknown_8200BDC/gGroundScript_gs136/g -s/gUnknown_8201674/gGroundScript_gs137/g -s/gUnknown_8201CAC/gGroundScript_gs138/g -s/gUnknown_8202434/gGroundScript_gs139/g -s/gUnknown_8202BA4/gGroundScript_gs140/g -s/gUnknown_820371C/gGroundScript_gs141/g -s/gUnknown_8203FD0/gGroundScript_gs142/g -s/gUnknown_8204A68/gGroundScript_gs143/g -s/gUnknown_8205500/gGroundScript_gs144/g -s/gUnknown_8205DD8/gGroundScript_gs145/g -s/gUnknown_82066B0/gGroundScript_gs146/g -s/gUnknown_8206F88/gGroundScript_gs147/g -s/gUnknown_8207B58/gGroundScript_gs148/g -s/gUnknown_8208728/gGroundScript_gs149/g -s/gUnknown_8208F90/gGroundScript_gs150/g -s/gUnknown_8209B08/gGroundScript_gs151/g -s/gUnknown_820A3E0/gGroundScript_gs152/g -s/gUnknown_820AC48/gGroundScript_gs153/g -s/gUnknown_820B280/gGroundScript_gs154/g -s/gUnknown_820B8B8/gGroundScript_gs155/g -s/gUnknown_820C120/gGroundScript_gs156/g -s/gUnknown_820C884/gGroundScript_gs157/g -s/gUnknown_820EA04/gGroundScript_gs158/g -s/gUnknown_820F0AC/gGroundScript_gs159/g -s/gUnknown_820F6E4/gGroundScript_gs160/g -s/gUnknown_820FD1C/gGroundScript_gs161/g -s/gUnknown_82163C0/gGroundScript_gs162/g -s/gUnknown_821812C/gGroundScript_gs163/g -s/gUnknown_821858C/gGroundScript_gs164/g -s/gUnknown_8218BA8/gGroundScript_gs165/g -s/gUnknown_8219770/gGroundScript_gs166/g -s/gUnknown_821BA10/gGroundScript_gs167/g -s/gUnknown_821CE8C/gGroundScript_gs168/g -s/gUnknown_821D1D0/gGroundScript_gs169/g -s/gUnknown_821F9A8/gGroundScript_gs170/g -s/gUnknown_82298A0/gGroundScript_gs171/g -s/gUnknown_8229B18/gGroundScript_gs172/g -s/gUnknown_822A110/gGroundScript_gs173/g -s/gUnknown_822AF6C/gGroundScript_gs174/g -s/gUnknown_822B658/gGroundScript_gs175/g -s/gUnknown_822BDD4/gGroundScript_gs176/g -s/gUnknown_822C234/gGroundScript_gs177/g -s/gUnknown_822FCA8/gGroundScript_gs178/g -s/gUnknown_82302E4/gGroundScript_gs179/g -s/gUnknown_8231C5C/gGroundScript_gs180/g -s/gUnknown_8232110/gGroundScript_gs181/g -s/gUnknown_8233244/gGroundScript_gs182/g -s/gUnknown_82342E0/gGroundScript_gs183/g -s/gUnknown_8234C7C/gGroundScript_gs184/g -s/gUnknown_82359F0/gGroundScript_gs185/g -s/gUnknown_8237B64/gGroundScript_gs186/g -s/gUnknown_8239164/gGroundScript_gs187/g -s/gUnknown_8239E3C/gGroundScript_gs188/g -s/gUnknown_823AA00/gGroundScript_gs189/g -s/gUnknown_823D7C8/gGroundScript_gs190/g -s/gUnknown_823E234/gGroundScript_gs191/g -s/gUnknown_8242BA4/gGroundScript_gs192/g -s/gUnknown_8245500/gGroundScript_gs193/g -s/gUnknown_8245CB4/gGroundScript_gs194/g -s/gUnknown_8248A40/gGroundScript_gs195/g -s/gUnknown_82496E8/gGroundScript_gs196/g -s/gUnknown_824BBE8/gGroundScript_gs197/g -s/gUnknown_824E700/gGroundScript_gs198/g -s/gUnknown_824FA10/gGroundScript_gs199/g -s/gUnknown_8251F30/gGroundScript_gs200/g -s/gUnknown_825568C/gGroundScript_gs201/g -s/gUnknown_8256520/gGroundScript_gs202/g -s/gUnknown_825CE20/gGroundScript_gs203/g -s/gUnknown_825DCB8/gGroundScript_gs204/g -s/gUnknown_825E844/gGroundScript_gs205/g -s/gUnknown_825FF54/gGroundScript_gs206/g -s/gUnknown_82614F8/gGroundScript_gs207/g -s/gUnknown_8262094/gGroundScript_gs208/g -s/gUnknown_8263ED0/gGroundScript_gs209/g -s/gUnknown_8264144/gGroundScript_gs210/g -s/gUnknown_8264820/gGroundScript_gs211/g -s/gUnknown_826562C/gGroundScript_gs212/g -s/gUnknown_82664BC/gGroundScript_gs213/g -s/gUnknown_82673B4/gGroundScript_gs214/g -s/gUnknown_8267AB4/gGroundScript_gs215/g -s/gUnknown_8269740/gGroundScript_gs216/g -s/gUnknown_8269D60/gGroundScript_gs217/g -s/gUnknown_826A590/gGroundScript_gs218/g -s/gUnknown_826A9F8/gGroundScript_gs219/g -s/gUnknown_826D720/gGroundScript_gs220/g -s/gUnknown_826DB04/gGroundScript_gs221/g -s/gUnknown_826DF6C/gGroundScript_gs222/g -s/gUnknown_826E288/gGroundScript_gs223/g -s/gUnknown_826EC44/gGroundScript_gs224/g -s/gUnknown_826F1A0/gGroundScript_gs225/g -s/gUnknown_826F5A0/gGroundScript_gs226/g -s/gUnknown_826F7FC/gGroundScript_gs227/g -s/gUnknown_826F980/gGroundScript_gs228/g -s/gUnknown_8138254/gGroundScript_gs0/g -s/gUnknown_817D5F8/gGroundScript_gs1/g -s/gUnknown_8189954/gGroundScript_gs2/g -s/gUnknown_8197A08/gGroundScript_gs4/g -s/gUnknown_8198E0C/gGroundScript_gs5/g -s/gUnknown_819A3C4/gGroundScript_gs6/g -s/gUnknown_819A73C/gGroundScript_gs7/g -s/gUnknown_819AD04/gGroundScript_gs8/g -s/gUnknown_81E1940/gGroundScript_gs9/g -s/gUnknown_81EE214/gGroundScript_gs12/g -s/gUnknown_81EEAFC/gGroundScript_gs105/g -s/gUnknown_81EF524/gGroundScript_gs106/g -s/gUnknown_81EFCAC/gGroundScript_gs107/g -s/gUnknown_81F07B4/gGroundScript_gs108/g -s/gUnknown_81F0DEC/gGroundScript_gs109/g -s/gUnknown_81F1424/gGroundScript_gs110/g -s/gUnknown_81F1C8C/gGroundScript_gs111/g -s/gUnknown_81F2770/gGroundScript_gs112/g -s/gUnknown_81F3110/gGroundScript_gs113/g -s/gUnknown_81F3954/gGroundScript_gs114/g -s/gUnknown_81F3F8C/gGroundScript_gs115/g -s/gUnknown_81F4B04/gGroundScript_gs116/g -s/gUnknown_81F560C/gGroundScript_gs117/g -s/gUnknown_81F6184/gGroundScript_gs118/g -s/gUnknown_81F6DDC/gGroundScript_gs119/g -s/gUnknown_81F7804/gGroundScript_gs120/g -s/gUnknown_81F7F1C/gGroundScript_gs121/g -s/gUnknown_81F8B04/gGroundScript_gs122/g -s/gUnknown_81F95F4/gGroundScript_gs123/g -s/gUnknown_81F9F88/gGroundScript_gs124/g -s/gUnknown_81FAC2C/gGroundScript_gs125/g -s/gUnknown_81FB4D4/gGroundScript_gs126/g -s/gUnknown_81FBB64/gGroundScript_gs127/g -s/gUnknown_81FC3F4/gGroundScript_gs128/g -s/gUnknown_81FCDAC/gGroundScript_gs129/g -s/gUnknown_81FD754/gGroundScript_gs130/g -s/gUnknown_81FE0E8/gGroundScript_gs131/g -s/gUnknown_81FEB10/gGroundScript_gs132/g -s/gUnknown_81FF274/gGroundScript_gs133/g -s/gUnknown_81FFA9C/gGroundScript_gs134/g -s/gUnknown_8200374/gGroundScript_gs135/g -s/gUnknown_8200BDC/gGroundScript_gs136/g -s/gUnknown_8201674/gGroundScript_gs137/g -s/gUnknown_8201CAC/gGroundScript_gs138/g -s/gUnknown_8202434/gGroundScript_gs139/g -s/gUnknown_8202BA4/gGroundScript_gs140/g -s/gUnknown_820371C/gGroundScript_gs141/g -s/gUnknown_8203FD0/gGroundScript_gs142/g -s/gUnknown_8204A68/gGroundScript_gs143/g -s/gUnknown_8205500/gGroundScript_gs144/g -s/gUnknown_8205DD8/gGroundScript_gs145/g -s/gUnknown_82066B0/gGroundScript_gs146/g -s/gUnknown_8206F88/gGroundScript_gs147/g -s/gUnknown_8207B58/gGroundScript_gs148/g -s/gUnknown_8208728/gGroundScript_gs149/g -s/gUnknown_8208F90/gGroundScript_gs150/g -s/gUnknown_8209B08/gGroundScript_gs151/g -s/gUnknown_820A3E0/gGroundScript_gs152/g -s/gUnknown_820AC48/gGroundScript_gs153/g -s/gUnknown_820B280/gGroundScript_gs154/g -s/gUnknown_820B8B8/gGroundScript_gs155/g -s/gUnknown_820C120/gGroundScript_gs156/g -s/gUnknown_820C884/gGroundScript_gs157/g -s/gUnknown_820EA04/gGroundScript_gs158/g -s/gUnknown_820F0AC/gGroundScript_gs159/g -s/gUnknown_820F6E4/gGroundScript_gs160/g -s/gUnknown_820FD1C/gGroundScript_gs161/g -s/gUnknown_82163C0/gGroundScript_gs162/g -s/gUnknown_821812C/gGroundScript_gs163/g -s/gUnknown_821858C/gGroundScript_gs164/g -s/gUnknown_8218BA8/gGroundScript_gs165/g -s/gUnknown_8219770/gGroundScript_gs166/g -s/gUnknown_821BA10/gGroundScript_gs167/g -s/gUnknown_821CE8C/gGroundScript_gs168/g -s/gUnknown_821D1D0/gGroundScript_gs169/g -s/gUnknown_821F9A8/gGroundScript_gs170/g -s/gUnknown_82298A0/gGroundScript_gs171/g -s/gUnknown_8229B18/gGroundScript_gs172/g -s/gUnknown_822A110/gGroundScript_gs173/g -s/gUnknown_822AF6C/gGroundScript_gs174/g -s/gUnknown_822B658/gGroundScript_gs175/g -s/gUnknown_822BDD4/gGroundScript_gs176/g -s/gUnknown_822C234/gGroundScript_gs177/g -s/gUnknown_822FCA8/gGroundScript_gs178/g -s/gUnknown_82302E4/gGroundScript_gs179/g -s/gUnknown_8231C5C/gGroundScript_gs180/g -s/gUnknown_8232110/gGroundScript_gs181/g -s/gUnknown_8233244/gGroundScript_gs182/g -s/gUnknown_82342E0/gGroundScript_gs183/g -s/gUnknown_8234C7C/gGroundScript_gs184/g -s/gUnknown_82359F0/gGroundScript_gs185/g -s/gUnknown_8237B64/gGroundScript_gs186/g -s/gUnknown_8239164/gGroundScript_gs187/g -s/gUnknown_8239E3C/gGroundScript_gs188/g -s/gUnknown_823AA00/gGroundScript_gs189/g -s/gUnknown_823D7C8/gGroundScript_gs190/g -s/gUnknown_823E234/gGroundScript_gs191/g -s/gUnknown_8242BA4/gGroundScript_gs192/g -s/gUnknown_8245500/gGroundScript_gs193/g -s/gUnknown_8245CB4/gGroundScript_gs194/g -s/gUnknown_8248A40/gGroundScript_gs195/g -s/gUnknown_82496E8/gGroundScript_gs196/g -s/gUnknown_824BBE8/gGroundScript_gs197/g -s/gUnknown_824E700/gGroundScript_gs198/g -s/gUnknown_824FA10/gGroundScript_gs199/g -s/gUnknown_8251F30/gGroundScript_gs200/g -s/gUnknown_825568C/gGroundScript_gs201/g -s/gUnknown_8256520/gGroundScript_gs202/g -s/gUnknown_825CE20/gGroundScript_gs203/g -s/gUnknown_825DCB8/gGroundScript_gs204/g -s/gUnknown_825E844/gGroundScript_gs205/g -s/gUnknown_825FF54/gGroundScript_gs206/g -s/gUnknown_82614F8/gGroundScript_gs207/g -s/gUnknown_8262094/gGroundScript_gs208/g -s/gUnknown_8263ED0/gGroundScript_gs209/g -s/gUnknown_8264144/gGroundScript_gs210/g -s/gUnknown_8264820/gGroundScript_gs211/g -s/gUnknown_826562C/gGroundScript_gs212/g -s/gUnknown_82664BC/gGroundScript_gs213/g -s/gUnknown_82673B4/gGroundScript_gs214/g -s/gUnknown_8267AB4/gGroundScript_gs215/g -s/gUnknown_8269740/gGroundScript_gs216/g -s/gUnknown_8269D60/gGroundScript_gs217/g -s/gUnknown_826A590/gGroundScript_gs218/g -s/gUnknown_826A9F8/gGroundScript_gs219/g -s/gUnknown_826D720/gGroundScript_gs220/g -s/gUnknown_826DB04/gGroundScript_gs221/g -s/gUnknown_826DF6C/gGroundScript_gs222/g -s/gUnknown_826E288/gGroundScript_gs223/g -s/gUnknown_826EC44/gGroundScript_gs224/g -s/gUnknown_826F1A0/gGroundScript_gs225/g -s/gUnknown_826F5A0/gGroundScript_gs226/g -s/gUnknown_826F7FC/gGroundScript_gs227/g -s/gUnknown_826F980/gGroundScript_gs228/g -s/gUnknown_8138254/gGroundScript_gs0/g -s/gUnknown_817D5F8/gGroundScript_gs1/g -s/gUnknown_8189954/gGroundScript_gs2/g -s/gUnknown_8197A08/gGroundScript_gs4/g -s/gUnknown_8198E0C/gGroundScript_gs5/g -s/gUnknown_819A3C4/gGroundScript_gs6/g -s/gUnknown_819A73C/gGroundScript_gs7/g -s/gUnknown_819AD04/gGroundScript_gs8/g -s/gUnknown_81E1940/gGroundScript_gs9/g -s/gUnknown_81EE214/gGroundScript_gs12/g -s/gUnknown_81EEAFC/gGroundScript_gs105/g -s/gUnknown_81EF524/gGroundScript_gs106/g -s/gUnknown_81EFCAC/gGroundScript_gs107/g -s/gUnknown_81F07B4/gGroundScript_gs108/g -s/gUnknown_81F0DEC/gGroundScript_gs109/g -s/gUnknown_81F1424/gGroundScript_gs110/g -s/gUnknown_81F1C8C/gGroundScript_gs111/g -s/gUnknown_81F2770/gGroundScript_gs112/g -s/gUnknown_81F3110/gGroundScript_gs113/g -s/gUnknown_81F3954/gGroundScript_gs114/g -s/gUnknown_81F3F8C/gGroundScript_gs115/g -s/gUnknown_81F4B04/gGroundScript_gs116/g -s/gUnknown_81F560C/gGroundScript_gs117/g -s/gUnknown_81F6184/gGroundScript_gs118/g -s/gUnknown_81F6DDC/gGroundScript_gs119/g -s/gUnknown_81F7804/gGroundScript_gs120/g -s/gUnknown_81F7F1C/gGroundScript_gs121/g -s/gUnknown_81F8B04/gGroundScript_gs122/g -s/gUnknown_81F95F4/gGroundScript_gs123/g -s/gUnknown_81F9F88/gGroundScript_gs124/g -s/gUnknown_81FAC2C/gGroundScript_gs125/g -s/gUnknown_81FB4D4/gGroundScript_gs126/g -s/gUnknown_81FBB64/gGroundScript_gs127/g -s/gUnknown_81FC3F4/gGroundScript_gs128/g -s/gUnknown_81FCDAC/gGroundScript_gs129/g -s/gUnknown_81FD754/gGroundScript_gs130/g -s/gUnknown_81FE0E8/gGroundScript_gs131/g -s/gUnknown_81FEB10/gGroundScript_gs132/g -s/gUnknown_81FF274/gGroundScript_gs133/g -s/gUnknown_81FFA9C/gGroundScript_gs134/g -s/gUnknown_8200374/gGroundScript_gs135/g -s/gUnknown_8200BDC/gGroundScript_gs136/g -s/gUnknown_8201674/gGroundScript_gs137/g -s/gUnknown_8201CAC/gGroundScript_gs138/g -s/gUnknown_8202434/gGroundScript_gs139/g -s/gUnknown_8202BA4/gGroundScript_gs140/g -s/gUnknown_820371C/gGroundScript_gs141/g -s/gUnknown_8203FD0/gGroundScript_gs142/g -s/gUnknown_8204A68/gGroundScript_gs143/g -s/gUnknown_8205500/gGroundScript_gs144/g -s/gUnknown_8205DD8/gGroundScript_gs145/g -s/gUnknown_82066B0/gGroundScript_gs146/g -s/gUnknown_8206F88/gGroundScript_gs147/g -s/gUnknown_8207B58/gGroundScript_gs148/g -s/gUnknown_8208728/gGroundScript_gs149/g -s/gUnknown_8208F90/gGroundScript_gs150/g -s/gUnknown_8209B08/gGroundScript_gs151/g -s/gUnknown_820A3E0/gGroundScript_gs152/g -s/gUnknown_820AC48/gGroundScript_gs153/g -s/gUnknown_820B280/gGroundScript_gs154/g -s/gUnknown_820B8B8/gGroundScript_gs155/g -s/gUnknown_820C120/gGroundScript_gs156/g -s/gUnknown_820C884/gGroundScript_gs157/g -s/gUnknown_820EA04/gGroundScript_gs158/g -s/gUnknown_820F0AC/gGroundScript_gs159/g -s/gUnknown_820F6E4/gGroundScript_gs160/g -s/gUnknown_820FD1C/gGroundScript_gs161/g -s/gUnknown_82163C0/gGroundScript_gs162/g -s/gUnknown_821812C/gGroundScript_gs163/g -s/gUnknown_821858C/gGroundScript_gs164/g -s/gUnknown_8218BA8/gGroundScript_gs165/g -s/gUnknown_8219770/gGroundScript_gs166/g -s/gUnknown_821BA10/gGroundScript_gs167/g -s/gUnknown_821CE8C/gGroundScript_gs168/g -s/gUnknown_821D1D0/gGroundScript_gs169/g -s/gUnknown_821F9A8/gGroundScript_gs170/g -s/gUnknown_82298A0/gGroundScript_gs171/g -s/gUnknown_8229B18/gGroundScript_gs172/g -s/gUnknown_822A110/gGroundScript_gs173/g -s/gUnknown_822AF6C/gGroundScript_gs174/g -s/gUnknown_822B658/gGroundScript_gs175/g -s/gUnknown_822BDD4/gGroundScript_gs176/g -s/gUnknown_822C234/gGroundScript_gs177/g -s/gUnknown_822FCA8/gGroundScript_gs178/g -s/gUnknown_82302E4/gGroundScript_gs179/g -s/gUnknown_8231C5C/gGroundScript_gs180/g -s/gUnknown_8232110/gGroundScript_gs181/g -s/gUnknown_8233244/gGroundScript_gs182/g -s/gUnknown_82342E0/gGroundScript_gs183/g -s/gUnknown_8234C7C/gGroundScript_gs184/g -s/gUnknown_82359F0/gGroundScript_gs185/g -s/gUnknown_8237B64/gGroundScript_gs186/g -s/gUnknown_8239164/gGroundScript_gs187/g -s/gUnknown_8239E3C/gGroundScript_gs188/g -s/gUnknown_823AA00/gGroundScript_gs189/g -s/gUnknown_823D7C8/gGroundScript_gs190/g -s/gUnknown_823E234/gGroundScript_gs191/g -s/gUnknown_8242BA4/gGroundScript_gs192/g -s/gUnknown_8245500/gGroundScript_gs193/g -s/gUnknown_8245CB4/gGroundScript_gs194/g -s/gUnknown_8248A40/gGroundScript_gs195/g -s/gUnknown_82496E8/gGroundScript_gs196/g -s/gUnknown_824BBE8/gGroundScript_gs197/g -s/gUnknown_824E700/gGroundScript_gs198/g -s/gUnknown_824FA10/gGroundScript_gs199/g -s/gUnknown_8251F30/gGroundScript_gs200/g -s/gUnknown_825568C/gGroundScript_gs201/g -s/gUnknown_8256520/gGroundScript_gs202/g -s/gUnknown_825CE20/gGroundScript_gs203/g -s/gUnknown_825DCB8/gGroundScript_gs204/g -s/gUnknown_825E844/gGroundScript_gs205/g -s/gUnknown_825FF54/gGroundScript_gs206/g -s/gUnknown_82614F8/gGroundScript_gs207/g -s/gUnknown_8262094/gGroundScript_gs208/g -s/gUnknown_8263ED0/gGroundScript_gs209/g -s/gUnknown_8264144/gGroundScript_gs210/g -s/gUnknown_8264820/gGroundScript_gs211/g -s/gUnknown_826562C/gGroundScript_gs212/g -s/gUnknown_82664BC/gGroundScript_gs213/g -s/gUnknown_82673B4/gGroundScript_gs214/g -s/gUnknown_8267AB4/gGroundScript_gs215/g -s/gUnknown_8269740/gGroundScript_gs216/g -s/gUnknown_8269D60/gGroundScript_gs217/g -s/gUnknown_826A590/gGroundScript_gs218/g -s/gUnknown_826A9F8/gGroundScript_gs219/g -s/gUnknown_826D720/gGroundScript_gs220/g -s/gUnknown_826DB04/gGroundScript_gs221/g -s/gUnknown_826DF6C/gGroundScript_gs222/g -s/gUnknown_826E288/gGroundScript_gs223/g -s/gUnknown_826EC44/gGroundScript_gs224/g -s/gUnknown_826F1A0/gGroundScript_gs225/g -s/gUnknown_826F5A0/gGroundScript_gs226/g -s/gUnknown_826F7FC/gGroundScript_gs227/g -s/gUnknown_826F980/gGroundScript_gs228/g -s/gUnknown_8138254/gGroundScript_gs0/g -s/gUnknown_817D5F8/gGroundScript_gs1/g -s/gUnknown_8189954/gGroundScript_gs2/g -s/gUnknown_8197A08/gGroundScript_gs4/g -s/gUnknown_8198E0C/gGroundScript_gs5/g -s/gUnknown_819A3C4/gGroundScript_gs6/g -s/gUnknown_819A73C/gGroundScript_gs7/g -s/gUnknown_819AD04/gGroundScript_gs8/g -s/gUnknown_81E1940/gGroundScript_gs9/g -s/gUnknown_81EE214/gGroundScript_gs12/g -s/gUnknown_81EEAFC/gGroundScript_gs105/g -s/gUnknown_81EF524/gGroundScript_gs106/g -s/gUnknown_81EFCAC/gGroundScript_gs107/g -s/gUnknown_81F07B4/gGroundScript_gs108/g -s/gUnknown_81F0DEC/gGroundScript_gs109/g -s/gUnknown_81F1424/gGroundScript_gs110/g -s/gUnknown_81F1C8C/gGroundScript_gs111/g -s/gUnknown_81F2770/gGroundScript_gs112/g -s/gUnknown_81F3110/gGroundScript_gs113/g -s/gUnknown_81F3954/gGroundScript_gs114/g -s/gUnknown_81F3F8C/gGroundScript_gs115/g -s/gUnknown_81F4B04/gGroundScript_gs116/g -s/gUnknown_81F560C/gGroundScript_gs117/g -s/gUnknown_81F6184/gGroundScript_gs118/g -s/gUnknown_81F6DDC/gGroundScript_gs119/g -s/gUnknown_81F7804/gGroundScript_gs120/g -s/gUnknown_81F7F1C/gGroundScript_gs121/g -s/gUnknown_81F8B04/gGroundScript_gs122/g -s/gUnknown_81F95F4/gGroundScript_gs123/g -s/gUnknown_81F9F88/gGroundScript_gs124/g -s/gUnknown_81FAC2C/gGroundScript_gs125/g -s/gUnknown_81FB4D4/gGroundScript_gs126/g -s/gUnknown_81FBB64/gGroundScript_gs127/g -s/gUnknown_81FC3F4/gGroundScript_gs128/g -s/gUnknown_81FCDAC/gGroundScript_gs129/g -s/gUnknown_81FD754/gGroundScript_gs130/g -s/gUnknown_81FE0E8/gGroundScript_gs131/g -s/gUnknown_81FEB10/gGroundScript_gs132/g -s/gUnknown_81FF274/gGroundScript_gs133/g -s/gUnknown_81FFA9C/gGroundScript_gs134/g -s/gUnknown_8200374/gGroundScript_gs135/g -s/gUnknown_8200BDC/gGroundScript_gs136/g -s/gUnknown_8201674/gGroundScript_gs137/g -s/gUnknown_8201CAC/gGroundScript_gs138/g -s/gUnknown_8202434/gGroundScript_gs139/g -s/gUnknown_8202BA4/gGroundScript_gs140/g -s/gUnknown_820371C/gGroundScript_gs141/g -s/gUnknown_8203FD0/gGroundScript_gs142/g -s/gUnknown_8204A68/gGroundScript_gs143/g -s/gUnknown_8205500/gGroundScript_gs144/g -s/gUnknown_8205DD8/gGroundScript_gs145/g -s/gUnknown_82066B0/gGroundScript_gs146/g -s/gUnknown_8206F88/gGroundScript_gs147/g -s/gUnknown_8207B58/gGroundScript_gs148/g -s/gUnknown_8208728/gGroundScript_gs149/g -s/gUnknown_8208F90/gGroundScript_gs150/g -s/gUnknown_8209B08/gGroundScript_gs151/g -s/gUnknown_820A3E0/gGroundScript_gs152/g -s/gUnknown_820AC48/gGroundScript_gs153/g -s/gUnknown_820B280/gGroundScript_gs154/g -s/gUnknown_820B8B8/gGroundScript_gs155/g -s/gUnknown_820C120/gGroundScript_gs156/g -s/gUnknown_820C884/gGroundScript_gs157/g -s/gUnknown_820EA04/gGroundScript_gs158/g -s/gUnknown_820F0AC/gGroundScript_gs159/g -s/gUnknown_820F6E4/gGroundScript_gs160/g -s/gUnknown_820FD1C/gGroundScript_gs161/g -s/gUnknown_82163C0/gGroundScript_gs162/g -s/gUnknown_821812C/gGroundScript_gs163/g -s/gUnknown_821858C/gGroundScript_gs164/g -s/gUnknown_8218BA8/gGroundScript_gs165/g -s/gUnknown_8219770/gGroundScript_gs166/g -s/gUnknown_821BA10/gGroundScript_gs167/g -s/gUnknown_821CE8C/gGroundScript_gs168/g -s/gUnknown_821D1D0/gGroundScript_gs169/g -s/gUnknown_821F9A8/gGroundScript_gs170/g -s/gUnknown_82298A0/gGroundScript_gs171/g -s/gUnknown_8229B18/gGroundScript_gs172/g -s/gUnknown_822A110/gGroundScript_gs173/g -s/gUnknown_822AF6C/gGroundScript_gs174/g -s/gUnknown_822B658/gGroundScript_gs175/g -s/gUnknown_822BDD4/gGroundScript_gs176/g -s/gUnknown_822C234/gGroundScript_gs177/g -s/gUnknown_822FCA8/gGroundScript_gs178/g -s/gUnknown_82302E4/gGroundScript_gs179/g -s/gUnknown_8231C5C/gGroundScript_gs180/g -s/gUnknown_8232110/gGroundScript_gs181/g -s/gUnknown_8233244/gGroundScript_gs182/g -s/gUnknown_82342E0/gGroundScript_gs183/g -s/gUnknown_8234C7C/gGroundScript_gs184/g -s/gUnknown_82359F0/gGroundScript_gs185/g -s/gUnknown_8237B64/gGroundScript_gs186/g -s/gUnknown_8239164/gGroundScript_gs187/g -s/gUnknown_8239E3C/gGroundScript_gs188/g -s/gUnknown_823AA00/gGroundScript_gs189/g -s/gUnknown_823D7C8/gGroundScript_gs190/g -s/gUnknown_823E234/gGroundScript_gs191/g -s/gUnknown_8242BA4/gGroundScript_gs192/g -s/gUnknown_8245500/gGroundScript_gs193/g -s/gUnknown_8245CB4/gGroundScript_gs194/g -s/gUnknown_8248A40/gGroundScript_gs195/g -s/gUnknown_82496E8/gGroundScript_gs196/g -s/gUnknown_824BBE8/gGroundScript_gs197/g -s/gUnknown_824E700/gGroundScript_gs198/g -s/gUnknown_824FA10/gGroundScript_gs199/g -s/gUnknown_8251F30/gGroundScript_gs200/g -s/gUnknown_825568C/gGroundScript_gs201/g -s/gUnknown_8256520/gGroundScript_gs202/g -s/gUnknown_825CE20/gGroundScript_gs203/g -s/gUnknown_825DCB8/gGroundScript_gs204/g -s/gUnknown_825E844/gGroundScript_gs205/g -s/gUnknown_825FF54/gGroundScript_gs206/g -s/gUnknown_82614F8/gGroundScript_gs207/g -s/gUnknown_8262094/gGroundScript_gs208/g -s/gUnknown_8263ED0/gGroundScript_gs209/g -s/gUnknown_8264144/gGroundScript_gs210/g -s/gUnknown_8264820/gGroundScript_gs211/g -s/gUnknown_826562C/gGroundScript_gs212/g -s/gUnknown_82664BC/gGroundScript_gs213/g -s/gUnknown_82673B4/gGroundScript_gs214/g -s/gUnknown_8267AB4/gGroundScript_gs215/g -s/gUnknown_8269740/gGroundScript_gs216/g -s/gUnknown_8269D60/gGroundScript_gs217/g -s/gUnknown_826A590/gGroundScript_gs218/g -s/gUnknown_826A9F8/gGroundScript_gs219/g -s/gUnknown_826D720/gGroundScript_gs220/g -s/gUnknown_826DB04/gGroundScript_gs221/g -s/gUnknown_826DF6C/gGroundScript_gs222/g -s/gUnknown_826E288/gGroundScript_gs223/g -s/gUnknown_826EC44/gGroundScript_gs224/g -s/gUnknown_826F1A0/gGroundScript_gs225/g -s/gUnknown_826F5A0/gGroundScript_gs226/g -s/gUnknown_826F7FC/gGroundScript_gs227/g -s/gUnknown_826F980/gGroundScript_gs228/g From 1ef9fc0481c0f7d2523214d6171394d177f1f590 Mon Sep 17 00:00:00 2001 From: Mateon1 Date: Tue, 15 Oct 2024 00:24:00 +0200 Subject: [PATCH 09/10] Remove magic number from personality test --- include/constants/personality_test.h | 4 +- include/personality_test1.h | 4 +- src/data/personality_test1.h | 112 +++++++++++++-------------- src/personality_test1.c | 2 +- 4 files changed, 63 insertions(+), 59 deletions(-) diff --git a/include/constants/personality_test.h b/include/constants/personality_test.h index b6b9e0a1c..0bd9f6025 100644 --- a/include/constants/personality_test.h +++ b/include/constants/personality_test.h @@ -17,13 +17,15 @@ enum NaturePersonalities LONELY, QUIRKY, MISC, + }; #define NUM_PARTNERS 10 #define NUM_QUIZ_QUESTIONS 55 #define MAX_ASKED_QUESTIONS 8 #define NUM_PERSONALITIES MISC +#define NUM_PERSONALITY_TEST_EFFECTS (NUM_PERSONALITIES+3) #define BRAVE_2B_TRIGGER 99 -#endif // GUARD_CONSTANTS_PERSONALITY_TEST_H \ No newline at end of file +#endif // GUARD_CONSTANTS_PERSONALITY_TEST_H diff --git a/include/personality_test1.h b/include/personality_test1.h index 108a2d666..6eba0269d 100644 --- a/include/personality_test1.h +++ b/include/personality_test1.h @@ -4,12 +4,14 @@ #include "constants/personality_test.h" #include "structs/menu.h" +typedef u8 PersonalityEffects[NUM_PERSONALITY_TEST_EFFECTS]; + // size: 0xC typedef struct PersonalityQuestion { /* 0x0 */ const u8 *question; /* 0x4 */ const MenuItem *answers; - /* 0x8 */ const u8 (*effects)[16]; + /* 0x8 */ const PersonalityEffects *effects; } PersonalityQuestion; struct PersonalityTestTracker diff --git a/src/data/personality_test1.h b/src/data/personality_test1.h index db143f302..c9f7dfa7f 100644 --- a/src/data/personality_test1.h +++ b/src/data/personality_test1.h @@ -1,4 +1,4 @@ -ALIGNED(4) static const u8 HardyQuest1Points[3][16] = +ALIGNED(4) static const PersonalityEffects HardyQuest1Points[3] = { { [HARDY] = 0x02, }, { [RELAXED] = 0x02, }, @@ -19,7 +19,7 @@ ALIGNED(4) static const u8 HardyQuest1Question[] = _( "A test is coming up.\n" "How do you study for it?"); -ALIGNED(4) static const u8 HardyQuest2Points[2][16] = +ALIGNED(4) static const PersonalityEffects HardyQuest2Points[2] = { { [HARDY] = 0x02, [DOCILE] = 0x01, }, { [QUIRKY] = 0x02, } @@ -36,7 +36,7 @@ static const u8 HardyQuest2Question[]; static const PersonalityQuestion HardyQuest2 = { HardyQuest2Question, HardyQuest2Answers, HardyQuest2Points }; ALIGNED(4) static const u8 HardyQuest2Question[] = _("Can you focus on something you like?"); -ALIGNED(4) static const u8 HardyQuest3Points[2][16] = +ALIGNED(4) static const PersonalityEffects HardyQuest3Points[2] = { { [HARDY] = 0x02, [BRAVE] = 0x02, }, { [SASSY] = 0x02, [QUIRKY] = 0x02, } @@ -55,7 +55,7 @@ ALIGNED(4) static const u8 HardyQuest3Question[] = _( "When the going gets tough, do you get\n" "going?"); -ALIGNED(4) static const u8 HardyQuest4Points[3][16] = +ALIGNED(4) static const PersonalityEffects HardyQuest4Points[3] = { { [HARDY] = 0x02, }, { [CALM] = 0x02, }, @@ -76,7 +76,7 @@ ALIGNED(4) static const u8 HardyQuest4Question[] = _( "There is a bucket. If you put\n" "water in it, how high will you fill it?"); -ALIGNED(4) static const u8 DocileQuest1Points[2][16] = +ALIGNED(4) static const PersonalityEffects DocileQuest1Points[2] = { { [DOCILE] = 0x02, [NAIVE] = 0x01, }, { [TIMID] = 0x02, [CALM] = 0x01, } @@ -95,7 +95,7 @@ ALIGNED(4) static const u8 DocileQuest1Question[] = _( "You are offered a choice of two gifts.\n" "Which one will you take?"); -ALIGNED(4) static const u8 DocileQuest2Points[2][16] = +ALIGNED(4) static const PersonalityEffects DocileQuest2Points[2] = { { [DOCILE] = 0x02, [HASTY] = 0x01, }, { [NAIVE] = 0x02, [RELAXED] = 0x01, } @@ -114,7 +114,7 @@ ALIGNED(4) static const u8 DocileQuest2Question[] = _( "You broke a rotten egg in your room!\n" "What will you do?"); -ALIGNED(4) static const u8 DocileQuest3Points[3][16] = +ALIGNED(4) static const PersonalityEffects DocileQuest3Points[3] = { { [DOCILE] = 0x02, }, { [NAIVE] = 0x01, [LONELY] = 0x01, }, @@ -142,7 +142,7 @@ ALIGNED(4) static const u8 DocileQuest3Question[] = _( "forgotten.{WAIT_PRESS}\n" "How do you thank your friend?"); -ALIGNED(4) static const u8 DocileQuest4Points[3][16] = +ALIGNED(4) static const PersonalityEffects DocileQuest4Points[3] = { { [DOCILE] = 0x02, }, { [NAIVE] = 0x02, }, @@ -161,7 +161,7 @@ static const u8 DocileQuest4Question[]; static const PersonalityQuestion DocileQuest4 = { DocileQuest4Question, DocileQuest4Answers, DocileQuest4Points }; ALIGNED(4) static const u8 DocileQuest4Question[] = _("There is a wallet at the side of a road."); -ALIGNED(4) static const u8 BraveQuest1Points[2][16] = +ALIGNED(4) static const PersonalityEffects BraveQuest1Points[2] = { { [BRAVE] = 0x03, [IMPISH] = 0x01, }, { [DOCILE] = 0x02, [TIMID] = 0x01, } @@ -183,7 +183,7 @@ ALIGNED(4) static const u8 BraveQuest1Question[] = _( "And the bungee cord snaps!{EXTRA_MSG}" "Will you still try to make a jump anyway?"); -ALIGNED(4) static const u8 BraveQuest2APoints[3][16] = +ALIGNED(4) static const PersonalityEffects BraveQuest2APoints[3] = { { }, { [TIMID] = 0x02, }, @@ -204,7 +204,7 @@ ALIGNED(4) static const u8 BraveQuest2AQuestion[] = _( "There is an alien invasion!\n" "What will you do?"); -ALIGNED(4) static const u8 BraveQuest2BPoints[2][16] = +ALIGNED(4) static const PersonalityEffects BraveQuest2BPoints[2] = { { [SASSY] = 0x01, [RELAXED] = 0x01, }, { [BRAVE] = 0x04, } @@ -226,7 +226,7 @@ ALIGNED(4) static const u8 BraveQuest2BQuestion[] = _( "RULE THE WORLD.”{WAIT_PRESS}\n" "What will you do?"); -ALIGNED(4) static const u8 BraveQuest3Points[2][16] = +ALIGNED(4) static const PersonalityEffects BraveQuest3Points[2] = { { [HARDY] = 0x01, [BRAVE] = 0x02, }, { [NAIVE] = 0x02, } @@ -245,7 +245,7 @@ ALIGNED(4) static const u8 BraveQuest3Question[] = _( "There is a scream from behind a door!{WAIT_PRESS}\n" "How will you react?"); -ALIGNED(4) static const u8 BraveQuest4Points[4][16] = +ALIGNED(4) static const PersonalityEffects BraveQuest4Points[4] = { { [BRAVE] = 0x03, }, { [HARDY] = 0x02, [BRAVE] = 0x02, }, @@ -277,7 +277,7 @@ ALIGNED(4) static const u8 BraveQuest4Question[] = _( "a busy city street!{WAIT_PRESS}\n" "What will you do?"); -ALIGNED(4) static const u8 JollyQuest1Points[2][16] = +ALIGNED(4) static const PersonalityEffects JollyQuest1Points[2] = { { [JOLLY] = 0x02, [NAIVE] = 0x01, }, { [SASSY] = 0x01, [QUIRKY] = 0x01, } @@ -294,7 +294,7 @@ static const u8 JollyQuest1Question[]; static const PersonalityQuestion JollyQuest1 = { JollyQuest1Question, JollyQuest1Answers, JollyQuest1Points }; ALIGNED(4) static const u8 JollyQuest1Question[] = _("Are you a cheerful personality?"); -ALIGNED(4) static const u8 JollyQuest2Points[2][16] = +ALIGNED(4) static const PersonalityEffects JollyQuest2Points[2] = { { [JOLLY] = 0x02, [LONELY] = 0x01, }, { [TIMID] = 0x01, } @@ -313,7 +313,7 @@ ALIGNED(4) static const u8 JollyQuest2Question[] = _( "Do you like to noisily enjoy yourself\n" "with others?"); -ALIGNED(4) static const u8 JollyQuest3Points[3][16] = +ALIGNED(4) static const PersonalityEffects JollyQuest3Points[3] = { { [JOLLY] = 0x02, }, { [CALM] = 0x02, }, @@ -334,7 +334,7 @@ ALIGNED(4) static const u8 JollyQuest3Question[] = _( "It's the summer holidays!\n" "Where would you like to go?"); -ALIGNED(4) static const u8 JollyQuest4Points[3][16] = +ALIGNED(4) static const PersonalityEffects JollyQuest4Points[3] = { { [JOLLY] = 0x03, }, { [HARDY] = 0x02, }, @@ -364,7 +364,7 @@ ALIGNED(4) static const u8 JollyQuest4Question[] = _( "this fellow is saying.{WAIT_PRESS}\n" "How do you reply?"); -ALIGNED(4) static const u8 ImpishQuest1Points[2][16] = +ALIGNED(4) static const PersonalityEffects ImpishQuest1Points[2] = { { [IMPISH] = 0x02, [LONELY] = 0x01, }, { [CALM] = 0x02, } @@ -381,7 +381,7 @@ static const u8 ImpishQuest1Question[]; static const PersonalityQuestion ImpishQuest1 = { ImpishQuest1Question, ImpishQuest1Answers, ImpishQuest1Points }; ALIGNED(4) static const u8 ImpishQuest1Question[] = _("Have you ever made a pitfall trap?"); -ALIGNED(4) static const u8 ImpishQuest2Points[2][16] = +ALIGNED(4) static const PersonalityEffects ImpishQuest2Points[2] = { { [IMPISH] = 0x02, }, { [DOCILE] = 0x01, [RELAXED] = 0x01, } @@ -398,7 +398,7 @@ static const u8 ImpishQuest2Question[]; static const PersonalityQuestion ImpishQuest2 = { ImpishQuest2Question, ImpishQuest2Answers, ImpishQuest2Points }; ALIGNED(4) static const u8 ImpishQuest2Question[] = _("Do you like pranks?"); -ALIGNED(4) static const u8 ImpishQuest3Points[2][16] = +ALIGNED(4) static const PersonalityEffects ImpishQuest3Points[2] = { { [HARDY] = 0x01, [IMPISH] = 0x02, }, { [SASSY] = 0x01, [QUIRKY] = 0x02, } @@ -415,7 +415,7 @@ static const u8 ImpishQuest3Question[]; static const PersonalityQuestion ImpishQuest3 = { ImpishQuest3Question, ImpishQuest3Answers, ImpishQuest3Points }; ALIGNED(4) static const u8 ImpishQuest3Question[] = _("Are there many things that you would like\nto do?"); -ALIGNED(4) static const u8 ImpishQuest4Points[3][16] = +ALIGNED(4) static const PersonalityEffects ImpishQuest4Points[3] = { { [BRAVE] = 0x03, }, { [TIMID] = 0x02, }, @@ -436,7 +436,7 @@ ALIGNED(4) static const u8 ImpishQuest4Question[] = _( "Your friend is being bullied!\n" "What do you do?"); -ALIGNED(4) static const u8 NaiveQuest1Points[3][16] = +ALIGNED(4) static const PersonalityEffects NaiveQuest1Points[3] = { { [IMPISH] = 0x01, [NAIVE] = 0x03, }, { [JOLLY] = 0x02, }, @@ -455,7 +455,7 @@ static const u8 NaiveQuest1Question[]; static const PersonalityQuestion NaiveQuest1 = { NaiveQuest1Question, NaiveQuest1Answers, NaiveQuest1Points }; ALIGNED(4) static const u8 NaiveQuest1Question[] = _("Do you like groan-inducing puns?"); -ALIGNED(4) static const u8 NaiveQuest2Points[2][16] = +ALIGNED(4) static const PersonalityEffects NaiveQuest2Points[2] = { { [DOCILE] = 0x01, [NAIVE] = 0x02, }, { [QUIRKY] = 0x02, } @@ -472,7 +472,7 @@ static const u8 NaiveQuest2Question[]; static const PersonalityQuestion NaiveQuest2 = { NaiveQuest2Question, NaiveQuest2Answers, NaiveQuest2Points }; ALIGNED(4) static const u8 NaiveQuest2Question[] = _("Do you tend to laugh a lot?"); -ALIGNED(4) static const u8 NaiveQuest3Points[2][16] = +ALIGNED(4) static const PersonalityEffects NaiveQuest3Points[2] = { { [JOLLY] = 0x01, [NAIVE] = 0x02, }, { [CALM] = 0x02, } @@ -489,7 +489,7 @@ static const u8 NaiveQuest3Question[]; static const PersonalityQuestion NaiveQuest3 = { NaiveQuest3Question, NaiveQuest3Answers, NaiveQuest3Points }; ALIGNED(4) static const u8 NaiveQuest3Question[] = _("Do others often call you childish?"); -ALIGNED(4) static const u8 NaiveQuest4Points[2][16] = +ALIGNED(4) static const PersonalityEffects NaiveQuest4Points[2] = { { [NAIVE] = 0x02, }, { [HASTY] = 0x02, } @@ -508,7 +508,7 @@ ALIGNED(4) static const u8 NaiveQuest4Question[] = _( "Do you like to imagine things for your\n" "amusement?"); -ALIGNED(4) static const u8 TimidQuest1Points[3][16] = +ALIGNED(4) static const PersonalityEffects TimidQuest1Points[3] = { { [TIMID] = 0x02, }, { [HARDY] = 0x01, [CALM] = 0x02, }, @@ -529,7 +529,7 @@ ALIGNED(4) static const u8 TimidQuest1Question[] = _( "A human hand extends out of a toilet!\n" "What would you do?"); -ALIGNED(4) static const u8 TimidQuest2Points[5][16] = +ALIGNED(4) static const PersonalityEffects TimidQuest2Points[5] = { { [TIMID] = 0x02, }, { [HASTY] = 0x02, }, @@ -555,7 +555,7 @@ ALIGNED(4) static const u8 TimidQuest2Question[] = _( "right hand.{WAIT_PRESS}\n" "Which digit did you grab?"); -ALIGNED(4) static const u8 TimidQuest3Points[3][16] = +ALIGNED(4) static const PersonalityEffects TimidQuest3Points[3] = { { [TIMID] = 0x02, }, { [LONELY] = 0x02, }, @@ -577,7 +577,7 @@ ALIGNED(4) static const u8 TimidQuest3Question[] = _( "pitch-black room!{WAIT_PRESS}\n" "What do you do?"); -ALIGNED(4) static const u8 TimidQuest4Points[3][16] = +ALIGNED(4) static const PersonalityEffects TimidQuest4Points[3] = { { [BRAVE] = 0x03, }, { [TIMID] = 0x02, }, @@ -596,7 +596,7 @@ static const u8 TimidQuest4Question[]; static const PersonalityQuestion TimidQuest4 = { TimidQuest4Question, TimidQuest4Answers, TimidQuest4Points }; ALIGNED(4) static const u8 TimidQuest4Question[] = _("Can you go into a haunted house?"); -ALIGNED(4) static const u8 HastyQuest1Points[3][16] = +ALIGNED(4) static const PersonalityEffects HastyQuest1Points[3] = { { [HASTY] = 0x02, }, { [CALM] = 0x02, }, @@ -618,7 +618,7 @@ ALIGNED(4) static const u8 HastyQuest1Question[] = _( "But you don't know what's in it.{WAIT_PRESS}\n" "You're curious, so what do you do?"); -ALIGNED(4) static const u8 HastyQuest2Points[3][16] = +ALIGNED(4) static const PersonalityEffects HastyQuest2Points[3] = { { [JOLLY] = 0x02, [HASTY] = 0x01, }, { [HARDY] = 0x01, [CALM] = 0x01, }, @@ -639,7 +639,7 @@ ALIGNED(4) static const u8 HastyQuest2Question[] = _( "You win a lottery!{WAIT_PRESS}\n" "What do you do with the money?"); -ALIGNED(4) static const u8 HastyQuest3Points[3][16] = +ALIGNED(4) static const PersonalityEffects HastyQuest3Points[3] = { { [HASTY] = 0x02, }, { [TIMID] = 0x02, }, @@ -666,7 +666,7 @@ ALIGNED(4) static const u8 HastyQuest3Question[] = _( "You come across a treasure chest!\n" "What do you do?"); -ALIGNED(4) static const u8 HastyQuest4Points[3][16] = +ALIGNED(4) static const PersonalityEffects HastyQuest4Points[3] = { { [DOCILE] = 0x01, [HASTY] = 0x02, }, { [RELAXED] = 0x02, }, @@ -688,7 +688,7 @@ ALIGNED(4) static const u8 HastyQuest4Question[] = _( "at the promised time.\n" "What do you do?"); -ALIGNED(4) static const u8 SassyQuest1Points[3][16] = +ALIGNED(4) static const PersonalityEffects SassyQuest1Points[3] = { { [HARDY] = 0x02, }, { [DOCILE] = 0x02, }, @@ -709,7 +709,7 @@ ALIGNED(4) static const u8 SassyQuest1Question[] = _( "Your country's leader is in front of you.\n" "How do you speak to him or her?"); -ALIGNED(4) static const u8 SassyQuest2Points[2][16] = +ALIGNED(4) static const PersonalityEffects SassyQuest2Points[2] = { { [IMPISH] = 0x01, [SASSY] = 0x02, }, { [CALM] = 0x02, } @@ -726,7 +726,7 @@ static const u8 SassyQuest2Question[]; static const PersonalityQuestion SassyQuest2 = { SassyQuest2Question, SassyQuest2Answers, SassyQuest2Points }; ALIGNED(4) static const u8 SassyQuest2Question[] = _("Do others tell you to watch what you say?"); -ALIGNED(4) static const u8 SassyQuest3Points[2][16] = +ALIGNED(4) static const PersonalityEffects SassyQuest3Points[2] = { { [SASSY] = 0x02, }, { [RELAXED] = 0x02, } @@ -745,7 +745,7 @@ ALIGNED(4) static const u8 SassyQuest3Question[] = _( "Do you think you are cool?\n" "Be honest."); -ALIGNED(4) static const u8 SassyQuest4Points[2][16] = +ALIGNED(4) static const PersonalityEffects SassyQuest4Points[2] = { { [DOCILE] = 0x02, [CALM] = 0x01, }, { [SASSY] = 0x02, [QUIRKY] = 0x01, } @@ -764,7 +764,7 @@ ALIGNED(4) static const u8 SassyQuest4Question[] = _( "Can you sincerely thank someone when you\n" "feel grateful?"); -ALIGNED(4) static const u8 CalmQuest1Points[2][16] = +ALIGNED(4) static const PersonalityEffects CalmQuest1Points[2] = { { [CALM] = 0x02, [LONELY] = 0x01, }, { [HARDY] = 0x02, } @@ -783,7 +783,7 @@ ALIGNED(4) static const u8 CalmQuest1Question[] = _( "Do you occasionally consider yourself\n" "dull and overly cautious?"); -ALIGNED(4) static const u8 CalmQuest2Points[2][16] = +ALIGNED(4) static const PersonalityEffects CalmQuest2Points[2] = { { [CALM] = 0x02, }, { [IMPISH] = 0x02, } @@ -802,7 +802,7 @@ ALIGNED(4) static const u8 CalmQuest2Question[] = _( "Do you dream of lounging around idly\n" "without much excitement?"); -ALIGNED(4) static const u8 CalmQuest3Points[2][16] = +ALIGNED(4) static const PersonalityEffects CalmQuest3Points[2] = { { [IMPISH] = 0x01, [TIMID] = 0x02, }, { [CALM] = 0x02, [LONELY] = 0x01, } @@ -819,7 +819,7 @@ static const u8 CalmQuest3Question[]; static const PersonalityQuestion CalmQuest3 = { CalmQuest3Question, CalmQuest3Answers, CalmQuest3Points }; ALIGNED(4) static const u8 CalmQuest3Question[] = _("Do you like to fight?"); -ALIGNED(4) static const u8 CalmQuest4Points[2][16] = +ALIGNED(4) static const PersonalityEffects CalmQuest4Points[2] = { { [CALM] = 0x02, [RELAXED] = 0x01, }, { [HARDY] = 0x01, [HASTY] = 0x02, } @@ -836,7 +836,7 @@ static const u8 CalmQuest4Question[]; static const PersonalityQuestion CalmQuest4 = { CalmQuest4Question, CalmQuest4Answers, CalmQuest4Points }; ALIGNED(4) static const u8 CalmQuest4Question[] = _("Do you often yawn?"); -ALIGNED(4) static const u8 RelaxedQuest1Points[2][16] = +ALIGNED(4) static const PersonalityEffects RelaxedQuest1Points[2] = { { [SASSY] = 0x01, [RELAXED] = 0x02, }, { [HARDY] = 0x02, [HASTY] = 0x01, } @@ -853,7 +853,7 @@ static const u8 RelaxedQuest1Question[]; static const PersonalityQuestion RelaxedQuest1 = { RelaxedQuest1Question, RelaxedQuest1Answers, RelaxedQuest1Points }; ALIGNED(4) static const u8 RelaxedQuest1Question[] = _("Are you often late for school or meetings?"); -ALIGNED(4) static const u8 RelaxedQuest2Points[2][16] = +ALIGNED(4) static const PersonalityEffects RelaxedQuest2Points[2] = { { [RELAXED] = 0x02, }, { [IMPISH] = 0x01, [HASTY] = 0x02, } @@ -872,7 +872,7 @@ ALIGNED(4) static const u8 RelaxedQuest2Question[] = _( "Do you get the feeling that you've slowed\n" "down lately?"); -ALIGNED(4) static const u8 RelaxedQuest3Points[3][16] = +ALIGNED(4) static const PersonalityEffects RelaxedQuest3Points[3] = { { [JOLLY] = 0x02, }, { [RELAXED] = 0x02, }, @@ -893,7 +893,7 @@ ALIGNED(4) static const u8 RelaxedQuest3Question[] = _( "It is a pleasant day at the beach.\n" "How do you feel?"); -ALIGNED(4) static const u8 RelaxedQuest4Points[2][16] = +ALIGNED(4) static const PersonalityEffects RelaxedQuest4Points[2] = { { [CALM] = 0x01, [RELAXED] = 0x02, }, { [HARDY] = 0x02, } @@ -910,7 +910,7 @@ static const u8 RelaxedQuest4Question[]; static const PersonalityQuestion RelaxedQuest4 = { RelaxedQuest4Question, RelaxedQuest4Answers, RelaxedQuest4Points }; ALIGNED(4) static const u8 RelaxedQuest4Question[] = _("Do you fall asleep without noticing?"); -ALIGNED(4) static const u8 LonelyQuest1Points[2][16] = +ALIGNED(4) static const PersonalityEffects LonelyQuest1Points[2] = { { [TIMID] = 0x01, [LONELY] = 0x02, }, { [SASSY] = 0x02, } @@ -927,7 +927,7 @@ static const u8 LonelyQuest1Question[]; static const PersonalityQuestion LonelyQuest1 = { LonelyQuest1Question, LonelyQuest1Answers, LonelyQuest1Points }; ALIGNED(4) static const u8 LonelyQuest1Question[] = _("Do you feel lonesome when you are alone?"); -ALIGNED(4) static const u8 LonelyQuest2Points[2][16] = +ALIGNED(4) static const PersonalityEffects LonelyQuest2Points[2] = { { [TIMID] = 0x01, [LONELY] = 0x02, }, { [BRAVE] = 0x03, [RELAXED] = 0x01, } @@ -946,7 +946,7 @@ ALIGNED(4) static const u8 LonelyQuest2Question[] = _( "Do you hate to be the last person to leave\n" "class at the end of a school day?"); -ALIGNED(4) static const u8 LonelyQuest3Points[2][16] = +ALIGNED(4) static const PersonalityEffects LonelyQuest3Points[2] = { { [TIMID] = 0x01, [LONELY] = 0x02, }, { [CALM] = 0x02, } @@ -965,7 +965,7 @@ ALIGNED(4) static const u8 LonelyQuest3Question[] = _( "What do you do with your room's light\n" "when you're going to bed at night?"); -ALIGNED(4) static const u8 LonelyQuest4Points[3][16] = +ALIGNED(4) static const PersonalityEffects LonelyQuest4Points[3] = { { [JOLLY] = 0x01, [LONELY] = 0x01, }, { [CALM] = 0x01, [RELAXED] = 0x02, }, @@ -987,7 +987,7 @@ ALIGNED(4) static const u8 LonelyQuest4Question[] = _( "with you...\n" "What do you do?"); -ALIGNED(4) static const u8 QuirkyQuest1Points[2][16] = +ALIGNED(4) static const PersonalityEffects QuirkyQuest1Points[2] = { { [QUIRKY] = 0x02, }, { [HARDY] = 0x02, } @@ -1006,7 +1006,7 @@ ALIGNED(4) static const u8 QuirkyQuest1Question[] = _( "Do you sometimes run out of things to do\n" "all of a sudden?"); -ALIGNED(4) static const u8 QuirkyQuest2Points[3][16] = +ALIGNED(4) static const PersonalityEffects QuirkyQuest2Points[3] = { { [HARDY] = 0x01, [HASTY] = 0x01, }, { [QUIRKY] = 0x02, }, @@ -1031,7 +1031,7 @@ static const u8 QuirkyQuest2Question[]; static const PersonalityQuestion QuirkyQuest2 = { QuirkyQuest2Question, QuirkyQuest2Answers, QuirkyQuest2Points }; ALIGNED(4) static const u8 QuirkyQuest2Question[] = _("How quickly do you respond to an e-mail?"); -ALIGNED(4) static const u8 QuirkyQuest3Points[4][16] = +ALIGNED(4) static const PersonalityEffects QuirkyQuest3Points[4] = { { [HARDY] = 0x01, [BRAVE] = 0x03, }, { [QUIRKY] = 0x02, }, @@ -1055,7 +1055,7 @@ ALIGNED(4) static const u8 QuirkyQuest3Question[] = _( "But there's no opportunity to get close.\n" "What do you do?"); -ALIGNED(4) static const u8 QuirkyQuest4Points[3][16] = +ALIGNED(4) static const PersonalityEffects QuirkyQuest4Points[3] = { { [DOCILE] = 0x02, }, { [SASSY] = 0x02, }, @@ -1083,7 +1083,7 @@ ALIGNED(4) static const u8 QuirkyQuest4Question[] = _( "You are told there is a treasure on the\n" "right side. What do you do?"); -ALIGNED(4) static const u8 MiscQuest1Points[2][16] = +ALIGNED(4) static const PersonalityEffects MiscQuest1Points[2] = { { [HASTY] = 0x01, [QUIRKY] = 0x01, }, { [JOLLY] = 0x01, [LONELY] = 0x01, } @@ -1100,7 +1100,7 @@ static const u8 MiscQuest1Question[]; static const PersonalityQuestion MiscQuest1 = { MiscQuest1Question, MiscQuest1Answers, MiscQuest1Points }; ALIGNED(4) static const u8 MiscQuest1Question[] = _("On vacation outings, you want to..."); -ALIGNED(4) static const u8 MiscQuest2Points[2][16] = +ALIGNED(4) static const PersonalityEffects MiscQuest2Points[2] = { { [JOLLY] = 0x02, }, { [SASSY] = 0x01, [QUIRKY] = 0x01, } @@ -1121,7 +1121,7 @@ ALIGNED(4) static const u8 MiscQuest2Question[] = _( "It's the summer festival!\n" "Do you like carnivals?"); -ALIGNED(4) static const u8 MiscQuest3Points[2][16] = +ALIGNED(4) static const PersonalityEffects MiscQuest3Points[2] = { { [NAIVE] = 0x01, [LONELY] = 0x01, }, { [HASTY] = 0x01, [SASSY] = 0x01, } diff --git a/src/personality_test1.c b/src/personality_test1.c index 760479496..98c7d18da 100644 --- a/src/personality_test1.c +++ b/src/personality_test1.c @@ -215,7 +215,7 @@ static void UpdateNatureTotals(void) { s32 answerIndex; s32 natureIndex; - const u8 (*pointArray)[16]; + const PersonalityEffects *pointArray; if (sub_80144A4(&answerIndex)) return; From 9607bbc020338c67ede425c576e731316629e83a Mon Sep 17 00:00:00 2001 From: Mateon1 Date: Tue, 15 Oct 2024 15:42:13 +0200 Subject: [PATCH 10/10] Refactor color and format constants --- charmap.txt | 116 +- data/data.s | 8 +- data/data_80B9BB8.s | 6 +- data/data_80DAF70.s | 12 +- data/data_80F59C8.s | 1352 ++++++++-------- data/data_8106A4C.s | 18 +- data/data_8106F7C.s | 2 +- data/data_8107010.s | 32 +- data/data_810AE24.s | 554 +++---- data/data_8115F5C.s | 34 +- data/friend_rescue.s | 132 +- data/item/item_descriptions.s | 308 ++-- data/move/move_names.s | 418 ++--- src/code_801B3C0.c | 2 +- src/code_801D014.c | 2 +- src/code_801EE10.c | 4 +- src/code_801F808.c | 2 +- src/code_8057824_1.c | 30 +- src/code_807CD9C.c | 6 +- src/code_80972F4.c | 4 +- src/data/code_801602C.h | 2 +- src/data/code_801AFA4.h | 6 +- src/data/code_801B3C0.h | 2 +- src/data/code_801B60C.h | 30 +- src/data/code_801D014.h | 4 +- src/data/code_80227B8.h | 30 +- src/data/code_8023144.h | 2 +- src/data/code_8023868.h | 2 +- src/data/code_802DB28.h | 8 +- src/data/common_strings_felicity_bank.h | 12 +- src/data/common_strings_gulpin_shop.h | 86 +- src/data/common_strings_kangaskhan_storage.h | 16 +- src/data/common_strings_kecleon_bros.h | 44 +- src/data/common_strings_makuhita_dojo.h | 12 +- src/data/common_strings_wigglytuff_shop.h | 48 +- src/data/formatted_type_names.h | 36 +- src/data/friend_area_action_menu.h | 6 +- src/data/friend_list_menu.h | 12 +- src/data/friend_rescue_menus.h | 4 +- src/data/ground/ground_data_a01p01_station.h | 158 +- src/data/ground/ground_data_a01p02_station.h | 152 +- src/data/ground/ground_data_a02p01_station.h | 6 +- src/data/ground/ground_data_a02p02_station.h | 6 +- src/data/ground/ground_data_a02p03_station.h | 4 +- src/data/ground/ground_data_a02p04_station.h | 78 +- src/data/ground/ground_data_a03p01_station.h | 20 +- src/data/ground/ground_data_a03p02_station.h | 4 +- src/data/ground/ground_data_a03p03_station.h | 96 +- src/data/ground/ground_data_a04p01_station.h | 158 +- src/data/ground/ground_data_a04p04_station.h | 18 +- src/data/ground/ground_data_a05p01_station.h | 10 +- src/data/ground/ground_data_a05p02_station.h | 10 +- src/data/ground/ground_data_a05p03_station.h | 10 +- src/data/ground/ground_data_b01p01a_station.h | 1394 ++++++++--------- src/data/ground/ground_data_b01p02a_station.h | 260 +-- src/data/ground/ground_data_d01p01_station.h | 96 +- src/data/ground/ground_data_d02p01_station.h | 8 +- src/data/ground/ground_data_d03p01_station.h | 28 +- src/data/ground/ground_data_d03p02_station.h | 18 +- src/data/ground/ground_data_d04p01_station.h | 24 +- src/data/ground/ground_data_d04p02_station.h | 8 +- src/data/ground/ground_data_d05p01_station.h | 52 +- src/data/ground/ground_data_d05p02_station.h | 18 +- src/data/ground/ground_data_d06p01_station.h | 28 +- src/data/ground/ground_data_d06p02_station.h | 8 +- src/data/ground/ground_data_d06p03_station.h | 68 +- src/data/ground/ground_data_d07p01_station.h | 20 +- src/data/ground/ground_data_d07p02_station.h | 94 +- src/data/ground/ground_data_d08p01_station.h | 40 +- src/data/ground/ground_data_d08p02_station.h | 2 +- src/data/ground/ground_data_d09p01_station.h | 46 +- src/data/ground/ground_data_d09p02_station.h | 8 +- src/data/ground/ground_data_d09p03_station.h | 34 +- src/data/ground/ground_data_d10p01_station.h | 50 +- src/data/ground/ground_data_d10p02_station.h | 20 +- src/data/ground/ground_data_d10p03_station.h | 60 +- src/data/ground/ground_data_d11p01_station.h | 102 +- src/data/ground/ground_data_d11p02_station.h | 8 +- src/data/ground/ground_data_d11p03_station.h | 162 +- src/data/ground/ground_data_d12p01_station.h | 8 +- src/data/ground/ground_data_d12p02_station.h | 8 +- src/data/ground/ground_data_d12p04_station.h | 12 +- src/data/ground/ground_data_d13p01_station.h | 16 +- src/data/ground/ground_data_d13p02_station.h | 8 +- src/data/ground/ground_data_d13p03_station.h | 22 +- src/data/ground/ground_data_d15p01_station.h | 24 +- src/data/ground/ground_data_d16p01_station.h | 24 +- src/data/ground/ground_data_d17p01_station.h | 24 +- src/data/ground/ground_data_d18p01_station.h | 22 +- src/data/ground/ground_data_d19p01_station.h | 22 +- src/data/ground/ground_data_d20p01_station.h | 42 +- src/data/ground/ground_data_d21p01_station.h | 6 +- src/data/ground/ground_data_d22p01_station.h | 6 +- src/data/ground/ground_data_d24p01_station.h | 106 +- src/data/ground/ground_data_d24p02_station.h | 2 +- src/data/ground/ground_data_h29p01_station.h | 12 +- src/data/ground/ground_data_s01_station.h | 12 +- src/data/ground/ground_data_t01p01_station.h | 1130 ++++++------- src/data/ground/ground_data_t01p02a_station.h | 226 +-- src/data/ground/ground_data_t01p03_station.h | 238 +-- src/data/ground/ground_data_t01p04_station.h | 8 +- src/data/ground/ground_data_t01p05_station.h | 6 +- src/data/ground/ground_event_data.h | 32 +- src/data/gulpin_shop.h | 8 +- src/data/gulpin_shop_801FB50.h | 2 +- src/data/iq_skill_info_menu.h | 4 +- src/data/iq_skill_list_menu.h | 2 +- src/data/kecleon_bros2.h | 2 +- src/data/kecleon_bros3.h | 2 +- src/data/kecleon_bros4.h | 4 +- src/data/luminous_cave.h | 8 +- src/data/main_menu2.h | 2 +- src/data/makuhita_dojo1.h | 2 +- src/data/makuhita_dojo2.h | 2 +- src/data/other_menus1.h | 16 +- src/data/party_list_menu.h | 22 +- src/data/personality_test1.h | 2 +- src/data/pokemon_mail.h | 496 +++--- src/data/pokemon_mail_pre.h | 28 +- src/data/post_office_guide1.h | 112 +- src/data/post_office_guide2.h | 10 +- src/data/story_missions.h | 2 +- src/data/thank_you_wonder_mail.h | 38 +- src/data/trade_items_menu.h | 6 +- src/data/wigglytuff_shop1.h | 4 +- src/data/wigglytuff_shop2.h | 4 +- src/data/wonder_mail_1.h | 60 +- src/data/wonder_mail_802D098.h | 16 +- src/data/wonder_mail_main_menu.h | 16 +- src/dungeon.c | 2 +- src/friend_rescue.c | 46 +- src/iq_skill_info_menu.c | 4 +- src/items.c | 2 +- src/menu_input.c | 2 +- src/mission_reward.c | 38 +- src/move_actions.c | 2 +- src/pokemon_mid.c | 8 +- src/rescue_password_menu.c | 18 +- src/save_menu.c | 8 +- src/status.c | 4 +- src/unk_menu_203B360.c | 2 +- src/wonder_mail_2.c | 6 +- src/wonder_mail_6.c | 8 +- 143 files changed, 4915 insertions(+), 4911 deletions(-) diff --git a/charmap.txt b/charmap.txt index 356f64c86..b0918f42d 100644 --- a/charmap.txt +++ b/charmap.txt @@ -283,34 +283,35 @@ L_BUTTON = 87 74 UNK_95 = 7E 39 35 @ ~95 - Seems to be a special (?) symbol @ Placeholders for message arguments to swap out for names within strings. -ARG_VALUE_0 = 24 64 30 @ $d0 -ARG_VALUE_1 = 24 64 31 @ $d1 -ARG_VALUE_2 = 24 64 32 @ $d2 -ARG_VALUE_3 = 24 64 33 @ $d3 -ARG_VALUE_4 = 24 64 34 @ $d4 -ARG_FRIEND_AREA = 24 68 @ $h -ARG_MOVE_ITEM_0 = 24 69 30 @ $i0 -ARG_MOVE_ITEM_1 = 24 69 31 @ $i1 -ARG_POKEMON_0 = 24 6D 30 @ $m0 -ARG_POKEMON_1 = 24 6D 31 @ $m1 -ARG_POKEMON_2 = 24 6D 32 @ $m2 -ARG_POKEMON_3 = 24 6D 33 @ $m3 -ARG_POKEMON_4 = 24 6D 34 @ $m4 -ARG_POKEMON_5 = 24 6D 35 @ $m5 -ARG_POKEMON_6 = 24 6D 36 @ $m6 -ARG_POKEMON_7 = 24 6D 37 @ $m7 -ARG_POKEMON_8 = 24 6D 38 @ $m8 -ARG_NICKNAME_0 = 24 6E 30 @ $n0 -ARG_NICKNAME_1 = 24 6E 31 @ $n1 -ARG_NICKNAME_2 = 24 6E 32 @ $n2 -ARG_NICKNAME_3 = 24 6E 33 @ $n3 -ARG_NICKNAME_4 = 24 6E 34 @ $n4 -ARG_NICKNAME_5 = 24 6E 35 @ $n5 -ARG_NICKNAME_6 = 24 6E 36 @ $n6 -ARG_NICKNAME_7 = 24 6E 37 @ $n7 -ARG_NICKNAME_8 = 24 6E 38 @ $n8 -ARG_NICKNAME_9 = 24 6E 39 @ $n9 -ARG_TEAM_NAME = 24 74 @ $t + +VALUE_0 = 24 64 30 @ $d0 +VALUE_1 = 24 64 31 @ $d1 +VALUE_2 = 24 64 32 @ $d2 +VALUE_3 = 24 64 33 @ $d3 +VALUE_4 = 24 64 34 @ $d4 +FRIEND_AREA = 24 68 @ $h +MOVE_ITEM_0 = 24 69 30 @ $i0 +MOVE_ITEM_1 = 24 69 31 @ $i1 +POKEMON_0 = 24 6D 30 @ $m0 +POKEMON_1 = 24 6D 31 @ $m1 +POKEMON_2 = 24 6D 32 @ $m2 +POKEMON_3 = 24 6D 33 @ $m3 +POKEMON_4 = 24 6D 34 @ $m4 +POKEMON_5 = 24 6D 35 @ $m5 +POKEMON_6 = 24 6D 36 @ $m6 +POKEMON_7 = 24 6D 37 @ $m7 +POKEMON_8 = 24 6D 38 @ $m8 +NAME_0 = 24 6E 30 @ $n0 +NAME_1 = 24 6E 31 @ $n1 +NAME_2 = 24 6E 32 @ $n2 +NAME_3 = 24 6E 33 @ $n3 +NAME_4 = 24 6E 34 @ $n4 +NAME_5 = 24 6E 35 @ $n5 +NAME_6 = 24 6E 36 @ $n6 +NAME_7 = 24 6E 37 @ $n7 +NAME_8 = 24 6E 38 @ $n8 +NAME_9 = 24 6E 39 @ $n9 +TEAM_NAME = 24 74 @ $t @ TEXT MACROS @ @@ -327,40 +328,43 @@ NEW_LINE = 23 6E @ #n @ COLOR FORMATTING MACROS @ -@ TO USE: {COLOR_(1 or 2) ______} text here {END_COLOR_(# from first one)} -@ EX: {COLOR_2 YELLOW}Steel{END_COLOR_TEXT_2} gets you a colored yellow "Steel" -COLOR_1 = 23 43 @ #C -COLOR_2 = 23 63 @ #c -END_COLOR_TEXT_1 = 23 52 @ #R -END_COLOR_TEXT_2 = 23 72 @ #r +@ TO USE: {COLOR (or color lowercase) ______} text here {RESET (likewise)} +@ EX: {COLOR YELLOW}Steel{RESET} gets you a colored yellow "Steel" +COLOR = 23 43 @ #C +color = 23 63 @ #c +RESET = 23 52 @ #R +reset = 23 72 @ #r @ COLORS -WHITE = 30 @ 0 -BLUE = 31 @ 1 +@ note: unused refers to currently decomped data, possible they exist in incbin +DEFAULT = 30 @ 0 +BLUE = 31 @ 1 - unused RED = 32 @ 2 -UNK_COLOR_2 = 02 -BLACK = 33 @ 3 +RED_RAW = 02 +RED_W = 57 @ W +BLACK = 33 @ 3 - unused GREEN = 34 @ 4 -UNK_COLOR_4 = 04 +GREEN_RAW = 04 +GREEN_H = 48 @ H (Seems to be for Friend Areas) +GREEN_I = 49 @ I CYAN = 35 @ 5 -CYAN_2 = 05 +CYAN_RAW = 05 +CYAN_G = 47 @ G +CYAN_M = 4D @ M YELLOW = 36 @ 6 -YELLOW_2 = 06 -WHITE_2 = 37 @ 7 -DARKER_GRAY = 38 @ 8 -DARK_GRAY = 39 @ 9 -WHITE_3 = 41 @ A -WHITE_4 = 42 @ B -YELLOW_3 = 43 @ C -YELLOW_4 = 44 @ D -GENDER_COLOR = 45 @ E -WHITE_5 = 46 @ F -LIGHT_BLUE = 47 @ G (TODO CHECK THIS) -UNK_COLOR_5 = 48 @ H (Seems to be for Friend Areas) -GREEN_2 = 49 @ I -CYAN_3 = 4D @ M -YELLOW_5 = 4E @ N -RED_2 = 57 @ W +YELLOW_RAW = 06 +YELLOW_C = 43 @ C +YELLOW_D = 44 @ D +YELLOW_N = 4E @ N +WHITE = 37 @ 7 +WHITE_A = 41 @ A - unused +WHITE_B = 42 @ B - unused +WHITE_F = 46 @ F - unused +DARKER_GRAY = 38 @ 8 - unused +DARK_GRAY = 39 @ 9 - unused +GENDER_COLOR = 45 @ E - color 15 +COLOR15_S = 53 @ S - color 15 - unused +COLOR15_T = 54 @ T - color 15 - unused @ FOR UNK_MACRO_3D diff --git a/data/data.s b/data/data.s index 7514dcad3..c3228d809 100644 --- a/data/data.s +++ b/data/data.s @@ -453,22 +453,22 @@ gUnknown_80B71A0: @ 80B71A0 .global CWEND_text CWEND_text: - .string "{COLOR_1 RED_2}END{END_COLOR_TEXT_1}\0" + .string "{COLOR RED_W}END{RESET}\0" .align 2,0 .global CNLAST_text CNLAST_text: - .string "{COLOR_1 YELLOW_5}LAST{END_COLOR_TEXT_1}\0" + .string "{COLOR YELLOW_N}LAST{RESET}\0" .align 2,0 .global CECONTINUE_text CECONTINUE_text: - .string "{COLOR_1 GENDER_COLOR}CONTINUE{END_COLOR_TEXT_1}\0" + .string "{COLOR GENDER_COLOR}CONTINUE{RESET}\0" .align 2,0 .global CISTART_text CISTART_text: - .string "{COLOR_1 GREEN_2}START{END_COLOR_TEXT_1}\0" + .string "{COLOR GREEN_I}START{RESET}\0" .align 2,0 .global gGroundEnterLookupTable diff --git a/data/data_80B9BB8.s b/data/data_80B9BB8.s index eefa6628b..9dd2e9c3c 100644 --- a/data/data_80B9BB8.s +++ b/data/data_80B9BB8.s @@ -6099,7 +6099,7 @@ gUnknown_80D406C: @ 80D406C .global gUnknown_80D4074 gUnknown_80D4074: @ 80D4074 - .string "{CENTER_ALIGN}{ARG_POKEMON_0}\0" + .string "{CENTER_ALIGN}{POKEMON_0}\0" .align 2,0 .global gUnknown_80D407C @@ -6179,12 +6179,12 @@ gUnknown_80D4104: @ 80D4104 .global gUnknown_80D4120 gUnknown_80D4120: @ 80D4120 - .string "{ARG_MOVE_ITEM_0}\0" + .string "{MOVE_ITEM_0}\0" .align 2,0 .global gUnknown_80D4124 gUnknown_80D4124: @ 80D4124 - .string "{ARG_MOVE_ITEM_0}($v02" + .string "{MOVE_ITEM_0}($v02" .byte 0x81, 0x5E .asciz "$v12)" .align 2,0 diff --git a/data/data_80DAF70.s b/data/data_80DAF70.s index 4e506b85c..99d7a2fd6 100644 --- a/data/data_80DAF70.s +++ b/data/data_80DAF70.s @@ -276,23 +276,23 @@ gUnknown_80DB580: @ 80DB580 .global gUnknown_80DB598 gUnknown_80DB598: @ 80DB598 - .string "{COLOR_1 GREEN}OVR{END_COLOR_TEXT_1}\0" + .string "{COLOR GREEN}OVR{RESET}\0" .align 2,0 .global gUnknown_80DB5A4 gUnknown_80DB5A4: @ 80DB5A4 - .string "{COLOR_1 YELLOW}INS{END_COLOR_TEXT_1}\0" + .string "{COLOR YELLOW}INS{RESET}\0" .align 2,0 .global gUnknown_80DB5B0 gUnknown_80DB5B0: @ 80DB5B0 - .string "{COLOR_1}%c" + .string "{COLOR}%c" .byte 0x81, 0x59 .align 2,0 .global gUnknown_80DB5B8 gUnknown_80DB5B8: @ 80DB5B8 - .string "{COLOR_1}%c%s\0" + .string "{COLOR}%c%s\0" .align 2,0 .global gUnknown_80DB5C0 @@ -322,12 +322,12 @@ gUnknown_80DB638: @ 80DB638 .global gUnknown_80DB654 gUnknown_80DB654: @ 80DB654 - .string "{COLOR_1 RED}%s{END_COLOR_TEXT_1}\0" + .string "{COLOR RED}%s{RESET}\0" .align 2,0 .global gUnknown_80DB65C gUnknown_80DB65C: @ 80DB65C - .string "{COLOR_1 CYAN}%s{END_COLOR_TEXT_1}\0" + .string "{COLOR CYAN}%s{RESET}\0" .align 2,0 .global gUnknown_80DB664 diff --git a/data/data_80F59C8.s b/data/data_80F59C8.s index 9e9ff2346..13c143642 100644 --- a/data/data_80F59C8.s +++ b/data/data_80F59C8.s @@ -1235,14 +1235,14 @@ gUnknown_80F7AF8: @ 80F7AF8 .global gUnknown_80F7AFC gUnknown_80F7AFC: @ 80F7AFC -.string "{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}\0" +.string "{COLOR YELLOW}%s{RESET}\0" .align 2,0 .global gUnknown_80F7B04 gUnknown_80F7B04: @ 80F7B04 -.string "{COLOR_1 YELLOW}" +.string "{COLOR YELLOW}" .byte 0x87, 0x45 -.string "{END_COLOR_TEXT_1}\0" +.string "{RESET}\0" .align 2,0 .string "pksdir0\0" .align 2,0 @@ -1284,8 +1284,8 @@ gActions: @ 80F7B14 .global gEquipPutOnDescription gEquipPutOnDescription: @ 80F7B94 -.string "{ARG_POKEMON_0} put on\n" -.string "the {ARG_MOVE_ITEM_0}.\0" +.string "{POKEMON_0} put on\n" +.string "the {MOVE_ITEM_0}.\0" .global gPeelText gPeelText: @ 80F7BA8 @@ -1294,8 +1294,8 @@ gPeelText: @ 80F7BA8 .global gPeelDescription gPeelDescription: @ 80F7BB0 -.string "{ARG_POKEMON_0} peeled\n" -.string "the {ARG_MOVE_ITEM_0}.\0" +.string "{POKEMON_0} peeled\n" +.string "the {MOVE_ITEM_0}.\0" .align 2,0 .global gIngestText @@ -1305,8 +1305,8 @@ gIngestText: @ 80F7BC4 .global gIngestDescription gIngestDescription: @ 80F7BCC -.string "{ARG_POKEMON_0} swallowed\n" -.string "the {ARG_MOVE_ITEM_0}.\0" +.string "{POKEMON_0} swallowed\n" +.string "the {MOVE_ITEM_0}.\0" .align 2,0 .global gEatText @@ -1316,8 +1316,8 @@ gEatText: @ 80F7BE4 .global gEatDescription gEatDescription: @ 80F7BE8 -.string "{ARG_POKEMON_0} ate\n" -.string "the {ARG_MOVE_ITEM_0}.\0" +.string "{POKEMON_0} ate\n" +.string "the {MOVE_ITEM_0}.\0" .align 2,0 .global gEquipText @@ -1327,8 +1327,8 @@ gEquipText: @ 80F7BFC .global gEquipDescription gEquipDescription: @ 80F7C04 -.string "{ARG_POKEMON_0} equipped\n" -.string "the {ARG_MOVE_ITEM_0}.\0" +.string "{POKEMON_0} equipped\n" +.string "the {MOVE_ITEM_0}.\0" .align 2,0 .global gThrowText @@ -1338,8 +1338,8 @@ gThrowText: @ 80F7C1C .global gThrowDescription gThrowDescription: @ 80F7C24 -.string "{ARG_POKEMON_0} threw\n" -.string "the {ARG_MOVE_ITEM_0}.\0" +.string "{POKEMON_0} threw\n" +.string "the {MOVE_ITEM_0}.\0" .align 2,0 .global gUseText @@ -1352,8 +1352,8 @@ gUseDescription: @ 80F7C3C .global gUnknown_80F7C3C gUnknown_80F7C3C: @ 80F7C3C -.string "{ARG_POKEMON_0} used\n" -.string "the {ARG_MOVE_ITEM_0}.\0" +.string "{POKEMON_0} used\n" +.string "the {MOVE_ITEM_0}.\0" .align 2,0 .global gUnknown_80F7C50 @@ -1683,7 +1683,7 @@ gUnknown_80F7F70: @ 80F7F70 gRescueSpotDescription: @ 80F7F7C .string "You reached the rescue spot where your\n" .string "friend's team went down!\n" -.string "Send an {COLOR_2 RED}A-OK Mail{END_COLOR_TEXT_2} from the Pelipper Post\n" +.string "Send an {color RED}A-OK Mail{reset} from the Pelipper Post\n" .string "Office to let your friend know you've\n" .string "rescued the defeated team.\0" .align 2,0 @@ -1756,7 +1756,7 @@ gTrapDescriptions: @ 80F8130 .global SpikeTrapDescription SpikeTrapDescription: @ 80F8180 .string "Stepping on this trap inflicts damage.\n" -.string "It can be made using the move {COLOR_2 YELLOW}Spikes{END_COLOR_TEXT_2}.\0" +.string "It can be made using the move {color YELLOW}Spikes{reset}.\0" .align 2, 0 .global PokemonTrapDescription @@ -1769,7 +1769,7 @@ PokemonTrapDescription: @ 80F81D4 WonderTileDescription: @ 80F8224 .string "An odd floor tile seen in many dungeons.\n" .string "Stepping on it resets the Pokémon's\n" -.string "{COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}, and so on, if\n" +.string "{color YELLOW}Attack{reset}, {color YELLOW}Defense{reset}, and so on, if\n" .string "they are boosted or reduced.\0" .align 2, 0 @@ -1783,13 +1783,13 @@ ChestnutTrapDescription: @ 80F82C0 .global PPZeroTrapDescription PPZeroTrapDescription: @ 80F8318 .string "Stepping on this trap completely drains\n" -.string "the {COLOR_2 YELLOW}PP{END_COLOR_TEXT_2} of a random move.\0" +.string "the {color YELLOW}PP{reset} of a random move.\0" .align 2, 0 .global ExplosionTrapDescription ExplosionTrapDescription: @ 80F8360 .string "Stepping on this trap triggers a\n" -.string "{COLOR_2 CYAN}huge explosion{END_COLOR_TEXT_2}.\n" +.string "{color CYAN}huge explosion{reset}.\n" .string "Its damage extends to other Pokémon,\n" .string "items, and walls. It has a bigger\n" .string "range than a Selfdestruct Trap.\0" @@ -1797,7 +1797,7 @@ ExplosionTrapDescription: @ 80F8360 .global SelfdestructTrapDescription SelfdestructTrapDescription: @ 80F8404 -.string "Stepping on this trap makes it {COLOR_2 CYAN}explode{END_COLOR_TEXT_2}.\n" +.string "Stepping on this trap makes it {color CYAN}explode{reset}.\n" .string "Its damage extends to other Pokémon,\n" .string "items, and walls around the trap.\0" .align 2, 0 @@ -1805,7 +1805,7 @@ SelfdestructTrapDescription: @ 80F8404 .global PoisonTrapDescription PoisonTrapDescription: @ 80F847C .string "Stepping on this trap looses poison\n" -.string "spikes that leave the Pokémon {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}.\0" +.string "spikes that leave the Pokémon {color CYAN}poisoned{reset}.\0" .align 2, 0 .global SealTrapDescription @@ -1818,21 +1818,21 @@ SealTrapDescription: @ 80F84D0 .global SlowTrapDescription SlowTrapDescription: @ 80F8538 .string "Stepping on this trap lowers the\n" -.string "Pokémon's {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} by one level.\0" +.string "Pokémon's {color YELLOW}Movement Speed{reset} by one level.\0" .align 2, 0 .global SleepTrapDescription SleepTrapDescription: @ 80F8588 .string "Stepping on this trap releases a sleeping\n" .string "gas that puts the Pokémon to\n" -.string "{COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}.\0" +.string "{color CYAN}sleep{reset}.\0" .align 2, 0 .global ConfuseTrapDescription ConfuseTrapDescription: @ 80F85DC .string "Stepping on this trap spins the Pokémon\n" .string "around dizzyingly, making it \n" -.string "{COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.\0" +.string "{color CYAN}confused{reset}.\0" .align 2, 0 .global GustTrapDescription @@ -1878,9 +1878,9 @@ StickyTrapDescription: @ 80F8834 .global MudTrapDescription MudTrapDescription: @ 80F887C .string "Stepping on this trap makes it blow\n" -.string "mud that lowers the Pokémon's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2},\n" -.string "{COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}, or\n" -.string "{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by one level.\0" +.string "mud that lowers the Pokémon's {color YELLOW}Attack{reset},\n" +.string "{color YELLOW}Defense{reset}, {color YELLOW}Special Attack{reset}, or\n" +.string "{color YELLOW}Special Defense{reset} by one level.\0" .align 2, 0 @ This trap is unused in the game. @@ -1892,7 +1892,7 @@ TripTrapDescription: @ 80F891C .global gUnknown_80F895C gUnknown_80F895C: @ 80F895C -.string "{COLOR_2 YELLOW}Decoy{END_COLOR_TEXT_2}\0" +.string "{color YELLOW}Decoy{reset}\0" .align 2, 0 .global gUnknown_80F8968 @@ -1911,7 +1911,7 @@ gUnknown_80F8974: @ 80F8974 .global gUnknown_80F8978 gUnknown_80F8978: @ 80F8978 -.string "{COLOR_2 YELLOW}Pokémon{END_COLOR_TEXT_2}\0" +.string "{color YELLOW}Pokémon{reset}\0" .align 2, 0 .global gUnknown_80F8988 @@ -1930,7 +1930,7 @@ gUnknown_80F8994: @ 80F8994 .global PartnerFainted_80F8998 PartnerFainted_80F8998: @ 80F8998 -.string "Your partner {ARG_POKEMON_0} fainted!\0" +.string "Your partner {POKEMON_0} fainted!\0" .align 2,0 .global gUnknown_80F89B4 @@ -1939,7 +1939,7 @@ gUnknown_80F89B4: @ 80F89B4 .global ClientFainted_80F89B8 ClientFainted_80F89B8: @ 80F89B8 -.string "Your client {ARG_POKEMON_0} fainted!\0" +.string "Your client {POKEMON_0} fainted!\0" .align 2,0 .global gUnknown_80F89D4 @@ -1964,7 +1964,7 @@ gUnknown_80F89F4: @ 80F89F4 .global BlownAway_80F89F8 BlownAway_80F89F8: @ 80F89F8 -.string "{ARG_POKEMON_0} was blown away!\0" +.string "{POKEMON_0} was blown away!\0" .align 2,0 .global gUnknown_80F8A0C @@ -2044,7 +2044,7 @@ gUnknown_80F8B24: @ 80F8B24 .global gUnknown_80F8B28 gUnknown_80F8B28: @ 80F8B28 -.string "The move {ARG_MOVE_ITEM_0} was set.\0" +.string "The move {MOVE_ITEM_0} was set.\0" .align 2,0 .global gUnknown_80F8B40 @@ -2053,7 +2053,7 @@ gUnknown_80F8B40: @ 80F8B40 .global gUnknown_80F8B44 gUnknown_80F8B44: @ 80F8B44 -.string "The move {ARG_MOVE_ITEM_0} was deselected.\0" +.string "The move {MOVE_ITEM_0} was deselected.\0" .align 2,0 .global gUnknown_80F8B64 @@ -2063,7 +2063,7 @@ gUnknown_80F8B64: @ 80F8B64 .global gUnknown_80F8B6C gUnknown_80F8B6C: @ 80F8B6C -.string "The move {ARG_MOVE_ITEM_0} was delinked.\0" +.string "The move {MOVE_ITEM_0} was delinked.\0" .align 2,0 .global gUnknown_80F8B88 @@ -2091,14 +2091,14 @@ gUnknown_80F8BE0: @ 80F8BE0 .global gUnknown_80F8BE4 gUnknown_80F8BE4: @ 80F8BE4 -.string "The {ARG_MOVE_ITEM_1} is all sticky!\n" +.string "The {MOVE_ITEM_1} is all sticky!\n" .string "It doesn't work!\0" .align 2, 0 .4byte gUnknown_80F8BE4 .global gUnknown_80F8C14 gUnknown_80F8C14: @ 80F8C14 -.string "The {ARG_MOVE_ITEM_1} is all sticky!\n" +.string "The {MOVE_ITEM_1} is all sticky!\n" .string "It can't be moved.\0" .align 2, 0 @@ -2116,7 +2116,7 @@ gItemStickyCannotMove3: @ 80F8C48 .global gUnknown_80F8C4C gUnknown_80F8C4C: @ 80F8C4C -.string "The {ARG_MOVE_ITEM_0} is all sticky!\n" +.string "The {MOVE_ITEM_0} is all sticky!\n" .string "It can't be equipped.\0" .align 2,0 @@ -2126,8 +2126,8 @@ gItemStickyCannotEquip: @ 80F8C7C .global gUnknown_80F8C80 gUnknown_80F8C80: @ 80F8C80 -.string "{ARG_POKEMON_1} took the {ARG_MOVE_ITEM_0}\n" -.string "and returned the {ARG_MOVE_ITEM_1}.\0" +.string "{POKEMON_1} took the {MOVE_ITEM_0}\n" +.string "and returned the {MOVE_ITEM_1}.\0" .align 2,0 .global gMonTookAndReturnedItem @@ -2137,7 +2137,7 @@ gMonTookAndReturnedItem: @ 80F8CA8 .global gUnknown_80F8CAC gUnknown_80F8CAC: @ 80F8CAC -.string "The {ARG_MOVE_ITEM_0} was set.\n" +.string "The {MOVE_ITEM_0} was set.\n" .string "Hold {L_BUTTON} then press {R_BUTTON} to throw one.\0" .align 2, 0 @@ -2151,7 +2151,7 @@ gUnknown_80F8CE8: @ 80F8CE8 .global gUnknown_80F8CEC gUnknown_80F8CEC: @ 80F8CEC -.string "Equipped the item {ARG_MOVE_ITEM_0}.\0" +.string "Equipped the item {MOVE_ITEM_0}.\0" .align 2,0 .global gUnknown_80F8D04 @@ -2160,7 +2160,7 @@ gUnknown_80F8D04: @ 80F8D04 .global gUnknown_80F8D08 gUnknown_80F8D08: @ 80F8D08 -.string "The {ARG_MOVE_ITEM_0} was deselected.\0" +.string "The {MOVE_ITEM_0} was deselected.\0" .global gUnknown_80F8D20 gUnknown_80F8D20: @ 80F8D20 @@ -2168,8 +2168,8 @@ gUnknown_80F8D20: @ 80F8D20 .global gUnknown_80F8D24 gUnknown_80F8D24: @ 80F8D24 -.string "The item {ARG_MOVE_ITEM_0} was given\n" -.string "to {ARG_POKEMON_1}.\0" +.string "The item {MOVE_ITEM_0} was given\n" +.string "to {POKEMON_1}.\0" .align 2,0 .global gUnknown_80F8D44 @@ -2188,8 +2188,8 @@ gUnknown_80F8D60: @ 80F8D60 .global gUnknown_80F8D64 gUnknown_80F8D64: @ 80F8D64 -.string "{ARG_POKEMON_0} returned\n" -.string "the {ARG_MOVE_ITEM_0}.\0" +.string "{POKEMON_0} returned\n" +.string "the {MOVE_ITEM_0}.\0" .align 2, 0 .global gUnknown_80F8D7C @@ -2199,8 +2199,8 @@ gUnknown_80F8D7C: @ 80F8D7C .global gUnknown_80F8D80 gUnknown_80F8D80: @ 80F8D80 -.string "The {ARG_MOVE_ITEM_0} was exchanged for\n" -.string "the {ARG_MOVE_ITEM_1} in the Toolbox.\0" +.string "The {MOVE_ITEM_0} was exchanged for\n" +.string "the {MOVE_ITEM_1} in the Toolbox.\0" .align 2, 0 .global gUnknown_80F8DB4 @@ -2210,7 +2210,7 @@ gUnknown_80F8DB4: @ 80F8DB4 .global gUnknown_80F8DB8 gUnknown_80F8DB8: @ 80F8DB8 -.string "{ARG_POKEMON_1} used the {ARG_MOVE_ITEM_0}\n" +.string "{POKEMON_1} used the {MOVE_ITEM_0}\n" .string "it was holding!\0" .align 2, 0 .4byte gUnknown_80F8DB8 @@ -2232,7 +2232,7 @@ gUnknown_80F8E04: @ 80F8E04 .global gUnknown_80F8E08 gUnknown_80F8E08: @ 80F8E08 -.string "{ARG_POKEMON_0} put the {ARG_MOVE_ITEM_0}\n" +.string "{POKEMON_0} put the {MOVE_ITEM_0}\n" .string "on the ground.\0" .align 2, 0 @@ -2268,8 +2268,8 @@ gNothingCanBePutDownHere: @ 80F8E78 .global gUnknown_80F8E7C gUnknown_80F8E7C: @ 80F8E7C -.string "Exchanged the {ARG_MOVE_ITEM_1} on the\n" -.string "ground with the {ARG_MOVE_ITEM_0}.\0" +.string "Exchanged the {MOVE_ITEM_1} on the\n" +.string "ground with the {MOVE_ITEM_0}.\0" .align 2, 0 .global gSwappedGroundItem @@ -2279,7 +2279,7 @@ gSwappedGroundItem: @ 80F8EAC .global gUnknown_80F8EB0 gUnknown_80F8EB0: @ 80F8EB0 -.string "{ARG_POKEMON_0} threw the {ARG_MOVE_ITEM_0}!\0" +.string "{POKEMON_0} threw the {MOVE_ITEM_0}!\0" .align 2, 0 .global gMonThrewItem1 @@ -2314,7 +2314,7 @@ gCannotFarewell: @ 80F8F08 .global gUnknown_80F8F0C gUnknown_80F8F0C: @ 80F8F0C -.string "{ARG_POKEMON_0} is cringing!\0" +.string "{POKEMON_0} is cringing!\0" .align 2, 0 .global gMonCringing @@ -2324,7 +2324,7 @@ gMonCringing: @ 80F8F20 .global gUnknown_80F8F24 gUnknown_80F8F24: @ 80F8F24 -.string "{ARG_POKEMON_0} is paralyzed!\0" +.string "{POKEMON_0} is paralyzed!\0" .align 2, 0 .global gMonParalyzed @@ -2334,8 +2334,8 @@ gMonParalyzed: @ 80F8F38 .global gUnknown_80F8F3C gUnknown_80F8F3C: @ 80F8F3C -.string "{ARG_POKEMON_0} stepped on\n" -.string "the {ARG_MOVE_ITEM_0}.\0" +.string "{POKEMON_0} stepped on\n" +.string "the {MOVE_ITEM_0}.\0" .align 2, 0 .global gMonSteppedOnItem @@ -2345,8 +2345,8 @@ gMonSteppedOnItem: @ 80F8F54 .global gUnknown_80F8F58 gUnknown_80F8F58: @ 80F8F58 -.string "{ARG_POKEMON_0} is terrified.\n" -.string "It didn't pick up the {ARG_MOVE_ITEM_0}.\0" +.string "{POKEMON_0} is terrified.\n" +.string "It didn't pick up the {MOVE_ITEM_0}.\0" .align 2, 0 .global gMonTerrifiedCouldntPickUpItem @@ -2356,8 +2356,8 @@ gMonTerrifiedCouldntPickUpItem: @ 80F8F88 .global gUnknown_80F8F8C gUnknown_80F8F8C: @ 80F8F8C -.string "{ARG_POKEMON_0} couldn't pick up\n" -.string "the {ARG_MOVE_ITEM_0}.\0" +.string "{POKEMON_0} couldn't pick up\n" +.string "the {MOVE_ITEM_0}.\0" .align 2, 0 .global gMonCouldntPickUpItem @@ -2367,7 +2367,7 @@ gMonCouldntPickUpItem: @ 80F8FAC .global gUnknown_80F8FB0 gUnknown_80F8FB0: @ 80F8FB0 -.string "Picked up the {ARG_MOVE_ITEM_0}.\0" +.string "Picked up the {MOVE_ITEM_0}.\0" .align 2, 0 .global gPickedUpItem2 @@ -2377,7 +2377,7 @@ gPickedUpItem2: @ 80F8FC4 .global gUnknown_80F8FC8 gUnknown_80F8FC8: @ 80F8FC8 -.string "Picked up the {ARG_MOVE_ITEM_0} and\n" +.string "Picked up the {MOVE_ITEM_0} and\n" .string "put it in the Toolbox.\0" .align 2, 0 @@ -2393,8 +2393,8 @@ gPickedUpItem: @ 80F8FFC .global gUnknown_80F9000 gUnknown_80F9000: @ 80F9000 -.string "{ARG_POKEMON_0} picked up\n" -.string "the {ARG_MOVE_ITEM_0}.\0" +.string "{POKEMON_0} picked up\n" +.string "the {MOVE_ITEM_0}.\0" .align 2, 0 .global gMonPickedUpItem2 @@ -2404,8 +2404,8 @@ gMonPickedUpItem2: @ 80F9018 .global gUnknown_80F901C gUnknown_80F901C: @ 80F901C -.string "{ARG_POKEMON_0} picked up the\n" -.string "{ARG_MOVE_ITEM_0} and put it in the Toolbox.\0" +.string "{POKEMON_0} picked up the\n" +.string "{MOVE_ITEM_0} and put it in the Toolbox.\0" .align 2, 0 .global gMonPickedUpItemToolbox @@ -2420,7 +2420,7 @@ gMonPickedUpItem: @ 80F9054 .global gUnknown_80F9058 gUnknown_80F9058: @ 80F9058 -.string "Say farewell to {ARG_POKEMON_0}?\n" +.string "Say farewell to {POKEMON_0}?\n" .string "It will be gone from the team forever.\0" .align 2, 0 @@ -2431,8 +2431,8 @@ gSayFarewellQ: @ 80F9094 .global gUnknown_80F9098 gUnknown_80F9098: @ 80F9098 -.string "Send {ARG_POKEMON_0} back?\n" -.string "{ARG_POKEMON_0}'s hold item will be lost.\0" +.string "Send {POKEMON_0} back?\n" +.string "{POKEMON_0}'s hold item will be lost.\0" .align 2, 0 .global gSendMonBackWithItemQ @@ -2442,7 +2442,7 @@ gSendMonBackWithItemQ: @ 80F90C8 .global gUnknown_80F90CC gUnknown_80F90CC: @ 80F90CC -.string "Send {ARG_POKEMON_0} back?\0" +.string "Send {POKEMON_0} back?\0" .align 2, 0 .global gSendMonBackQ @@ -2452,7 +2452,7 @@ gSendMonBackQ: @ 80F90DC .global gUnknown_80F90E0 gUnknown_80F90E0: @ 80F90E0 -.string "Say farewell to {ARG_POKEMON_0} and dismiss\n" +.string "Say farewell to {POKEMON_0} and dismiss\n" .string "it from the team?\0" .align 2, 0 @@ -2463,7 +2463,7 @@ gUnknown_80F9114: @ 80F9114 .global gUnknown_80F9118 gUnknown_80F9118: @ 80F9118 -.string "{ARG_POKEMON_0} seemed disappointed and left.\0" +.string "{POKEMON_0} seemed disappointed and left.\0" .align 2, 0 .global gUnknown_80F913C @@ -2473,7 +2473,7 @@ gUnknown_80F913C: @ 80F913C .global gUnknown_80F9140 gUnknown_80F9140: @ 80F9140 -.string "{ARG_POKEMON_0} went back.\0" +.string "{POKEMON_0} went back.\0" .align 2, 0 .global gMonWentBack @@ -2493,7 +2493,7 @@ gUnknown_80F9158: @ 80F9158 .global gUnknown_80F915C gUnknown_80F915C: @ 80F915C -.string "$-Belly:{UNK_MACRO_3E M3E_147}{ARG_VALUE_0}/{ARG_VALUE_1}\0" +.string "$-Belly:{UNK_MACRO_3E M3E_147}{VALUE_0}/{VALUE_1}\0" .align 2, 0 .global gUnknown_80F9174 @@ -2503,7 +2503,7 @@ gUnknown_80F9174: @ 80F9174 .global gUnknown_80F9178 gUnknown_80F9178: @ 80F9178 -.string "Money:{UNK_MACRO_3E M3E_147}{ARG_VALUE_0} {POKE}\0" +.string "Money:{UNK_MACRO_3E M3E_147}{VALUE_0} {POKE}\0" .align 2, 0 .global gUnknown_80F9190 @@ -2513,7 +2513,7 @@ gUnknown_80F9190: @ 80F9190 .global gUnknown_80F9194 gUnknown_80F9194: @ 80F9194 -.string "Weather:{UNK_MACRO_3E M3E_159}{ARG_POKEMON_0}\0" +.string "Weather:{UNK_MACRO_3E M3E_159}{POKEMON_0}\0" .align 2, 0 .global gUnknown_80F91A8 @@ -2523,7 +2523,7 @@ gUnknown_80F91A8: @ 80F91A8 .global gUnknown_80F91AC gUnknown_80F91AC: @ 80F91AC -.string "Play:{UNK_MACRO_3E M3E_147}{ARG_VALUE_0}:$V12:$V22\0" +.string "Play:{UNK_MACRO_3E M3E_147}{VALUE_0}:$V12:$V22\0" .align 2, 0 .global gUnknown_80F91C8 @@ -2533,7 +2533,7 @@ gUnknown_80F91C8: @ 80F91C8 .global gUnknown_80F91CC gUnknown_80F91CC: @ 80F91CC -.string "{ARG_POKEMON_0}{UNK_MACRO_3E M3E_66}$v03/$v13\0" +.string "{POKEMON_0}{UNK_MACRO_3E M3E_66}$v03/$v13\0" .align 2, 0 .global gUnknown_80F91E0 @@ -2677,7 +2677,7 @@ gUnknown_80F9344: @ 80F9344 .global gUnknown_80F9350 gUnknown_80F9350: @ 80F9350 -.string "{ARG_POKEMON_1} is unaffected!\0" +.string "{POKEMON_1} is unaffected!\0" .align 2, 0 .global gUnknown_80F9364 @@ -2687,7 +2687,7 @@ gUnknown_80F9364: @ 80F9364 .global gUnknown_80F9368 gUnknown_80F9368: @ 80F9368 -.string "The move missed {ARG_POKEMON_1}!\0" +.string "The move missed {POKEMON_1}!\0" .align 2, 0 .global gUnknown_80F9380 @@ -2702,7 +2702,7 @@ gUnknown_80F9384: @ 80F9384 .global gUnknown_80F9388 gUnknown_80F9388: @ 80F9388 -.string "It had no effect on {ARG_POKEMON_1}!\0" +.string "It had no effect on {POKEMON_1}!\0" .align 2, 0 .global gUnknown_80F93A4 @@ -2712,7 +2712,7 @@ gUnknown_80F93A4: @ 80F93A4 .global gUnknown_80F93A8 gUnknown_80F93A8: @ 80F93A8 -.string "The move {ARG_MOVE_ITEM_0} can't be used!\0" +.string "The move {MOVE_ITEM_0} can't be used!\0" .align 2, 0 .global gUnknown_80F93C8 @@ -2722,7 +2722,7 @@ gUnknown_80F93C8: @ 80F93C8 .global gUnknown_80F93CC gUnknown_80F93CC: @ 80F93CC -.string "The {ARG_MOVE_ITEM_0} fell on the ground.\0" +.string "The {MOVE_ITEM_0} fell on the ground.\0" .align 2, 0 .global gItemFellOnGround @@ -2732,7 +2732,7 @@ gItemFellOnGround: @ 80F93E8 .global gUnknown_80F93EC gUnknown_80F93EC: @ 80F93EC -.string "The {ARG_MOVE_ITEM_0} fell in the water.\0" +.string "The {MOVE_ITEM_0} fell in the water.\0" .align 2, 0 .global gItemFellInWater @@ -2742,7 +2742,7 @@ gItemFellInWater: @ 80F9408 .global gUnknown_80F940C gUnknown_80F940C: @ 80F940C -.string "The {ARG_MOVE_ITEM_0} became buried.\0" +.string "The {MOVE_ITEM_0} became buried.\0" .align 2, 0 .global gItemBuried @@ -2752,7 +2752,7 @@ gItemBuried: @ 80F9424 .global gUnknown_80F9428 gUnknown_80F9428: @ 80F9428 -.string "The {ARG_MOVE_ITEM_0} was lost!\0" +.string "The {MOVE_ITEM_0} was lost!\0" .align 2, 0 .global gItemLost @@ -2782,7 +2782,7 @@ gSeveralItemsLost: @ 80F947C .global gUnknown_80F9480 gUnknown_80F9480: @ 80F9480 -.string "The {ARG_MOVE_ITEM_0} fell out of sight!\0" +.string "The {MOVE_ITEM_0} fell out of sight!\0" .align 2, 0 .global gItemFellOutOfSight @@ -2792,8 +2792,8 @@ gItemFellOutOfSight: @ 80F949C .global gUnknown_80F94A0 gUnknown_80F94A0: @ 80F94A0 -.string "The {ARG_MOVE_ITEM_0} went flying\n" -.string "towards {ARG_POKEMON_0}!\0" +.string "The {MOVE_ITEM_0} went flying\n" +.string "towards {POKEMON_0}!\0" .align 2, 0 .global gUnknown_80F94C4 @@ -2803,7 +2803,7 @@ gUnknown_80F94C4: @ 80F94C4 .global gUnknown_80F94C8 gUnknown_80F94C8: @ 80F94C8 -.string "It missed {ARG_POKEMON_0}!\0" +.string "It missed {POKEMON_0}!\0" .align 2, 0 .global gUnknown_80F94D8 @@ -2813,7 +2813,7 @@ gUnknown_80F94D8: @ 80F94D8 .global gUnknown_80F94DC gUnknown_80F94DC: @ 80F94DC -.string "{ARG_POKEMON_0} dodged the {ARG_MOVE_ITEM_0}!\0" +.string "{POKEMON_0} dodged the {MOVE_ITEM_0}!\0" .align 2, 0 .global gUnknown_80F94F0 @@ -2823,8 +2823,8 @@ gUnknown_80F94F0: @ 80F94F0 .global gUnknown_80F94F4 gUnknown_80F94F4: @ 80F94F4 -.string "The {ARG_MOVE_ITEM_0} bounced off\n" -.string "{ARG_POKEMON_0}!\0" +.string "The {MOVE_ITEM_0} bounced off\n" +.string "{POKEMON_0}!\0" .align 2, 0 .global gUnknown_80F9510 @@ -2834,7 +2834,7 @@ gUnknown_80F9510: @ 80F9510 .global gUnknown_80F9514 gUnknown_80F9514: @ 80F9514 -.string "The {ARG_MOVE_ITEM_0} flew out of sight!\0" +.string "The {MOVE_ITEM_0} flew out of sight!\0" .align 2, 0 .global gUnknown_80F9530 @@ -2844,7 +2844,7 @@ gUnknown_80F9530: @ 80F9530 .global gFrozenMessage gFrozenMessage: @ 80F9534 -.string "{ARG_POKEMON_0} is frozen solid!\0" +.string "{POKEMON_0} is frozen solid!\0" .align 2, 0 .global gPtrFrozenMessage @@ -2853,7 +2853,7 @@ gPtrFrozenMessage: @ 80F954C .global gWrappedAroundMessage gWrappedAroundMessage: @ 80F9550 -.string "{ARG_POKEMON_0} has its foe wrapped!\0" +.string "{POKEMON_0} has its foe wrapped!\0" .align 2, 0 .global gPtrWrappedAroundMessage @@ -2862,7 +2862,7 @@ gPtrWrappedAroundMessage: @ 80F956C .global gWrappedByMessage gWrappedByMessage: @ 80F9570 -.string "{ARG_POKEMON_0} is wrapped by its foe!\0" +.string "{POKEMON_0} is wrapped by its foe!\0" .align 2, 0 .global gPtrWrappedByMessage @@ -2871,7 +2871,7 @@ gPtrWrappedByMessage: @ 80F958C .global gPausedMessage gPausedMessage: @ 80F9590 -.string "{ARG_POKEMON_0} can't move!\0" +.string "{POKEMON_0} can't move!\0" .align 2, 0 .global gPtrPausedMessage @@ -2883,7 +2883,7 @@ gInfatuatedMessage: @ 80F95A8 .global gUnknown_80F95A8 gUnknown_80F95A8: @ 80F95A8 -.string "{ARG_POKEMON_0} is infatuated!\0" +.string "{POKEMON_0} is infatuated!\0" .align 2, 0 .global gPtrInfatuatedMessage @@ -2892,7 +2892,7 @@ gPtrInfatuatedMessage: @ 80F95BC .global gBideMessage gBideMessage: @ 80F95C0 -.string "{ARG_POKEMON_0} is storing energy!\0" +.string "{POKEMON_0} is storing energy!\0" .align 2, 0 .global gPtrBideMessage @@ -2905,7 +2905,7 @@ gUnknown_80F95DC: @ 80F95DC .global gUnknown_80F95DC gUnknown_80F95DC: @ 80F95DC -.string "{ARG_POKEMON_0} is asleep!\0" +.string "{POKEMON_0} is asleep!\0" .align 2, 0 .global gUnknown_80F95EC @@ -2915,7 +2915,7 @@ gUnknown_80F95EC: @ 80F95EC .global gUnknown_80F95F0 gUnknown_80F95F0: @ 80F95F0 -.string "{ARG_POKEMON_1} is frozen!\0" +.string "{POKEMON_1} is frozen!\0" .align 2, 0 .global gUnknown_80F9600 @@ -2965,7 +2965,7 @@ gUnknown_80F9670: @ 80F9670 .global gUnknown_80F9674 gUnknown_80F9674: @ 80F9674 -.string "{ARG_POKEMON_1} took no damage!\0" +.string "{POKEMON_1} took no damage!\0" .align 2, 0 .global gUnknown_80F9688 @@ -2975,7 +2975,7 @@ gUnknown_80F9688: @ 80F9688 .global gUnknown_80F968C gUnknown_80F968C: @ 80F968C -.string "{ARG_POKEMON_1} took calamitous damage!\0" +.string "{POKEMON_1} took calamitous damage!\0" .align 2, 0 .global gUnknown_80F96A8 @@ -2985,7 +2985,7 @@ gUnknown_80F96A8: @ 80F96A8 .global gUnknown_80F96AC gUnknown_80F96AC: @ 80F96AC -.string "{ARG_POKEMON_0} exploded!\0" +.string "{POKEMON_0} exploded!\0" .align 2, 0 .global gUnknown_80F96BC @@ -3006,7 +3006,7 @@ gUnknown_80F96EC: @ 80F96EC .global gUnknown_80F96F0 gUnknown_80F96F0: @ 80F96F0 -.string "{ARG_POKEMON_0} fell into the pitfall!\0" +.string "{POKEMON_0} fell into the pitfall!\0" .align 2, 0 .global gUnknown_80F970C @@ -3026,7 +3026,7 @@ gUnknown_80F9728: @ 80F9728 .global gUnknown_80F972C gUnknown_80F972C: @ 80F972C -.string "{ARG_POKEMON_0} is famished.\0" +.string "{POKEMON_0} is famished.\0" .align 2, 0 .global gUnknown_80F9740 @@ -3036,7 +3036,7 @@ gUnknown_80F9740: @ 80F9740 .global gUnknown_80F9744 gUnknown_80F9744: @ 80F9744 -.string "{ARG_POKEMON_0} is already famished.\0" +.string "{POKEMON_0} is already famished.\0" .align 2, 0 .global gUnknown_80F9760 @@ -3072,103 +3072,103 @@ gUnknown_80F9764: @ 80F9764 .global gUnknown_80F97B8 gUnknown_80F97B8: @ 80F97B8 -.string "The recoil hit {ARG_POKEMON_1} for\n" -.string "{ARG_VALUE_0} damage!\0" +.string "The recoil hit {POKEMON_1} for\n" +.string "{VALUE_0} damage!\0" .align 2, 0 .global gUnknown_80F97DC gUnknown_80F97DC: @ 80F97DC .string "The move failed!\n" -.string "{ARG_POKEMON_1} took {ARG_VALUE_0} damage!\0" +.string "{POKEMON_1} took {VALUE_0} damage!\0" .align 2, 0 .global gUnknown_80F9804 gUnknown_80F9804: @ 80F9804 -.string "The bad weather inflicted {ARG_VALUE_0} damage\n" -.string "on {ARG_POKEMON_1}!\0" +.string "The bad weather inflicted {VALUE_0} damage\n" +.string "on {POKEMON_1}!\0" .align 2, 0 .global gUnknown_80F9834 gUnknown_80F9834: @ 80F9834 -.string "The Chestnut Trap hit {ARG_POKEMON_1}\n" -.string "for {ARG_VALUE_0} damage!\0" +.string "The Chestnut Trap hit {POKEMON_1}\n" +.string "for {VALUE_0} damage!\0" .align 2, 0 .global gUnknown_80F9860 gUnknown_80F9860: @ 80F9860 -.string "{ARG_POKEMON_1} was showered with sludge\n" -.string "for {ARG_VALUE_0} damage!\0" +.string "{POKEMON_1} was showered with sludge\n" +.string "for {VALUE_0} damage!\0" .align 2, 0 .global gUnknown_80F9890 gUnknown_80F9890: @ 80F9890 -.string "{ARG_POKEMON_1} took {ARG_VALUE_0} damage\n" +.string "{POKEMON_1} took {VALUE_0} damage\n" .string "from Destiny Bond!\0" .align 2, 0 .global gUnknown_80F98B8 gUnknown_80F98B8: @ 80F98B8 -.string "{ARG_POKEMON_1} took {ARG_VALUE_0} damage\n" +.string "{POKEMON_1} took {VALUE_0} damage\n" .string "from Perish Song!\0" .align 2, 0 .global gUnknown_80F98E0 gUnknown_80F98E0: @ 80F98E0 -.string "{ARG_POKEMON_1} stepped on spikes for\n" -.string "{ARG_VALUE_0} damage!\0" +.string "{POKEMON_1} stepped on spikes for\n" +.string "{VALUE_0} damage!\0" .align 2, 0 .global gUnknown_80F9908 gUnknown_80F9908: @ 80F9908 -.string "{ARG_POKEMON_1} took {ARG_VALUE_0} damage\n" +.string "{POKEMON_1} took {VALUE_0} damage\n" .string "from Leech Seed!\0" .align 2, 0 .global gUnknown_80F9930 gUnknown_80F9930: @ 80F9930 -.string "{ARG_POKEMON_1} awoke from its nightmare\n" -.string "and took {ARG_VALUE_0} damage!\0" +.string "{POKEMON_1} awoke from its nightmare\n" +.string "and took {VALUE_0} damage!\0" .align 2, 0 .global gUnknown_80F9964 gUnknown_80F9964: @ 80F9964 -.string "{ARG_POKEMON_1} was cursed for\n" -.string "{ARG_VALUE_0} damage!\0" +.string "{POKEMON_1} was cursed for\n" +.string "{VALUE_0} damage!\0" .align 2, 0 .global gUnknown_80F9984 gUnknown_80F9984: @ 80F9984 -.string "{ARG_POKEMON_1} took {ARG_VALUE_0} damage\n" +.string "{POKEMON_1} took {VALUE_0} damage\n" .string "from the counterattack!\0" .align 2, 0 .global gUnknown_80F99B0 gUnknown_80F99B0: @ 80F99B0 -.string "{ARG_POKEMON_1} was wrapped for\n" -.string "{ARG_VALUE_0} damage!\0" +.string "{POKEMON_1} was wrapped for\n" +.string "{VALUE_0} damage!\0" .align 2, 0 .global gUnknown_80F99D0 gUnknown_80F99D0: @ 80F99D0 -.string "{ARG_POKEMON_1} took {ARG_VALUE_0} damage\n" +.string "{POKEMON_1} took {VALUE_0} damage\n" .string "from poison!\0" .align 2, 0 .global gUnknown_80F99F4 gUnknown_80F99F4: @ 80F99F4 -.string "{ARG_POKEMON_1} was squeezed for\n" -.string "{ARG_VALUE_0} damage!\0" +.string "{POKEMON_1} was squeezed for\n" +.string "{VALUE_0} damage!\0" .align 2, 0 .global gUnknown_80F9A18 gUnknown_80F9A18: @ 80F9A18 -.string "{ARG_POKEMON_1}'s burn inflicted\n" -.string "{ARG_VALUE_0} damage!\0" +.string "{POKEMON_1}'s burn inflicted\n" +.string "{VALUE_0} damage!\0" .align 2, 0 .global gUnknown_80F9A3C gUnknown_80F9A3C: @ 80F9A3C -.string "{ARG_POKEMON_1} took {ARG_VALUE_0} damage!\0" +.string "{POKEMON_1} took {VALUE_0} damage!\0" .align 2, 0 .global gWeatherNames @@ -3225,7 +3225,7 @@ gUnknown_80F9AAC: @ 80F9AAC .global gUnknown_80F9AB4 gUnknown_80F9AB4: @ 80F9AB4 -.string "{ARG_POKEMON_0}'s HP went up {ARG_VALUE_0}!\0" +.string "{POKEMON_0}'s HP went up {VALUE_0}!\0" .align 2, 0 .global gUnknown_80F9ACC @@ -3235,7 +3235,7 @@ gUnknown_80F9ACC: @ 80F9ACC .global gUnknown_80F9AD0 gUnknown_80F9AD0: @ 80F9AD0 -.string "{ARG_POKEMON_0}'s Attack went up {ARG_VALUE_1}!\0" +.string "{POKEMON_0}'s Attack went up {VALUE_1}!\0" .align 2, 0 .global gUnknown_80F9AEC @@ -3245,7 +3245,7 @@ gUnknown_80F9AEC: @ 80F9AEC .global gUnknown_80F9AF0 gUnknown_80F9AF0: @ 80F9AF0 -.string "{ARG_POKEMON_0}'s Defense went up {ARG_VALUE_2}!\0" +.string "{POKEMON_0}'s Defense went up {VALUE_2}!\0" .align 2, 0 .global gUnknown_80F9B10 @@ -3255,7 +3255,7 @@ gUnknown_80F9B10: @ 80F9B10 .global gUnknown_80F9B14 gUnknown_80F9B14: @ 80F9B14 -.string "{ARG_POKEMON_0}'s Sp. Atk. went up {ARG_VALUE_3}!\0" +.string "{POKEMON_0}'s Sp. Atk. went up {VALUE_3}!\0" .align 2, 0 .global gUnknown_80F9B34 @@ -3265,7 +3265,7 @@ gUnknown_80F9B34: @ 80F9B34 .global gUnknown_80F9B38 gUnknown_80F9B38: @ 80F9B38 -.string "{ARG_POKEMON_0}'s Sp. Def. went up $d4!\0" +.string "{POKEMON_0}'s Sp. Def. went up $d4!\0" .align 2, 0 .global gUnknown_80F9B58 @@ -3275,7 +3275,7 @@ gUnknown_80F9B58: @ 80F9B58 .global gUnknown_80F9B5C gUnknown_80F9B5C: @ 80F9B5C -.string "{ARG_POKEMON_0} didn't level up.\0" +.string "{POKEMON_0} didn't level up.\0" .align 2, 0 .global gUnknown_80F9B74 @@ -3285,7 +3285,7 @@ gUnknown_80F9B74: @ 80F9B74 .global gUnknown_80F9B78 gUnknown_80F9B78: @ 80F9B78 -.string "{ARG_POKEMON_0} didn't level down.\0" +.string "{POKEMON_0} didn't level down.\0" .align 2, 0 .global gUnknown_80F9B94 @@ -3295,7 +3295,7 @@ gUnknown_80F9B94: @ 80F9B94 .global gUnknown_80F9B98 gUnknown_80F9B98: @ 80F9B98 -.string "{ARG_POKEMON_0} became the leader!\0" +.string "{POKEMON_0} became the leader!\0" .align 2, 0 .global gUnknown_80F9BB0 @@ -3381,12 +3381,12 @@ gUnknown_80F9CC0: @ 80F9CC0 .global gUnknown_80F9CC8 gUnknown_80F9CC8: @ 80F9CC8 -.string "{ARG_POKEMON_1} fainted!\0" +.string "{POKEMON_1} fainted!\0" .align 2, 0 .global gUnknown_80F9CD8 gUnknown_80F9CD8: @ 80F9CD8 -.string "{ARG_POKEMON_1} was defeated!\0" +.string "{POKEMON_1} was defeated!\0" .align 2, 0 .global gUnknown_80F9CEC @@ -3397,12 +3397,12 @@ gUnknown_80F9CEC: @ 80F9CEC .global gUnknown_80F9CF4 gUnknown_80F9CF4: @ 80F9CF4 -.string "Oh, no! {ARG_POKEMON_1} fainted!\0" +.string "Oh, no! {POKEMON_1} fainted!\0" .align 2, 0 .global gUnknown_80F9D0C gUnknown_80F9D0C: @ 80F9D0C -.string "Oh, no! {ARG_POKEMON_1} was defeated!\0" +.string "Oh, no! {POKEMON_1} was defeated!\0" .align 2, 0 .global gUnknown_80F9D28 @@ -3413,13 +3413,13 @@ gUnknown_80F9D28: @ 80F9D28 .global gUnknown_80F9D30 gUnknown_80F9D30: @ 80F9D30 -.string "{ARG_POKEMON_1} fainted!\n" +.string "{POKEMON_1} fainted!\n" .string "It left the rescue team!\0" .align 2, 0 .global gUnknown_80F9D58 gUnknown_80F9D58: @ 80F9D58 -.string "{ARG_POKEMON_1} was defeated!\n" +.string "{POKEMON_1} was defeated!\n" .string "It left the rescue team!\0" .align 2, 0 @@ -3437,7 +3437,7 @@ gUnknown_80F9D8C: @ 80F9D8C .global gUnknown_80F9D94 gUnknown_80F9D94: @ 80F9D94 -.string "{ARG_POKEMON_1} went back for now!\0" +.string "{POKEMON_1} went back for now!\0" .align 2, 0 .global gUnknown_80F9DAC @@ -3448,12 +3448,12 @@ gUnknown_80F9DAC: @ 80F9DAC .global gUnknown_80F9DB4 gUnknown_80F9DB4: @ 80F9DB4 -.string "Your client {ARG_POKEMON_1} fainted!\0" +.string "Your client {POKEMON_1} fainted!\0" .align 2, 0 .global gUnknown_80F9DD0 gUnknown_80F9DD0: @ 80F9DD0 -.string "Your client {ARG_POKEMON_1} was defeated!\0" +.string "Your client {POKEMON_1} was defeated!\0" .align 2, 0 .global gUnknown_80F9DF0 @@ -3464,13 +3464,13 @@ gUnknown_80F9DF0: @ 80F9DF0 .global gUnknown_80F9DF8 gUnknown_80F9DF8: @ 80F9DF8 -.string "{ARG_POKEMON_1} fainted while awaiting\n" +.string "{POKEMON_1} fainted while awaiting\n" .string "rescue!\0" .align 2, 0 .global gUnknown_80F9E1C gUnknown_80F9E1C: @ 80F9E1C -.string "{ARG_POKEMON_1} was defeated while awaiting\n" +.string "{POKEMON_1} was defeated while awaiting\n" .string "rescue!\0" .align 2, 0 @@ -3481,7 +3481,7 @@ gUnknown_80F9E44: @ 80F9E44 .global gUnknown_80F9E48 gUnknown_80F9E48: @ 80F9E48 -.string "{ARG_POKEMON_0} gained {ARG_VALUE_0} Exp. Points!\0" +.string "{POKEMON_0} gained {VALUE_0} Exp. Points!\0" .align 2, 0 .global gUnknown_80F9E64 @@ -3491,7 +3491,7 @@ gUnknown_80F9E64: @ 80F9E64 .global gUnknown_80F9E68 gUnknown_80F9E68: @ 80F9E68 -.string "{ARG_POKEMON_0} grew to Level {ARG_VALUE_0}!\0" +.string "{POKEMON_0} grew to Level {VALUE_0}!\0" .align 2, 0 .global gUnknown_80F9E80 @@ -3501,13 +3501,13 @@ gUnknown_80F9E80: @ 80F9E80 .global gUnknown_80F9E84 gUnknown_80F9E84: @ 80F9E84 -.string "{ARG_POKEMON_0}'s level remained unchanged.\0" +.string "{POKEMON_0}'s level remained unchanged.\0" .align 2, 0 .4byte gUnknown_80F9E84 .global gUnknown_80F9EAC gUnknown_80F9EAC: @ 80F9EAC -.string "{ARG_POKEMON_0} dropped to Level {ARG_VALUE_0}!\0" +.string "{POKEMON_0} dropped to Level {VALUE_0}!\0" .align 2, 0 .global gUnknown_80F9EC8 @@ -3517,7 +3517,7 @@ gUnknown_80F9EC8: @ 80F9EC8 .global gUnknown_80F9ECC gUnknown_80F9ECC: @ 80F9ECC -.string "{ARG_POKEMON_0}'s level didn't go down.\0" +.string "{POKEMON_0}'s level didn't go down.\0" .align 2, 0 .global gUnknown_80F9EEC @@ -3527,7 +3527,7 @@ gUnknown_80F9EEC: @ 80F9EEC .global gUnknown_80F9EF0 gUnknown_80F9EF0: @ 80F9EF0 -.string "{ARG_POKEMON_0} learned {ARG_MOVE_ITEM_0}!\0" +.string "{POKEMON_0} learned {MOVE_ITEM_0}!\0" .align 2, 0 .global gUnknown_80F9F04 @@ -3537,7 +3537,7 @@ gUnknown_80F9F04: @ 80F9F04 .global gUnknown_80F9F08 gUnknown_80F9F08: @ 80F9F08 -.string "{ARG_POKEMON_0} didn't learn the new move.\0" +.string "{POKEMON_0} didn't learn the new move.\0" .align 2, 0 .global gUnknown_80F9F2C @@ -3559,8 +3559,8 @@ gUnknown_80F9FA4: @ 80F9FA4 .global gUnknown_80F9FA8 gUnknown_80F9FA8: @ 80F9FA8 -.string "Yes! {ARG_POKEMON_0} wants to join the team!\n" -.string "Accept {ARG_POKEMON_0} as a team member?\0" +.string "Yes! {POKEMON_0} wants to join the team!\n" +.string "Accept {POKEMON_0} as a team member?\0" .align 2, 0 .global gUnknown_80F9FE8 @@ -3571,7 +3571,7 @@ gUnknown_80F9FE8: @ 80F9FE8 .global gUnknown_80F9FF0 gUnknown_80F9FF0: @ 80F9FF0 -.string "{ARG_POKEMON_0} went away...\0" +.string "{POKEMON_0} went away...\0" .align 2, 0 .global gUnknown_80FA004 @@ -3623,7 +3623,7 @@ gUnknown_80FA0C8: @ 80FA0C8 .global gUnknown_80FA0CC gUnknown_80FA0CC: @ 80FA0CC -.string "{ARG_POKEMON_0} joined $t to\n" +.string "{POKEMON_0} joined $t to\n" .string "go on adventures!\0" .align 2, 0 @@ -3634,8 +3634,8 @@ gUnknown_80FA0F0: @ 80FA0F0 .global gUnknown_80FA0F4 gUnknown_80FA0F4: @ 80FA0F4 -.string "{ARG_POKEMON_0} gained access to\n" -.string "the Friend Area {ARG_FRIEND_AREA}.\0" +.string "{POKEMON_0} gained access to\n" +.string "the Friend Area {FRIEND_AREA}.\0" .align 2, 0 .global gUnknown_80FA120 @@ -3654,38 +3654,38 @@ gUnknown_80FA124: @ 80FA124 .global gUnknown_80FA138 gUnknown_80FA138: @ 80FA138 -.string "{ARG_POKEMON_0}'s at quadruple speed!\0" +.string "{POKEMON_0}'s at quadruple speed!\0" .align 2, 0 .global gUnknown_80FA154 gUnknown_80FA154: @ 80FA154 -.string "{ARG_POKEMON_0}'s at triple speed!\0" +.string "{POKEMON_0}'s at triple speed!\0" .align 2, 0 .global gUnknown_80FA170 gUnknown_80FA170: @ 80FA170 -.string "{ARG_POKEMON_0}'s at double speed!\0" +.string "{POKEMON_0}'s at double speed!\0" .align 2, 0 .global gUnknown_80FA18C gUnknown_80FA18C: @ 80FA18C -.string "{ARG_POKEMON_0} returned to normal speed!\0" +.string "{POKEMON_0} returned to normal speed!\0" .align 2, 0 .global gUnknown_80FA1AC gUnknown_80FA1AC: @ 80FA1AC -.string "{ARG_POKEMON_0} was slowed!\0" +.string "{POKEMON_0} was slowed!\0" .align 2, 0 .global gUnknown_80FA1BC gUnknown_80FA1BC: @ 80FA1BC .string "The Rescue Team Badge\n" -.string "shone on {ARG_POKEMON_1}!\n" -.string "{ARG_POKEMON_1} gained a magical power!\n" -.string "{ARG_POKEMON_1}: Thank you!\n" +.string "shone on {POKEMON_1}!\n" +.string "{POKEMON_1} gained a magical power!\n" +.string "{POKEMON_1}: Thank you!\n" .string "Please come see me at the Pelipper\n" .string "Post Office later.\n" -.string "{ARG_POKEMON_1} escaped from the dungeon!\0" +.string "{POKEMON_1} escaped from the dungeon!\0" .align 2, 0 .global gUnknown_80FA260 @@ -3695,11 +3695,11 @@ gUnknown_80FA260: @ 80FA260 .global gUnknown_80FA264 gUnknown_80FA264: @ 80FA264 -.string "{ARG_POKEMON_1} happily accepted the item!\n" +.string "{POKEMON_1} happily accepted the item!\n" .string "\n\n" -.string "{ARG_POKEMON_1}: Thank you!\n" +.string "{POKEMON_1}: Thank you!\n" .string "\n\n" -.string "{ARG_POKEMON_1} left the dungeon!\n" +.string "{POKEMON_1} left the dungeon!\n" .string "\n\0" .align 2, 0 @@ -3710,9 +3710,9 @@ gUnknown_80FA2B0: @ 80FA2B0 .global gUnknown_80FA2B4 gUnknown_80FA2B4: @ 80FA2B4 -.string "Yes! {ARG_POKEMON_1} was found!\n" +.string "Yes! {POKEMON_1} was found!\n" .string "Use the Rescue Team Badge to save\n" -.string "{ARG_POKEMON_1}?\0" +.string "{POKEMON_1}?\0" .align 2, 0 .global gUnknown_80FA2F0 @@ -3722,9 +3722,9 @@ gUnknown_80FA2F0: @ 80FA2F0 .global gUnknown_80FA2F4 gUnknown_80FA2F4: @ 80FA2F4 -.string "Yes! {ARG_POKEMON_1} was found!\n" +.string "Yes! {POKEMON_1} was found!\n" .string "Deliver the requested item to\n" -.string "{ARG_POKEMON_1}?\0" +.string "{POKEMON_1}?\0" .align 2, 0 .global gUnknown_80FA32C @@ -3781,7 +3781,7 @@ gUnknown_80FA408: @ 80FA408 .global gUnknown_80FA40C gUnknown_80FA40C: @ 80FA40C -.string "The {ARG_MOVE_ITEM_0} isn't in the Toolbox.\n" +.string "The {MOVE_ITEM_0} isn't in the Toolbox.\n" .string "It couldn't be delivered.\0" .align 2, 0 @@ -3792,7 +3792,7 @@ gUnknown_80FA448: @ 80FA448 .global gUnknown_80FA44C gUnknown_80FA44C: @ 80FA44C -.string "{ARG_POKEMON_1} can't talk now.\0" +.string "{POKEMON_1} can't talk now.\0" .align 2, 0 .global gUnknown_80FA464 @@ -3802,12 +3802,12 @@ gUnknown_80FA464: @ 80FA464 .global gUnknown_80FA468 gUnknown_80FA468: @ 80FA468 -.string "Yes! {ARG_POKEMON_2} was successfully\n" +.string "Yes! {POKEMON_2} was successfully\n" .string "escorted!\n" -.string "{ARG_POKEMON_2} is delighted!\n" -.string "{ARG_POKEMON_2}: Thank you!\n" +.string "{POKEMON_2} is delighted!\n" +.string "{POKEMON_2}: Thank you!\n" .string "\n\n" -.string "{ARG_POKEMON_2}'s twosome left the dungeon!\n" +.string "{POKEMON_2}'s twosome left the dungeon!\n" .string "\n\0" .align 2, 0 @@ -3823,7 +3823,7 @@ gUnknown_80FA4D8: @ 80FA4D8 .global gUnknown_80FA4DC gUnknown_80FA4DC: @ 80FA4DC -.string "{ARG_POKEMON_2} doesn't seem to be around.\0" +.string "{POKEMON_2} doesn't seem to be around.\0" .align 2, 0 .global gUnknown_80FA500 @@ -3848,7 +3848,7 @@ gUnknown_80FA530: @ 80FA530 .global gUnknown_80FA534 gUnknown_80FA534: @ 80FA534 -.string "{ARG_POKEMON_2} can't talk now.\0" +.string "{POKEMON_2} can't talk now.\0" .align 2, 0 .global gUnknown_80FA54C @@ -3901,7 +3901,7 @@ gUnknown_80FA61C: @ 80FA61C .global gUnknown_80FA620 gUnknown_80FA620: @ 80FA620 -.string "{ARG_POKEMON_0}'s Reflect faded.\0" +.string "{POKEMON_0}'s Reflect faded.\0" .align 2, 0 .global gUnknown_80FA638 @@ -3911,7 +3911,7 @@ gUnknown_80FA638: @ 80FA638 .global gUnknown_80FA63C gUnknown_80FA63C: @ 80FA63C -.string "{ARG_POKEMON_0}'s Light Screen faded.\0" +.string "{POKEMON_0}'s Light Screen faded.\0" .align 2, 0 .global gUnknown_80FA658 @@ -3921,7 +3921,7 @@ gUnknown_80FA658: @ 80FA658 .global gUnknown_80FA65C gUnknown_80FA65C: @ 80FA65C -.string "{ARG_POKEMON_0}'s Counter effect faded.\0" +.string "{POKEMON_0}'s Counter effect faded.\0" .align 2, 0 .global gUnknown_80FA67C @@ -3931,7 +3931,7 @@ gUnknown_80FA67C: @ 80FA67C .global gUnknown_80FA680 gUnknown_80FA680: @ 80FA680 -.string "{ARG_POKEMON_0}'s Safeguard faded.\0" +.string "{POKEMON_0}'s Safeguard faded.\0" .align 2, 0 .global gUnknown_80FA69C @@ -3941,7 +3941,7 @@ gUnknown_80FA69C: @ 80FA69C .global gUnknown_80FA6A0 gUnknown_80FA6A0: @ 80FA6A0 -.string "{ARG_POKEMON_0}'s Magic Coat faded.\0" +.string "{POKEMON_0}'s Magic Coat faded.\0" .align 2, 0 .global gUnknown_80FA6BC @@ -3951,7 +3951,7 @@ gUnknown_80FA6BC: @ 80FA6BC .global gUnknown_80FA6C0 gUnknown_80FA6C0: @ 80FA6C0 -.string "{ARG_POKEMON_0}'s Wish faded.\0" +.string "{POKEMON_0}'s Wish faded.\0" .align 2, 0 .global gUnknown_80FA6D4 @@ -3961,7 +3961,7 @@ gUnknown_80FA6D4: @ 80FA6D4 .global gUnknown_80FA6D8 gUnknown_80FA6D8: @ 80FA6D8 -.string "{ARG_POKEMON_0} woke up!\0" +.string "{POKEMON_0} woke up!\0" .align 2, 0 .global gUnknown_80FA6E8 @@ -3971,7 +3971,7 @@ gUnknown_80FA6E8: @ 80FA6E8 .global gUnknown_80FA6EC gUnknown_80FA6EC: @ 80FA6EC -.string "{ARG_POKEMON_0} is no longer sleepless!\0" +.string "{POKEMON_0} is no longer sleepless!\0" .align 2, 0 .global gUnknown_80FA708 @@ -3991,7 +3991,7 @@ gUnknown_80FA710: @ 80FA710 .global gUnknown_80FA714 gUnknown_80FA714: @ 80FA714 -.string "{ARG_POKEMON_0} got over its drowsiness!\0" +.string "{POKEMON_0} got over its drowsiness!\0" .align 2, 0 .global gUnknown_80FA734 @@ -4021,7 +4021,7 @@ gUnknown_80FA778: @ 80FA778 .global gUnknown_80FA77C gUnknown_80FA77C: @ 80FA77C -.string "{ARG_POKEMON_0}'s Leech Seed wore off.\0" +.string "{POKEMON_0}'s Leech Seed wore off.\0" .align 2, 0 .global gUnknown_80FA79C @@ -4031,7 +4031,7 @@ gUnknown_80FA79C: @ 80FA79C .global gUnknown_80FA7A0 gUnknown_80FA7A0: @ 80FA7A0 -.string "{ARG_POKEMON_0} is no longer cursed!\0" +.string "{POKEMON_0} is no longer cursed!\0" .align 2, 0 .global gUnknown_80FA7BC @@ -4041,7 +4041,7 @@ gUnknown_80FA7BC: @ 80FA7BC .global gUnknown_80FA7C0 gUnknown_80FA7C0: @ 80FA7C0 -.string "{ARG_POKEMON_0}'s Snatch wore off!\0" +.string "{POKEMON_0}'s Snatch wore off!\0" .align 2, 0 .global gUnknown_80FA7DC @@ -4051,7 +4051,7 @@ gUnknown_80FA7DC: @ 80FA7DC .global gUnknown_80FA7E0 gUnknown_80FA7E0: @ 80FA7E0 -.string "{ARG_POKEMON_0} recovered from confusion!\0" +.string "{POKEMON_0} recovered from confusion!\0" .align 2, 0 .global gUnknown_80FA800 @@ -4061,7 +4061,7 @@ gUnknown_80FA800: @ 80FA800 .global gUnknown_80FA804 gUnknown_80FA804: @ 80FA804 -.string "{ARG_POKEMON_0} regained mobility!\0" +.string "{POKEMON_0} regained mobility!\0" .align 2, 0 .global gUnknown_80FA81C @@ -4081,7 +4081,7 @@ gUnknown_80FA824: @ 80FA824 .global gUnknown_80FA828 gUnknown_80FA828: @ 80FA828 -.string "{ARG_POKEMON_0}'s Ingrain wore off!\0" +.string "{POKEMON_0}'s Ingrain wore off!\0" .align 2, 0 .global gUnknown_80FA844 @@ -4091,7 +4091,7 @@ gUnknown_80FA844: @ 80FA844 .global gUnknown_80FA848 gUnknown_80FA848: @ 80FA848 -.string "{ARG_POKEMON_0} recovered from paralysis!\0" +.string "{POKEMON_0} recovered from paralysis!\0" .align 2, 0 .global gUnknown_80FA868 @@ -4101,7 +4101,7 @@ gUnknown_80FA868: @ 80FA868 .global gUnknown_80FA86C gUnknown_80FA86C: @ 80FA86C -.string "{ARG_POKEMON_0} recovered from a burn!\0" +.string "{POKEMON_0} recovered from a burn!\0" .align 2, 0 .global gUnknown_80FA888 @@ -4111,7 +4111,7 @@ gUnknown_80FA888: @ 80FA888 .global gUnknown_80FA88C gUnknown_80FA88C: @ 80FA88C -.string "{ARG_POKEMON_0} recovered from poison!\0" +.string "{POKEMON_0} recovered from poison!\0" .align 2, 0 .global gUnknown_80FA8A8 @@ -4121,7 +4121,7 @@ gUnknown_80FA8A8: @ 80FA8A8 .global gUnknown_80FA8AC gUnknown_80FA8AC: @ 80FA8AC -.string "{ARG_POKEMON_0} thawed out!\0" +.string "{POKEMON_0} thawed out!\0" .align 2, 0 .global gUnknown_80FA8BC @@ -4131,7 +4131,7 @@ gUnknown_80FA8BC: @ 80FA8BC .global gUnknown_80FA8C0 gUnknown_80FA8C0: @ 80FA8C0 -.string "{ARG_POKEMON_0} lost its Sure Shot status!\0" +.string "{POKEMON_0} lost its Sure Shot status!\0" .align 2, 0 .global gUnknown_80FA8E0 @@ -4141,7 +4141,7 @@ gUnknown_80FA8E0: @ 80FA8E0 .global gUnknown_80FA8E4 gUnknown_80FA8E4: @ 80FA8E4 -.string "{ARG_POKEMON_0} recovered from its\n" +.string "{POKEMON_0} recovered from its\n" .string "Whiffer status!\0" .align 2, 0 @@ -4152,7 +4152,7 @@ gUnknown_80FA90C: @ 80FA90C .global gUnknown_80FA910 gUnknown_80FA910: @ 80FA910 -.string "{ARG_POKEMON_0}'s damage returned to normal!\0" +.string "{POKEMON_0}'s damage returned to normal!\0" .align 2, 0 .global gUnknown_80FA934 @@ -4162,7 +4162,7 @@ gUnknown_80FA934: @ 80FA934 .global gUnknown_80FA938 gUnknown_80FA938: @ 80FA938 -.string "{ARG_POKEMON_0} lost its Focus Energy status!\0" +.string "{POKEMON_0} lost its Focus Energy status!\0" .align 2, 0 .global gUnknown_80FA95C @@ -4172,7 +4172,7 @@ gUnknown_80FA95C: @ 80FA95C .global gUnknown_80FA960 gUnknown_80FA960: @ 80FA960 -.string "{ARG_POKEMON_0} is no longer cowering!\0" +.string "{POKEMON_0} is no longer cowering!\0" .align 2, 0 .global gUnknown_80FA97C @@ -4192,7 +4192,7 @@ gUnknown_80FA9A0: @ 80FA9A0 .global gUnknown_80FA9A4 gUnknown_80FA9A4: @ 80FA9A4 -.string "{ARG_POKEMON_0}'s Protect wore off!\0" +.string "{POKEMON_0}'s Protect wore off!\0" .align 2, 0 .global gUnknown_80FA9C0 @@ -4202,7 +4202,7 @@ gUnknown_80FA9C0: @ 80FA9C0 .global gUnknown_80FA9C4 gUnknown_80FA9C4: @ 80FA9C4 -.string "{ARG_POKEMON_0}'s Taunt wore off!\0" +.string "{POKEMON_0}'s Taunt wore off!\0" .align 2, 0 .global gUnknown_80FA9DC @@ -4212,7 +4212,7 @@ gUnknown_80FA9DC: @ 80FA9DC .global gUnknown_80FA9E0 gUnknown_80FA9E0: @ 80FA9E0 -.string "{ARG_POKEMON_0} became visible!\0" +.string "{POKEMON_0} became visible!\0" .align 2, 0 .global gUnknown_80FA9F4 @@ -4222,7 +4222,7 @@ gUnknown_80FA9F4: @ 80FA9F4 .global gUnknown_80FA9F8 gUnknown_80FA9F8: @ 80FA9F8 -.string "{ARG_POKEMON_0} regained sight!\0" +.string "{POKEMON_0} regained sight!\0" .align 2, 0 .global gUnknown_80FAA0C @@ -4232,7 +4232,7 @@ gUnknown_80FAA0C: @ 80FAA0C .global gUnknown_80FAA10 gUnknown_80FAA10: @ 80FAA10 -.string "{ARG_POKEMON_0} can see normally again!\0" +.string "{POKEMON_0} can see normally again!\0" .align 2, 0 .global gUnknown_80FAA2C @@ -4242,7 +4242,7 @@ gUnknown_80FAA2C: @ 80FAA2C .global gUnknown_80FAA30 gUnknown_80FAA30: @ 80FAA30 -.string "{ARG_POKEMON_0} returned to normal!\0" +.string "{POKEMON_0} returned to normal!\0" .align 2, 0 .global gUnknown_80FAA48 @@ -4252,7 +4252,7 @@ gUnknown_80FAA48: @ 80FAA48 .global gUnknown_80FAA4C gUnknown_80FAA4C: @ 80FAA4C -.string "{ARG_POKEMON_0}'s Mirror Coat faded!\0" +.string "{POKEMON_0}'s Mirror Coat faded!\0" .align 2, 0 .global gUnknown_80FAA68 @@ -4262,7 +4262,7 @@ gUnknown_80FAA68: @ 80FAA68 .global gUnknown_80FAA6C gUnknown_80FAA6C: @ 80FAA6C -.string "{ARG_POKEMON_0} gave up on Destiny Bond!\0" +.string "{POKEMON_0} gave up on Destiny Bond!\0" .align 2, 0 .global gUnknown_80FAA8C @@ -4272,7 +4272,7 @@ gUnknown_80FAA8C: @ 80FAA8C .global gUnknown_80FAA90 gUnknown_80FAA90: @ 80FAA90 -.string "{ARG_POKEMON_0} recovered from Encore!\0" +.string "{POKEMON_0} recovered from Encore!\0" .align 2, 0 .global gUnknown_80FAAAC @@ -4282,7 +4282,7 @@ gUnknown_80FAAAC: @ 80FAAAC .global gMonStoppedEnduringMessage gMonStoppedEnduringMessage: @ 80FAAB0 -.string "{ARG_POKEMON_0} stopped enduring!\0" +.string "{POKEMON_0} stopped enduring!\0" .align 2, 0 .global gPtrMonStoppedEnduringMessage @@ -4291,7 +4291,7 @@ gPtrMonStoppedEnduringMessage: @ 80FAAC8 .global gMonMirrorMoveFadedMessage gMonMirrorMoveFadedMessage: @ 80FAACC -.string "{ARG_POKEMON_0}'s Mirror Move faded!\0" +.string "{POKEMON_0}'s Mirror Move faded!\0" .align 2, 0 .global gPtrMonMirrorMoveFadedMessage @@ -4300,7 +4300,7 @@ gPtrMonMirrorMoveFadedMessage: @ 80FAAE8 .global gMonConversion2FailedMessage gMonConversion2FailedMessage: @ 80FAAEC -.string "{ARG_POKEMON_0}'s Conversion 2 faded!\0" +.string "{POKEMON_0}'s Conversion 2 faded!\0" .align 2, 0 .global gPtrMonConversion2FailedMessage @@ -4309,7 +4309,7 @@ gPtrMonConversion2FailedMessage: @ 80FAB08 .global gMonGaveUpVitalThrowMessage gMonGaveUpVitalThrowMessage: @ 80FAB0C -.string "{ARG_POKEMON_0} gave up on Vital Throw!\0" +.string "{POKEMON_0} gave up on Vital Throw!\0" .align 2, 0 .global gPtrMonGaveUpVitalThrowMessage @@ -4318,7 +4318,7 @@ gPtrMonGaveUpVitalThrowMessage: @ 80FAB28 .global gUnknown_80FAB2C gUnknown_80FAB2C: @ 80FAB2C -.string "{ARG_POKEMON_0}'s Mist faded!\0" +.string "{POKEMON_0}'s Mist faded!\0" .align 2, 0 .global gUnknown_80FAB40 @@ -4328,7 +4328,7 @@ gUnknown_80FAB40: @ 80FAB40 .global gUnknown_80FAB44 gUnknown_80FAB44: @ 80FAB44 -.string "{ARG_POKEMON_0}'s appearance returned to\n" +.string "{POKEMON_0}'s appearance returned to\n" .string "normal!\0" .align 2, 0 @@ -4339,7 +4339,7 @@ gUnknown_80FAB6C: @ 80FAB6C .global gUnknown_80FAB70 gUnknown_80FAB70: @ 80FAB70 -.string "{ARG_POKEMON_0} got over its infatuation!\0" +.string "{POKEMON_0} got over its infatuation!\0" .align 2, 0 .global gUnknown_80FAB90 @@ -4349,7 +4349,7 @@ gUnknown_80FAB90: @ 80FAB90 .global gUnknown_80FAB94 gUnknown_80FAB94: @ 80FAB94 -.string "{ARG_POKEMON_0} can't go through walls\n" +.string "{POKEMON_0} can't go through walls\n" .string "anymore!\0" .align 2, 0 @@ -4365,7 +4365,7 @@ gUnknown_80FABC0: @ 80FABC0 .global gUnknown_80FABC4 gUnknown_80FABC4: @ 80FABC4 -.string "{ARG_POKEMON_0}'s rage faded!\0" +.string "{POKEMON_0}'s rage faded!\0" .align 2, 0 .global gUnknown_80FABD8 @@ -4375,7 +4375,7 @@ gUnknown_80FABD8: @ 80FABD8 .global gMonNoLongerPetrifiedMessage gMonNoLongerPetrifiedMessage: @ 80FABDC -.string "{ARG_POKEMON_0} is no longer petrified!\0" +.string "{POKEMON_0} is no longer petrified!\0" .align 2, 0 .global gPtrMonNoLongerPetrifiedMessage @@ -4384,7 +4384,7 @@ gPtrMonNoLongerPetrifiedMessage: @ 80FABF8 .global gMonNoLongerCringingMessage gMonNoLongerCringingMessage: @ 80FABFC -.string "{ARG_POKEMON_0} is no longer cringing!\0" +.string "{POKEMON_0} is no longer cringing!\0" .align 2, 0 .global gPtrMonNoLongerCringingMessage @@ -4393,7 +4393,7 @@ gPtrMonNoLongerCringingMessage: @ 80FAC18 .global gUnknown_80FAC1C gUnknown_80FAC1C: @ 80FAC1C -.string "{ARG_POKEMON_0} is no longer paused!\0" +.string "{POKEMON_0} is no longer paused!\0" .align 2, 0 .global gUnknown_80FAC38 @@ -4403,7 +4403,7 @@ gUnknown_80FAC38: @ 80FAC38 .global gUnknown_80FAC3C gUnknown_80FAC3C: @ 80FAC3C -.string "{ARG_POKEMON_0} readies Razor Wind!\0" +.string "{POKEMON_0} readies Razor Wind!\0" .align 2, 0 .global gUnknown_80FAC54 @@ -4413,7 +4413,7 @@ gUnknown_80FAC54: @ 80FAC54 .global gUnknown_80FAC58 gUnknown_80FAC58: @ 80FAC58 -.string "{ARG_POKEMON_0} began storing energy!\0" +.string "{POKEMON_0} began storing energy!\0" .align 2, 0 .global gUnknown_80FAC74 @@ -4423,7 +4423,7 @@ gUnknown_80FAC74: @ 80FAC74 .global gUnknown_80FAC78 gUnknown_80FAC78: @ 80FAC78 -.string "{ARG_POKEMON_0} is enraged!\0" +.string "{POKEMON_0} is enraged!\0" .align 2, 0 .global gUnknown_80FAC88 @@ -4433,7 +4433,7 @@ gUnknown_80FAC88: @ 80FAC88 .global gUnknown_80FAC8C gUnknown_80FAC8C: @ 80FAC8C -.string "{ARG_POKEMON_0} is focusing energy!\0" +.string "{POKEMON_0} is focusing energy!\0" .align 2, 0 .global gUnknown_80FACA4 @@ -4443,7 +4443,7 @@ gUnknown_80FACA4: @ 80FACA4 .global gUnknown_80FACA8 gUnknown_80FACA8: @ 80FACA8 -.string "{ARG_POKEMON_0} is readying Sky Attack!\0" +.string "{POKEMON_0} is readying Sky Attack!\0" .align 2, 0 .global gUnknown_80FACC4 @@ -4453,7 +4453,7 @@ gUnknown_80FACC4: @ 80FACC4 .global gUnknown_80FACC8 gUnknown_80FACC8: @ 80FACC8 -.string "{ARG_POKEMON_0} is readying Solarbeam!\0" +.string "{POKEMON_0} is readying Solarbeam!\0" .align 2, 0 .global gUnknown_80FACE4 @@ -4463,7 +4463,7 @@ gUnknown_80FACE4: @ 80FACE4 .global gUnknown_80FACE8 gUnknown_80FACE8: @ 80FACE8 -.string "{ARG_POKEMON_0} flew up high!\0" +.string "{POKEMON_0} flew up high!\0" .align 2, 0 .global gUnknown_80FACFC @@ -4473,7 +4473,7 @@ gUnknown_80FACFC: @ 80FACFC .global gUnknown_80FAD00 gUnknown_80FAD00: @ 80FAD00 -.string "{ARG_POKEMON_0} bounced up!\0" +.string "{POKEMON_0} bounced up!\0" .align 2, 0 .global gUnknown_80FAD10 @@ -4483,7 +4483,7 @@ gUnknown_80FAD10: @ 80FAD10 .global gUnknown_80FAD14 gUnknown_80FAD14: @ 80FAD14 -.string "{ARG_POKEMON_0} dove underwater!\0" +.string "{POKEMON_0} dove underwater!\0" .align 2, 0 .global gUnknown_80FAD2C @@ -4493,7 +4493,7 @@ gUnknown_80FAD2C: @ 80FAD2C .global gUnknown_80FAD30 gUnknown_80FAD30: @ 80FAD30 -.string "{ARG_POKEMON_0} burrowed underground!\0" +.string "{POKEMON_0} burrowed underground!\0" .align 2, 0 .global gUnknown_80FAD4C @@ -4503,7 +4503,7 @@ gUnknown_80FAD4C: @ 80FAD4C .global gUnknown_80FAD50 gUnknown_80FAD50: @ 80FAD50 -.string "{ARG_POKEMON_0} began charging power!\0" +.string "{POKEMON_0} began charging power!\0" .align 2, 0 .global gUnknown_80FAD6C @@ -4533,7 +4533,7 @@ gUnknown_80FADB0: @ 80FADB0 .global gUnknown_80FADB4 gUnknown_80FADB4: @ 80FADB4 -.string "{ARG_POKEMON_1} used Flash Fire to absorb\n" +.string "{POKEMON_1} used Flash Fire to absorb\n" .string "fire!\0" .align 2, 0 @@ -4554,7 +4554,7 @@ gUnknown_80FAE00: @ 80FAE00 .global gUnknown_80FAE04 gUnknown_80FAE04: @ 80FAE04 -.string "{ARG_POKEMON_0} began using Wish!\0" +.string "{POKEMON_0} began using Wish!\0" .align 2, 0 .global gUnknown_80FAE1C @@ -4564,7 +4564,7 @@ gUnknown_80FAE1C: @ 80FAE1C .global gUnknown_80FAE20 gUnknown_80FAE20: @ 80FAE20 -.string "{ARG_POKEMON_0} is already using Wish.\0" +.string "{POKEMON_0} is already using Wish.\0" .align 2, 0 .global gUnknown_80FAE3C @@ -4574,7 +4574,7 @@ gUnknown_80FAE3C: @ 80FAE3C .global gUnknown_80FAE40 gUnknown_80FAE40: @ 80FAE40 -.string "{ARG_POKEMON_0} took a leech seed!\0" +.string "{POKEMON_0} took a leech seed!\0" .align 2, 0 .global gUnknown_80FAE58 @@ -4584,7 +4584,7 @@ gUnknown_80FAE58: @ 80FAE58 .global gUnknown_80FAE5C gUnknown_80FAE5C: @ 80FAE5C -.string "{ARG_POKEMON_0} already has a leech seed!\0" +.string "{POKEMON_0} already has a leech seed!\0" .align 2, 0 .global gUnknown_80FAE7C @@ -4644,7 +4644,7 @@ gUnknown_80FAF3C: @ 80FAF3C .global gUnknown_80FAF40 gUnknown_80FAF40: @ 80FAF40 -.string "{ARG_POKEMON_0} put up its magic coat!\0" +.string "{POKEMON_0} put up its magic coat!\0" .align 2, 0 .global gUnknown_80FAF5C @@ -4654,7 +4654,7 @@ gUnknown_80FAF5C: @ 80FAF5C .global gUnknown_80FAF60 gUnknown_80FAF60: @ 80FAF60 -.string "{ARG_POKEMON_0} is already cloaked in its\n" +.string "{POKEMON_0} is already cloaked in its\n" .string "magic coat!\0" .align 2, 0 @@ -4665,7 +4665,7 @@ gUnknown_80FAF8C: @ 80FAF8C .global gUnknown_80FAF90 gUnknown_80FAF90: @ 80FAF90 -.string "{ARG_POKEMON_0} can locate foes now!\0" +.string "{POKEMON_0} can locate foes now!\0" .align 2, 0 .global gUnknown_80FAFAC @@ -4685,7 +4685,7 @@ gUnknown_80FAFD0: @ 80FAFD0 .global gUnknown_80FAFD4 gUnknown_80FAFD4: @ 80FAFD4 -.string "{ARG_POKEMON_0} readies its Skull Bash!\0" +.string "{POKEMON_0} readies its Skull Bash!\0" .align 2, 0 .global gUnknown_80FAFF0 @@ -4695,7 +4695,7 @@ gUnknown_80FAFF0: @ 80FAFF0 .global gUnknown_80FAFF4 gUnknown_80FAFF4: @ 80FAFF4 -.string "{ARG_POKEMON_0} was cursed!\0" +.string "{POKEMON_0} was cursed!\0" .align 2, 0 .global gUnknown_80FB004 @@ -4705,7 +4705,7 @@ gUnknown_80FB004: @ 80FB004 .global gUnknown_80FB008 gUnknown_80FB008: @ 80FB008 -.string "{ARG_POKEMON_0} readied Snatch!\0" +.string "{POKEMON_0} readied Snatch!\0" .align 2, 0 .global gUnknown_80FB01C @@ -4715,7 +4715,7 @@ gUnknown_80FB01C: @ 80FB01C .global gUnknown_80FB020 gUnknown_80FB020: @ 80FB020 -.string "{ARG_POKEMON_0} gained the protection\n" +.string "{POKEMON_0} gained the protection\n" .string "of Safeguard!\0" .align 2, 0 @@ -4726,7 +4726,7 @@ gUnknown_80FB048: @ 80FB048 .global gUnknown_80FB04C gUnknown_80FB04C: @ 80FB04C -.string "{ARG_POKEMON_0} is already protected\n" +.string "{POKEMON_0} is already protected\n" .string "by Safeguard.\0" .align 2, 0 @@ -4737,7 +4737,7 @@ gUnknown_80FB074: @ 80FB074 .global gUnknown_80FB078 gUnknown_80FB078: @ 80FB078 -.string "{ARG_POKEMON_0} gained the protection\n" +.string "{POKEMON_0} gained the protection\n" .string "of Mist!\0" .align 2, 0 @@ -4748,7 +4748,7 @@ gUnknown_80FB09C: @ 80FB09C .global gUnknown_80FB0A0 gUnknown_80FB0A0: @ 80FB0A0 -.string "{ARG_POKEMON_0} is already protected\n" +.string "{POKEMON_0} is already protected\n" .string "by Mist.\0" .align 2, 0 @@ -4759,7 +4759,7 @@ gUnknown_80FB0C4: @ 80FB0C4 .global gUnknown_80FB0C8 gUnknown_80FB0C8: @ 80FB0C8 -.string "{ARG_POKEMON_0} is set to counter!\0" +.string "{POKEMON_0} is set to counter!\0" .align 2, 0 .global gUnknown_80FB0E0 @@ -4769,7 +4769,7 @@ gUnknown_80FB0E0: @ 80FB0E0 .global gUnknown_80FB0E4 gUnknown_80FB0E4: @ 80FB0E4 -.string "{ARG_POKEMON_0} has been waiting to\n" +.string "{POKEMON_0} has been waiting to\n" .string "counterattack!\0" .align 2, 0 @@ -4780,7 +4780,7 @@ gUnknown_80FB10C: @ 80FB10C .global gUnknown_80FB110 gUnknown_80FB110: @ 80FB110 -.string "{ARG_POKEMON_0} put up its light screen!\0" +.string "{POKEMON_0} put up its light screen!\0" .align 2, 0 .global gUnknown_80FB130 @@ -4790,7 +4790,7 @@ gUnknown_80FB130: @ 80FB130 .global gUnknown_80FB134 gUnknown_80FB134: @ 80FB134 -.string "{ARG_POKEMON_0} is already protected\n" +.string "{POKEMON_0} is already protected\n" .string "by Light Screen.\0" .align 2, 0 @@ -4801,7 +4801,7 @@ gUnknown_80FB160: @ 80FB160 .global gUnknown_80FB164 gUnknown_80FB164: @ 80FB164 -.string "{ARG_POKEMON_0} put up its reflect!\0" +.string "{POKEMON_0} put up its reflect!\0" .align 2, 0 .global gUnknown_80FB17C @@ -4811,7 +4811,7 @@ gUnknown_80FB17C: @ 80FB17C .global gUnknown_80FB180 gUnknown_80FB180: @ 80FB180 -.string "{ARG_POKEMON_0} is already protected by\n" +.string "{POKEMON_0} is already protected by\n" .string "Reflect.\0" .align 2, 0 @@ -4822,7 +4822,7 @@ gUnknown_80FB1A8: @ 80FB1A8 .global gUnknown_80FB1AC gUnknown_80FB1AC: @ 80FB1AC -.string "{ARG_POKEMON_0} recovered {ARG_VALUE_0} HP!\0" +.string "{POKEMON_0} recovered {VALUE_0} HP!\0" .align 2, 0 .global gUnknown_80FB1C4 @@ -4832,7 +4832,7 @@ gUnknown_80FB1C4: @ 80FB1C4 .global gUnknown_80FB1C8 gUnknown_80FB1C8: @ 80FB1C8 -.string "{ARG_POKEMON_0} was fully healed!\0" +.string "{POKEMON_0} was fully healed!\0" .align 2, 0 .global gUnknown_80FB1E0 @@ -4842,7 +4842,7 @@ gUnknown_80FB1E0: @ 80FB1E0 .global gUnknown_80FB1E4 gUnknown_80FB1E4: @ 80FB1E4 -.string "{ARG_POKEMON_0}'s HP remained unchanged.\0" +.string "{POKEMON_0}'s HP remained unchanged.\0" .align 2, 0 .global gUnknown_80FB204 @@ -4852,7 +4852,7 @@ gUnknown_80FB204: @ 80FB204 .global gUnknown_80FB208 gUnknown_80FB208: @ 80FB208 -.string "{ARG_POKEMON_0} has full HP.\0" +.string "{POKEMON_0} has full HP.\0" .align 2, 0 .global gUnknown_80FB21C @@ -4862,7 +4862,7 @@ gUnknown_80FB21C: @ 80FB21C .global gUnknown_80FB220 gUnknown_80FB220: @ 80FB220 -.string "{ARG_POKEMON_0}'s max. HP rose by {ARG_VALUE_1}.\0" +.string "{POKEMON_0}'s max. HP rose by {VALUE_1}.\0" .align 2, 0 .global gUnknown_80FB240 @@ -4872,7 +4872,7 @@ gUnknown_80FB240: @ 80FB240 .global gUnknown_80FB244 gUnknown_80FB244: @ 80FB244 -.string "{ARG_POKEMON_0} became confused!\0" +.string "{POKEMON_0} became confused!\0" .align 2, 0 .global gUnknown_80FB25C @@ -4882,7 +4882,7 @@ gUnknown_80FB25C: @ 80FB25C .global gUnknown_80FB260 gUnknown_80FB260: @ 80FB260 -.string "{ARG_POKEMON_0} is already confused!\0" +.string "{POKEMON_0} is already confused!\0" .align 2, 0 .global gUnknown_80FB27C @@ -4892,7 +4892,7 @@ gUnknown_80FB27C: @ 80FB27C .global gUnknown_80FB280 gUnknown_80FB280: @ 80FB280 -.string "{ARG_POKEMON_0} became paralyzed!\n" +.string "{POKEMON_0} became paralyzed!\n" .string "It can't attack!\0" .align 2, 0 @@ -4903,7 +4903,7 @@ gUnknown_80FB2AC: @ 80FB2AC .global gUnknown_80FB2B0 gUnknown_80FB2B0: @ 80FB2B0 -.string "{ARG_POKEMON_0} is already paralyzed!\0" +.string "{POKEMON_0} is already paralyzed!\0" .align 2, 0 .global gUnknown_80FB2CC @@ -4913,7 +4913,7 @@ gUnknown_80FB2CC: @ 80FB2CC .global gUnknown_80FB2D0 gUnknown_80FB2D0: @ 80FB2D0 -.string "{ARG_POKEMON_0} cringed!\0" +.string "{POKEMON_0} cringed!\0" .align 2, 0 .global gUnknown_80FB2E0 @@ -4923,7 +4923,7 @@ gUnknown_80FB2E0: @ 80FB2E0 .global gUnknown_80FB2E4 gUnknown_80FB2E4: @ 80FB2E4 -.string "{ARG_POKEMON_0} is already cringing!\0" +.string "{POKEMON_0} is already cringing!\0" .align 2, 0 .global gUnknown_80FB300 @@ -4933,7 +4933,7 @@ gUnknown_80FB300: @ 80FB300 .global gUnknown_80FB304 gUnknown_80FB304: @ 80FB304 -.string "{ARG_POKEMON_0} fell asleep!\0" +.string "{POKEMON_0} fell asleep!\0" .align 2, 0 .global gUnknown_80FB318 @@ -4948,7 +4948,7 @@ gUnknown_80FB31C: @ 80FB31C .global gUnknown_80FB320 gUnknown_80FB320: @ 80FB320 -.string "{ARG_POKEMON_0} is already asleep!\0" +.string "{POKEMON_0} is already asleep!\0" .align 2, 0 .global gUnknown_80FB338 @@ -4958,7 +4958,7 @@ gUnknown_80FB338: @ 80FB338 .global gUnknown_80FB33C gUnknown_80FB33C: @ 80FB33C -.string "{ARG_POKEMON_0} is locked in a nightmare!\0" +.string "{POKEMON_0} is locked in a nightmare!\0" .align 2, 0 .global gUnknown_80FB35C @@ -4973,7 +4973,7 @@ gUnknown_80FB360: @ 80FB360 .global gUnknown_80FB364 gUnknown_80FB364: @ 80FB364 -.string "{ARG_POKEMON_0} didn't become drowsy!\0" +.string "{POKEMON_0} didn't become drowsy!\0" .align 2, 0 .global gUnknown_80FB380 @@ -4993,7 +4993,7 @@ gUnknown_80FB388: @ 80FB388 .global gUnknown_80FB38C gUnknown_80FB38C: @ 80FB38C -.string "{ARG_POKEMON_0} had a nightmare!\0" +.string "{POKEMON_0} had a nightmare!\0" .align 2, 0 .global gUnknown_80FB3A4 @@ -5003,7 +5003,7 @@ gUnknown_80FB3A4: @ 80FB3A4 .global gUnknown_80FB3A8 gUnknown_80FB3A8: @ 80FB3A8 -.string "{ARG_POKEMON_0} is already having\n" +.string "{POKEMON_0} is already having\n" .string "a nightmare!\0" .align 2, 0 @@ -5019,7 +5019,7 @@ gUnknown_80FB3D0: @ 80FB3D0 .global gUnknown_80FB3D4 gUnknown_80FB3D4: @ 80FB3D4 -.string "{ARG_POKEMON_0} yawned!\0" +.string "{POKEMON_0} yawned!\0" .align 2, 0 .global gUnknown_80FB3E0 @@ -5029,7 +5029,7 @@ gUnknown_80FB3E0: @ 80FB3E0 .global gUnknown_80FB3E4 gUnknown_80FB3E4: @ 80FB3E4 -.string "{ARG_POKEMON_0} didn't yawn!\0" +.string "{POKEMON_0} didn't yawn!\0" .align 2, 0 .global gUnknown_80FB3F8 @@ -5039,7 +5039,7 @@ gUnknown_80FB3F8: @ 80FB3F8 .global gUnknown_80FB3FC gUnknown_80FB3FC: @ 80FB3FC -.string "{ARG_POKEMON_0} is already yawning!\0" +.string "{POKEMON_0} is already yawning!\0" .align 2, 0 .global gUnknown_80FB414 @@ -5059,7 +5059,7 @@ gUnknown_80FB41C: @ 80FB41C .global gUnknown_80FB420 gUnknown_80FB420: @ 80FB420 -.string "{ARG_POKEMON_0} is already sleepless!\0" +.string "{POKEMON_0} is already sleepless!\0" .align 2, 0 .global gUnknown_80FB43C @@ -5069,7 +5069,7 @@ gUnknown_80FB43C: @ 80FB43C .global gUnknown_80FB440 gUnknown_80FB440: @ 80FB440 -.string "{ARG_POKEMON_0} became sleepless!\0" +.string "{POKEMON_0} became sleepless!\0" .align 2, 0 .global gUnknown_80FB458 @@ -5079,7 +5079,7 @@ gUnknown_80FB458: @ 80FB458 .global gUnknown_80FB45C gUnknown_80FB45C: @ 80FB45C -.string "{ARG_POKEMON_0} can't move on the next turn!\0" +.string "{POKEMON_0} can't move on the next turn!\0" .align 2, 0 .global gUnknown_80FB480 @@ -5089,7 +5089,7 @@ gUnknown_80FB480: @ 80FB480 .global gUnknown_80FB484 gUnknown_80FB484: @ 80FB484 -.string "{ARG_POKEMON_0} already can't move on\n" +.string "{POKEMON_0} already can't move on\n" .string "the next turn!\0" .align 2, 0 @@ -5100,7 +5100,7 @@ gUnknown_80FB4B0: @ 80FB4B0 .global gUnknown_80FB4B4 gUnknown_80FB4B4: @ 80FB4B4 -.string "{ARG_POKEMON_0} can't move for a while!\0" +.string "{POKEMON_0} can't move for a while!\0" .align 2, 0 .global gUnknown_80FB4D4 @@ -5110,7 +5110,7 @@ gUnknown_80FB4D4: @ 80FB4D4 .global gUnknown_80FB4D8 gUnknown_80FB4D8: @ 80FB4D8 -.string "{ARG_POKEMON_0} is already paused!\0" +.string "{POKEMON_0} is already paused!\0" .align 2, 0 .global gUnknown_80FB4F0 @@ -5120,7 +5120,7 @@ gUnknown_80FB4F0: @ 80FB4F0 .global gUnknown_80FB4F4 gUnknown_80FB4F4: @ 80FB4F4 -.string "{ARG_POKEMON_0} became infatuated!\0" +.string "{POKEMON_0} became infatuated!\0" .align 2, 0 .global gUnknown_80FB50C @@ -5130,7 +5130,7 @@ gUnknown_80FB50C: @ 80FB50C .global gUnknown_80FB510 gUnknown_80FB510: @ 80FB510 -.string "{ARG_POKEMON_0} is already infatuated!\0" +.string "{POKEMON_0} is already infatuated!\0" .align 2, 0 .global gUnknown_80FB52C @@ -5140,7 +5140,7 @@ gUnknown_80FB52C: @ 80FB52C .global gUnknown_80FB530 gUnknown_80FB530: @ 80FB530 -.string "{ARG_POKEMON_0} sustained a burn!\0" +.string "{POKEMON_0} sustained a burn!\0" .align 2, 0 .global gUnknown_80FB548 @@ -5150,7 +5150,7 @@ gUnknown_80FB548: @ 80FB548 .global gUnknown_80FB54C gUnknown_80FB54C: @ 80FB54C -.string "{ARG_POKEMON_0} already has a burn!\0" +.string "{POKEMON_0} already has a burn!\0" .align 2, 0 .global gUnknown_80FB564 @@ -5170,7 +5170,7 @@ gUnknown_80FB580: @ 80FB580 .global gUnknown_80FB584 gUnknown_80FB584: @ 80FB584 -.string "{ARG_POKEMON_0} was poisoned!\0" +.string "{POKEMON_0} was poisoned!\0" .align 2, 0 .global gUnknown_80FB598 @@ -5180,7 +5180,7 @@ gUnknown_80FB598: @ 80FB598 .global gUnknown_80FB59C gUnknown_80FB59C: @ 80FB59C -.string "{ARG_POKEMON_0} was badly poisoned!\0" +.string "{POKEMON_0} was badly poisoned!\0" .align 2, 0 .global gUnknown_80FB5B4 @@ -5190,7 +5190,7 @@ gUnknown_80FB5B4: @ 80FB5B4 .global gUnknown_80FB5B8 gUnknown_80FB5B8: @ 80FB5B8 -.string "{ARG_POKEMON_0} is already poisoned!\0" +.string "{POKEMON_0} is already poisoned!\0" .align 2, 0 .global gUnknown_80FB5D4 @@ -5200,7 +5200,7 @@ gUnknown_80FB5D4: @ 80FB5D4 .global gUnknown_80FB5D8 gUnknown_80FB5D8: @ 80FB5D8 -.string "{ARG_POKEMON_0} is already badly poisoned!\0" +.string "{POKEMON_0} is already badly poisoned!\0" .align 2, 0 .global gUnknown_80FB5F8 @@ -5210,7 +5210,7 @@ gUnknown_80FB5F8: @ 80FB5F8 .global gUnknown_80FB5FC gUnknown_80FB5FC: @ 80FB5FC -.string "{ARG_POKEMON_0} became frozen!\0" +.string "{POKEMON_0} became frozen!\0" .align 2, 0 .global gUnknown_80FB610 @@ -5220,7 +5220,7 @@ gUnknown_80FB610: @ 80FB610 .global gUnknown_80FB614 gUnknown_80FB614: @ 80FB614 -.string "{ARG_POKEMON_0} was squeezed!\0" +.string "{POKEMON_0} was squeezed!\0" .align 2, 0 .global gUnknown_80FB628 @@ -5230,7 +5230,7 @@ gUnknown_80FB628: @ 80FB628 .global gUnknown_80FB62C gUnknown_80FB62C: @ 80FB62C -.string "{ARG_POKEMON_0} is already being squeezed!\0" +.string "{POKEMON_0} is already being squeezed!\0" .align 2, 0 .global gUnknown_80FB64C @@ -5240,7 +5240,7 @@ gUnknown_80FB64C: @ 80FB64C .global gUnknown_80FB650 gUnknown_80FB650: @ 80FB650 -.string "{ARG_POKEMON_0} became immobilized!\0" +.string "{POKEMON_0} became immobilized!\0" .align 2, 0 .global gUnknown_80FB668 @@ -5250,7 +5250,7 @@ gUnknown_80FB668: @ 80FB668 .global gUnknown_80FB66C gUnknown_80FB66C: @ 80FB66C -.string "{ARG_POKEMON_0} is already immobilized!\0" +.string "{POKEMON_0} is already immobilized!\0" .align 2, 0 .global gUnknown_80FB688 @@ -5260,7 +5260,7 @@ gUnknown_80FB688: @ 80FB688 .global gUnknown_80FB68C gUnknown_80FB68C: @ 80FB68C -.string "{ARG_POKEMON_0} put down its roots!\0" +.string "{POKEMON_0} put down its roots!\0" .align 2, 0 .global gUnknown_80FB6A4 @@ -5270,7 +5270,7 @@ gUnknown_80FB6A4: @ 80FB6A4 .global gUnknown_80FB6A8 gUnknown_80FB6A8: @ 80FB6A8 -.string "{ARG_POKEMON_0} is already rooted!\0" +.string "{POKEMON_0} is already rooted!\0" .align 2, 0 .global gUnknown_80FB6C0 @@ -5280,7 +5280,7 @@ gUnknown_80FB6C0: @ 80FB6C0 .global gUnknown_80FB6C4 gUnknown_80FB6C4: @ 80FB6C4 -.string "{ARG_POKEMON_0} became wrapped!\0" +.string "{POKEMON_0} became wrapped!\0" .align 2, 0 .global gUnknown_80FB6D8 @@ -5290,7 +5290,7 @@ gUnknown_80FB6D8: @ 80FB6D8 .global gUnknown_80FB6DC gUnknown_80FB6DC: @ 80FB6DC -.string "{ARG_POKEMON_0} has a foe wrapped already!\0" +.string "{POKEMON_0} has a foe wrapped already!\0" .align 2, 0 .global gUnknown_80FB6FC @@ -5300,7 +5300,7 @@ gUnknown_80FB6FC: @ 80FB6FC .global gUnknown_80FB700 gUnknown_80FB700: @ 80FB700 -.string "{ARG_POKEMON_0} is already wrapped!\0" +.string "{POKEMON_0} is already wrapped!\0" .align 2, 0 .global gUnknown_80FB718 @@ -5310,7 +5310,7 @@ gUnknown_80FB718: @ 80FB718 .global gUnknown_80FB71C gUnknown_80FB71C: @ 80FB71C -.string "{ARG_POKEMON_0} attained Sure Shot status!\0" +.string "{POKEMON_0} attained Sure Shot status!\0" .align 2, 0 .global gUnknown_80FB73C @@ -5320,7 +5320,7 @@ gUnknown_80FB73C: @ 80FB73C .global gUnknown_80FB740 gUnknown_80FB740: @ 80FB740 -.string "{ARG_POKEMON_0} already has Sure Shot\n" +.string "{POKEMON_0} already has Sure Shot\n" .string "status!\0" .align 2, 0 @@ -5331,7 +5331,7 @@ gUnknown_80FB764: @ 80FB764 .global gUnknown_80FB768 gUnknown_80FB768: @ 80FB768 -.string "{ARG_POKEMON_0} became a whiffer!\0" +.string "{POKEMON_0} became a whiffer!\0" .align 2, 0 .global gUnknown_80FB780 @@ -5341,7 +5341,7 @@ gUnknown_80FB780: @ 80FB780 .global gUnknown_80FB784 gUnknown_80FB784: @ 80FB784 -.string "{ARG_POKEMON_0} is already a whiffer!\0" +.string "{POKEMON_0} is already a whiffer!\0" .align 2, 0 .global gUnknown_80FB7A0 @@ -5351,7 +5351,7 @@ gUnknown_80FB7A0: @ 80FB7A0 .global gUnknown_80FB7A4 gUnknown_80FB7A4: @ 80FB7A4 -.string "{ARG_POKEMON_0} became petrified!\0" +.string "{POKEMON_0} became petrified!\0" .align 2, 0 .global gUnknown_80FB7BC @@ -5361,7 +5361,7 @@ gUnknown_80FB7BC: @ 80FB7BC .global gUnknown_80FB7C0 gUnknown_80FB7C0: @ 80FB7C0 -.string "{ARG_POKEMON_0} is already petrified!\0" +.string "{POKEMON_0} is already petrified!\0" .align 2, 0 .global gUnknown_80FB7DC @@ -5371,7 +5371,7 @@ gUnknown_80FB7DC: @ 80FB7DC .global gUnknown_80FB7E0 gUnknown_80FB7E0: @ 80FB7E0 -.string "{ARG_POKEMON_0} was blinded!\0" +.string "{POKEMON_0} was blinded!\0" .align 2, 0 .global gUnknown_80FB7F4 @@ -5381,7 +5381,7 @@ gUnknown_80FB7F4: @ 80FB7F4 .global gUnknown_80FB7F8 gUnknown_80FB7F8: @ 80FB7F8 -.string "{ARG_POKEMON_0} is already blinded!\0" +.string "{POKEMON_0} is already blinded!\0" .align 2, 0 .global gUnknown_80FB810 @@ -5391,7 +5391,7 @@ gUnknown_80FB810: @ 80FB810 .global gUnknown_80FB814 gUnknown_80FB814: @ 80FB814 -.string "{ARG_POKEMON_0}'s vision turned weird!\0" +.string "{POKEMON_0}'s vision turned weird!\0" .align 2, 0 .global gUnknown_80FB834 @@ -5401,7 +5401,7 @@ gUnknown_80FB834: @ 80FB834 .global gUnknown_80FB838 gUnknown_80FB838: @ 80FB838 -.string "{ARG_POKEMON_0}'s vision is already weird!\0" +.string "{POKEMON_0}'s vision is already weird!\0" .align 2, 0 .global gUnknown_80FB85C @@ -5411,7 +5411,7 @@ gUnknown_80FB85C: @ 80FB85C .global gUnknown_80FB860 gUnknown_80FB860: @ 80FB860 -.string "{ARG_POKEMON_0}'s vision was restored!\0" +.string "{POKEMON_0}'s vision was restored!\0" .align 2, 0 .global gUnknown_80FB880 @@ -5421,7 +5421,7 @@ gUnknown_80FB880: @ 80FB880 .global gUnknown_80FB884 gUnknown_80FB884: @ 80FB884 -.string "{ARG_POKEMON_0}'s vision is fine!\0" +.string "{POKEMON_0}'s vision is fine!\0" .align 2, 0 .global gUnknown_80FB89C @@ -5431,7 +5431,7 @@ gUnknown_80FB89C: @ 80FB89C .global gUnknown_80FB8A0 gUnknown_80FB8A0: @ 80FB8A0 -.string "{ARG_POKEMON_0}'s damage was fixed!\0" +.string "{POKEMON_0}'s damage was fixed!\0" .align 2, 0 .global gUnknown_80FB8BC @@ -5441,7 +5441,7 @@ gUnknown_80FB8BC: @ 80FB8BC .global gUnknown_80FB8C0 gUnknown_80FB8C0: @ 80FB8C0 -.string "{ARG_POKEMON_0}'s damage is already fixed!\0" +.string "{POKEMON_0}'s damage is already fixed!\0" .align 2, 0 .global gUnknown_80FB8E4 @@ -5451,7 +5451,7 @@ gUnknown_80FB8E4: @ 80FB8E4 .global gUnknown_80FB8E8 gUnknown_80FB8E8: @ 80FB8E8 -.string "{ARG_POKEMON_0} is getting pumped!\0" +.string "{POKEMON_0} is getting pumped!\0" .align 2, 0 .global gUnknown_80FB900 @@ -5461,7 +5461,7 @@ gUnknown_80FB900: @ 80FB900 .global gUnknown_80FB904 gUnknown_80FB904: @ 80FB904 -.string "{ARG_POKEMON_0} is already getting pumped!\0" +.string "{POKEMON_0} is already getting pumped!\0" .align 2, 0 .global gUnknown_80FB924 @@ -5471,7 +5471,7 @@ gUnknown_80FB924: @ 80FB924 .global gUnknown_80FB928 gUnknown_80FB928: @ 80FB928 -.string "{ARG_POKEMON_0} cowered in fear!\0" +.string "{POKEMON_0} cowered in fear!\0" .align 2, 0 .global gUnknown_80FB940 @@ -5481,7 +5481,7 @@ gUnknown_80FB940: @ 80FB940 .global gUnknown_80FB944 gUnknown_80FB944: @ 80FB944 -.string "{ARG_POKEMON_0} is already cowering!\0" +.string "{POKEMON_0} is already cowering!\0" .align 2, 0 .global gUnknown_80FB960 @@ -5491,7 +5491,7 @@ gUnknown_80FB960: @ 80FB960 .global gUnknown_80FB964 gUnknown_80FB964: @ 80FB964 -.string "{ARG_POKEMON_0} became a decoy!\0" +.string "{POKEMON_0} became a decoy!\0" .align 2, 0 .global gUnknown_80FB978 @@ -5501,7 +5501,7 @@ gUnknown_80FB978: @ 80FB978 .global gUnknown_80FB97C gUnknown_80FB97C: @ 80FB97C -.string "{ARG_POKEMON_0} is already a decoy!\0" +.string "{POKEMON_0} is already a decoy!\0" .align 2, 0 .global gUnknown_80FB994 @@ -5511,7 +5511,7 @@ gUnknown_80FB994: @ 80FB994 .global gUnknown_80FB998 gUnknown_80FB998: @ 80FB998 -.string "{ARG_POKEMON_0} protected itself!\0" +.string "{POKEMON_0} protected itself!\0" .align 2, 0 .global gUnknown_80FB9B0 @@ -5521,7 +5521,7 @@ gUnknown_80FB9B0: @ 80FB9B0 .global gUnknown_80FB9B4 gUnknown_80FB9B4: @ 80FB9B4 -.string "{ARG_POKEMON_0} is already protecting itself!\0" +.string "{POKEMON_0} is already protecting itself!\0" .align 2, 0 .global gUnknown_80FB9D8 @@ -5531,7 +5531,7 @@ gUnknown_80FB9D8: @ 80FB9D8 .global gUnknown_80FB9DC gUnknown_80FB9DC: @ 80FB9DC -.string "{ARG_POKEMON_0} was taunted!\0" +.string "{POKEMON_0} was taunted!\0" .align 2, 0 .global gUnknown_80FB9F0 @@ -5541,7 +5541,7 @@ gUnknown_80FB9F0: @ 80FB9F0 .global gUnknown_80FB9F4 gUnknown_80FB9F4: @ 80FB9F4 -.string "{ARG_POKEMON_0} has been taunted already!\0" +.string "{POKEMON_0} has been taunted already!\0" .align 2, 0 .global gUnknown_80FBA14 @@ -5551,7 +5551,7 @@ gUnknown_80FBA14: @ 80FBA14 .global gUnknown_80FBA18 gUnknown_80FBA18: @ 80FBA18 -.string "{ARG_POKEMON_0} stored power {ARG_VALUE_0} time(s)!\0" +.string "{POKEMON_0} stored power {VALUE_0} time(s)!\0" .align 2, 0 .global gUnknown_80FBA38 @@ -5561,7 +5561,7 @@ gUnknown_80FBA38: @ 80FBA38 .global gUnknown_80FBA3C gUnknown_80FBA3C: @ 80FBA3C -.string "{ARG_POKEMON_0} can't store any more power!\0" +.string "{POKEMON_0} can't store any more power!\0" .align 2, 0 .global gUnknown_80FBA60 @@ -5571,7 +5571,7 @@ gUnknown_80FBA60: @ 80FBA60 .global gUnknown_80FBA64 gUnknown_80FBA64: @ 80FBA64 -.string "{ARG_POKEMON_0} disappeared from view!\0" +.string "{POKEMON_0} disappeared from view!\0" .align 2, 0 .global gUnknown_80FBA80 @@ -5581,7 +5581,7 @@ gUnknown_80FBA80: @ 80FBA80 .global gUnknown_80FBA84 gUnknown_80FBA84: @ 80FBA84 -.string "{ARG_POKEMON_0} is invisible already!\0" +.string "{POKEMON_0} is invisible already!\0" .align 2, 0 .global gUnknown_80FBAA0 @@ -5591,7 +5591,7 @@ gUnknown_80FBAA0: @ 80FBAA0 .global gUnknown_80FBAA4 gUnknown_80FBAA4: @ 80FBAA4 -.string "{ARG_POKEMON_0} put up its mirror coat!\0" +.string "{POKEMON_0} put up its mirror coat!\0" .align 2, 0 .global gUnknown_80FBAC0 @@ -5601,7 +5601,7 @@ gUnknown_80FBAC0: @ 80FBAC0 .global gUnknown_80FBAC4 gUnknown_80FBAC4: @ 80FBAC4 -.string "{ARG_POKEMON_0} already has a mirror coat!\0" +.string "{POKEMON_0} already has a mirror coat!\0" .align 2, 0 .global gUnknown_80FBAE4 @@ -5611,7 +5611,7 @@ gUnknown_80FBAE4: @ 80FBAE4 .global gUnknown_80FBAE8 gUnknown_80FBAE8: @ 80FBAE8 -.string "{ARG_POKEMON_0} heard the perish song!\0" +.string "{POKEMON_0} heard the perish song!\0" .align 2, 0 .global gUnknown_80FBB04 @@ -5621,7 +5621,7 @@ gUnknown_80FBB04: @ 80FBB04 .global gUnknown_80FBB08 gUnknown_80FBB08: @ 80FBB08 -.string "{ARG_POKEMON_0} already heard that song!\0" +.string "{POKEMON_0} already heard that song!\0" .align 2, 0 .global gUnknown_80FBB28 @@ -5631,7 +5631,7 @@ gUnknown_80FBB28: @ 80FBB28 .global gUnknown_80FBB2C gUnknown_80FBB2C: @ 80FBB2C -.string "{ARG_POKEMON_0} readied its Destiny Bond!\0" +.string "{POKEMON_0} readied its Destiny Bond!\0" .align 2, 0 .global gUnknown_80FBB4C @@ -5641,7 +5641,7 @@ gUnknown_80FBB4C: @ 80FBB4C .global gUnknown_80FBB50 gUnknown_80FBB50: @ 80FBB50 -.string "{ARG_POKEMON_0} already has Destiny Bond\n" +.string "{POKEMON_0} already has Destiny Bond\n" .string "readied!\0" .align 2, 0 @@ -5652,7 +5652,7 @@ gUnknown_80FBB78: @ 80FBB78 .global gUnknown_80FBB7C gUnknown_80FBB7C: @ 80FBB7C -.string "{ARG_POKEMON_0} earned an encore!\0" +.string "{POKEMON_0} earned an encore!\0" .align 2, 0 .global gUnknown_80FBB94 @@ -5662,7 +5662,7 @@ gUnknown_80FBB94: @ 80FBB94 .global gUnknown_80FBB98 gUnknown_80FBB98: @ 80FBB98 -.string "{ARG_POKEMON_0} is already doing encores!\0" +.string "{POKEMON_0} is already doing encores!\0" .align 2, 0 .global gUnknown_80FBBB8 @@ -5672,7 +5672,7 @@ gUnknown_80FBBB8: @ 80FBBB8 .global gUnknown_80FBBBC gUnknown_80FBBBC: @ 80FBBBC -.string "{ARG_POKEMON_0} won't do encores!\0" +.string "{POKEMON_0} won't do encores!\0" .align 2, 0 .global gUnknown_80FBBD4 @@ -5682,7 +5682,7 @@ gUnknown_80FBBD4: @ 80FBBD4 .global gUnknown_80FBBD8 gUnknown_80FBBD8: @ 80FBBD8 -.string "{ARG_POKEMON_0} is set to endure!\0" +.string "{POKEMON_0} is set to endure!\0" .align 2, 0 .global gUnknown_80FBBF0 @@ -5692,7 +5692,7 @@ gUnknown_80FBBF0: @ 80FBBF0 .global gUnknown_80FBBF4 gUnknown_80FBBF4: @ 80FBBF4 -.string "{ARG_POKEMON_0} is already set to endure!\0" +.string "{POKEMON_0} is already set to endure!\0" .align 2, 0 .global gUnknown_80FBC14 @@ -5702,7 +5702,7 @@ gUnknown_80FBC14: @ 80FBC14 .global gUnknown_80FBC18 gUnknown_80FBC18: @ 80FBC18 -.string "{ARG_POKEMON_0} readied its Mirror Move!\0" +.string "{POKEMON_0} readied its Mirror Move!\0" .align 2, 0 .global gUnknown_80FBC38 @@ -5712,7 +5712,7 @@ gUnknown_80FBC38: @ 80FBC38 .global gUnknown_80FBC3C gUnknown_80FBC3C: @ 80FBC3C -.string "{ARG_POKEMON_0} already used Mirror Move!\0" +.string "{POKEMON_0} already used Mirror Move!\0" .align 2, 0 .global gUnknown_80FBC5C @@ -5722,7 +5722,7 @@ gUnknown_80FBC5C: @ 80FBC5C .global gUnknown_80FBC60 gUnknown_80FBC60: @ 80FBC60 -.string "{ARG_POKEMON_0} has Conversion 2 up!\0" +.string "{POKEMON_0} has Conversion 2 up!\0" .align 2, 0 .global gUnknown_80FBC7C @@ -5732,7 +5732,7 @@ gUnknown_80FBC7C: @ 80FBC7C .global gUnknown_80FBC80 gUnknown_80FBC80: @ 80FBC80 -.string "{ARG_POKEMON_0} already has Conversion 2 up!\0" +.string "{POKEMON_0} already has Conversion 2 up!\0" .align 2, 0 .global gUnknown_80FBCA4 @@ -5742,7 +5742,7 @@ gUnknown_80FBCA4: @ 80FBCA4 .global gUnknown_80FBCA8 gUnknown_80FBCA8: @ 80FBCA8 -.string "{ARG_POKEMON_0} readied its Vital Throw!\0" +.string "{POKEMON_0} readied its Vital Throw!\0" .align 2, 0 .global gUnknown_80FBCC8 @@ -5752,7 +5752,7 @@ gUnknown_80FBCC8: @ 80FBCC8 .global gUnknown_80FBCCC gUnknown_80FBCCC: @ 80FBCCC -.string "{ARG_POKEMON_0} is already set for\n" +.string "{POKEMON_0} is already set for\n" .string "Vital Throw!\0" .align 2, 0 @@ -5763,7 +5763,7 @@ gUnknown_80FBCF0: @ 80FBCF0 .global gUnknown_80FBCF4 gUnknown_80FBCF4: @ 80FBCF4 -.string "{ARG_POKEMON_0}'s stats returned to normal.\0" +.string "{POKEMON_0}'s stats returned to normal.\0" .align 2, 0 .global gUnknown_80FBD18 @@ -5773,7 +5773,7 @@ gUnknown_80FBD18: @ 80FBD18 .global gUnknown_80FBD1C gUnknown_80FBD1C: @ 80FBD1C -.string "{ARG_POKEMON_0}'s stats appear unchanged.\0" +.string "{POKEMON_0}'s stats appear unchanged.\0" .align 2, 0 .global gUnknown_80FBD3C @@ -5793,7 +5793,7 @@ gUnknown_80FBD58: @ 80FBD58 .global gUnknown_80FBD5C gUnknown_80FBD5C: @ 80FBD5C -.string "{ARG_POKEMON_0}'s Belly went down.\0" +.string "{POKEMON_0}'s Belly went down.\0" .align 2, 0 .global gUnknown_80FBD78 @@ -5803,7 +5803,7 @@ gUnknown_80FBD78: @ 80FBD78 .global gUnknown_80FBD7C gUnknown_80FBD7C: @ 80FBD7C -.string "{ARG_POKEMON_0}'s max. Belly size shrank!\0" +.string "{POKEMON_0}'s max. Belly size shrank!\0" .align 2, 0 .global gUnknown_80FBD9C @@ -5813,7 +5813,7 @@ gUnknown_80FBD9C: @ 80FBD9C .global gUnknown_80FBDA0 gUnknown_80FBDA0: @ 80FBDA0 -.string "{ARG_POKEMON_0}'s max. Belly size increased!\0" +.string "{POKEMON_0}'s max. Belly size increased!\0" .align 2, 0 .global gUnknown_80FBDC4 @@ -5823,7 +5823,7 @@ gUnknown_80FBDC4: @ 80FBDC4 .global gUnknown_80FBDC8 gUnknown_80FBDC8: @ 80FBDC8 -.string "{ARG_POKEMON_0}'s Belly won't get any bigger!\0" +.string "{POKEMON_0}'s Belly won't get any bigger!\0" .align 2, 0 .global gUnknown_80FBDF0 @@ -5833,7 +5833,7 @@ gUnknown_80FBDF0: @ 80FBDF0 .global gUnknown_80FBDF4 gUnknown_80FBDF4: @ 80FBDF4 -.string "{ARG_POKEMON_0}'s Belly didn't change!\0" +.string "{POKEMON_0}'s Belly didn't change!\0" .align 2, 0 .global gUnknown_80FBE14 @@ -5843,7 +5843,7 @@ gUnknown_80FBE14: @ 80FBE14 .global gUnknown_80FBE18 gUnknown_80FBE18: @ 80FBE18 -.string "{ARG_POKEMON_0}'s Belly size didn't change!\0" +.string "{POKEMON_0}'s Belly size didn't change!\0" .align 2, 0 .global gUnknown_80FBE3C @@ -5858,7 +5858,7 @@ gUnknown_80FBE40: @ 80FBE40 .global gUnknown_80FBE44 gUnknown_80FBE44: @ 80FBE44 -.string "{ARG_POKEMON_0}'s Belly filled up full!\0" +.string "{POKEMON_0}'s Belly filled up full!\0" .align 2, 0 .global gUnknown_80FBE64 @@ -5868,7 +5868,7 @@ gUnknown_80FBE64: @ 80FBE64 .global gUnknown_80FBE68 gUnknown_80FBE68: @ 80FBE68 -.string "{ARG_POKEMON_0}'s Belly was filled!\0" +.string "{POKEMON_0}'s Belly was filled!\0" .align 2, 0 .global gUnknown_80FBE84 @@ -5878,7 +5878,7 @@ gUnknown_80FBE84: @ 80FBE84 .global gUnknown_80FBE88 gUnknown_80FBE88: @ 80FBE88 -.string "{ARG_POKEMON_0}'s Belly dropped!\0" +.string "{POKEMON_0}'s Belly dropped!\0" .align 2, 0 .global gUnknown_80FBEA0 @@ -5888,8 +5888,8 @@ gUnknown_80FBEA0: @ 80FBEA0 .global gUnknown_80FBEA4 gUnknown_80FBEA4: @ 80FBEA4 -.string "{ARG_POKEMON_0} transformed into\n" -.string "{ARG_POKEMON_1}!\0" +.string "{POKEMON_0} transformed into\n" +.string "{POKEMON_1}!\0" .align 2, 0 .global gUnknown_80FBEC0 @@ -5899,7 +5899,7 @@ gUnknown_80FBEC0: @ 80FBEC0 .global gUnknown_80FBEC4 gUnknown_80FBEC4: @ 80FBEC4 -.string "{ARG_POKEMON_0}'s transformation failed!\0" +.string "{POKEMON_0}'s transformation failed!\0" .align 2, 0 .global gUnknown_80FBEE4 @@ -5909,7 +5909,7 @@ gUnknown_80FBEE4: @ 80FBEE4 .global gUnknown_80FBEE8 gUnknown_80FBEE8: @ 80FBEE8 -.string "{ARG_POKEMON_0} is already transformed.\0" +.string "{POKEMON_0} is already transformed.\0" .align 2, 0 .global gUnknown_80FBF04 @@ -5919,7 +5919,7 @@ gUnknown_80FBF04: @ 80FBF04 .global gUnknown_80FBF08 gUnknown_80FBF08: @ 80FBF08 -.string "{ARG_POKEMON_0} can go through walls now!\0" +.string "{POKEMON_0} can go through walls now!\0" .align 2, 0 .global gUnknown_80FBF28 @@ -5929,7 +5929,7 @@ gUnknown_80FBF28: @ 80FBF28 .global gUnknown_80FBF2C gUnknown_80FBF2C: @ 80FBF2C -.string "{ARG_POKEMON_0} can already go through walls!\0" +.string "{POKEMON_0} can already go through walls!\0" .align 2, 0 .global gUnknown_80FBF50 @@ -5939,7 +5939,7 @@ gUnknown_80FBF50: @ 80FBF50 .global gUnknown_80FBF54 gUnknown_80FBF54: @ 80FBF54 -.string "{ARG_POKEMON_0} became muzzled!\0" +.string "{POKEMON_0} became muzzled!\0" .align 2, 0 .global gUnknown_80FBF68 @@ -5949,7 +5949,7 @@ gUnknown_80FBF68: @ 80FBF68 .global gUnknown_80FBF6C gUnknown_80FBF6C: @ 80FBF6C -.string "{ARG_POKEMON_0} is already muzzled!\0" +.string "{POKEMON_0} is already muzzled!\0" .align 2, 0 .global gUnknown_80FBF84 @@ -5959,7 +5959,7 @@ gUnknown_80FBF84: @ 80FBF84 .global gUnknown_80FBF88 gUnknown_80FBF88: @ 80FBF88 -.string "{ARG_POKEMON_0} was exposed!\0" +.string "{POKEMON_0} was exposed!\0" .align 2, 0 .global gUnknown_80FBF9C @@ -5969,7 +5969,7 @@ gUnknown_80FBF9C: @ 80FBF9C .global gUnknown_80FBFA0 gUnknown_80FBFA0: @ 80FBFA0 -.string "{ARG_POKEMON_0} is already exposed!\0" +.string "{POKEMON_0} is already exposed!\0" .align 2, 0 .global gUnknown_80FBFB8 @@ -5979,7 +5979,7 @@ gUnknown_80FBFB8: @ 80FBFB8 .global gUnknown_80FBFBC gUnknown_80FBFBC: @ 80FBFBC -.string "{ARG_POKEMON_0} isn't a Ghost type!\0" +.string "{POKEMON_0} isn't a Ghost type!\0" .align 2, 0 .global gUnknown_80FBFD8 @@ -5989,7 +5989,7 @@ gUnknown_80FBFD8: @ 80FBFD8 .global gUnknown_80FBFDC gUnknown_80FBFDC: @ 80FBFDC -.string "{ARG_POKEMON_0}'s Evasion returned to normal!\0" +.string "{POKEMON_0}'s Evasion returned to normal!\0" .align 2, 0 .global gUnknown_80FC000 @@ -6019,7 +6019,7 @@ gUnknown_80FC054: @ 80FC054 .global gUnknown_80FC058 gUnknown_80FC058: @ 80FC058 -.string "{ARG_POKEMON_0} is already in a rage!\0" +.string "{POKEMON_0} is already in a rage!\0" .align 2, 0 .global gUnknown_80FC074 @@ -6109,7 +6109,7 @@ gUnknown_80FC0E4: @ 80FC0E4 .global gUnknown_80FC0E8 gUnknown_80FC0E8: @ 80FC0E8 -.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} rose!\0" +.string "{POKEMON_0}'s {MOVE_ITEM_0} rose!\0" .align 2, 0 .global gUnknown_80FC0FC @@ -6119,7 +6119,7 @@ gUnknown_80FC0FC: @ 80FC0FC .global gUnknown_80FC100 gUnknown_80FC100: @ 80FC100 -.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} fell!\0" +.string "{POKEMON_0}'s {MOVE_ITEM_0} fell!\0" .align 2, 0 .global gUnknown_80FC114 @@ -6139,8 +6139,8 @@ gUnknown_80FC11C: @ 80FC11C .global gUnknown_80FC120 gUnknown_80FC120: @ 80FC120 -.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} rose\n" -.string "{ARG_MOVE_ITEM_1}!\0" +.string "{POKEMON_0}'s {MOVE_ITEM_0} rose\n" +.string "{MOVE_ITEM_1}!\0" .align 2, 0 .global gUnknown_80FC138 @@ -6155,8 +6155,8 @@ gUnknown_80FC13C: @ 80FC13C .global gUnknown_80FC140 gUnknown_80FC140: @ 80FC140 -.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} fell\n" -.string "{ARG_MOVE_ITEM_1}!\0" +.string "{POKEMON_0}'s {MOVE_ITEM_0} fell\n" +.string "{MOVE_ITEM_1}!\0" .align 2, 0 .global gUnknown_80FC158 @@ -6171,7 +6171,7 @@ gUnknown_80FC15C: @ 80FC15C .global gUnknown_80FC160 gUnknown_80FC160: @ 80FC160 -.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} remained\n" +.string "{POKEMON_0}'s {MOVE_ITEM_0} remained\n" .string "unchanged!\0" .align 2, 0 @@ -6187,7 +6187,7 @@ gUnknown_80FC184: @ 80FC184 .global gUnknown_80FC188 gUnknown_80FC188: @ 80FC188 -.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} fell\n" +.string "{POKEMON_0}'s {MOVE_ITEM_0} fell\n" .string "slightly!\0" .align 2, 0 @@ -6198,7 +6198,7 @@ gUnknown_80FC1A4: @ 80FC1A4 .global gUnknown_80FC1A8 gUnknown_80FC1A8: @ 80FC1A8 -.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} rose\n" +.string "{POKEMON_0}'s {MOVE_ITEM_0} rose\n" .string "slightly!\0" .align 2, 0 @@ -6209,7 +6209,7 @@ gUnknown_80FC1C4: @ 80FC1C4 .global gUnknown_80FC1C8 gUnknown_80FC1C8: @ 80FC1C8 -.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} won't\n" +.string "{POKEMON_0}'s {MOVE_ITEM_0} won't\n" .string "go down any more!\0" .align 2, 0 @@ -6220,7 +6220,7 @@ gUnknown_80FC1F0: @ 80FC1F0 .global gUnknown_80FC1F4 gUnknown_80FC1F4: @ 80FC1F4 -.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} won't\n" +.string "{POKEMON_0}'s {MOVE_ITEM_0} won't\n" .string "go up any more!\0" .align 2, 0 @@ -6236,7 +6236,7 @@ gUnknown_80FC21C: @ 80FC21C .global gUnknown_80FC220 gUnknown_80FC220: @ 80FC220 -.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} won't\n" +.string "{POKEMON_0}'s {MOVE_ITEM_0} won't\n" .string "go down any more.\0" .align 2, 0 @@ -6247,7 +6247,7 @@ gUnknown_80FC248: @ 80FC248 .global gUnknown_80FC24C gUnknown_80FC24C: @ 80FC24C -.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} won't\n" +.string "{POKEMON_0}'s {MOVE_ITEM_0} won't\n" .string "go up any more.\0" .align 2, 0 @@ -6263,7 +6263,7 @@ gUnknown_80FC274: @ 80FC274 .global gUnknown_80FC278 gUnknown_80FC278: @ 80FC278 -.string "{ARG_POKEMON_0}'s speed didn't change!\0" +.string "{POKEMON_0}'s speed didn't change!\0" .align 2, 0 .global gUnknown_80FC298 @@ -6273,7 +6273,7 @@ gUnknown_80FC298: @ 80FC298 .global gUnknown_80FC29C gUnknown_80FC29C: @ 80FC29C -.string "{ARG_POKEMON_0} can't go any faster!\0" +.string "{POKEMON_0} can't go any faster!\0" .align 2, 0 .global gUnknown_80FC2B8 @@ -6283,7 +6283,7 @@ gUnknown_80FC2B8: @ 80FC2B8 .global gUnknown_80FC2BC gUnknown_80FC2BC: @ 80FC2BC -.string "{ARG_POKEMON_0} can't go any slower!\0" +.string "{POKEMON_0} can't go any slower!\0" .align 2, 0 .global gUnknown_80FC2D8 @@ -6293,7 +6293,7 @@ gUnknown_80FC2D8: @ 80FC2D8 .global gUnknown_80FC2DC gUnknown_80FC2DC: @ 80FC2DC -.string "{ARG_POKEMON_0} is protected by Safeguard!\0" +.string "{POKEMON_0} is protected by Safeguard!\0" .align 2, 0 .global gUnknown_80FC2FC @@ -6303,7 +6303,7 @@ gUnknown_80FC2FC: @ 80FC2FC .global gUnknown_80FC300 gUnknown_80FC300: @ 80FC300 -.string "{ARG_POKEMON_0} is protected by Mist!\0" +.string "{POKEMON_0} is protected by Mist!\0" .align 2, 0 .global gUnknown_80FC31C @@ -6313,7 +6313,7 @@ gUnknown_80FC31C: @ 80FC31C .global gUnknown_80FC320 gUnknown_80FC320: @ 80FC320 -.string "{ARG_POKEMON_0}'s Attack was boosted.\0" +.string "{POKEMON_0}'s Attack was boosted.\0" .align 2, 0 .global gUnknown_80FC33C @@ -6323,7 +6323,7 @@ gUnknown_80FC33C: @ 80FC33C .global gUnknown_80FC340 gUnknown_80FC340: @ 80FC340 -.string "{ARG_POKEMON_0}'s Attack didn't go up.\0" +.string "{POKEMON_0}'s Attack didn't go up.\0" .align 2, 0 .global gUnknown_80FC360 @@ -6333,7 +6333,7 @@ gUnknown_80FC360: @ 80FC360 .global gUnknown_80FC364 gUnknown_80FC364: @ 80FC364 -.string "{ARG_POKEMON_0}'s Special Attack was boosted.\0" +.string "{POKEMON_0}'s Special Attack was boosted.\0" .align 2, 0 .global gUnknown_80FC388 @@ -6343,7 +6343,7 @@ gUnknown_80FC388: @ 80FC388 .global gUnknown_80FC38C gUnknown_80FC38C: @ 80FC38C -.string "{ARG_POKEMON_0}'s Special Attack didn't go up.\0" +.string "{POKEMON_0}'s Special Attack didn't go up.\0" .align 2, 0 .global gUnknown_80FC3B4 @@ -6353,7 +6353,7 @@ gUnknown_80FC3B4: @ 80FC3B4 .global gUnknown_80FC3B8 gUnknown_80FC3B8: @ 80FC3B8 -.string "{ARG_POKEMON_0}'s Defense was boosted.\0" +.string "{POKEMON_0}'s Defense was boosted.\0" .align 2, 0 .global gUnknown_80FC3D8 @@ -6363,7 +6363,7 @@ gUnknown_80FC3D8: @ 80FC3D8 .global gUnknown_80FC3DC gUnknown_80FC3DC: @ 80FC3DC -.string "{ARG_POKEMON_0}'s Defense didn't go up.\0" +.string "{POKEMON_0}'s Defense didn't go up.\0" .align 2, 0 .global gUnknown_80FC3FC @@ -6373,7 +6373,7 @@ gUnknown_80FC3FC: @ 80FC3FC .global gUnknown_80FC400 gUnknown_80FC400: @ 80FC400 -.string "{ARG_POKEMON_0}'s Special Defense was\n" +.string "{POKEMON_0}'s Special Defense was\n" .string "boosted.\0" .align 2, 0 @@ -6384,7 +6384,7 @@ gUnknown_80FC428: @ 80FC428 .global gUnknown_80FC42C gUnknown_80FC42C: @ 80FC42C -.string "{ARG_POKEMON_0}'s Special Defense didn't\n" +.string "{POKEMON_0}'s Special Defense didn't\n" .string "go up.\0" .align 2, 0 @@ -6395,26 +6395,26 @@ gUnknown_80FC454: @ 80FC454 .global gUnknown_80FC458 gUnknown_80FC458: @ 80FC458 -.string "{ARG_POKEMON_0}'s Attack was weakened.\0" +.string "{POKEMON_0}'s Attack was weakened.\0" .align 2, 0 .4byte gUnknown_80FC458 .global gUnknown_80FC47C gUnknown_80FC47C: @ 80FC47C -.string "{ARG_POKEMON_0}'s Attack didn't go down.\0" +.string "{POKEMON_0}'s Attack didn't go down.\0" .align 2, 0 .4byte gUnknown_80FC47C .global gUnknown_80FC4A4 gUnknown_80FC4A4: @ 80FC4A4 -.string "{ARG_POKEMON_0}'s Special Attack was\n" +.string "{POKEMON_0}'s Special Attack was\n" .string "weakened.\0" .align 2, 0 .4byte gUnknown_80FC4A4 .global gUnknown_80FC4D0 gUnknown_80FC4D0: @ 80FC4D0 -.string "{ARG_POKEMON_0}'s Special Attack didn't go\n" +.string "{POKEMON_0}'s Special Attack didn't go\n" .string "down.\0" .align 2, 0 .4byte gUnknown_80FC4D0 @@ -6441,7 +6441,7 @@ gUnknown_80FC558: @ 80FC558 .global gUnknown_80FC55C gUnknown_80FC55C: @ 80FC55C -.string "{ARG_POKEMON_1} protected itself!\0" +.string "{POKEMON_1} protected itself!\0" .align 2, 0 .global gUnknown_80FC574 @@ -6451,7 +6451,7 @@ gUnknown_80FC574: @ 80FC574 .global gUnknown_80FC578 gUnknown_80FC578: @ 80FC578 -.string "{ARG_POKEMON_0} warped!\0" +.string "{POKEMON_0} warped!\0" .align 2, 0 .global gUnknown_80FC584 @@ -6471,7 +6471,7 @@ gUnknown_80FC5A8: @ 80FC5A8 .global gUnknown_80FC5AC gUnknown_80FC5AC: @ 80FC5AC -.string "{ARG_POKEMON_0} was too hungry to use it!\0" +.string "{POKEMON_0} was too hungry to use it!\0" .align 2, 0 .global gUnknown_80FC5CC @@ -6481,7 +6481,7 @@ gUnknown_80FC5CC: @ 80FC5CC .global gUnknown_80FC5D0 gUnknown_80FC5D0: @ 80FC5D0 -.string "Weather: {ARG_POKEMON_0}\0" +.string "Weather: {POKEMON_0}\0" .align 2, 0 .global gUnknown_80FC5E0 @@ -6506,7 +6506,7 @@ gUnknown_80FC5FC: @ 80FC5FC .global gUnknown_80FC600 gUnknown_80FC600: @ 80FC600 -.string "Got {ARG_POKEMON_1}'s item!\0" +.string "Got {POKEMON_1}'s item!\0" .align 2, 0 .global gUnknown_80FC614 @@ -6516,7 +6516,7 @@ gUnknown_80FC614: @ 80FC614 .global gUnknown_80FC618 gUnknown_80FC618: @ 80FC618 -.string "{ARG_POKEMON_0} has an item already.\n" +.string "{POKEMON_0} has an item already.\n" .string "It couldn't get another item.\0" .align 2, 0 @@ -6527,7 +6527,7 @@ gUnknown_80FC654: @ 80FC654 .global gUnknown_80FC658 gUnknown_80FC658: @ 80FC658 -.string "{ARG_POKEMON_1} doesn't have anything!\0" +.string "{POKEMON_1} doesn't have anything!\0" .align 2, 0 .global gUnknown_80FC678 @@ -6582,7 +6582,7 @@ gUnknown_80FC6FC: @ 80FC6FC .global gUnknown_80FC700 gUnknown_80FC700: @ 80FC700 -.string "{ARG_POKEMON_0} is muzzled!\0" +.string "{POKEMON_0} is muzzled!\0" .align 2, 0 .global gUnknown_80FC710 @@ -6602,7 +6602,7 @@ gUnknown_80FC718: @ 80FC718 .global gUnknown_80FC71C gUnknown_80FC71C: @ 80FC71C -.string "{ARG_POKEMON_0} loosed {ARG_MOVE_ITEM_0}!\0" +.string "{POKEMON_0} loosed {MOVE_ITEM_0}!\0" .align 2, 0 .global gUnknown_80FC72C @@ -6642,8 +6642,8 @@ gUnknown_80FC770: @ 80FC770 .global gUnknown_80FC774 gUnknown_80FC774: @ 80FC774 -.string "{ARG_POKEMON_0} traded items with\n" -.string "{ARG_POKEMON_1}!\0" +.string "{POKEMON_0} traded items with\n" +.string "{POKEMON_1}!\0" .align 2, 0 .global gUnknown_80FC790 @@ -6663,7 +6663,7 @@ gUnknown_80FC7AC: @ 80FC7AC .global gUnknown_80FC7B0 gUnknown_80FC7B0: @ 80FC7B0 -.string "{ARG_POKEMON_0}'s move missed!\0" +.string "{POKEMON_0}'s move missed!\0" .align 2, 0 .global gUnknown_80FC7C8 @@ -6673,7 +6673,7 @@ gUnknown_80FC7C8: @ 80FC7C8 .global gUnknown_80FC7CC gUnknown_80FC7CC: @ 80FC7CC -.string "{ARG_POKEMON_0} and {ARG_POKEMON_1} shared\n" +.string "{POKEMON_0} and {POKEMON_1} shared\n" .string "their HP!\0" .align 2, 0 @@ -6684,7 +6684,7 @@ gUnknown_80FC7EC: @ 80FC7EC .global gUnknown_80FC7F0 gUnknown_80FC7F0: @ 80FC7F0 -.string "{ARG_POKEMON_0} copied the target's\n" +.string "{POKEMON_0} copied the target's\n" .string "special ability!\0" .align 2, 0 @@ -6695,7 +6695,7 @@ gUnknown_80FC81C: @ 80FC81C .global gUnknown_80FC820 gUnknown_80FC820: @ 80FC820 -.string "{ARG_POKEMON_0} couldn't copy the target's\n" +.string "{POKEMON_0} couldn't copy the target's\n" .string "Wonder Guard!\0" .align 2, 0 @@ -6706,7 +6706,7 @@ gUnknown_80FC854: @ 80FC854 .global gUnknown_80FC858 gUnknown_80FC858: @ 80FC858 -.string "{ARG_POKEMON_0} swapped special abilities\n" +.string "{POKEMON_0} swapped special abilities\n" .string "with the target!\0" .align 2, 0 @@ -6717,7 +6717,7 @@ gUnknown_80FC888: @ 80FC888 .global gUnknown_80FC88C gUnknown_80FC88C: @ 80FC88C -.string "{ARG_POKEMON_0} couldn't swap the target's\n" +.string "{POKEMON_0} couldn't swap the target's\n" .string "Wonder Guard!\0" .align 2, 0 @@ -6795,7 +6795,7 @@ gUnknown_80FC9E8: @ 80FC9E8 .global gUnknown_80FC9EC gUnknown_80FC9EC: @ 80FC9EC -.string "{ARG_POKEMON_0} couldn't be knocked flying!\0" +.string "{POKEMON_0} couldn't be knocked flying!\0" .align 2, 0 .global gUnknown_80FCA10 @@ -6815,7 +6815,7 @@ gUnknown_80FCA3C: @ 80FCA3C .global gUnknown_80FCA40 gUnknown_80FCA40: @ 80FCA40 -.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0} didn't\n" +.string "{POKEMON_0}'s {MOVE_ITEM_0} didn't\n" .string "go down!\0" .align 2, 0 @@ -6831,7 +6831,7 @@ gUnknown_80FCA64: @ 80FCA64 .global gUnknown_80FCA68 gUnknown_80FCA68: @ 80FCA68 -.string "{ARG_POKEMON_1} is sturdy!\n" +.string "{POKEMON_1} is sturdy!\n" .string "It withstood the move!\0" .align 2, 0 @@ -6842,7 +6842,7 @@ gUnknown_80FCA90: @ 80FCA90 .global gUnknown_80FCA94 gUnknown_80FCA94: @ 80FCA94 -.string "{ARG_POKEMON_0} is anchored!\n" +.string "{POKEMON_0} is anchored!\n" .string "It won't switch places!\0" .align 2, 0 @@ -6853,7 +6853,7 @@ gUnknown_80FCAC0: @ 80FCAC0 .global gUnknown_80FCAC4 gUnknown_80FCAC4: @ 80FCAC4 -.string "{ARG_POKEMON_0} is anchored!\n" +.string "{POKEMON_0} is anchored!\n" .string "It won't warp!\0" .align 2, 0 @@ -6874,7 +6874,7 @@ gUnknown_80FCB14: @ 80FCB14 .global gUnknown_80FCB18 gUnknown_80FCB18: @ 80FCB18 -.string "{ARG_POKEMON_0} is anchored!\n" +.string "{POKEMON_0} is anchored!\n" .string "It can't be thrown!\0" .align 2, 0 @@ -6885,7 +6885,7 @@ gUnknown_80FCB40: @ 80FCB40 .global gUnknown_80FCB44 gUnknown_80FCB44: @ 80FCB44 -.string "{ARG_POKEMON_0} couldn't be thrown for\n" +.string "{POKEMON_0} couldn't be thrown for\n" .string "some reason!\0" .align 2, 0 @@ -6896,7 +6896,7 @@ gUnknown_80FCB70: @ 80FCB70 .global gUnknown_80FCB74 gUnknown_80FCB74: @ 80FCB74 -.string "{ARG_POKEMON_0} is anchored!\n" +.string "{POKEMON_0} is anchored!\n" .string "It can't leap!\0" .align 2, 0 @@ -6907,7 +6907,7 @@ gUnknown_80FCB98: @ 80FCB98 .global gUnknown_80FCB9C gUnknown_80FCB9C: @ 80FCB9C -.string "{ARG_POKEMON_0} is anchored!\n" +.string "{POKEMON_0} is anchored!\n" .string "It can't be knocked flying!\0" .align 2, 0 @@ -6918,7 +6918,7 @@ gUnknown_80FCBCC: @ 80FCBCC .global gUnknown_80FCBD0 gUnknown_80FCBD0: @ 80FCBD0 -.string "{ARG_POKEMON_0} is limber!\n" +.string "{POKEMON_0} is limber!\n" .string "It can't be paralyzed!\0" .align 2, 0 @@ -6929,7 +6929,7 @@ gUnknown_80FCBF8: @ 80FCBF8 .global gUnknown_80FCBFC gUnknown_80FCBFC: @ 80FCBFC -.string "But {ARG_POKEMON_0} didn't cringe!\0" +.string "But {POKEMON_0} didn't cringe!\0" .align 2, 0 .global gUnknown_80FCC18 @@ -6939,7 +6939,7 @@ gUnknown_80FCC18: @ 80FCC18 .global gUnknown_80FCC1C gUnknown_80FCC1C: @ 80FCC1C -.string "{ARG_POKEMON_0} is oblivious!\n" +.string "{POKEMON_0} is oblivious!\n" .string "It doesn't get infatuated!\0" .align 2, 0 @@ -6950,7 +6950,7 @@ gUnknown_80FCC4C: @ 80FCC4C .global gUnknown_80FCC50 gUnknown_80FCC50: @ 80FCC50 -.string "{ARG_POKEMON_0} traced the target's\n" +.string "{POKEMON_0} traced the target's\n" .string "special ability!\0" .align 2, 0 @@ -6961,8 +6961,8 @@ gUnknown_80FCC7C: @ 80FCC7C .global gUnknown_80FCC80 gUnknown_80FCC80: @ 80FCC80 -.string "{ARG_POKEMON_0}'s Color Change made it\n" -.string "the {ARG_MOVE_ITEM_0} type!\0" +.string "{POKEMON_0}'s Color Change made it\n" +.string "the {MOVE_ITEM_0} type!\0" .align 2, 0 .global gUnknown_80FCCAC @@ -7008,7 +7008,7 @@ gUnknown_80FCD28: @ 80FCD28 .global gUnknown_80FCD2C gUnknown_80FCD2C: @ 80FCD2C -.string "{ARG_POKEMON_0}'s Insomnia prevents\n" +.string "{POKEMON_0}'s Insomnia prevents\n" .string "drowsiness!\0" .align 2, 0 @@ -7024,7 +7024,7 @@ gUnknown_80FCD58: @ 80FCD58 .global gUnknown_80FCD5C gUnknown_80FCD5C: @ 80FCD5C -.string "{ARG_POKEMON_0}'s Vital Spirit prevents\n" +.string "{POKEMON_0}'s Vital Spirit prevents\n" .string "drowsiness!\0" .align 2, 0 @@ -7035,7 +7035,7 @@ gUnknown_80FCD88: @ 80FCD88 .global gUnknown_80FCD8C gUnknown_80FCD8C: @ 80FCD8C -.string "{ARG_POKEMON_0}'s Own Tempo prevents\n" +.string "{POKEMON_0}'s Own Tempo prevents\n" .string "confusion!\0" .align 2, 0 @@ -7046,7 +7046,7 @@ gUnknown_80FCDB4: @ 80FCDB4 .global gUnknown_80FCDB8 gUnknown_80FCDB8: @ 80FCDB8 -.string "{ARG_POKEMON_0}'s Magma Armor prevents\n" +.string "{POKEMON_0}'s Magma Armor prevents\n" .string "freezing!\0" .align 2, 0 @@ -7057,7 +7057,7 @@ gUnknown_80FCDE0: @ 80FCDE0 .global gUnknown_80FCDE4 gUnknown_80FCDE4: @ 80FCDE4 -.string "{ARG_POKEMON_0} is an unfreezable type!\0" +.string "{POKEMON_0} is an unfreezable type!\0" .align 2, 0 .global gUnknown_80FCE00 @@ -7067,7 +7067,7 @@ gUnknown_80FCE00: @ 80FCE00 .global gUnknown_80FCE04 gUnknown_80FCE04: @ 80FCE04 -.string "The magma's heat prevents {ARG_POKEMON_0}\n" +.string "The magma's heat prevents {POKEMON_0}\n" .string "from freezing!\0" .align 2, 0 @@ -7078,7 +7078,7 @@ gUnknown_80FCE34: @ 80FCE34 .global gUnknown_80FCE38 gUnknown_80FCE38: @ 80FCE38 -.string "{ARG_POKEMON_0}'s Water Veil prevents burns!\0" +.string "{POKEMON_0}'s Water Veil prevents burns!\0" .align 2, 0 .global gUnknown_80FCE5C @@ -7088,7 +7088,7 @@ gUnknown_80FCE5C: @ 80FCE5C .global gUnknown_80FCE60 gUnknown_80FCE60: @ 80FCE60 -.string "{ARG_POKEMON_0}'s type doesn't get burns!\0" +.string "{POKEMON_0}'s type doesn't get burns!\0" .align 2, 0 .global gUnknown_80FCE84 @@ -7098,7 +7098,7 @@ gUnknown_80FCE84: @ 80FCE84 .global gUnknown_80FCE88 gUnknown_80FCE88: @ 80FCE88 -.string "{ARG_POKEMON_0}'s Immunity prevents\n" +.string "{POKEMON_0}'s Immunity prevents\n" .string "poisoning!\0" .align 2, 0 @@ -7109,7 +7109,7 @@ gUnknown_80FCEB0: @ 80FCEB0 .global gUnknown_80FCEB4 gUnknown_80FCEB4: @ 80FCEB4 -.string "{ARG_POKEMON_0}'s type doesn't get poisoned!\0" +.string "{POKEMON_0}'s type doesn't get poisoned!\0" .align 2, 0 .global gUnknown_80FCEDC @@ -7119,7 +7119,7 @@ gUnknown_80FCEDC: @ 80FCEDC .global gUnknown_80FCEE0 gUnknown_80FCEE0: @ 80FCEE0 -.string "It had no effect on {ARG_POKEMON_0}!\0" +.string "It had no effect on {POKEMON_0}!\0" .align 2, 0 .global gUnknown_80FCEFC @@ -7129,7 +7129,7 @@ gUnknown_80FCEFC: @ 80FCEFC .global gUnknown_80FCF00 gUnknown_80FCF00: @ 80FCF00 -.string "Yes! {ARG_POKEMON_0} leveled up!\0" +.string "Yes! {POKEMON_0} leveled up!\0" .align 2, 0 .global gUnknown_80FCF18 @@ -7139,7 +7139,7 @@ gUnknown_80FCF18: @ 80FCF18 .global gUnknown_80FCF1C gUnknown_80FCF1C: @ 80FCF1C -.string "{ARG_POKEMON_0} uttered its sleep talk!\0" +.string "{POKEMON_0} uttered its sleep talk!\0" .align 2, 0 .global gUnknown_80FCF38 @@ -7149,7 +7149,7 @@ gUnknown_80FCF38: @ 80FCF38 .global gUnknown_80FCF3C gUnknown_80FCF3C: @ 80FCF3C -.string "{ARG_POKEMON_0} loosed a snore!\0" +.string "{POKEMON_0} loosed a snore!\0" .align 2, 0 .global gUnknown_80FCF50 @@ -7194,7 +7194,7 @@ gUnknown_80FCFA4: @ 80FCFA4 .global gUnknown_80FCFA8 gUnknown_80FCFA8: @ 80FCFA8 -.string "{ARG_MOVE_ITEM_0} was tormented!\0" +.string "{MOVE_ITEM_0} was tormented!\0" .align 2, 0 .global gUnknown_80FCFBC @@ -7313,7 +7313,7 @@ gUnknown_80FD14C: @ 80FD14C .global gUnknown_80FD150 gUnknown_80FD150: @ 80FD150 -.string "{ARG_POKEMON_1}'s item was swatted down!\0" +.string "{POKEMON_1}'s item was swatted down!\0" .align 2, 0 .global gUnknown_80FD170 @@ -7363,7 +7363,7 @@ gUnknown_80FD1EC: @ 80FD1EC .global gUnknown_80FD1F0 gUnknown_80FD1F0: @ 80FD1F0 -.string "{ARG_POKEMON_1} can throw a long way!\0" +.string "{POKEMON_1} can throw a long way!\0" .align 2, 0 .global gUnknown_80FD20C @@ -7373,7 +7373,7 @@ gUnknown_80FD20C: @ 80FD20C .global gUnknown_80FD210 gUnknown_80FD210: @ 80FD210 -.string "{ARG_POKEMON_1} can throw far already!\0" +.string "{POKEMON_1} can throw far already!\0" .align 2, 0 .global gUnknown_80FD22C @@ -7383,7 +7383,7 @@ gUnknown_80FD22C: @ 80FD22C .global gUnknown_80FD230 gUnknown_80FD230: @ 80FD230 -.string "{ARG_POKEMON_1}'s throws can pierce things!\0" +.string "{POKEMON_1}'s throws can pierce things!\0" .align 2, 0 .global gUnknown_80FD254 @@ -7393,7 +7393,7 @@ gUnknown_80FD254: @ 80FD254 .global gUnknown_80FD258 gUnknown_80FD258: @ 80FD258 -.string "{ARG_POKEMON_1}'s throws can pierce already!\0" +.string "{POKEMON_1}'s throws can pierce already!\0" .align 2, 0 .global gUnknown_80FD27C @@ -7403,7 +7403,7 @@ gUnknown_80FD27C: @ 80FD27C .global gUnknown_80FD280 gUnknown_80FD280: @ 80FD280 -.string "{ARG_POKEMON_1} bears a grudge!\0" +.string "{POKEMON_1} bears a grudge!\0" .align 2, 0 .global gUnknown_80FD294 @@ -7413,7 +7413,7 @@ gUnknown_80FD294: @ 80FD294 .global gUnknown_80FD298 gUnknown_80FD298: @ 80FD298 -.string "{ARG_POKEMON_1} already bears a grudge!\0" +.string "{POKEMON_1} already bears a grudge!\0" .align 2, 0 .global gUnknown_80FD2B4 @@ -7433,7 +7433,7 @@ gUnknown_80FD2CC: @ 80FD2CC .global gUnknown_80FD2D0 gUnknown_80FD2D0: @ 80FD2D0 -.string "Assist: {ARG_MOVE_ITEM_0}\0" +.string "Assist: {MOVE_ITEM_0}\0" .align 2, 0 .global gUnknown_80FD2DC @@ -7463,7 +7463,7 @@ gUnknown_80FD320: @ 80FD320 .global gUnknown_80FD324 gUnknown_80FD324: @ 80FD324 -.string "The last move used by {ARG_POKEMON_1} lost\n" +.string "The last move used by {POKEMON_1} lost\n" .string "all its PP!\0" .align 2, 0 @@ -7474,7 +7474,7 @@ gUnknown_80FD350: @ 80FD350 .global gUnknown_80FD354 gUnknown_80FD354: @ 80FD354 -.string "Nothing happened to {ARG_POKEMON_1}.\0" +.string "Nothing happened to {POKEMON_1}.\0" .align 2, 0 .global gUnknown_80FD370 @@ -7549,7 +7549,7 @@ gUnknown_80FD434: @ 80FD434 .global gUnknown_80FD438 gUnknown_80FD438: @ 80FD438 -.string "{ARG_POKEMON_0} can't transform!\0" +.string "{POKEMON_0} can't transform!\0" .align 2, 0 .global gUnknown_80FD450 @@ -7564,7 +7564,7 @@ gUnknown_80FD454: @ 80FD454 .global gUnknown_80FD458 gUnknown_80FD458: @ 80FD458 -.string "{ARG_POKEMON_1} was revived!\0" +.string "{POKEMON_1} was revived!\0" .align 2, 0 .global gUnknown_80FD46C @@ -7574,7 +7574,7 @@ gUnknown_80FD46C: @ 80FD46C .global gUnknown_80FD470 gUnknown_80FD470: @ 80FD470 -.string "{ARG_POKEMON_0} possessed {ARG_POKEMON_1}!\0" +.string "{POKEMON_0} possessed {POKEMON_1}!\0" .align 2, 0 .global gUnknown_80FD484 @@ -7594,7 +7594,7 @@ gUnknown_80FD4B0: @ 80FD4B0 .global gUnknown_80FD4B4 gUnknown_80FD4B4: @ 80FD4B4 -.string "{ARG_POKEMON_0} escaped!\0" +.string "{POKEMON_0} escaped!\0" .align 2, 0 .global gUnknown_80FD4C4 @@ -7604,7 +7604,7 @@ gUnknown_80FD4C4: @ 80FD4C4 .global gUnknown_80FD4C8 gUnknown_80FD4C8: @ 80FD4C8 -.string "{ARG_POKEMON_0} can't escape!\0" +.string "{POKEMON_0} can't escape!\0" .align 2, 0 .global gUnknown_80FD4DC @@ -7614,7 +7614,7 @@ gUnknown_80FD4DC: @ 80FD4DC .global gUnknown_80FD4E0 gUnknown_80FD4E0: @ 80FD4E0 -.string "{ARG_POKEMON_0} was protected by its Band!\0" +.string "{POKEMON_0} was protected by its Band!\0" .align 2, 0 .global gUnknown_80FD500 @@ -7624,7 +7624,7 @@ gUnknown_80FD500: @ 80FD500 .global gUnknown_80FD504 gUnknown_80FD504: @ 80FD504 -.string "{ARG_POKEMON_0} was protected by its Scarf!\0" +.string "{POKEMON_0} was protected by its Scarf!\0" .align 2, 0 .global gUnknown_80FD524 @@ -7634,7 +7634,7 @@ gUnknown_80FD524: @ 80FD524 .global gUnknown_80FD528 gUnknown_80FD528: @ 80FD528 -.string "{ARG_POKEMON_0} was protected by its Scope!\0" +.string "{POKEMON_0} was protected by its Scope!\0" .align 2, 0 .global gUnknown_80FD548 @@ -7650,7 +7650,7 @@ gUnknown_80FD550: @ 80FD550 .global gUnknown_80FD554 gUnknown_80FD554: @ 80FD554 -.string "{ARG_POKEMON_1} was protected by its Specs!\0" +.string "{POKEMON_1} was protected by its Specs!\0" .align 2, 0 .global gUnknown_80FD574 @@ -7921,12 +7921,12 @@ gUnknown_80FD98C: @ 80FD98C .global gUnknown_80FD9A0 gUnknown_80FD9A0: @ 80FD9A0 -.string "Stepped on a {ARG_POKEMON_0}!\0" +.string "Stepped on a {POKEMON_0}!\0" .align 2, 0 .global gUnknown_80FD9B4 gUnknown_80FD9B4: @ 80FD9B4 -.string "{ARG_POKEMON_0}!\0" +.string "{POKEMON_0}!\0" .align 2, 0 .global gUnknown_80FD9BC @@ -7947,17 +7947,17 @@ gUnknown_80FDA0C: @ 80FDA0C .global gUnknown_80FDA28 gUnknown_80FDA28: @ 80FDA28 -.string "Mud splashed up from the {ARG_POKEMON_0}!\0" +.string "Mud splashed up from the {POKEMON_0}!\0" .align 2, 0 .global gUnknown_80FDA48 gUnknown_80FDA48: @ 80FDA48 -.string "There was a {ARG_POKEMON_0} underfoot!\0" +.string "There was a {POKEMON_0} underfoot!\0" .align 2, 0 .global gUnknown_80FDA64 gUnknown_80FDA64: @ 80FDA64 -.string "The move {ARG_MOVE_ITEM_0} lost its PP!\0" +.string "The move {MOVE_ITEM_0} lost its PP!\0" .align 2, 0 .global gUnknown_80FDA80 @@ -7997,7 +7997,7 @@ gUnknown_80FDAE4: @ 80FDAE4 .global gUnknown_80FDAE8 gUnknown_80FDAE8: @ 80FDAE8 -.string "The move {ARG_MOVE_ITEM_0} was sealed!\0" +.string "The move {MOVE_ITEM_0} was sealed!\0" .align 2, 0 .global gUnknown_80FDB04 @@ -8048,7 +8048,7 @@ gUnknown_80FDBA0: @ 80FDBA0 .global gUnknown_80FDBA4 gUnknown_80FDBA4: @ 80FDBA4 -.string "{ARG_POKEMON_0} caught the {ARG_MOVE_ITEM_0}!\0" +.string "{POKEMON_0} caught the {MOVE_ITEM_0}!\0" .align 2, 0 .global gUnknown_80FDBB8 @@ -8058,7 +8058,7 @@ gUnknown_80FDBB8: @ 80FDBB8 .global gUnknown_80FDBBC gUnknown_80FDBBC: @ 80FDBBC -.string "{ARG_POKEMON_0} regained PP.\0" +.string "{POKEMON_0} regained PP.\0" .align 2, 0 .global gUnknown_80FDBD0 @@ -8068,7 +8068,7 @@ gUnknown_80FDBD0: @ 80FDBD0 .global gUnknown_80FDBD4 gUnknown_80FDBD4: @ 80FDBD4 -.string "{ARG_POKEMON_0} has full PP already!\0" +.string "{POKEMON_0} has full PP already!\0" .align 2, 0 .global gUnknown_80FDBF0 @@ -8078,7 +8078,7 @@ gUnknown_80FDBF0: @ 80FDBF0 .global gUnknown_80FDBF4 gUnknown_80FDBF4: @ 80FDBF4 -.string "The {ARG_MOVE_ITEM_0} became sticky and\n" +.string "The {MOVE_ITEM_0} became sticky and\n" .string "unusable!\0" .align 2, 0 @@ -8130,8 +8130,8 @@ gUnknown_80FDCA4: @ 80FDCA4 .global gUnknown_80FDCA8 gUnknown_80FDCA8: @ 80FDCA8 -.string "{ARG_POKEMON_0} converted to\n" -.string "the {ARG_MOVE_ITEM_0} type!\0" +.string "{POKEMON_0} converted to\n" +.string "the {MOVE_ITEM_0} type!\0" .align 2, 0 .global gUnknown_80FDCC8 @@ -8141,7 +8141,7 @@ gUnknown_80FDCC8: @ 80FDCC8 .global gUnknown_80FDCCC gUnknown_80FDCCC: @ 80FDCCC -.string "{ARG_POKEMON_0} mimicked its foe!\0" +.string "{POKEMON_0} mimicked its foe!\0" .align 2, 0 .global gUnknown_80FDCE4 @@ -8151,7 +8151,7 @@ gUnknown_80FDCE4: @ 80FDCE4 .global gUnknown_80FDCE8 gUnknown_80FDCE8: @ 80FDCE8 -.string "{ARG_POKEMON_0}'s Mimic failed!\0" +.string "{POKEMON_0}'s Mimic failed!\0" .align 2, 0 .global gUnknown_80FDD00 @@ -8227,7 +8227,7 @@ gUnknown_80FDDF0: @ 80FDDF0 .global gUnknown_80FDDF4 gUnknown_80FDDF4: @ 80FDDF4 -.string "There is nothing at {ARG_POKEMON_0}'s feet.\0" +.string "There is nothing at {POKEMON_0}'s feet.\0" .align 2, 0 .global gUnknown_80FDE18 @@ -8260,7 +8260,7 @@ gUnknown_80FDEB8: @ 80FDEB8 .global gUnknown_80FDEBC gUnknown_80FDEBC: @ 80FDEBC .string "Will the linked moves be forgotten,\n" -.string "including the selected {ARG_MOVE_ITEM_0}?\0" +.string "including the selected {MOVE_ITEM_0}?\0" .align 2, 0 .global gUnknown_80FDF00 @@ -8281,7 +8281,7 @@ gUnknown_80FDF40: @ 80FDF40 .global gUnknown_80FDF44 gUnknown_80FDF44: @ 80FDF44 -.string "The move {ARG_MOVE_ITEM_0} will be\n" +.string "The move {MOVE_ITEM_0} will be\n" .string "forgotten.\n" .string "Is that OK?\0" .align 2, 0 @@ -8316,7 +8316,7 @@ gUnknown_80FDFE8: @ 80FDFE8 .global gUnknown_80FDFEC gUnknown_80FDFEC: @ 80FDFEC -.string "{ARG_POKEMON_0} can't talk just now.\0" +.string "{POKEMON_0} can't talk just now.\0" .align 2, 0 .global gUnknown_80FE008 @@ -8347,7 +8347,7 @@ gUnknown_80FE060: @ 80FE060 .global gUnknown_80FE064 gUnknown_80FE064: @ 80FE064 .string "There is no room on your team to accept\n" -.string "the guest rescue team's {ARG_POKEMON_0}.\0" +.string "the guest rescue team's {POKEMON_0}.\0" .align 2, 0 .global gUnknown_80FE0AC @@ -8358,7 +8358,7 @@ gUnknown_80FE0AC: @ 80FE0AC .global gUnknown_80FE0B0 gUnknown_80FE0B0: @ 80FE0B0 .string "There is no room on your team to fit\n" -.string "the {ARG_POKEMON_0} that needs your help.\0" +.string "the {POKEMON_0} that needs your help.\0" .align 2, 0 .global gUnknown_80FE0F4 @@ -8373,7 +8373,7 @@ gUnknown_80FE0F8: @ 80FE0F8 .global gUnknown_80FE0FC gUnknown_80FE0FC: @ 80FE0FC -.string "The guest rescue team's {ARG_POKEMON_0}\n" +.string "The guest rescue team's {POKEMON_0}\n" .string "joined your rescue team!\0" .align 2, 0 @@ -8384,7 +8384,7 @@ gUnknown_80FE134: @ 80FE134 .global gUnknown_80FE138 gUnknown_80FE138: @ 80FE138 -.string "Your client, {ARG_POKEMON_0}, joined\n" +.string "Your client, {POKEMON_0}, joined\n" .string "your rescue team!\0" .align 2, 0 @@ -8395,7 +8395,7 @@ gUnknown_80FE168: @ 80FE168 .global gUnknown_80FE16C gUnknown_80FE16C: @ 80FE16C -.string "The Friend Area {ARG_MOVE_ITEM_0} is\n" +.string "The Friend Area {MOVE_ITEM_0} is\n" .string "full.\n" .string "A friend must be released.\0" .align 2, 0 @@ -8452,7 +8452,7 @@ gUnknown_80FE2D0: @ 80FE2D0 .global gUnknown_80FE2D4 gUnknown_80FE2D4: @ 80FE2D4 -.string "{ARG_POKEMON_0} evolved into {ARG_POKEMON_1}!\0" +.string "{POKEMON_0} evolved into {POKEMON_1}!\0" .align 2, 0 .global gUnknown_80FE2EC @@ -8472,7 +8472,7 @@ gPtrItsaMonsterHouseMessage: @ 80FE308 .global gUnknown_80FE30C gUnknown_80FE30C: @ 80FE30C -.string "It became the move {ARG_MOVE_ITEM_0}'s type!\0" +.string "It became the move {MOVE_ITEM_0}'s type!\0" .align 2, 0 .global gUnknown_80FE330 @@ -8493,7 +8493,7 @@ gUnknown_80FE36C: @ 80FE36C .global gUnknown_80FE370 gUnknown_80FE370: @ 80FE370 -.string "The move {ARG_MOVE_ITEM_0} was sketched!\0" +.string "The move {MOVE_ITEM_0} was sketched!\0" .align 2, 0 .global gUnknown_80FE38C @@ -8514,7 +8514,7 @@ gUnknown_80FE3BC: @ 80FE3BC .global gUnknown_80FE3C0 gUnknown_80FE3C0: @ 80FE3C0 -.string "{ARG_MOVE_ITEM_0} is all sticky!\n" +.string "{MOVE_ITEM_0} is all sticky!\n" .string "It doesn't work!\0" .align 2, 0 @@ -8525,8 +8525,8 @@ gItemStickyDoesntWorkText: @ 80FE3E8 .global gUnknown_80FE3EC gUnknown_80FE3EC: @ 80FE3EC -.string "{ARG_POKEMON_0} learned the move\n" -.string "{ARG_MOVE_ITEM_0}.\0" +.string "{POKEMON_0} learned the move\n" +.string "{MOVE_ITEM_0}.\0" .align 2, 0 .4byte gUnknown_80FE3EC @@ -8562,7 +8562,7 @@ gUnknown_80FE458: @ 80FE458 .global gUnknown_80FE45C gUnknown_80FE45C: @ 80FE45C -.string "{ARG_POKEMON_0} had second thoughts!\0" +.string "{POKEMON_0} had second thoughts!\0" .align 2, 0 .global gUnknown_80FE478 @@ -8614,7 +8614,7 @@ gUnknown_80FE520: @ 80FE520 .global gUnknown_80FE524 gUnknown_80FE524: @ 80FE524 .string "The merchandise you have chosen\n" -.string "costs {ARG_VALUE_0} {POKE}.\n" +.string "costs {VALUE_0} {POKE}.\n" .string "Is that acceptable?\0" .align 2, 0 @@ -8626,7 +8626,7 @@ gUnknown_80FE568: @ 80FE568 .global gUnknown_80FE56C gUnknown_80FE56C: @ 80FE56C .string "For the merchandise you have left me,\n" -.string "I shall pay {ARG_VALUE_0} {POKE}.\n" +.string "I shall pay {VALUE_0} {POKE}.\n" .string "Is that acceptable?\0" .align 2, 0 @@ -8679,7 +8679,7 @@ gUnknown_80FE674: @ 80FE674 .global gUnknown_80FE678 gUnknown_80FE678: @ 80FE678 -.string "{ARG_POKEMON_0} was sent flying!\0" +.string "{POKEMON_0} was sent flying!\0" .align 2, 0 .global gUnknown_80FE690 @@ -8699,7 +8699,7 @@ gUnknown_80FE6B4: @ 80FE6B4 .global gUnknown_80FE6B8 gUnknown_80FE6B8: @ 80FE6B8 -.string "{ARG_POKEMON_0} can't throw items!\0" +.string "{POKEMON_0} can't throw items!\0" .align 2, 0 .global gUnknown_80FE6D4 @@ -8933,7 +8933,7 @@ gFieldItemMenuGroundTextPtr: @ 80FE92C .global ItemText_80FE930 ItemText_80FE930: @ 80FE930 -.string "{ARG_POKEMON_0}'s item\0" +.string "{POKEMON_0}'s item\0" .align 2,0 .global gUnknown_80FE940 @@ -8959,7 +8959,7 @@ gUnknown_80FE954: @ 80FE954 .global ItemText_80FE958 ItemText_80FE958: @ 80FE958 -.string "{ARG_MOVE_ITEM_0}\0" +.string "{MOVE_ITEM_0}\0" .align 2,0 .global gUnknown_80FE95C @@ -8976,7 +8976,7 @@ gUnknown_80FE964: @ 80FE964 .global PokeMove_80FE968 PokeMove_80FE968: @ 80FE968 -.string "{ARG_POKEMON_0}'s moves\0" +.string "{POKEMON_0}'s moves\0" .align 2,0 .global gUnknown_80FE978 @@ -9080,7 +9080,7 @@ gUnknown_80FEA28: @ 80FEA28 .global gUnknown_80FEA2C gUnknown_80FEA2C: @ 80FEA2C -.string "{COLOR_1 RED}Recruitment search{END_COLOR_TEXT_1}\0" +.string "{COLOR RED}Recruitment search{RESET}\0" .align 2, 0 .global gUnknown_80FEA44 @@ -9128,9 +9128,9 @@ gUnknown_80FEA8C: @ 80FEA8C .global gUnknown_80FEA90 gUnknown_80FEA90: @ 80FEA90 -.string "{ARG_POKEMON_0}'s IQ rose!\n" +.string "{POKEMON_0}'s IQ rose!\n" .string "It learned the IQ skill\n" -.string "“{ARG_MOVE_ITEM_0}”!\0" +.string "“{MOVE_ITEM_0}”!\0" .align 2, 0 .global gUnknown_80FEAC4 @@ -9150,7 +9150,7 @@ gUnknown_80FEAE8: @ 80FEAE8 .global gUnknown_80FEAEC gUnknown_80FEAEC: @ 80FEAEC -.string "{ARG_POKEMON_1} became the {ARG_MOVE_ITEM_0} type.\0" +.string "{POKEMON_1} became the {MOVE_ITEM_0} type.\0" .align 2, 0 .global gUnknown_80FEB08 @@ -9160,7 +9160,7 @@ gUnknown_80FEB08: @ 80FEB08 .global gUnknown_80FEB0C gUnknown_80FEB0C: @ 80FEB0C -.string "{ARG_POKEMON_1} took Perish Song's effect!\0" +.string "{POKEMON_1} took Perish Song's effect!\0" .align 2, 0 .global gUnknown_80FEB30 @@ -9240,7 +9240,7 @@ gUnknown_80FEC28: @ 80FEC28 .global gUnknown_80FEC2C gUnknown_80FEC2C: @ 80FEC2C -.string "Rescue chances left: {ARG_VALUE_0}\0" +.string "Rescue chances left: {VALUE_0}\0" .align 2, 0 .global gUnknown_80FEC48 @@ -9270,7 +9270,7 @@ gUnknown_80FECA0: @ 80FECA0 .global gUnknown_80FECA4 gUnknown_80FECA4: @ 80FECA4 -.string "{ARG_POKEMON_0} waggled its finger!\0" +.string "{POKEMON_0} waggled its finger!\0" .align 2, 0 .global gUnknown_80FECBC @@ -9280,7 +9280,7 @@ gUnknown_80FECBC: @ 80FECBC .global gUnknown_80FECC0 gUnknown_80FECC0: @ 80FECC0 -.string "{ARG_POKEMON_0} drew out nature's power!\0" +.string "{POKEMON_0} drew out nature's power!\0" .align 2, 0 .global gUnknown_80FECE0 @@ -9325,13 +9325,13 @@ gUnknown_80FED30: @ 80FED30 .global gUnknown_80FED34 gUnknown_80FED34: @ 80FED34 -.string "{ARG_POKEMON_0} disappeared in the blast!\0" +.string "{POKEMON_0} disappeared in the blast!\0" .align 2, 0 .4byte gUnknown_80FED34 .global gUnknown_80FED58 gUnknown_80FED58: @ 80FED58 -.string "{ARG_POKEMON_0} blinked.\0" +.string "{POKEMON_0} blinked.\0" .align 2, 0 .global gUnknown_80FED68 @@ -9512,7 +9512,7 @@ gUnknown_80FEF98: @ 80FEF98 .global gUnknown_80FEF9C gUnknown_80FEF9C: @ 80FEF9C .string "A horrid stench billowed out!\n" -.string "{ARG_POKEMON_0} became terrified!\0" +.string "{POKEMON_0} became terrified!\0" .align 2, 0 .global gUnknown_80FEFD0 @@ -9532,7 +9532,7 @@ gUnknown_80FEFF4: @ 80FEFF4 .global gUnknown_80FEFF8 gUnknown_80FEFF8: @ 80FEFF8 -.string "{ARG_POKEMON_0}'s Synchronize took effect!\0" +.string "{POKEMON_0}'s Synchronize took effect!\0" .align 2, 0 .global gUnknown_80FF01C @@ -9774,8 +9774,8 @@ gUnknown_80FF6F8: @ 80FF6F8 .global gUnknown_80FF6FC gUnknown_80FF6FC: @ 80FF6FC -.string "{ARG_MOVE_ITEM_0} was added to\n" -.string "{ARG_POKEMON_0}'s list of usable tactics.\0" +.string "{MOVE_ITEM_0} was added to\n" +.string "{POKEMON_0}'s list of usable tactics.\0" .align 2, 0 .global gUnknown_80FF730 @@ -9996,7 +9996,7 @@ gUnknown_8100208: @ 8100208 .global gMagnitudeMessage gMagnitudeMessage: @ 810020C -.string "It's Magnitude {ARG_VALUE_0}!\0" +.string "It's Magnitude {VALUE_0}!\0" .align 2, 0 .global gPtrMagnitudeMessage @@ -10014,7 +10014,7 @@ gPtrSleepingTargetOnlyMessage: @ 810024C .global gFeralFoundItemMessage gFeralFoundItemMessage: @ 8100250 -.string "{ARG_POKEMON_0} found an item somewhere.\0" +.string "{POKEMON_0} found an item somewhere.\0" .align 2, 0 .global gPtrFeralFoundItemMessage @@ -10032,7 +10032,7 @@ gPtrSelfHealPreventedHungerMessage: @ 8100298 .global gUnknown_810029C gUnknown_810029C: @ 810029C -.string "Rescue challenges left: {ARG_VALUE_0}\0" +.string "Rescue challenges left: {VALUE_0}\0" .align 2, 0 .global gUnknown_81002B8 @@ -10059,8 +10059,8 @@ gPtrLinkedMovesComeApartMessage: @ 81002FC .global gLinkMoveOneUseWarningMessage gLinkMoveOneUseWarningMessage: @ 8100300 -.string "{COLOR_2 YELLOW}The linked moves are almost out of PP!{END_COLOR_TEXT_2}\n" -.string "{COLOR_2 YELLOW}Use them again and they will come apart!{END_COLOR_TEXT_2}\0" +.string "{color YELLOW}The linked moves are almost out of PP!{reset}\n" +.string "{color YELLOW}Use them again and they will come apart!{reset}\0" .align 2, 0 .global gPtrLinkMoveOneUseWarningMessage @@ -10069,8 +10069,8 @@ gPtrLinkMoveOneUseWarningMessage: @ 810035C .global gLinkMoveTwoUsesWarningMessage gLinkMoveTwoUsesWarningMessage: @ 8100360 -.string "{COLOR_2 YELLOW}The linked moves are almost out of PP!{END_COLOR_TEXT_2}\n" -.string "{COLOR_2 YELLOW}Use them twice and they will come apart!{END_COLOR_TEXT_2}\0" +.string "{color YELLOW}The linked moves are almost out of PP!{reset}\n" +.string "{color YELLOW}Use them twice and they will come apart!{reset}\0" .align 2, 0 .global gPtrLinkMoveTwoUsesWarningMessage @@ -10155,7 +10155,7 @@ gUnknown_81004F0: @ 81004F0 .global gUnknown_81004F4 gUnknown_81004F4: @ 81004F4 -.string "{ARG_POKEMON_1}'s Soundproof suppressed\n" +.string "{POKEMON_1}'s Soundproof suppressed\n" .string "the sound move!\0" .align 2, 0 @@ -10220,7 +10220,7 @@ gPtrCantLeechSeedSelfMessage: @ 8100610 .global gCantLeechSeedMonMessage gCantLeechSeedMonMessage: @ 8100614 .string "A leech seed couldn't be planted on\n" -.string "{ARG_POKEMON_0}!\0" +.string "{POKEMON_0}!\0" .align 2, 0 .global gPtrCantLeechSeedMonMessage @@ -10301,8 +10301,8 @@ gSkarmoryPreFightDialogue_1: @ 8100768 .global gUnknown_8100774 gUnknown_8100774: @ 8100774 -.string " Look, {ARG_POKEMON_0}!\n" -.string "{ARG_POKEMON_2}'s over there!\0" +.string " Look, {POKEMON_0}!\n" +.string "{POKEMON_2}'s over there!\0" .align 2, 0 .global gSkarmoryPreFightDialogue_2 @@ -10359,17 +10359,17 @@ gSkarmoryPreFightDialogue_5: @ 8100880 .global gUnknown_8100898 gUnknown_8100898: @ 8100898 .string " We're here to rescue\n" -.string "{ARG_POKEMON_2}!{EXTRA_MSG}" -.string " {ARG_POKEMON_3}!\n" -.string "Don't do this! Release {ARG_POKEMON_2}!\0" +.string "{POKEMON_2}!{EXTRA_MSG}" +.string " {POKEMON_3}!\n" +.string "Don't do this! Release {POKEMON_2}!\0" .align 2, 0 .global gUnknown_81008DC gUnknown_81008DC: @ 81008DC .string " We came to rescue\n" -.string "{ARG_POKEMON_2}!{EXTRA_MSG}" -.string " Hey, {ARG_POKEMON_3}!\n" -.string "Quit doing this, and release {ARG_POKEMON_2}!\0" +.string "{POKEMON_2}!{EXTRA_MSG}" +.string " Hey, {POKEMON_3}!\n" +.string "Quit doing this, and release {POKEMON_2}!\0" .align 2, 0 .global gSkarmoryPreFightDialogue_6 @@ -10404,7 +10404,7 @@ gUnknown_8100A1C: @ 8100A1C .string "Well, it's true there have\n" .string "been many earthquakes lately, but...{EXTRA_MSG}" .string " It would take more than\n" -.string "{ARG_POKEMON_2}'s family going wild under\n" +.string "{POKEMON_2}'s family going wild under\n" .string "the ground to cause earthquakes.\0" .align 2, 0 @@ -10414,7 +10414,7 @@ gUnknown_8100AD4: @ 8100AD4 .string " Sure there've been quakes\n" .string "galore lately...{EXTRA_MSG}" .string " But it would take more than\n" -.string "{ARG_POKEMON_2}'s family running wild under\n" +.string "{POKEMON_2}'s family running wild under\n" .string "the ground to set off a quake.\0" .align 2, 0 @@ -10442,7 +10442,7 @@ gSkarmoryPreFightDialogue_9: @ 8100BC0 .global gUnknown_8100BD8 gUnknown_8100BD8: @ 8100BD8 .string " It's no good.\n" -.string "{ARG_POKEMON_3} is too agitated to listen to\n" +.string "{POKEMON_3} is too agitated to listen to\n" .string "reason.{EXTRA_MSG}" .string " We'll have to fight it out!\0" .align 2, 0 @@ -10450,7 +10450,7 @@ gUnknown_8100BD8: @ 8100BD8 .global gUnknown_8100C34 gUnknown_8100C34: @ 8100C34 .string " It's useless.\n" -.string "{ARG_POKEMON_3} is too steamed to talk\n" +.string "{POKEMON_3} is too steamed to talk\n" .string "reasonably.{EXTRA_MSG}" .string " We're going to have to\n" .string "fight!\0" @@ -10477,8 +10477,8 @@ gSkarmoryReFightDialogue_2: @ 8100CBC .global gUnknown_8100CC8 gUnknown_8100CC8: @ 8100CC8 -.string " Let {ARG_POKEMON_2} go!\n" -.string "{ARG_POKEMON_3}!\0" +.string " Let {POKEMON_2} go!\n" +.string "{POKEMON_3}!\0" .align 2, 0 .global gSkarmoryReFightDialogue_3 @@ -10520,7 +10520,7 @@ gTeamMeaniesPreFightDialogue_1: @ 8100DB0 gUnknown_8100DC8: @ 8100DC8 .string " Wow, we came quite a ways\n" .string "into this forest.{EXTRA_MSG}" -.string " I wonder if {ARG_POKEMON_2} is\n" +.string " I wonder if {POKEMON_2} is\n" .string "ahead...\0" .align 2, 0 @@ -10528,7 +10528,7 @@ gUnknown_8100DC8: @ 8100DC8 gUnknown_8100E18: @ 8100E18 .string " We've come pretty far\n" .string "into this forest.{EXTRA_MSG}" -.string " I wonder if {ARG_POKEMON_2} is\n" +.string " I wonder if {POKEMON_2} is\n" .string "ahead...\0" .align 2, 0 @@ -10553,7 +10553,7 @@ gTeamMeaniesPreFightDialogue_3: @ 8100E88 gUnknown_8100E94: @ 8100E94 .string " Keke!\n" .string "You know who's going to get to\n" -.string "{ARG_POKEMON_2} first? We are!{EXTRA_MSG}" +.string "{POKEMON_2} first? We are!{EXTRA_MSG}" .string " So, for you to go ahead...{WAIT_PRESS}\n" .string "Well, we can't let that happen.\0" .align 2, 0 @@ -10572,21 +10572,21 @@ gTeamMeaniesPreFightDialogue_4: @ 8100F14 .global gUnknown_8100F38 gUnknown_8100F38: @ 8100F38 .string " Wh-what?!{EXTRA_MSG}" -.string " Now, hold on, {ARG_POKEMON_3}!{WAIT_PRESS}\n" +.string " Now, hold on, {POKEMON_3}!{WAIT_PRESS}\n" .string "Why do you always interfere with us?\0" .align 2, 0 .global gUnknown_8100F84 gUnknown_8100F84: @ 8100F84 .string " Wh-what!{EXTRA_MSG}" -.string " Hey, {ARG_POKEMON_3}!{WAIT_PRESS}\n" +.string " Hey, {POKEMON_3}!{WAIT_PRESS}\n" .string "Why do you always mess with us?\0" .align 2, 0 .global gUnknown_8100FC0 gUnknown_8100FC0: @ 8100FC0 .string " Wh-what...?{EXTRA_MSG}" -.string " Hey, {ARG_POKEMON_3}!{WAIT_PRESS}\n" +.string " Hey, {POKEMON_3}!{WAIT_PRESS}\n" .string "Why do you always try to mess with us?\0" .align 2, 0 @@ -10610,9 +10610,9 @@ gTeamMeaniesPreFightDialogue_6: @ 8101050 .global gUnknown_810105C gUnknown_810105C: @ 810105C -.string " {ARG_POKEMON_4}'s mama will\n" +.string " {POKEMON_4}'s mama will\n" .string "give us a generous reward...{EXTRA_MSG}" -.string " And {ARG_POKEMON_4} will join\n" +.string " And {POKEMON_4} will join\n" .string "us too...{WAIT_PRESS}\n" .string "That brings us closer to our goal.\0" .align 2, 0 @@ -10629,7 +10629,7 @@ gUnknown_81010DC: @ 81010DC .string "And for that, your lot is in the way!{EXTRA_MSG}" .string " So sorry to say, but your\n" .string "party's over right here and now!{EXTRA_MSG}" -.string " Say good-bye, {ARG_POKEMON_1}!\0" +.string " Say good-bye, {POKEMON_1}!\0" .align 2, 0 .global gTeamMeaniesReFightDialogue_1 @@ -10643,17 +10643,17 @@ gTeamMeaniesReFightDialogue_1: @ 8101164 .global gUnknown_810117C gUnknown_810117C: @ 810117C -.string " This is where the {COLOR_1 CYAN}Meanies{END_COLOR_TEXT_1}\n" +.string " This is where the {COLOR CYAN}Meanies{RESET}\n" .string "showed up last time.{EXTRA_MSG}" -.string " I wonder if {ARG_POKEMON_3}'s\n" -.string "bunch already found {ARG_POKEMON_2}...\0" +.string " I wonder if {POKEMON_3}'s\n" +.string "bunch already found {POKEMON_2}...\0" .align 2, 0 .global gUnknown_81011E4 gUnknown_81011E4: @ 81011E4 .string " Last time, this is where\n" -.string "{ARG_POKEMON_3}'s gang appeared.{EXTRA_MSG}" -.string " Did they find {ARG_POKEMON_2}\n" +.string "{POKEMON_3}'s gang appeared.{EXTRA_MSG}" +.string " Did they find {POKEMON_2}\n" .string "already, I wonder?\0" .align 2, 0 @@ -10670,22 +10670,22 @@ gTeamMeaniesReFightDialogue_2: @ 8101240 .global gUnknown_8101264 gUnknown_8101264: @ 8101264 -.string " Huh? It's {ARG_POKEMON_3}!{EXTRA_MSG}" -.string " Why is {ARG_POKEMON_3}'s gang\n" +.string " Huh? It's {POKEMON_3}!{EXTRA_MSG}" +.string " Why is {POKEMON_3}'s gang\n" .string "following us?\0" .align 2, 0 .global gUnknown_810129C gUnknown_810129C: @ 810129C -.string " Huh? It's {ARG_POKEMON_3}!{EXTRA_MSG}" -.string " Why is the {ARG_POKEMON_3}\n" +.string " Huh? It's {POKEMON_3}!{EXTRA_MSG}" +.string " Why is the {POKEMON_3}\n" .string "gang following us?\0" .align 2, 0 .global gUnknown_81012D4 gUnknown_81012D4: @ 81012D4 -.string " Hah? It's {ARG_POKEMON_3}!{EXTRA_MSG}" -.string " Why is {ARG_POKEMON_3}'s\n" +.string " Hah? It's {POKEMON_3}!{EXTRA_MSG}" +.string " Why is {POKEMON_3}'s\n" .string "crew coming after us?\0" .align 2, 0 @@ -10726,7 +10726,7 @@ gTeamMeaniesReFightDialogue_5: @ 8101408 .global gUnknown_8101414 gUnknown_8101414: @ 8101414 -.string " This is it, {ARG_POKEMON_1}!\n" +.string " This is it, {POKEMON_1}!\n" .string "You're going down!\0" .align 2, 0 @@ -10773,19 +10773,19 @@ gUnknown_8101504: @ 8101504 .global gUnknown_810151C gUnknown_810151C: @ 810151C -.string " Hey! {ARG_POKEMON_3}!\n" +.string " Hey! {POKEMON_3}!\n" .string "Where are you?!{EXTRA_MSG}" .string " We came to rescue\n" -.string "{ARG_POKEMON_2}!\n" +.string "{POKEMON_2}!\n" .string "Come out!\0" .align 2, 0 .global gUnknown_810155C gUnknown_810155C: @ 810155C -.string " Hey! {ARG_POKEMON_3}!\n" +.string " Hey! {POKEMON_3}!\n" .string "Where are you?!{EXTRA_MSG}" .string " We came to rescue\n" -.string "{ARG_POKEMON_2}!\n" +.string "{POKEMON_2}!\n" .string "Show yourself!\0" .align 2, 0 @@ -10849,24 +10849,24 @@ gUnknown_810165C: @ 810165C .global gUnknown_8101680 gUnknown_8101680: @ 8101680 -.string " Hey, {ARG_POKEMON_3}!\n" -.string "We demand you release {ARG_POKEMON_2}!{EXTRA_MSG}" +.string " Hey, {POKEMON_3}!\n" +.string "We demand you release {POKEMON_2}!{EXTRA_MSG}" .string " We're a Pokémon rescue\n" .string "team!\0" .align 2, 0 .global gUnknown_81016CC gUnknown_81016CC: @ 81016CC -.string " Hey, {ARG_POKEMON_3}!\n" -.string "Release {ARG_POKEMON_2}!{EXTRA_MSG}" +.string " Hey, {POKEMON_3}!\n" +.string "Release {POKEMON_2}!{EXTRA_MSG}" .string " We're a Pokémon rescue\n" .string "team!\0" .align 2, 0 .global gUnknown_8101708 gUnknown_8101708: @ 8101708 -.string " Hey, {ARG_POKEMON_3}!\n" -.string "Let {ARG_POKEMON_2} go!{EXTRA_MSG}" +.string " Hey, {POKEMON_3}!\n" +.string "Let {POKEMON_2} go!{EXTRA_MSG}" .string " A Pokémon rescue team!\n" .string "That's what we are!\0" .align 2, 0 @@ -10919,21 +10919,21 @@ gZapdosReFightDialogue_1: @ 81017E4 .global gUnknown_8101808 gUnknown_8101808: @ 8101808 -.string " Hey, {ARG_POKEMON_3}!\n" +.string " Hey, {POKEMON_3}!\n" .string "We're here again!{EXTRA_MSG}" .string " Show yourself!\0" .align 2, 0 .global gUnknown_810183C gUnknown_810183C: @ 810183C -.string " Hey, {ARG_POKEMON_3}!\n" +.string " Hey, {POKEMON_3}!\n" .string "We're back!{EXTRA_MSG}" .string " Come out!\0" .align 2, 0 .global gUnknown_8101864 gUnknown_8101864: @ 8101864 -.string " Hey, {ARG_POKEMON_3}!\n" +.string " Hey, {POKEMON_3}!\n" .string "Guess who's back?!{EXTRA_MSG}" .string " Show yourself!\0" .align 2, 0 @@ -11252,7 +11252,7 @@ gMoltresPreFightDialogue_11: @ 81020D4 .global gUnknown_81020E0 gUnknown_81020E0: @ 81020E0 -.string " I am {ARG_POKEMON_2}!\n" +.string " I am {POKEMON_2}!\n" .string "The warrior of fire am I!\0" .align 2, 0 @@ -11278,7 +11278,7 @@ gMoltresReFightDialogue_1: @ 8102158 .global gUnknown_8102164 gUnknown_8102164: @ 8102164 .string " ............{WAIT_PRESS}\n" -.string "Maybe {ARG_POKEMON_2} isn't around...\0" +.string "Maybe {POKEMON_2} isn't around...\0" .align 2, 0 .global gMoltresReFightDialogue_2 @@ -11392,7 +11392,7 @@ gMoltresPostStoryPreFightDialogue_3: @ 81023C4 .global gUnknown_81023D0 gUnknown_81023D0: @ 81023D0 .string " So be it!{WAIT_PRESS}\n" -.string "I am the warrior of fire, {ARG_POKEMON_2}!\0" +.string "I am the warrior of fire, {POKEMON_2}!\0" .align 2, 0 .global gMoltresPostStoryPreFightDialogue_4 @@ -11470,7 +11470,7 @@ gArticunoPreFightDialogue_3: @ 81025D4 .global gUnknown_81025E0 gUnknown_81025E0: @ 81025E0 .string " ...Huh?{WAIT_PRESS}\n" -.string "{ARG_POKEMON_0}, did you just say something?\0" +.string "{POKEMON_0}, did you just say something?\0" .align 2, 0 .global gArticunoPreFightDialogue_4 @@ -11570,7 +11570,7 @@ gUnknown_810284C: @ 810284C .global gUnknown_810284C gUnknown_810284C: @ 810284C -.string " I am {ARG_POKEMON_2}!{WAIT_PRESS}\n" +.string " I am {POKEMON_2}!{WAIT_PRESS}\n" .string "The warder of ice!\0" .global gArticunoPreFightDialogue_11 @@ -11780,7 +11780,7 @@ MagmaCavernMidDialogue_5: @ 8102C30 .global gUnknown_8102C3C gUnknown_8102C3C: @ 8102C3C -.string " Hey! {ARG_POKEMON_0}!\n" +.string " Hey! {POKEMON_0}!\n" .string "Over there!\0" .align 2, 0 @@ -11844,7 +11844,7 @@ MagmaCavernMidDialogue_9: @ 8102CF8 .global gUnknown_8102D04 gUnknown_8102D04: @ 8102D04 .string " We challenged...\n" -.string "{ARG_POKEMON_2}...{WAIT_PRESS}\n" +.string "{POKEMON_2}...{WAIT_PRESS}\n" .string "And wiped out...\n\0" .align 2, 0 @@ -11856,7 +11856,7 @@ MagmaCavernMidDialogue_10: @ 8102D34 .global gUnknown_8102D40 gUnknown_8102D40: @ 8102D40 -.string " G-{ARG_POKEMON_2}?!\0" +.string " G-{POKEMON_2}?!\0" .align 2, 0 .global MagmaCavernMidDialogue_11 @@ -11883,15 +11883,15 @@ MagmaCavernMidDialogue_12: @ 8102D7C .global gUnknown_8102D94 gUnknown_8102D94: @ 8102D94 .string " That's right.{WAIT_PRESS}\n" -.string "What happened to {ARG_POKEMON_3}?\n" -.string "Where is {ARG_POKEMON_3}?\0" +.string "What happened to {POKEMON_3}?\n" +.string "Where is {POKEMON_3}?\0" .align 2, 0 .global gUnknown_8102DCC gUnknown_8102DCC: @ 8102DCC .string " Wait...{WAIT_PRESS}\n" -.string "What about {ARG_POKEMON_3}?\n" -.string "Where did {ARG_POKEMON_3} go?\0" +.string "What about {POKEMON_3}?\n" +.string "Where did {POKEMON_3} go?\0" .align 2, 0 .global MagmaCavernMidDialogue_13 @@ -11902,8 +11902,8 @@ MagmaCavernMidDialogue_13: @ 8102DFC .global gUnknown_8102E08 gUnknown_8102E08: @ 8102E08 -.string " {ARG_POKEMON_3} is...{WAIT_PRESS}\n" -.string "Still battling {ARG_POKEMON_2}...\0" +.string " {POKEMON_3} is...{WAIT_PRESS}\n" +.string "Still battling {POKEMON_2}...\0" .align 2, 0 .global MagmaCavernMidDialogue_14 @@ -11915,7 +11915,7 @@ MagmaCavernMidDialogue_14: @ 8102E2C .global gUnknown_8102E38 gUnknown_8102E38: @ 8102E38 -.string " {ARG_POKEMON_0}!\n" +.string " {POKEMON_0}!\n" .string "We've got to hurry!\0" .global MagmaCavernMidDialogue_15 @@ -11940,13 +11940,13 @@ GroudonPreFightDialogue_1: @ 8102E70 .global gUnknown_8102E88 gUnknown_8102E88: @ 8102E88 -.string " It's {ARG_POKEMON_3}!\n" +.string " It's {POKEMON_3}!\n" .string "Are you OK?!\0" .align 2, 0 .global gUnknown_8102EA4 gUnknown_8102EA4: @ 8102EA4 -.string " Oh! {ARG_POKEMON_3}!\n" +.string " Oh! {POKEMON_3}!\n" .string "Are you OK?!\0" .align 2, 0 @@ -12040,8 +12040,8 @@ GroudonPreFightDialogue_9: @ 8102FC4 .global gUnknown_8102FD0 gUnknown_8102FD0: @ 8102FD0 -@ The "A-" only makes sense when ARG_POKEMON_3 is "Alakazam" (which it is when this is used). Kinda funny. -.string " A-{ARG_POKEMON_3}!\0" +@ The "A-" only makes sense when POKEMON_3 is "Alakazam" (which it is when this is used). Kinda funny. +.string " A-{POKEMON_3}!\0" .global GroudonPreFightDialogue_10 GroudonPreFightDialogue_10: @ 8102FD8 @@ -12054,14 +12054,14 @@ GroudonPreFightDialogue_10: @ 8102FD8 .global gUnknown_8102FF0 gUnknown_8102FF0: @ 8102FF0 -.string " {ARG_POKEMON_3} is gone!{EXTRA_MSG}" +.string " {POKEMON_3} is gone!{EXTRA_MSG}" .string " Maybe...{WAIT_PRESS}\n" .string "Was he defeated?!\0" .align 2, 0 .global gUnknown_8103020 gUnknown_8103020: @ 8103020 -.string " {ARG_POKEMON_3}'s gone!{EXTRA_MSG}" +.string " {POKEMON_3}'s gone!{EXTRA_MSG}" .string " Was he maybe...{WAIT_PRESS}\n" .string "knocked out?!\0" .align 2, 0 @@ -12130,13 +12130,13 @@ GroudonPreFightDialogue_14: @ 8103140 .global gUnknown_8103158 gUnknown_8103158: @ 8103158 -.string " {ARG_POKEMON_0}!\n" +.string " {POKEMON_0}!\n" .string "Let's do our best!\0" .align 2, 0 .global gUnknown_8103174 gUnknown_8103174: @ 8103174 -.string " {ARG_POKEMON_0}!\n" +.string " {POKEMON_0}!\n" .string "Hang tough!\0" .align 2, 0 @@ -12152,17 +12152,17 @@ gGroudonReFightDialogue_1: @ 8103188 .global gUnknown_81031A0 gUnknown_81031A0: @ 81031A0 .string " Here it comes!\n" -.string "{ARG_POKEMON_0}!{EXTRA_MSG}" +.string "{POKEMON_0}!{EXTRA_MSG}" .string " Let's make sure we subdue\n" -.string "{ARG_POKEMON_2} this time!\0" +.string "{POKEMON_2} this time!\0" .align 2, 0 .global gUnknown_81031E4 gUnknown_81031E4: @ 81031E4 .string " Here it comes!\n" -.string "{ARG_POKEMON_0}!{EXTRA_MSG}" +.string "{POKEMON_0}!{EXTRA_MSG}" .string " We've got to settle\n" -.string "{ARG_POKEMON_2} down this time!\0" +.string "{POKEMON_2} down this time!\0" .align 2, 0 .global gGroudonReFightDialogue_2 @@ -12219,13 +12219,13 @@ gGroudonReFightDialogue_4: @ 8103340 .global gUnknown_8103358 gUnknown_8103358: @ 8103358 -.string " {ARG_POKEMON_0}!\n" +.string " {POKEMON_0}!\n" .string "Let's give it our all!\0" .align 2, 0 .global gUnknown_8103378 gUnknown_8103378: @ 8103378 -.string " {ARG_POKEMON_0}!\n" +.string " {POKEMON_0}!\n" .string "Let's give it what we've got!\0" .align 2, 0 @@ -12318,13 +12318,13 @@ gRayquazaPreFightDialogue_3: @ 8103578 .global gUnknown_8103590 gUnknown_8103590: @ 8103590 .string " That voice...{WAIT_PRESS}\n" -.string "Could it be {ARG_POKEMON_2}?\0" +.string "Could it be {POKEMON_2}?\0" .align 2, 0 .global gUnknown_81035B4 gUnknown_81035B4: @ 81035B4 .string " That voice...{WAIT_PRESS}\n" -.string "Is that {ARG_POKEMON_2}?\0" +.string "Is that {POKEMON_2}?\0" .align 2, 0 .global gRayquazaPreFightDialogue_4 @@ -12719,7 +12719,7 @@ gMewtwoPreFightDialogue_2: @ 8103F0C .global gUnknown_8103F18 gUnknown_8103F18: @ 8103F18 -.string " My name is {ARG_POKEMON_2}.{WAIT_PRESS}\n" +.string " My name is {POKEMON_2}.{WAIT_PRESS}\n" .string "I came into being only to fight.\0" .align 2, 0 @@ -12793,7 +12793,7 @@ gMewtwoReFightDialogue_3: @ 81040CC .global gUnknown_81040D8 gUnknown_81040D8: @ 81040D8 -.string " I am {ARG_POKEMON_2}.{WAIT_PRESS}\n" +.string " I am {POKEMON_2}.{WAIT_PRESS}\n" .string "A Pokémon created only to fight...{WAIT_PRESS}\n" .string "And...\0" .align 2, 0 @@ -12837,7 +12837,7 @@ gEnteiPreFightDialogue_2: @ 81041AC .global gUnknown_81041B8 gUnknown_81041B8: @ 81041B8 -.string " I am {ARG_POKEMON_2}!{WAIT_PRESS}\n" +.string " I am {POKEMON_2}!{WAIT_PRESS}\n" .string "I live surrounded by the fiery lava of\n" .string "volcanoes!\0" .align 2, 0 @@ -12864,7 +12864,7 @@ gEnteiReFightDialogue_1: @ 8104240 gUnknown_810424C: @ 810424C .string " Did I not say to never\n" .string "return?{EXTRA_MSG}" -.string " This is the {COLOR_1 YELLOW_4}Fiery Field{END_COLOR_TEXT_1}!{WAIT_PRESS}\n" +.string " This is the {COLOR YELLOW_D}Fiery Field{RESET}!{WAIT_PRESS}\n" .string "It is no place for your kind!\0" .align 2, 0 @@ -12895,9 +12895,9 @@ gEnteiPostStoryPreFightDialogue_1: @ 8104310 .global gUnknown_810431C gUnknown_810431C: @ 810431C -.string " This is the {COLOR_1 YELLOW_4}Fiery Field{END_COLOR_TEXT_1}!{WAIT_PRESS}\n" +.string " This is the {COLOR YELLOW_D}Fiery Field{RESET}!{WAIT_PRESS}\n" .string "It is no place for your kind!{EXTRA_MSG}" -.string " I am {ARG_POKEMON_2}!{WAIT_PRESS}\n" +.string " I am {POKEMON_2}!{WAIT_PRESS}\n" .string "I live surrounded by the fiery lava of\n" .string "volcanoes!\0" .align 2, 0 @@ -12947,7 +12947,7 @@ gRaikouPreFightDialogue_1: @ 8104450 gUnknown_810445C: @ 810445C .string " Why...{WAIT_PRESS}\n" .string "Why have you come...?{EXTRA_MSG}" -.string " This is {COLOR_1 YELLOW_4}Lightning Field{END_COLOR_TEXT_1}.{WAIT_PRESS}\n" +.string " This is {COLOR YELLOW_D}Lightning Field{RESET}.{WAIT_PRESS}\n" .string "It is my...{WAIT_PRESS}" .string "domain!\0" .align 2, 0 @@ -12960,7 +12960,7 @@ gRaikouPreFightDialogue_2: @ 81044B4 .global gUnknown_81044C0 gUnknown_81044C0: @ 81044C0 -.string " I am {ARG_POKEMON_2}!{WAIT_PRESS}\n" +.string " I am {POKEMON_2}!{WAIT_PRESS}\n" .string "One who races with lightning!{EXTRA_MSG}" .string " A body like roiling rain\n" .string "clouds!\0" @@ -13057,7 +13057,7 @@ gRaikouPostStoryPreFightDialogue_1: @ 81046CC .global gUnknown_81046D8 gUnknown_81046D8: @ 81046D8 -.string " This is {COLOR_1 YELLOW_4}Lightning Field{END_COLOR_TEXT_1}!{WAIT_PRESS}\n" +.string " This is {COLOR YELLOW_D}Lightning Field{RESET}!{WAIT_PRESS}\n" .string "My domain!{EXTRA_MSG}" .string " All those who enter...{WAIT_PRESS}\n" .string "I show no mercy, no matter what!\0" @@ -13126,7 +13126,7 @@ gSuicunePreFightDialogue_4: @ 810484C .global gUnknown_8104858 gUnknown_8104858: @ 8104858 -.string " I am {ARG_POKEMON_2}!{WAIT_PRESS}\n" +.string " I am {POKEMON_2}!{WAIT_PRESS}\n" .string "One who runs with the north wind!\0" .align 2, 0 @@ -13262,7 +13262,7 @@ gUnknown_8104AE0: @ 8104AE0 .string " Fought through many dangerous\n" .string "situations...{EXTRA_MSG}" .string " and finally ascended to the very peak\n" -.string "of {COLOR_1 YELLOW_4}Mt. Faraway{END_COLOR_TEXT_1}!{EXTRA_MSG}" +.string "of {COLOR YELLOW_D}Mt. Faraway{RESET}!{EXTRA_MSG}" .string " Truly, only the chosen have reached\n" .string "the summit.{EXTRA_MSG}" .string " However!\0" @@ -13287,7 +13287,7 @@ gHoOhPreFightDialogue_3: @ 8104C10 .global gUnknown_8104C1C gUnknown_8104C1C: @ 8104C1C -.string " I am {ARG_POKEMON_2}!{WAIT_PRESS}\n" +.string " I am {POKEMON_2}!{WAIT_PRESS}\n" .string "The builder of rainbows across the sky!\0" .align 2, 0 @@ -13395,7 +13395,7 @@ gUnknown_8104E6C: @ 8104E6C .string "I see. You're trying to get your TMs back.{EXTRA_MSG}" .string " But!{EXTRA_MSG}" .string " Nobody can stop me!{EXTRA_MSG}" -.string " I'm the Eon Pokémon {ARG_POKEMON_2}!\0" +.string " I'm the Eon Pokémon {POKEMON_2}!\0" .align 2, 0 .global gLatiosPreFightDialogue_2 @@ -13478,8 +13478,8 @@ gRegirockPostFightDialogue_1: @ 8105040 .global gUnknown_810504C gUnknown_810504C: @ 810504C .string "{CENTER_ALIGN}Something fell from\n" -.string "{CENTER_ALIGN}{COLOR_1 CYAN_3}Regirock{END_COLOR_TEXT_1}'s body.{EXTRA_MSG}" -.string "{CENTER_ALIGN}{COLOR_1 CYAN_3}Regirock{END_COLOR_TEXT_1} was apparently\n" +.string "{CENTER_ALIGN}{COLOR CYAN_M}Regirock{RESET}'s body.{EXTRA_MSG}" +.string "{CENTER_ALIGN}{COLOR CYAN_M}Regirock{RESET} was apparently\n" .string "{CENTER_ALIGN}guarding this item.\0" .align 2, 0 @@ -13491,9 +13491,9 @@ gRegirockPostFightDialogue_2: @ 81050B4 .global gUnknown_81050C0 gUnknown_81050C0: @ 81050C0 -.string "{CENTER_ALIGN}{ARG_POKEMON_0} obtained\n" -.string "{CENTER_ALIGN}the {COLOR_1 GREEN_2}Rock Part{END_COLOR_TEXT_1}...{EXTRA_MSG}" -.string "{CENTER_ALIGN}that {COLOR_1 CYAN_3}Regirock{END_COLOR_TEXT_1} was guarding!\0" +.string "{CENTER_ALIGN}{POKEMON_0} obtained\n" +.string "{CENTER_ALIGN}the {COLOR GREEN_I}Rock Part{RESET}...{EXTRA_MSG}" +.string "{CENTER_ALIGN}that {COLOR CYAN_M}Regirock{RESET} was guarding!\0" .align 2, 0 .global gRegicePostFightDialogue_1 @@ -13505,8 +13505,8 @@ gRegicePostFightDialogue_1: @ 810510C .global gUnknown_8105118 gUnknown_8105118: @ 8105118 .string "{CENTER_ALIGN}Something fell from\n" -.string "{CENTER_ALIGN}{COLOR_1 CYAN_3}Regice{END_COLOR_TEXT_1}'s body.{EXTRA_MSG}" -.string "{CENTER_ALIGN}{COLOR_1 CYAN_3}Regice{END_COLOR_TEXT_1} was apparently\n" +.string "{CENTER_ALIGN}{COLOR CYAN_M}Regice{RESET}'s body.{EXTRA_MSG}" +.string "{CENTER_ALIGN}{COLOR CYAN_M}Regice{RESET} was apparently\n" .string "{CENTER_ALIGN}guarding this item.\0" .align 2, 0 @@ -13518,9 +13518,9 @@ gRegicePostFightDialogue_2: @ 810517C .global gUnknown_8105188 gUnknown_8105188: @ 8105188 -.string "{CENTER_ALIGN}{ARG_POKEMON_0} obtained\n" -.string "{CENTER_ALIGN}the {COLOR_1 GREEN_2}Ice Part{END_COLOR_TEXT_1}...{EXTRA_MSG}" -.string "{CENTER_ALIGN}that {COLOR_1 CYAN_3}Regice{END_COLOR_TEXT_1} was guarding!\0" +.string "{CENTER_ALIGN}{POKEMON_0} obtained\n" +.string "{CENTER_ALIGN}the {COLOR GREEN_I}Ice Part{RESET}...{EXTRA_MSG}" +.string "{CENTER_ALIGN}that {COLOR CYAN_M}Regice{RESET} was guarding!\0" .align 2, 0 .global gRegisteelPostFightDialogue_1 @@ -13532,8 +13532,8 @@ gRegisteelPostFightDialogue_1: @ 81051D0 .global gUnknown_81051DC gUnknown_81051DC: @ 81051DC .string "{CENTER_ALIGN}Something fell from\n" -.string "{CENTER_ALIGN}{COLOR_1 CYAN_3}Registeel{END_COLOR_TEXT_1}'s body.{EXTRA_MSG}" -.string "{CENTER_ALIGN}{COLOR_1 CYAN_3}Registeel{END_COLOR_TEXT_1} was apparently\n" +.string "{CENTER_ALIGN}{COLOR CYAN_M}Registeel{RESET}'s body.{EXTRA_MSG}" +.string "{CENTER_ALIGN}{COLOR CYAN_M}Registeel{RESET} was apparently\n" .string "{CENTER_ALIGN}guarding this item.\0" .align 2, 0 @@ -13545,16 +13545,16 @@ gRegisteelPostFightDialogue_2: @ 8105244 .global gUnknown_8105250 gUnknown_8105250: @ 8105250 -.string "{CENTER_ALIGN}{ARG_POKEMON_0} obtained\n" -.string "{CENTER_ALIGN}the {COLOR_1 GREEN_2}Steel Part{END_COLOR_TEXT_1}...{EXTRA_MSG}" -.string "{CENTER_ALIGN}that {COLOR_1 CYAN_3}Registeel{END_COLOR_TEXT_1} was guarding!\0" +.string "{CENTER_ALIGN}{POKEMON_0} obtained\n" +.string "{CENTER_ALIGN}the {COLOR GREEN_I}Steel Part{RESET}...{EXTRA_MSG}" +.string "{CENTER_ALIGN}that {COLOR CYAN_M}Registeel{RESET} was guarding!\0" .align 2, 0 .global gUnknown_81052A0 gUnknown_81052A0: @ 81052A0 .string "{CENTER_ALIGN}That means...{EXTRA_MSG}" -.string "{CENTER_ALIGN}By finding the {COLOR_1 GREEN_2}Rock Part{END_COLOR_TEXT_1},\n" -.string "{CENTER_ALIGN}{COLOR_1 GREEN_2}Ice Part{END_COLOR_TEXT_1}, and {COLOR_1 GREEN_2}Steel Part{END_COLOR_TEXT_1}...{EXTRA_MSG}" +.string "{CENTER_ALIGN}By finding the {COLOR GREEN_I}Rock Part{RESET},\n" +.string "{CENTER_ALIGN}{COLOR GREEN_I}Ice Part{RESET}, and {COLOR GREEN_I}Steel Part{RESET}...{EXTRA_MSG}" .string "{CENTER_ALIGN}All three parts are yours!\0" .align 2, 0 @@ -13578,7 +13578,7 @@ gUnknown_8105360: @ 8105360 gUnknown_8105364: @ 8105364 .string "{CENTER_ALIGN}The three parts\n" .string "{CENTER_ALIGN}fit together...{EXTRA_MSG}" -.string "{CENTER_ALIGN}and became a {COLOR_1 GREEN_2}Music Box{END_COLOR_TEXT_1}!\0" +.string "{CENTER_ALIGN}and became a {COLOR GREEN_I}Music Box{RESET}!\0" .align 2, 0 .global gUnknown_81053A8 @@ -13588,9 +13588,9 @@ gUnknown_81053A8: @ 81053A8 .global gUnknown_81053AC gUnknown_81053AC: @ 81053AC -.string "{CENTER_ALIGN}{ARG_POKEMON_0} obtained\n" -.string "{CENTER_ALIGN}the {COLOR_1 GREEN_2}Music Box{END_COLOR_TEXT_1}!{EXTRA_MSG}" -.string "{CENTER_ALIGN}The {COLOR_1 GREEN_2}Music Box{END_COLOR_TEXT_1} only needs\n" +.string "{CENTER_ALIGN}{POKEMON_0} obtained\n" +.string "{CENTER_ALIGN}the {COLOR GREEN_I}Music Box{RESET}!{EXTRA_MSG}" +.string "{CENTER_ALIGN}The {COLOR GREEN_I}Music Box{RESET} only needs\n" .string "{CENTER_ALIGN}to be in the Toolbox for it to\n" .string "{CENTER_ALIGN}attract a special something!\0" .align 2, 0 @@ -13635,7 +13635,7 @@ gJirachiPreFightDialogue_3: @ 81054E4 .global gUnknown_81054F0 gUnknown_81054F0: @ 81054F0 -.string " I'm {ARG_POKEMON_2}.\n" +.string " I'm {POKEMON_2}.\n" .string "Who are you?\0" .align 2, 0 @@ -13681,9 +13681,9 @@ gUnknown_81055F4: @ 81055F4 .global gUnknown_8105600 gUnknown_8105600: @ 8105600 -.string "{CENTER_ALIGN}{COLOR_1 CYAN_3}{ARG_POKEMON_2}{END_COLOR_TEXT_1} fell\n" +.string "{CENTER_ALIGN}{COLOR CYAN_M}{POKEMON_2}{RESET} fell\n" .string "{CENTER_ALIGN}back into a deep sleep...{EXTRA_MSG}" -.string "{CENTER_ALIGN}Apparently, {COLOR_1 CYAN_3}{ARG_POKEMON_2}{END_COLOR_TEXT_1}\n" +.string "{CENTER_ALIGN}Apparently, {COLOR CYAN_M}{POKEMON_2}{RESET}\n" .string "{CENTER_ALIGN}was fighting in its sleep...\0" .align 2, 0 @@ -13728,7 +13728,7 @@ gUnknown_81056DC: @ 81056DC gUnknown_81056E8: @ 81056E8 .string " I don't know why, but I'm\n" .string "wide awake!{EXTRA_MSG}" -.string " I'm {ARG_POKEMON_2}.{EXTRA_MSG}" +.string " I'm {POKEMON_2}.{EXTRA_MSG}" .string " When I awaken, I grant\n" .string "a wish.\n" .string "I have to.{EXTRA_MSG}" @@ -13739,7 +13739,7 @@ gUnknown_81056E8: @ 81056E8 .global gUnknown_8105778 gUnknown_8105778: @ 8105778 -.string "{COLOR_1 YELLOW_5}{ARG_POKEMON_2}{END_COLOR_TEXT_1}: What is your \n" +.string "{COLOR YELLOW_N}{POKEMON_2}{RESET}: What is your \n" .string "wish?\0" .align 2, 0 @@ -13847,7 +13847,7 @@ gUnknown_810593C: @ 810593C .global gUnknown_8105948 gUnknown_8105948: @ 8105948 -.string "{CENTER_ALIGN}{COLOR_1 CYAN_3}{ARG_POKEMON_2}{END_COLOR_TEXT_1} fell\n" +.string "{CENTER_ALIGN}{COLOR CYAN_M}{POKEMON_2}{RESET} fell\n" .string "{CENTER_ALIGN}back into a deep sleep...\0" .align 2, 0 @@ -13920,9 +13920,9 @@ gUnknown_8105B68: @ 8105B68 .global gUnknown_8105B74 gUnknown_8105B74: @ 8105B74 -.string "{CENTER_ALIGN}{COLOR_1 CYAN_3}{ARG_POKEMON_0}{END_COLOR_TEXT_1} obtained\n" +.string "{CENTER_ALIGN}{COLOR CYAN_M}{POKEMON_0}{RESET} obtained\n" .string "{CENTER_ALIGN}the Friend Area\n" -.string "{CENTER_ALIGN}{COLOR_1 UNK_COLOR_5}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}!\0" +.string "{CENTER_ALIGN}{COLOR GREEN_H}{MOVE_ITEM_0}{RESET}!\0" .align 2, 0 .global gUnknown_8105BA8 @@ -13951,7 +13951,7 @@ gUnknown_8105C00: @ 8105C00 .string "all over the dungeon that may make you \n" .string "stronger.{EXTRA_MSG}" .string " But don't use them now.{WAIT_PRESS}\n" -.string "When you leave the {COLOR_1 YELLOW_4}Wish Cave{END_COLOR_TEXT_1}, your\n" +.string "When you leave the {COLOR YELLOW_D}Wish Cave{RESET}, your\n" .string "powers go back to their original state.{EXTRA_MSG}" .string " So, you should only use\n" .string "those items after you take them back.{EXTRA_MSG}" @@ -14023,7 +14023,7 @@ gUnknown_8105E94: @ 8105E94 .string " Why...{WAIT_PRESS}\n" .string "Why have you come here...?{EXTRA_MSG}" .string " This is...{WAIT_PRESS}" -.string "the {COLOR_1 YELLOW_4}Silver Trench{END_COLOR_TEXT_1}.{WAIT_PRESS}\n" +.string "the {COLOR YELLOW_D}Silver Trench{RESET}.{WAIT_PRESS}\n" .string "This is my territory!\0" .align 2, 0 @@ -14035,7 +14035,7 @@ gLugiaPreFightDialogue_2: @ 8105EF8 .global gUnknown_8105F04 gUnknown_8105F04: @ 8105F04 -.string " My name is {ARG_POKEMON_2}!{WAIT_PRESS}\n" +.string " My name is {POKEMON_2}!{WAIT_PRESS}\n" .string "I am the guardian of the seas!\0" .align 2, 0 @@ -14154,7 +14154,7 @@ gKyogrePreFightDialogue_4: @ 8106140 .global gUnknown_810614C gUnknown_810614C: @ 810614C -.string " My duels against {ARG_POKEMON_3} left\n" +.string " My duels against {POKEMON_3} left\n" .string "us both exhausted...{WAIT_PRESS}\n" .string "I took to a long and deep sleep...{EXTRA_MSG}" .string " All the time, I waited.\n" @@ -14171,7 +14171,7 @@ gKyogrePreFightDialogue_5: @ 8106214 .global gUnknown_8106220 gUnknown_8106220: @ 8106220 -.string " I am {ARG_POKEMON_2}!{WAIT_PRESS}\n" +.string " I am {POKEMON_2}!{WAIT_PRESS}\n" .string "The lord of the sea!\0" .align 2, 0 @@ -14229,7 +14229,7 @@ gUnknown_81062F4: @ 81062F4 .string " There was a sudden explosion...{WAIT_PRESS}\n" .string "And I awakened to this...{EXTRA_MSG}" .string " What is this place?{EXTRA_MSG}" -.string " I am {ARG_POKEMON_2}.{WAIT_PRESS}\n" +.string " I am {POKEMON_2}.{WAIT_PRESS}\n" .string "I came from space.\0" .align 2, 0 @@ -14284,7 +14284,7 @@ gCelebiJoinDialogue_2: @ 8106400 .global gPurityForestCelebiIntroText gPurityForestCelebiIntroText: @ 810640C .string "{CENTER_ALIGN}It's...{WAIT_PRESS}\n" -.string "{CENTER_ALIGN}The Time Travel Pokémon {ARG_POKEMON_2}!\0" +.string "{CENTER_ALIGN}The Time Travel Pokémon {POKEMON_2}!\0" .align 2, 0 .global gCelebiJoinDialogue_3 @@ -14295,7 +14295,7 @@ gCelebiJoinDialogue_3: @ 810643C .global gPurityForestCelebiWantsToJoinText gPurityForestCelebiWantsToJoinText: @ 8106448 -.string "{CENTER_ALIGN}{ARG_POKEMON_2} wants to join the team.\0" +.string "{CENTER_ALIGN}{POKEMON_2} wants to join the team.\0" .align 2, 0 .global gCelebiJoinDialogue_4 @@ -14306,7 +14306,7 @@ gCelebiJoinDialogue_4: @ 8106468 .global gPurityForestCelebiJoinedText gPurityForestCelebiJoinedText: @ 8106474 -.string "{CENTER_ALIGN}{ARG_POKEMON_2} joined the team! \0" +.string "{CENTER_ALIGN}{POKEMON_2} joined the team! \0" .align 2, 0 .global gCelebiJoinDialogue_5 @@ -14317,7 +14317,7 @@ gCelebiJoinDialogue_5: @ 810648C .global gPurityForestCelebiVeryHappyText gPurityForestCelebiVeryHappyText: @ 8106498 -.string "{CENTER_ALIGN}{ARG_POKEMON_3} appears to\n" +.string "{CENTER_ALIGN}{POKEMON_3} appears to\n" .string "{CENTER_ALIGN}be very happy!\0" .align 2, 0 @@ -14341,7 +14341,7 @@ gCelebiJoinDialogue_7: @ 8106500 .global gPurityForestTurnedDownOfferText gPurityForestTurnedDownOfferText: @ 810650C -.string "{CENTER_ALIGN}{ARG_POKEMON_0} turned down\n" +.string "{CENTER_ALIGN}{POKEMON_0} turned down\n" .string "{CENTER_ALIGN}the offer to join.\0" .align 2, 0 @@ -14364,13 +14364,13 @@ gCelebiJoinDialogue_9: @ 8106560 .global gPurityForestCelebiLeftDejectedlyText gPurityForestCelebiLeftDejectedlyText: @ 810656C -.string "{CENTER_ALIGN}{ARG_POKEMON_2} left\n" +.string "{CENTER_ALIGN}{POKEMON_2} left\n" .string "{CENTER_ALIGN}dejectedly...\0" .align 2, 0 .global gPurityForestAllowCelebiToJoinText gPurityForestAllowCelebiToJoinText: @ 8106588 -.string "{CENTER_ALIGN}Allow {ARG_POKEMON_2}\n" +.string "{CENTER_ALIGN}Allow {POKEMON_2}\n" .string "{CENTER_ALIGN}to join the team?\0" .align 2, 0 diff --git a/data/data_8106A4C.s b/data/data_8106A4C.s index db7062101..4d46c6ff7 100644 --- a/data/data_8106A4C.s +++ b/data/data_8106A4C.s @@ -48,7 +48,7 @@ gUnknown_8106AEC: @ 8106AEC .global gUnknown_8106B50 gUnknown_8106B50: @ 8106B50 - .string "{COLOR_1}%c%s\0" + .string "{COLOR}%c%s\0" @@ -177,7 +177,7 @@ gUnknown_8106C90: @ 8106C90 .global gUnknown_8106C98 gUnknown_8106C98: @ 8106C98 - .string "{ARG_MOVE_ITEM_0}\0" + .string "{MOVE_ITEM_0}\0" .align 2,0 .global gUnknown_8106C9C @@ -201,7 +201,7 @@ gUnknown_8106CAC: @ 8106CAC .global gUnknown_8106CC4 gUnknown_8106CC4: @ 8106CC4 - .string "{ARG_MOVE_ITEM_0}\0" + .string "{MOVE_ITEM_0}\0" .align 2,0 .global gUnknown_8106CC8 @@ -210,7 +210,7 @@ gUnknown_8106CC8: @ 8106CC8 .global gUnknown_8106CCC gUnknown_8106CCC: @ 8106CCC - .string "{ARG_POKEMON_0}\0" + .string "{POKEMON_0}\0" @ ??? .align 2,0 @@ -255,7 +255,7 @@ gUnknown_8106D68: @ 8106D68 .global gUnknown_8106D8C gUnknown_8106D8C: @ 8106D8C - .string "{COLOR_2}%d{ARG_POKEMON_0}\0" + .string "{color}%d{POKEMON_0}\0" @ ??? .align 2,0 @@ -279,7 +279,7 @@ gUnknown_8106DC8: @ 8106DC8 .global gUnknown_8106E28 gUnknown_8106E28: @ 8106E28 - .string "{ARG_POKEMON_0}\0" + .string "{POKEMON_0}\0" .align 2,0 .global gUnknown_8106E2C @@ -292,12 +292,12 @@ gUnknown_8106E30: @ 8106E30 .global gUnknown_8106E34 gUnknown_8106E34: @ 8106E34 - .string "{ARG_MOVE_ITEM_0}{COLOR_2 CYAN}$v02:{ARG_POKEMON_0}{END_COLOR_TEXT_2}\0" + .string "{MOVE_ITEM_0}{color CYAN}$v02:{POKEMON_0}{reset}\0" .align 2,0 .global gUnknown_8106E48 gUnknown_8106E48: @ 8106E48 - .string "{ARG_MOVE_ITEM_0}{COLOR_2 YELLOW}$v02:{ARG_POKEMON_0}{END_COLOR_TEXT_2}\0" + .string "{MOVE_ITEM_0}{color YELLOW}$v02:{POKEMON_0}{reset}\0" .align 2,0 .global gUnknown_8106E5C @@ -309,7 +309,7 @@ gUnknown_8106E5C: @ 8106E5C .global gUnknown_8106E6C gUnknown_8106E6C: @ 8106E6C .string "Say bye to\n" - .string "{ARG_VALUE_0} more\0" + .string "{VALUE_0} more\0" .align 2,0 .global gUnknown_8106E80 diff --git a/data/data_8106F7C.s b/data/data_8106F7C.s index d6800f831..16f151564 100644 --- a/data/data_8106F7C.s +++ b/data/data_8106F7C.s @@ -10,4 +10,4 @@ gUnknown_8106F7C: @ 8106F7C .global gUnknown_8106FA4 gUnknown_8106FA4: @ 8106FA4 - .string "{COLOR_2}%c%s{END_COLOR_TEXT_2}\0" + .string "{color}%c%s{reset}\0" diff --git a/data/data_8107010.s b/data/data_8107010.s index 827ee4a6b..71b51f094 100644 --- a/data/data_8107010.s +++ b/data/data_8107010.s @@ -258,12 +258,12 @@ gUnknown_81075F4: @ 81075F4 .global gUnknown_8107600 gUnknown_8107600: @ 8107600 -.string "{COLOR_2 YELLOW_2}%s{END_COLOR_TEXT_2}" +.string "{color YELLOW_RAW}%s{reset}" .align 2,0 .global gUnknown_8107608 gUnknown_8107608: @ 8107608 -.string "{COLOR_2 CYAN_2}%s{END_COLOR_TEXT_2}" +.string "{color CYAN_RAW}%s{reset}" .align 2,0 .global gUnownLetters @@ -283,7 +283,7 @@ gUnknown_8107638: @ 8107638 .global gUnknown_810763C gUnknown_810763C: @ 810763C -.string "{COLOR_2}%c%s{END_COLOR_TEXT_2}\0" +.string "{color}%c%s{reset}\0" .global gUnknown_8107645 gUnknown_8107645: @ 8107645 @@ -378,7 +378,7 @@ gUnknown_8107770: @ 8107770 .global gUnknown_8107784 gUnknown_8107784: @ 8107784 -.string "{ARG_MOVE_ITEM_1}\0" +.string "{MOVE_ITEM_1}\0" .align 2,0 .global gUnknown_8107788 @@ -391,7 +391,7 @@ gUnknown_810778C: @ 810778C .global gUnknown_8107790 gUnknown_8107790: @ 8107790 -.string "{ARG_MOVE_ITEM_0}{ARG_MOVE_ITEM_1}\0" +.string "{MOVE_ITEM_0}{MOVE_ITEM_1}\0" .align 2,0 .global gUnknown_8107798 @@ -1222,17 +1222,17 @@ gUnknown_8108EC0: @ 8108EC0 .global gUnknown_8108F10 gUnknown_8108F10: @ 8108F10 -.string "{COLOR_2 YELLOW_4}%s{END_COLOR_TEXT_2}\0" +.string "{color YELLOW_D}%s{reset}\0" .align 2,0 .global gUnknown_8108F18 gUnknown_8108F18: @ 8108F18 -.string "{COLOR_2 YELLOW_4}%s{END_COLOR_TEXT_2} {COLOR_2 CYAN}%d{END_COLOR_TEXT_2}F\0" +.string "{color YELLOW_D}%s{reset} {color CYAN}%d{reset}F\0" .align 2,0 .global gUnknown_8108F2C gUnknown_8108F2C: @ 8108F2C -.string "{COLOR_2 YELLOW_4}%s{END_COLOR_TEXT_2} B{COLOR_2 CYAN}%d{END_COLOR_TEXT_2}F\0" +.string "{color YELLOW_D}%s{reset} B{color CYAN}%d{reset}F\0" .align 2,0 .global gUnknown_8108F40 @@ -1423,13 +1423,13 @@ gUnknown_810978C: @ 810978C .global gUnknown_8109794 gUnknown_8109794: @ 8109794 @ replacing .incbin "baserom.gba", 0x00109794, 0x10 -.string "%s{UNK_MACRO_3D}%c{COLOR_1 UNK_COLOR_4}%s{END_COLOR_TEXT_1}\0" +.string "%s{UNK_MACRO_3D}%c{COLOR GREEN_RAW}%s{RESET}\0" .align 2, 0 .global gUnknown_81097A4 gUnknown_81097A4: @ 81097A4 @ replacing .incbin "baserom.gba", 0x001097a4, 0xc -.string "%s{COLOR_1 UNK_COLOR_4}%s{END_COLOR_TEXT_1}\0" +.string "%s{COLOR GREEN_RAW}%s{RESET}\0" .align 2, 0 .global gPowersOfTen @@ -1546,12 +1546,12 @@ gUnknown_8109888: @ 8109888 .global sUnknown_81098A4 sUnknown_81098A4: @ 81098A4 -.string "{COLOR_2 UNK_COLOR_4}%s{END_COLOR_TEXT_2}\0" +.string "{color GREEN_RAW}%s{reset}\0" .align 2,0 .global sUnknown_81098AC sUnknown_81098AC: @ 81098AC -.string "%s{UNK_MACRO_3D}%c{COLOR_1 UNK_COLOR_4}%s{END_COLOR_TEXT_1}\0" +.string "%s{UNK_MACRO_3D}%c{COLOR GREEN_RAW}%s{RESET}\0" .align 2,0 @ END friend_area.c @ moves.c @@ -1574,12 +1574,12 @@ gUnknown_81098DC: @ 81098DC .global gUnknown_81098E0 gUnknown_81098E0: @ 81098E0 -.string "{COLOR_2}%c%s%s{END_COLOR_TEXT_2}\0" +.string "{color}%c%s%s{reset}\0" .align 2,0 .global gUnknown_81098EC gUnknown_81098EC: @ 81098EC -.string "{COLOR_2}%c#:%s%s%s#;%c%2d/%2d{END_COLOR_TEXT_2}\0" +.string "{color}%c#:%s%s%s#;%c%2d/%2d{reset}\0" .align 2,0 .global gUnknown_8109908 @@ -1592,7 +1592,7 @@ gUnknown_810990C: @ 810990C .global gUnknown_8109910 gUnknown_8109910: @ 8109910 -.string "{COLOR_2}%c%s%s%s{UNK_MACRO_3D}%c%2d/%2d{END_COLOR_TEXT_2}\0" +.string "{color}%c%s%s%s{UNK_MACRO_3D}%c%2d/%2d{reset}\0" .align 2,0 .global gUnknown_8109928 @@ -1610,7 +1610,7 @@ gUnknown_810992C: @ 810992C .global gUnknown_8109930 gUnknown_8109930: @ 8109930 -.string "{ARG_POKEMON_0}\0" +.string "{POKEMON_0}\0" .align 2,0 @ ??? .string "pksdir0\0" diff --git a/data/data_810AE24.s b/data/data_810AE24.s index 29bf286a1..ee12c0bb5 100644 --- a/data/data_810AE24.s +++ b/data/data_810AE24.s @@ -250,32 +250,32 @@ AllFriendAreas_810B2A4: @ 810B2A4 .global NumFloorsExplored_810B2C4 NumFloorsExplored_810B2C4: @ 810B2C4 -.string "{ARG_VALUE_0} floors were explored.\0" +.string "{VALUE_0} floors were explored.\0" .align 2,0 .global NumThievingAttempts_810B2E0 NumThievingAttempts_810B2E0: @ 810B2E0 -.string "{ARG_VALUE_0} thieving attempts succeeded.\0" +.string "{VALUE_0} thieving attempts succeeded.\0" .align 2,0 .global NumPokemonJoined_810B304 NumPokemonJoined_810B304: @ 810B304 -.string "{ARG_VALUE_0} Pokémon joined the team.\0" +.string "{VALUE_0} Pokémon joined the team.\0" .align 2,0 .global NumPokemonEvolved_810B324 NumPokemonEvolved_810B324: @ 810B324 -.string "{ARG_VALUE_0} Pokémon evolved.\0" +.string "{VALUE_0} Pokémon evolved.\0" .align 2,0 .global NumFriendRescues_810B33C NumFriendRescues_810B33C: @ 810B33C -.string "{ARG_VALUE_0} Friend Rescues were successful.\0" +.string "{VALUE_0} Friend Rescues were successful.\0" .align 2,0 .global NumMoves_810B360 NumMoves_810B360: @ 810B360 -.string "{ARG_VALUE_0} moves were learned.\0" +.string "{VALUE_0} moves were learned.\0" .align 2,0 .global SpottedMunchlax_810B378 @@ -905,387 +905,387 @@ AbilityDescriptions: @ 810B988 .global AbilityDescriptionShieldDust AbilityDescriptionShieldDust: -.string "{COLOR_2 RED}Shield Dust{END_COLOR_TEXT_2}: Blocks the added\neffects of moves.\0" +.string "{color RED}Shield Dust{reset}: Blocks the added\neffects of moves.\0" .align 2,0 .global AbilityDescriptionPurePower AbilityDescriptionPurePower: -.string "{COLOR_2 RED}Pure Power{END_COLOR_TEXT_2}: Occasionally\nboosts Attack.\0" +.string "{color RED}Pure Power{reset}: Occasionally\nboosts Attack.\0" .align 2,0 .global AbilityDescriptionChlorophyll AbilityDescriptionChlorophyll: -.string "{COLOR_2 RED}Chlorophyll{END_COLOR_TEXT_2}: Boosts attack\nfrequency if the weather is\nsunny.\0" +.string "{color RED}Chlorophyll{reset}: Boosts attack\nfrequency if the weather is\nsunny.\0" .align 2,0 .global AbilityDescriptionVitalSpirit AbilityDescriptionVitalSpirit: -.string "{COLOR_2 RED}Vital Spirit{END_COLOR_TEXT_2}: Prevents sleep.\0" +.string "{color RED}Vital Spirit{reset}: Prevents sleep.\0" .align 2,0 .global AbilityDescriptionFlashFire AbilityDescriptionFlashFire: -.string "{COLOR_2 RED}Flash Fire{END_COLOR_TEXT_2}: Zeroes damage\nfrom Fire-type move hits,\nand boosts own Fire moves.\0" +.string "{color RED}Flash Fire{reset}: Zeroes damage\nfrom Fire-type move hits,\nand boosts own Fire moves.\0" .align 2,0 .global AbilityDescriptionPickup AbilityDescriptionPickup: -.string "{COLOR_2 RED}Pickup{END_COLOR_TEXT_2}: Finds items if\nthe Pokémon is not holding\nanything.\0" +.string "{color RED}Pickup{reset}: Finds items if\nthe Pokémon is not holding\nanything.\0" .align 2,0 .global AbilityDescriptionBlaze AbilityDescriptionBlaze: -.string "{COLOR_2 RED}Blaze{END_COLOR_TEXT_2}: Boosts the power\nof Fire-type moves when\nHP is low.\0" +.string "{color RED}Blaze{reset}: Boosts the power\nof Fire-type moves when\nHP is low.\0" .align 2,0 .global AbilityDescriptionImmunity AbilityDescriptionImmunity: -.string "{COLOR_2 RED}Immunity{END_COLOR_TEXT_2}: Prevents\nbecoming poisoned or badly\npoisoned.\0" +.string "{color RED}Immunity{reset}: Prevents\nbecoming poisoned or badly\npoisoned.\0" .align 2,0 .global AbilityDescriptionCuteCharm AbilityDescriptionCuteCharm: -.string "{COLOR_2 RED}Cute Charm{END_COLOR_TEXT_2}: Causes\nattackers to become\ninfatuated.\0" +.string "{color RED}Cute Charm{reset}: Causes\nattackers to become\ninfatuated.\0" .align 2,0 .global AbilityDescriptionSwarm AbilityDescriptionSwarm: -.string "{COLOR_2 RED}Swarm{END_COLOR_TEXT_2}: Boosts the power\nof Bug-type moves when\nHP is low.\0" +.string "{color RED}Swarm{reset}: Boosts the power\nof Bug-type moves when\nHP is low.\0" .align 2,0 .global AbilityDescriptionWaterVeil AbilityDescriptionWaterVeil: -.string "{COLOR_2 RED}Water Veil{END_COLOR_TEXT_2}: Prevents burns.\0" +.string "{color RED}Water Veil{reset}: Prevents burns.\0" .align 2,0 .global AbilityDescriptionMagmaArmor AbilityDescriptionMagmaArmor: -.string "{COLOR_2 RED}Magma Armor{END_COLOR_TEXT_2}: Prevents\nfreezing.\0" +.string "{color RED}Magma Armor{reset}: Prevents\nfreezing.\0" .align 2,0 .global AbilityDescriptionOwnTempo AbilityDescriptionOwnTempo: -.string "{COLOR_2 RED}Own Tempo{END_COLOR_TEXT_2}: Prevents\nconfusion.\0" +.string "{color RED}Own Tempo{reset}: Prevents\nconfusion.\0" .align 2,0 .global AbilityDescriptionMinus AbilityDescriptionMinus: -.string "{COLOR_2 RED}Minus{END_COLOR_TEXT_2}: Boosts Special Attack\nif there is a Pokémon with\nthe Plus ability.\0" +.string "{color RED}Minus{reset}: Boosts Special Attack\nif there is a Pokémon with\nthe Plus ability.\0" .align 2,0 .global AbilityDescriptionFlameBody AbilityDescriptionFlameBody: -.string "{COLOR_2 RED}Flame Body{END_COLOR_TEXT_2}: Afflicts\nattackers with burns.\0" +.string "{color RED}Flame Body{reset}: Afflicts\nattackers with burns.\0" .align 2,0 .global AbilityDescriptionEffectSpore AbilityDescriptionEffectSpore: -.string "{COLOR_2 RED}Effect Spore{END_COLOR_TEXT_2}: Attackers are\npoisoned, paralyzed, or put\nto sleep.\0" +.string "{color RED}Effect Spore{reset}: Attackers are\npoisoned, paralyzed, or put\nto sleep.\0" .align 2,0 .global AbilityDescriptionSoundproof AbilityDescriptionSoundproof: -.string "{COLOR_2 RED}Soundproof{END_COLOR_TEXT_2}: Blocks the\neffects of all moves that\nuse sound.\0" +.string "{color RED}Soundproof{reset}: Blocks the\neffects of all moves that\nuse sound.\0" .align 2,0 .global AbilityDescriptionColorChange AbilityDescriptionColorChange: -.string "{COLOR_2 RED}Color Change{END_COLOR_TEXT_2}: Changes the\nPokémon's type to that of\nthe move that hit it last.\0" +.string "{color RED}Color Change{reset}: Changes the\nPokémon's type to that of\nthe move that hit it last.\0" .align 2,0 .global AbilityDescriptionLiquidOoze AbilityDescriptionLiquidOoze: -.string "{COLOR_2 RED}Liquid Ooze{END_COLOR_TEXT_2}: Inflicts damage\non the foe if hit by a move\nthat drains HP.\0" +.string "{color RED}Liquid Ooze{reset}: Inflicts damage\non the foe if hit by a move\nthat drains HP.\0" .align 2,0 .global AbilityDescriptionPressure AbilityDescriptionPressure: -.string "{COLOR_2 RED}Pressure{END_COLOR_TEXT_2}: If hit by a foe's\nmove, the foe uses more PP\nthan usual.\0" +.string "{color RED}Pressure{reset}: If hit by a foe's\nmove, the foe uses more PP\nthan usual.\0" .align 2,0 .global AbilityDescriptionPlus AbilityDescriptionPlus: -.string "{COLOR_2 RED}Plus{END_COLOR_TEXT_2}: Boosts Special Attack\nif there is a Pokémon with\nthe Minus ability.\0" +.string "{color RED}Plus{reset}: Boosts Special Attack\nif there is a Pokémon with\nthe Minus ability.\0" .align 2,0 .global AbilityDescriptionLevitate AbilityDescriptionLevitate: -.string "{COLOR_2 RED}Levitate{END_COLOR_TEXT_2}: Blocks all\nGround-type moves.\0" +.string "{color RED}Levitate{reset}: Blocks all\nGround-type moves.\0" .align 2,0 .global AbilityDescriptionInsomnia AbilityDescriptionInsomnia: -.string "{COLOR_2 RED}Insomnia{END_COLOR_TEXT_2}: Prevents sleep.\0" +.string "{color RED}Insomnia{reset}: Prevents sleep.\0" .align 2,0 .global AbilityDescriptionWonderGuard AbilityDescriptionWonderGuard: -.string "{COLOR_2 RED}Wonder Guard{END_COLOR_TEXT_2}: Only\nsuper-effective moves can\ninflict damage.\0" +.string "{color RED}Wonder Guard{reset}: Only\nsuper-effective moves can\ninflict damage.\0" .align 2,0 .global AbilityDescriptionMarvelScale AbilityDescriptionMarvelScale: -.string "{COLOR_2 RED}Marvel Scale{END_COLOR_TEXT_2}: Boosts\nDefense if there is a status\nproblem.\0" +.string "{color RED}Marvel Scale{reset}: Boosts\nDefense if there is a status\nproblem.\0" .align 2,0 .global AbilityDescriptionCompoundeyes AbilityDescriptionCompoundeyes: -.string "{COLOR_2 RED}Compoundeyes{END_COLOR_TEXT_2}: Boosts\nthe Accuracy of moves.\0" +.string "{color RED}Compoundeyes{reset}: Boosts\nthe Accuracy of moves.\0" .align 2,0 .global AbilityDescriptionLightningrod AbilityDescriptionLightningrod: -.string "{COLOR_2 RED}Lightningrod{END_COLOR_TEXT_2}: Attracts\nElectric-type moves.\0" +.string "{color RED}Lightningrod{reset}: Attracts\nElectric-type moves.\0" .align 2,0 .global AbilityDescriptionDrought AbilityDescriptionDrought: -.string "{COLOR_2 RED}Drought{END_COLOR_TEXT_2}: Changes the\nweather to sunny.\0" +.string "{color RED}Drought{reset}: Changes the\nweather to sunny.\0" .align 2,0 .global AbilityDescriptionHustle AbilityDescriptionHustle: -.string "{COLOR_2 RED}Hustle{END_COLOR_TEXT_2}: Boosts Attack but\nlowers Accuracy.\0" +.string "{color RED}Hustle{reset}: Boosts Attack but\nlowers Accuracy.\0" .align 2,0 .global AbilityDescriptionEarlyBird AbilityDescriptionEarlyBird: -.string "{COLOR_2 RED}Early Bird{END_COLOR_TEXT_2}: Awakens quickly\nfrom sleep.\0" +.string "{color RED}Early Bird{reset}: Awakens quickly\nfrom sleep.\0" .align 2,0 .global AbilityDescriptionIlluminate AbilityDescriptionIlluminate: -.string "{COLOR_2 RED}Illuminate{END_COLOR_TEXT_2}: If damaged,\na wild Pokémon appears \non the dungeon floor.\0" +.string "{color RED}Illuminate{reset}: If damaged,\na wild Pokémon appears \non the dungeon floor.\0" .align 2,0 .global AbilityDescriptionCloudNine AbilityDescriptionCloudNine: -.string "{COLOR_2 RED}Cloud Nine{END_COLOR_TEXT_2}: Changes the\nweather to clear.\0" +.string "{color RED}Cloud Nine{reset}: Changes the\nweather to clear.\0" .align 2,0 .global AbilityDescriptionStickyHold AbilityDescriptionStickyHold: -.string "{COLOR_2 RED}Sticky Hold{END_COLOR_TEXT_2}: Prevents the\nPokémon's hold item from\nbeing taken.\0" +.string "{color RED}Sticky Hold{reset}: Prevents the\nPokémon's hold item from\nbeing taken.\0" .align 2,0 .global AbilityDescriptionRunAway AbilityDescriptionRunAway: -.string "{COLOR_2 RED}Run Away{END_COLOR_TEXT_2}: Becomes terrified\nand flees when HP gets low.\nLeaders will resist this urge.\0" +.string "{color RED}Run Away{reset}: Becomes terrified\nand flees when HP gets low.\nLeaders will resist this urge.\0" .align 2,0 .global AbilityDescriptionTruant AbilityDescriptionTruant: -.string "{COLOR_2 RED}Truant{END_COLOR_TEXT_2}: Prevents action in\nyour next turn after using\na move or a Wonder Orb.\0" +.string "{color RED}Truant{reset}: Prevents action in\nyour next turn after using\na move or a Wonder Orb.\0" .align 2,0 .global AbilityDescriptionOblivious AbilityDescriptionOblivious: -.string "{COLOR_2 RED}Oblivious{END_COLOR_TEXT_2}: Prevents\ninfatuation.\0" +.string "{color RED}Oblivious{reset}: Prevents\ninfatuation.\0" .align 2,0 .global AbilityDescriptionTrace AbilityDescriptionTrace: -.string "{COLOR_2 RED}Trace{END_COLOR_TEXT_2}: Changes ability to\nthat of the foe attacking\nor using a move.\0" +.string "{color RED}Trace{reset}: Changes ability to\nthat of the foe attacking\nor using a move.\0" .align 2,0 .global AbilityDescriptionPoisonPoint AbilityDescriptionPoisonPoint: -.string "{COLOR_2 RED}Poison Point{END_COLOR_TEXT_2}: Poisons\nattackers.\0" +.string "{color RED}Poison Point{reset}: Poisons\nattackers.\0" .align 2,0 .global AbilityDescriptionSereneGrace AbilityDescriptionSereneGrace: -.string "{COLOR_2 RED}Serene Grace{END_COLOR_TEXT_2}: Improves the\nchances of triggering the\nadded effects of moves.\0" +.string "{color RED}Serene Grace{reset}: Improves the\nchances of triggering the\nadded effects of moves.\0" .align 2,0 .global AbilityDescriptionForecast AbilityDescriptionForecast: -.string "{COLOR_2 RED}Forecast{END_COLOR_TEXT_2}: The Pokémon's\ntype changes with the\nweather.\0" +.string "{color RED}Forecast{reset}: The Pokémon's\ntype changes with the\nweather.\0" .align 2,0 .global AbilityDescriptionWaterAbsorb AbilityDescriptionWaterAbsorb: -.string "{COLOR_2 RED}Water Absorb{END_COLOR_TEXT_2}: Restores HP\nif hit by a Water-type move.\0" +.string "{color RED}Water Absorb{reset}: Restores HP\nif hit by a Water-type move.\0" .align 2,0 .global AbilityDescriptionVoltAbsorb AbilityDescriptionVoltAbsorb: -.string "{COLOR_2 RED}Volt Absorb{END_COLOR_TEXT_2}: Restores HP\nif damaged by an Electric-\ntype move.\0" +.string "{color RED}Volt Absorb{reset}: Restores HP\nif damaged by an Electric-\ntype move.\0" .align 2,0 .global AbilityDescriptionHugePower AbilityDescriptionHugePower: -.string "{COLOR_2 RED}Huge Power{END_COLOR_TEXT_2}: Occasionally\nboosts Attack.\0" +.string "{color RED}Huge Power{reset}: Occasionally\nboosts Attack.\0" .align 2,0 .global AbilityDescriptionShedSkin AbilityDescriptionShedSkin: -.string "{COLOR_2 RED}Shed Skin{END_COLOR_TEXT_2}: Recovers easily\nfrom status problems.\0" +.string "{color RED}Shed Skin{reset}: Recovers easily\nfrom status problems.\0" .align 2,0 .global AbilityDescriptionStatic AbilityDescriptionStatic: -.string "{COLOR_2 RED}Static{END_COLOR_TEXT_2}: Paralyzes attackers.\0" +.string "{color RED}Static{reset}: Paralyzes attackers.\0" .align 2,0 .global AbilityDescriptionInnerFocus AbilityDescriptionInnerFocus: -.string "{COLOR_2 RED}Inner Focus{END_COLOR_TEXT_2}: Prevents\ncringing.\0" +.string "{color RED}Inner Focus{reset}: Prevents\ncringing.\0" .align 2,0 .global AbilityDescriptionKeenEye AbilityDescriptionKeenEye: -.string "{COLOR_2 RED}Keen Eye{END_COLOR_TEXT_2}: Prevents Accuracy\nfrom going down.\0" +.string "{color RED}Keen Eye{reset}: Prevents Accuracy\nfrom going down.\0" .align 2,0 .global AbilityDescriptionSandVeil AbilityDescriptionSandVeil: -.string "{COLOR_2 RED}Sand Veil{END_COLOR_TEXT_2}: Boosts Evasion\nif there is a sandstorm.\0" +.string "{color RED}Sand Veil{reset}: Boosts Evasion\nif there is a sandstorm.\0" .align 2,0 .global AbilityDescriptionSandStream AbilityDescriptionSandStream: -.string "{COLOR_2 RED}Sand Stream{END_COLOR_TEXT_2}: Changes the\nweather to a sandstorm.\0" +.string "{color RED}Sand Stream{reset}: Changes the\nweather to a sandstorm.\0" .align 2,0 .global AbilityDescriptionSwiftSwim AbilityDescriptionSwiftSwim: -.string "{COLOR_2 RED}Swift Swim{END_COLOR_TEXT_2}: Boosts attack\nfrequency if it is raining.\0" +.string "{color RED}Swift Swim{reset}: Boosts attack\nfrequency if it is raining.\0" .align 2,0 .global AbilityDescriptionOvergrow AbilityDescriptionOvergrow: -.string "{COLOR_2 RED}Overgrow{END_COLOR_TEXT_2}: Boosts the power\nof Grass-type moves when\nHP is low.\0" +.string "{color RED}Overgrow{reset}: Boosts the power\nof Grass-type moves when\nHP is low.\0" .align 2,0 .global AbilityDescriptionSynchronize AbilityDescriptionSynchronize: -.string "{COLOR_2 RED}Synchronize{END_COLOR_TEXT_2}: Shares\nstatus problems with any\nPokémon in reach.\0" +.string "{color RED}Synchronize{reset}: Shares\nstatus problems with any\nPokémon in reach.\0" .align 2,0 .global AbilityDescriptionWhiteSmoke AbilityDescriptionWhiteSmoke: -.string "{COLOR_2 RED}White Smoke{END_COLOR_TEXT_2}: Prevents\nreduction of stats.\0" +.string "{color RED}White Smoke{reset}: Prevents\nreduction of stats.\0" .align 2,0 .global AbilityDescriptionMagnetPull AbilityDescriptionMagnetPull: -.string "{COLOR_2 RED}Magnet Pull{END_COLOR_TEXT_2}: Immobilizes\nSteel-type attackers.\0" +.string "{color RED}Magnet Pull{reset}: Immobilizes\nSteel-type attackers.\0" .align 2,0 .global AbilityDescriptionLimber AbilityDescriptionLimber: -.string "{COLOR_2 RED}Limber{END_COLOR_TEXT_2}: Prevents paralysis.\0" +.string "{color RED}Limber{reset}: Prevents paralysis.\0" .align 2,0 .global AbilityDescriptionDamp AbilityDescriptionDamp: -.string "{COLOR_2 RED}Damp{END_COLOR_TEXT_2}: Prevents any\nexplosions on the dungeon\nfloor.\0" +.string "{color RED}Damp{reset}: Prevents any\nexplosions on the dungeon\nfloor.\0" .align 2,0 .global AbilityDescriptionNaturalCure AbilityDescriptionNaturalCure: -.string "{COLOR_2 RED}Natural Cure{END_COLOR_TEXT_2}: Recovers\nquickly from status\nproblems.\0" +.string "{color RED}Natural Cure{reset}: Recovers\nquickly from status\nproblems.\0" .align 2,0 .global AbilityDescriptionShellArmor AbilityDescriptionShellArmor: -.string "{COLOR_2 RED}Shell Armor{END_COLOR_TEXT_2}: Blocks\ncritical hits.\0" +.string "{color RED}Shell Armor{reset}: Blocks\ncritical hits.\0" .align 2,0 .global AbilityDescriptionRoughSkin AbilityDescriptionRoughSkin: -.string "{COLOR_2 RED}Rough Skin{END_COLOR_TEXT_2}: Inflicts damage\non attackers.\0" +.string "{color RED}Rough Skin{reset}: Inflicts damage\non attackers.\0" .align 2,0 .global AbilityDescriptionGuts AbilityDescriptionGuts: -.string "{COLOR_2 RED}Guts{END_COLOR_TEXT_2}: Boosts Attack if the\nPokémon has any status\nproblems.\0" +.string "{color RED}Guts{reset}: Boosts Attack if the\nPokémon has any status\nproblems.\0" .align 2,0 .global AbilityDescriptionTorrent AbilityDescriptionTorrent: -.string "{COLOR_2 RED}Torrent{END_COLOR_TEXT_2}: Boosts the power\nof Water-type moves when\nHP is low.\0" +.string "{color RED}Torrent{reset}: Boosts the power\nof Water-type moves when\nHP is low.\0" .align 2,0 .global AbilityDescriptionClearBody AbilityDescriptionClearBody: -.string "{COLOR_2 RED}Clear Body{END_COLOR_TEXT_2}: Prevents\nreduction of stats.\0" +.string "{color RED}Clear Body{reset}: Prevents\nreduction of stats.\0" .align 2,0 .global AbilityDescriptionSuctionCups AbilityDescriptionSuctionCups: -.string "{COLOR_2 RED}Suction Cups{END_COLOR_TEXT_2}: Prevents\nforced movement.\0" +.string "{color RED}Suction Cups{reset}: Prevents\nforced movement.\0" .align 2,0 .global AbilityDescriptionSturdy AbilityDescriptionSturdy: -.string "{COLOR_2 RED}Sturdy{END_COLOR_TEXT_2}: Blocks\none-hit KO moves.\0" +.string "{color RED}Sturdy{reset}: Blocks\none-hit KO moves.\0" .align 2,0 .global AbilityDescriptionBattleArmor AbilityDescriptionBattleArmor: -.string "{COLOR_2 RED}Battle Armor{END_COLOR_TEXT_2}: Blocks\ncritical hits.\0" +.string "{color RED}Battle Armor{reset}: Blocks\ncritical hits.\0" .align 2,0 .global AbilityDescriptionSpeedBoost AbilityDescriptionSpeedBoost: -.string "{COLOR_2 RED}Speed Boost{END_COLOR_TEXT_2}: The Pokémon's\nMovement Speed accelerates.\0" +.string "{color RED}Speed Boost{reset}: The Pokémon's\nMovement Speed accelerates.\0" .align 2,0 .global AbilityDescriptionShadowTag AbilityDescriptionShadowTag: -.string "{COLOR_2 RED}Shadow Tag{END_COLOR_TEXT_2}: Immobilizes\nattackers.\0" +.string "{color RED}Shadow Tag{reset}: Immobilizes\nattackers.\0" .align 2,0 .global AbilityDescriptionHyperCutter AbilityDescriptionHyperCutter: -.string "{COLOR_2 RED}Hyper Cutter{END_COLOR_TEXT_2}: Prevents\nAttack from being lowered.\0" +.string "{color RED}Hyper Cutter{reset}: Prevents\nAttack from being lowered.\0" .align 2,0 .global AbilityDescriptionAirLock AbilityDescriptionAirLock: -.string "{COLOR_2 RED}Air Lock{END_COLOR_TEXT_2}: Changes the\nweather to clear.\0" +.string "{color RED}Air Lock{reset}: Changes the\nweather to clear.\0" .align 2,0 .global AbilityDescriptionRockHead AbilityDescriptionRockHead: -.string "{COLOR_2 RED}Rock Head{END_COLOR_TEXT_2}: Prevents damage\nfrom the recoil of moves\nsuch as Take Down.\0" +.string "{color RED}Rock Head{reset}: Prevents damage\nfrom the recoil of moves\nsuch as Take Down.\0" .align 2,0 .global AbilityDescriptionIntimidate AbilityDescriptionIntimidate: -.string "{COLOR_2 RED}Intimidate{END_COLOR_TEXT_2}: Lowers the\nPhysical Attack power of\nattackers.\0" +.string "{color RED}Intimidate{reset}: Lowers the\nPhysical Attack power of\nattackers.\0" .align 2,0 .global AbilityDescriptionArenaTrap AbilityDescriptionArenaTrap: -.string "{COLOR_2 RED}Arena Trap{END_COLOR_TEXT_2}: Immobilizes any\nattacker except Flying-type\nfoes and those with Levitate.\0" +.string "{color RED}Arena Trap{reset}: Immobilizes any\nattacker except Flying-type\nfoes and those with Levitate.\0" .align 2,0 .global AbilityDescriptionDrizzle AbilityDescriptionDrizzle: -.string "{COLOR_2 RED}Drizzle{END_COLOR_TEXT_2}: Changes the\nweather to rainy.\0" +.string "{color RED}Drizzle{reset}: Changes the\nweather to rainy.\0" .align 2,0 .global AbilityDescriptionRainDish AbilityDescriptionRainDish: -.string "{COLOR_2 RED}Rain Dish{END_COLOR_TEXT_2}: Improves HP gain\nif it is raining.\0" +.string "{color RED}Rain Dish{reset}: Improves HP gain\nif it is raining.\0" .align 2,0 .global AbilityDescriptionThickFat AbilityDescriptionThickFat: -.string "{COLOR_2 RED}Thick Fat{END_COLOR_TEXT_2}: Resistant to\nFire- and Ice-type moves.\0" +.string "{color RED}Thick Fat{reset}: Resistant to\nFire- and Ice-type moves.\0" .align 2,0 .global AbilityDescriptionStench AbilityDescriptionStench: -.string "{COLOR_2 RED}Stench{END_COLOR_TEXT_2}: May terrify an\nattacking foe.\0" +.string "{color RED}Stench{reset}: May terrify an\nattacking foe.\0" .align 2,0 .global AbilityDescriptionNone AbilityDescriptionNone: -.string "{COLOR_2 RED}-------\0" +.string "{color RED}-------\0" .align 2,0 .global gRangeNames @@ -1557,7 +1557,7 @@ MoveRangeThreeTilesDiagonally: .global RangeText RangeText: -.string "Range{UNK_MACRO_3D M3D_64}{ARG_POKEMON_0} \0" +.string "Range{UNK_MACRO_3D M3D_64}{POKEMON_0} \0" .align 2,0 .global gUnknown_810CF00 @@ -2024,253 +2024,253 @@ gFormattedStatusNames: @ 810D628 .4byte sUnknown_810D7A4 .4byte sUnknown_810D78C sUnknown_810D78C: @ 810D78C -.string "{COLOR_2 CYAN}Stair Spotter{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Stair Spotter{reset} \0" .align 2, 0 sUnknown_810D7A4: @ 810D7A4 -.string "{COLOR_2 CYAN}Doubled Attack{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Doubled Attack{reset} \0" .align 2, 0 sUnknown_810D7BC: @ 810D7BC -.string "{COLOR_2 CYAN}Perish Song{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Perish Song{reset} \0" .align 2, 0 sUnknown_810D7D0: @ 810D7D0 -.string "{COLOR_2 CYAN}Terrified{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Terrified{reset} \0" .align 2, 0 sUnknown_810D7E4: @ 810D7E4 -.string "{COLOR_2 CYAN}Exposed{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Exposed{reset} \0" .align 2, 0 sUnknown_810D7F4: @ 810D7F4 -.string "{COLOR_2 CYAN}Grudge{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Grudge{reset} \0" .align 2, 0 sUnknown_810D804: @ 810D804 -.string "{COLOR_2 CYAN}Scanning{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Scanning{reset} \0" .align 2, 0 sUnknown_810D814: @ 810D814 -.string "{COLOR_2 CYAN}Power Ears{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Power Ears{reset} \0" .align 2, 0 sUnknown_810D828: @ 810D828 -.string "{COLOR_2 CYAN}Stockpiling{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Stockpiling{reset} \0" .align 2, 0 sUnknown_810D83C: @ 810D83C -.string "{COLOR_2 CYAN}Muzzled{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Muzzled{reset} \0" .align 2, 0 sUnknown_810D84C: @ 810D84C -.string "{COLOR_2 CYAN}Eyedrops{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Eyedrops{reset} \0" .align 2, 0 sUnknown_810D85C: @ 810D85C -.string "{COLOR_2 CYAN}Cross-Eyed{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Cross-Eyed{reset} \0" .align 2, 0 sUnknown_810D870: @ 810D870 -.string "{COLOR_2 CYAN}Blinker{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Blinker{reset} \0" .align 2, 0 sUnknown_810D880: @ 810D880 -.string "{COLOR_2 CYAN}Mobile{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Mobile{reset} \0" .align 2, 0 sUnknown_810D890: @ 810D890 -.string "{COLOR_2 CYAN}Transformed{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Transformed{reset} \0" .align 2, 0 sUnknown_810D8A4: @ 810D8A4 -.string "{COLOR_2 CYAN}Invisible{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Invisible{reset} \0" .align 2, 0 sUnknown_810D8B8: @ 810D8B8 -.string "{COLOR_2 CYAN}Pierce{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Pierce{reset} \0" .align 2, 0 sUnknown_810D8C8: @ 810D8C8 -.string "{COLOR_2 CYAN}Long Toss{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Long Toss{reset} \0" .align 2, 0 sUnknown_810D8DC: @ 810D8DC -.string "{COLOR_2 CYAN}Focus Energy{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Focus Energy{reset} \0" .align 2, 0 sUnknown_810D8F0: @ 810D8F0 -.string "{COLOR_2 CYAN}Set Damage{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Set Damage{reset} \0" .align 2, 0 sUnknown_810D904: @ 810D904 -.string "{COLOR_2 CYAN}Whiffer{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Whiffer{reset} \0" .align 2, 0 sUnknown_810D914: @ 810D914 -.string "{COLOR_2 CYAN}Sure Shot{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Sure Shot{reset} \0" .align 2, 0 sUnknown_810D928: @ 810D928 -.string "{COLOR_2 CYAN}Destiny Bond{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Destiny Bond{reset} \0" .align 2, 0 sUnknown_810D93C: @ 810D93C -.string "{COLOR_2 CYAN}Leech Seed{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Leech Seed{reset} \0" .align 2, 0 sUnknown_810D950: @ 810D950 -.string "{COLOR_2 CYAN}Hungry Pal{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Hungry Pal{reset} \0" .align 2, 0 sUnknown_810D964: @ 810D964 -.string "{COLOR_2 CYAN}Snatch{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Snatch{reset} \0" .align 2, 0 sUnknown_810D974: @ 810D974 -.string "{COLOR_2 CYAN}Decoy{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Decoy{reset} \0" .align 2, 0 sUnknown_810D984: @ 810D984 -.string "{COLOR_2 CYAN}Cursed{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Cursed{reset} \0" .align 2, 0 sUnknown_810D994: @ 810D994 -.string "{COLOR_2 CYAN}Weakened{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Weakened{reset} \0" .align 2, 0 sUnknown_810D9A4: @ 810D9A4 -.string "{COLOR_2 CYAN}Mist{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Mist{reset} \0" .align 2, 0 sUnknown_810D9B0: @ 810D9B0 -.string "{COLOR_2 CYAN}Vital Throw{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Vital Throw{reset} \0" .align 2, 0 sUnknown_810D9C4: @ 810D9C4 -.string "{COLOR_2 CYAN}Conversion 2{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Conversion 2{reset} \0" .align 2, 0 sUnknown_810D9D8: @ 810D9D8 -.string "{COLOR_2 CYAN}Mirror Move{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Mirror Move{reset} \0" .align 2, 0 sUnknown_810D9EC: @ 810D9EC -.string "{COLOR_2 CYAN}Mini Counter{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Mini Counter{reset} \0" .align 2, 0 sUnknown_810DA00: @ 810DA00 -.string "{COLOR_2 CYAN}Enduring{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Enduring{reset} \0" .align 2, 0 sUnknown_810DA10: @ 810DA10 -.string "{COLOR_2 CYAN}Mirror Coat{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Mirror Coat{reset} \0" .align 2, 0 sUnknown_810DA24: @ 810DA24 -.string "{COLOR_2 CYAN}Protect{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Protect{reset} \0" .align 2, 0 sUnknown_810DA34: @ 810DA34 -.string "{COLOR_2 CYAN}Wish{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Wish{reset} \0" .align 2, 0 sUnknown_810DA40: @ 810DA40 -.string "{COLOR_2 CYAN}Magic Coat{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Magic Coat{reset} \0" .align 2, 0 sUnknown_810DA54: @ 810DA54 -.string "{COLOR_2 CYAN}Counter{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Counter{reset} \0" .align 2, 0 sUnknown_810DA64: @ 810DA64 -.string "{COLOR_2 CYAN}Light Screen{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Light Screen{reset} \0" .align 2, 0 sUnknown_810DA78: @ 810DA78 -.string "{COLOR_2 CYAN}Safeguard{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Safeguard{reset} \0" .align 2, 0 sUnknown_810DA8C: @ 810DA8C -.string "{COLOR_2 CYAN}Reflect{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Reflect{reset} \0" .align 2, 0 sUnknown_810DA9C: @ 810DA9C -.string "{COLOR_2 CYAN}Half Speed{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Half Speed{reset} \0" .align 2, 0 sUnknown_810DAB0: @ 810DAB0 -.string "{COLOR_2 CYAN}Enraged{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Enraged{reset} \0" .align 2, 0 sUnknown_810DAC0: @ 810DAC0 -.string "{COLOR_2 CYAN}Charging{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Charging{reset} \0" .align 2, 0 sUnknown_810DAD0: @ 810DAD0 -.string "{COLOR_2 CYAN}Digging{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Digging{reset} \0" .align 2, 0 sUnknown_810DAE0: @ 810DAE0 -.string "{COLOR_2 CYAN}Diving{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Diving{reset} \0" .align 2, 0 sUnknown_810DAF0: @ 810DAF0 -.string "{COLOR_2 CYAN}Bouncing{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Bouncing{reset} \0" .align 2, 0 sUnknown_810DB00: @ 810DB00 -.string "{COLOR_2 CYAN}Flying{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Flying{reset} \0" .align 2, 0 sUnknown_810DB10: @ 810DB10 -.string "{COLOR_2 CYAN}Skull Bash{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Skull Bash{reset} \0" .align 2, 0 sUnknown_810DB24: @ 810DB24 -.string "{COLOR_2 CYAN}Focus Punch{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Focus Punch{reset} \0" .align 2, 0 sUnknown_810DB38: @ 810DB38 -.string "{COLOR_2 CYAN}Razor Wind{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Razor Wind{reset} \0" .align 2, 0 sUnknown_810DB4C: @ 810DB4C -.string "{COLOR_2 CYAN}Sky Attack{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Sky Attack{reset} \0" .align 2, 0 sUnknown_810DB60: @ 810DB60 -.string "{COLOR_2 CYAN}Solarbeam{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Solarbeam{reset} \0" .align 2, 0 sUnknown_810DB74: @ 810DB74 -.string "{COLOR_2 CYAN}Bide{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Bide{reset} \0" .align 2, 0 sUnknown_810DB80: @ 810DB80 -.string "{COLOR_2 CYAN}Double Speed{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Double Speed{reset} \0" .align 2, 0 sUnknown_810DB94: @ 810DB94 -.string "{COLOR_2 CYAN}Infatuated{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Infatuated{reset} \0" .align 2, 0 sUnknown_810DBA8: @ 810DBA8 -.string "{COLOR_2 CYAN}Encore{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Encore{reset} \0" .align 2, 0 sUnknown_810DBB8: @ 810DBB8 -.string "{COLOR_2 CYAN}Taunted{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Taunted{reset} \0" .align 2, 0 sUnknown_810DBC8: @ 810DBC8 -.string "{COLOR_2 CYAN}Cowering{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Cowering{reset} \0" .align 2, 0 sUnknown_810DBD8: @ 810DBD8 -.string "{COLOR_2 CYAN}Paused{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Paused{reset} \0" .align 2, 0 sUnknown_810DBE8: @ 810DBE8 -.string "{COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Confused{reset} \0" .align 2, 0 sUnknown_810DBF8: @ 810DBF8 -.string "{COLOR_2 CYAN}Cringe{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Cringe{reset} \0" .align 2, 0 sUnknown_810DC08: @ 810DC08 -.string "{COLOR_2 CYAN}Famished{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Famished{reset} \0" .align 2, 0 sUnknown_810DC18: @ 810DC18 -.string "{COLOR_2 CYAN}Constriction{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Constriction{reset} \0" .align 2, 0 sUnknown_810DC2C: @ 810DC2C -.string "{COLOR_2 CYAN}Petrified{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Petrified{reset} \0" .align 2, 0 sUnknown_810DC40: @ 810DC40 -.string "{COLOR_2 CYAN}Ingrain{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Ingrain{reset} \0" .align 2, 0 sUnknown_810DC50: @ 810DC50 -.string "{COLOR_2 CYAN}Wrapped{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Wrapped{reset} \0" .align 2, 0 sUnknown_810DC60: @ 810DC60 -.string "{COLOR_2 CYAN}Wrap{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Wrap{reset} \0" .align 2, 0 sUnknown_810DC6C: @ 810DC6C -.string "{COLOR_2 CYAN}Leg Hold{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Leg Hold{reset} \0" .align 2, 0 sUnknown_810DC7C: @ 810DC7C -.string "{COLOR_2 CYAN}Frozen{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Frozen{reset} \0" .align 2, 0 sUnknown_810DC8C: @ 810DC8C -.string "{COLOR_2 CYAN}Identifying{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Identifying{reset} \0" .align 2, 0 sUnknown_810DCA0: @ 810DCA0 -.string "{COLOR_2 CYAN}Paralysis{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Paralysis{reset} \0" .align 2, 0 sUnknown_810DCB4: @ 810DCB4 -.string "{COLOR_2 CYAN}Badly Poisoned{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Badly Poisoned{reset} \0" .align 2, 0 sUnknown_810DCCC: @ 810DCCC -.string "{COLOR_2 CYAN}Poisoned{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Poisoned{reset} \0" .align 2, 0 sUnknown_810DCDC: @ 810DCDC -.string "{COLOR_2 CYAN}Burn{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Burn{reset} \0" .align 2, 0 sUnknown_810DCE8: @ 810DCE8 -.string "{COLOR_2 CYAN}Low HP{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Low HP{reset} \0" .align 2, 0 sUnknown_810DCF8: @ 810DCF8 -.string "{COLOR_2 CYAN}Napping{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Napping{reset} \0" .align 2, 0 sUnknown_810DD08: @ 810DD08 -.string "{COLOR_2 CYAN}Yawning{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Yawning{reset} \0" .align 2, 0 sUnknown_810DD18: @ 810DD18 -.string "{COLOR_2 CYAN}Nightmare{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Nightmare{reset} \0" .align 2, 0 sUnknown_810DD2C: @ 810DD2C -.string "{COLOR_2 CYAN}Sleepless{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Sleepless{reset} \0" .align 2, 0 sUnknown_810DD40: @ 810DD40 -.string "{COLOR_2 CYAN}Sleep{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Sleep{reset} \0" .align 2, 0 sUnknown_810DD50: @ 810DD50 @@ -2294,7 +2294,7 @@ gIQSkill810DD68_Ptr: @ 810DD68 .global Level_810DD6C Level_810DD6C: @ 810DD6C -.string "Level: {UNK_MACRO_3E M3E_82}{ARG_VALUE_0} \0" +.string "Level: {UNK_MACRO_3E M3E_82}{VALUE_0} \0" .align 2,0 .global gLevel810DD6C_Ptr @@ -2303,7 +2303,7 @@ gLevel810DD6C_Ptr: @ 810DD80 .global ExpPts_810DD84 ExpPts_810DD84: @ 810DD84 -.string "Exp. Pts.: {UNK_MACRO_3E M3E_82}{ARG_VALUE_1} \0" +.string "Exp. Pts.: {UNK_MACRO_3E M3E_82}{VALUE_1} \0" .align 2,0 .global gExpPts810DD9C_Ptr @@ -2312,7 +2312,7 @@ gExpPts810DD9C_Ptr: @ 810DD9C .global ToNextLevel_810DDA0 ToNextLevel_810DDA0: @ 810DDA0 -.string "To next level:{UNK_MACRO_3E M3E_82}{ARG_VALUE_0}\0" +.string "To next level:{UNK_MACRO_3E M3E_82}{VALUE_0}\0" .align 2,0 .global gUnknown_810DDB8 @@ -2357,7 +2357,7 @@ gUnknown_810DE0C: @ 810DE0C .global UnkText_810DE10 UnkText_810DE10: @ 810DE10 -.string "{UNK_MACRO_3E M3E_92}{COLOR_2 RED}$v03{END_COLOR_TEXT_2}/\0" +.string "{UNK_MACRO_3E M3E_92}{color RED}$v03{reset}/\0" .align 2,0 .global gUnknown_810DE20 @@ -2383,7 +2383,7 @@ gUnknown_810DE38: @ 810DE38 .global UnkText_810DE3C UnkText_810DE3C: @ 810DE3C -.string "{UNK_MACRO_3E M3E_118}{COLOR_2 RED}$v03{END_COLOR_TEXT_2}\0" +.string "{UNK_MACRO_3E M3E_118}{color RED}$v03{reset}\0" .align 2,0 .global gUnknown_810DE4C @@ -2404,7 +2404,7 @@ gUnknown_810DE58: @ 810DE58 .global Item_810DE5C Item_810DE5C: @ 810DE5C -.string "Item:{UNK_MACRO_3E M3E_46}{ARG_MOVE_ITEM_0} \0" +.string "Item:{UNK_MACRO_3E M3E_46}{MOVE_ITEM_0} \0" .align 2,0 .global gUnknown_810DE6C @@ -2413,7 +2413,7 @@ gUnknown_810DE6C: @ 810DE6C .global IQ_810DE70 IQ_810DE70: @ 810DE70 -.string "IQ:{UNK_MACRO_3E M3E_52}{ARG_POKEMON_0} \0" +.string "IQ:{UNK_MACRO_3E M3E_52}{POKEMON_0} \0" .align 2,0 .global gUnknown_810DE80 @@ -2422,7 +2422,7 @@ gUnknown_810DE80: @ 810DE80 .global Tactics_810DE84 Tactics_810DE84: @ 810DE84 -.string "Tactics:{UNK_MACRO_3E M3E_52}{ARG_POKEMON_0} \0" +.string "Tactics:{UNK_MACRO_3E M3E_52}{POKEMON_0} \0" .align 2,0 .global gUnknown_810DE98 @@ -2431,7 +2431,7 @@ gUnknown_810DE98: @ 810DE98 .global Species_810DE9C Species_810DE9C: @ 810DE9C -.string "Species:{UNK_MACRO_3E M3E_54}{COLOR_1 YELLOW}{ARG_POKEMON_0}{END_COLOR_TEXT_1} \0" +.string "Species:{UNK_MACRO_3E M3E_54}{COLOR YELLOW}{POKEMON_0}{RESET} \0" .align 2,0 .global gUnknown_810DEB4 @@ -2449,7 +2449,7 @@ gUnknown_810DEC8: @ 810DEC8 .global gUnknown_810DECC gUnknown_810DECC: @ 810DECC -.string "{UNK_MACRO_3E M3E_22}{COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}\0" +.string "{UNK_MACRO_3E M3E_22}{COLOR GREEN}{MOVE_ITEM_0}{RESET}\0" .align 2,0 .global gUnknown_810DEDC @@ -2458,7 +2458,7 @@ gUnknown_810DEDC: @ 810DEDC .global gUnknown_810DEE0 gUnknown_810DEE0: @ 810DEE0 -.string "{COLOR_1 CYAN}{ARG_POKEMON_0} Pokémon{END_COLOR_TEXT_1} \0" +.string "{COLOR CYAN}{POKEMON_0} Pokémon{RESET} \0" .align 2,0 .global gUnknown_810DEF4 @@ -2468,25 +2468,25 @@ gUnknown_810DEF4: @ 810DEF4 .global gUnknown_810DEF8 gUnknown_810DEF8: @ 810DEF8 -.string "Type:{UNK_MACRO_3E M3E_44}{COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}/{COLOR_1 CYAN}{ARG_POKEMON_1}{END_COLOR_TEXT_1} \0" +.string "Type:{UNK_MACRO_3E M3E_44}{COLOR CYAN}{POKEMON_0}{RESET}/{COLOR CYAN}{POKEMON_1}{RESET} \0" .align 2, 0 .4byte gUnknown_810DEF8 .global gUnknown_810DF1C gUnknown_810DF1C: @ 810DF1C -.string "Type:{UNK_MACRO_3E M3E_44}{COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1} \0" +.string "Type:{UNK_MACRO_3E M3E_44}{COLOR CYAN}{POKEMON_0}{RESET} \0" .align 2, 0 .4byte gUnknown_810DF1C .global gUnknown_810DF34 gUnknown_810DF34: @ 810DF34 -.string "Ability:{UNK_MACRO_3E M3E_44}{COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1} \0" +.string "Ability:{UNK_MACRO_3E M3E_44}{COLOR CYAN}{POKEMON_0}{RESET} \0" .align 2, 0 .4byte gUnknown_810DF34 .global gUnknown_810DF50 gUnknown_810DF50: @ 810DF50 -.string "{UNK_MACRO_3E M3E_44}{COLOR_1 CYAN}{ARG_POKEMON_1}{END_COLOR_TEXT_1}\0" +.string "{UNK_MACRO_3E M3E_44}{COLOR CYAN}{POKEMON_1}{RESET}\0" .align 2, 0 .4byte gUnknown_810DF50 @@ -2510,7 +2510,7 @@ gUnknown_810DF84: @ 810DF84 .global Size_810DF88 Size_810DF88: @ 810DF88 -.string "Size:{UNK_MACRO_3E M3E_82}{ARG_POKEMON_0}\0" +.string "Size:{UNK_MACRO_3E M3E_82}{POKEMON_0}\0" .align 2,0 .global gUnknown_810DF98 @@ -2528,7 +2528,7 @@ gUnknown_810DFB4: @ 810DFB4 .global ItemPlaceholder_810DFB8 ItemPlaceholder_810DFB8: @ 810DFB8 -.string "{UNK_MACRO_3E M3E_22}{COLOR_1 CYAN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}\0" +.string "{UNK_MACRO_3E M3E_22}{COLOR CYAN}{MOVE_ITEM_0}{RESET}\0" .align 2,0 .global gUnknown_810DFC8 @@ -2801,24 +2801,24 @@ gStatusDescriptions: @ 810E074 .4byte 0 sUnknown_810E38C: @ 810E38C .string "Physical Attack moves are those based on\n" -.string "the stats {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}.\n" +.string "the stats {color YELLOW}Attack{reset} and {color YELLOW}Defense{reset}.\n" .string "Physical Attack moves are of the types\n" .string "Normal, Fighting, Poison, Ground, Flying,\n" .string "Bug, Rock, Ghost, and Steel.\0" .align 2, 0 sUnknown_810E45C: @ 810E45C -.string "{COLOR_2 CYAN}Physical Attack Moves{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Physical Attack Moves{reset} \0" .align 2, 0 sUnknown_810E47C: @ 810E47C .string "Special Attack moves are those based on\n" -.string "the stats {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2} and\n" -.string "{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}.\n" +.string "the stats {color YELLOW}Special Attack{reset} and\n" +.string "{color YELLOW}Special Defense{reset}.\n" .string "Special Attack moves are of the types\n" .string "Fire, Water, Grass, Electric, Ice, Psychic,\n" .string "Dragon, and Dark.\0" .align 2, 0 sUnknown_810E550: @ 810E550 -.string "{COLOR_2 CYAN}Special Attack Moves{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Special Attack Moves{reset} \0" .align 2, 0 sUnknown_810E56C: @ 810E56C .string "The Pokémon gains the ability to pinpoint\n" @@ -2829,8 +2829,8 @@ sUnknown_810E56C: @ 810E56C sUnknown_810E5F4: @ 810E5F4 .string "Because of moves, special abilities, etc.,\n" .string "the Pokémon is weakened in terms of such\n" -.string "stats as {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2},\n" -.string "and {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}. It is possible to heal\n" +.string "stats as {color YELLOW}Attack{reset}, {color YELLOW}Defense{reset}, {color YELLOW}Special Attack{reset},\n" +.string "and {color YELLOW}Special Defense{reset}. It is possible to heal\n" .string "this condition with a Wonder Tile, etc.\n" .string "Moving to the next floor will also heal it.\0" .align 2, 0 @@ -2839,18 +2839,18 @@ sUnknown_810E714: @ 810E714 .string "to use them in succession in one turn.\n" .string "Although linked moves can be powerful,\n" .string "they also make the Pokémon hungry faster.\n" -.string "The link is broken if the {COLOR_2 YELLOW}PP{END_COLOR_TEXT_2} of a linked\n" +.string "The link is broken if the {color YELLOW}PP{reset} of a linked\n" .string "move is used up.\0" .align 2, 0 sUnknown_810E7F8: @ 810E7F8 -.string "{COLOR_2 CYAN}Link{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Link{reset} \0" .align 2, 0 sUnknown_810E804: @ 810E804 .string "The floor's status changes to Water Sport.\n" .string "The power of Fire-type moves is halved.\0" .align 2, 0 sUnknown_810E85C: @ 810E85C -.string "{COLOR_2 CYAN}Water Sport{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Water Sport{reset} \0" .align 2, 0 sUnknown_810E870: @ 810E870 .string "The floor's status changes to Mud Sport.\n" @@ -2858,11 +2858,11 @@ sUnknown_810E870: @ 810E870 .string "halved.\0" .align 2, 0 sUnknown_810E8C8: @ 810E8C8 -.string "{COLOR_2 CYAN}Mud Sport{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Mud Sport{reset} \0" .align 2, 0 sUnknown_810E8DC: @ 810E8DC .string "The Pokémon is sped up.\n" -.string "Its {COLOR_2 YELLOW}attack frequency{END_COLOR_TEXT_2} has been boosted.\0" +.string "Its {color YELLOW}attack frequency{reset} has been boosted.\0" .align 2, 0 sUnknown_810E920: @ 810E920 .string "Any Pokémon hearing Perish Song\n" @@ -2901,50 +2901,50 @@ sUnknown_810EB60: @ 810EB60 .align 2, 0 sUnknown_810EBF4: @ 810EBF4 .string "The Pokémon is storing power with the\n" -.string "move {COLOR_2 GREEN}Stockpile{END_COLOR_TEXT_2}.\n" +.string "move {color GREEN}Stockpile{reset}.\n" .string "The more power Stockpiled, the more\n" -.string "powerful the move {COLOR_2 GREEN}Spit Up{END_COLOR_TEXT_2}{END_COLOR_TEXT_2} becomes.\n" +.string "powerful the move {color GREEN}Spit Up{reset}{reset} becomes.\n" .string "The stored power is lost if the Pokémon\n" .string "goes on to the next floor.\0" .align 2, 0 sUnknown_810ECC4: @ 810ECC4 -.string "The Pokémon's {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} is\n" +.string "The Pokémon's {color YELLOW}Movement Speed{reset} is\n" .string "reduced from its usual level.\0" .align 2, 0 sUnknown_810ED0C: @ 810ED0C -.string "The Pokémon's {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} is boosted\n" +.string "The Pokémon's {color YELLOW}Movement Speed{reset} is boosted\n" .string "over its usual level.\0" .align 2, 0 sUnknown_810ED54: @ 810ED54 .string "The Pokémon (or trap) explodes savagely\n" .string "and inflicts damage on all Pokémon within\n" .string "a 2-tile range.\n" -.string "The huge explosion halves the {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} of\n" +.string "The huge explosion halves the {color YELLOW}HP{reset} of\n" .string "rescue team members. It also destroys\n" .string "walls and items within the 2-tile range.\0" .align 2, 0 sUnknown_810EE30: @ 810EE30 -.string "{COLOR_2 CYAN}Huge Explosion{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Huge Explosion{reset} \0" .align 2, 0 sUnknown_810EE48: @ 810EE48 .string "The Pokémon (or trap) explodes and\n" .string "inflicts damage on all Pokémon within\n" .string "a 1-tile range.\n" -.string "The explosion halves the {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} of rescue\n" +.string "The explosion halves the {color YELLOW}HP{reset} of rescue\n" .string "team members. It also destroys walls and\n" .string "items within the 1-tile range.\0" .align 2, 0 sUnknown_810EF14: @ 810EF14 -.string "{COLOR_2 CYAN}Explode{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Explode{reset} \0" .align 2, 0 sUnknown_810EF24: @ 810EF24 .string "There is a raging snowstorm.\n" .string "This weather condition boosts the\n" -.string "{COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} of Ice-type Pokémon\n" +.string "{color YELLOW}Movement Speed{reset} of Ice-type Pokémon\n" .string "by one level.\0" .align 2, 0 sUnknown_810EF9C: @ 810EF9C -.string "{COLOR_2 CYAN}Snow{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Snow{reset} \0" .align 2, 0 sUnknown_810EFA8: @ 810EFA8 .string "The weather is foggy.\n" @@ -2952,16 +2952,16 @@ sUnknown_810EFA8: @ 810EFA8 .string "of Electric-type moves.\0" .align 2, 0 sUnknown_810EFF8: @ 810EFF8 -.string "{COLOR_2 CYAN}Fog{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Fog{reset} \0" .align 2, 0 sUnknown_810F004: @ 810F004 .string "The weather is cloudy and dark.\n" -.string "This condition lowers the {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}\n" -.string "and {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2} of all Pokémon\n" +.string "This condition lowers the {color YELLOW}Attack{reset}\n" +.string "and {color YELLOW}Special Attack{reset} of all Pokémon\n" .string "except for the Normal type.\0" .align 2, 0 sUnknown_810F090: @ 810F090 -.string "{COLOR_2 CYAN}Cloudy{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Cloudy{reset} \0" .align 2, 0 sUnknown_810F0A0: @ 810F0A0 .string "There is a raging sandstorm.\n" @@ -2970,7 +2970,7 @@ sUnknown_810F0A0: @ 810F0A0 .string "Rock, and Steel types.\0" .align 2, 0 sUnknown_810F128: @ 810F128 -.string "{COLOR_2 CYAN}Sandstorm{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Sandstorm{reset} \0" .align 2, 0 sUnknown_810F13C: @ 810F13C .string "The sun is blazing.\n" @@ -2978,7 +2978,7 @@ sUnknown_810F13C: @ 810F13C .string "and weakens Water-type moves.\0" .align 2, 0 sUnknown_810F198: @ 810F198 -.string "{COLOR_2 CYAN}Sunny{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Sunny{reset} \0" .align 2, 0 sUnknown_810F1A8: @ 810F1A8 .string "The weather is rainy.\n" @@ -2986,7 +2986,7 @@ sUnknown_810F1A8: @ 810F1A8 .string "and weakens Fire-type moves.\0" .align 2, 0 sUnknown_810F204: @ 810F204 -.string "{COLOR_2 CYAN}Rain{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Rain{reset} \0" .align 2, 0 sUnknown_810F210: @ 810F210 .string "The weather is bitterly cold with hail.\n" @@ -2994,7 +2994,7 @@ sUnknown_810F210: @ 810F210 .string "all Pokémon except the Ice type.\0" .align 2, 0 sUnknown_810F27C: @ 810F27C -.string "{COLOR_2 CYAN}Hail{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Hail{reset} \0" .align 2, 0 sUnknown_810F288: @ 810F288 .string "The Pokémon becomes famished and\n" @@ -3011,7 +3011,7 @@ sUnknown_810F334: @ 810F334 .string "of the move it used last.\0" .align 2, 0 sUnknown_810F3A0: @ 810F3A0 -.string "{COLOR_2 CYAN}Grudge Effect{END_COLOR_TEXT_2} \0" +.string "{color CYAN}Grudge Effect{reset} \0" .align 2, 0 sUnknown_810F3B8: @ 810F3B8 .string "The Pokémon is prevented from using\n" @@ -3124,7 +3124,7 @@ sUnknown_810FCDC: @ 810FCDC sUnknown_810FD84: @ 810FD84 .string "A Leech Seed is planted on the\n" .string "Pokémon. The Leech Seed drains the\n" -.string "Pokémon's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} every several turns.\n" +.string "Pokémon's {color YELLOW}HP{reset} every several turns.\n" .string "This effect lasts a set amount of turns.\0" .align 2, 0 sUnknown_810FE18: @ 810FE18 @@ -3149,9 +3149,9 @@ sUnknown_810FF58: @ 810FF58 .align 2, 0 sUnknown_8110004: @ 8110004 .string "The Pokémon is protected from any\n" -.string "reduction of the stats {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2},\n" -.string "{COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2},\n" -.string "{COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2}, and {COLOR_2 YELLOW}Evasion{END_COLOR_TEXT_2}.\n" +.string "reduction of the stats {color YELLOW}Attack{reset}, {color YELLOW}Defense{reset},\n" +.string "{color YELLOW}Special Attack{reset}, {color YELLOW}Special Defense{reset},\n" +.string "{color YELLOW}Accuracy{reset}, and {color YELLOW}Evasion{reset}.\n" .string "This condition lasts a set amount of turns.\0" .align 2, 0 sUnknown_81100DC: @ 81100DC @@ -3178,7 +3178,7 @@ sUnknown_8110234: @ 8110234 sUnknown_811030C: @ 811030C .string "If the Pokémon takes damage that would\n" .string "usually cause it to faint, it will hold on\n" -.string "with just {COLOR_2 YELLOW}1HP{END_COLOR_TEXT_2}.\n" +.string "with just {color YELLOW}1HP{reset}.\n" .string "This effect lasts a set amount of turns.\0" .align 2, 0 sUnknown_81103A0: @ 81103A0 @@ -3196,7 +3196,7 @@ sUnknown_8110470: @ 8110470 .string "This condition lasts a set amount of turns.\0" .align 2, 0 sUnknown_8110530: @ 8110530 -.string "The Pokémon regains {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} faster than usual.\n" +.string "The Pokémon regains {color YELLOW}HP{reset} faster than usual.\n" .string "This effect lasts a set amount of turns.\0" .align 2, 0 sUnknown_8110588: @ 8110588 @@ -3239,14 +3239,14 @@ sUnknown_811088C: @ 811088C .string "move used right after charging.\0" .align 2, 0 sUnknown_81108FC: @ 81108FC -.string "Using the move {COLOR_2 GREEN}Dig{END_COLOR_TEXT_2}, \n" +.string "Using the move {color GREEN}Dig{reset}, \n" .string "the Pokémon has gone underground to\n" .string "prepare for its attack.\n" .string "It will strike on the next turn to inflict\n" .string "damage.\0" .align 2, 0 sUnknown_8110988: @ 8110988 -.string "Using the move {COLOR_2 GREEN}Dive{END_COLOR_TEXT_2}, \n" +.string "Using the move {color GREEN}Dive{reset}, \n" .string "the Pokémon has gone underwater to\n" .string "prepare for its attack.\n" .string "It will strike on the next turn to inflict\n" @@ -3266,32 +3266,32 @@ sUnknown_8110A84: @ 8110A84 .align 2, 0 sUnknown_8110B00: @ 8110B00 .string "The Pokémon is preparing to use\n" -.string "the move {COLOR_2 GREEN}Skull Bash{END_COLOR_TEXT_2}.\n" -.string "On the next turn, {COLOR_2 GREEN}Skull Bash{END_COLOR_TEXT_2} will be\n" +.string "the move {color GREEN}Skull Bash{reset}.\n" +.string "On the next turn, {color GREEN}Skull Bash{reset} will be\n" .string "unleashed.\0" .align 2, 0 sUnknown_8110B74: @ 8110B74 .string "The Pokémon is preparing to use\n" -.string "the move {COLOR_2 GREEN}Focus Punch{END_COLOR_TEXT_2}.\n" -.string "On the next turn, {COLOR_2 GREEN}Focus Punch{END_COLOR_TEXT_2} will be\n" +.string "the move {color GREEN}Focus Punch{reset}.\n" +.string "On the next turn, {color GREEN}Focus Punch{reset} will be\n" .string "unleashed.\0" .align 2, 0 sUnknown_8110BE8: @ 8110BE8 .string "The Pokémon is preparing to use\n" -.string "the move {COLOR_2 GREEN}Razor Wind{END_COLOR_TEXT_2}.\n" -.string "On the next turn, {COLOR_2 GREEN}Razor Wind{END_COLOR_TEXT_2} will be\n" +.string "the move {color GREEN}Razor Wind{reset}.\n" +.string "On the next turn, {color GREEN}Razor Wind{reset} will be\n" .string "unleashed.\0" .align 2, 0 sUnknown_8110C5C: @ 8110C5C .string "The Pokémon is preparing to use\n" -.string "the move {COLOR_2 GREEN}Sky Attack{END_COLOR_TEXT_2}.\n" -.string "On the next turn, {COLOR_2 GREEN}Sky Attack{END_COLOR_TEXT_2} will be\n" +.string "the move {color GREEN}Sky Attack{reset}.\n" +.string "On the next turn, {color GREEN}Sky Attack{reset} will be\n" .string "unleashed.\0" .align 2, 0 sUnknown_8110CD0: @ 8110CD0 .string "The Pokémon is preparing to launch\n" -.string "the move {COLOR_2 GREEN}Solarbeam{END_COLOR_TEXT_2}.\n" -.string "On the next turn, {COLOR_2 GREEN}Solarbeam{END_COLOR_TEXT_2} will be\n" +.string "the move {color GREEN}Solarbeam{reset}.\n" +.string "On the next turn, {color GREEN}Solarbeam{reset} will be\n" .string "unleashed.\0" .align 2, 0 sUnknown_8110D44: @ 8110D44 @@ -3326,7 +3326,7 @@ sUnknown_8110FA4: @ 8110FA4 sUnknown_811100C: @ 811100C .string "The Pokémon lays down roots in the\n" .string "ground. It becomes immobilized, but\n" -.string "it regenerates {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} every several turns.\n" +.string "it regenerates {color YELLOW}HP{reset} every several turns.\n" .string "These effects last a set amount of turns.\0" .align 2, 0 sUnknown_81110AC: @ 81110AC @@ -3362,17 +3362,17 @@ sUnknown_81112BC: @ 81112BC sUnknown_8111398: @ 8111398 .string "The Pokémon is on the verge of collapse\n" .string "from hunger. Every action results in a\n" -.string "loss of {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\n" +.string "loss of {color YELLOW}HP{reset}.\n" .string "This condition will persist until the\n" -.string "Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} is filled.\0" +.string "Pokémon's {color YELLOW}Belly{reset} is filled.\0" .align 2, 0 sUnknown_8111440: @ 8111440 .string "The Pokémon gains the ability to identify\n" .string "if other Pokémon are holding items or not.\0" .align 2, 0 sUnknown_8111498: @ 8111498 -.string "The Pokémon's {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} and\n" -.string "{COLOR_2 YELLOW}attack frequency{END_COLOR_TEXT_2} are reduced.\n" +.string "The Pokémon's {color YELLOW}Movement Speed{reset} and\n" +.string "{color YELLOW}attack frequency{reset} are reduced.\n" .string "Attacks and moves become unusable.\n" .string "Wonder Orbs also won't work, but other\n" .string "items will.\n" @@ -3381,7 +3381,7 @@ sUnknown_8111498: @ 8111498 sUnknown_8111568: @ 8111568 .string "The Pokémon takes damage every\n" .string "two turns. It is also prevented from \n" -.string "regenerating {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}. This condition does not\n" +.string "regenerating {color YELLOW}HP{reset}. This condition does not\n" .string "disappear over turns.\n" .string "Heal it quickly by using certain moves or\n" .string "items, or by going to the next floor.\n\0" @@ -3389,7 +3389,7 @@ sUnknown_8111568: @ 8111568 sUnknown_8111644: @ 8111644 .string "The Pokémon takes damage every ten\n" .string "turns. It is also prevented from \n" -.string "regenerating {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\n" +.string "regenerating {color YELLOW}HP{reset}.\n" .string "Poison does not disappear over turns.\n" .string "Heal it quickly by using certain moves or\n" .string "items, or by going to the next floor.\0" @@ -3402,15 +3402,15 @@ sUnknown_8111718: @ 8111718 .string "going to the next floor.\0" .align 2, 0 sUnknown_81117BC: @ 81117BC -.string "The Pokémon's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} is low from taking\n" +.string "The Pokémon's {color YELLOW}HP{reset} is low from taking\n" .string "damage. It is in danger.\n" -.string "Do something to restore {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}!\0" +.string "Do something to restore {color YELLOW}HP{reset}!\0" .align 2, 0 sUnknown_8111824: @ 8111824 .string "The Pokémon falls asleep and becomes\n" .string "incapable of any action.\n" .string "Upon awakening, the Pokémon fully\n" -.string "regains {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} and heals from any\n" +.string "regains {color YELLOW}HP{reset} and heals from any\n" .string "status problems.\0" .align 2, 0 sUnknown_81118BC: @ 81118BC @@ -4353,7 +4353,7 @@ gUnknown_8112778: @ 8112778 gUnknown_81127DC: @ 81127DC .string "When battling several foes, the Pokémon\n" .string "will first target Pokémon with the lowest\n" -.string "{COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\0" +.string "{color YELLOW}HP{reset}.\0" .align 2, 0 .global gUnknown_811283C @@ -4372,7 +4372,7 @@ gUnknown_81128A8: @ 81128A8 .global gUnknown_8112914 gUnknown_8112914: @ 8112914 -.string "If it becomes {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} or is {COLOR_2 CYAN}Cowering{END_COLOR_TEXT_2},\n" +.string "If it becomes {color CYAN}Confused{reset} or is {color CYAN}Cowering{reset},\n" .string "the Pokémon's wildly thrown\n" .string "attacks will not hit friends.\0" .align 2, 0 @@ -4381,7 +4381,7 @@ gUnknown_8112914: @ 8112914 gUnknown_8112984: @ 8112984 .string "The Pokémon will stop using linked moves\n" .string "that are on the verge of delinking.\n" -.string "It also stops using moves with no {COLOR_2 YELLOW}PP{END_COLOR_TEXT_2} left.\0" +.string "It also stops using moves with no {color YELLOW}PP{reset} left.\0" .align 2, 0 .global gUnknown_8112A04 @@ -4538,14 +4538,14 @@ gUnknown_8112E08: @ 8112E08 .global gUnknown_8112E4C gUnknown_8112E4C: @ 8112E4C -.string "The Pokémon will stop moving if its {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}\n" +.string "The Pokémon will stop moving if its {color YELLOW}HP{reset}\n" .string "is low.\0" .align 2, 0 .global gUnknown_8112E80 gUnknown_8112E80: @ 8112E80 .string "The Pokémon will try to avoid foes if its\n" -.string "{COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} is low.\0" +.string "{color YELLOW}HP{reset} is low.\0" .align 2, 0 .global gUnknown_8112EBC @@ -4938,7 +4938,7 @@ gUnknown_811380C: @ 811380C .global gUnknown_811382C gUnknown_811382C: @ 811382C -.string "{ARG_POKEMON_0}'s {ARG_MOVE_ITEM_0}.\0" +.string "{POKEMON_0}'s {MOVE_ITEM_0}.\0" .align 2, 0 .global gUnknown_811383C @@ -4947,7 +4947,7 @@ gUnknown_811383C: @ 811383C .global PlaceText PlaceText: -.string "{CENTER_ALIGN}Place: {ARG_POKEMON_0}\0" +.string "{CENTER_ALIGN}Place: {POKEMON_0}\0" .align 2,0 .global gUnknown_8113850 @@ -4956,7 +4956,7 @@ gUnknown_8113850: @ 8113850 .global DefeatedbyText DefeatedbyText: -.string "{ARG_POKEMON_1} was defeated by\0" +.string "{POKEMON_1} was defeated by\0" .global gUnknown_8113868 gUnknown_8113868: @ 8113868 @@ -4964,7 +4964,7 @@ gUnknown_8113868: @ 8113868 .global Monster_811386C Monster_811386C: @ 811386C -.string "{ARG_POKEMON_1}\0" +.string "{POKEMON_1}\0" .align 2,0 .global gUnknown_8113870 @@ -4973,7 +4973,7 @@ gUnknown_8113870: @ 8113870 .global Level_8113874 Level_8113874: @ 8113874 -.string "Level {UNK_MACRO_3E M3E_42}{ARG_VALUE_1}{UNK_MACRO_3E M3E_64}Exp. Pts. {ARG_VALUE_0} \0" +.string "Level {UNK_MACRO_3E M3E_42}{VALUE_1}{UNK_MACRO_3E M3E_64}Exp. Pts. {VALUE_0} \0" .align 2,0 .global gUnknown_8113898 @@ -4982,7 +4982,7 @@ gUnknown_8113898: @ 8113898 .global Level_811389C Level_811389C: @ 811389C -.string "Level {UNK_MACRO_3E M3E_35}{ARG_VALUE_1}{UNK_MACRO_3E M3E_64}Exp. Pts.{ARG_VALUE_0} \0" +.string "Level {UNK_MACRO_3E M3E_35}{VALUE_1}{UNK_MACRO_3E M3E_64}Exp. Pts.{VALUE_0} \0" .align 2,0 .global gUnknown_81138C0 @@ -4991,7 +4991,7 @@ gUnknown_81138C0: @ 81138C0 .global HP_81138C4 HP_81138C4: @ 81138C4 -.string "HP{UNK_MACRO_3E M3E_42}{ARG_VALUE_0} \0" +.string "HP{UNK_MACRO_3E M3E_42}{VALUE_0} \0" .align 2,0 .global gUnknown_81138D0 @@ -5000,7 +5000,7 @@ gUnknown_81138D0: @ 81138D0 .global Attack_81138D4 Attack_81138D4: @ 81138D4 -.string "Attack{UNK_MACRO_3E M3E_42}{ARG_VALUE_0} \0" +.string "Attack{UNK_MACRO_3E M3E_42}{VALUE_0} \0" .align 2,0 .global gUnknown_81138E4 @@ -5009,7 +5009,7 @@ gUnknown_81138E4: @ 81138E4 .global Defense_81138E8 Defense_81138E8: @ 81138E8 -.string "{UNK_MACRO_3E M3E_80}Defense{UNK_MACRO_3E M3E_128}{ARG_VALUE_1} \0" +.string "{UNK_MACRO_3E M3E_80}Defense{UNK_MACRO_3E M3E_128}{VALUE_1} \0" .align 2,0 .global gUnknown_8113900 @@ -5018,7 +5018,7 @@ gUnknown_8113900: @ 8113900 .global SpAtk_8113904 SpAtk_8113904: @ 8113904 -.string "Sp. Atk.{UNK_MACRO_3E M3E_42}{ARG_VALUE_0} \0" +.string "Sp. Atk.{UNK_MACRO_3E M3E_42}{VALUE_0} \0" .align 2,0 .global gUnknown_8113918 @@ -5027,7 +5027,7 @@ gUnknown_8113918: @ 8113918 .global SpDef_811391C SpDef_811391C: @ 811391C -.string "{UNK_MACRO_3E M3E_80}Sp. Def.{UNK_MACRO_3E M3E_128}{ARG_VALUE_1} \0" +.string "{UNK_MACRO_3E M3E_80}Sp. Def.{UNK_MACRO_3E M3E_128}{VALUE_1} \0" .align 2,0 .global gUnknown_8113934 @@ -5036,7 +5036,7 @@ gUnknown_8113934: @ 8113934 .global Attack_8113938 Attack_8113938: @ 8113938 -.string "Attack{UNK_MACRO_3E M3E_42}{COLOR_2 RED}{ARG_VALUE_0}{END_COLOR_TEXT_2} \0" +.string "Attack{UNK_MACRO_3E M3E_42}{color RED}{VALUE_0}{reset} \0" .align 2,0 .global gUnknown_8113950 @@ -5045,7 +5045,7 @@ gUnknown_8113950: @ 8113950 .global Defense_8113954 Defense_8113954: @ 8113954 -.string "{UNK_MACRO_3E M3E_80}Defense{UNK_MACRO_3E M3E_128}{COLOR_2 RED}{ARG_VALUE_1}{END_COLOR_TEXT_2} \0" +.string "{UNK_MACRO_3E M3E_80}Defense{UNK_MACRO_3E M3E_128}{color RED}{VALUE_1}{reset} \0" .align 2,0 .global gUnknown_8113974 @@ -5054,7 +5054,7 @@ gUnknown_8113974: @ 8113974 .global SpAtk_8113978 SpAtk_8113978: @ 8113978 -.string "Sp. Atk.{UNK_MACRO_3E M3E_42}{COLOR_2 RED}{ARG_VALUE_0}{END_COLOR_TEXT_2} \0" +.string "Sp. Atk.{UNK_MACRO_3E M3E_42}{color RED}{VALUE_0}{reset} \0" .align 2,0 .global gUnknown_8113990 @@ -5063,7 +5063,7 @@ gUnknown_8113990: @ 8113990 .global SpDef_8113994 SpDef_8113994: @ 8113994 -.string "{UNK_MACRO_3E M3E_80}Sp. Def.{UNK_MACRO_3E M3E_128}{COLOR_2 RED}{ARG_VALUE_1}{END_COLOR_TEXT_2} \0" +.string "{UNK_MACRO_3E M3E_80}Sp. Def.{UNK_MACRO_3E M3E_128}{color RED}{VALUE_1}{reset} \0" .align 2,0 .global gUnknown_81139B4 @@ -5076,7 +5076,7 @@ gUnknown_81139B8: @ 81139B8 .global Item_81139BC Item_81139BC: @ 81139BC -.string "Item:{UNK_MACRO_3E M3E_42}{ARG_MOVE_ITEM_0} \0" +.string "Item:{UNK_MACRO_3E M3E_42}{MOVE_ITEM_0} \0" .align 2,0 .global gUnknown_81139CC @@ -6052,7 +6052,7 @@ gUnknown_8115960: @ 8115960 .global PPD0Text PPD0Text: -.string "PP {ARG_VALUE_0} \0" +.string "PP {VALUE_0} \0" .global gPtrPPD0Text gPtrPPD0Text: @ 8115970 @@ -6081,9 +6081,9 @@ gUnknown_8115A2C: @ 8115A2C .global ItemLimitText_8105A30 ItemLimitText_8105A30: @ 8105A30 -.string "Only {ARG_VALUE_0} items may be brought into\n" +.string "Only {VALUE_0} items may be brought into\n" .string "this dungeon.\n" -.string "Please put away {ARG_VALUE_1} item(s).\0" +.string "Please put away {VALUE_1} item(s).\0" .align 2,0 .global gUnknown_8115A80 @@ -6092,9 +6092,9 @@ gUnknown_8115A80: @ 8115A80 .global ItemLimitAlsoText_8105A84 ItemLimitAlsoText_8105A84: @ 8105A84 -.string "Also, only {ARG_VALUE_0} items may be brought\n" +.string "Also, only {VALUE_0} items may be brought\n" .string "into this dungeon.\n" -.string "Please put away {ARG_VALUE_1} item(s).\0" +.string "Please put away {VALUE_1} item(s).\0" .align 2,0 .global gUnknown_8115ADC @@ -6103,7 +6103,7 @@ gUnknown_8115ADC: @ 8115ADC .global PartyMemberLimitText_8115AE0 PartyMemberLimitText_8115AE0: @ 8115AE0 -.string "Your client, {ARG_POKEMON_0}, could not join\n" +.string "Your client, {POKEMON_0}, could not join\n" .string "the team because there are too many\n" .string "members already.\0" .align 2,0 @@ -6114,7 +6114,7 @@ gUnknown_8115B3C: @ 8115B3C .global PartyMemberLimitText_8115B40 PartyMemberLimitText_8115B40: @ 8115B40 -.string "Also, your client, {ARG_POKEMON_0}, could not\n" +.string "Also, your client, {POKEMON_0}, could not\n" .string "join the team because there are too many\n" .string "members already.\0" .align 2,0 @@ -6125,7 +6125,7 @@ gUnknown_8115BA4: @ 8115BA4 .global SizeLimitText_8115BA8 SizeLimitText_8115BA8: @ 8115BA8 -.string "Your client, {ARG_POKEMON_0}, could not join\n" +.string "Your client, {POKEMON_0}, could not join\n" .string "the team because there is no space.\0" .align 2,0 @@ -6135,7 +6135,7 @@ gUnknown_8115BF4: @ 8115BF4 .global SizeLimitText_8115BF8 SizeLimitText_8115BF8: @ 8115BF8 -.string "Also, your client, {ARG_POKEMON_0}, could not\n" +.string "Also, your client, {POKEMON_0}, could not\n" .string "join the team because there is no space.\0" .align 2,0 @@ -6146,8 +6146,8 @@ gUnknown_8115C4C: @ 8115C4C .global MoveReqText_8115C50 MoveReqText_8115C50: @ 8115C50 .string "To enter this dungeon, the team must have\n" -.string "a Pokémon with the move {ARG_MOVE_ITEM_0}\n" -.string "or have the Hidden Machine {ARG_MOVE_ITEM_0}.\0" +.string "a Pokémon with the move {MOVE_ITEM_0}\n" +.string "or have the Hidden Machine {MOVE_ITEM_0}.\0" .align 2,0 .global gUnknown_8115CB8 @@ -6157,8 +6157,8 @@ gUnknown_8115CB8: @ 8115CB8 .global MoveReqText_8115CBC MoveReqText_8115CBC: @ 8115CBC .string "Also, the team must have a Pokémon with\n" -.string "the move {ARG_MOVE_ITEM_0} or have the\n" -.string "Hidden Machine {ARG_MOVE_ITEM_0}.\0" +.string "the move {MOVE_ITEM_0} or have the\n" +.string "Hidden Machine {MOVE_ITEM_0}.\0" .align 2,0 .global gUnknown_8115D14 diff --git a/data/data_8115F5C.s b/data/data_8115F5C.s index 059514b4c..ac0987789 100644 --- a/data/data_8115F5C.s +++ b/data/data_8115F5C.s @@ -86,12 +86,12 @@ gUnknown_8116148: @ 8116148 .global gInvalidityText gInvalidityText: @ 811615C -.string "{COLOR_1 RED_2}invalidity{END_COLOR_TEXT_1}\0" +.string "{COLOR RED_W}invalidity{RESET}\0" .align 2,0 .global gUndefineText gUndefineText: @ 811616C -.string "{COLOR_1 RED_2}undefine{END_COLOR_TEXT_1}\0" +.string "{COLOR RED_W}undefine{RESET}\0" .align 2,0 .global gSpeechBubbleChar @@ -100,11 +100,11 @@ gSpeechBubbleChar: @ 811617C .global gFormattedSpeechBubble gFormattedSpeechBubble: @ 8116180 -.string "{COLOR_1 YELLOW_5}{SPEECH_BUBBLE}{END_COLOR_TEXT_1}\0" +.string "{COLOR YELLOW_N}{SPEECH_BUBBLE}{RESET}\0" .global gUnknown_8116188 gUnknown_8116188: @ 8116188 -.string "{COLOR_1 YELLOW_5}%s{END_COLOR_TEXT_1}\0" +.string "{COLOR YELLOW_N}%s{RESET}\0" .align 2,0 .global gUnknown_8116190 @@ -285,20 +285,20 @@ gUnknown_8116318: @ 8116318 .global gUnknown_811633C gUnknown_811633C: @ 811633C -.string "{CENTER_ALIGN}{ARG_NICKNAME_0}'s team received\n" -.string "{CENTER_ALIGN}the {ARG_MOVE_ITEM_0} cash reward.\0" +.string "{CENTER_ALIGN}{NAME_0}'s team received\n" +.string "{CENTER_ALIGN}the {MOVE_ITEM_0} cash reward.\0" .align 2, 0 .global gUnknown_811636C gUnknown_811636C: @ 811636C .string "{CENTER_ALIGN}The team also received\n" -.string "{CENTER_ALIGN}one {ARG_MOVE_ITEM_0}.\0" +.string "{CENTER_ALIGN}one {MOVE_ITEM_0}.\0" .align 2, 0 .global gUnknown_8116390 gUnknown_8116390: @ 8116390 -.string "{CENTER_ALIGN}{ARG_NICKNAME_0}'s team received\n" -.string "{CENTER_ALIGN}the reward {ARG_MOVE_ITEM_0}.\0" +.string "{CENTER_ALIGN}{NAME_0}'s team received\n" +.string "{CENTER_ALIGN}the reward {MOVE_ITEM_0}.\0" .align 2, 0 .global gUnknown_81163BC @@ -317,18 +317,18 @@ gUnknown_81163BC: @ 81163BC .global gUnknown_81163E4 gUnknown_81163E4: @ 81163E4 -.string "{COLOR_1 LIGHT_BLUE}%d{END_COLOR_TEXT_1} %s\0" +.string "{COLOR CYAN_G}%d{RESET} %s\0" .align 2,0 .global gUnknown_81163F0 gUnknown_81163F0: @ 81163F0 -.string "{CENTER_ALIGN}However, {ARG_NICKNAME_0}'s team\n" +.string "{CENTER_ALIGN}However, {NAME_0}'s team\n" .string "{CENTER_ALIGN}had too much money already...\0" .align 2,0 .global gUnknown_811642C gUnknown_811642C: @ 811642C -.string "{CENTER_ALIGN}However, {ARG_NICKNAME_0}'s team\n" +.string "{CENTER_ALIGN}However, {NAME_0}'s team\n" .string "{CENTER_ALIGN}had too many items already...\0" .align 2,0 .string "pksdir0\0" @@ -540,7 +540,7 @@ gUnknown_81167E8: @ 81167E8 .global gUnknown_81167EC gUnknown_81167EC: @ 81167EC .string "{CENTER_ALIGN}The rescue rank went up from\n" -.string "{CENTER_ALIGN}{ARG_MOVE_ITEM_0} to {ARG_MOVE_ITEM_1}!\0" +.string "{CENTER_ALIGN}{MOVE_ITEM_0} to {MOVE_ITEM_1}!\0" .align 2,0 .global gUnknown_811681C @@ -747,12 +747,12 @@ gUnknown_8117000: @ 8117000 .global gUnknown_811709C gUnknown_811709C: @ 811709C -.string "{COLOR_1 RED_2}invalidity{END_COLOR_TEXT_1}\0" +.string "{COLOR RED_W}invalidity{RESET}\0" .align 2,0 .global gUnknown_81170AC gUnknown_81170AC: @ 81170AC -.string "{COLOR_1 YELLOW_3}scene{END_COLOR_TEXT_1}\0" +.string "{COLOR YELLOW_C}scene{RESET}\0" .align 2,0 .global gUnknown_81170B8 @@ -762,7 +762,7 @@ gUnknown_81170B8: @ 81170B8 .global gUnknown_81170C4 gUnknown_81170C4: @ 81170C4 -.string "{COLOR_1 YELLOW_3}direction{END_COLOR_TEXT_1}\0" +.string "{COLOR YELLOW_C}direction{RESET}\0" .align 2,0 .global gUnknown_81170D4 @@ -1943,7 +1943,7 @@ gUnknown_8118250: @ 8118250 .global gGroundLives_InvalidityText gGroundLives_InvalidityText: @ 811825C -.string "{COLOR_1 RED_2}invalidity{END_COLOR_TEXT_1}\0" +.string "{COLOR RED_W}invalidity{RESET}\0" .align 2,0 .global GroundLives_ActionText diff --git a/data/friend_rescue.s b/data/friend_rescue.s index d5eba689b..4586c99a4 100644 --- a/data/friend_rescue.s +++ b/data/friend_rescue.s @@ -26,24 +26,24 @@ gUnknown_80E2CD4: @ 80E2CD4 .global gUnknown_80E2CE8 gUnknown_80E2CE8: @ 80E2CE8 -.string "Please choose the {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} that should\n" +.string "Please choose the {COLOR CYAN_G}A-OK Mail{RESET} that should\n" .string "be sent to your friend.\0" .align 2,0 .global gUnknown_80E2D30 gUnknown_80E2D30: @ 80E2D30 -.string "This {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} will be sent.\n" +.string "This {COLOR CYAN_G}A-OK Mail{RESET} will be sent.\n" .string "Is that OK?\0" .align 2,0 .global gUnknown_80E2D60 gUnknown_80E2D60: @ 80E2D60 - .string "There is no {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.\0" + .string "There is no {COLOR CYAN_G}A-OK Mail{RESET}.\0" .align 2,0 .global gUnknown_80E2D7C gUnknown_80E2D7C: @ 80E2D7C -.string "Connect the {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}.\n" +.string "Connect the {COLOR CYAN_G}Game Link cable{RESET}.\n" .string "When your friend is ready, begin\n" .string "communication.\0" .align 2,0 @@ -77,19 +77,19 @@ gUnknown_80E2EB4: @ 80E2EB4 .global gUnknown_80E2F14 gUnknown_80E2F14: @ 80E2F14 -.string "There is no {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1} on\n" +.string "There is no {COLOR CYAN_G}SOS Mail{RESET} on\n" .string "the GBA Game Pak.\0" .align 2,0 .global gUnknown_80E2F44 gUnknown_80E2F44: @ 80E2F44 -.string "Please choose an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}\n" +.string "Please choose an {COLOR CYAN_G}SOS Mail{RESET}\n" .string "on the GBA Game Pak.\0" .align 2,0 .global gUnknown_80E2F78 gUnknown_80E2F78: @ 80E2F78 -.string "Is it OK to accept this {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}?\0" +.string "Is it OK to accept this {COLOR CYAN_G}SOS Mail{RESET}?\0" .align 2,0 .global gUnknown_80E2FA0 @@ -101,7 +101,7 @@ gUnknown_80E2FA0: @ 80E2FA0 .global gUnknown_80E2FEC gUnknown_80E2FEC: @ 80E2FEC -.string "The {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1} has been received.\n" +.string "The {COLOR CYAN_G}SOS Mail{RESET} has been received.\n" .string "Your adventure will be saved.\0" .align 2,0 @@ -113,28 +113,28 @@ gUnknown_80E3030: @ 80E3030 .global gUnknown_80E3078 gUnknown_80E3078: @ 80E3078 -.string "Please enter the {COLOR_1 LIGHT_BLUE}SOS Mail password{END_COLOR_TEXT_1}.\0" +.string "Please enter the {COLOR CYAN_G}SOS Mail password{RESET}.\0" .align 2,0 .global gUnknown_80E30A4 gUnknown_80E30A4: @ 80E30A4 -.string "Is it OK to send this {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}?\0" +.string "Is it OK to send this {COLOR CYAN_G}Thank-You Mail{RESET}?\0" .align 2,0 .global gUnknown_80E30D0 gUnknown_80E30D0: @ 80E30D0 -.string "Please choose the {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} that\n" +.string "Please choose the {COLOR CYAN_G}Thank-You Mail{RESET} that\n" .string "should be sent to your friend.\0" .align 2,0 .global gUnknown_80E311C gUnknown_80E311C: @ 80E311C -.string "Please enter the {COLOR_1 LIGHT_BLUE}Thank-You Mail password{END_COLOR_TEXT_1}.\0" +.string "Please enter the {COLOR CYAN_G}Thank-You Mail password{RESET}.\0" .align 2,0 .global gUnknown_80E314C gUnknown_80E314C: @ 80E314C -.string "The {COLOR_1 LIGHT_BLUE}Thank-You Mail password{END_COLOR_TEXT_1} will be\n" +.string "The {COLOR CYAN_G}Thank-You Mail password{RESET} will be\n" .string "shown.\0" .align 2,0 @@ -146,7 +146,7 @@ gUnknown_80E317C: @ 80E317C .global gUnknown_80E319C gUnknown_80E319C: @ 80E319C .string "Steps will now be taken to receive the\n" - .string "{COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}.\0" + .string "{COLOR CYAN_G}Thank-You Mail{RESET}.\0" .align 2,0 .global gUnknown_80E31D8 @@ -156,30 +156,30 @@ gUnknown_80E31D8: @ 80E31D8 .global gUnknown_80E31FC gUnknown_80E31FC: @ 80E31FC - .string "The {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} was sent.\0" + .string "The {COLOR CYAN_G}Thank-You Mail{RESET} was sent.\0" .align 2,0 .global gUnknown_80E3220 gUnknown_80E3220: @ 80E3220 - .string "You received the {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}.\0" + .string "You received the {COLOR CYAN_G}Thank-You Mail{RESET}.\0" .align 2,0 .global gUnknown_80E3248 gUnknown_80E3248: @ 80E3248 - .string "The {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} was sent.\n" + .string "The {COLOR CYAN_G}Thank-You Mail{RESET} was sent.\n" .string "Your adventure will be saved.\0" .align 2,0 .global gUnknown_80E3288 gUnknown_80E3288: @ 80E3288 .string "Steps will now be taken to send your\n" - .string "{COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}.\0" + .string "{COLOR CYAN_G}Thank-You Mail{RESET}.\0" .align 2,0 .global gUnknown_80E32C4 gUnknown_80E32C4: @ 80E32C4 .string "OK. You're good to go.\n" - .string "{COLOR_1 YELLOW_5}%s{END_COLOR_TEXT_1}, I hope your sense of\n" + .string "{COLOR YELLOW_N}%s{RESET}, I hope your sense of\n" .string "gratitude reaches your friend.\0" .align 2,0 @@ -204,14 +204,14 @@ gUnknown_80E339C: @ 80E339C .global gUnknown_80E33D8 gUnknown_80E33D8: @ 80E33D8 .string "Would you like to choose\n" -.string "a {COLOR_1 LIGHT_BLUE}reward item{END_COLOR_TEXT_1} from storage and\n" +.string "a {COLOR CYAN_G}reward item{RESET} from storage and\n" .string "send it with your mail?\0" .align 2,0 .global gUnknown_80E3430 gUnknown_80E3430: @ 80E3430 .string "This mail already has an attached\n" -.string "{COLOR_1 LIGHT_BLUE}reward item{END_COLOR_TEXT_1}.{EXTRA_MSG}Once an item has been chosen, it may not\n" +.string "{COLOR CYAN_G}reward item{RESET}.{EXTRA_MSG}Once an item has been chosen, it may not\n" .string "be exchanged with another item.\0" .align 2,0 @@ -223,13 +223,13 @@ gUnknown_80E34B0: @ 80E34B0 .global gUnknown_80E34F0 gUnknown_80E34F0: @ 80E34F0 -.string "Please select a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}\n" +.string "Please select a {COLOR CYAN_G}Thank-You Mail{RESET}\n" .string "from the GBA Game Pak.\0" .align 2,0 .global gUnknown_80E352C gUnknown_80E352C: @ 80E352C - .string "Is it OK to accept this {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}?\0" + .string "Is it OK to accept this {COLOR CYAN_G}Thank-You Mail{RESET}?\0" .align 2,0 .global gUnknown_80E355C @@ -241,24 +241,24 @@ gUnknown_80E355C: @ 80E355C .global gUnknown_80E35AC gUnknown_80E35AC: @ 80E35AC .string "The GBA Game Pak does not have\n" - .string "a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} on it.\0" + .string "a {COLOR CYAN_G}Thank-You Mail{RESET} on it.\0" .align 2,0 .global gUnknown_80E35E8 gUnknown_80E35E8: @ 80E35E8 - .string "There is no {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}.\0" + .string "There is no {COLOR CYAN_G}Thank-You Mail{RESET}.\0" .align 2,0 .global gUnknown_80E360C gUnknown_80E360C: @ 80E360C .string "How would you like to send\n" - .string "your {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}?\0" + .string "your {COLOR CYAN_G}Thank-You Mail{RESET}?\0" .align 2,0 .global gUnknown_80E3644 gUnknown_80E3644: @ 80E3644 .string "How would you like to receive\n" - .string "the {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}?\0" + .string "the {COLOR CYAN_G}Thank-You Mail{RESET}?\0" .align 2,0 .global gUnknown_80E367C @@ -269,13 +269,13 @@ gUnknown_80E367C: @ 80E367C .global gUnknown_80E3690 gUnknown_80E3690: @ 80E3690 .string "If your team is defeated and in need\n" -.string "of rescuing, send an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}\n" +.string "of rescuing, send an {COLOR CYAN_G}SOS Mail{RESET}\n" .string "to a friend.{EXTRA_MSG}Once you send your mail, you must wait\n" .string "for your friend to send you\n" -.string "an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}If the {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} arrives, your\n" +.string "an {COLOR CYAN_G}A-OK Mail{RESET}.{EXTRA_MSG}If the {COLOR CYAN_G}A-OK Mail{RESET} arrives, your\n" .string "team can be revived to resume exploring\n" .string "the dungeon it was in.{EXTRA_MSG}When your team is revived, don't forget\n" -.string "to send a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} to the friend\n" +.string "to send a {COLOR CYAN_G}Thank-You Mail{RESET} to the friend\n" .string "who came to your rescue.\0" .align 2,0 @@ -283,9 +283,9 @@ gUnknown_80E3690: @ 80E3690 gUnknown_80E3818: @ 80E3818 .string "If your team is defeated in\n" .string "a dungeon, you may send a friend\n" -.string "an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1} for help.{EXTRA_MSG}However, there are some places\n" +.string "an {COLOR CYAN_G}SOS Mail{RESET} for help.{EXTRA_MSG}However, there are some places\n" .string "where it is impossible for you to\n" -.string "call for a rescue.{EXTRA_MSG}Also, if you send an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1},\n" +.string "call for a rescue.{EXTRA_MSG}Also, if you send an {COLOR CYAN_G}SOS Mail{RESET},\n" .string "you may not continue with your\n" .string "adventure while awaiting rescue.{EXTRA_MSG}If you cannot wait to be rescued,\n" .string "you will have to give up and return\n" @@ -296,11 +296,11 @@ gUnknown_80E3818: @ 80E3818 gUnknown_80E3998: @ 80E3998 .string "If your friend successfully rescues\n" .string "your team, accept your friend's\n" -.string "{COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}Once the {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} is received,\n" +.string "{COLOR CYAN_G}A-OK Mail{RESET}.{EXTRA_MSG}Once the {COLOR CYAN_G}A-OK Mail{RESET} is received,\n" .string "you may revive your team and resume\n" -.string "exploring the dungeon you were in.{EXTRA_MSG}Using a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1},\n" +.string "exploring the dungeon you were in.{EXTRA_MSG}Using a {COLOR CYAN_G}Game Link cable{RESET},\n" .string "your friend can also send you\n" -.string "a {COLOR_1 LIGHT_BLUE}helper Pokémon{END_COLOR_TEXT_1}.{EXTRA_MSG}However, the {COLOR_1 LIGHT_BLUE}helper Pokémon{END_COLOR_TEXT_1} will not\n" +.string "a {COLOR CYAN_G}helper Pokémon{RESET}.{EXTRA_MSG}However, the {COLOR CYAN_G}helper Pokémon{RESET} will not\n" .string "be able to bring an item with it when\n" .string "joining your team.\0" .align 2,0 @@ -308,50 +308,50 @@ gUnknown_80E3998: @ 80E3998 .global gUnknown_80E3B1C gUnknown_80E3B1C: @ 80E3B1C .string "If your team has been rescued, be sure\n" -.string "to send a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} to the friend\n" -.string "that came to your help.{EXTRA_MSG}You may also attach a {COLOR_1 LIGHT_BLUE}reward item{END_COLOR_TEXT_1}\n" -.string "from storage to your {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}\n" +.string "to send a {COLOR CYAN_G}Thank-You Mail{RESET} to the friend\n" +.string "that came to your help.{EXTRA_MSG}You may also attach a {COLOR CYAN_G}reward item{RESET}\n" +.string "from storage to your {COLOR CYAN_G}Thank-You Mail{RESET}\n" .string "and send it to your friend.\0" .align 2,0 .global gUnknown_80E3BF8 gUnknown_80E3BF8: @ 80E3BF8 .string "If your friend's team needs rescuing,\n" -.string "you must first receive an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}\n" +.string "you must first receive an {COLOR CYAN_G}SOS Mail{RESET}\n" .string "from your friend.{EXTRA_MSG}When you get the mail, you may embark\n" .string "on your rescue mission from the\n" -.string "{COLOR_1 LIGHT_BLUE}Pelipper Post Office{END_COLOR_TEXT_1}.{EXTRA_MSG}If you rescue your friend's defeated\n" -.string "team, send an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} to your\n" +.string "{COLOR CYAN_G}Pelipper Post Office{RESET}.{EXTRA_MSG}If you rescue your friend's defeated\n" +.string "team, send an {COLOR CYAN_G}A-OK Mail{RESET} to your\n" .string "friend.{EXTRA_MSG}If you rescue a friend, you will be eligible\n" -.string "to receive a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}If you have quicksaved inside a dungeon,\n" -.string "you may not choose {COLOR_1 LIGHT_BLUE}Go Rescue{END_COLOR_TEXT_1}.\n" +.string "to receive a {COLOR CYAN_G}Thank-You Mail{RESET}.{EXTRA_MSG}If you have quicksaved inside a dungeon,\n" +.string "you may not choose {COLOR CYAN_G}Go Rescue{RESET}.\n" .string "Your last save must be out of a dungeon.\0" .align 2,0 .global gUnknown_80E3DE4 gUnknown_80E3DE4: @ 80E3DE4 -.string "You may receive an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1} from\n" +.string "You may receive an {COLOR CYAN_G}SOS Mail{RESET} from\n" .string "a friend's team that lies defeated in\n" .string "a dungeon.{EXTRA_MSG}If there is no space for new mail, delete\n" -.string "old mail at the {COLOR_1 LIGHT_BLUE}Pelipper Post Office{END_COLOR_TEXT_1}.\0" +.string "old mail at the {COLOR CYAN_G}Pelipper Post Office{RESET}.\0" .align 2,0 .global gUnknown_80E3E98 gUnknown_80E3E98: @ 80E3E98 .string "If you successfully rescue your friend's\n" -.string "team, send your friend an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}Using a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}, you may\n" +.string "team, send your friend an {COLOR CYAN_G}A-OK Mail{RESET}.{EXTRA_MSG}Using a {COLOR CYAN_G}Game Link cable{RESET}, you may\n" .string "also send your friend a Pokémon from\n" .string "your Friend Area as a helper.{EXTRA_MSG}Don't worry--sending a Pokémon as\n" .string "a helper will not make it disappear from\n" .string "its Friend Area.{EXTRA_MSG}If there is no space for new mail, delete\n" -.string "old mail at the {COLOR_1 LIGHT_BLUE}Pelipper Post Office{END_COLOR_TEXT_1}.\0" +.string "old mail at the {COLOR CYAN_G}Pelipper Post Office{RESET}.\0" .align 2,0 .global gUnknown_80E4014 gUnknown_80E4014: @ 80E4014 -.string "When you receive an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1},\n" +.string "When you receive an {COLOR CYAN_G}SOS Mail{RESET},\n" .string "you may embark on your rescue mission\n" -.string "from the {COLOR_1 LIGHT_BLUE}Pelipper Post Office{END_COLOR_TEXT_1}.{EXTRA_MSG}Beware--if you do not have access to\n" +.string "from the {COLOR CYAN_G}Pelipper Post Office{RESET}.{EXTRA_MSG}Beware--if you do not have access to\n" .string "the dungeon they are in, you may not go\n" .string "on a rescue mission there.{EXTRA_MSG}Accept challenging rescues only\n" .string "if you are ready and qualified!\0" @@ -359,31 +359,31 @@ gUnknown_80E4014: @ 80E4014 .global gUnknown_80E4130 gUnknown_80E4130: @ 80E4130 -.string "If you send an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}, you may\n" -.string "receive a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} in return\n" -.string "from your friend.{EXTRA_MSG}The {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} may also come\n" -.string "with a {COLOR_1 LIGHT_BLUE}reward item{END_COLOR_TEXT_1} attached.\0" +.string "If you send an {COLOR CYAN_G}A-OK Mail{RESET}, you may\n" +.string "receive a {COLOR CYAN_G}Thank-You Mail{RESET} in return\n" +.string "from your friend.{EXTRA_MSG}The {COLOR CYAN_G}Thank-You Mail{RESET} may also come\n" +.string "with a {COLOR CYAN_G}reward item{RESET} attached.\0" .align 2,0 .global gUnknown_80E41DC gUnknown_80E41DC: @ 80E41DC -.string "Using the {COLOR_1 LIGHT_BLUE}Dual Slot{END_COLOR_TEXT_1} function,\n" +.string "Using the {COLOR CYAN_G}Dual Slot{RESET} function,\n" .string "you may perform rescue operations with\n" .string "friends using the GBA Game Pak version.{EXTRA_MSG}Insert the DS Game Card and the GBA\n" .string "Game Pak in your Nintendo DS system,\n" .string "then turn on the power.{EXTRA_MSG}Friend Rescue missions using\n" -.string "the {COLOR_1 LIGHT_BLUE}Dual Slot{END_COLOR_TEXT_1} function will be\n" +.string "the {COLOR CYAN_G}Dual Slot{RESET} function will be\n" .string "available on the main menu. \0" .align 2,0 .global gUnknown_80E4314 gUnknown_80E4314: @ 80E4314 .string "Friends can rescue each other's defeated\n" -.string "teams using a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1},\n" -.string "{COLOR_1 LIGHT_BLUE}passwords{END_COLOR_TEXT_1}, and so on.{EXTRA_MSG}You may go on a rescue mission to save\n" +.string "teams using a {COLOR CYAN_G}Game Link cable{RESET},\n" +.string "{COLOR CYAN_G}passwords{RESET}, and so on.{EXTRA_MSG}You may go on a rescue mission to save\n" .string "your friend's team that has been defeated\n" .string "in a dungeon.{EXTRA_MSG}Or, you may call for help from a friend\n" -.string "to save your fallen team in a dungeon.{EXTRA_MSG}Using {COLOR_1 LIGHT_BLUE}passwords{END_COLOR_TEXT_1}, you can even\n" +.string "to save your fallen team in a dungeon.{EXTRA_MSG}Using {COLOR CYAN_G}passwords{RESET}, you can even\n" .string "exchange help with faraway friends.\0" .align 2,0 @@ -435,25 +435,25 @@ gUnknown_80E4650: @ 80E4650 .global gUnknown_80E468C gUnknown_80E468C: @ 80E468C .string "You do not appear eligible to receive\n" -.string "this {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.\0" +.string "this {COLOR CYAN_G}A-OK Mail{RESET}.\0" .align 2,0 .global gUnknown_80E46C8 gUnknown_80E46C8: @ 80E46C8 .string "Your friend is not eligible to receive\n" -.string "this {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.\0" +.string "this {COLOR CYAN_G}A-OK Mail{RESET}.\0" .align 2,0 .global gUnknown_80E4704 gUnknown_80E4704: @ 80E4704 .string "You do not appear eligible to receive\n" -.string "this {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}.\0" +.string "this {COLOR CYAN_G}Thank-You Mail{RESET}.\0" .align 2,0 .global gUnknown_80E4744 gUnknown_80E4744: @ 80E4744 .string "Your friend is not eligible to receive\n" -.string "this {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}.\0" +.string "this {COLOR CYAN_G}Thank-You Mail{RESET}.\0" .align 2,0 .global gUnknown_80E4788 @@ -486,19 +486,19 @@ gUnknown_80E48A8: @ 80E48A8 .global gUnknown_80E48E8 gUnknown_80E48E8: @ 80E48E8 .string "This password does not appear to be\n" -.string "that of an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}.\0" +.string "that of an {COLOR CYAN_G}SOS Mail{RESET}.\0" .align 2,0 .global gUnknown_80E4928 gUnknown_80E4928: @ 80E4928 -.string "Received the {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}.\n" +.string "Received the {COLOR CYAN_G}SOS Mail{RESET}.\n" .string "Your adventure will be saved.\0" .align 2,0 .global gUnknown_80E4964 gUnknown_80E4964: @ 80E4964 .string "This password does not appear to be\n" -.string "an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.\0" +.string "an {COLOR CYAN_G}A-OK Mail{RESET}.\0" .align 2,0 .global gUnknown_80E499C @@ -509,5 +509,5 @@ gUnknown_80E499C: @ 80E499C .global gUnknown_80E49C4 gUnknown_80E49C4: @ 80E49C4 .string "This password does not appear to be\n" -.string "that of a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}.\0" +.string "that of a {COLOR CYAN_G}Thank-You Mail{RESET}.\0" .align 2,0 diff --git a/data/item/item_descriptions.s b/data/item/item_descriptions.s index 8fbcb2497..c73767313 100644 --- a/data/item/item_descriptions.s +++ b/data/item/item_descriptions.s @@ -8,19 +8,19 @@ ItemDescriptionSpike: .global ItemDescriptionRock ItemDescriptionRock: -.string "A throwing item that flies in an arc to{NEW_LINE}clear obstacles and strike the target.{NEW_LINE}It is not affected by {COLOR_2 CYAN}Pierce{END_COLOR_TEXT_2} or {COLOR_2 CYAN}Long Toss{END_COLOR_TEXT_2}{NEW_LINE}statuses.\n\0" +.string "A throwing item that flies in an arc to{NEW_LINE}clear obstacles and strike the target.{NEW_LINE}It is not affected by {color CYAN}Pierce{reset} or {color CYAN}Long Toss{reset}{NEW_LINE}statuses.\n\0" .global ItemDescriptionMobileScarf ItemDescriptionMobileScarf: -.string "A hold item that enables the Pokémon to{NEW_LINE}move and attack through walls and on{NEW_LINE}magma, etc.{NEW_LINE}The Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} will go down faster{NEW_LINE}while traveling through walls, however.\n\0" +.string "A hold item that enables the Pokémon to{NEW_LINE}move and attack through walls and on{NEW_LINE}magma, etc.{NEW_LINE}The Pokémon's {color YELLOW}Belly{reset} will go down faster{NEW_LINE}while traveling through walls, however.\n\0" .global ItemDescriptionHealRibbon ItemDescriptionHealRibbon: -.string "A hold item that speeds up the Pokémon's{NEW_LINE}natural {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} regeneration.{NEW_LINE}The Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} will go down faster,{NEW_LINE}however.\n\0" +.string "A hold item that speeds up the Pokémon's{NEW_LINE}natural {color YELLOW}HP{reset} regeneration.{NEW_LINE}The Pokémon's {color YELLOW}Belly{reset} will go down faster,{NEW_LINE}however.\n\0" .global ItemDescriptionTwistBand ItemDescriptionTwistBand: -.string "A hold item that prevents the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2} from going{NEW_LINE}down.\n\0" +.string "A hold item that prevents the Pokémon's{NEW_LINE}{color YELLOW}Attack{reset} and {color YELLOW}Special Attack{reset} from going{NEW_LINE}down.\n\0" .global ItemDescriptionScopeLens ItemDescriptionScopeLens: @@ -48,19 +48,19 @@ ItemDescriptionXRaySpecs: .global ItemDescriptionPersimBand ItemDescriptionPersimBand: -.string "A hold item that prevents the Pokémon{NEW_LINE}from becoming {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2}.\n\0" +.string "A hold item that prevents the Pokémon{NEW_LINE}from becoming {color CYAN}Confused{reset}.\n\0" .global ItemDescriptionPowerBand ItemDescriptionPowerBand: -.string "A hold item that boosts the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}.\n\0" +.string "A hold item that boosts the Pokémon's{NEW_LINE}{color YELLOW}Attack{reset}.\n\0" .global ItemDescriptionPechaScarf ItemDescriptionPechaScarf: -.string "A hold item that prevents the Pokémon{NEW_LINE}from being {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2} or {COLOR_2 CYAN}badly poisoned{END_COLOR_TEXT_2}.\n\0" +.string "A hold item that prevents the Pokémon{NEW_LINE}from being {color CYAN}poisoned{reset} or {color CYAN}badly poisoned{reset}.\n\0" .global ItemDescriptionInsomniscope ItemDescriptionInsomniscope: -.string "A hold item that prevents the Pokémon{NEW_LINE}from going to {COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}, {COLOR_2 CYAN}napping{END_COLOR_TEXT_2}, having{NEW_LINE}a {COLOR_2 CYAN}nightmare{END_COLOR_TEXT_2}, or {COLOR_2 CYAN}yawning{END_COLOR_TEXT_2}.\n\0" +.string "A hold item that prevents the Pokémon{NEW_LINE}from going to {color CYAN}sleep{reset}, {color CYAN}napping{reset}, having{NEW_LINE}a {color CYAN}nightmare{reset}, or {color CYAN}yawning{reset}.\n\0" .global ItemDescriptionWarpScarf ItemDescriptionWarpScarf: @@ -68,7 +68,7 @@ ItemDescriptionWarpScarf: .global ItemDescriptionTightBelt ItemDescriptionTightBelt: -.string "A hold item that prevents the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} from going down each turn.\n\0" +.string "A hold item that prevents the Pokémon's{NEW_LINE}{color YELLOW}Belly{reset} from going down each turn.\n\0" .global ItemDescriptionSneakScarf ItemDescriptionSneakScarf: @@ -80,11 +80,11 @@ ItemDescriptionGoldRibbon: .global ItemDescriptionGoggleSpecs ItemDescriptionGoggleSpecs: -.string "A hold item that improves the Pokémon's{NEW_LINE}vision.{NEW_LINE}It reveals hidden traps and {COLOR_2 CYAN}invisible{END_COLOR_TEXT_2}{NEW_LINE}Pokémon.\n\0" +.string "A hold item that improves the Pokémon's{NEW_LINE}vision.{NEW_LINE}It reveals hidden traps and {color CYAN}invisible{reset}{NEW_LINE}Pokémon.\n\0" .global ItemDescriptionDietRibbon ItemDescriptionDietRibbon: -.string "A hold item that changes the Pokémon's{NEW_LINE}status to {COLOR_2 CYAN}Hungry Pal{END_COLOR_TEXT_2} and prevents{NEW_LINE}its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} from filling.{NEW_LINE}If the team leader is holding it, its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}{NEW_LINE}will go down faster.\n\0" +.string "A hold item that changes the Pokémon's{NEW_LINE}status to {color CYAN}Hungry Pal{reset} and prevents{NEW_LINE}its {color YELLOW}Belly{reset} from filling.{NEW_LINE}If the team leader is holding it, its {color YELLOW}Belly{reset}{NEW_LINE}will go down faster.\n\0" .global ItemDescriptionTrapScarf ItemDescriptionTrapScarf: @@ -96,11 +96,11 @@ ItemDescriptionRacketBand: .global ItemDescriptionDefScarf ItemDescriptionDefScarf: -.string "A hold item that boosts the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}.\n\0" +.string "A hold item that boosts the Pokémon's{NEW_LINE}{color YELLOW}Defense{reset}.\n\0" .global ItemDescriptionStaminaBand ItemDescriptionStaminaBand: -.string "A hold item that slows how quickly the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} goes down.\n\0" +.string "A hold item that slows how quickly the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset} goes down.\n\0" .global ItemDescriptionPlainRibbon ItemDescriptionPlainRibbon: @@ -108,15 +108,15 @@ ItemDescriptionPlainRibbon: .global ItemDescriptionSpecialBand ItemDescriptionSpecialBand: -.string "A hold item that boosts the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}.\n\0" +.string "A hold item that boosts the Pokémon's{NEW_LINE}{color YELLOW}Special Attack{reset}.\n\0" .global ItemDescriptionZincBand ItemDescriptionZincBand: -.string "A hold item that boosts the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}.\n\0" +.string "A hold item that boosts the Pokémon's{NEW_LINE}{color YELLOW}Special Defense{reset}.\n\0" .global ItemDescriptionDetectBand ItemDescriptionDetectBand: -.string "A hold item that boosts the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Evasion{END_COLOR_TEXT_2}.\n\0" +.string "A hold item that boosts the Pokémon's{NEW_LINE}{color YELLOW}Evasion{reset}.\n\0" .global ItemDescriptionAlertSpecs ItemDescriptionAlertSpecs: @@ -132,7 +132,7 @@ ItemDescriptionBounceBand: .global ItemDescriptionCurveBand ItemDescriptionCurveBand: -.string "A hold item that makes thrown items{NEW_LINE}bounce off walls and fly sideways.{NEW_LINE}It has no effect if the Pokémon's status{NEW_LINE}is {COLOR_2 CYAN}Pierce{END_COLOR_TEXT_2} or if a rock is thrown.\n\0" +.string "A hold item that makes thrown items{NEW_LINE}bounce off walls and fly sideways.{NEW_LINE}It has no effect if the Pokémon's status{NEW_LINE}is {color CYAN}Pierce{reset} or if a rock is thrown.\n\0" .global ItemDescriptionWhiffSpecs ItemDescriptionWhiffSpecs: @@ -148,11 +148,11 @@ ItemDescriptionLockonSpecs: .global ItemDescriptionMunchBelt ItemDescriptionMunchBelt: -.string "A hold item that slightly boosts the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}.{NEW_LINE}However, it also makes the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} go down faster.\n\0" +.string "A hold item that slightly boosts the{NEW_LINE}Pokémon's {color YELLOW}Attack{reset} and {color YELLOW}Special Attack{reset}.{NEW_LINE}However, it also makes the Pokémon's{NEW_LINE}{color YELLOW}Belly{reset} go down faster.\n\0" .global ItemDescriptionPassScarf ItemDescriptionPassScarf: -.string "A hold item that can enable the{NEW_LINE}Pokémon to pass off the effects of{NEW_LINE}attacks and certain kinds of hostile moves{NEW_LINE}to a Pokémon next to it. However, it also{NEW_LINE}makes the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} go down.\n\0" +.string "A hold item that can enable the{NEW_LINE}Pokémon to pass off the effects of{NEW_LINE}attacks and certain kinds of hostile moves{NEW_LINE}to a Pokémon next to it. However, it also{NEW_LINE}makes the Pokémon's {color YELLOW}Belly{reset} go down.\n\0" .global ItemDescriptionWeatherBand ItemDescriptionWeatherBand: @@ -188,211 +188,211 @@ ItemDescriptionRingF: .global ItemDescriptionHealSeed ItemDescriptionHealSeed: -.string "A food item that heals all status problems.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that heals all status problems.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionWishStone ItemDescriptionWishStone: -.string "A mysterious stone shaped like a musical{NEW_LINE}note.{NEW_LINE}It is said to make a wish come true if it{NEW_LINE}is held while exploring the depths of{NEW_LINE}{COLOR_1 YELLOW_4}Wish Cave{END_COLOR_TEXT_1}.\n\0" +.string "A mysterious stone shaped like a musical{NEW_LINE}note.{NEW_LINE}It is said to make a wish come true if it{NEW_LINE}is held while exploring the depths of{NEW_LINE}{COLOR YELLOW_D}Wish Cave{RESET}.\n\0" .global ItemDescriptionOranBerry ItemDescriptionOranBerry: -.string "A food item that restores {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that restores {color YELLOW}HP{reset}.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionSitrusBerry ItemDescriptionSitrusBerry: -.string "A food item that restores {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.{NEW_LINE}If the Pokémon has full {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}, eating this{NEW_LINE}item will slightly boost its {COLOR_2 YELLOW}Maximum HP{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that restores {color YELLOW}HP{reset}.{NEW_LINE}If the Pokémon has full {color YELLOW}HP{reset}, eating this{NEW_LINE}item will slightly boost its {color YELLOW}Maximum HP{reset}.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionEyedropSeed ItemDescriptionEyedropSeed: -.string "A food item that changes the Pokémon's{NEW_LINE}status to {COLOR_2 CYAN}Eyedrops{END_COLOR_TEXT_2}.{NEW_LINE}It reveals hidden traps and {COLOR_2 CYAN}invisible{END_COLOR_TEXT_2}{NEW_LINE}Pokémon.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that changes the Pokémon's{NEW_LINE}status to {color CYAN}Eyedrops{reset}.{NEW_LINE}It reveals hidden traps and {color CYAN}invisible{reset}{NEW_LINE}Pokémon.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionReviverSeed ItemDescriptionReviverSeed: -.string "An item that could revive a fainted{NEW_LINE}Pokémon.{NEW_LINE}It becomes a Plain Seed after use.{NEW_LINE}If held, it revives only the holder.{NEW_LINE}It can only be used by an {COLOR_2 YELLOW}Item Master{END_COLOR_TEXT_2}.\n\0" +.string "An item that could revive a fainted{NEW_LINE}Pokémon.{NEW_LINE}It becomes a Plain Seed after use.{NEW_LINE}If held, it revives only the holder.{NEW_LINE}It can only be used by an {color YELLOW}Item Master{reset}.\n\0" .global ItemDescriptionBlinkerSeed ItemDescriptionBlinkerSeed: -.string "A food item that gives the Pokémon{NEW_LINE}{COLOR_2 CYAN}Blinker{END_COLOR_TEXT_2} status.{NEW_LINE}It makes other Pokémon, unclaimed{NEW_LINE}items, and the ground impossible to see.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that gives the Pokémon{NEW_LINE}{color CYAN}Blinker{reset} status.{NEW_LINE}It makes other Pokémon, unclaimed{NEW_LINE}items, and the ground impossible to see.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionDoomSeed ItemDescriptionDoomSeed: -.string "A food item that lowers the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}level{END_COLOR_TEXT_2} by one.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that lowers the Pokémon's{NEW_LINE}{color YELLOW}level{reset} by one.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionAllureSeed ItemDescriptionAllureSeed: -.string "A food item that gives the Pokémon{NEW_LINE}{COLOR_2 CYAN}Cross-Eyed{END_COLOR_TEXT_2} status.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that gives the Pokémon{NEW_LINE}{color CYAN}Cross-Eyed{reset} status.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionLifeSeed ItemDescriptionLifeSeed: -.string "A food item that slightly boosts the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Maximum HP{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that slightly boosts the{NEW_LINE}Pokémon's {color YELLOW}Maximum HP{reset}.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionRawstBerry ItemDescriptionRawstBerry: -.string "A food item that heals the Pokémon's {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that heals the Pokémon's {color CYAN}burn{reset}.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionHungerSeed ItemDescriptionHungerSeed: -.string "A food item that slightly lowers the{NEW_LINE}Pokémon's maximum {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} size.{NEW_LINE}If used by a Pokémon other than the{NEW_LINE}leader, its status changes to {COLOR_2 CYAN}Hungry Pal{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that slightly lowers the{NEW_LINE}Pokémon's maximum {color YELLOW}Belly{reset} size.{NEW_LINE}If used by a Pokémon other than the{NEW_LINE}leader, its status changes to {color CYAN}Hungry Pal{reset}.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionQuickSeed ItemDescriptionQuickSeed: -.string "A food item that boosts the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} by one level.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that boosts the Pokémon's{NEW_LINE}{color YELLOW}Movement Speed{reset} by one level.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionPechaBerry ItemDescriptionPechaBerry: -.string "A food item that heals the Pokémon when{NEW_LINE}{COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2} or {COLOR_2 CYAN}badly poisoned{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that heals the Pokémon when{NEW_LINE}{color CYAN}poisoned{reset} or {color CYAN}badly poisoned{reset}.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionCheriBerry ItemDescriptionCheriBerry: -.string "A food item that heals the Pokémon from{NEW_LINE}{COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that heals the Pokémon from{NEW_LINE}{color CYAN}paralysis{reset}.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionTotterSeed ItemDescriptionTotterSeed: -.string "A food item that makes the Pokémon{NEW_LINE}{COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.{NEW_LINE}The Pokémon's movements turn erratic,{NEW_LINE}and its attacks and moves may hit friends.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that makes the Pokémon{NEW_LINE}{color CYAN}confused{reset}.{NEW_LINE}The Pokémon's movements turn erratic,{NEW_LINE}and its attacks and moves may hit friends.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionSleepSeed ItemDescriptionSleepSeed: -.string "A food item that makes the user{NEW_LINE}{COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}.{NEW_LINE}The Pokémon will be unable to do anything.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that makes the user{NEW_LINE}{color CYAN}sleep{reset}.{NEW_LINE}The Pokémon will be unable to do anything.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionPlainSeed ItemDescriptionPlainSeed: -.string "A food item that has no special effect.{NEW_LINE}It does slightly fill the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that has no special effect.{NEW_LINE}It does slightly fill the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionWarpSeed ItemDescriptionWarpSeed: -.string "A food item that warps the Pokémon to{NEW_LINE}a different place on the same floor.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that warps the Pokémon to{NEW_LINE}a different place on the same floor.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionBlastSeed ItemDescriptionBlastSeed: -.string "A food item that makes the Pokémon{NEW_LINE}breathe highly damaging fire.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that makes the Pokémon{NEW_LINE}breathe highly damaging fire.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionGinseng ItemDescriptionGinseng: -.string "A drink that boosts the power of the{NEW_LINE}Pokémon's set move.{NEW_LINE}It may not have any effect on certain{NEW_LINE}kinds of moves.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A drink that boosts the power of the{NEW_LINE}Pokémon's set move.{NEW_LINE}It may not have any effect on certain{NEW_LINE}kinds of moves.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionJoySeed ItemDescriptionJoySeed: -.string "A food item that raises the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}level{END_COLOR_TEXT_2} by one.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that raises the Pokémon's{NEW_LINE}{color YELLOW}level{reset} by one.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionChestoBerry ItemDescriptionChestoBerry: -.string "A food item that causes the Pokémon to{NEW_LINE}become {COLOR_2 CYAN}sleepless{END_COLOR_TEXT_2}.{NEW_LINE}The Pokémon will not be able to go to{NEW_LINE}{COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that causes the Pokémon to{NEW_LINE}become {color CYAN}sleepless{reset}.{NEW_LINE}The Pokémon will not be able to go to{NEW_LINE}{color CYAN}sleep{reset}.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionStunSeed ItemDescriptionStunSeed: -.string "A food item that causes the Pokémon to{NEW_LINE}become {COLOR_2 CYAN}petrified{END_COLOR_TEXT_2}.{NEW_LINE}The Pokémon will be unable to do anything{NEW_LINE}until it takes damage.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A food item that causes the Pokémon to{NEW_LINE}become {color CYAN}petrified{reset}.{NEW_LINE}The Pokémon will be unable to do anything{NEW_LINE}until it takes damage.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionMaxElixir ItemDescriptionMaxElixir: -.string "A drink that completely restores the{NEW_LINE}{COLOR_2 YELLOW}PP{END_COLOR_TEXT_2} of all the Pokémon's moves.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A drink that completely restores the{NEW_LINE}{color YELLOW}PP{reset} of all the Pokémon's moves.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionProtein ItemDescriptionProtein: -.string "A drink that boosts the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A drink that boosts the Pokémon's{NEW_LINE}{color YELLOW}Attack{reset}.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionCalcium ItemDescriptionCalcium: -.string "A drink that boosts the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A drink that boosts the Pokémon's{NEW_LINE}{color YELLOW}Special Attack{reset}.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionIron ItemDescriptionIron: -.string "A drink that boosts the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A drink that boosts the Pokémon's{NEW_LINE}{color YELLOW}Defense{reset}.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionZinc ItemDescriptionZinc: -.string "A drink that boosts the Pokémon's{NEW_LINE}{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly fills the Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.\n\0" +.string "A drink that boosts the Pokémon's{NEW_LINE}{color YELLOW}Special Defense{reset}.{NEW_LINE}It also slightly fills the Pokémon's {color YELLOW}Belly{reset}.\n\0" .global ItemDescriptionApple ItemDescriptionApple: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}Eating this when its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} is full will{NEW_LINE}slightly enlarge its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} size.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset}.{NEW_LINE}Eating this when its {color YELLOW}Belly{reset} is full will{NEW_LINE}slightly enlarge its {color YELLOW}Belly{reset} size.\n\0" .global ItemDescriptionBigApple ItemDescriptionBigApple: -.string "A food item that amply fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}Eating this when its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} is full will{NEW_LINE}slightly enlarge its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} size.\n\0" +.string "A food item that amply fills the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset}.{NEW_LINE}Eating this when its {color YELLOW}Belly{reset} is full will{NEW_LINE}slightly enlarge its {color YELLOW}Belly{reset} size.\n\0" .global ItemDescriptionGrimyFood ItemDescriptionGrimyFood: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}However, it will cause a variety of{NEW_LINE}status problems.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset}.{NEW_LINE}However, it will cause a variety of{NEW_LINE}status problems.\n\0" .global ItemDescriptionHugeApple ItemDescriptionHugeApple: -.string "A food item that completely fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}It also slightly enlarges the {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} size.\n\0" +.string "A food item that completely fills the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset}.{NEW_LINE}It also slightly enlarges the {color YELLOW}Belly{reset} size.\n\0" .global ItemDescriptionWhiteGummi ItemDescriptionWhiteGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Normal-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {color YELLOW}IQ{reset}.{NEW_LINE}Normal-type Pokémon like it the best.\n\0" .global ItemDescriptionRedGummi ItemDescriptionRedGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Fire-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {color YELLOW}IQ{reset}.{NEW_LINE}Fire-type Pokémon like it the best.\n\0" .global ItemDescriptionBlueGummi ItemDescriptionBlueGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Water-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {color YELLOW}IQ{reset}.{NEW_LINE}Water-type Pokémon like it the best.\n\0" .global ItemDescriptionGrassGummi ItemDescriptionGrassGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Grass-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {color YELLOW}IQ{reset}.{NEW_LINE}Grass-type Pokémon like it the best.\n\0" .global ItemDescriptionYellowGummi ItemDescriptionYellowGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Electric-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {color YELLOW}IQ{reset}.{NEW_LINE}Electric-type Pokémon like it the best.\n\0" .global ItemDescriptionClearGummi ItemDescriptionClearGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Ice-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {color YELLOW}IQ{reset}.{NEW_LINE}Ice-type Pokémon like it the best.\n\0" .global ItemDescriptionOrangeGummi ItemDescriptionOrangeGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Fighting-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {color YELLOW}IQ{reset}.{NEW_LINE}Fighting-type Pokémon like it the best.\n\0" .global ItemDescriptionPinkGummi ItemDescriptionPinkGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Poison-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {color YELLOW}IQ{reset}.{NEW_LINE}Poison-type Pokémon like it the best.\n\0" .global ItemDescriptionBrownGummi ItemDescriptionBrownGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Ground-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {color YELLOW}IQ{reset}.{NEW_LINE}Ground-type Pokémon like it the best.\n\0" .global ItemDescriptionSkyGummi ItemDescriptionSkyGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Flying-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {color YELLOW}IQ{reset}.{NEW_LINE}Flying-type Pokémon like it the best.\n\0" .global ItemDescriptionGoldGummi ItemDescriptionGoldGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Psychic-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {color YELLOW}IQ{reset}.{NEW_LINE}Psychic-type Pokémon like it the best.\n\0" .global ItemDescriptionGreenGummi ItemDescriptionGreenGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Bug-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {color YELLOW}IQ{reset}.{NEW_LINE}Bug-type Pokémon like it the best.\n\0" .global ItemDescriptionGrayGummi ItemDescriptionGrayGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Rock-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {color YELLOW}IQ{reset}.{NEW_LINE}Rock-type Pokémon like it the best.\n\0" .global ItemDescriptionPurpleGummi ItemDescriptionPurpleGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Ghost-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {color YELLOW}IQ{reset}.{NEW_LINE}Ghost-type Pokémon like it the best.\n\0" .global ItemDescriptionRoyalGummi ItemDescriptionRoyalGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Dragon-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {color YELLOW}IQ{reset}.{NEW_LINE}Dragon-type Pokémon like it the best.\n\0" .global ItemDescriptionBlackGummi ItemDescriptionBlackGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Dark-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {color YELLOW}IQ{reset}.{NEW_LINE}Dark-type Pokémon like it the best.\n\0" .global ItemDescriptionSilverGummi ItemDescriptionSilverGummi: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.{NEW_LINE}Steel-type Pokémon like it the best.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset}.{NEW_LINE}When given to a rescue team member,{NEW_LINE}it raises the Pokémon's {color YELLOW}IQ{reset}.{NEW_LINE}Steel-type Pokémon like it the best.\n\0" .global ItemDescriptionBanana ItemDescriptionBanana: -.string "A rare food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}Eating this when its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} is full will{NEW_LINE}slightly enlarge its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} size.{NEW_LINE}It is occasionally found inside walls.\n\0" +.string "A rare food item that somewhat fills the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset}.{NEW_LINE}Eating this when its {color YELLOW}Belly{reset} is full will{NEW_LINE}slightly enlarge its {color YELLOW}Belly{reset} size.{NEW_LINE}It is occasionally found inside walls.\n\0" .global ItemDescriptionChestnut ItemDescriptionChestnut: -.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2}.{NEW_LINE}Mankey love to eat this.\n\0" +.string "A food item that somewhat fills the{NEW_LINE}Pokémon's {color YELLOW}Belly{reset}.{NEW_LINE}Mankey love to eat this.\n\0" .global ItemDescriptionPoke ItemDescriptionPoke: @@ -408,15 +408,15 @@ ItemDescriptionEvolutionItemMulti: .global ItemDescriptionIcePart ItemDescriptionIcePart: -.string "An item that was guarded by {COLOR_1 YELLOW_5}Regice{END_COLOR_TEXT_1}.{NEW_LINE}It may be related to this saying about the{NEW_LINE}{COLOR_1 YELLOW_4}Buried Relic{END_COLOR_TEXT_1}: “Three parts guarded by{NEW_LINE}three servants. When they are one again,{NEW_LINE}a mirage shall appear to the bearer.”\n\0" +.string "An item that was guarded by {COLOR YELLOW_N}Regice{RESET}.{NEW_LINE}It may be related to this saying about the{NEW_LINE}{COLOR YELLOW_D}Buried Relic{RESET}: “Three parts guarded by{NEW_LINE}three servants. When they are one again,{NEW_LINE}a mirage shall appear to the bearer.”\n\0" .global ItemDescriptionSteelPart ItemDescriptionSteelPart: -.string "A mysterious item that was guarded by{NEW_LINE}{COLOR_1 YELLOW_5}Registeel{END_COLOR_TEXT_1}.{NEW_LINE}{COLOR_1 YELLOW_5}Regirock{END_COLOR_TEXT_1} and {COLOR_1 YELLOW_5}Regice{END_COLOR_TEXT_1} also guarded parts{NEW_LINE}in similar fashion.{NEW_LINE}What is the secret behind these parts?\n\0" +.string "A mysterious item that was guarded by{NEW_LINE}{COLOR YELLOW_N}Registeel{RESET}.{NEW_LINE}{COLOR YELLOW_N}Regirock{RESET} and {COLOR YELLOW_N}Regice{RESET} also guarded parts{NEW_LINE}in similar fashion.{NEW_LINE}What is the secret behind these parts?\n\0" .global ItemDescriptionRockPart ItemDescriptionRockPart: -.string "A mysterious item that was jealously{NEW_LINE}guarded by {COLOR_1 YELLOW_5}Regirock{END_COLOR_TEXT_1}.{NEW_LINE}How it is to be used remains unknown,{NEW_LINE}however.\n\0" +.string "A mysterious item that was jealously{NEW_LINE}guarded by {COLOR YELLOW_N}Regirock{RESET}.{NEW_LINE}How it is to be used remains unknown,{NEW_LINE}however.\n\0" .global ItemDescriptionMusicBox ItemDescriptionMusicBox: @@ -428,219 +428,219 @@ ItemDescriptionKey: .global ItemDescriptionUsedTM ItemDescriptionUsedTM: -.string "The remains of the item {ARG_MOVE_ITEM_0}{NEW_LINE}after use.{NEW_LINE}It can be restored using the move {COLOR_2 GREEN}Recycle{END_COLOR_TEXT_2}.{NEW_LINE}This item cannot be placed in storage.\n\0" +.string "The remains of the item {MOVE_ITEM_0}{NEW_LINE}after use.{NEW_LINE}It can be restored using the move {color GREEN}Recycle{reset}.{NEW_LINE}This item cannot be placed in storage.\n\0" .global ItemDescriptionFocusPunch ItemDescriptionFocusPunch: -.string "Teaches the move {COLOR_2 GREEN}Focus Punch{END_COLOR_TEXT_2}.{NEW_LINE}The user's status changes to {COLOR_2 CYAN}Focus Punch{END_COLOR_TEXT_2},{NEW_LINE}and it attacks on the next turn.{NEW_LINE}It is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\n\0" +.string "Teaches the move {color GREEN}Focus Punch{reset}.{NEW_LINE}The user's status changes to {color CYAN}Focus Punch{reset},{NEW_LINE}and it attacks on the next turn.{NEW_LINE}It is not possible to {color CYAN}link{reset} this move.\n\0" .global ItemDescriptionDragonClaw ItemDescriptionDragonClaw: -.string "Teaches the move {COLOR_2 GREEN}Dragon Claw{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.\n\0" +.string "Teaches the move {color GREEN}Dragon Claw{reset}.{NEW_LINE}It inflicts damage on the target.\n\0" .global ItemDescriptionWaterPulse ItemDescriptionWaterPulse: -.string "Teaches the move {COLOR_2 GREEN}Water Pulse{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target even at a{NEW_LINE}distance.{NEW_LINE}It may also leave the target {COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.\n\0" +.string "Teaches the move {color GREEN}Water Pulse{reset}.{NEW_LINE}It inflicts damage on the target even at a{NEW_LINE}distance.{NEW_LINE}It may also leave the target {color CYAN}confused{reset}.\n\0" .global ItemDescriptionCalmMind ItemDescriptionCalmMind: -.string "Teaches the move {COLOR_2 GREEN}Calm Mind{END_COLOR_TEXT_2}.{NEW_LINE}It raises the Pokémon's {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}{NEW_LINE}and {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by one level.\n\0" +.string "Teaches the move {color GREEN}Calm Mind{reset}.{NEW_LINE}It raises the Pokémon's {color YELLOW}Special Attack{reset}{NEW_LINE}and {color YELLOW}Special Defense{reset} by one level.\n\0" .global ItemDescriptionRoar ItemDescriptionRoar: -.string "Teaches the move {COLOR_2 GREEN}Roar{END_COLOR_TEXT_2}.{NEW_LINE}It sends the target flying.{NEW_LINE}If the foe hits a wall or another{NEW_LINE}Pokémon, it sustains damage.\n\0" +.string "Teaches the move {color GREEN}Roar{reset}.{NEW_LINE}It sends the target flying.{NEW_LINE}If the foe hits a wall or another{NEW_LINE}Pokémon, it sustains damage.\n\0" .global ItemDescriptionToxic ItemDescriptionToxic: -.string "Teaches the move {COLOR_2 GREEN}Toxic{END_COLOR_TEXT_2}.{NEW_LINE}It {COLOR_2 CYAN}badly poisons{END_COLOR_TEXT_2} the foe Pokémon.{NEW_LINE}If a Pokémon is {COLOR_2 CYAN}badly poisoned{END_COLOR_TEXT_2}, it{NEW_LINE}sustains damage over several turns.\n\0" +.string "Teaches the move {color GREEN}Toxic{reset}.{NEW_LINE}It {color CYAN}badly poisons{reset} the foe Pokémon.{NEW_LINE}If a Pokémon is {color CYAN}badly poisoned{reset}, it{NEW_LINE}sustains damage over several turns.\n\0" .global ItemDescriptionHail ItemDescriptionHail: -.string "An item that changes the dungeon floor's{NEW_LINE}weather to {COLOR_2 CYAN}Hail{END_COLOR_TEXT_2} for several turns.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: All Pokémon on floor\n\0" +.string "An item that changes the dungeon floor's{NEW_LINE}weather to {color CYAN}Hail{reset} for several turns.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: All Pokémon on floor\n\0" .global ItemDescriptionBulkUp ItemDescriptionBulkUp: -.string "Teaches the move {COLOR_2 GREEN}Bulk Up{END_COLOR_TEXT_2}.{NEW_LINE}It boosts the user's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}{NEW_LINE}by one level.\n\0" +.string "Teaches the move {color GREEN}Bulk Up{reset}.{NEW_LINE}It boosts the user's {color YELLOW}Attack{reset} and {color YELLOW}Defense{reset}{NEW_LINE}by one level.\n\0" .global ItemDescriptionBulletSeed ItemDescriptionBulletSeed: -.string "Teaches the move {COLOR_2 GREEN}Bullet Seed{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target even at a{NEW_LINE}distance.{NEW_LINE}It hits two to five times per use.\n\0" +.string "Teaches the move {color GREEN}Bullet Seed{reset}.{NEW_LINE}It inflicts damage on the target even at a{NEW_LINE}distance.{NEW_LINE}It hits two to five times per use.\n\0" .global ItemDescriptionHiddenPower ItemDescriptionHiddenPower: -.string "Teaches the move {COLOR_2 GREEN}Hidden Power{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}Its type and power change with the{NEW_LINE}dungeon.\n\0" +.string "Teaches the move {color GREEN}Hidden Power{reset}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}Its type and power change with the{NEW_LINE}dungeon.\n\0" .global ItemDescriptionSunnyDay ItemDescriptionSunnyDay: -.string "An item that changes the dungeon floor's{NEW_LINE}weather to {COLOR_2 CYAN}Sunny{END_COLOR_TEXT_2} for several turns.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: All Pokémon on floor\n\0" +.string "An item that changes the dungeon floor's{NEW_LINE}weather to {color CYAN}Sunny{reset} for several turns.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: All Pokémon on floor\n\0" .global ItemDescriptionTaunt ItemDescriptionTaunt: -.string "Teaches the move {COLOR_2 GREEN}Taunt{END_COLOR_TEXT_2}.{NEW_LINE}The targeted Pokémon's status changes{NEW_LINE}to {COLOR_2 CYAN}Taunted{END_COLOR_TEXT_2}.\n\0" +.string "Teaches the move {color GREEN}Taunt{reset}.{NEW_LINE}The targeted Pokémon's status changes{NEW_LINE}to {color CYAN}Taunted{reset}.\n\0" .global ItemDescriptionIceBeam ItemDescriptionIceBeam: -.string "Teaches the move {COLOR_2 GREEN}Ice Beam{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target even at a{NEW_LINE}distance. It may also leave the target{NEW_LINE}{COLOR_2 CYAN}frozen{END_COLOR_TEXT_2} and incapable of action.\n\0" +.string "Teaches the move {color GREEN}Ice Beam{reset}.{NEW_LINE}It inflicts damage on the target even at a{NEW_LINE}distance. It may also leave the target{NEW_LINE}{color CYAN}frozen{reset} and incapable of action.\n\0" .global ItemDescriptionBlizzard ItemDescriptionBlizzard: -.string "Teaches the move {COLOR_2 GREEN}Blizzard{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It may also leave the target {COLOR_2 CYAN}frozen{END_COLOR_TEXT_2} and{NEW_LINE}incapable of action.\n\0" +.string "Teaches the move {color GREEN}Blizzard{reset}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It may also leave the target {color CYAN}frozen{reset} and{NEW_LINE}incapable of action.\n\0" .global ItemDescriptionHyperBeam ItemDescriptionHyperBeam: -.string "Teaches the move {COLOR_2 GREEN}Hyper Beam{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target even at a{NEW_LINE}distance. However, it also makes the user{NEW_LINE}{COLOR_2 CYAN}paused{END_COLOR_TEXT_2} and incapable of action.\n\0" +.string "Teaches the move {color GREEN}Hyper Beam{reset}.{NEW_LINE}It inflicts damage on the target even at a{NEW_LINE}distance. However, it also makes the user{NEW_LINE}{color CYAN}paused{reset} and incapable of action.\n\0" .global ItemDescriptionLightScreen ItemDescriptionLightScreen: -.string "Teaches the move {COLOR_2 GREEN}Light Screen{END_COLOR_TEXT_2}.{NEW_LINE}It makes the user's status {COLOR_2 CYAN}Light Screen{END_COLOR_TEXT_2}.{NEW_LINE}It halves the damage from{NEW_LINE}{COLOR_2 CYAN}Special Attack moves{END_COLOR_TEXT_2}.\n\0" +.string "Teaches the move {color GREEN}Light Screen{reset}.{NEW_LINE}It makes the user's status {color CYAN}Light Screen{reset}.{NEW_LINE}It halves the damage from{NEW_LINE}{color CYAN}Special Attack moves{reset}.\n\0" .global ItemDescriptionProtect ItemDescriptionProtect: -.string "Teaches the move {COLOR_2 GREEN}Protect{END_COLOR_TEXT_2}.{NEW_LINE}It changes the Pokémon's status to{NEW_LINE}{COLOR_2 CYAN}Protect{END_COLOR_TEXT_2} and prevents damage from{NEW_LINE}enemy attacks and moves.\n\0" +.string "Teaches the move {color GREEN}Protect{reset}.{NEW_LINE}It changes the Pokémon's status to{NEW_LINE}{color CYAN}Protect{reset} and prevents damage from{NEW_LINE}enemy attacks and moves.\n\0" .global ItemDescriptionRainDance ItemDescriptionRainDance: -.string "An item that changes the dungeon floor's{NEW_LINE}weather to {COLOR_2 CYAN}Rain{END_COLOR_TEXT_2} for several turns.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: All Pokémon on floor\n\0" +.string "An item that changes the dungeon floor's{NEW_LINE}weather to {color CYAN}Rain{reset} for several turns.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: All Pokémon on floor\n\0" .global ItemDescriptionGigaDrain ItemDescriptionGigaDrain: -.string "Teaches the move {COLOR_2 GREEN}Giga Drain{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It also restores the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} based{NEW_LINE}on the damage it inflicted.\n\0" +.string "Teaches the move {color GREEN}Giga Drain{reset}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It also restores the user's {color YELLOW}HP{reset} based{NEW_LINE}on the damage it inflicted.\n\0" .global ItemDescriptionSafeguard ItemDescriptionSafeguard: -.string "Teaches the move {COLOR_2 GREEN}Safeguard{END_COLOR_TEXT_2}.{NEW_LINE}It changes the status of the user and team{NEW_LINE}members in the same room to {COLOR_2 CYAN}Safeguard{END_COLOR_TEXT_2}{NEW_LINE}and prevents status problems.\n\0" +.string "Teaches the move {color GREEN}Safeguard{reset}.{NEW_LINE}It changes the status of the user and team{NEW_LINE}members in the same room to {color CYAN}Safeguard{reset}{NEW_LINE}and prevents status problems.\n\0" .global ItemDescriptionFrustration ItemDescriptionFrustration: -.string "Teaches the move {COLOR_2 GREEN}Frustration{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target and{NEW_LINE}inflicts greater damage if the user's{NEW_LINE}{COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2} is low.\n\0" +.string "Teaches the move {color GREEN}Frustration{reset}.{NEW_LINE}It inflicts damage on the target and{NEW_LINE}inflicts greater damage if the user's{NEW_LINE}{color YELLOW}IQ{reset} is low.\n\0" .global ItemDescriptionSolarBeam ItemDescriptionSolarBeam: -.string "Teaches the move {COLOR_2 GREEN}Solarbeam{END_COLOR_TEXT_2}.{NEW_LINE}The user's status becomes {COLOR_2 CYAN}Solarbeam{END_COLOR_TEXT_2},{NEW_LINE}and it attacks on the next turn.{NEW_LINE}It is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\n\0" +.string "Teaches the move {color GREEN}Solarbeam{reset}.{NEW_LINE}The user's status becomes {color CYAN}Solarbeam{reset},{NEW_LINE}and it attacks on the next turn.{NEW_LINE}It is not possible to {color CYAN}link{reset} this move.\n\0" .global ItemDescriptionIronTail ItemDescriptionIronTail: -.string "Teaches the move {COLOR_2 GREEN}Iron Tail{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It may also lower the target's {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}{NEW_LINE}by one level.\n\0" +.string "Teaches the move {color GREEN}Iron Tail{reset}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It may also lower the target's {color YELLOW}Defense{reset}{NEW_LINE}by one level.\n\0" .global ItemDescriptionThunderbolt ItemDescriptionThunderbolt: -.string "Teaches the move {COLOR_2 GREEN}Thunderbolt{END_COLOR_TEXT_2}.{NEW_LINE}It damages all foes around the user.{NEW_LINE}It may also cause {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}, which{NEW_LINE}prevents attacks and moves.\n\0" +.string "Teaches the move {color GREEN}Thunderbolt{reset}.{NEW_LINE}It damages all foes around the user.{NEW_LINE}It may also cause {color CYAN}paralysis{reset}, which{NEW_LINE}prevents attacks and moves.\n\0" .global ItemDescriptionThunder ItemDescriptionThunder: -.string "Teaches the move {COLOR_2 GREEN}Thunder{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target{NEW_LINE}and may also cause {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}.{NEW_LINE}Its accuracy is affected by the weather.\n\0" +.string "Teaches the move {color GREEN}Thunder{reset}.{NEW_LINE}It inflicts damage on the target{NEW_LINE}and may also cause {color CYAN}paralysis{reset}.{NEW_LINE}Its accuracy is affected by the weather.\n\0" .global ItemDescriptionEarthquake ItemDescriptionEarthquake: -.string "Teaches the move {COLOR_2 GREEN}Earthquake{END_COLOR_TEXT_2}.{NEW_LINE}It damages all Pokémon in the same room.{NEW_LINE}It inflicts double damage on any {COLOR_2 CYAN}digging{END_COLOR_TEXT_2}{NEW_LINE}Pokémon.\n\0" +.string "Teaches the move {color GREEN}Earthquake{reset}.{NEW_LINE}It damages all Pokémon in the same room.{NEW_LINE}It inflicts double damage on any {color CYAN}digging{reset}{NEW_LINE}Pokémon.\n\0" .global ItemDescriptionReturn ItemDescriptionReturn: -.string "Teaches the move {COLOR_2 GREEN}Return{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}Its power rises with the user's {COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.\n\0" +.string "Teaches the move {color GREEN}Return{reset}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}Its power rises with the user's {color YELLOW}IQ{reset}.\n\0" .global ItemDescriptionDig ItemDescriptionDig: -.string "Teaches the move {COLOR_2 GREEN}Dig{END_COLOR_TEXT_2}.{NEW_LINE}The user's status becomes {COLOR_2 CYAN}Digging{END_COLOR_TEXT_2},{NEW_LINE}and it attacks on the next turn.{NEW_LINE}It is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\n\0" +.string "Teaches the move {color GREEN}Dig{reset}.{NEW_LINE}The user's status becomes {color CYAN}Digging{reset},{NEW_LINE}and it attacks on the next turn.{NEW_LINE}It is not possible to {color CYAN}link{reset} this move.\n\0" .global ItemDescriptionPsychic ItemDescriptionPsychic: -.string "Teaches the move {COLOR_2 GREEN}Psychic{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It may also lower the target's {COLOR_2 YELLOW}Special{NEW_LINE}Defense{END_COLOR_TEXT_2} by one level.\n\0" +.string "Teaches the move {color GREEN}Psychic{reset}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It may also lower the target's {color YELLOW}Special{NEW_LINE}Defense{reset} by one level.\n\0" .global ItemDescriptionShadowBall ItemDescriptionShadowBall: -.string "Teaches the move {COLOR_2 GREEN}Shadow Ball{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target even at a{NEW_LINE}distance. It may also lower the target's{NEW_LINE}{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by one level.\n\0" +.string "Teaches the move {color GREEN}Shadow Ball{reset}.{NEW_LINE}It inflicts damage on the target even at a{NEW_LINE}distance. It may also lower the target's{NEW_LINE}{color YELLOW}Special Defense{reset} by one level.\n\0" .global ItemDescriptionBrickBreak ItemDescriptionBrickBreak: -.string "Teaches the move {COLOR_2 GREEN}Brick Break{END_COLOR_TEXT_2}.{NEW_LINE}It shatters the target's {COLOR_2 CYAN}Reflect{END_COLOR_TEXT_2}{NEW_LINE}or {COLOR_2 CYAN}Light Screen{END_COLOR_TEXT_2} to inflict damage.\n\0" +.string "Teaches the move {color GREEN}Brick Break{reset}.{NEW_LINE}It shatters the target's {color CYAN}Reflect{reset}{NEW_LINE}or {color CYAN}Light Screen{reset} to inflict damage.\n\0" .global ItemDescriptionDoubleTeam ItemDescriptionDoubleTeam: -.string "An item that raises the user's {COLOR_2 YELLOW}Evasion{END_COLOR_TEXT_2}{NEW_LINE}by one level.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: User\n\0" +.string "An item that raises the user's {color YELLOW}Evasion{reset}{NEW_LINE}by one level.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: User\n\0" .global ItemDescriptionReflect ItemDescriptionReflect: -.string "Teaches the move {COLOR_2 GREEN}Reflect{END_COLOR_TEXT_2}.{NEW_LINE}It makes the user's status {COLOR_2 CYAN}Reflect{END_COLOR_TEXT_2}{NEW_LINE}and halves the damage from all{NEW_LINE}{COLOR_2 CYAN}Physical Attack moves{END_COLOR_TEXT_2} and{NEW_LINE}regular attacks.\n\0" +.string "Teaches the move {color GREEN}Reflect{reset}.{NEW_LINE}It makes the user's status {color CYAN}Reflect{reset}{NEW_LINE}and halves the damage from all{NEW_LINE}{color CYAN}Physical Attack moves{reset} and{NEW_LINE}regular attacks.\n\0" .global ItemDescriptionShockWave ItemDescriptionShockWave: -.string "Teaches the move {COLOR_2 GREEN}Shock Wave{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target even at a{NEW_LINE}distance.{NEW_LINE}It never misses.\n\0" +.string "Teaches the move {color GREEN}Shock Wave{reset}.{NEW_LINE}It inflicts damage on the target even at a{NEW_LINE}distance.{NEW_LINE}It never misses.\n\0" .global ItemDescriptionFlamethrower ItemDescriptionFlamethrower: -.string "Teaches the move {COLOR_2 GREEN}Flamethrower{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target even at a{NEW_LINE}distance. It may also cause a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}.{NEW_LINE}It thaws and frees frozen Pokémon.\n\0" +.string "Teaches the move {color GREEN}Flamethrower{reset}.{NEW_LINE}It inflicts damage on the target even at a{NEW_LINE}distance. It may also cause a {color CYAN}burn{reset}.{NEW_LINE}It thaws and frees frozen Pokémon.\n\0" .global ItemDescriptionSludgeBomb ItemDescriptionSludgeBomb: -.string "Teaches the move {COLOR_2 GREEN}Sludge Bomb{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target even at a{NEW_LINE}distance. It may also leave the target{NEW_LINE}{COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}, damaging it over several turns.\n\0" +.string "Teaches the move {color GREEN}Sludge Bomb{reset}.{NEW_LINE}It inflicts damage on the target even at a{NEW_LINE}distance. It may also leave the target{NEW_LINE}{color CYAN}poisoned{reset}, damaging it over several turns.\n\0" .global ItemDescriptionSandstorm ItemDescriptionSandstorm: -.string "An item that changes the dungeon floor's{NEW_LINE}weather to {COLOR_2 CYAN}Sandstorm{END_COLOR_TEXT_2} for several turns.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: All Pokémon on floor\n\0" +.string "An item that changes the dungeon floor's{NEW_LINE}weather to {color CYAN}Sandstorm{reset} for several turns.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: All Pokémon on floor\n\0" .global ItemDescriptionFireBlast ItemDescriptionFireBlast: -.string "Teaches the move {COLOR_2 GREEN}Fire Blast{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It may also cause a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}.{NEW_LINE}It thaws and frees frozen Pokémon.\n\0" +.string "Teaches the move {color GREEN}Fire Blast{reset}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It may also cause a {color CYAN}burn{reset}.{NEW_LINE}It thaws and frees frozen Pokémon.\n\0" .global ItemDescriptionRockTomb ItemDescriptionRockTomb: -.string "It inflicts damage on the target.{NEW_LINE}It also lowers the target's {COLOR_2 YELLOW}Movement{NEW_LINE}Speed{END_COLOR_TEXT_2} by one level.{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" +.string "It inflicts damage on the target.{NEW_LINE}It also lowers the target's {color YELLOW}Movement{NEW_LINE}Speed{reset} by one level.{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" .global ItemDescriptionAerialAce ItemDescriptionAerialAce: -.string "Teaches the move {COLOR_2 GREEN}Aerial Ace{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It never misses.\n\0" +.string "Teaches the move {color GREEN}Aerial Ace{reset}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It never misses.\n\0" .global ItemDescriptionTorment ItemDescriptionTorment: -.string "Teaches the move {COLOR_2 GREEN}Torment{END_COLOR_TEXT_2}.{NEW_LINE}It prevents the targeted Pokémon from{NEW_LINE}repeating its last move while it{NEW_LINE}remains on the floor.\n\0" +.string "Teaches the move {color GREEN}Torment{reset}.{NEW_LINE}It prevents the targeted Pokémon from{NEW_LINE}repeating its last move while it{NEW_LINE}remains on the floor.\n\0" .global ItemDescriptionFacade ItemDescriptionFacade: -.string "Teaches the move {COLOR_2 GREEN}Facade{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}If the user is {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}, {COLOR_2 CYAN}badly poisoned{END_COLOR_TEXT_2},{NEW_LINE}or has a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}, its power is doubled.\n\0" +.string "Teaches the move {color GREEN}Facade{reset}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}If the user is {color CYAN}poisoned{reset}, {color CYAN}badly poisoned{reset},{NEW_LINE}or has a {color CYAN}burn{reset}, its power is doubled.\n\0" .global ItemDescriptionSecretPower ItemDescriptionSecretPower: -.string "Teaches the move {COLOR_2 GREEN}Secret Power{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It may also trigger other effects{NEW_LINE}depending on the terrain.\n\0" +.string "Teaches the move {color GREEN}Secret Power{reset}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It may also trigger other effects{NEW_LINE}depending on the terrain.\n\0" .global ItemDescriptionRest ItemDescriptionRest: -.string "Teaches the move {COLOR_2 GREEN}Rest{END_COLOR_TEXT_2}.{NEW_LINE}It makes the user go to {COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}.{NEW_LINE}Upon awakening, the Pokémon regains {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}{NEW_LINE}and recovers from any status problems.\n\0" +.string "Teaches the move {color GREEN}Rest{reset}.{NEW_LINE}It makes the user go to {color CYAN}sleep{reset}.{NEW_LINE}Upon awakening, the Pokémon regains {color YELLOW}HP{reset}{NEW_LINE}and recovers from any status problems.\n\0" .global ItemDescriptionAttract ItemDescriptionAttract: -.string "Teaches the move {COLOR_2 GREEN}Attract{END_COLOR_TEXT_2}.{NEW_LINE}It changes the target's status to{NEW_LINE}{COLOR_2 CYAN}Infatuated{END_COLOR_TEXT_2}.\n\0" +.string "Teaches the move {color GREEN}Attract{reset}.{NEW_LINE}It changes the target's status to{NEW_LINE}{color CYAN}Infatuated{reset}.\n\0" .global ItemDescriptionThief ItemDescriptionThief: -.string "Teaches the move {COLOR_2 GREEN}Thief{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It also snatches the target's hold item{NEW_LINE}and makes it the user's hold item.\n\0" +.string "Teaches the move {color GREEN}Thief{reset}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It also snatches the target's hold item{NEW_LINE}and makes it the user's hold item.\n\0" .global ItemDescriptionSteelWIng ItemDescriptionSteelWIng: -.string "Teaches the move {COLOR_2 GREEN}Steel Wing{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It may also raise the user's {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by{NEW_LINE}one level.\n\0" +.string "Teaches the move {color GREEN}Steel Wing{reset}.{NEW_LINE}It inflicts damage on the target.{NEW_LINE}It may also raise the user's {color YELLOW}Defense{reset} by{NEW_LINE}one level.\n\0" .global ItemDescriptionSkillSwap ItemDescriptionSkillSwap: -.string "Teaches the move {COLOR_2 GREEN}Skill Swap{END_COLOR_TEXT_2}.{NEW_LINE}It switches the user's {COLOR_2 YELLOW}Special Ability{END_COLOR_TEXT_2} with{NEW_LINE}that of the target.\n\0" +.string "Teaches the move {color GREEN}Skill Swap{reset}.{NEW_LINE}It switches the user's {color YELLOW}Special Ability{reset} with{NEW_LINE}that of the target.\n\0" .global ItemDescriptionSnatch ItemDescriptionSnatch: -.string "It switches the user's status to {COLOR_2 CYAN}Snatch{END_COLOR_TEXT_2}.{NEW_LINE}It steals the moves of Pokémon on{NEW_LINE}the same floor.{NEW_LINE}{NEW_LINE}Range: User\n\0" +.string "It switches the user's status to {color CYAN}Snatch{reset}.{NEW_LINE}It steals the moves of Pokémon on{NEW_LINE}the same floor.{NEW_LINE}{NEW_LINE}Range: User\n\0" .global ItemDescriptionOverheat ItemDescriptionOverheat: -.string "Teaches the move {COLOR_2 GREEN}Overheat{END_COLOR_TEXT_2}.{NEW_LINE}It damages all foes around the user, but it{NEW_LINE}also lowers the user's {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}{NEW_LINE}by two levels and thaws frozen Pokémon.\n\0" +.string "Teaches the move {color GREEN}Overheat{reset}.{NEW_LINE}It damages all foes around the user, but it{NEW_LINE}also lowers the user's {color YELLOW}Special Attack{reset}{NEW_LINE}by two levels and thaws frozen Pokémon.\n\0" .global ItemDescriptionWideSlash ItemDescriptionWideSlash: -.string "Teaches the move {COLOR_2 GREEN}Wide Slash{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on foes on the 3{NEW_LINE}tiles diagonally and directly in front.\n\0" +.string "Teaches the move {color GREEN}Wide Slash{reset}.{NEW_LINE}It inflicts damage on foes on the 3{NEW_LINE}tiles diagonally and directly in front.\n\0" .global ItemDescriptionExcavate ItemDescriptionExcavate: -.string "Teaches the move {COLOR_2 GREEN}Excavate{END_COLOR_TEXT_2}.{NEW_LINE}It digs through the wall the user is facing.\n\0" +.string "Teaches the move {color GREEN}Excavate{reset}.{NEW_LINE}It digs through the wall the user is facing.\n\0" .global ItemDescriptionSpinSlash ItemDescriptionSpinSlash: -.string "Teaches the move {COLOR_2 GREEN}Spin Slash{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on all foes surrounding{NEW_LINE}the user.\n\0" +.string "Teaches the move {color GREEN}Spin Slash{reset}.{NEW_LINE}It inflicts damage on all foes surrounding{NEW_LINE}the user.\n\0" .global ItemDescriptionSeeTrapOrb ItemDescriptionSeeTrapOrb: @@ -652,7 +652,7 @@ ItemDescriptionMugOrb: .global ItemDescriptionReboundOrb ItemDescriptionReboundOrb: -.string "Changes the user's status to {COLOR_2 CYAN}Mini Counter{END_COLOR_TEXT_2}.{NEW_LINE}Any damage from {COLOR_2 CYAN}Physical Attack moves{END_COLOR_TEXT_2}{NEW_LINE}or a regular attack is partially returned.{NEW_LINE}{NEW_LINE}Range: User\n\0" +.string "Changes the user's status to {color CYAN}Mini Counter{reset}.{NEW_LINE}Any damage from {color CYAN}Physical Attack moves{reset}{NEW_LINE}or a regular attack is partially returned.{NEW_LINE}{NEW_LINE}Range: User\n\0" .global ItemDescriptionLobOrb ItemDescriptionLobOrb: @@ -676,11 +676,11 @@ ItemDescriptionTransferOrb: .global ItemDescriptionSlowOrb ItemDescriptionSlowOrb: -.string "Lowers the {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} of foes in{NEW_LINE}the same room by one level.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: Foes in room\n\0" +.string "Lowers the {color YELLOW}Movement Speed{reset} of foes in{NEW_LINE}the same room by one level.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: Foes in room\n\0" .global ItemDescriptionQuickOrb ItemDescriptionQuickOrb: -.string "Boosts the {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} of the user{NEW_LINE}and team members in the room by one{NEW_LINE}level.{NEW_LINE}{NEW_LINE}Range: All team members in room\n\0" +.string "Boosts the {color YELLOW}Movement Speed{reset} of the user{NEW_LINE}and team members in the room by one{NEW_LINE}level.{NEW_LINE}{NEW_LINE}Range: All team members in room\n\0" .global ItemDescriptionLuminousOrb ItemDescriptionLuminousOrb: @@ -688,11 +688,11 @@ ItemDescriptionLuminousOrb: .global ItemDescriptionPetrifyOrb ItemDescriptionPetrifyOrb: -.string "Changes the status of foes in the room to{NEW_LINE}{COLOR_2 CYAN}Petrified{END_COLOR_TEXT_2}, making them incapable of action.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: Foes in room\n\0" +.string "Changes the status of foes in the room to{NEW_LINE}{color CYAN}Petrified{reset}, making them incapable of action.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: Foes in room\n\0" .global ItemDescriptionStayawayOrb ItemDescriptionStayawayOrb: -.string "Changes the status of the target to{NEW_LINE}{COLOR_2 CYAN}Petrified{END_COLOR_TEXT_2} and warps it near the stairs.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" +.string "Changes the status of the target to{NEW_LINE}{color CYAN}Petrified{reset} and warps it near the stairs.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" .global ItemDescriptionPounceOrb ItemDescriptionPounceOrb: @@ -708,27 +708,27 @@ ItemDescriptionCleanseOrb: .global ItemDescriptionObserverOrb ItemDescriptionObserverOrb: -.string "Changes the status of the target to{NEW_LINE}{COLOR_2 CYAN}Paused{END_COLOR_TEXT_2}, making it incapable of action.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" +.string "Changes the status of the target to{NEW_LINE}{color CYAN}Paused{reset}, making it incapable of action.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" .global ItemDescriptionDecoyOrb ItemDescriptionDecoyOrb: -.string "Changes the status of the target to{NEW_LINE}{COLOR_2 CYAN}Decoy{END_COLOR_TEXT_2}, making it the target of its fellow{NEW_LINE}Pokémon.{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" +.string "Changes the status of the target to{NEW_LINE}{color CYAN}Decoy{reset}, making it the target of its fellow{NEW_LINE}Pokémon.{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" .global ItemDescriptionSlumberOrb ItemDescriptionSlumberOrb: -.string "Changes the status of foes in the same{NEW_LINE}room to {COLOR_2 CYAN}Sleep{END_COLOR_TEXT_2}, making them incapable{NEW_LINE}of action.{NEW_LINE}{NEW_LINE}Range: Foes in room\n\0" +.string "Changes the status of foes in the same{NEW_LINE}room to {color CYAN}Sleep{reset}, making them incapable{NEW_LINE}of action.{NEW_LINE}{NEW_LINE}Range: Foes in room\n\0" .global ItemDescriptionTotterOrb ItemDescriptionTotterOrb: -.string "Changes the status of foes in the same{NEW_LINE}room to {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2}, making their{NEW_LINE}attacks and movements erratic.{NEW_LINE}{NEW_LINE}Range: Foes in room\n\0" +.string "Changes the status of foes in the same{NEW_LINE}room to {color CYAN}Confused{reset}, making their{NEW_LINE}attacks and movements erratic.{NEW_LINE}{NEW_LINE}Range: Foes in room\n\0" .global ItemDescriptionTwoEdgeOrb ItemDescriptionTwoEdgeOrb: -.string "Drops the {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} of foes in the same{NEW_LINE}room to one. If it hits, it also halves{NEW_LINE}the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.{NEW_LINE}{NEW_LINE}Range: Foes in room\n\0" +.string "Drops the {color YELLOW}HP{reset} of foes in the same{NEW_LINE}room to one. If it hits, it also halves{NEW_LINE}the user's {color YELLOW}HP{reset}.{NEW_LINE}{NEW_LINE}Range: Foes in room\n\0" .global ItemDescriptionSilenceOrb ItemDescriptionSilenceOrb: -.string "Changes the status of the target to{NEW_LINE}{COLOR_2 CYAN}Muzzled{END_COLOR_TEXT_2}, making it incapable of attacks or{NEW_LINE}moves using its mouth.{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" +.string "Changes the status of the target to{NEW_LINE}{color CYAN}Muzzled{reset}, making it incapable of attacks or{NEW_LINE}moves using its mouth.{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" .global ItemDescriptionEscapeOrb ItemDescriptionEscapeOrb: @@ -756,7 +756,7 @@ ItemDescriptionRollcallOrb: .global ItemDescriptionInvisifyOrb ItemDescriptionInvisifyOrb: -.string "The user becomes {COLOR_2 CYAN}invisible{END_COLOR_TEXT_2} to other{NEW_LINE}Pokémon.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: User\n\0" +.string "The user becomes {color CYAN}invisible{reset} to other{NEW_LINE}Pokémon.{NEW_LINE}{NEW_LINE}{NEW_LINE}Range: User\n\0" .global ItemDescriptionOneShotOrb ItemDescriptionOneShotOrb: @@ -768,7 +768,7 @@ ItemDescriptionIdentifyOrb: .global ItemDescriptionVacuumCut ItemDescriptionVacuumCut: -.string "Teaches the move {COLOR_2 GREEN}Vacuum Cut{END_COLOR_TEXT_2}.{NEW_LINE}It inflicts damage on all foes in the room.\n\0" +.string "Teaches the move {color GREEN}Vacuum Cut{reset}.{NEW_LINE}It inflicts damage on all foes in the room.\n\0" .global ItemDescriptionReviverOrb ItemDescriptionReviverOrb: @@ -776,7 +776,7 @@ ItemDescriptionReviverOrb: .global ItemDescriptionShockerOrb ItemDescriptionShockerOrb: -.string "Changes the target's status to {COLOR_2 CYAN}Cowering{END_COLOR_TEXT_2},{NEW_LINE}making its attacks go in the opposite{NEW_LINE}direction.{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" +.string "Changes the target's status to {color CYAN}Cowering{reset},{NEW_LINE}making its attacks go in the opposite{NEW_LINE}direction.{NEW_LINE}{NEW_LINE}Range: Foe in front\n\0" .global ItemDescriptionSizebustOrb ItemDescriptionSizebustOrb: @@ -808,7 +808,7 @@ ItemDescriptionHurlOrb: .global ItemDescriptionMobileOrb ItemDescriptionMobileOrb: -.string "Changes the user's status to {COLOR_2 CYAN}Mobile{END_COLOR_TEXT_2},{NEW_LINE}enabling it to move and attack through{NEW_LINE}walls and on lava, water, and clouds.{NEW_LINE}{NEW_LINE}Range: User\n\0" +.string "Changes the user's status to {color CYAN}Mobile{reset},{NEW_LINE}enabling it to move and attack through{NEW_LINE}walls and on lava, water, and clouds.{NEW_LINE}{NEW_LINE}Range: User\n\0" .global ItemDescriptionTossOrb ItemDescriptionTossOrb: @@ -820,47 +820,47 @@ ItemDescriptionStairsOrb: .global ItemDescriptionLongtossOrb ItemDescriptionLongtossOrb: -.string "Changes the user's status to {COLOR_2 CYAN}Long Toss{END_COLOR_TEXT_2}.{NEW_LINE}Items thrown by the user will fly until{NEW_LINE}they hit a wall or a Pokémon.{NEW_LINE}{NEW_LINE}Range: User\n\0" +.string "Changes the user's status to {color CYAN}Long Toss{reset}.{NEW_LINE}Items thrown by the user will fly until{NEW_LINE}they hit a wall or a Pokémon.{NEW_LINE}{NEW_LINE}Range: User\n\0" .global ItemDescriptionPierceOrb ItemDescriptionPierceOrb: -.string "Changes the user's status to {COLOR_2 CYAN}Pierce{END_COLOR_TEXT_2}.{NEW_LINE}Items thrown by the user will fly through{NEW_LINE}walls and Pokémon without stopping.{NEW_LINE}{NEW_LINE}Range: User\n\0" +.string "Changes the user's status to {color CYAN}Pierce{reset}.{NEW_LINE}Items thrown by the user will fly through{NEW_LINE}walls and Pokémon without stopping.{NEW_LINE}{NEW_LINE}Range: User\n\0" .global ItemDescriptionCut ItemDescriptionCut: -.string "Teaches the move {COLOR_2 GREEN}Cut{END_COLOR_TEXT_2}. It does not break,{NEW_LINE}but cannot be used in a dungeon.{NEW_LINE}The move damages all foes around the{NEW_LINE}user.\n\0" +.string "Teaches the move {color GREEN}Cut{reset}. It does not break,{NEW_LINE}but cannot be used in a dungeon.{NEW_LINE}The move damages all foes around the{NEW_LINE}user.\n\0" .global ItemDescriptionFly ItemDescriptionFly: -.string "Teaches the move {COLOR_2 GREEN}Fly{END_COLOR_TEXT_2}. It does not break,{NEW_LINE}but cannot be used in a dungeon.{NEW_LINE}The move makes the user's status {COLOR_2 CYAN}Flying{END_COLOR_TEXT_2},{NEW_LINE}making it attack on the next turn.\n\0" +.string "Teaches the move {color GREEN}Fly{reset}. It does not break,{NEW_LINE}but cannot be used in a dungeon.{NEW_LINE}The move makes the user's status {color CYAN}Flying{reset},{NEW_LINE}making it attack on the next turn.\n\0" .global ItemDescriptionSurf ItemDescriptionSurf: -.string "Teaches the move {COLOR_2 GREEN}Surf{END_COLOR_TEXT_2}. It does not break,{NEW_LINE}but cannot be used in a dungeon.{NEW_LINE}The move damages the target.{NEW_LINE}Inflicts double damage on a {COLOR_2 CYAN}diving{END_COLOR_TEXT_2} foe.\n\0" +.string "Teaches the move {color GREEN}Surf{reset}. It does not break,{NEW_LINE}but cannot be used in a dungeon.{NEW_LINE}The move damages the target.{NEW_LINE}Inflicts double damage on a {color CYAN}diving{reset} foe.\n\0" .global ItemDescriptionStrength ItemDescriptionStrength: -.string "Teaches the move {COLOR_2 GREEN}Strength{END_COLOR_TEXT_2}. It does not{NEW_LINE}break, but cannot be used in a dungeon.{NEW_LINE}The move hurls the target at another{NEW_LINE}Pokémon to inflict damage.\n\0" +.string "Teaches the move {color GREEN}Strength{reset}. It does not{NEW_LINE}break, but cannot be used in a dungeon.{NEW_LINE}The move hurls the target at another{NEW_LINE}Pokémon to inflict damage.\n\0" .global ItemDescriptionFlash ItemDescriptionFlash: -.string "Teaches the move {COLOR_2 GREEN}Flash{END_COLOR_TEXT_2}. It does not break,{NEW_LINE}but cannot be used in a dungeon.{NEW_LINE}The move lowers the target's {COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2}{NEW_LINE}by one level.\n\0" +.string "Teaches the move {color GREEN}Flash{reset}. It does not break,{NEW_LINE}but cannot be used in a dungeon.{NEW_LINE}The move lowers the target's {color YELLOW}Accuracy{reset}{NEW_LINE}by one level.\n\0" .global ItemDescriptionRockSmash ItemDescriptionRockSmash: -.string "Teaches the move {COLOR_2 GREEN}Rock Smash{END_COLOR_TEXT_2}. It does not{NEW_LINE}break, but cannot be used in a dungeon.{NEW_LINE}The move digs through the wall the user{NEW_LINE}is facing.\n\0" +.string "Teaches the move {color GREEN}Rock Smash{reset}. It does not{NEW_LINE}break, but cannot be used in a dungeon.{NEW_LINE}The move digs through the wall the user{NEW_LINE}is facing.\n\0" .global ItemDescriptionWaterfall ItemDescriptionWaterfall: -.string "Teaches the move {COLOR_2 GREEN}Waterfall{END_COLOR_TEXT_2}. It does not{NEW_LINE}break, but cannot be used in a dungeon.{NEW_LINE}The move damages the target.\n\0" +.string "Teaches the move {color GREEN}Waterfall{reset}. It does not{NEW_LINE}break, but cannot be used in a dungeon.{NEW_LINE}The move damages the target.\n\0" .global ItemDescriptionDive ItemDescriptionDive: -.string "Teaches the move {COLOR_2 GREEN}Dive{END_COLOR_TEXT_2}. It does not break,{NEW_LINE}but cannot be used in a dungeon.{NEW_LINE}The move makes the user's status {COLOR_2 CYAN}Diving{END_COLOR_TEXT_2},{NEW_LINE}making it attack strongly on the next turn.\n\0" +.string "Teaches the move {color GREEN}Dive{reset}. It does not break,{NEW_LINE}but cannot be used in a dungeon.{NEW_LINE}The move makes the user's status {color CYAN}Diving{reset},{NEW_LINE}making it attack strongly on the next turn.\n\0" .global ItemDescriptionLinkBox ItemDescriptionLinkBox: -.string "A marvelous box that enables the user to{NEW_LINE}{COLOR_2 CYAN}link{END_COLOR_TEXT_2} and delink moves.{NEW_LINE}{COLOR_2 CYAN}Linked{END_COLOR_TEXT_2} moves become separated if{NEW_LINE}their combined {COLOR_2 YELLOW}PP{END_COLOR_TEXT_2} drops to zero.\n\0" +.string "A marvelous box that enables the user to{NEW_LINE}{color CYAN}link{reset} and delink moves.{NEW_LINE}{color CYAN}Linked{reset} moves become separated if{NEW_LINE}their combined {color YELLOW}PP{reset} drops to zero.\n\0" .global ItemDescriptionSwitchBox ItemDescriptionSwitchBox: diff --git a/data/move/move_names.s b/data/move/move_names.s index 26be26ac0..e6e227771 100644 --- a/data/move/move_names.s +++ b/data/move/move_names.s @@ -270,7 +270,7 @@ MoveNamePlaceholder: .global MoveUseTextBide MoveUseTextBide: -.string "{ARG_POKEMON_0} can't take it anymore!\0" +.string "{POKEMON_0} can't take it anymore!\0" .align 2,0 .global MoveNameBide2 @@ -290,7 +290,7 @@ MoveNameIsWatching: .global MoveUseTextRegularAttack MoveUseTextRegularAttack: -.string "{ARG_POKEMON_0} attacked!\0" +.string "{POKEMON_0} attacked!\0" .align 2,0 .global MoveDescriptionNull @@ -320,7 +320,7 @@ MoveNameAeroblast: .global MoveDescriptionStruggle MoveDescriptionStruggle: -.string "Inflicts damage on the target.\nHowever, the user also takes damage one\nquarter of its {COLOR_2 YELLOW}maximum HP{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target.\nHowever, the user also takes damage one\nquarter of its {color YELLOW}maximum HP{reset}.\0" .align 2,0 .global MoveNameStruggle @@ -340,7 +340,7 @@ MoveNameRockBlast: .global MoveDescriptionLockOn MoveDescriptionLockOn: -.string "Gives the user the {COLOR_2 CYAN}Sure Shot{END_COLOR_TEXT_2} status,\nmaking all its moves and attacks\ncompletely accurate.\0" +.string "Gives the user the {color CYAN}Sure Shot{reset} status,\nmaking all its moves and attacks\ncompletely accurate.\0" .align 2,0 .global MoveNameLockOn @@ -350,7 +350,7 @@ MoveNameLockOn: .global MoveDescriptionSkullBash MoveDescriptionSkullBash: -.string "The user gains the {COLOR_2 CYAN}Skull Bash{END_COLOR_TEXT_2} status,\ncausing it to attack strongly on the\nnext turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" +.string "The user gains the {color CYAN}Skull Bash{reset} status,\ncausing it to attack strongly on the\nnext turn.\nIt is not possible to {color CYAN}link{reset} this move.\0" .align 2,0 .global MoveNameSkullBash @@ -370,7 +370,7 @@ MoveNameFuryCutter: .global MoveDescriptionIceBeam MoveDescriptionIceBeam: -.string "Inflicts damage on the target, even at a\ndistance. It may also leave the target\n{COLOR_2 CYAN}frozen{END_COLOR_TEXT_2} and incapable of action.\0" +.string "Inflicts damage on the target, even at a\ndistance. It may also leave the target\n{color CYAN}frozen{reset} and incapable of action.\0" .align 2,0 .global MoveNameIceBeam @@ -385,7 +385,7 @@ MoveNameIcePunch: .global MoveDescriptionDragonDance MoveDescriptionDragonDance: -.string "Boosts the user's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Movement\nSpeed{END_COLOR_TEXT_2} by one level.\0" +.string "Boosts the user's {color YELLOW}Attack{reset} and {color YELLOW}Movement\nSpeed{reset} by one level.\0" .align 2,0 .global MoveNameDragonDance @@ -395,7 +395,7 @@ MoveNameDragonDance: .global MoveDescriptionDragonbreath MoveDescriptionDragonbreath: -.string "Inflicts damage on the target, even at a\ndistance. It may also cause {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2},\npreventing any attacks or moves.\0" +.string "Inflicts damage on the target, even at a\ndistance. It may also cause {color CYAN}paralysis{reset},\npreventing any attacks or moves.\0" .align 2,0 .global MoveNameDragonbreath @@ -430,7 +430,7 @@ MoveNameRefresh: .global MoveDescriptionReflect MoveDescriptionReflect: -.string "The user gains the {COLOR_2 CYAN}Reflect{END_COLOR_TEXT_2} status,\nhalving the damage from all\n{COLOR_2 CYAN}Physical Attack moves{END_COLOR_TEXT_2} and\nregular attacks.\0" +.string "The user gains the {color CYAN}Reflect{reset} status,\nhalving the damage from all\n{color CYAN}Physical Attack moves{reset} and\nregular attacks.\0" .align 2,0 .global MoveNameReflect @@ -440,7 +440,7 @@ MoveNameReflect: .global MoveDescriptionRecycle MoveDescriptionRecycle: -.string "Repairs the item {COLOR_2 GREEN}{TM}Used TM{END_COLOR_TEXT_2} and restores\nit to its original, unused state.\0" +.string "Repairs the item {color GREEN}{TM}Used TM{reset} and restores\nit to its original, unused state.\0" .align 2,0 .global MoveNameRecycle @@ -460,7 +460,7 @@ MoveNameLusterPurge: .global MoveDescriptionSnatch MoveDescriptionSnatch: -.string "The user gains the {COLOR_2 CYAN}Snatch{END_COLOR_TEXT_2} status.\nIt steals the moves of Pokémon on\nthe same floor.\0" +.string "The user gains the {color CYAN}Snatch{reset} status.\nIt steals the moves of Pokémon on\nthe same floor.\0" .align 2,0 .global MoveNameSnatch @@ -470,7 +470,7 @@ MoveNameSnatch: .global MoveDescriptionAcid MoveDescriptionAcid: -.string "Inflicts damage on the target.\nIt may also lower the user's {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by\none level.\0" +.string "Inflicts damage on the target.\nIt may also lower the user's {color YELLOW}Defense{reset} by\none level.\0" .align 2,0 .global MoveNameAcid @@ -480,7 +480,7 @@ MoveNameAcid: .global MoveDescriptionDreamEater MoveDescriptionDreamEater: -.string "Inflicts damage on the target and restores\nthe user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\nEffective only against sleeping foes.\0" +.string "Inflicts damage on the target and restores\nthe user's {color YELLOW}HP{reset}.\nEffective only against sleeping foes.\0" .align 2,0 .global MoveNameDreamEater @@ -500,7 +500,7 @@ MoveNameMetronome: .global MoveDescriptionLeechSeed MoveDescriptionLeechSeed: -.string "Inflicts the {COLOR_2 CYAN}Leech Seed{END_COLOR_TEXT_2} status\non the target.\nThe target's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} is leeched every several\nturns to restore the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\0" +.string "Inflicts the {color CYAN}Leech Seed{reset} status\non the target.\nThe target's {color YELLOW}HP{reset} is leeched every several\nturns to restore the user's {color YELLOW}HP{reset}.\0" .align 2,0 .global MoveNameLeechSeed @@ -510,7 +510,7 @@ MoveNameLeechSeed: .global MoveDescriptionFrustration MoveDescriptionFrustration: -.string "Inflicts damage on the target.\nIt inflicts greater damage if the user's\n{COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2} is low.\0" +.string "Inflicts damage on the target.\nIt inflicts greater damage if the user's\n{color YELLOW}IQ{reset} is low.\0" .align 2,0 .global MoveNameFrustration @@ -530,7 +530,7 @@ MoveNameMimic: .global MoveDescriptionAttract MoveDescriptionAttract: -.string "Inflicts the {COLOR_2 CYAN}Infatuated{END_COLOR_TEXT_2} status on\nthe target.\0" +.string "Inflicts the {color CYAN}Infatuated{reset} status on\nthe target.\0" .align 2,0 .global MoveNameAttract @@ -540,7 +540,7 @@ MoveNameAttract: .global MoveDescriptionMetalClaw MoveDescriptionMetalClaw: -.string "Inflicts damage on the target.\nIt may also boost the user's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by\none level.\0" +.string "Inflicts damage on the target.\nIt may also boost the user's {color YELLOW}Attack{reset} by\none level.\0" .align 2,0 .global MoveNameMetalClaw @@ -580,7 +580,7 @@ MoveNameMegaDrain: .global MoveDescriptionCalmMind MoveDescriptionCalmMind: -.string "Boosts the Pokémon's {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2} and\n{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by one level.\0" +.string "Boosts the Pokémon's {color YELLOW}Special Attack{reset} and\n{color YELLOW}Special Defense{reset} by one level.\0" .align 2,0 .global MoveNameCalmMind @@ -590,7 +590,7 @@ MoveNameCalmMind: .global MoveDescriptionMilkDrink MoveDescriptionMilkDrink: -.string "Restores the {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} of the user and its\nteam members on the floor by one quarter\nof their {COLOR_2 YELLOW}maximum HP{END_COLOR_TEXT_2}.\0" +.string "Restores the {color YELLOW}HP{reset} of the user and its\nteam members on the floor by one quarter\nof their {color YELLOW}maximum HP{reset}.\0" .align 2,0 .global MoveNameMilkDrink @@ -605,7 +605,7 @@ MoveNameFutureSight: .global MoveDescriptionMirrorCoat MoveDescriptionMirrorCoat: -.string "The user gains the {COLOR_2 CYAN}Mirror Coat{END_COLOR_TEXT_2} status.\nThe user returns the damage it takes from\nany {COLOR_2 CYAN}Special Attack moves{END_COLOR_TEXT_2} used\nby a foe beside it.\0" +.string "The user gains the {color CYAN}Mirror Coat{reset} status.\nThe user returns the damage it takes from\nany {color CYAN}Special Attack moves{reset} used\nby a foe beside it.\0" .align 2,0 .global MoveNameMirrorCoat @@ -615,7 +615,7 @@ MoveNameMirrorCoat: .global MoveDescriptionForesight MoveDescriptionForesight: -.string "Resets the boosted {COLOR_2 YELLOW}Evasion{END_COLOR_TEXT_2} of the target.\nGhost-type foes become {COLOR_2 CYAN}exposed{END_COLOR_TEXT_2}.\0" +.string "Resets the boosted {color YELLOW}Evasion{reset} of the target.\nGhost-type foes become {color CYAN}exposed{reset}.\0" .align 2,0 .global MoveNameForesight @@ -625,7 +625,7 @@ MoveNameForesight: .global MoveDescriptionFalseSwipe MoveDescriptionFalseSwipe: -.string "Inflicts damage on the target.\nIt leaves the target with one {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} if its\ndamage would have made the target faint.\0" +.string "Inflicts damage on the target.\nIt leaves the target with one {color YELLOW}HP{reset} if its\ndamage would have made the target faint.\0" .align 2,0 .global MoveNameFalseSwipe @@ -635,7 +635,7 @@ MoveNameFalseSwipe: .global MoveDescriptionDestinyBond MoveDescriptionDestinyBond: -.string "The user and the target gain the\n{COLOR_2 CYAN}Destiny Bond{END_COLOR_TEXT_2} status.\nThe target sustains the same damage\nas the user in this state.\0" +.string "The user and the target gain the\n{color CYAN}Destiny Bond{reset} status.\nThe target sustains the same damage\nas the user in this state.\0" .align 2,0 .global MoveNameDestinyBond @@ -655,7 +655,7 @@ MoveNameFuryAttack: .global MoveDescriptionWaterPulse MoveDescriptionWaterPulse: -.string "Inflicts damage on the target, even at a\ndistance.\nIt may also leave the target {COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target, even at a\ndistance.\nIt may also leave the target {color CYAN}confused{reset}.\0" .align 2,0 .global MoveNameWaterPulse @@ -665,7 +665,7 @@ MoveNameWaterPulse: .global MoveDescriptionMistBall MoveDescriptionMistBall: -.string "Inflicts damage on the target.\nIt may lower the target's {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}\nby one level.\0" +.string "Inflicts damage on the target.\nIt may lower the target's {color YELLOW}Special Attack{reset}\nby one level.\0" .align 2,0 .global MoveNameMistBall @@ -680,7 +680,7 @@ MoveNameWaterGun: .global MoveDescriptionWaterSport MoveDescriptionWaterSport: -.string "Changes the floor's status to {COLOR_2 CYAN}Water Sport{END_COLOR_TEXT_2},\nwhich halves the power of Fire-type\nmoves.\0" +.string "Changes the floor's status to {color CYAN}Water Sport{reset},\nwhich halves the power of Fire-type\nmoves.\0" .align 2,0 .global MoveNameWaterSport @@ -700,7 +700,7 @@ MoveNameDetect: .global MoveDescriptionSubstitute MoveDescriptionSubstitute: -.string "The target gains the {COLOR_2 CYAN}Decoy{END_COLOR_TEXT_2} status,\nmaking it the target of its fellow\nPokémon.\0" +.string "The target gains the {color CYAN}Decoy{reset} status,\nmaking it the target of its fellow\nPokémon.\0" .align 2,0 .global MoveNameSubstitute @@ -720,7 +720,7 @@ MoveNameDefenseCurl: .global MoveDescriptionProtect MoveDescriptionProtect: -.string "The user gains the {COLOR_2 CYAN}Protect{END_COLOR_TEXT_2} status,\npreventing damage from enemy attacks\nand moves.\0" +.string "The user gains the {color CYAN}Protect{reset} status,\npreventing damage from enemy attacks\nand moves.\0" .align 2,0 .global MoveNameProtect @@ -740,7 +740,7 @@ MoveNameMudShot: .global MoveDescriptionMagicCoat MoveDescriptionMagicCoat: -.string "The user gains the {COLOR_2 CYAN}Magic Coat{END_COLOR_TEXT_2} status.\nThe user reflects several moves directly\nback to the foes.\0" +.string "The user gains the {color CYAN}Magic Coat{reset} status.\nThe user reflects several moves directly\nback to the foes.\0" .align 2,0 .global MoveNameMagicCoat @@ -755,7 +755,7 @@ MoveNameMagicalLeaf: .global MoveDescriptionMagnitude MoveDescriptionMagnitude: -.string "Damages all Pokémon in the same room.\nThe amount of damage varies.\nIt inflicts double damage on any {COLOR_2 CYAN}digging{END_COLOR_TEXT_2}\nPokémon.\0" +.string "Damages all Pokémon in the same room.\nThe amount of damage varies.\nIt inflicts double damage on any {color CYAN}digging{reset}\nPokémon.\0" .align 2,0 .global MoveNameMagnitude @@ -770,7 +770,7 @@ MoveDescriptionSpikes: .global MoveDescriptionWrap MoveDescriptionWrap: -.string "The user gains the {COLOR_2 CYAN}Wrap{END_COLOR_TEXT_2} status, and\nthe {COLOR_2 CYAN}Wrapped{END_COLOR_TEXT_2} status is inflicted on\nthe target.\nBoth Pokémon become incapable of action.\0" +.string "The user gains the {color CYAN}Wrap{reset} status, and\nthe {color CYAN}Wrapped{reset} status is inflicted on\nthe target.\nBoth Pokémon become incapable of action.\0" .align 2,0 .global MoveNameWrap @@ -780,7 +780,7 @@ MoveNameWrap: .global MoveDescriptionPerishSong MoveDescriptionPerishSong: -.string "Inflicts the {COLOR_2 CYAN}Perish Song{END_COLOR_TEXT_2} status on all foes\non the floor. The affected foes faint\nafter several turns.\0" +.string "Inflicts the {color CYAN}Perish Song{reset} status on all foes\non the floor. The affected foes faint\nafter several turns.\0" .align 2,0 .global MoveNamePerishSong @@ -795,7 +795,7 @@ MoveNameFirePunch: .global MoveDescriptionFireSpin MoveDescriptionFireSpin: -.string "Inflicts damage on the target.\nIt may also cause {COLOR_2 CYAN}constriction{END_COLOR_TEXT_2}.\nIt thaws and frees frozen Pokémon.\0" +.string "Inflicts damage on the target.\nIt may also cause {color CYAN}constriction{reset}.\nIt thaws and frees frozen Pokémon.\0" .align 2,0 .global MoveNameFireSpin @@ -820,7 +820,7 @@ MoveNameBoneClub: .global MoveDescriptionTailGlow MoveDescriptionTailGlow: -.string "Boosts the user's {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2} by\ntwo levels.\0" +.string "Boosts the user's {color YELLOW}Special Attack{reset} by\ntwo levels.\0" .align 2,0 .global MoveNameTailGlow @@ -855,7 +855,7 @@ MoveNameRoar: .global MoveDescriptionPoisonTail MoveDescriptionPoisonTail: -.string "Inflicts damage on the target.\nIt may also leave the target {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}.\nIt has a high critical-hit rate.\0" +.string "Inflicts damage on the target.\nIt may also leave the target {color CYAN}poisoned{reset}.\nIt has a high critical-hit rate.\0" .align 2,0 .global MoveNamePoisonTail @@ -865,7 +865,7 @@ MoveNamePoisonTail: .global MoveDescriptionTransform MoveDescriptionTransform: -.string "The user gains the {COLOR_2 CYAN}Transformed{END_COLOR_TEXT_2} status.\nThe user transforms into a hostile\nPokémon that appears on the floor.\0" +.string "The user gains the {color CYAN}Transformed{reset} status.\nThe user transforms into a hostile\nPokémon that appears on the floor.\0" .align 2,0 .global MoveNameGlare @@ -875,7 +875,7 @@ MoveNameGlare: .global MoveDescriptionSludgeBomb MoveDescriptionSludgeBomb: -.string "Inflicts damage on the target, even at a\ndistance. It may also leave the target\n{COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}, damaging it for several turns.\0" +.string "Inflicts damage on the target, even at a\ndistance. It may also leave the target\n{color CYAN}poisoned{reset}, damaging it for several turns.\0" .align 2,0 .global MoveNameSludgeBomb @@ -885,17 +885,17 @@ MoveNameSludgeBomb: .global MoveDescriptionSludge MoveDescriptionSludge: -.string "Inflicts damage on the target.\nIt may also leave the target {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2},\ndamaging it for several turns.\0" +.string "Inflicts damage on the target.\nIt may also leave the target {color CYAN}poisoned{reset},\ndamaging it for several turns.\0" .align 2,0 .global MoveDescriptionEruption MoveDescriptionEruption: -.string "Inflicts damage on the target.\nThe higher the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}, the greater\nthe damage.\nIt thaws and frees frozen Pokémon.\0" +.string "Inflicts damage on the target.\nThe higher the user's {color YELLOW}HP{reset}, the greater\nthe damage.\nIt thaws and frees frozen Pokémon.\0" .align 2,0 .global MoveDescriptionPresent MoveDescriptionPresent: -.string "Either inflicts damage on the target\nor restores its {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\0" +.string "Either inflicts damage on the target\nor restores its {color YELLOW}HP{reset}.\0" .align 2,0 .global MoveNamePresent @@ -905,7 +905,7 @@ MoveNamePresent: .global MoveDescriptionBlazeKick MoveDescriptionBlazeKick: -.string "Inflicts damage on the target.\nIt may also cause a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}.\nIt thaws and frees frozen Pokémon.\nIt has a high critical-hit rate.\0" +.string "Inflicts damage on the target.\nIt may also cause a {color CYAN}burn{reset}.\nIt thaws and frees frozen Pokémon.\nIt has a high critical-hit rate.\0" .align 2,0 .global MoveNameBlazeKick @@ -920,7 +920,7 @@ MoveNameCrushClaw: .global MoveDescriptionTeeterDance MoveDescriptionTeeterDance: -.string "Inflicts the {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} status on all\nPokémon on the floor, making their attacks\nand movements erratic.\0" +.string "Inflicts the {color CYAN}Confused{reset} status on all\nPokémon on the floor, making their attacks\nand movements erratic.\0" .align 2,0 .global MoveNameTeeterDance @@ -935,7 +935,7 @@ MoveNameFlash: .global MoveDescriptionBlastBurn MoveDescriptionBlastBurn: -.string "Inflicts damage on the target. However, it\nalso inflicts the {COLOR_2 CYAN}Paused{END_COLOR_TEXT_2} status on the user.\nIt also thaws and frees frozen Pokémon.\0" +.string "Inflicts damage on the target. However, it\nalso inflicts the {color CYAN}Paused{reset} status on the user.\nIt also thaws and frees frozen Pokémon.\0" .align 2,0 .global MoveNameBlastBurn @@ -975,7 +975,7 @@ MoveNameWhirlwind: .global MoveDescriptionFeatherdance MoveDescriptionFeatherdance: -.string "Lowers the target's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by two levels.\0" +.string "Lowers the target's {color YELLOW}Attack{reset} by two levels.\0" .align 2,0 .global MoveNameFeatherdance @@ -985,7 +985,7 @@ MoveNameFeatherdance: .global MoveDescriptionImprison MoveDescriptionImprison: -.string "Inflicts the {COLOR_2 CYAN}Paused{END_COLOR_TEXT_2} status on the target,\nmaking it incapable of action.\0" +.string "Inflicts the {color CYAN}Paused{reset} status on the target,\nmaking it incapable of action.\0" .align 2,0 .global MoveNameImprison @@ -995,7 +995,7 @@ MoveNameImprison: .global MoveDescriptionBulkUp MoveDescriptionBulkUp: -.string "Raises the user's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}\nby one level.\0" +.string "Raises the user's {color YELLOW}Attack{reset} and {color YELLOW}Defense{reset}\nby one level.\0" .align 2,0 .global MoveNameBulkUp @@ -1035,7 +1035,7 @@ MoveNameScratch: .global MoveDescriptionLightScreen MoveDescriptionLightScreen: -.string "The user gains the {COLOR_2 CYAN}Light Screen{END_COLOR_TEXT_2} status.\nIt halves the damage from\n{COLOR_2 CYAN}Special Attack moves{END_COLOR_TEXT_2}.\0" +.string "The user gains the {color CYAN}Light Screen{reset} status.\nIt halves the damage from\n{color CYAN}Special Attack moves{reset}.\0" .align 2,0 .global MoveNameLightScreen @@ -1045,7 +1045,7 @@ MoveNameLightScreen: .global MoveDescriptionBellyDrum MoveDescriptionBellyDrum: -.string "Boosts the user's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} to maximum,\nbut empties its {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} to just one.\nIt has no effect if the {COLOR_2 YELLOW}Belly{END_COLOR_TEXT_2} is one or less.\0" +.string "Boosts the user's {color YELLOW}Attack{reset} to maximum,\nbut empties its {color YELLOW}Belly{reset} to just one.\nIt has no effect if the {color YELLOW}Belly{reset} is one or less.\0" .align 2,0 .global MoveNameBellyDrum @@ -1055,7 +1055,7 @@ MoveNameBellyDrum: .global MoveDescriptionFixedDamage MoveDescriptionFixedDamage: -.string "The user gains the {COLOR_2 CYAN}Set Damage{END_COLOR_TEXT_2} status.\nIn this state, all damage inflicted by the\nuser will remain constant.\0" +.string "The user gains the {color CYAN}Set Damage{reset} status.\nIn this state, all damage inflicted by the\nuser will remain constant.\0" .align 2,0 .global MoveNameDoomDesire @@ -1080,7 +1080,7 @@ MoveNameSplash: .global MoveDescriptionPetalDance MoveDescriptionPetalDance: -.string "Hits the target two to five times in\nsuccession. However it also makes the\nuser {COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.\0" +.string "Hits the target two to five times in\nsuccession. However it also makes the\nuser {color CYAN}confused{reset}.\0" .align 2,0 .global MoveNamePetalDance @@ -1135,7 +1135,7 @@ MoveNameGuillotine: .global MoveDescriptionDynamicpunch MoveDescriptionDynamicpunch: -.string "Inflicts damage on the target.\nIt also leaves the target {COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target.\nIt also leaves the target {color CYAN}confused{reset}.\0" .align 2,0 .global MoveNameDynamicpunch @@ -1145,7 +1145,7 @@ MoveNameDynamicpunch: .global MoveDescriptionSpitUp MoveDescriptionSpitUp: -.string "Inflicts damage on the target.\nIts power depends on how often the move\n{COLOR_2 GREEN}Stockpile{END_COLOR_TEXT_2} was used before.\0" +.string "Inflicts damage on the target.\nIts power depends on how often the move\n{color GREEN}Stockpile{reset} was used before.\0" .align 2,0 .global MoveNameSpitUp @@ -1155,7 +1155,7 @@ MoveNameSpitUp: .global MoveDescriptionSteelWing MoveDescriptionSteelWing: -.string "Inflicts damage on the target.\nIt may also raise the user's {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by\none level.\0" +.string "Inflicts damage on the target.\nIt may also raise the user's {color YELLOW}Defense{reset} by\none level.\0" .align 2,0 .global MoveNameSteelWing @@ -1165,12 +1165,12 @@ MoveNameSteelWing: .global MoveDescriptionSuperpower MoveDescriptionSuperpower: -.string "Inflicts damage on the target.\nHowever, it also lowers the user's\n{COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by one level.\0" +.string "Inflicts damage on the target.\nHowever, it also lowers the user's\n{color YELLOW}Attack{reset} and {color YELLOW}Defense{reset} by one level.\0" .align 2,0 .global MoveDescriptionHyperBeam MoveDescriptionHyperBeam: -.string "Inflicts damage on the target, even at a\ndistance. It also inflicts the {COLOR_2 CYAN}Paused{END_COLOR_TEXT_2} status\non the user, making it incapable of action.\0" +.string "Inflicts damage on the target, even at a\ndistance. It also inflicts the {color CYAN}Paused{reset} status\non the user, making it incapable of action.\0" .align 2,0 .global MoveNameHyperBeam @@ -1195,7 +1195,7 @@ MoveNameHydroPump: .global MoveDescriptionHydroCannon MoveDescriptionHydroCannon: -.string "Inflicts damage on the target, even at a\ndistance. It also inflicts the {COLOR_2 CYAN}Paused{END_COLOR_TEXT_2}\nstatus on the user, making it incapable\nof action.\0" +.string "Inflicts damage on the target, even at a\ndistance. It also inflicts the {color CYAN}Paused{reset}\nstatus on the user, making it incapable\nof action.\0" .align 2,0 .global MoveNameHydroCannon @@ -1205,7 +1205,7 @@ MoveNameHydroCannon: .global MoveDescriptionFrenzyPlant MoveDescriptionFrenzyPlant: -.string "Inflicts damage on the target.\nHowever, it also inflicts the {COLOR_2 CYAN}Paused{END_COLOR_TEXT_2} status\non the user, making it incapable of action.\0" +.string "Inflicts damage on the target.\nHowever, it also inflicts the {color CYAN}Paused{reset} status\non the user, making it incapable of action.\0" .align 2,0 .global MoveNameFrenzyPlant @@ -1215,7 +1215,7 @@ MoveNameFrenzyPlant: .global MoveDescriptionCurse MoveDescriptionCurse: -.string "Boosts the user's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by\none level, but also lowers {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2}\nby one level. If used by a Ghost type, the\ntarget is {COLOR_2 CYAN}cursed{END_COLOR_TEXT_2}, and the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} halved.\0" +.string "Boosts the user's {color YELLOW}Attack{reset} and {color YELLOW}Defense{reset} by\none level, but also lowers {color YELLOW}Movement Speed{reset}\nby one level. If used by a Ghost type, the\ntarget is {color CYAN}cursed{reset}, and the user's {color YELLOW}HP{reset} halved.\0" .align 2,0 .global MoveNameCurse @@ -1225,7 +1225,7 @@ MoveNameCurse: .global MoveDescriptionSwallow MoveDescriptionSwallow: -.string "Restores the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\nThe {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} recovered depends on how often\nthe move {COLOR_2 GREEN}Stockpile{END_COLOR_TEXT_2} was used before.\0" +.string "Restores the user's {color YELLOW}HP{reset}.\nThe {color YELLOW}HP{reset} recovered depends on how often\nthe move {color GREEN}Stockpile{reset} was used before.\0" .align 2,0 .global MoveNameBodySlam @@ -1235,7 +1235,7 @@ MoveNameBodySlam: .global MoveDescriptionConfuseChance MoveDescriptionConfuseChance: -.string "Inflicts damage on the target.\nIt may also leave the target {COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target.\nIt may also leave the target {color CYAN}confused{reset}.\0" .align 2,0 .global MoveNameConfusion @@ -1245,7 +1245,7 @@ MoveNameConfusion: .global MoveDescriptionIngrain MoveDescriptionIngrain: -.string "The user gains the {COLOR_2 CYAN}Ingrain{END_COLOR_TEXT_2} status.\nThe user becomes incapable of moving,\nbut regains {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} over several turns.\0" +.string "The user gains the {color CYAN}Ingrain{reset} status.\nThe user becomes incapable of moving,\nbut regains {color YELLOW}HP{reset} over several turns.\0" .align 2,0 .global MoveNameIngrain @@ -1255,7 +1255,7 @@ MoveNameIngrain: .global MoveDescriptionRest MoveDescriptionRest: -.string "The user gains the {COLOR_2 CYAN}Napping{END_COLOR_TEXT_2} status.\nUpon awakening, the Pokémon regains {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}\nand recovers from any status problems.\0" +.string "The user gains the {color CYAN}Napping{reset} status.\nUpon awakening, the Pokémon regains {color YELLOW}HP{reset}\nand recovers from any status problems.\0" .align 2,0 .global MoveNameRest @@ -1265,7 +1265,7 @@ MoveNameRest: .global MoveDescriptionSleepPowder MoveDescriptionSleepPowder: -.string "Makes all foes around the user go to\n{COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}, making them incapable of action.\0" +.string "Makes all foes around the user go to\n{color CYAN}sleep{reset}, making them incapable of action.\0" .align 2,0 .global MoveNameSleepPowder @@ -1275,7 +1275,7 @@ MoveNameSleepPowder: .global MoveDescriptionHeatWave MoveDescriptionHeatWave: -.string "Inflicts damage on foes in the room.\nIt may also cause a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}.\nIt thaws and frees frozen Pokémon.\0" +.string "Inflicts damage on foes in the room.\nIt may also cause a {color CYAN}burn{reset}.\nIt thaws and frees frozen Pokémon.\0" .align 2,0 .global MoveNameHeatWave @@ -1285,7 +1285,7 @@ MoveNameHeatWave: .global MoveUseTextAssist MoveUseTextAssist: -.string "{ARG_POKEMON_0} chose {ARG_MOVE_ITEM_0}!\0" +.string "{POKEMON_0} chose {MOVE_ITEM_0}!\0" .align 2,0 .global MoveDescriptionAssist @@ -1320,7 +1320,7 @@ MoveNameSleepTalk: .global MoveDescriptionFakeOut MoveDescriptionFakeOut: -.string "Inflicts damage on the target.\nIt may also make the target {COLOR_2 CYAN}cringe{END_COLOR_TEXT_2}.\nIt reaches up to two tiles ahead.\0" +.string "Inflicts damage on the target.\nIt may also make the target {color CYAN}cringe{reset}.\nIt reaches up to two tiles ahead.\0" .align 2,0 .global MoveNameFakeOut @@ -1330,7 +1330,7 @@ MoveNameFakeOut: .global MoveDescriptionWish MoveDescriptionWish: -.string "The user gains the {COLOR_2 CYAN}Wish{END_COLOR_TEXT_2} status.\nIt boosts the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} recovery rate.\0" +.string "The user gains the {color CYAN}Wish{reset} status.\nIt boosts the user's {color YELLOW}HP{reset} recovery rate.\0" .align 2,0 .global MoveNameLeer @@ -1340,7 +1340,7 @@ MoveNameLeer: .global MoveDescriptionSunnyDay MoveDescriptionSunnyDay: -.string "Changes the dungeon floor's weather to\n{COLOR_2 CYAN}Sunny{END_COLOR_TEXT_2} over several turns.\0" +.string "Changes the dungeon floor's weather to\n{color CYAN}Sunny{reset} over several turns.\0" .align 2,0 .global MoveNameSunnyDay @@ -1365,7 +1365,7 @@ MoveNameNeedleArm: .global MoveDescriptionRolePlay MoveDescriptionRolePlay: -.string "Copies the target's {COLOR_2 YELLOW}Special Ability{END_COLOR_TEXT_2}.\nThe user regains its own {COLOR_2 YELLOW}Special Ability{END_COLOR_TEXT_2}\nwhen it leaves the floor.\0" +.string "Copies the target's {color YELLOW}Special Ability{reset}.\nThe user regains its own {color YELLOW}Special Ability{reset}\nwhen it leaves the floor.\0" .align 2,0 .global MoveNameRolePlay @@ -1375,7 +1375,7 @@ MoveNameRolePlay: .global MoveDescriptionSurf MoveDescriptionSurf: -.string "Inflicts damage on the target.\nInflicts double damage on a {COLOR_2 CYAN}diving{END_COLOR_TEXT_2} foe.\0" +.string "Inflicts damage on the target.\nInflicts double damage on a {color CYAN}diving{reset} foe.\0" .align 2,0 .global MoveNameSurf @@ -1390,7 +1390,7 @@ MoveNameSlackOff: .global MoveDescriptionGrowl MoveDescriptionGrowl: -.string "Lowers the {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} of all foes in the room\nby one level.\0" +.string "Lowers the {color YELLOW}Attack{reset} of all foes in the room\nby one level.\0" .align 2,0 .global MoveNameGrowl @@ -1400,7 +1400,7 @@ MoveNameGrowl: .global MoveDescriptionNightShade MoveDescriptionNightShade: -.string "Damages all foes around the user.\nThe amount of damage depends on the\nuser's {COLOR_2 YELLOW}level{END_COLOR_TEXT_2}.\0" +.string "Damages all foes around the user.\nThe amount of damage depends on the\nuser's {color YELLOW}level{reset}.\0" .align 2,0 .global MoveNameNightShade @@ -1410,7 +1410,7 @@ MoveNameNightShade: .global MoveDescriptionAmnesia MoveDescriptionAmnesia: -.string "Boosts the user's {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by\ntwo levels.\0" +.string "Boosts the user's {color YELLOW}Special Defense{reset} by\ntwo levels.\0" .align 2,0 .global MoveNameAmnesia @@ -1430,7 +1430,7 @@ MoveNameThief: .global MoveDescriptionMudSlap MoveDescriptionMudSlap: -.string "Inflicts damage on the target.\nIt also lowers the target's {COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2} by\none level.\0" +.string "Inflicts damage on the target.\nIt also lowers the target's {color YELLOW}Accuracy{reset} by\none level.\0" .align 2,0 .global MoveNameMudSlap @@ -1440,7 +1440,7 @@ MoveNameMudSlap: .global MoveDescriptionMudSport MoveDescriptionMudSport: -.string "Changes the floor's status to {COLOR_2 CYAN}Mud Sport{END_COLOR_TEXT_2},\nwhich halves the power of Electric-type\nmoves.\0" +.string "Changes the floor's status to {color CYAN}Mud Sport{reset},\nwhich halves the power of Electric-type\nmoves.\0" .align 2,0 .global MoveNameMudSport @@ -1480,7 +1480,7 @@ MoveNameDragonClaw: .global MoveDescriptionTriAttack MoveDescriptionTriAttack: -.string "Inflicts damage on the target.\nIt may also cause a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2},\n{COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}, or leave the target {COLOR_2 CYAN}frozen{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target.\nIt may also cause a {color CYAN}burn{reset},\n{color CYAN}paralysis{reset}, or leave the target {color CYAN}frozen{reset}.\0" .align 2,0 .global MoveNameTriAttack @@ -1495,7 +1495,7 @@ MoveNameHiJumpKick: .global MoveDescriptionBounce MoveDescriptionBounce: -.string "The user gains the {COLOR_2 CYAN}Bouncing{END_COLOR_TEXT_2} status,\nmaking it attack strongly on the next turn.\nIt may also cause {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" +.string "The user gains the {color CYAN}Bouncing{reset} status,\nmaking it attack strongly on the next turn.\nIt may also cause {color CYAN}paralysis{reset}.\nIt is not possible to {color CYAN}link{reset} this move.\0" .align 2,0 .global MoveDescriptionJumpKick @@ -1540,7 +1540,7 @@ MoveNamePoisonpowder: .global MoveDescriptionPoisonFang MoveDescriptionPoisonFang: -.string "Inflicts damage on the target.\nIt may also leave the target\n{COLOR_2 CYAN}badly poisoned{END_COLOR_TEXT_2}, damaging it over\nseveral turns.\0" +.string "Inflicts damage on the target.\nIt may also leave the target\n{color CYAN}badly poisoned{reset}, damaging it over\nseveral turns.\0" .align 2,0 .global MoveNamePoisonFang @@ -1550,7 +1550,7 @@ MoveNamePoisonFang: .global MoveDescriptionToxic MoveDescriptionToxic: -.string "{COLOR_2 CYAN}Badly poisons{END_COLOR_TEXT_2} the target.\nIf a Pokémon is {COLOR_2 CYAN}badly poisoned{END_COLOR_TEXT_2}, it\nsustains damage over several turns.\0" +.string "{color CYAN}Badly poisons{reset} the target.\nIf a Pokémon is {color CYAN}badly poisoned{reset}, it\nsustains damage over several turns.\0" .align 2,0 .global MoveNameToxic @@ -1560,7 +1560,7 @@ MoveNameToxic: .global MoveDescriptionPoison MoveDescriptionPoison: -.string "{COLOR_2 CYAN}Poisons{END_COLOR_TEXT_2} the target.\nIf a Pokémon is {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}, it sustains\ndamage over several turns.\0" +.string "{color CYAN}Poisons{reset} the target.\nIf a Pokémon is {color CYAN}poisoned{reset}, it sustains\ndamage over several turns.\0" .align 2,0 .global MoveNameHowl @@ -1570,7 +1570,7 @@ MoveNameHowl: .global MoveDescriptionBlock MoveDescriptionBlock: -.string "Inflicts the {COLOR_2 CYAN}Leg Hold{END_COLOR_TEXT_2} status on the\ntarget, making it incapable of movement.\0" +.string "Inflicts the {color CYAN}Leg Hold{reset} status on the\ntarget, making it incapable of movement.\0" .align 2,0 .global MoveNameBlock @@ -1580,7 +1580,7 @@ MoveNameBlock: .global MoveDescriptionZapCannon MoveDescriptionZapCannon: -.string "Inflicts damage on the target, even at a\ndistance. It also causes {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2},\npreventing any attacks or moves.\0" +.string "Inflicts damage on the target, even at a\ndistance. It also causes {color CYAN}paralysis{reset},\npreventing any attacks or moves.\0" .align 2,0 .global MoveNameZapCannon @@ -1630,7 +1630,7 @@ MoveNameTeleport: .global MoveDescriptionBoostDefenseTwo MoveDescriptionBoostDefenseTwo: -.string "Boosts the user's {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by two levels.\0" +.string "Boosts the user's {color YELLOW}Defense{reset} by two levels.\0" .align 2,0 .global MoveNameIronDefense @@ -1640,7 +1640,7 @@ MoveNameIronDefense: .global MoveDescriptionHelpingHand MoveDescriptionHelpingHand: -.string "Boosts the {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2} of\nteam members in the same room by one\nlevel.\0" +.string "Boosts the {color YELLOW}Attack{reset} and {color YELLOW}Special Attack{reset} of\nteam members in the same room by one\nlevel.\0" .align 2,0 .global MoveNameHelpingHand @@ -1650,7 +1650,7 @@ MoveNameHelpingHand: .global MoveDescriptionConversion2 MoveDescriptionConversion2: -.string "The user gains the {COLOR_2 CYAN}Conversion 2{END_COLOR_TEXT_2} status.\nIt changes the user's type to one that is\nstrong against the move type it took last.\0" +.string "The user gains the {color CYAN}Conversion 2{reset} status.\nIt changes the user's type to one that is\nstrong against the move type it took last.\0" .align 2,0 .global MoveNameConversion2 @@ -1675,7 +1675,7 @@ MoveNameVineWhip: .global MoveDescriptionSwordsDance MoveDescriptionSwordsDance: -.string "Boosts the user's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by two levels.\0" +.string "Boosts the user's {color YELLOW}Attack{reset} by two levels.\0" .align 2,0 .global MoveNameSwordsDance @@ -1720,12 +1720,12 @@ MoveNamePeck: .global MoveDescriptionMoonlight MoveDescriptionMoonlight: -.string "Restores the {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} of the user and team\nmembers on the same floor. The amount of\n{COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} recovered depends on the weather.\0" +.string "Restores the {color YELLOW}HP{reset} of the user and team\nmembers on the same floor. The amount of\n{color YELLOW}HP{reset} recovered depends on the weather.\0" .align 2,0 .global MoveDescriptionTaunt MoveDescriptionTaunt: -.string "Inflicts the {COLOR_2 CYAN}Taunted{END_COLOR_TEXT_2} status\non the targeted Pokémon.\0" +.string "Inflicts the {color CYAN}Taunted{reset} status\non the targeted Pokémon.\0" .align 2,0 .global MoveNameTaunt @@ -1735,7 +1735,7 @@ MoveNameTaunt: .global MoveDescriptionConfuse MoveDescriptionConfuse: -.string "Inflicts the {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} status on the\ntarget, making its attacks and\nmovements erratic.\0" +.string "Inflicts the {color CYAN}Confused{reset} status on the\ntarget, making its attacks and\nmovements erratic.\0" .align 2,0 .global MoveNameSupersonic @@ -1745,7 +1745,7 @@ MoveNameSupersonic: .global MoveDescriptionSeismicToss MoveDescriptionSeismicToss: -.string "Inflicts damage on the target.\nThe amount of damage depends on the\nuser's {COLOR_2 YELLOW}level{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target.\nThe amount of damage depends on the\nuser's {color YELLOW}level{reset}.\0" .align 2,0 .global MoveNameSeismicToss @@ -1775,7 +1775,7 @@ MoveNameEggBomb: .global MoveDescriptionSoftboiled MoveDescriptionSoftboiled: -.string "Restores the {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} of the user and team\nmembers in the same room by one quarter\nof their {COLOR_2 YELLOW}maximum HP{END_COLOR_TEXT_2}.\0" +.string "Restores the {color YELLOW}HP{reset} of the user and team\nmembers in the same room by one quarter\nof their {color YELLOW}maximum HP{reset}.\0" .align 2,0 .global MoveNameSoftboiled @@ -1785,7 +1785,7 @@ MoveNameSoftboiled: .global MoveDescriptionTwineedle MoveDescriptionTwineedle: -.string "Hits the target twice, even at a distance.\nIt may also leave the target {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2},\ndamaging it over several turns.\0" +.string "Hits the target twice, even at a distance.\nIt may also leave the target {color CYAN}poisoned{reset},\ndamaging it over several turns.\0" .align 2,0 .global MoveNameTwineedle @@ -1805,7 +1805,7 @@ MoveNameBulletSeed: .global MoveDescriptionTwister MoveDescriptionTwister: -.string "Inflicts damage on the target. It may also\ncause the target to {COLOR_2 CYAN}cringe{END_COLOR_TEXT_2}, making\nit incapable of action. Doubles damage\non a {COLOR_2 CYAN}flying{END_COLOR_TEXT_2} or {COLOR_2 CYAN}bouncing{END_COLOR_TEXT_2} Pokémon.\0" +.string "Inflicts damage on the target. It may also\ncause the target to {color CYAN}cringe{reset}, making\nit incapable of action. Doubles damage\non a {color CYAN}flying{reset} or {color CYAN}bouncing{reset} Pokémon.\0" .align 2,0 .global MoveNameTwister @@ -1820,7 +1820,7 @@ MoveNameSlam: .global MoveDescriptionStockpile MoveDescriptionStockpile: -.string "Stockpiles power for up to three turns.\nThe stored power boosts the performance\nof the moves {COLOR_2 GREEN}Swallow{END_COLOR_TEXT_2} and {COLOR_2 GREEN}Spit Up{END_COLOR_TEXT_2}.\0" +.string "Stockpiles power for up to three turns.\nThe stored power boosts the performance\nof the moves {color GREEN}Swallow{reset} and {color GREEN}Spit Up{reset}.\0" .align 2,0 .global MoveNameStockpile @@ -1830,7 +1830,7 @@ MoveNameStockpile: .global MoveDescriptionMuddyWater MoveDescriptionMuddyWater: -.string "Inflicts damage on the target.\nIt may also lower the target's {COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2}\nby one level.\0" +.string "Inflicts damage on the target.\nIt may also lower the target's {color YELLOW}Accuracy{reset}\nby one level.\0" .align 2,0 .global MoveNameMuddyWater @@ -1850,7 +1850,7 @@ MoveNameFireBlast: .global MoveDescriptionDive MoveDescriptionDive: -.string "The user gains the {COLOR_2 CYAN}Diving{END_COLOR_TEXT_2} status,\nmaking it attack strongly on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\nIt can't be used without water.\0" +.string "The user gains the {color CYAN}Diving{reset} status,\nmaking it attack strongly on the next turn.\nIt is not possible to {color CYAN}link{reset} this move.\nIt can't be used without water.\0" .align 2,0 .global MoveNameDive @@ -1860,7 +1860,7 @@ MoveNameDive: .global MoveDescriptionExplosion MoveDescriptionExplosion: -.string "Makes the user blow up in\na {COLOR_2 CYAN}huge explosion{END_COLOR_TEXT_2}, inflicting damage on all\nsurrounding Pokémon. It also destroys\nsurrounding items and walls.\0" +.string "Makes the user blow up in\na {color CYAN}huge explosion{reset}, inflicting damage on all\nsurrounding Pokémon. It also destroys\nsurrounding items and walls.\0" .align 2,0 .global MoveNameExplosion @@ -1875,7 +1875,7 @@ MoveNameTackle: .global MoveDescriptionFly MoveDescriptionFly: -.string "The user gains the {COLOR_2 CYAN}Flying{END_COLOR_TEXT_2} status, \nmaking it attack strongly on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" +.string "The user gains the {color CYAN}Flying{reset} status, \nmaking it attack strongly on the next turn.\nIt is not possible to {color CYAN}link{reset} this move.\0" .align 2,0 .global MoveNameFly @@ -1895,7 +1895,7 @@ MoveNameSonicboom: .global MoveDescriptionSolarbeam MoveDescriptionSolarbeam: -.string "The user gains the {COLOR_2 CYAN}Solarbeam{END_COLOR_TEXT_2} status,\nmaking it attack strongly on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" +.string "The user gains the {color CYAN}Solarbeam{reset} status,\nmaking it attack strongly on the next turn.\nIt is not possible to {color CYAN}link{reset} this move.\0" .align 2,0 .global MoveNameSolarbeam @@ -1915,7 +1915,7 @@ MoveNameSheerCold: .global MoveDescriptionSacredFire MoveDescriptionSacredFire: -.string "Inflicts damage on the target.\nIt may also cause a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target.\nIt may also cause a {color CYAN}burn{reset}.\0" .align 2,0 .global MoveNameSacredFire @@ -1925,7 +1925,7 @@ MoveNameSacredFire: .global MoveDescriptionGrowth MoveDescriptionGrowth: -.string "Boosts the user's {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2} by one\nlevel.\0" +.string "Boosts the user's {color YELLOW}Special Attack{reset} by one\nlevel.\0" .align 2,0 .global MoveNameGrowth @@ -1935,7 +1935,7 @@ MoveNameGrowth: .global MoveDescriptionPoisonChance MoveDescriptionPoisonChance: -.string "Inflicts damage on the target.\nIt may also leave the target {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2},\ndamaging it over several turns.\0" +.string "Inflicts damage on the target.\nIt may also leave the target {color CYAN}poisoned{reset},\ndamaging it over several turns.\0" .align 2,0 .global MoveNameSmog @@ -1965,7 +1965,7 @@ MoveNameSandTomb: .global MoveDescriptionLowerAccuracy MoveDescriptionLowerAccuracy: -.string "Lowers the target's {COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2} by one level.\0" +.string "Lowers the target's {color YELLOW}Accuracy{reset} by one level.\0" .align 2,0 .global MoveNameSandAttack @@ -1975,7 +1975,7 @@ MoveNameSandAttack: .global MoveDescriptionSandstorm MoveDescriptionSandstorm: -.string "Changes the dungeon floor's weather to\n{COLOR_2 CYAN}Sandstorm{END_COLOR_TEXT_2} for several turns.\0" +.string "Changes the dungeon floor's weather to\n{color CYAN}Sandstorm{reset} for several turns.\0" .align 2,0 .global MoveNameSandstorm @@ -1995,7 +1995,7 @@ MoveNameHeadbutt: .global MoveDescriptionSketch MoveDescriptionSketch: -.string "Copies the move last used by the target\nand makes it the user's.\n{COLOR_2 GREEN}Sketch{END_COLOR_TEXT_2} disappears after it copies a move.\0" +.string "Copies the move last used by the target\nand makes it the user's.\n{color GREEN}Sketch{reset} disappears after it copies a move.\0" .align 2,0 .global MoveNameSketch @@ -2005,7 +2005,7 @@ MoveNameSketch: .global MoveDescriptionSkillSwap MoveDescriptionSkillSwap: -.string "Switches the user's {COLOR_2 YELLOW}Special Ability{END_COLOR_TEXT_2} with\nthat of the target.\0" +.string "Switches the user's {color YELLOW}Special Ability{reset} with\nthat of the target.\0" .align 2,0 .global MoveNameSkillSwap @@ -2015,7 +2015,7 @@ MoveNameSkillSwap: .global MoveDescriptionSkyUppercut MoveDescriptionSkyUppercut: -.string "Inflicts damage on the target.\nIt hits even a Pokémon that is either\n{COLOR_2 CYAN}flying{END_COLOR_TEXT_2} or {COLOR_2 CYAN}bouncing{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target.\nIt hits even a Pokémon that is either\n{color CYAN}flying{reset} or {color CYAN}bouncing{reset}.\0" .align 2,0 .global MoveNameSkyUppercut @@ -2030,7 +2030,7 @@ MoveNameAbsorb: .global MoveDescriptionSafeguard MoveDescriptionSafeguard: -.string "The user and team members in the same\nroom gain the {COLOR_2 CYAN}Safeguard{END_COLOR_TEXT_2} status,\nwhich prevents status problems.\0" +.string "The user and team members in the same\nroom gain the {color CYAN}Safeguard{reset} status,\nwhich prevents status problems.\0" .align 2,0 .global MoveNameSafeguard @@ -2040,7 +2040,7 @@ MoveNameSafeguard: .global MoveDescriptionExtrasensory MoveDescriptionExtrasensory: -.string "Inflicts damage on the target.\nIt may also cause the target to {COLOR_2 CYAN}cringe{END_COLOR_TEXT_2},\nmaking it incapable of attacking\nor using moves.\0" +.string "Inflicts damage on the target.\nIt may also cause the target to {color CYAN}cringe{reset},\nmaking it incapable of attacking\nor using moves.\0" .align 2,0 .global MoveNameExtrasensory @@ -2070,7 +2070,7 @@ MoveNameFissure: .global MoveDescriptionMist MoveDescriptionMist: -.string "The user gains the {COLOR_2 CYAN}Mist{END_COLOR_TEXT_2} status.\nIt prevents {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Special\nAttack{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2}, and\n{COLOR_2 YELLOW}Evasion{END_COLOR_TEXT_2} from being reduced.\0" +.string "The user gains the {color CYAN}Mist{reset} status.\nIt prevents {color YELLOW}Attack{reset}, {color YELLOW}Defense{reset}, {color YELLOW}Special\nAttack{reset}, {color YELLOW}Special Defense{reset}, {color YELLOW}Accuracy{reset}, and\n{color YELLOW}Evasion{reset} from being reduced.\0" .align 2,0 .global MoveNameMist @@ -2080,7 +2080,7 @@ MoveNameMist: .global MoveDescriptionThunderbolt MoveDescriptionThunderbolt: -.string "Damages all foes around the user.\nIt may also cause {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2} and prevent\nany attacks or moves.\0" +.string "Damages all foes around the user.\nIt may also cause {color CYAN}paralysis{reset} and prevent\nany attacks or moves.\0" .align 2,0 .global MoveNameThunderbolt @@ -2090,7 +2090,7 @@ MoveNameThunderbolt: .global MoveDescriptionCharge MoveDescriptionCharge: -.string "The user gains the {COLOR_2 CYAN}Charging{END_COLOR_TEXT_2} status.\nIt boosts the power of the Electric-type\nmove to be used next.\0" +.string "The user gains the {color CYAN}Charging{reset} status.\nIt boosts the power of the Electric-type\nmove to be used next.\0" .align 2,0 .global MoveNameCharge @@ -2100,7 +2100,7 @@ MoveNameCharge: .global MoveDescriptionShadowBall MoveDescriptionShadowBall: -.string "Inflicts damage on the target, even at a\ndistance. It may also lower the target's\n{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by one level.\0" +.string "Inflicts damage on the target, even at a\ndistance. It may also lower the target's\n{color YELLOW}Special Defense{reset} by one level.\0" .align 2,0 .global MoveNameShadowBall @@ -2125,7 +2125,7 @@ MoveNameBind: .global MoveDescriptionStunSpore MoveDescriptionStunSpore: -.string "Causes {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2} in surrounding foes.\nA Pokémon affected by {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2} is\nincapable of attacking or using moves.\0" +.string "Causes {color CYAN}paralysis{reset} in surrounding foes.\nA Pokémon affected by {color CYAN}paralysis{reset} is\nincapable of attacking or using moves.\0" .align 2,0 .global MoveNameStunSpore @@ -2135,7 +2135,7 @@ MoveNameStunSpore: .global MoveDescriptionSelfdestruct MoveDescriptionSelfdestruct: -.string "Makes the user {COLOR_2 CYAN}explode{END_COLOR_TEXT_2}, inflicting\ndamage on all surrounding Pokémon.\nIt also destroys surrounding items.\0" +.string "Makes the user {color CYAN}explode{reset}, inflicting\ndamage on all surrounding Pokémon.\nIt also destroys surrounding items.\0" .align 2,0 .global MoveNameSelfdestruct @@ -2145,7 +2145,7 @@ MoveNameSelfdestruct: .global MoveDescriptionLowerDefense MoveDescriptionLowerDefense: -.string "Lowers the target's {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by one level.\0" +.string "Lowers the target's {color YELLOW}Defense{reset} by one level.\0" .align 2,0 .global MoveNameTailWhip @@ -2155,7 +2155,7 @@ MoveNameTailWhip: .global MoveDescriptionFlail MoveDescriptionFlail: -.string "Inflicts damage on the target.\nThe lower the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}, the greater\nthe damage.\0" +.string "Inflicts damage on the target.\nThe lower the user's {color YELLOW}HP{reset}, the greater\nthe damage.\0" .align 2,0 .global MoveNameFlail @@ -2180,7 +2180,7 @@ MoveNameNaturePower: .global MoveDescriptionEarthquake MoveDescriptionEarthquake: -.string "Damages all Pokémon in the same room.\nIt inflicts double damage on any {COLOR_2 CYAN}digging{END_COLOR_TEXT_2}\nPokémon.\0" +.string "Damages all Pokémon in the same room.\nIt inflicts double damage on any {color CYAN}digging{reset}\nPokémon.\0" .align 2,0 .global MoveNameEarthquake @@ -2190,7 +2190,7 @@ MoveNameEarthquake: .global MoveDescriptionRecover MoveDescriptionRecover: -.string "Restores the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} by half its\n{COLOR_2 YELLOW}maximum HP{END_COLOR_TEXT_2}.\0" +.string "Restores the user's {color YELLOW}HP{reset} by half its\n{color YELLOW}maximum HP{reset}.\0" .align 2,0 .global MoveNameRecover @@ -2210,7 +2210,7 @@ MoveNameSubmission: .global MoveDescriptionPsychUp MoveDescriptionPsychUp: -.string "Copies the target's levels for stats such\nas {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}.\0" +.string "Copies the target's levels for stats such\nas {color YELLOW}Attack{reset} and {color YELLOW}Defense{reset}.\0" .align 2,0 .global MoveNamePsychUp @@ -2225,7 +2225,7 @@ MoveNameSignalBeam: .global MoveDescriptionWaterSpout MoveDescriptionWaterSpout: -.string "Inflicts damage on the target.\nThe higher the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}, the greater\nthe damage.\0" +.string "Inflicts damage on the target.\nThe higher the user's {color YELLOW}HP{reset}, the greater\nthe damage.\0" .align 2,0 .global MoveNameWaterSpout @@ -2235,7 +2235,7 @@ MoveNameWaterSpout: .global MoveDescriptionUproar MoveDescriptionUproar: -.string "The user and team members in the room\ngain the {COLOR_2 CYAN}Sleepless{END_COLOR_TEXT_2} status,\nso they cannot fall asleep.\nIt also awakens sleeping team members.\0" +.string "The user and team members in the room\ngain the {color CYAN}Sleepless{reset} status,\nso they cannot fall asleep.\nIt also awakens sleeping team members.\0" .align 2,0 .global MoveNameUproar @@ -2245,7 +2245,7 @@ MoveNameUproar: .global MoveDescriptionPsychoBoost MoveDescriptionPsychoBoost: -.string "Inflicts damage on the target.\nHowever, it also lowers the user's {COLOR_2 YELLOW}Special\nAttack{END_COLOR_TEXT_2} by two levels.\0" +.string "Inflicts damage on the target.\nHowever, it also lowers the user's {color YELLOW}Special\nAttack{reset} by two levels.\0" .align 2,0 .global MoveNamePsychoBoost @@ -2260,7 +2260,7 @@ MoveNamePsychic: .global MoveDescriptionPsywave MoveDescriptionPsywave: -.string "Inflicts damage on the target, even at a\ndistance. The amount of damage depends\non the user's {COLOR_2 YELLOW}level{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target, even at a\ndistance. The amount of damage depends\non the user's {color YELLOW}level{reset}.\0" .align 2,0 .global MoveNamePsywave @@ -2270,7 +2270,7 @@ MoveNamePsywave: .global MoveDescriptionConfuseChanceDistance MoveDescriptionConfuseChanceDistance: -.string "Inflicts damage on the target, even at a\ndistance. It may also leave the target\n{COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target, even at a\ndistance. It may also leave the target\n{color CYAN}confused{reset}.\0" .align 2,0 .global MoveNamePsybeam @@ -2280,7 +2280,7 @@ MoveNamePsybeam: .global MoveDescriptionLowerSpeed MoveDescriptionLowerSpeed: -.string "Lowers the target's {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} by\none level.\0" +.string "Lowers the target's {color YELLOW}Movement Speed{reset} by\none level.\0" .align 2,0 .global MoveNameScaryFace @@ -2295,7 +2295,7 @@ MoveNameRollout: .global MoveDescriptionEndure MoveDescriptionEndure: -.string "The user gains the {COLOR_2 CYAN}Enduring{END_COLOR_TEXT_2} status.\nThe user will survive any attack with just\none {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\0" +.string "The user gains the {color CYAN}Enduring{reset} status.\nThe user will survive any attack with just\none {color YELLOW}HP{reset}.\0" .align 2,0 .global MoveNameEndure @@ -2305,7 +2305,7 @@ MoveNameEndure: .global MoveDescriptionMeteorMash MoveDescriptionMeteorMash: -.string "Inflicts damage on the target, even at a\ndistance. It may also boost the user's\n{COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by one level.\0" +.string "Inflicts damage on the target, even at a\ndistance. It may also boost the user's\n{color YELLOW}Attack{reset} by one level.\0" .align 2,0 .global MoveNameMeteorMash @@ -2315,7 +2315,7 @@ MoveNameMeteorMash: .global MoveDescriptionFollowMe MoveDescriptionFollowMe: -.string "The user gains the {COLOR_2 CYAN}Decoy{END_COLOR_TEXT_2} status,\nmaking it the primary target of foes.\0" +.string "The user gains the {color CYAN}Decoy{reset} status,\nmaking it the primary target of foes.\0" .align 2,0 .global MoveNameFollowMe @@ -2325,7 +2325,7 @@ MoveNameFollowMe: .global MoveDescriptionFreezeChanceRoom MoveDescriptionFreezeChanceRoom: -.string "Inflicts damage on the target.\nIt may also leave the target {COLOR_2 CYAN}frozen{END_COLOR_TEXT_2} and\nincapable of action.\0" +.string "Inflicts damage on the target.\nIt may also leave the target {color CYAN}frozen{reset} and\nincapable of action.\0" .align 2,0 .global MoveNamePowderSnow @@ -2335,7 +2335,7 @@ MoveNamePowderSnow: .global MoveDescriptionSkyAttack MoveDescriptionSkyAttack: -.string "The user gains the {COLOR_2 CYAN}Sky Attack{END_COLOR_TEXT_2} status,\nand it attacks strongly on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" +.string "The user gains the {color CYAN}Sky Attack{reset} status,\nand it attacks strongly on the next turn.\nIt is not possible to {color CYAN}link{reset} this move.\0" .align 2,0 .global MoveNameSkyAttack @@ -2345,7 +2345,7 @@ MoveNameSkyAttack: .global MoveDescriptionCosmicPower MoveDescriptionCosmicPower: -.string "Boosts the user's {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Special\nDefense{END_COLOR_TEXT_2} by one level.\0" +.string "Boosts the user's {color YELLOW}Defense{reset} and {color YELLOW}Special\nDefense{reset} by one level.\0" .align 2,0 .global MoveNameCosmicPower @@ -2355,7 +2355,7 @@ MoveNameCosmicPower: .global MoveDescriptionMindReader MoveDescriptionMindReader: -.string "Gives the user {COLOR_2 CYAN}Sure Shot{END_COLOR_TEXT_2} status, making\nall its moves and attacks completely\naccurate.\0" +.string "Gives the user {color CYAN}Sure Shot{reset} status, making\nall its moves and attacks completely\naccurate.\0" .align 2,0 .global MoveNameMindReader @@ -2365,7 +2365,7 @@ MoveNameMindReader: .global MoveDescriptionIcyWind MoveDescriptionIcyWind: -.string "Inflicts damage on the target, even at a\ndistance. It also lowers the target's\n{COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} by one level.\0" +.string "Inflicts damage on the target, even at a\ndistance. It also lowers the target's\n{color YELLOW}Movement Speed{reset} by one level.\0" .align 2,0 .global MoveNameIcyWind @@ -2375,7 +2375,7 @@ MoveNameIcyWind: .global MoveDescriptionRapidSpin MoveDescriptionRapidSpin: -.string "Inflicts damage on the target.\nIt also frees the user from {COLOR_2 CYAN}Leech Seed{END_COLOR_TEXT_2},\n{COLOR_2 CYAN}Leg Hold{END_COLOR_TEXT_2}, {COLOR_2 CYAN}Ingrain{END_COLOR_TEXT_2}, or {COLOR_2 CYAN}Constriction{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target.\nIt also frees the user from {color CYAN}Leech Seed{reset},\n{color CYAN}Leg Hold{reset}, {color CYAN}Ingrain{reset}, or {color CYAN}Constriction{reset}.\0" .align 2,0 .global MoveNameRapidSpin @@ -2385,7 +2385,7 @@ MoveNameRapidSpin: .global MoveDescriptionAgility MoveDescriptionAgility: -.string "Boosts by one level the {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2}\nof the user and team members in the\nsame room.\0" +.string "Boosts by one level the {color YELLOW}Movement Speed{reset}\nof the user and team members in the\nsame room.\0" .align 2,0 .global MoveNameAgility @@ -2395,7 +2395,7 @@ MoveNameAgility: .global MoveDescriptionSynthesis MoveDescriptionSynthesis: -.string "Restores the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\nThe amount of {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} regained depends on\nthe weather.\0" +.string "Restores the user's {color YELLOW}HP{reset}.\nThe amount of {color YELLOW}HP{reset} regained depends on\nthe weather.\0" .align 2,0 .global MoveNameSynthesis @@ -2405,7 +2405,7 @@ MoveNameSynthesis: .global MoveDescriptionAncientpower MoveDescriptionAncientpower: -.string "Inflicts damage on the target.\nIt may also simultaneously raise by one\nlevel {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2},\n{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}, and {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target.\nIt may also simultaneously raise by one\nlevel {color YELLOW}Attack{reset}, {color YELLOW}Special Attack{reset}, {color YELLOW}Defense{reset},\n{color YELLOW}Special Defense{reset}, and {color YELLOW}Movement Speed{reset}.\0" .align 2,0 .global MoveNameAncientpower @@ -2425,7 +2425,7 @@ MoveNameLowKick: .global MoveDescriptionOutrage MoveDescriptionOutrage: -.string "Hits the target two to five times in\nsuccession. However, it also makes the\nuser {COLOR_2 CYAN}confused{END_COLOR_TEXT_2}.\0" +.string "Hits the target two to five times in\nsuccession. However, it also makes the\nuser {color CYAN}confused{reset}.\0" .align 2,0 .global MoveNameOutrage @@ -2445,7 +2445,7 @@ MoveNameMeanLook: .global MoveDescriptionHaze MoveDescriptionHaze: -.string "Resets the {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}, etc., of all\nPokémon on the floor whether they were\nboosted or lowered.\0" +.string "Resets the {color YELLOW}Attack{reset}, {color YELLOW}Defense{reset}, etc., of all\nPokémon on the floor whether they were\nboosted or lowered.\0" .align 2,0 .global MoveNameHaze @@ -2460,7 +2460,7 @@ MoveNameCrabhammer: .global MoveDescriptionLegHolder MoveDescriptionLegHolder: -.string "Inflicts the {COLOR_2 CYAN}Leg Hold{END_COLOR_TEXT_2} status on the target,\nmaking it incapable of movement.\0" +.string "Inflicts the {color CYAN}Leg Hold{reset} status on the target,\nmaking it incapable of movement.\0" .align 2,0 .global MoveNameSpiderWeb @@ -2470,7 +2470,7 @@ MoveNameSpiderWeb: .global MoveDescriptionTickle MoveDescriptionTickle: -.string "Reduces the target's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}\nby one level.\0" +.string "Reduces the target's {color YELLOW}Attack{reset} and {color YELLOW}Defense{reset}\nby one level.\0" .align 2,0 .global MoveNameTickle @@ -2480,7 +2480,7 @@ MoveNameTickle: .global MoveDescriptionSleep MoveDescriptionSleep: -.string "Makes the target go to {COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}, causing it\nto be incapable of action.\0" +.string "Makes the target go to {color CYAN}sleep{reset}, causing it\nto be incapable of action.\0" .align 2,0 .global MoveNameGrasswhistle @@ -2490,7 +2490,7 @@ MoveNameGrasswhistle: .global MoveDescriptionMetalSound MoveDescriptionMetalSound: -.string "Reduces the target's {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by\nthree levels.\0" +.string "Reduces the target's {color YELLOW}Special Defense{reset} by\nthree levels.\0" .align 2,0 .global MoveNameMetalSound @@ -2500,7 +2500,7 @@ MoveNameMetalSound: .global MoveDescriptionSilverWind MoveDescriptionSilverWind: -.string "Inflicts damage on foes in the same room.\nIt may also simultaneously raise by one\nlevel {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Special Attack{END_COLOR_TEXT_2}, {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2},\n{COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}, and {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on foes in the same room.\nIt may also simultaneously raise by one\nlevel {color YELLOW}Attack{reset}, {color YELLOW}Special Attack{reset}, {color YELLOW}Defense{reset},\n{color YELLOW}Special Defense{reset}, and {color YELLOW}Movement Speed{reset}.\0" .align 2,0 .global MoveNameSilverWind @@ -2520,7 +2520,7 @@ MoveNameLeechLife: .global MoveDescriptionSpore MoveDescriptionSpore: -.string "Makes all the foes in the room go to\n{COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}.\0" +.string "Makes all the foes in the room go to\n{color CYAN}sleep{reset}.\0" .align 2,0 .global MoveNameSpore @@ -2530,7 +2530,7 @@ MoveNameSpore: .global MoveDescriptionSmellingsalt MoveDescriptionSmellingsalt: -.string "Inflicts damage on the target.\nIt inflicts greater damage if the target\nhas {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}, but it also heals {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target.\nIt inflicts greater damage if the target\nhas {color CYAN}paralysis{reset}, but it also heals {color CYAN}paralysis{reset}.\0" .align 2,0 .global MoveNameSmellingsalt @@ -2540,7 +2540,7 @@ MoveNameSmellingsalt: .global MoveDescriptionReversal MoveDescriptionReversal: -.string "Inflicts damage on the target.\nThe lower the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}, the greater the\ndamage it inflicts.\0" +.string "Inflicts damage on the target.\nThe lower the user's {color YELLOW}HP{reset}, the greater the\ndamage it inflicts.\0" .align 2,0 .global MoveNameReversal @@ -2550,7 +2550,7 @@ MoveNameReversal: .global MoveDescriptionDrain MoveDescriptionDrain: -.string "Inflicts damage on the target.\nIt also restores the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} based\non the damage it inflicted.\0" +.string "Inflicts damage on the target.\nIt also restores the user's {color YELLOW}HP{reset} based\non the damage it inflicted.\0" .align 2,0 .global MoveNameGigaDrain @@ -2560,7 +2560,7 @@ MoveNameGigaDrain: .global MoveDescriptionFocusPunch MoveDescriptionFocusPunch: -.string "The user gains the {COLOR_2 CYAN}Focus Punch{END_COLOR_TEXT_2} status,\nand it attacks on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" +.string "The user gains the {color CYAN}Focus Punch{reset} status,\nand it attacks on the next turn.\nIt is not possible to {color CYAN}link{reset} this move.\0" .align 2,0 .global MoveNameFocusPunch @@ -2570,7 +2570,7 @@ MoveNameFocusPunch: .global MoveDescriptionFocusEnergy MoveDescriptionFocusEnergy: -.string "The user gains the {COLOR_2 CYAN}Focus Energy{END_COLOR_TEXT_2} status,\nraising its critical-hit rate.\0" +.string "The user gains the {color CYAN}Focus Energy{reset} status,\nraising its critical-hit rate.\0" .align 2,0 .global MoveNameFocusEnergy @@ -2580,7 +2580,7 @@ MoveNameFocusEnergy: .global MoveDescriptionDamageLowerSpeed MoveDescriptionDamageLowerSpeed: -.string "Inflicts damage on the target.\nIt also lowers the target's {COLOR_2 YELLOW}Movement\nSpeed{END_COLOR_TEXT_2} by one level.\0" +.string "Inflicts damage on the target.\nIt also lowers the target's {color YELLOW}Movement\nSpeed{reset} by one level.\0" .align 2,0 .global MoveNameRockTomb @@ -2590,7 +2590,7 @@ MoveNameRockTomb: .global MoveDescriptionBrickBreak MoveDescriptionBrickBreak: -.string "Shatters the target's {COLOR_2 CYAN}Reflect{END_COLOR_TEXT_2}\nor {COLOR_2 CYAN}Light Screen{END_COLOR_TEXT_2} to inflict damage.\0" +.string "Shatters the target's {color CYAN}Reflect{reset}\nor {color CYAN}Light Screen{reset} to inflict damage.\0" .align 2,0 .global MoveNameBrickBreak @@ -2600,7 +2600,7 @@ MoveNameBrickBreak: .global MoveDescriptionConstrict MoveDescriptionConstrict: -.string "Inflicts damage on the target.\nIt may also lower the target's {COLOR_2 YELLOW}Movement\nSpeed{END_COLOR_TEXT_2} by one level.\0" +.string "Inflicts damage on the target.\nIt may also lower the target's {color YELLOW}Movement\nSpeed{reset} by one level.\0" .align 2,0 .global MoveNameConstrict @@ -2615,7 +2615,7 @@ MoveNameWithdraw: .global MoveDescriptionConstriction MoveDescriptionConstriction: -.string "Inflicts damage on the target.\nIt may also cause {COLOR_2 CYAN}constriction{END_COLOR_TEXT_2}, making the\nfoe incapable of movement.\0" +.string "Inflicts damage on the target.\nIt may also cause {color CYAN}constriction{reset}, making the\nfoe incapable of movement.\0" .align 2,0 .global MoveNameClamp @@ -2630,7 +2630,7 @@ MoveNameKarateChop: .global MoveDescriptionFacade MoveDescriptionFacade: -.string "Inflicts damage on the target.\nIf the user is {COLOR_2 CYAN}poisoned{END_COLOR_TEXT_2}, {COLOR_2 CYAN}badly poisoned{END_COLOR_TEXT_2},\nor has a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}, its power is doubled.\0" +.string "Inflicts damage on the target.\nIf the user is {color CYAN}poisoned{reset}, {color CYAN}badly poisoned{reset},\nor has a {color CYAN}burn{reset}, its power is doubled.\0" .align 2,0 .global MoveNameFacade @@ -2640,7 +2640,7 @@ MoveNameFacade: .global MoveDescriptionEndeavor MoveDescriptionEndeavor: -.string "The difference between the foe's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} and\nthe user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} is applied as this move's\ndamage.\0" +.string "The difference between the foe's {color YELLOW}HP{reset} and\nthe user's {color YELLOW}HP{reset} is applied as this move's\ndamage.\0" .align 2,0 .global MoveNameEndeavor @@ -2650,7 +2650,7 @@ MoveNameEndeavor: .global MoveDescriptionParalyzeChance MoveDescriptionParalyzeChance: -.string "Inflicts damage on the target.\nIt may also cause {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2} and prevent\nany attacks or moves.\0" +.string "Inflicts damage on the target.\nIt may also cause {color CYAN}paralysis{reset} and prevent\nany attacks or moves.\0" .align 2,0 .global MoveNameThunderpunch @@ -2660,12 +2660,12 @@ MoveNameThunderpunch: .global MoveDescriptionThunder MoveDescriptionThunder: -.string "Inflicts damage on the target. It may also\ncause {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2}. Its accuracy is affected\nby the weather. It even hits a Pokémon\nthat is {COLOR_2 CYAN}flying{END_COLOR_TEXT_2} or {COLOR_2 CYAN}bouncing{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target. It may also\ncause {color CYAN}paralysis{reset}. Its accuracy is affected\nby the weather. It even hits a Pokémon\nthat is {color CYAN}flying{reset} or {color CYAN}bouncing{reset}.\0" .align 2,0 .global MoveDescriptionLowerSpecialDefenseChance MoveDescriptionLowerSpecialDefenseChance: -.string "Inflicts damage on the target.\nIt may also lower the target's {COLOR_2 YELLOW}Special\nDefense{END_COLOR_TEXT_2} by one level.\0" +.string "Inflicts damage on the target.\nIt may also lower the target's {color YELLOW}Special\nDefense{reset} by one level.\0" .align 2,0 .global MoveNameCrunch @@ -2675,7 +2675,7 @@ MoveNameCrunch: .global MoveDescriptionBide MoveDescriptionBide: -.string "The user gains the {COLOR_2 CYAN}Bide{END_COLOR_TEXT_2} status.\nWhen {COLOR_2 CYAN}Bide{END_COLOR_TEXT_2} is released, the user looses an\nattack double the damage it took\nwhile waiting.\0" +.string "The user gains the {color CYAN}Bide{reset} status.\nWhen {color CYAN}Bide{reset} is released, the user looses an\nattack double the damage it took\nwhile waiting.\0" .align 2,0 .global MoveNameBide @@ -2685,7 +2685,7 @@ MoveNameBide: .global MoveDescriptionRazorWind MoveDescriptionRazorWind: -.string "The user gains the {COLOR_2 CYAN}Razor Wind{END_COLOR_TEXT_2} status,\nand it looses a powerful attack with a\nhigh critical-hit rate on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" +.string "The user gains the {color CYAN}Razor Wind{reset} status,\nand it looses a powerful attack with a\nhigh critical-hit rate on the next turn.\nIt is not possible to {color CYAN}link{reset} this move.\0" .align 2,0 .global MoveNameRazorWind @@ -2695,7 +2695,7 @@ MoveNameRazorWind: .global MoveDescriptionParalyze MoveDescriptionParalyze: -.string "Causes {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2} in the target.\nA Pokémon affected by {COLOR_2 CYAN}paralysis{END_COLOR_TEXT_2} is\nincapable of attacking or using moves.\0" +.string "Causes {color CYAN}paralysis{reset} in the target.\nA Pokémon affected by {color CYAN}paralysis{reset} is\nincapable of attacking or using moves.\0" .align 2,0 .global MoveNameDisable @@ -2705,7 +2705,7 @@ MoveNameDisable: .global MoveDescriptionBoostDefense MoveDescriptionBoostDefense: -.string "Boosts the user's {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2} by one level.\0" +.string "Boosts the user's {color YELLOW}Defense{reset} by one level.\0" .align 2,0 .global MoveNameHarden @@ -2715,7 +2715,7 @@ MoveNameHarden: .global MoveDescriptionGust MoveDescriptionGust: -.string "Inflicts damage on the target.\nDoubles damage on a {COLOR_2 CYAN}flying{END_COLOR_TEXT_2} or {COLOR_2 CYAN}bouncing{END_COLOR_TEXT_2}\nPokémon.\0" +.string "Inflicts damage on the target.\nDoubles damage on a {color CYAN}flying{reset} or {color CYAN}bouncing{reset}\nPokémon.\0" .align 2,0 .global MoveNameGust @@ -2725,7 +2725,7 @@ MoveNameGust: .global MoveDescriptionBoostEvasion MoveDescriptionBoostEvasion: -.string "Boosts the user's {COLOR_2 YELLOW}Evasion{END_COLOR_TEXT_2} by one level.\0" +.string "Boosts the user's {color YELLOW}Evasion{reset} by one level.\0" .align 2,0 .global MoveNameDoubleTeam @@ -2735,7 +2735,7 @@ MoveNameDoubleTeam: .global MoveDescriptionBoostAttack MoveDescriptionBoostAttack: -.string "Boosts the user's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by one level.\0" +.string "Boosts the user's {color YELLOW}Attack{reset} by one level.\0" .align 2,0 .global MoveNameSharpen @@ -2745,7 +2745,7 @@ MoveNameSharpen: .global MoveDescriptionOdorSleuth MoveDescriptionOdorSleuth: -.string "Resets the boosted {COLOR_2 YELLOW}Evasion{END_COLOR_TEXT_2} of foes in\nthe same room.\nGhost-type foes are {COLOR_2 CYAN}exposed{END_COLOR_TEXT_2}.\0" +.string "Resets the boosted {color YELLOW}Evasion{reset} of foes in\nthe same room.\nGhost-type foes are {color CYAN}exposed{reset}.\0" .align 2,0 .global MoveNameOdorSleuth @@ -2755,7 +2755,7 @@ MoveNameOdorSleuth: .global MoveDescriptionFlamethrower MoveDescriptionFlamethrower: -.string "Inflicts damage on the target, even at a\ndistance. It may also cause a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}.\nIt thaws and frees frozen Pokémon.\0" +.string "Inflicts damage on the target, even at a\ndistance. It may also cause a {color CYAN}burn{reset}.\nIt thaws and frees frozen Pokémon.\0" .align 2,0 .global MoveNameFlamethrower @@ -2765,7 +2765,7 @@ MoveNameFlamethrower: .global MoveDescriptionBurnChance MoveDescriptionBurnChance: -.string "Inflicts damage on the target.\nIt may also cause a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2}.\nIt thaws and frees frozen Pokémon.\0" +.string "Inflicts damage on the target.\nIt may also cause a {color CYAN}burn{reset}.\nIt thaws and frees frozen Pokémon.\0" .align 2,0 .global MoveNameFlameWheel @@ -2790,7 +2790,7 @@ MoveNameStrength: .global MoveDescriptionGrudge MoveDescriptionGrudge: -.string "The user gains the {COLOR_2 CYAN}Grudge{END_COLOR_TEXT_2} status.\nIf the user is defeated, it zeroes the {COLOR_2 YELLOW}PP{END_COLOR_TEXT_2}\nof the move last used by the foe.\0" +.string "The user gains the {color CYAN}Grudge{reset} status.\nIf the user is defeated, it zeroes the {color YELLOW}PP{reset}\nof the move last used by the foe.\0" .align 2,0 .global MoveNameGrudge @@ -2800,7 +2800,7 @@ MoveNameGrudge: .global MoveDescriptionReturn MoveDescriptionReturn: -.string "Inflicts damage on the target.\nIts power rises with the user's\n{COLOR_2 YELLOW}IQ{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target.\nIts power rises with the user's\n{color YELLOW}IQ{reset}.\0" .align 2,0 .global MoveNameReturn @@ -2810,7 +2810,7 @@ MoveNameReturn: .global MoveDescriptionWillOWisp MoveDescriptionWillOWisp: -.string "Inflicts a {COLOR_2 CYAN}burn{END_COLOR_TEXT_2} on the target.\nA {COLOR_2 CYAN}burn{END_COLOR_TEXT_2} inflicts damage every few turns.\0" +.string "Inflicts a {color CYAN}burn{reset} on the target.\nA {color CYAN}burn{reset} inflicts damage every few turns.\0" .align 2,0 .global MoveNameWillOWisp @@ -2820,7 +2820,7 @@ MoveNameWillOWisp: .global MoveDescriptionCringe MoveDescriptionCringe: -.string "Inflicts damage on the target.\nIt may also cause the target to {COLOR_2 CYAN}cringe{END_COLOR_TEXT_2},\nmaking it incapable of action.\0" +.string "Inflicts damage on the target.\nIt may also cause the target to {color CYAN}cringe{reset},\nmaking it incapable of action.\0" .align 2,0 .global MoveNameAstonish @@ -2830,7 +2830,7 @@ MoveNameAstonish: .global MoveDescriptionFlatter MoveDescriptionFlatter: -.string "Inflicts the {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} status on the\ntarget, but also raises its {COLOR_2 YELLOW}Special\nAttack{END_COLOR_TEXT_2} by one level.\0" +.string "Inflicts the {color CYAN}Confused{reset} status on the\ntarget, but also raises its {color YELLOW}Special\nAttack{reset} by one level.\0" .align 2,0 .global MoveNameFlatter @@ -2840,7 +2840,7 @@ MoveNameFlatter: .global MoveDescriptionOctazooka MoveDescriptionOctazooka: -.string "Inflicts damage on the target, even at a\ndistance. It may also lower the target's\n{COLOR_2 YELLOW}Accuracy{END_COLOR_TEXT_2} by one level.\0" +.string "Inflicts damage on the target, even at a\ndistance. It may also lower the target's\n{color YELLOW}Accuracy{reset} by one level.\0" .align 2,0 .global MoveNameOctazooka @@ -2850,7 +2850,7 @@ MoveNameOctazooka: .global MoveDescriptionMemento MoveDescriptionMemento: -.string "Sharply reduces the {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} and {COLOR_2 YELLOW}Special\nAttack{END_COLOR_TEXT_2} of all foes in the room. It also\ncuts the user's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} to one and warps the\nuser to a different place on the floor.\n\0" +.string "Sharply reduces the {color YELLOW}Attack{reset} and {color YELLOW}Special\nAttack{reset} of all foes in the room. It also\ncuts the user's {color YELLOW}HP{reset} to one and warps the\nuser to a different place on the floor.\n\0" .align 2,0 .global MoveNameMemento @@ -2860,7 +2860,7 @@ MoveNameMemento: .global MoveDescriptionAuroraBeam MoveDescriptionAuroraBeam: -.string "Inflicts damage on the target, even at a\ndistance. It may also halve the \ntarget's {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2}.\0" +.string "Inflicts damage on the target, even at a\ndistance. It may also halve the \ntarget's {color YELLOW}Attack{reset}.\0" .align 2,0 .global MoveNameAuroraBeam @@ -2870,7 +2870,7 @@ MoveNameAuroraBeam: .global MoveDescriptionOverheat MoveDescriptionOverheat: -.string "Damages all foes around the user, but\nalso lowers the user's {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2}\nby two levels and thaws frozen Pokémon.\0" +.string "Damages all foes around the user, but\nalso lowers the user's {color YELLOW}Special Defense{reset}\nby two levels and thaws frozen Pokémon.\0" .align 2,0 .global MoveNameOverheat @@ -2880,7 +2880,7 @@ MoveNameOverheat: .global MoveDescriptionMirrorMove MoveDescriptionMirrorMove: -.string "The user gains the {COLOR_2 CYAN}Mirror Move{END_COLOR_TEXT_2} status.\nAny move used against the user is\ncountered with the same move.\0" +.string "The user gains the {color CYAN}Mirror Move{reset} status.\nAny move used against the user is\ncountered with the same move.\0" .align 2,0 .global MoveNameMirrorMove @@ -2900,7 +2900,7 @@ MoveNameDoubleslap: .global MoveDescriptionCounter MoveDescriptionCounter: -.string "The user gains the {COLOR_2 CYAN}Counter{END_COLOR_TEXT_2} status.\nAny damage from {COLOR_2 CYAN}Physical Attack moves{END_COLOR_TEXT_2}\nor a regular attack is partially returned.\0" +.string "The user gains the {color CYAN}Counter{reset} status.\nAny damage from {color CYAN}Physical Attack moves{reset}\nor a regular attack is partially returned.\0" .align 2,0 .global MoveNamePursuit @@ -2910,7 +2910,7 @@ MoveNamePursuit: .global MoveDescriptionSmokescreen MoveDescriptionSmokescreen: -.string "Inflicts the {COLOR_2 CYAN}Whiffer{END_COLOR_TEXT_2} status on the target,\nmaking it miss almost all of its attacks\nand moves.\0" +.string "Inflicts the {color CYAN}Whiffer{reset} status on the target,\nmaking it miss almost all of its attacks\nand moves.\0" .align 2,0 .global MoveNameSmokescreen @@ -2930,7 +2930,7 @@ MoveNameAirCutter: .global MoveDescriptionSpite MoveDescriptionSpite: -.string "Zeroes the {COLOR_2 YELLOW}PP{END_COLOR_TEXT_2} of the move last used by\nthe target, making it unusable.\0" +.string "Zeroes the {color YELLOW}PP{reset} of the move last used by\nthe target, making it unusable.\0" .align 2,0 .global MoveNameSpite @@ -2940,7 +2940,7 @@ MoveNameSpite: .global MoveDescriptionSing MoveDescriptionSing: -.string "Makes the target go to {COLOR_2 CYAN}sleep{END_COLOR_TEXT_2}, causing\nit to be incapable of action.\0" +.string "Makes the target go to {color CYAN}sleep{reset}, causing\nit to be incapable of action.\0" .align 2,0 .global MoveNameSing @@ -2950,7 +2950,7 @@ MoveNameSing: .global MoveDescriptionFakeTears MoveDescriptionFakeTears: -.string "Lowers the target's {COLOR_2 YELLOW}Special Defense{END_COLOR_TEXT_2} by\ntwo levels.\0" +.string "Lowers the target's {color YELLOW}Special Defense{reset} by\ntwo levels.\0" .align 2,0 .global MoveNameFakeTears @@ -2960,7 +2960,7 @@ MoveNameFakeTears: .global MoveDescriptionWhirlpool MoveDescriptionWhirlpool: -.string "Inflicts damage on the target.\nIt may also cause {COLOR_2 CYAN}constriction{END_COLOR_TEXT_2}, making the\nfoe incapable of movement.\nInflicts double damage on a {COLOR_2 CYAN}diving{END_COLOR_TEXT_2} foe.\0" +.string "Inflicts damage on the target.\nIt may also cause {color CYAN}constriction{reset}, making the\nfoe incapable of movement.\nInflicts double damage on a {color CYAN}diving{reset} foe.\0" .align 2,0 .global MoveNameWhirlpool @@ -2980,7 +2980,7 @@ MoveNameWeatherBall: .global MoveDescriptionRockSlide MoveDescriptionRockSlide: -.string "Inflicts damage on the target.\nIt may also cause the target to {COLOR_2 CYAN}cringe{END_COLOR_TEXT_2}, \nmaking it incapable of action.\0" +.string "Inflicts damage on the target.\nIt may also cause the target to {color CYAN}cringe{reset}, \nmaking it incapable of action.\0" .align 2,0 .global MoveNameRockSlide @@ -3010,7 +3010,7 @@ MoveNameRockThrow: .global MoveDescriptionScreech MoveDescriptionScreech: -.string "Sharply lowers the target's {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}.\0" +.string "Sharply lowers the target's {color YELLOW}Defense{reset}.\0" .align 2,0 .global MoveNameHealBell @@ -3020,7 +3020,7 @@ MoveNameHealBell: .global MoveDescriptionSnore MoveDescriptionSnore: -.string "If the user is attacked while asleep, it\ncounterattacks. It may also cause the\ntarget to {COLOR_2 CYAN}cringe{END_COLOR_TEXT_2}, making it incapable\nof action.\0" +.string "If the user is attacked while asleep, it\ncounterattacks. It may also cause the\ntarget to {color CYAN}cringe{reset}, making it incapable\nof action.\0" .align 2,0 .global MoveNameSnore @@ -3030,7 +3030,7 @@ MoveNameSnore: .global MoveDescriptionSwagger MoveDescriptionSwagger: -.string "Inflicts the {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} status on the\ntarget, but also raises its {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} by\ntwo levels.\0" +.string "Inflicts the {color CYAN}Confused{reset} status on the\ntarget, but also raises its {color YELLOW}Attack{reset} by\ntwo levels.\0" .align 2,0 .global MoveNameSwagger @@ -3040,7 +3040,7 @@ MoveNameSwagger: .global MoveDescriptionStringShot MoveDescriptionStringShot: -.string "Reduces the target's {COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} by\none level, even at a distance.\0" +.string "Reduces the target's {color YELLOW}Movement Speed{reset} by\none level, even at a distance.\0" .align 2,0 .global MoveNameStringShot @@ -3060,7 +3060,7 @@ MoveNameTorment: .global MoveDescriptionPainSplit MoveDescriptionPainSplit: -.string "Adds the {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} of the user and the target,\nthen shares it equally.\0" +.string "Adds the {color YELLOW}HP{reset} of the user and the target,\nthen shares it equally.\0" .align 2,0 .global MoveNamePainSplit @@ -3070,7 +3070,7 @@ MoveNamePainSplit: .global MoveDescriptionSuperFang MoveDescriptionSuperFang: -.string "Halves the target's {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2}.\0" +.string "Halves the target's {color YELLOW}HP{reset}.\0" .align 2,0 .global MoveNameSuperFang @@ -3080,7 +3080,7 @@ MoveNameSuperFang: .global MoveDescriptionRage MoveDescriptionRage: -.string "The user gains the {COLOR_2 CYAN}Enraged{END_COLOR_TEXT_2} status.\nIts {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} rises by one level every time\nthe user takes damage.\0" +.string "The user gains the {color CYAN}Enraged{reset} status.\nIts {color YELLOW}Attack{reset} rises by one level every time\nthe user takes damage.\0" .align 2,0 .global MoveNameRage @@ -3100,7 +3100,7 @@ MoveNameCut: .global MoveDescriptionEncore MoveDescriptionEncore: -.string "Inflicts the {COLOR_2 CYAN}Encore{END_COLOR_TEXT_2} status on the target,\nmaking it capable of using only\nthe move it last used.\0" +.string "Inflicts the {color CYAN}Encore{reset} status on the target,\nmaking it capable of using only\nthe move it last used.\0" .align 2,0 .global MoveNameEncore @@ -3110,7 +3110,7 @@ MoveNameEncore: .global MoveDescriptionLowerSpeedChanceDistance MoveDescriptionLowerSpeedChanceDistance: -.string "Inflicts damage on the target, even at a\ndistance. It may also lower the target's\n{COLOR_2 YELLOW}Movement Speed{END_COLOR_TEXT_2} by one level.\0" +.string "Inflicts damage on the target, even at a\ndistance. It may also lower the target's\n{color YELLOW}Movement Speed{reset} by one level.\0" .align 2,0 .global MoveNameBubble @@ -3130,7 +3130,7 @@ MoveNameAromatherapy: .global MoveDescriptionHail MoveDescriptionHail: -.string "Changes the dungeon floor's weather to\n{COLOR_2 CYAN}Hail{END_COLOR_TEXT_2} for several turns.\0" +.string "Changes the dungeon floor's weather to\n{color CYAN}Hail{reset} for several turns.\0" .align 2,0 .global MoveNameHail @@ -3140,7 +3140,7 @@ MoveNameHail: .global MoveDescriptionConfuseRay MoveDescriptionConfuseRay: -.string "Inflicts the {COLOR_2 CYAN}Confused{END_COLOR_TEXT_2} status on\nthe target, making its attacks and\nmovements erratic.\0" +.string "Inflicts the {color CYAN}Confused{reset} status on\nthe target, making its attacks and\nmovements erratic.\0" .align 2,0 .global MoveNameConfuseRay @@ -3150,7 +3150,7 @@ MoveNameConfuseRay: .global MoveDescriptionRainDance MoveDescriptionRainDance: -.string "Changes the dungeon floor's weather to\n{COLOR_2 CYAN}Rain{END_COLOR_TEXT_2} over several turns.\0" +.string "Changes the dungeon floor's weather to\n{color CYAN}Rain{reset} over several turns.\0" .align 2,0 .global MoveNameRainDance @@ -3160,7 +3160,7 @@ MoveNameRainDance: .global MoveDescriptionCharm MoveDescriptionCharm: -.string "Lowers the {COLOR_2 YELLOW}Attack{END_COLOR_TEXT_2} of the target\nby two levels.\0" +.string "Lowers the {color YELLOW}Attack{reset} of the target\nby two levels.\0" .align 2,0 .global MoveNameCharm @@ -3170,7 +3170,7 @@ MoveNameCharm: .global MoveDescriptionSweetScent MoveDescriptionSweetScent: -.string "Lowers the {COLOR_2 YELLOW}Evasion{END_COLOR_TEXT_2} of foes in the same\nroom by one level.\0" +.string "Lowers the {color YELLOW}Evasion{reset} of foes in the same\nroom by one level.\0" .align 2,0 .global MoveNameSweetScent @@ -3190,7 +3190,7 @@ MoveNameThrash: .global MoveDescriptionDig MoveDescriptionDig: -.string "The user gains the {COLOR_2 CYAN}Digging{END_COLOR_TEXT_2} status,\nand it attacks on the next turn.\nIt is not possible to {COLOR_2 CYAN}link{END_COLOR_TEXT_2} this move.\0" +.string "The user gains the {color CYAN}Digging{reset} status,\nand it attacks on the next turn.\nIt is not possible to {color CYAN}link{reset} this move.\0" .align 2,0 .global MoveNameDig @@ -3200,7 +3200,7 @@ MoveNameDig: .global MoveDescriptionVitalThrow MoveDescriptionVitalThrow: -.string "The user gains the {COLOR_2 CYAN}Vital Throw{END_COLOR_TEXT_2} status.\nFoes that attack the user are hurled at\nother foes.\0" +.string "The user gains the {color CYAN}Vital Throw{reset} status.\nFoes that attack the user are hurled at\nother foes.\0" .align 2,0 .global MoveNameVitalThrow @@ -3210,7 +3210,7 @@ MoveNameVitalThrow: .global MoveDescriptionMorningSun MoveDescriptionMorningSun: -.string "Restores the {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} of the user and team\nmembers on the floor.\nThe amount of {COLOR_2 YELLOW}HP{END_COLOR_TEXT_2} regained depends on\nthe weather.\0" +.string "Restores the {color YELLOW}HP{reset} of the user and team\nmembers on the floor.\nThe amount of {color YELLOW}HP{reset} regained depends on\nthe weather.\0" .align 2,0 .global MoveNameMorningSun @@ -3220,7 +3220,7 @@ MoveNameMorningSun: .global MoveDescriptionNightmare MoveDescriptionNightmare: -.string "Inflicts the {COLOR_2 CYAN}Nightmare{END_COLOR_TEXT_2} status\non the target, making it incapable\nof action.\0" +.string "Inflicts the {color CYAN}Nightmare{reset} status\non the target, making it incapable\nof action.\0" .align 2,0 .global MoveNameNightmare @@ -3230,7 +3230,7 @@ MoveNameNightmare: .global MoveDescriptionLovelyKiss MoveDescriptionLovelyKiss: -.string "Makes all foes around the user go to {COLOR_2 CYAN}sleep{END_COLOR_TEXT_2},\ncausing them to be incapable of action.\0" +.string "Makes all foes around the user go to {color CYAN}sleep{reset},\ncausing them to be incapable of action.\0" .align 2,0 .global MoveNameLovelyKiss @@ -3240,7 +3240,7 @@ MoveNameLovelyKiss: .global MoveDescriptionYawn MoveDescriptionYawn: -.string "Inflicts the {COLOR_2 CYAN}Yawning{END_COLOR_TEXT_2} status on the target.\nA {COLOR_2 CYAN}yawning{END_COLOR_TEXT_2} Pokémon falls\nasleep sometime later.\0" +.string "Inflicts the {color CYAN}Yawning{reset} status on the target.\nA {color CYAN}yawning{reset} Pokémon falls\nasleep sometime later.\0" .align 2,0 .global MoveNameYawn @@ -3260,12 +3260,12 @@ MoveNameIceBall: .global MoveUseTextUse MoveUseTextUse: -.string "{ARG_POKEMON_0} used {ARG_MOVE_ITEM_0}!\0" +.string "{POKEMON_0} used {MOVE_ITEM_0}!\0" .align 2,0 .global MoveDescriptionLowerDefenseChance MoveDescriptionLowerDefenseChance: -.string "Inflicts damage on the target.\nIt may also lower the target's {COLOR_2 YELLOW}Defense{END_COLOR_TEXT_2}\nby one level.\0" +.string "Inflicts damage on the target.\nIt may also lower the target's {color YELLOW}Defense{reset}\nby one level.\0" .align 2,0 .global MoveNameIronTail diff --git a/src/code_801B3C0.c b/src/code_801B3C0.c index b70cde784..687a7f9c7 100644 --- a/src/code_801B3C0.c +++ b/src/code_801B3C0.c @@ -84,7 +84,7 @@ static void sub_801B480(void) sub_80073B8(sUnknown_203B230->unk24); preload = sUnknown_203B230->unk10[sUnknown_203B230->unk8]; strcpy(gAvailablePokemonNames, preload->pokeName); - PrintFormatStringOnWindow(16, 0, sFmtPkmn0, sUnknown_203B230->unk24, 0); // {ARG_POKEMON_0} + PrintFormatStringOnWindow(16, 0, sFmtPkmn0, sUnknown_203B230->unk24, 0); // {POKEMON_0} PrintFormatStringOnWindow(4, 16, sUnknown_203B230->unk10[sUnknown_203B230->unk8]->unk4, sUnknown_203B230->unk24, 0); sub_80073E0(sUnknown_203B230->unk24); break; diff --git a/src/code_801D014.c b/src/code_801D014.c index 1d9bbaed6..64afce22b 100644 --- a/src/code_801D014.c +++ b/src/code_801D014.c @@ -593,7 +593,7 @@ static void sub_801D894(void) LoadTeamRankBadge(2, 8, 6); // Have to load before TeamRank funcs - r5 = sFmtPointsCyan; // %s {COLOR_1 CYAN}%d{END_COLOR_TEXT_1} Pts. + r5 = sFmtPointsCyan; // %s {COLOR CYAN}%d{RESET} Pts. rank = GetRescueTeamRank(); sprintfStatic(buffer, r5, GetTeamRankString(rank), GetTeamRankPts()); PrintStringOnWindow(32, 4, buffer, 2, 0); diff --git a/src/code_801EE10.c b/src/code_801EE10.c index a29cb0ba4..5dad87167 100644 --- a/src/code_801EE10.c +++ b/src/code_801EE10.c @@ -42,8 +42,8 @@ const UnkTextStruct2 gUnknown_80DC274 = { NULL, }; -ALIGNED(4) const u8 gUnknown_80DC28C[] = _("Moves: {COLOR_1 YELLOW}{ARG_POKEMON_0}{END_COLOR_TEXT_1} "); -ALIGNED(4) const u8 gUnknown_80DC2A0[] = _("{ARG_MOVE_ITEM_0}"); +ALIGNED(4) const u8 gUnknown_80DC28C[] = _("Moves: {COLOR YELLOW}{POKEMON_0}{RESET} "); +ALIGNED(4) const u8 gUnknown_80DC2A0[] = _("{MOVE_ITEM_0}"); u32 sub_8006544(u32 index); s32 sub_801F3F8(void); diff --git a/src/code_801F808.c b/src/code_801F808.c index b33b90946..317789827 100644 --- a/src/code_801F808.c +++ b/src/code_801F808.c @@ -43,7 +43,7 @@ static const UnkTextStruct2 sUnknown_80DC2F8 = { NULL }; -const u8 gUnknown_80DC310[] = _("{ARG_POKEMON_0}"); +const u8 gUnknown_80DC310[] = _("{POKEMON_0}"); extern void sub_801F918(s32); extern void sub_801FA58(void); diff --git a/src/code_8057824_1.c b/src/code_8057824_1.c index f7281b5bd..abe9ce615 100644 --- a/src/code_8057824_1.c +++ b/src/code_8057824_1.c @@ -1664,7 +1664,7 @@ void MagmaCavernMidDialogue(void) SpriteLookAroundEffect(PartnerEntity); PlaySoundEffect(0x1c7); sub_80856E0(PartnerEntity, DIRECTION_NORTH); - // Hey! {ARG_POKEMON_0}! + // Hey! {POKEMON_0}! // Over there! DisplayDungeonDialogue(MagmaCavernMidDialogue_5); iVar3->info->unk15E = 0; @@ -1691,7 +1691,7 @@ void MagmaCavernMidDialogue(void) DisplayDungeonDialogue(MagmaCavernMidDialogue_8); sub_803E708(10,0x46); // We challenged.. - // {ARG_POKEMON_2}... + // {POKEMON_2}... // And wiped out.. DisplayDungeonDialogue(MagmaCavernMidDialogue_9); sub_803E708(10,0x46); @@ -1706,21 +1706,21 @@ void MagmaCavernMidDialogue(void) PlaySoundEffect(0x1d5); SpriteLookAroundEffect(PartnerEntity); // That's right... - // What happened to {ARG_POKEMON_3}? - // Where is {ARG_POKEMON_3}? + // What happened to {POKEMON_3}? + // Where is {POKEMON_3}? // // Wait... - // What about {ARG_POKEMON_3}? - // Where did {ARG_POKEMON_3} go? + // What about {POKEMON_3}? + // Where did {POKEMON_3} go? DisplayDungeonDialogue(MagmaCavernMidDialogue_12); sub_803E708(0x1e,0x46); - // {ARG_POKEMON_3} is... - // Still battling {ARG_POKEMON_2}... + // {POKEMON_3} is... + // Still battling {POKEMON_2}... DisplayDungeonDialogue(MagmaCavernMidDialogue_13); sub_803E708(10,0x46); sub_80869E4(PartnerEntity,4,1,2); sub_80869E4(LeaderEntity,4,2,6); - // {ARG_POKEMON_0}! + // {POKEMON_0}! // We've got to hurry! DisplayDungeonDialogue(MagmaCavernMidDialogue_14); sub_8089294(); @@ -3221,7 +3221,7 @@ void sub_808AFB0(char param_1) if ((sub_8098100(0x22) == 0) && (param_1 == 0x2E) && (sub_8098100(0x1d) == 0) && (sub_80860A8(ITEM_ROCK_PART) != 0)) { sub_8097FD0(0x1d); SetMessageArgument(gAvailablePokemonNames,GetLeader(),0); - // {ARG_POKEMON_0} obtained the Rock Part that Regirock was guarding + // {POKEMON_0} obtained the Rock Part that Regirock was guarding DisplayDungeonDialogue(gRegirockPostFightDialogue_2); sub_80421C0(0,0xd4); sub_803E708(10,70); @@ -3239,7 +3239,7 @@ void sub_808B030(char param_1) if ((sub_8098100(0x22) == 0) && (param_1 == 0x2F) && (sub_8098100(0x1d) == 0) && (sub_80860A8(ITEM_ICE_PART) != 0)) { sub_8097FD0(0x1d); SetMessageArgument(gAvailablePokemonNames,GetLeader(),0); - // {ARG_POKEMON_0} obtained the Ice Part that Regice was guarding + // {POKEMON_0} obtained the Ice Part that Regice was guarding DisplayDungeonDialogue(gRegicePostFightDialogue_2); sub_80421C0(0,0xd4); sub_803E708(10,70); @@ -3257,7 +3257,7 @@ void sub_808B0B0(char param_1) if ((sub_8098100(0x22) == 0) && (param_1 == 0x30) && (sub_8098100(0x1d) == 0) && (sub_80860A8(ITEM_STEEL_PART) != 0)) { sub_8097FD0(0x1d); SetMessageArgument(gAvailablePokemonNames, GetLeader(), 0); - // {ARG_POKEMON_0} obtained the Steel Part that Registeel was guarding + // {POKEMON_0} obtained the Steel Part that Registeel was guarding DisplayDungeonDialogue(gRegisteelPostFightDialogue_2); sub_80421C0(0,0xd4); sub_803E708(10,70); @@ -4058,10 +4058,10 @@ void KyogrePreFightDialogue(void) sub_803E708(10,0x46); DungeonFadeInNewBGM(MUS_FRIEND_AREA_CRYPTIC_CAVE,0x3c); sub_808C360(); - // My duels against {ARG_POKEMON_3} (Groudon) left us both exhausted + // My duels against {POKEMON_3} (Groudon) left us both exhausted DisplayDungeonDialogue(gKyogrePreFightDialogue_4); KyogreScreenFlash(); - // I am {ARG_POKEMON_2} (Kyogre)! + // I am {POKEMON_2} (Kyogre)! // The lord of the sea! DisplayDungeonDialogue(gKyogrePreFightDialogue_5); KyogreScreenFlash(); @@ -4272,7 +4272,7 @@ void CelebiJoinDialogue(void) sub_8086598(); sub_8086598(); sub_8086598(); - // The Time-Traveling Pokemon {ARG_POKEMON_2} (Celebi)! + // The Time-Traveling Pokemon {POKEMON_2} (Celebi)! DisplayDungeonDialogue(gCelebiJoinDialogue_2); PlaySoundEffect(0x1c7); sub_806CDD4(CelebiEntity,10,DIRECTION_SOUTH); diff --git a/src/code_807CD9C.c b/src/code_807CD9C.c index f9f3c7e60..6d73a02dd 100644 --- a/src/code_807CD9C.c +++ b/src/code_807CD9C.c @@ -73,12 +73,12 @@ void sub_807CD9C(Entity *pokemon, Entity *target, u32 direction) { if (pokemon == target) { SetMessageArgument(gAvailablePokemonNames,target,0); - sub_80522F4(pokemon,target,*gUnknown_80FCA10); // {ARG_POKEMON_0} couldn't be knocked flying! + sub_80522F4(pokemon,target,*gUnknown_80FCA10); // {POKEMON_0} couldn't be knocked flying! return; } SetMessageArgument(gAvailablePokemonNames,target,0); if (HasAbility(target,ABILITY_SUCTION_CUPS)) { - sub_80522F4(pokemon,target,*gUnknown_80FCBCC); // {ARG_POKEMON_0} is anchored! It can't be knocked flying! + sub_80522F4(pokemon,target,*gUnknown_80FCBCC); // {POKEMON_0} is anchored! It can't be knocked flying! return; } else @@ -86,7 +86,7 @@ void sub_807CD9C(Entity *pokemon, Entity *target, u32 direction) (target->info->action).direction = (direction + 4) & DIRECTION_MASK; sub_806CDD4(target, 6, (direction + 4) & DIRECTION_MASK); sub_80421C0(target,0x1a3); - sub_80522F4(pokemon,target,*gUnknown_80F8A0C); // {ARG_POKEMON_0} was blown away! + sub_80522F4(pokemon,target,*gUnknown_80F8A0C); // {POKEMON_0} was blown away! flag = TRUE; sp_0x28 = NULL; diff --git a/src/code_80972F4.c b/src/code_80972F4.c index fabd3dc8f..149fb4e6e 100644 --- a/src/code_80972F4.c +++ b/src/code_80972F4.c @@ -7,8 +7,8 @@ #include "data/story_missions.h" -ALIGNED(4) const u8 gDummyScenarioText[] = _("{COLOR_1 YELLOW_3}Scenario try dummy{END_COLOR_TEXT_1}"); -ALIGNED(4) const u8 gBlankMission[] = _("{COLOR_1 RED_2}???{END_COLOR_TEXT_1}"); +ALIGNED(4) const u8 gDummyScenarioText[] = _("{COLOR YELLOW_C}Scenario try dummy{RESET}"); +ALIGNED(4) const u8 gBlankMission[] = _("{COLOR RED_W}???{RESET}"); extern void GeneratePelipperJobs(void); diff --git a/src/data/code_801602C.h b/src/data/code_801602C.h index 8e0cd8453..4d0da6c76 100644 --- a/src/data/code_801602C.h +++ b/src/data/code_801602C.h @@ -15,6 +15,6 @@ UNUSED static const UnkTextStruct2 sUnknown_80DB670 = NULL }; -ALIGNED(4) static const u8 sIsNameOKPrompt[] = _("Is the name {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1} OK?"); +ALIGNED(4) static const u8 sIsNameOKPrompt[] = _("Is the name {COLOR CYAN}{POKEMON_0}{RESET} OK?"); ALIGNED(4) static const u8 sNameTooLong[] = _("This name is too long."); ALIGNED(4) static const u8 sEnterAName[] = _("Please enter a name."); \ No newline at end of file diff --git a/src/data/code_801AFA4.h b/src/data/code_801AFA4.h index 9ca462aa5..ddf6dea9c 100644 --- a/src/data/code_801AFA4.h +++ b/src/data/code_801AFA4.h @@ -1,10 +1,10 @@ ALIGNED(4) static const u8 sFmtWhoWillLearnTheMove[] = _( "{CENTER_ALIGN}Who will learn the move\n" - "{CENTER_ALIGN}{COLOR_1 CYAN}{ARG_POKEMON_7}{END_COLOR_TEXT_1}?"); + "{CENTER_ALIGN}{COLOR CYAN}{POKEMON_7}{RESET}?"); ALIGNED(4) static const u8 sFmtLearnedTheMove[] = _( - "{CENTER_ALIGN}{COLOR_1 CYAN_3}{ARG_POKEMON_8}{END_COLOR_TEXT_1} learned\n" - "{CENTER_ALIGN}the move {COLOR_1 CYAN}{ARG_POKEMON_7}{END_COLOR_TEXT_1}!"); + "{CENTER_ALIGN}{COLOR CYAN_M}{POKEMON_8}{RESET} learned\n" + "{CENTER_ALIGN}the move {COLOR CYAN}{POKEMON_7}{RESET}!"); ALIGNED(4) static const u8 sFmtNoOneCanLearnThisMove[] = _( "{CENTER_ALIGN}No one in the current team\n" diff --git a/src/data/code_801B3C0.h b/src/data/code_801B3C0.h index 153be787f..144d4edf8 100644 --- a/src/data/code_801B3C0.h +++ b/src/data/code_801B3C0.h @@ -1 +1 @@ -ALIGNED(4) static const u8 sFmtPkmn0[] = _("{ARG_POKEMON_0}"); \ No newline at end of file +ALIGNED(4) static const u8 sFmtPkmn0[] = _("{POKEMON_0}"); \ No newline at end of file diff --git a/src/data/code_801B60C.h b/src/data/code_801B60C.h index 7d534ee66..107de37b2 100644 --- a/src/data/code_801B60C.h +++ b/src/data/code_801B60C.h @@ -26,25 +26,25 @@ static const UnkTextStruct2 sUnknown_80DBA88 = { }; ALIGNED(4) static const u8 sFmtReceivedThePromised[] = _( - "{CENTER_ALIGN}{COLOR_1 YELLOW_5}{ARG_POKEMON_0}{END_COLOR_TEXT_1} received\n" - "{CENTER_ALIGN}the promised {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}. "); + "{CENTER_ALIGN}{COLOR YELLOW_N}{POKEMON_0}{RESET} received\n" + "{CENTER_ALIGN}the promised {COLOR GREEN}{MOVE_ITEM_0}{RESET}. "); ALIGNED(4) static const u8 sFmtTeamReceivedThePromised[] = _( - "{CENTER_ALIGN}{COLOR_1 YELLOW_5}{ARG_POKEMON_0}{END_COLOR_TEXT_1}'s team received\n" - "{CENTER_ALIGN}the promised {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}."); + "{CENTER_ALIGN}{COLOR YELLOW_N}{POKEMON_0}{RESET}'s team received\n" + "{CENTER_ALIGN}the promised {COLOR GREEN}{MOVE_ITEM_0}{RESET}."); ALIGNED(4) static const u8 sFmtTeamAlsoReceived[] = _( "{CENTER_ALIGN}The team also received\n" - "{CENTER_ALIGN}the item {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}."); + "{CENTER_ALIGN}the item {COLOR GREEN}{MOVE_ITEM_0}{RESET}."); ALIGNED(4) static const u8 sFmtReceivedStatue[] = _( - "{CENTER_ALIGN}Received the {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}!{EXTRA_MSG}{CENTER_ALIGN}A very rare statue. It has been placed\n" + "{CENTER_ALIGN}Received the {COLOR GREEN}{MOVE_ITEM_0}{RESET}!{EXTRA_MSG}{CENTER_ALIGN}A very rare statue. It has been placed\n" "{CENTER_ALIGN}outside your rescue team base."); ALIGNED(4) static const u8 sFmtReceive1000Instead[] = _( - "{CENTER_ALIGN}The {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}...\n" - "{CENTER_ALIGN}You've already acquired it.{EXTRA_MSG}{CENTER_ALIGN}Sorry to see that...{EXTRA_MSG}{CENTER_ALIGN}In its place, {COLOR_1 YELLOW_5}{ARG_POKEMON_0}{END_COLOR_TEXT_1},\n" - "{CENTER_ALIGN}you can have {COLOR_1 LIGHT_BLUE}1,000{END_COLOR_TEXT_1} {POKE}."); + "{CENTER_ALIGN}The {COLOR GREEN}{MOVE_ITEM_0}{RESET}...\n" + "{CENTER_ALIGN}You've already acquired it.{EXTRA_MSG}{CENTER_ALIGN}Sorry to see that...{EXTRA_MSG}{CENTER_ALIGN}In its place, {COLOR YELLOW_N}{POKEMON_0}{RESET},\n" + "{CENTER_ALIGN}you can have {COLOR CYAN_G}1,000{RESET} {POKE}."); ALIGNED(4) static const u8 sFmtFullSoSentToStorage[] = _( "{CENTER_ALIGN}Your Toolbox is full.\n" @@ -56,19 +56,19 @@ ALIGNED(4) static const u8 sFmtFullSoPrompt[] = _( ALIGNED(4) static const u8 sFmtConfirmThrowAway[] = _( "{CENTER_ALIGN}Is it OK to throw away\n" - "{CENTER_ALIGN}this {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}?"); + "{CENTER_ALIGN}this {COLOR GREEN}{MOVE_ITEM_0}{RESET}?"); ALIGNED(4) static const u8 sFmtThrownAway[] = _( - "{CENTER_ALIGN}The {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN}The {COLOR GREEN}{MOVE_ITEM_0}{RESET}\n" "{CENTER_ALIGN}was thrown away."); ALIGNED(4) static const u8 sFmtPutInStorageForReceive[] = _( - "{CENTER_ALIGN}The {COLOR_1 GREEN}{ARG_MOVE_ITEM_1}{END_COLOR_TEXT_1} was put in\n" - "{CENTER_ALIGN}storage to get the {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}."); + "{CENTER_ALIGN}The {COLOR GREEN}{MOVE_ITEM_1}{RESET} was put in\n" + "{CENTER_ALIGN}storage to get the {COLOR GREEN}{MOVE_ITEM_0}{RESET}."); ALIGNED(4) static const u8 sFmtDiscardedForReceive[] = _( - "{CENTER_ALIGN}The {COLOR_1 GREEN}{ARG_MOVE_ITEM_1}{END_COLOR_TEXT_1} was discarded\n" - "{CENTER_ALIGN}to get the {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}."); + "{CENTER_ALIGN}The {COLOR GREEN}{MOVE_ITEM_1}{RESET} was discarded\n" + "{CENTER_ALIGN}to get the {COLOR GREEN}{MOVE_ITEM_0}{RESET}."); ALIGNED(4) static const u8 sTrashToolboxItem[] = _("Trash Toolbox Item"); ALIGNED(4) static const u8 sTrashReceivedItem[] = _("Trash Received Item"); diff --git a/src/data/code_801D014.h b/src/data/code_801D014.h index 18fd1a0c1..e4d342f7c 100644 --- a/src/data/code_801D014.h +++ b/src/data/code_801D014.h @@ -58,6 +58,6 @@ ALIGNED(4) static const u8 sTeam[] = _("Team"); ALIGNED(4) static const u8 sJobList[] = _("Job List"); ALIGNED(4) static const u8 sOthers[] = _("Others"); ALIGNED(4) static const u8 sTripleQuestionMark[] = _("???"); -ALIGNED(4) static const u8 sFmtPointsCyan[] = _("%s {COLOR_1 CYAN}%d{END_COLOR_TEXT_1} Pts."); -ALIGNED(4) static const u8 sFmtMoneyCyan[] = _("Money: {COLOR_1 CYAN}%d{END_COLOR_TEXT_1} {POKE}"); +ALIGNED(4) static const u8 sFmtPointsCyan[] = _("%s {COLOR CYAN}%d{RESET} Pts."); +ALIGNED(4) static const u8 sFmtMoneyCyan[] = _("Money: {COLOR CYAN}%d{RESET} {POKE}"); ALIGNED(4) static const u8 sTeamRankBadgeFileName[] = _("tmrkpat"); diff --git a/src/data/code_80227B8.h b/src/data/code_80227B8.h index 4e7fe4fb7..7098910af 100644 --- a/src/data/code_80227B8.h +++ b/src/data/code_80227B8.h @@ -37,48 +37,48 @@ ALIGNED(4) static const u8 sTripleQuestionMark[] = _("???"); ALIGNED(4) static const u8 sDoesNotAppearHungry[] = _("It doesn't appear to be hungry."); ALIGNED(4) static const u8 sFmtGummiBigFav[] = _( - "{ARG_POKEMON_1} took the Gummi and ate it.\n" + "{POKEMON_1} took the Gummi and ate it.\n" "This Gummi looks like a big favorite!\n" - "{ARG_POKEMON_1}'s IQ went up!"); + "{POKEMON_1}'s IQ went up!"); ALIGNED(4) static const u8 sFmtGummiFav[] = _( - "{ARG_POKEMON_1} took the Gummi and ate it.\n" + "{POKEMON_1} took the Gummi and ate it.\n" "This Gummi looks like a favorite!\n" - "{ARG_POKEMON_1}'s IQ went up!"); + "{POKEMON_1}'s IQ went up!"); ALIGNED(4) static const u8 sFmtGummiOkay[] = _( - "{ARG_POKEMON_1} took the Gummi and ate it.\n" + "{POKEMON_1} took the Gummi and ate it.\n" "It doesn't seem to dislike this Gummi.\n" - "{ARG_POKEMON_1}'s IQ went up!"); + "{POKEMON_1}'s IQ went up!"); ALIGNED(4) static const u8 sFmtGummiSatisfied[] = _( - "{ARG_POKEMON_1} took the Gummi and ate it.\n" + "{POKEMON_1} took the Gummi and ate it.\n" "It appears to be just a little satisfied.\n" - "{ARG_POKEMON_1}'s IQ went up!"); + "{POKEMON_1}'s IQ went up!"); ALIGNED(4) static const u8 sFmtIQHelpedLearn[] = _( - "{ARG_POKEMON_1}'s IQ helped it learn how to\n" - "use {ARG_MOVE_ITEM_1}!"); + "{POKEMON_1}'s IQ helped it learn how to\n" + "use {MOVE_ITEM_1}!"); ALIGNED(4) static const u8 sFmtPlusEverything[] = _( - "Yes! {ARG_POKEMON_1} grew explosively!\n" + "Yes! {POKEMON_1} grew explosively!\n" "Attack, Defense, and so on rose by 1!"); ALIGNED(4) static const u8 sFmtPlusAtk[] = _( "Yes!\n" - "{ARG_POKEMON_1}'s Attack rose by 1!"); + "{POKEMON_1}'s Attack rose by 1!"); ALIGNED(4) static const u8 sFmtPlusSpAtk[] = _( "Yes!\n" - "{ARG_POKEMON_1}'s Special Attack rose by 1!"); + "{POKEMON_1}'s Special Attack rose by 1!"); ALIGNED(4) static const u8 sFmtPlusDef[] = _( "Yes!\n" - "{ARG_POKEMON_1}'s Defense rose by 1!"); + "{POKEMON_1}'s Defense rose by 1!"); ALIGNED(4) static const u8 sFmtPlusSpDef[] = _( "Yes!\n" - "{ARG_POKEMON_1}'s Special Defense rose by 1!"); + "{POKEMON_1}'s Special Defense rose by 1!"); ALIGNED(4) static const u8 sNoGummis[] = _("You don't have any Gummis."); ALIGNED(4) static const u8 sNoItem[] = _("You don't have an item."); diff --git a/src/data/code_8023144.h b/src/data/code_8023144.h index 4f54cb236..22430504f 100644 --- a/src/data/code_8023144.h +++ b/src/data/code_8023144.h @@ -19,4 +19,4 @@ static const UnkTextStruct2 sUnknown_80DC91C = }; ALIGNED(4) static const u8 sPokemon[] = _("Pokémon"); -ALIGNED(4) static const u8 sFmtColoredString[] = _("{COLOR_2}%c%s{END_COLOR_TEXT_2}"); \ No newline at end of file +ALIGNED(4) static const u8 sFmtColoredString[] = _("{color}%c%s{reset}"); \ No newline at end of file diff --git a/src/data/code_8023868.h b/src/data/code_8023868.h index 34ff50334..ada6340f0 100644 --- a/src/data/code_8023868.h +++ b/src/data/code_8023868.h @@ -22,6 +22,6 @@ const u8 sUnknown_80DC980[] = _("Friends"); ALIGNED(4) //static // MAKE STATIC WHEN code_8023868.s IS DONE const u8 sUnknown_80DC988[] = _("Pokémon Friends"); ALIGNED(4) //static // MAKE STATIC WHEN code_8023868.s IS DONE -const u8 sUnknown_80DC998[] = _("{COLOR_2}%c%s{END_COLOR_TEXT_2}"); +const u8 sUnknown_80DC998[] = _("{color}%c%s{reset}"); ALIGNED(4) //static // MAKE STATIC WHEN code_8023868.s IS DONE const u8 sUnknown_80DC9A4[] = _("%s"); \ No newline at end of file diff --git a/src/data/code_802DB28.h b/src/data/code_802DB28.h index 7b43cf9d3..6a13906a7 100644 --- a/src/data/code_802DB28.h +++ b/src/data/code_802DB28.h @@ -11,16 +11,16 @@ ALIGNED(4) static const u8 sThanksForRescuingMe[] = _(" Thank you for rescuing m ALIGNED(4) static const u8 sThanksForRescuingThem[] = _( " Thank you for rescuing\n" - "{COLOR_1 CYAN}{ARG_POKEMON_1}{END_COLOR_TEXT_1}!"); + "{COLOR CYAN}{POKEMON_1}{RESET}!"); ALIGNED(4) static const u8 sThanksForEscortingMe[] = _( " Thank you for escorting me\n" - "to {COLOR_1 CYAN}{ARG_POKEMON_1}{END_COLOR_TEXT_1}! "); + "to {COLOR CYAN}{POKEMON_1}{RESET}! "); ALIGNED(4) static const u8 sThanksForDelivering[] = _( " Thank you for delivering\n" - "the {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}!"); + "the {COLOR GREEN}{MOVE_ITEM_0}{RESET}!"); ALIGNED(4) static const u8 sThanksForGetting[] = _( " Thank you for getting me\n" - "the {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}!"); \ No newline at end of file + "the {COLOR GREEN}{MOVE_ITEM_0}{RESET}!"); \ No newline at end of file diff --git a/src/data/common_strings_felicity_bank.h b/src/data/common_strings_felicity_bank.h index b65a46e31..bcf5f8fc0 100644 --- a/src/data/common_strings_felicity_bank.h +++ b/src/data/common_strings_felicity_bank.h @@ -90,7 +90,7 @@ ALIGNED(4) static const u8 sUnknown_80D4A58[] = _( ALIGNED(4) static const u8 sUnknown_80D4C14[] = _( " {POKE}... Purr...\n" - "Very well, {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}.\n" + "Very well, {COLOR CYAN}{VALUE_0}{RESET} {POKE}.\n" "Here you are."); ALIGNED(4) static const u8 sUnknown_80D4C50[] = _( @@ -111,7 +111,7 @@ ALIGNED(4) static const u8 sUnknown_80D4D20[] = _( ALIGNED(4) static const u8 sUnknown_80D4D44[] = _( " Zzz...\n" - "{COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}... Very well...{WAIT_PRESS}\n" + "{COLOR CYAN}{VALUE_0}{RESET} {POKE}... Very well...{WAIT_PRESS}\n" "I will guard it jealously..."); ALIGNED(4) static const u8 sUnknown_80D4D8C[] = _( @@ -146,7 +146,7 @@ ALIGNED(4) static const u8 sUnknown_80D4F08[] = _( ALIGNED(4) static const u8 sUnknown_80D4F24[] = _( " Sssnore... Purr...\n" - "Your account contains {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}...\n" + "Your account contains {COLOR CYAN}{VALUE_0}{RESET} {POKE}...\n" "How may I serve you?"); ALIGNED(4) static const u8 sUnknown_80D4F74[] = _( @@ -174,7 +174,7 @@ ALIGNED(4) static const u8 sUnknown_80D4FC8[] = _( " Simple, isn't it?"); ALIGNED(4) static const u8 sUnknown_80D5158[] = _( - " Very well, {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}.\n" + " Very well, {COLOR CYAN}{VALUE_0}{RESET} {POKE}.\n" "Here you are."); ALIGNED(4) static const u8 sUnknown_80D5184[] = _( @@ -191,7 +191,7 @@ ALIGNED(4) static const u8 sUnknown_80D5224[] = _( "withdraw?"); ALIGNED(4) static const u8 sUnknown_80D5244[] = _( - " {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}. Very well.{WAIT_PRESS}\n" + " {COLOR CYAN}{VALUE_0}{RESET} {POKE}. Very well.{WAIT_PRESS}\n" "I will guard it jealously."); ALIGNED(4) static const u8 sUnknown_80D527C[] = _( @@ -214,7 +214,7 @@ ALIGNED(4) static const u8 sUnknown_80D5380[] = _(" Very well."); ALIGNED(4) static const u8 sUnknown_80D538C[] = _( " Your account contains\n" - "{COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}.\n" + "{COLOR CYAN}{VALUE_0}{RESET} {POKE}.\n" "How may I serve you?"); ALIGNED(4) static const u8 sUnknown_80D53C8[] = _(" How may I serve you?"); diff --git a/src/data/common_strings_gulpin_shop.h b/src/data/common_strings_gulpin_shop.h index 4780eef66..b23d162c6 100644 --- a/src/data/common_strings_gulpin_shop.h +++ b/src/data/common_strings_gulpin_shop.h @@ -112,16 +112,16 @@ ALIGNED(4) static const u8 sUnknown_80D8950[] = _( "I'd go broke if it weren't for those\n" "forgetful Pokémon...{EXTRA_MSG}" " Zzz... Gwaaah...\n" - "Especially that {COLOR_1 CYAN}{ARG_POKEMON_4}{END_COLOR_TEXT_1}...\n" + "Especially that {COLOR CYAN}{POKEMON_4}{RESET}...\n" "It seems to be forgetful...{EXTRA_MSG}" " Sssnore...\n" "I hope it forgets more moves...\n" "So it needs to see me...{EXTRA_MSG}" " Zzz... Mumble...\n" "But we decided to get rid of that\n" - "{COLOR_1 CYAN}{ARG_POKEMON_4}{END_COLOR_TEXT_1}...{EXTRA_MSG}" + "{COLOR CYAN}{POKEMON_4}{RESET}...{EXTRA_MSG}" " Gwaaaah... Gweh...\n" - "{COLOR_1 CYAN}{ARG_POKEMON_4}{END_COLOR_TEXT_1} won't be coming around\n" + "{COLOR CYAN}{POKEMON_4}{RESET} won't be coming around\n" "anymore... "); ALIGNED(4) static const u8 sUnknown_80D8AB8[] = _( @@ -161,8 +161,8 @@ ALIGNED(4) static const u8 sUnknown_80D8CC8[] = _( " Fwaaah hah!\n" "There...{EXTRA_MSG}" " Zzz... Mutter...\n" - "{COLOR_1 CYAN}{ARG_POKEMON_5}{END_COLOR_TEXT_1} forgot...\n" - "{COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1} and moves linked to it..."); + "{COLOR CYAN}{POKEMON_5}{RESET} forgot...\n" + "{COLOR GREEN}{POKEMON_1}{RESET} and moves linked to it..."); ALIGNED(4) static const u8 sUnknown_80D8D64[] = _( " Fgwaaah...\n" @@ -172,17 +172,17 @@ ALIGNED(4) static const u8 sUnknown_80D8D64[] = _( " Fwaaah hah!\n" "There...{EXTRA_MSG}" " Zzz... Mumble...\n" - "{COLOR_1 CYAN}{ARG_POKEMON_5}{END_COLOR_TEXT_1} forgot...\n" - "{COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1}..."); + "{COLOR CYAN}{POKEMON_5}{RESET} forgot...\n" + "{COLOR GREEN}{POKEMON_1}{RESET}..."); ALIGNED(4) static const u8 sUnknown_80D8DE8[] = _( " Zzz... Fwaah? Forget...?\n" - "{COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1} and any moves\n" + "{COLOR GREEN}{POKEMON_1}{RESET} and any moves\n" "linked to it?"); ALIGNED(4) static const u8 sUnknown_80D8E28[] = _( " Zzz... Forget...?\n" - "{COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1}?"); + "{COLOR GREEN}{POKEMON_1}{RESET}?"); ALIGNED(4) static const u8 sUnknown_80D8E48[] = _( " Zzznork...? Hunh?\n" @@ -202,10 +202,10 @@ ALIGNED(4) static const u8 sUnknown_80D8EC4[] = _( " Fwaaah hah!\n" "There...{EXTRA_MSG}" " Zzz... Mumble...\n" - "{COLOR_1 CYAN_3}{ARG_POKEMON_5}{END_COLOR_TEXT_1}'s OK...{EXTRA_MSG}" + "{COLOR CYAN_M}{POKEMON_5}{RESET}'s OK...{EXTRA_MSG}" " Sssnork... Forgotten...\n" - "{COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1} and moves linked to it...\n" - "Remembered {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}..."); + "{COLOR GREEN}{POKEMON_1}{RESET} and moves linked to it...\n" + "Remembered {COLOR CYAN}{POKEMON_0}{RESET}..."); ALIGNED(4) static const u8 sUnknown_80D8F98[] = _( " Fgwaah...\n" @@ -214,30 +214,30 @@ ALIGNED(4) static const u8 sUnknown_80D8F98[] = _( "Gggggggg...{WAIT_PRESS} Pwah! Gulpin!{EXTRA_MSG}" " Fwaah hah!\n" "There...{EXTRA_MSG}" - " Zzz... Zzz... {COLOR_1 CYAN_3}{ARG_POKEMON_5}{END_COLOR_TEXT_1}\n" - "forgot {COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1}...\n" - "Remembered {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}..."); + " Zzz... Zzz... {COLOR CYAN_M}{POKEMON_5}{RESET}\n" + "forgot {COLOR GREEN}{POKEMON_1}{RESET}...\n" + "Remembered {COLOR CYAN}{POKEMON_0}{RESET}..."); ALIGNED(4) static const u8 sUnknown_80D9034[] = _( " Zzz? Fnurf? \n" - "Forget {COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1}...and moves linked\n" - "to it? Remember {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}?"); + "Forget {COLOR GREEN}{POKEMON_1}{RESET}...and moves linked\n" + "to it? Remember {COLOR CYAN}{POKEMON_0}{RESET}?"); ALIGNED(4) static const u8 sUnknown_80D9080[] = _( " Zzznort... Grumble...\n" - "Forget {COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1}?\n" - "Remember {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}?"); + "Forget {COLOR GREEN}{POKEMON_1}{RESET}?\n" + "Remember {COLOR CYAN}{POKEMON_0}{RESET}?"); ALIGNED(4) static const u8 sUnknown_80D90BC[] = _( " Zzzznort... Move...?\n" - "Remember {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}?{EXTRA_MSG}" + "Remember {COLOR CYAN}{POKEMON_0}{RESET}?{EXTRA_MSG}" " Fwaah...\n" "Gggggggggggg...{WAIT_PRESS} Gulpin!{EXTRA_MSG}" " Fgwaah...\n" "There...{EXTRA_MSG}" " Zzz... Zzz...\n" - "{COLOR_1 CYAN_3}{ARG_POKEMON_5}{END_COLOR_TEXT_1} remembered...\n" - "Hunh? That move, {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}..."); + "{COLOR CYAN_M}{POKEMON_5}{RESET} remembered...\n" + "Hunh? That move, {COLOR CYAN}{POKEMON_0}{RESET}..."); ALIGNED(4) static const u8 sUnknown_80D9168[] = _( " Zzz... Fgwah...?\n" @@ -300,9 +300,9 @@ ALIGNED(4) static const u8 sUnknown_80D9498[] = _( "Two or more moves can be used one after\n" "another in one turn!{EXTRA_MSG}" " For example, if the moves\n" - "{COLOR_1 CYAN}Scratch{END_COLOR_TEXT_1} and {COLOR_1 CYAN}Growl{END_COLOR_TEXT_1} are\n" + "{COLOR CYAN}Scratch{RESET} and {COLOR CYAN}Growl{RESET} are\n" "linked...{EXTRA_MSG}" - " Both {COLOR_1 CYAN}Scratch{END_COLOR_TEXT_1} and {COLOR_1 CYAN}Growl{END_COLOR_TEXT_1} are\n" + " Both {COLOR CYAN}Scratch{RESET} and {COLOR CYAN}Growl{RESET} are\n" "used in one turn!{WAIT_PRESS}\n" "See? Amazing, huh?{EXTRA_MSG}" " Using links, heheh...{WAIT_PRESS}\n" @@ -345,8 +345,8 @@ ALIGNED(4) static const u8 sUnknown_80D9904[] = _( " Gggggggg...{WAIT_PRESS} Poof!{EXTRA_MSG}" " There!\n" "Success!{EXTRA_MSG}" - " {COLOR_1 CYAN}{ARG_POKEMON_5}{END_COLOR_TEXT_1} has forgotten\n" - "the move {COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1} and any moves\n" + " {COLOR CYAN}{POKEMON_5}{RESET} has forgotten\n" + "the move {COLOR GREEN}{POKEMON_1}{RESET} and any moves\n" "linked to it!"); ALIGNED(4) static const u8 sUnknown_80D9988[] = _( @@ -354,16 +354,16 @@ ALIGNED(4) static const u8 sUnknown_80D9988[] = _( " Gggggggg...{WAIT_PRESS} Poof!{EXTRA_MSG}" " There!\n" "Success!{EXTRA_MSG}" - " {COLOR_1 CYAN}{ARG_POKEMON_5}{END_COLOR_TEXT_1} has forgotten\n" - "the move {COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1}!"); + " {COLOR CYAN}{POKEMON_5}{RESET} has forgotten\n" + "the move {COLOR GREEN}{POKEMON_1}{RESET}!"); ALIGNED(4) static const u8 sUnknown_80D99F0[] = _( " So, forget the move\n" - "{COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1} and any moves linked to it?"); + "{COLOR GREEN}{POKEMON_1}{RESET} and any moves linked to it?"); ALIGNED(4) static const u8 sUnknown_80D9A2C[] = _( " So, forget the move\n" - "{COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1}?"); + "{COLOR GREEN}{POKEMON_1}{RESET}?"); ALIGNED(4) static const u8 sUnknown_80D9A50[] = _( " Uh... Huh?{WAIT_PRESS}\n" @@ -382,39 +382,39 @@ ALIGNED(4) static const u8 sUnknown_80D9B1C[] = _( " Gggggggg...{WAIT_PRESS} Pwah! Gulpin!{EXTRA_MSG}" " There!\n" "Success!{EXTRA_MSG}" - " {COLOR_1 CYAN_3}{ARG_POKEMON_5}{END_COLOR_TEXT_1} is done!{EXTRA_MSG}" + " {COLOR CYAN_M}{POKEMON_5}{RESET} is done!{EXTRA_MSG}" " It's forgotten the move\n" - "{COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1} and any moves linked to it,\n" - "and {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1} has been remembered!"); + "{COLOR GREEN}{POKEMON_1}{RESET} and any moves linked to it,\n" + "and {COLOR CYAN}{POKEMON_0}{RESET} has been remembered!"); ALIGNED(4) static const u8 sUnknown_80D9BD8[] = _( " OK, here goes!{EXTRA_MSG}" " Gggggggg...{WAIT_PRESS} Pwah! Gulpin!{EXTRA_MSG}" " There!\n" "Success!{EXTRA_MSG}" - " {COLOR_1 CYAN_3}{ARG_POKEMON_5}{END_COLOR_TEXT_1} has forgotten\n" - "the move {COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1} and remembered\n" - "the move {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}!"); + " {COLOR CYAN_M}{POKEMON_5}{RESET} has forgotten\n" + "the move {COLOR GREEN}{POKEMON_1}{RESET} and remembered\n" + "the move {COLOR CYAN}{POKEMON_0}{RESET}!"); ALIGNED(4) static const u8 sUnknown_80D9C68[] = _( - " So, forget {COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1}\n" + " So, forget {COLOR GREEN}{POKEMON_1}{RESET}\n" "and any moves linked to it, and remember\n" - "the move {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}?"); + "the move {COLOR CYAN}{POKEMON_0}{RESET}?"); ALIGNED(4) static const u8 sUnknown_80D9CC0[] = _( " So, forget the move\n" - "{COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1} and remember the move\n" - "{COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}?"); + "{COLOR GREEN}{POKEMON_1}{RESET} and remember the move\n" + "{COLOR CYAN}{POKEMON_0}{RESET}?"); ALIGNED(4) static const u8 sUnknown_80D9D00[] = _( - " So, the move {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}\n" + " So, the move {COLOR CYAN}{POKEMON_0}{RESET}\n" "is the one to be remembered?{WAIT_PRESS}\n" "OK, here goes!{EXTRA_MSG}" " Gggggggggggg...{WAIT_PRESS} Gulpin!{EXTRA_MSG}" " There!\n" "Success!{EXTRA_MSG}" - " {COLOR_1 CYAN_3}{ARG_POKEMON_5}{END_COLOR_TEXT_1} has\n" - "remembered the move {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}!"); + " {COLOR CYAN_M}{POKEMON_5}{RESET} has\n" + "remembered the move {COLOR CYAN}{POKEMON_0}{RESET}!"); ALIGNED(4) static const u8 sUnknown_80D9DA4[] = _( " Which move would you like\n" diff --git a/src/data/common_strings_kangaskhan_storage.h b/src/data/common_strings_kangaskhan_storage.h index 3a3c05f21..d44c40808 100644 --- a/src/data/common_strings_kangaskhan_storage.h +++ b/src/data/common_strings_kangaskhan_storage.h @@ -107,7 +107,7 @@ ALIGNED(4) static const u8 sUnknown_80D5590[] = _( ALIGNED(4) static const u8 sUnknown_80D55C0[] = _( " Zzz... Zzz...\n" - "That {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}...\n" + "That {COLOR GREEN}{MOVE_ITEM_0}{RESET}...\n" "Can't store it..."); ALIGNED(4) static const u8 sUnknown_80D55F4[] = _( @@ -135,7 +135,7 @@ ALIGNED(4) static const u8 sUnknown_80D56CC[] = _( ALIGNED(4) static const u8 sUnknown_80D5710[] = _( " Hunh...? Taking...?\n" - "Oh... You want your {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}...\n" + "Oh... You want your {COLOR GREEN}{MOVE_ITEM_0}{RESET}...\n" "OK?"); ALIGNED(4) static const u8 sUnknown_80D574C[] = _( @@ -158,7 +158,7 @@ ALIGNED(4) static const u8 sUnknown_80D57F4[] = _( ALIGNED(4) static const u8 sUnknown_80D5844[] = _( " Zzz... Store something?\n" - "Gonna put {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1} in storage...\n" + "Gonna put {COLOR GREEN}{MOVE_ITEM_0}{RESET} in storage...\n" "OK?"); ALIGNED(4) static const u8 sUnknown_80D5884[] = _( @@ -182,7 +182,7 @@ ALIGNED(4) static const u8 sUnknown_80D5934[] = _( ALIGNED(4) static const u8 sUnknown_80D5954[] = _( " Zzz... Zzz...\n" "Hello, there...\n" - "{ARG_POKEMON_6} Storage..."); + "{POKEMON_6} Storage..."); ALIGNED(4) static const u8 sUnknown_80D5984[] = _( " I can store items that you\n" @@ -208,7 +208,7 @@ ALIGNED(4) static const u8 sUnknown_80D5B24[] = _( ALIGNED(4) static const u8 sUnknown_80D5B5C[] = _( " Oh, dear, sorry.{WAIT_PRESS}\n" - "That {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1} is an item you\n" + "That {COLOR GREEN}{MOVE_ITEM_0}{RESET} is an item you\n" "can't put in storage."); ALIGNED(4) static const u8 sUnknown_80D5BAC[] = _( @@ -233,7 +233,7 @@ ALIGNED(4) static const u8 sUnknown_80D5C74[] = _( ALIGNED(4) static const u8 sUnknown_80D5CAC[] = _( " Fine, I'll take your\n" - "{COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1} out of storage. OK?"); + "{COLOR GREEN}{MOVE_ITEM_0}{RESET} out of storage. OK?"); ALIGNED(4) static const u8 sUnknown_80D5CE4[] = _( " Would you like to take\n" @@ -254,7 +254,7 @@ ALIGNED(4) static const u8 sUnknown_80D5D8C[] = _( ALIGNED(4) static const u8 sUnknown_80D5DBC[] = _( " I'll put your\n" - "{COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1} in storage. OK?"); + "{COLOR GREEN}{MOVE_ITEM_0}{RESET} in storage. OK?"); ALIGNED(4) static const u8 sUnknown_80D5DE8[] = _( " Do you want to store\n" @@ -273,4 +273,4 @@ ALIGNED(4) static const u8 sUnknown_80D5E84[] = _(" Anything else, dear?"); ALIGNED(4) static const u8 sUnknown_80D5E9C[] = _( " Hello, there!\n" - "Welcome to {ARG_POKEMON_6} Storage."); \ No newline at end of file + "Welcome to {POKEMON_6} Storage."); \ No newline at end of file diff --git a/src/data/common_strings_kecleon_bros.h b/src/data/common_strings_kecleon_bros.h index 5e899abc7..82174ef5e 100644 --- a/src/data/common_strings_kecleon_bros.h +++ b/src/data/common_strings_kecleon_bros.h @@ -261,12 +261,12 @@ ALIGNED(4) static const u8 sUnknown_80D6364[] = _( ALIGNED(4) static const u8 sUnknown_80D6394[] = _( " Zzz... Reep, what...?\n" "For all that I can buy, I will pay\n" - "{COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}... OK?"); + "{COLOR CYAN}{VALUE_0}{RESET} {POKE}... OK?"); ALIGNED(4) static const u8 sUnknown_80D63E8[] = _( " Zzzzzz... Zzzzzz...?\n" - "{COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}?\n" - "Is {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE} OK?"); + "{COLOR GREEN}{MOVE_ITEM_0}{RESET}?\n" + "Is {COLOR CYAN}{VALUE_0}{RESET} {POKE} OK?"); ALIGNED(4) static const u8 sUnknown_80D6420[] = _( " Reep reep... Eep...\n" @@ -282,7 +282,7 @@ ALIGNED(4) static const u8 sUnknown_80D6478[] = _( ALIGNED(4) static const u8 sUnknown_80D6494[] = _( " Zzzzzz...\n" - "{COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1} is {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}...\n" + "{COLOR GREEN}{MOVE_ITEM_0}{RESET} is {COLOR CYAN}{VALUE_0}{RESET} {POKE}...\n" "OK?"); ALIGNED(4) static const u8 sUnknown_80D64C0[] = _( @@ -388,12 +388,12 @@ ALIGNED(4) static const u8 sUnknown_80D6B18[] = _( ALIGNED(4) static const u8 sUnknown_80D6B50[] = _( " For all that I can buy, I can\n" - "offer you {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}.\n" + "offer you {COLOR CYAN}{VALUE_0}{RESET} {POKE}.\n" "Is that acceptable?"); ALIGNED(4) static const u8 sUnknown_80D6BA0[] = _( - " {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}, you say?\n" - "For that, I can offer {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}.\n" + " {COLOR GREEN}{MOVE_ITEM_0}{RESET}, you say?\n" + "For that, I can offer {COLOR CYAN}{VALUE_0}{RESET} {POKE}.\n" "Is that acceptable?"); ALIGNED(4) static const u8 sUnknown_80D6BF4[] = _( @@ -405,8 +405,8 @@ ALIGNED(4) static const u8 sUnknown_80D6C1C[] = _( "A very good choice!"); ALIGNED(4) static const u8 sUnknown_80D6C48[] = _( - " {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}, you say?\n" - "That will be {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}.\n" + " {COLOR GREEN}{MOVE_ITEM_0}{RESET}, you say?\n" + "That will be {COLOR CYAN}{VALUE_0}{RESET} {POKE}.\n" "Is that acceptable?"); ALIGNED(4) static const u8 sUnknown_80D6C90[] = _( @@ -492,13 +492,13 @@ ALIGNED(4) static const u8 sUnknown_80D7090[] = _( ALIGNED(4) static const u8 sUnknown_80D70B4[] = _( " Zzzzzz... Zzzzzz...?\n" - "I can pay you {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}\n" + "I can pay you {COLOR CYAN}{VALUE_0}{RESET} {POKE}\n" "for everything I can buy... OK?"); ALIGNED(4) static const u8 sUnknown_80D7108[] = _( " Zzzzzz... Zzzzzz...?\n" - "Selling that {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}...?\n" - "How about {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}?"); + "Selling that {COLOR GREEN}{MOVE_ITEM_0}{RESET}...?\n" + "How about {COLOR CYAN}{VALUE_0}{RESET} {POKE}?"); ALIGNED(4) static const u8 sUnknown_80D7154[] = _( " Zzz... Meep...\n" @@ -514,8 +514,8 @@ ALIGNED(4) static const u8 sUnknown_80D71B0[] = _( ALIGNED(4) static const u8 sUnknown_80D71CC[] = _( " Zzz... Meep meep...\n" - "{COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}...?\n" - "{COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}, OK?"); + "{COLOR GREEN}{MOVE_ITEM_0}{RESET}...?\n" + "{COLOR CYAN}{VALUE_0}{RESET} {POKE}, OK?"); ALIGNED(4) static const u8 sUnknown_80D7204[] = _( " Buy? Huh, eep?\n" @@ -538,7 +538,7 @@ ALIGNED(4) static const u8 sUnknown_80D72A0[] = _( "Welcome..."); ALIGNED(4) static const u8 sUnknown_80D72B8[] = _( - " We, the {ARG_POKEMON_6}\n" + " We, the {POKEMON_6}\n" "Brothers, have a passion for selling\n" "items.{EXTRA_MSG}" " Items are useful for your\n" @@ -552,7 +552,7 @@ ALIGNED(4) static const u8 sUnknown_80D72B8[] = _( " Until then, please go to\n" "a dungeon and spend some time.\n" "Please visit on your return〜♪{EXTRA_MSG}" - " Ah, yes. The {ARG_POKEMON_6}\n" + " Ah, yes. The {POKEMON_6}\n" "Shop is a nationwide chain.{EXTRA_MSG}" " There are shops even in\n" "dungeons.\n" @@ -610,12 +610,12 @@ ALIGNED(4) static const u8 sUnknown_80D7740[] = _( ALIGNED(4) static const u8 sUnknown_80D776C[] = _( " For everything I can buy,\n" - "I can offer {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}.\n" + "I can offer {COLOR CYAN}{VALUE_0}{RESET} {POKE}.\n" "Is that acceptable to you?"); ALIGNED(4) static const u8 sUnknown_80D77C0[] = _( - " {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}?\n" - "I can offer you {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}.\n" + " {COLOR GREEN}{MOVE_ITEM_0}{RESET}?\n" + "I can offer you {COLOR CYAN}{VALUE_0}{RESET} {POKE}.\n" "Will you sell it for that price?"); ALIGNED(4) static const u8 sUnknown_80D780C[] = _( @@ -631,8 +631,8 @@ ALIGNED(4) static const u8 sUnknown_80D785C[] = _( "It is yours to take!"); ALIGNED(4) static const u8 sUnknown_80D788C[] = _( - " {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}?\n" - "That will be {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}.\n" + " {COLOR GREEN}{MOVE_ITEM_0}{RESET}?\n" + "That will be {COLOR CYAN}{VALUE_0}{RESET} {POKE}.\n" "Is that to your liking?"); ALIGNED(4) static const u8 sUnknown_80D78CC[] = _( @@ -653,4 +653,4 @@ ALIGNED(4) static const u8 sUnknown_80D7958[] = _( ALIGNED(4) static const u8 sUnknown_80D797C[] = _( " Hello〜♪\n" - "Welcome to the {ARG_POKEMON_6} Shop〜♪ "); \ No newline at end of file + "Welcome to the {POKEMON_6} Shop〜♪ "); \ No newline at end of file diff --git a/src/data/common_strings_makuhita_dojo.h b/src/data/common_strings_makuhita_dojo.h index efdb7477d..087995a03 100644 --- a/src/data/common_strings_makuhita_dojo.h +++ b/src/data/common_strings_makuhita_dojo.h @@ -78,7 +78,7 @@ ALIGNED(4) static const u8 sUnknown_80DA100[] = _( "Your reward...\n" "Promised...{EXTRA_MSG}" " Zzz... Urr!\n" - "{COLOR_1 GREEN_2}Bonsly Doll{END_COLOR_TEXT_1}..."); + "{COLOR GREEN_I}Bonsly Doll{RESET}..."); ALIGNED(4) static const u8 sUnknown_80DA204[] = _( " Ah... Zzznarr...\n" @@ -94,7 +94,7 @@ ALIGNED(4) static const u8 sUnknown_80DA248[] = _( ALIGNED(4) static const u8 sUnknown_80DA290[] = _( " Zzz... Narr...\n" - "{ARG_POKEMON_0}? 'K, go..."); + "{POKEMON_0}? 'K, go..."); ALIGNED(4) static const u8 sUnknown_80DA2B4[] = _( " Zzznarr... Zzz...\n" @@ -119,9 +119,9 @@ ALIGNED(4) static const u8 sUnknown_80DA338[] = _( "level up...{WAIT_PRESS}\n" "And toughen up your rescue team.{EXTRA_MSG}" " Also...{WAIT_PRESS}\n" - "In the {COLOR_1 YELLOW_4}Fire Maze{END_COLOR_TEXT_1} you will find only\n" + "In the {COLOR YELLOW_D}Fire Maze{RESET} you will find only\n" "Fire-type Pokémon.{EXTRA_MSG}" - " In the {COLOR_1 YELLOW_4}Water Maze{END_COLOR_TEXT_1} there\n" + " In the {COLOR YELLOW_D}Water Maze{RESET} there\n" "will only be Water-type Pokémon.{EXTRA_MSG}" " In such ways, only one type\n" "of Pokémon will be in a given room.\n" @@ -163,7 +163,7 @@ ALIGNED(4) static const u8 sUnknown_80DA688[] = _( "I promised you a reward for completing\n" "the training courses!{EXTRA_MSG}" " So... Here it is!{WAIT_PRESS}\n" - "My {COLOR_1 GREEN_2}Bonsly Doll{END_COLOR_TEXT_1}!{EXTRA_MSG}" + "My {COLOR GREEN_I}Bonsly Doll{RESET}!{EXTRA_MSG}" " Isn't it smashing? Hey?!"); ALIGNED(4) static const u8 sUnknown_80DA844[] = _( @@ -184,7 +184,7 @@ ALIGNED(4) static const u8 sUnknown_80DA908[] = _( "forward!"); ALIGNED(4) static const u8 sUnknown_80DA998[] = _( - " The {ARG_POKEMON_0}?{WAIT_PRESS}\n" + " The {POKEMON_0}?{WAIT_PRESS}\n" "Your decision stands!{WAIT_PRESS}\n" "Let the training begin!"); diff --git a/src/data/common_strings_wigglytuff_shop.h b/src/data/common_strings_wigglytuff_shop.h index f614e93f9..a3a37e054 100644 --- a/src/data/common_strings_wigglytuff_shop.h +++ b/src/data/common_strings_wigglytuff_shop.h @@ -101,7 +101,7 @@ ALIGNED(4) static const u8 sUnknown_80D7A44[] = _( "their species...{EXTRA_MSG}" " Kwoo... Sssnore...\n" "See what Pokémon can live there by\n" - "checking {COLOR_1 YELLOW}Info{END_COLOR_TEXT_1}...{EXTRA_MSG}" + "checking {COLOR YELLOW}Info{RESET}...{EXTRA_MSG}" " Zzz...\n" "I don't sell some Friend Areas...{EXTRA_MSG}" " Kwoo...\n" @@ -113,14 +113,14 @@ ALIGNED(4) static const u8 sUnknown_80D7A44[] = _( ALIGNED(4) static const u8 sUnknown_80D7C94[] = _( " Sssnore...\n" - "{COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}...?\n" + "{COLOR GREEN}{FRIEND_AREA}{RESET}...?\n" "I can't get that Friend Area...{EXTRA_MSG}" " Zzz... Zzz...\n" "Sorry..."); ALIGNED(4) static const u8 sUnknown_80D7CE8[] = _( " Zzz... Hunh...?\n" - "{COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}...?\n" + "{COLOR GREEN}{FRIEND_AREA}{RESET}...?\n" "I don't know... I'll check...{EXTRA_MSG}" " Sssnore...\n" "I'll have it for sale...\n" @@ -129,12 +129,12 @@ ALIGNED(4) static const u8 sUnknown_80D7CE8[] = _( ALIGNED(4) static const u8 sUnknown_80D7D64[] = _( " Sssnore...\n" "You can already go...\n" - "Friend Area {COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}..."); + "Friend Area {COLOR GREEN}{FRIEND_AREA}{RESET}..."); ALIGNED(4) static const u8 sUnknown_80D7DA0[] = _( " Dwee... Kwoo...\n" - "{COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}'s Friend Area...\n" - "Zzz... {COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}..."); + "{COLOR CYAN}{POKEMON_0}{RESET}'s Friend Area...\n" + "Zzz... {COLOR GREEN}{FRIEND_AREA}{RESET}..."); ALIGNED(4) static const u8 sUnknown_80D7DE0[] = _( " Another Pokémon...\n" @@ -165,23 +165,23 @@ ALIGNED(4) static const u8 sUnknown_80D7ED0[] = _( ALIGNED(4) static const u8 sUnknown_80D7F10[] = _( " Grats... Zzz...{WAIT_PRESS}\n" - "You can go to {COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}...{EXTRA_MSG}" + "You can go to {COLOR GREEN}{FRIEND_AREA}{RESET}...{EXTRA_MSG}" " Dwee... Sssnore...\n" "Make friends with Pokémon in...\n" - "{COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}..."); + "{COLOR GREEN}{FRIEND_AREA}{RESET}..."); ALIGNED(4) static const u8 sUnknown_80D7F7C[] = _( " Zzz... Dwee... Gotcha...{WAIT_PRESS}\n" "Zzz... Let's do it...{EXTRA_MSG}" " Sssnore♪ Sssnore♪\n" - "{ARG_POKEMON_6}〜♪ {ARG_POKEMON_6}〜♪\n" + "{POKEMON_6}〜♪ {POKEMON_6}〜♪\n" "Let's be friends...{EXTRA_MSG}" " Kwoo!\n" "Taaaaaaah!"); ALIGNED(4) static const u8 sUnknown_80D8000[] = _( - " Kwoo? {COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}?\n" - "That's {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}...\n" + " Kwoo? {COLOR GREEN}{FRIEND_AREA}{RESET}?\n" + "That's {COLOR CYAN}{VALUE_0}{RESET} {POKE}...\n" "OK?"); ALIGNED(4) static const u8 sUnknown_80D8030[] = _( @@ -203,7 +203,7 @@ ALIGNED(4) static const u8 sUnknown_80D80B0[] = _( ALIGNED(4) static const u8 sUnknown_80D80D4[] = _( " Friends... Zzz...\n" - "Welcome to the {ARG_POKEMON_6} Club..."); + "Welcome to the {POKEMON_6} Club..."); ALIGNED(4) static const u8 sUnknown_80D8104[] = _( " Would you like to get more\n" @@ -222,7 +222,7 @@ ALIGNED(4) static const u8 sUnknown_80D8104[] = _( "their species.{EXTRA_MSG}" " If you're buying a Friend\n" "Area, you should confirm what Pokémon\n" - "can live there by checking {COLOR_1 YELLOW}Info{END_COLOR_TEXT_1}.{EXTRA_MSG}" + "can live there by checking {COLOR YELLOW}Info{RESET}.{EXTRA_MSG}" " Also, there are some Friend\n" "Areas that I don't sell.{EXTRA_MSG}" " I think there are some\n" @@ -235,12 +235,12 @@ ALIGNED(4) static const u8 sUnknown_80D8104[] = _( "delighted when you make new friends!"); ALIGNED(4) static const u8 sUnknown_80D8420[] = _( - " {COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}?\n" + " {COLOR GREEN}{FRIEND_AREA}{RESET}?\n" "I can't get that Friend Area for you.{WAIT_PRESS}\n" "I'm really sorry."); ALIGNED(4) static const u8 sUnknown_80D8468[] = _( - " {COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}?\n" + " {COLOR GREEN}{FRIEND_AREA}{RESET}?\n" "I don't know much about it at all.{WAIT_PRESS}\n" "I'll check up on it.{EXTRA_MSG}" " I'll add it to the Friend\n" @@ -248,11 +248,11 @@ ALIGNED(4) static const u8 sUnknown_80D8468[] = _( ALIGNED(4) static const u8 sUnknown_80D84F8[] = _( " You can already go to the\n" - "Friend Area {COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}."); + "Friend Area {COLOR GREEN}{FRIEND_AREA}{RESET}."); ALIGNED(4) static const u8 sUnknown_80D8528[] = _( - " {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}'s Friend Area\n" - "is {COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}."); + " {COLOR CYAN}{POKEMON_0}{RESET}'s Friend Area\n" + "is {COLOR GREEN}{FRIEND_AREA}{RESET}."); ALIGNED(4) static const u8 sUnknown_80D8550[] = _( " Is there another Pokémon\n" @@ -282,19 +282,19 @@ ALIGNED(4) static const u8 sUnknown_80D8644[] = _( ALIGNED(4) static const u8 sUnknown_80D8674[] = _( " Congratulations!{WAIT_PRESS}\n" - "You can go to {COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1} now!{EXTRA_MSG}" + "You can go to {COLOR GREEN}{FRIEND_AREA}{RESET} now!{EXTRA_MSG}" " You can recruit\n" "Pokémon that live in the Friend Area\n" - "{COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}."); + "{COLOR GREEN}{FRIEND_AREA}{RESET}."); ALIGNED(4) static const u8 sUnknown_80D86E4[] = _( " Gotcha! Let's do it!{WAIT_PRESS}\n" - "{ARG_POKEMON_6}〜♪ {ARG_POKEMON_6}〜♪{WAIT_PRESS}\n" + "{POKEMON_6}〜♪ {POKEMON_6}〜♪{WAIT_PRESS}\n" "Let's be friends... Yoomtaaaaaaah!"); ALIGNED(4) static const u8 sUnknown_80D8738[] = _( - " {COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}?\n" - "That will be {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}.\n" + " {COLOR GREEN}{FRIEND_AREA}{RESET}?\n" + "That will be {COLOR CYAN}{VALUE_0}{RESET} {POKE}.\n" "Is that OK?"); ALIGNED(4) static const u8 sUnknown_80D876C[] = _( @@ -316,5 +316,5 @@ ALIGNED(4) static const u8 sUnknown_80D8818[] = _( ALIGNED(4) static const u8 sUnknown_80D883C[] = _( " Friends are my treasures!\n" - "Welcome to the {ARG_POKEMON_6} Club--\n" + "Welcome to the {POKEMON_6} Club--\n" "a circle of friends! "); \ No newline at end of file diff --git a/src/data/formatted_type_names.h b/src/data/formatted_type_names.h index 16deaad92..7b8db1aef 100644 --- a/src/data/formatted_type_names.h +++ b/src/data/formatted_type_names.h @@ -1,18 +1,18 @@ -ALIGNED(4) const char gFormattedSteelText[] = _("{COLOR_2 YELLOW}Steel{END_COLOR_TEXT_2}"); -ALIGNED(4) const char gFormattedDarkText[] = _("{COLOR_2 YELLOW}Dark{END_COLOR_TEXT_2}"); -ALIGNED(4) const char gFormattedDragonText[] = _("{COLOR_2 YELLOW}Dragon{END_COLOR_TEXT_2}"); -ALIGNED(4) const char gFormattedGhostText[] = _("{COLOR_2 YELLOW}Ghost{END_COLOR_TEXT_2}"); -ALIGNED(4) const char gFormattedRockText[] = _("{COLOR_2 YELLOW}Rock{END_COLOR_TEXT_2}"); -ALIGNED(4) const char gFormattedBugText[] = _("{COLOR_2 YELLOW}Bug{END_COLOR_TEXT_2}"); -ALIGNED(4) const char gFormattedPsychicText[] = _("{COLOR_2 YELLOW}Psychic{END_COLOR_TEXT_2}"); -ALIGNED(4) const char gFormattedFlyingText[] = _("{COLOR_2 YELLOW}Flying{END_COLOR_TEXT_2}"); -ALIGNED(4) const char gFormattedGroundText[] = _("{COLOR_2 YELLOW}Ground{END_COLOR_TEXT_2}"); -ALIGNED(4) const char gFormattedPoisonText[] = _("{COLOR_2 YELLOW}Poison{END_COLOR_TEXT_2}"); -ALIGNED(4) const char gFormattedFightingText[] = _("{COLOR_2 YELLOW}Fighting{END_COLOR_TEXT_2}"); -ALIGNED(4) const char gFormattedIceText[] = _("{COLOR_2 YELLOW}Ice{END_COLOR_TEXT_2} "); -ALIGNED(4) const char gFormattedElectricText[] = _("{COLOR_2 YELLOW}Electric{END_COLOR_TEXT_2}"); -ALIGNED(4) const char gFormattedGrassText[] = _("{COLOR_2 YELLOW}Grass{END_COLOR_TEXT_2}"); -ALIGNED(4) const char gFormattedWaterText[] = _("{COLOR_2 YELLOW}Water{END_COLOR_TEXT_2}"); -ALIGNED(4) const char gFormattedFireText[] = _("{COLOR_2 YELLOW}Fire{END_COLOR_TEXT_2} "); -ALIGNED(4) const char gFormattedNormalText[] = _("{COLOR_2 YELLOW}Normal{END_COLOR_TEXT_2}"); -ALIGNED(4) const char gFormattedNoneText[] = _("{COLOR_2 YELLOW}None{END_COLOR_TEXT_2}"); +ALIGNED(4) const char gFormattedSteelText[] = _("{color YELLOW}Steel{reset}"); +ALIGNED(4) const char gFormattedDarkText[] = _("{color YELLOW}Dark{reset}"); +ALIGNED(4) const char gFormattedDragonText[] = _("{color YELLOW}Dragon{reset}"); +ALIGNED(4) const char gFormattedGhostText[] = _("{color YELLOW}Ghost{reset}"); +ALIGNED(4) const char gFormattedRockText[] = _("{color YELLOW}Rock{reset}"); +ALIGNED(4) const char gFormattedBugText[] = _("{color YELLOW}Bug{reset}"); +ALIGNED(4) const char gFormattedPsychicText[] = _("{color YELLOW}Psychic{reset}"); +ALIGNED(4) const char gFormattedFlyingText[] = _("{color YELLOW}Flying{reset}"); +ALIGNED(4) const char gFormattedGroundText[] = _("{color YELLOW}Ground{reset}"); +ALIGNED(4) const char gFormattedPoisonText[] = _("{color YELLOW}Poison{reset}"); +ALIGNED(4) const char gFormattedFightingText[] = _("{color YELLOW}Fighting{reset}"); +ALIGNED(4) const char gFormattedIceText[] = _("{color YELLOW}Ice{reset} "); +ALIGNED(4) const char gFormattedElectricText[] = _("{color YELLOW}Electric{reset}"); +ALIGNED(4) const char gFormattedGrassText[] = _("{color YELLOW}Grass{reset}"); +ALIGNED(4) const char gFormattedWaterText[] = _("{color YELLOW}Water{reset}"); +ALIGNED(4) const char gFormattedFireText[] = _("{color YELLOW}Fire{reset} "); +ALIGNED(4) const char gFormattedNormalText[] = _("{color YELLOW}Normal{reset}"); +ALIGNED(4) const char gFormattedNoneText[] = _("{color YELLOW}None{reset}"); diff --git a/src/data/friend_area_action_menu.h b/src/data/friend_area_action_menu.h index 028a8ae23..d85972a1c 100644 --- a/src/data/friend_area_action_menu.h +++ b/src/data/friend_area_action_menu.h @@ -63,11 +63,11 @@ ALIGNED(4) static const u8 sSayFarewellConfirm[] = _( "Will you release it anyway?"); ALIGNED(4) static const u8 sReturnedToToolbox[] = _( - "{CENTER_ALIGN}The {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1} was\n" + "{CENTER_ALIGN}The {COLOR GREEN}{MOVE_ITEM_0}{RESET} was\n" "{CENTER_ALIGN}returned to the Toolbox."); ALIGNED(4) static const u8 sSentToStorage[] = _( - "{CENTER_ALIGN}The {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1} was\n{CENTER_ALIGN}sent to storage."); + "{CENTER_ALIGN}The {COLOR GREEN}{MOVE_ITEM_0}{RESET} was\n{CENTER_ALIGN}sent to storage."); ALIGNED(4) static const u8 sStandBy[] = "Stand By"; ALIGNED(4) static const u8 sMakeLeader[] = "Make Leader"; @@ -79,4 +79,4 @@ ALIGNED(4) static const u8 sSummary[] = "Summary"; ALIGNED(4) static const u8 sMoves[] = "Moves"; ALIGNED(4) static const u8 sCheckIQ[] = "Check IQ"; -ALIGNED(4) static const u8 sItemBuffered[] = _("Item: {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1} "); \ No newline at end of file +ALIGNED(4) static const u8 sItemBuffered[] = _("Item: {COLOR GREEN}{MOVE_ITEM_0}{RESET} "); \ No newline at end of file diff --git a/src/data/friend_list_menu.h b/src/data/friend_list_menu.h index 363270202..62d7c8390 100644 --- a/src/data/friend_list_menu.h +++ b/src/data/friend_list_menu.h @@ -37,21 +37,21 @@ static const UnkTextStruct2 sUnknown_80DD190 = { ALIGNED(4) static const u8 sVisitWhoPrompt[] = "Whom would you like to visit?"; ALIGNED(4) static const u8 sItemHandedOver[] = _( - "{CENTER_ALIGN}The {COLOR_1 GREEN}{ARG_MOVE_ITEM_1}{END_COLOR_TEXT_1} was\n" + "{CENTER_ALIGN}The {COLOR GREEN}{MOVE_ITEM_1}{RESET} was\n" "{CENTER_ALIGN}handed over. "); ALIGNED(4) static const u8 sItemExchanged[] = _( - "{CENTER_ALIGN}The {COLOR_1 GREEN}{ARG_MOVE_ITEM_1}{END_COLOR_TEXT_1} was\n" + "{CENTER_ALIGN}The {COLOR GREEN}{MOVE_ITEM_1}{RESET} was\n" "{CENTER_ALIGN}handed over.{EXTRA_MSG}" - "{CENTER_ALIGN}The {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1} was\n" + "{CENTER_ALIGN}The {COLOR GREEN}{MOVE_ITEM_0}{RESET} was\n" "{CENTER_ALIGN}returned to the Toolbox."); ALIGNED(4) static const u8 sReturnedToToolbox[] = _( - "{CENTER_ALIGN}The {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1} was\n" + "{CENTER_ALIGN}The {COLOR GREEN}{MOVE_ITEM_0}{RESET} was\n" "{CENTER_ALIGN}returned to the Toolbox."); ALIGNED(4) static const u8 sLeftOnStandby[] = _( - "{CENTER_ALIGN}{ARG_POKEMON_1} left the team to remain\n" + "{CENTER_ALIGN}{POKEMON_1} left the team to remain\n" "{CENTER_ALIGN}on standby in the Friend Area."); ALIGNED(4) static const u8 sGive[] = "Give"; @@ -62,4 +62,4 @@ ALIGNED(4) static const u8 sName[] = "Name"; ALIGNED(4) static const u8 sSummary[] = "Summary"; ALIGNED(4) static const u8 sMoves[] = "Moves"; ALIGNED(4) static const u8 sCheckIQ[] = "Check IQ"; -ALIGNED(4) static const u8 sItemBuffered[] = _("Item: {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1} "); \ No newline at end of file +ALIGNED(4) static const u8 sItemBuffered[] = _("Item: {COLOR GREEN}{MOVE_ITEM_0}{RESET} "); \ No newline at end of file diff --git a/src/data/friend_rescue_menus.h b/src/data/friend_rescue_menus.h index 2911db275..4ec4366f1 100644 --- a/src/data/friend_rescue_menus.h +++ b/src/data/friend_rescue_menus.h @@ -282,8 +282,8 @@ const MenuItem gUnknown_80E24F8[5] = { {NULL, 0x19}, }; -ALIGNED(4) const u8 GetHelp_80E2520[] = _("{COLOR_1 YELLOW}Get help{END_COLOR_TEXT_1} "); -ALIGNED(4) const u8 GoRescue_80E530[] = _("{COLOR_1 YELLOW}Go rescue{END_COLOR_TEXT_1} "); +ALIGNED(4) const u8 GetHelp_80E2520[] = _("{COLOR YELLOW}Get help{RESET} "); +ALIGNED(4) const u8 GoRescue_80E530[] = _("{COLOR YELLOW}Go rescue{RESET} "); const u8 RescueInfo_80E2540[] = "Friend Rescue Info"; extern const u8 RescueProcedures_80E25A0[]; diff --git a/src/data/ground/ground_data_a01p01_station.h b/src/data/ground/ground_data_a01p01_station.h index 98d57a76f..478a88f00 100644 --- a/src/data/ground/ground_data_a01p01_station.h +++ b/src/data/ground/ground_data_a01p01_station.h @@ -42,13 +42,13 @@ static const struct ScriptCommand s_gs162_g1_s0_lives0_dlg0[] = { /* 0x820fe54 * { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("..................") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Where...") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Where am I?") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Maybe...#W Is this a dream...?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Maybe...{WAIT_PRESS} Is this a dream...?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...Oh?#W There's someone here.") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Who is it...?#W Someone I know...?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...Oh?{WAIT_PRESS} There's someone here.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Who is it...?{WAIT_PRESS} Someone I know...?") }, { 0x2e, 0x02, 0x0000, 0x00000004, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......#WHmm... I can't remember.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......{WAIT_PRESS}Hmm... I can't remember.") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -91,18 +91,18 @@ static const struct ScriptCommand s_gs162_g2_s0_lives0_dlg0[] = { /* 0x8210190 * { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("........................") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...Again?#W Am I dreaming again...?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...Again?{WAIT_PRESS} Am I dreaming again...?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...It's that Pokémon again.") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Huh?#W\nThey're...talking to me...?") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...#WI can't hear them clearly.\nWhat are they saying?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Huh?{WAIT_PRESS}\nThey're...talking to me...?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...{WAIT_PRESS}I can't hear them clearly.\nWhat are they saying?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), FANFARE_PLAY2(453), { 0x97, 0x00, 0x0002, 0x00000001, 0x00000003, NULL }, WAIT(30), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Huh? It's shaking.#W An earthquake...?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Huh? It's shaking.{WAIT_PRESS} An earthquake...?") }, { 0x97, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0000, 0x0000000c, 0x00000000, NULL }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Whoa! It's getting worse.") }, @@ -142,19 +142,19 @@ static const struct ScriptCommand s_gs162_g3_s0_lives0_dlg0[] = { /* 0x8210568 * WAIT(60), { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......Again...#W\nIt's that dream again.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......Again...{WAIT_PRESS}\nIt's that dream again.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), SELECT_LIVES(-1, 1), WAIT(60), { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("That Pokémon... Who could it be...?") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Huh?#W I'm hearing better this time...") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...What?#W Human?#W My role?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Huh?{WAIT_PRESS} I'm hearing better this time...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...What?{WAIT_PRESS} Human?{WAIT_PRESS} My role?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0000, 0x00000007, 0x00000000, NULL }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("W-wait.\nPlease, tell me more.") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......#W\nI can't... Drifting off...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......{WAIT_PRESS}\nI can't... Drifting off...") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("........................") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -253,34 +253,34 @@ static const struct ScriptCommand s_gs162_g4_s0_lives0_dlg0[] = { /* 0x8210c68 * { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("........................") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......#WAgain.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......{WAIT_PRESS}Again.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), SELECT_LIVES(-1, 1), WAIT(60), { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......It's that dream again.") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I always see this silhouette...#W\nWho could it be?") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Oh?#W It's saying something!") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("But... I can't quite make it out...#W\nIt's clearer than it was before, but...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I always see this silhouette...{WAIT_PRESS}\nWho could it be?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Oh?{WAIT_PRESS} It's saying something!") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("But... I can't quite make it out...{WAIT_PRESS}\nIt's clearer than it was before, but...") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I'll try talking to it.") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Hello.#W Please, tell me.") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("You...#W\nWho are you?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Hello.{WAIT_PRESS} Please, tell me.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("You...{WAIT_PRESS}\nWho are you?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ...#WI am...") }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I am $n2.") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ...{WAIT_PRESS}I am...") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I am {NAME_2}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x02, 0x0000, 0x0000000c, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Ga-$n2...?!") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Ga-{NAME_2}...?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x0f, 0x0002, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm so glad. Finally...#W\nI finally got to meet you...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm so glad. Finally...{WAIT_PRESS}\nI finally got to meet you...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...?#W Finally met me...?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...?{WAIT_PRESS} Finally met me...?") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("You knew me from before?\nWhat about me?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -291,7 +291,7 @@ static const struct ScriptCommand s_gs162_g4_s0_lives0_dlg0[] = { /* 0x8210c68 * { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x15, 0x0000, 0x0000000c, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Oh! Wait.#W Just a little longer...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Oh! Wait.{WAIT_PRESS} Just a little longer...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0000, 0x00000005, 0x00000000, NULL }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I want to know more...") }, @@ -400,7 +400,7 @@ static const struct ScriptCommand s_gs162_g5_s0_lives0_dlg0[] = { /* 0x82116b8 * { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x02, 0x0000, 0x0000000c, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Ga...#W$n2!") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Ga...{WAIT_PRESS}{NAME_2}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -445,7 +445,7 @@ static const struct ScriptCommand s_gs162_g6_s0_lives0_dlg0[] = { /* 0x82118a0 * FANFARE_PLAY2(477), SELECT_LIVES(-1, 1), WAIT(60), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......You're......#W $n2...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......You're......{WAIT_PRESS} {NAME_2}...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -455,11 +455,11 @@ static const struct ScriptCommand s_gs162_g6_s0_lives0_dlg0[] = { /* 0x82118a0 * { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...$n2.#W\nThere's so much I want to ask you.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...{NAME_2}.{WAIT_PRESS}\nThere's so much I want to ask you.") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Why do you appear in my dreams?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" As an agent of spirits...#W\nI must watch over you...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" As an agent of spirits...{WAIT_PRESS}\nI must watch over you...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Because that is my role\nnow.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -471,22 +471,22 @@ static const struct ScriptCommand s_gs162_g6_s0_lives0_dlg0[] = { /* 0x82118a0 * { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And became a presence\nwithout a physical form like this.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Trainer...?#W\nYou mean the human that was in the\nlegend about Ninetales?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Trainer...?{WAIT_PRESS}\nYou mean the human that was in the\nlegend about Ninetales?") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("It's awful that your Trainer would abandon\nyou and run away.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.#W My Trainer was\na terrible person.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.{WAIT_PRESS} My Trainer was\na terrible person.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Mean and conniving...\nMy Trainer wasn't a nice person. Truly.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But...#W\nI don't hate my Trainer.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But...{WAIT_PRESS}\nI don't hate my Trainer.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Huh? Don't hate your Trainer?#W\nWhy not?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Huh? Don't hate your Trainer?{WAIT_PRESS}\nWhy not?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Well...#W\nI wonder why myself.\nI don't quite understand...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Well...{WAIT_PRESS}\nI wonder why myself.\nI don't quite understand...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" My Trainer did some\nterrible things, but somehow, I can't\nbring myself to feel hatred...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, @@ -496,18 +496,18 @@ static const struct ScriptCommand s_gs162_g6_s0_lives0_dlg0[] = { /* 0x82118a0 * { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And, when it happened,\nI was desperate...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("When it happened...?#W\nYou mean Ninetales's curse?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("When it happened...?{WAIT_PRESS}\nYou mean Ninetales's curse?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I protected my Trainer\nfrom Ninetales's curse with my\nentire being.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If the Trainer is facing\ndanger...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It is our duty to protect\nthe Trainer with our lives...#W\nWe $m2 are that way.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I kept my Trainer safe...#W\nThat alone was enough to make me happy.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It is our duty to protect\nthe Trainer with our lives...{WAIT_PRESS}\nWe {POKEMON_2} are that way.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I kept my Trainer safe...{WAIT_PRESS}\nThat alone was enough to make me happy.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...Protect the Trainer even at the risk\nof your own life...)") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...It's amazing what $m2\ndid.)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...It's amazing what {POKEMON_2}\ndid.)") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, @@ -523,11 +523,11 @@ static const struct ScriptCommand s_gs162_g6_s0_lives0_dlg0[] = { /* 0x82118a0 * { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" All things have a role.\nThey all serve a purpose.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Just as I have my own\nrole to play...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You, too, have a role to\nfill...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You have...#W\ncome here to perform a certain role...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And, for that role...#W\nyou became a Pokémon.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You have...{WAIT_PRESS}\ncome here to perform a certain role...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And, for that role...{WAIT_PRESS}\nyou became a Pokémon.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("What...?#W\nWhat are you saying?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("What...?{WAIT_PRESS}\nWhat are you saying?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(453), { 0x97, 0x00, 0x0002, 0x00000001, 0x00000003, NULL }, @@ -537,7 +537,7 @@ static const struct ScriptCommand s_gs162_g6_s0_lives0_dlg0[] = { /* 0x82118a0 * { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("No! Wait!#W\nI need to know more...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("No! Wait!{WAIT_PRESS}\nI need to know more...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, HALT, @@ -693,8 +693,8 @@ static const struct ScriptCommand s_gs162_g7_s0_lives0_dlg0[] = { /* 0x8212e70 * { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), { 0x2e, 0x0f, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You have...#W\ncome here to perform a certain role...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And, for that role...#W\nyou became a Pokémon.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You have...{WAIT_PRESS}\ncome here to perform a certain role...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And, for that role...{WAIT_PRESS}\nyou became a Pokémon.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, HALT, @@ -735,29 +735,29 @@ static const struct ScriptCommand s_gs162_g8_s0_lives0_dlg0[] = { /* 0x821303c * { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......I'm......#W\nIn that dream again...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......I'm......{WAIT_PRESS}\nIn that dream again...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), FANFARE_PLAY2(477), SELECT_LIVES(-1, 1), WAIT(60), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............#W$n1...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............{WAIT_PRESS}{NAME_1}...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(60), { 0x2e, 0x0f, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's tomorrow, isn't it?#W\nThat you take to that underground dungeon.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's tomorrow, isn't it?{WAIT_PRESS}\nThat you take to that underground dungeon.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Yes.#W They make it sound like one\nterrible place...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Yes.{WAIT_PRESS} They make it sound like one\nterrible place...") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I wonder if we'll be OK...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0001, 0x00000041, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You will be fine.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I am certain that you\nwill succeed, $n0.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I am certain that you\nwill succeed, {NAME_0}.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You have my support.\nPlease, go with strength.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -765,12 +765,12 @@ static const struct ScriptCommand s_gs162_g8_s0_lives0_dlg0[] = { /* 0x821303c * { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I will. Thank you.") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I'm feeling a little braver now.\nI will go for it.") }, { 0x2e, 0x15, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("By the way...#W\nGardevoir, do you know?") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("What it's like underground?#W\nOr what Groudon is like?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("By the way...{WAIT_PRESS}\nGardevoir, do you know?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("What it's like underground?{WAIT_PRESS}\nOr what Groudon is like?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0001, 0x00000042, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" No... I'm sorry to say...#W\nI can't envision it...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" No... I'm sorry to say...{WAIT_PRESS}\nI can't envision it...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...OK.") }, @@ -787,17 +787,17 @@ static const struct ScriptCommand s_gs162_g8_s0_lives0_dlg0[] = { /* 0x821303c * { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But...#W\nThere is one thing that I can foresee.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But...{WAIT_PRESS}\nThere is one thing that I can foresee.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...Huh?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Your role...#W\nis coming to its end, little by little.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Your role...{WAIT_PRESS}\nis coming to its end, little by little.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("My role...#W\nis ending...?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("My role...{WAIT_PRESS}\nis ending...?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You became a Pokémon in\norder to fulfill a certain role...") }, @@ -805,7 +805,7 @@ static const struct ScriptCommand s_gs162_g8_s0_lives0_dlg0[] = { /* 0x821303c * { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Now, that role...#W\nis finally drawing to its conclusion.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Now, that role...{WAIT_PRESS}\nis finally drawing to its conclusion.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Gardevoir, tell me!") }, @@ -999,14 +999,14 @@ static const struct ScriptCommand s_gs162_g9_s0_lives0_dlg0[] = { /* 0x821452c * { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............#WGardevoir...?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............{WAIT_PRESS}Gardevoir...?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), FANFARE_PLAY2(477), SELECT_LIVES(-1, 1), { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(60), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Gardevoir...#W\nWill you tell me now?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Gardevoir...{WAIT_PRESS}\nWill you tell me now?") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Who or what I am...?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -1015,27 +1015,27 @@ static const struct ScriptCommand s_gs162_g9_s0_lives0_dlg0[] = { /* 0x821452c * { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The time has arrived.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Why you have come here?") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I will tell you all there is\nto tell.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n0, you have...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" {NAME_0}, you have...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Come to save this world.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............#W\nCame to save the world of Pokémon?#W\nI did...?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............{WAIT_PRESS}\nCame to save the world of Pokémon?{WAIT_PRESS}\nI did...?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.#W We learned that\nthis world faced extinction.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.{WAIT_PRESS} We learned that\nthis world faced extinction.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And so we sought a hero.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But though we searched,\nnowhere could we find our hero.\nWe were becoming discouraged...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" When we came across\na human.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n0...#W\nYou were that human.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" {NAME_0}...{WAIT_PRESS}\nYou were that human.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0000, 0x0000000c, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Wa... #WWait a second!#W\nHero? Me? That's too much!") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Wa... {WAIT_PRESS}Wait a second!{WAIT_PRESS}\nHero? Me? That's too much!") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I'm not anything special like that?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.#W That is also what you\nsaid the first time we met.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.{WAIT_PRESS} That is also what you\nsaid the first time we met.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You said you were not\nstrong.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -1045,7 +1045,7 @@ static const struct ScriptCommand s_gs162_g9_s0_lives0_dlg0[] = { /* 0x821452c * { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("True courage...?#W\nThat...#W I'm even less confident about that.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("True courage...?{WAIT_PRESS}\nThat...{WAIT_PRESS} I'm even less confident about that.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, @@ -1063,43 +1063,43 @@ static const struct ScriptCommand s_gs162_g9_s0_lives0_dlg0[] = { /* 0x821452c * { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That is how you came to\nbe in this world.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I...#W\nI did that?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I...{WAIT_PRESS}\nI did that?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Your courage has been\nproven.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Without question, you bear\nthe role of saving the world.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And that role...#W\nIt is soon coming to its end.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And that role...{WAIT_PRESS}\nIt is soon coming to its end.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...#WStopping the meteor from\ncrashing into this world...?#W\nThat's my role?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...{WAIT_PRESS}Stopping the meteor from\ncrashing into this world...?{WAIT_PRESS}\nThat's my role?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.#W\nAnd when that is accomplished...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.{WAIT_PRESS}\nAnd when that is accomplished...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You can return to your\nhuman world.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Oh...#W\nSo I can go back to being a human...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Oh...{WAIT_PRESS}\nSo I can go back to being a human...") }, { 0x2e, 0x15, 0x0000, 0x0000000c, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Wait!#W\nBut that means...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Wait!{WAIT_PRESS}\nBut that means...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.#W It means...#W\nParting ways with $n1.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.{WAIT_PRESS} It means...{WAIT_PRESS}\nParting ways with {NAME_1}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0000, 0x00000005, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("$n1......#W\nI have to leave?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("{NAME_1}......{WAIT_PRESS}\nI have to leave?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n1 feels great\nkinship with you, $n0.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" So, $n0, if you\nwere to leave...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" {NAME_1} feels great\nkinship with you, {NAME_0}.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" So, {NAME_0}, if you\nwere to leave...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Your friend would be\nheartbroken.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...But there can be nothing\ndone.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Because there are\nencounters, there are also farewells...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...#WI, too, once had\na friend beyond value.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...{WAIT_PRESS}I, too, once had\na friend beyond value.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Truly, I cherished our\nfriendship...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But my friend has gone\naway.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It fills me with sadness\nstill, losing my friend...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ......#W\nBut...#W We will meet again...#W\nThat is what I believe.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ......{WAIT_PRESS}\nBut...{WAIT_PRESS} We will meet again...{WAIT_PRESS}\nThat is what I believe.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), FANFARE_PLAY2(485), @@ -1108,14 +1108,14 @@ static const struct ScriptCommand s_gs162_g9_s0_lives0_dlg0[] = { /* 0x821452c * { 0x27, 0x00, 0x0005, 0x00000018, 0x00ffffff, NULL }, WAIT(30), { 0x2e, 0x15, 0x0000, 0x0000000c, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...!#W W-what was that?!") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...!{WAIT_PRESS} W-what was that?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#WWho was it?#W\nSomeone appears to have been looking\ninto your dream.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}Who was it?{WAIT_PRESS}\nSomeone appears to have been looking\ninto your dream.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But it is fine now.\nWhoever it was ran off.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...All that remains in this\ndream is a feeling of sadness.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...That Pokémon...\nI think ran off crying...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#W\nIt will be morning soon.#W\nAu revoir.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}\nIt will be morning soon.{WAIT_PRESS}\nAu revoir.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_a01p02_station.h b/src/data/ground/ground_data_a01p02_station.h index 39598afb8..0452f363c 100644 --- a/src/data/ground/ground_data_a01p02_station.h +++ b/src/data/ground/ground_data_a01p02_station.h @@ -23,7 +23,7 @@ static const struct ScriptCommand s_gs163_g1_s0_station_sref_script[] = { /* 0x8 { 0x2e, 0x02, 0x0000, 0x00000002, 0x00000000, NULL }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("......") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...Urgggh...#W I feel horrible...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...Urgggh...{WAIT_PRESS} I feel horrible...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), SELECT_ENTITIES(-1, -1), @@ -45,9 +45,9 @@ static const struct ScriptCommand s_gs163_g1_s0_lives0_dlg0[] = { /* 0x8216594 * { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), { 0x2e, 0x02, 0x0000, 0x00000002, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("This is a dream...#W Isn't it...?") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...But why...?#W\nWhy do I feel this terrible...?") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("This is...#W The first time...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("This is a dream...{WAIT_PRESS} Isn't it...?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...But why...?{WAIT_PRESS}\nWhy do I feel this terrible...?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("This is...{WAIT_PRESS} The first time...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, HALT, @@ -109,136 +109,136 @@ static const struct ScriptCommand s_gs163_g3_s0_lives0_dlg0[] = { /* 0x8216954 * { 0x2d, 0x09, 0x0003, 0x00000052, 0x00000000, NULL }, { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+If you fail to draw out $n2's\n#+true feelings...") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The curse will never be broken.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}If you fail to draw out {NAME_2}'s\n{CENTER_ALIGN}true feelings...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The curse will never be broken.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), FANFARE_PLAY2(465), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0002, 0x00000046, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gegege!\nHey, $n0!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gegege!\nHey, {NAME_0}!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Don't you dare fool around!\nI'll make you pay for it!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+You have but one chance.#W\n#+$n0,\n#+do your best.") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Fine...#W It is time.") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+First of all...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}You have but one chance.{WAIT_PRESS}\n{CENTER_ALIGN}{NAME_0},\n{CENTER_ALIGN}do your best.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Fine...{WAIT_PRESS} It is time.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}First of all...") }, LABEL(2), /* = 0x02 */ - ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+Why does $n2 wish to\n#+break this curse?")), - CHOICE(/* label */ 4, _("To help $n3.")), + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("{CENTER_ALIGN}Why does {NAME_2} wish to\n{CENTER_ALIGN}break this curse?")), + CHOICE(/* label */ 4, _("To help {NAME_3}.")), CHOICE(/* label */ 5, _("Just a whim.")), LABEL(5), /* = 0x05 */ - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+............#WDo you mean that?") }, - ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+Do you truly...#W\n#+truly believe that?")), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}............{WAIT_PRESS}Do you mean that?") }, + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("{CENTER_ALIGN}Do you truly...{WAIT_PRESS}\n{CENTER_ALIGN}truly believe that?")), CHOICE(/* label */ 7, _("Yes.")), CHOICE(/* label */ 8, _("No.")), LABEL(7), /* = 0x07 */ - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+............#W\n#+If that is truly how you feel...") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+My questions\n#+will end now.") }, - ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+You have\n#+no regrets?")), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}............{WAIT_PRESS}\n{CENTER_ALIGN}If that is truly how you feel...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}My questions\n{CENTER_ALIGN}will end now.") }, + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("{CENTER_ALIGN}You have\n{CENTER_ALIGN}no regrets?")), CHOICE(/* label */ 10, _("None.")), CHOICE(/* label */ 8, _("I do.")), LABEL(8), /* = 0x08 */ - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+............#W\n#+Please be serious.") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Let me ask you again.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}............{WAIT_PRESS}\n{CENTER_ALIGN}Please be serious.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Let me ask you again.") }, JUMP_LABEL(2), LABEL(4), /* = 0x04 */ - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+That's a lie, isn't it?") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Didn't $n2 abandon\n#+$n3 long ago?") }, - ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+Why would $n2\n#+want to save Gardevoir now?")), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}That's a lie, isn't it?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Didn't {NAME_2} abandon\n{CENTER_ALIGN}{NAME_3} long ago?") }, + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("{CENTER_ALIGN}Why would {NAME_2}\n{CENTER_ALIGN}want to save Gardevoir now?")), CHOICE(/* label */ 12, _("For taking the curse.")), - CHOICE(/* label */ 13, _("Came to understand $n3.")), + CHOICE(/* label */ 13, _("Came to understand {NAME_3}.")), LABEL(12), /* = 0x0c */ - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n3 certainly did protect\n#+$n2 from the curse.") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Sacrificing herself to do so.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_3} certainly did protect\n{CENTER_ALIGN}{NAME_2} from the curse.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Sacrificing herself to do so.") }, LABEL(14), /* = 0x0e */ - ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+But what did $n2\n#+do then?")), - CHOICE(/* label */ 5, _("Tried to protect $n3.")), + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("{CENTER_ALIGN}But what did {NAME_2}\n{CENTER_ALIGN}do then?")), + CHOICE(/* label */ 5, _("Tried to protect {NAME_3}.")), CHOICE(/* label */ 15, _("Abandoned Gardevoir and ran.")), LABEL(15), /* = 0x0f */ - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Yes...#W $n2 abandoned\n#+$n3 and fled.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Yes...{WAIT_PRESS} {NAME_2} abandoned\n{CENTER_ALIGN}{NAME_3} and fled.") }, LABEL(16), /* = 0x10 */ - ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+Why did $n2\n#+abandon $n3?")), + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("{CENTER_ALIGN}Why did {NAME_2}\n{CENTER_ALIGN}abandon {NAME_3}?")), CHOICE(/* label */ 17, _("Gengar only cared about himself.")), CHOICE(/* label */ 5, _("Gengar intended to help later.")), LABEL(17), /* = 0x11 */ - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+That's right.#W\n#+$n2 didn't want to\n#+be cursed himself...") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+And abandoned $n3.") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+When $n2 was a human,\n#+$n3 was his partner.") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+But to $n2, $n3\n#+was merely a tool.") }, - ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+The bond between $n2 and\n#+$n3 was that flimsy...#W\n#+Is that what I am hearing?")), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}That's right.{WAIT_PRESS}\n{CENTER_ALIGN}{NAME_2} didn't want to\n{CENTER_ALIGN}be cursed himself...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And abandoned {NAME_3}.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}When {NAME_2} was a human,\n{CENTER_ALIGN}{NAME_3} was his partner.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}But to {NAME_2}, {NAME_3}\n{CENTER_ALIGN}was merely a tool.") }, + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("{CENTER_ALIGN}The bond between {NAME_2} and\n{CENTER_ALIGN}{NAME_3} was that flimsy...{WAIT_PRESS}\n{CENTER_ALIGN}Is that what I am hearing?")), CHOICE(/* label */ 19, _("Yes.")), CHOICE(/* label */ 20, _("No.")), LABEL(20), /* = 0x14 */ - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The bond between $n2 and\n#+$n3 you claim to be strong?") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+But that makes no sense.") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n3 saved $n2 from\n#+the curse. That much is true.") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+It was from her depth of\n#+feeling for $n2.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The bond between {NAME_2} and\n{CENTER_ALIGN}{NAME_3} you claim to be strong?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}But that makes no sense.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_3} saved {NAME_2} from\n{CENTER_ALIGN}the curse. That much is true.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}It was from her depth of\n{CENTER_ALIGN}feeling for {NAME_2}.") }, JUMP_LABEL(14), LABEL(19), /* = 0x13 */ - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+............#W\n#+If that is truly how you feel...") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+My questions\n#+will end now.") }, - ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+You have\n#+no regrets?")), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}............{WAIT_PRESS}\n{CENTER_ALIGN}If that is truly how you feel...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}My questions\n{CENTER_ALIGN}will end now.") }, + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("{CENTER_ALIGN}You have\n{CENTER_ALIGN}no regrets?")), CHOICE(/* label */ 10, _("None.")), CHOICE(/* label */ 22, _("I do.")), LABEL(22), /* = 0x16 */ - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+You claim that isn't true?") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+But $n2 abandoned\n#+$n3.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}You claim that isn't true?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}But {NAME_2} abandoned\n{CENTER_ALIGN}{NAME_3}.") }, JUMP_LABEL(16), LABEL(13), /* = 0x0d */ - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Came to understand\n#+$n3's feelings?") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+What is it you claim to understand?") }, - ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+What do you claim to be\n#+$n3's feelings?")), - CHOICE(/* label */ 24, _("Caring for $n2.")), - CHOICE(/* label */ 25, _("Hatred for $n2.")), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Came to understand\n{CENTER_ALIGN}{NAME_3}'s feelings?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}What is it you claim to understand?") }, + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("{CENTER_ALIGN}What do you claim to be\n{CENTER_ALIGN}{NAME_3}'s feelings?")), + CHOICE(/* label */ 24, _("Caring for {NAME_2}.")), + CHOICE(/* label */ 25, _("Hatred for {NAME_2}.")), LABEL(24), /* = 0x18 */ - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Caring for $n2.#W\n#+I see...") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n3 became a presence\n#+without a physical form because\n#+she bore the curse...") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+But even then, Gardevoir never\n#+stopped caring for $n2...") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Having learned that, $n2\n#+now wants to save $n3...") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+It makes sense...#W However...") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Until now, $n2 had\n#+forgotten entirely about\n#+$n3, correct?") }, - ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+But now Gengar wants to save\n#+Gardevoir. Isn't that asking a lot?")), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Caring for {NAME_2}.{WAIT_PRESS}\n{CENTER_ALIGN}I see...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_3} became a presence\n{CENTER_ALIGN}without a physical form because\n{CENTER_ALIGN}she bore the curse...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}But even then, Gardevoir never\n{CENTER_ALIGN}stopped caring for {NAME_2}...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Having learned that, {NAME_2}\n{CENTER_ALIGN}now wants to save {NAME_3}...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}It makes sense...{WAIT_PRESS} However...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Until now, {NAME_2} had\n{CENTER_ALIGN}forgotten entirely about\n{CENTER_ALIGN}{NAME_3}, correct?") }, + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("{CENTER_ALIGN}But now Gengar wants to save\n{CENTER_ALIGN}Gardevoir. Isn't that asking a lot?")), CHOICE(/* label */ 27, _("Yes.")), CHOICE(/* label */ 28, _("No.")), LABEL(27), /* = 0x1b */ - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+I see...\n#+You say this because Gengar is\n#+willing to face the consequences?") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Gengar is coming to the help of\n#+Gardevoir because he wants to help...#W\n#+Is that what you claim?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}I see...\n{CENTER_ALIGN}You say this because Gengar is\n{CENTER_ALIGN}willing to face the consequences?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Gengar is coming to the help of\n{CENTER_ALIGN}Gardevoir because he wants to help...{WAIT_PRESS}\n{CENTER_ALIGN}Is that what you claim?") }, JUMP_LABEL(10), LABEL(28), /* = 0x1c */ - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+You say that is not so...") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+You believe that this is another matter?\n#+And to help is only natural?#W\n#+That is what you believe?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}You say that is not so...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}You believe that this is another matter?\n{CENTER_ALIGN}And to help is only natural?{WAIT_PRESS}\n{CENTER_ALIGN}That is what you believe?") }, JUMP_LABEL(10), LABEL(25), /* = 0x19 */ - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Hatred for $n2...") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n3 felt hatred toward\n#+$n2 for abandonment...#W\n#+That is what you claim?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Hatred for {NAME_2}...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_3} felt hatred toward\n{CENTER_ALIGN}{NAME_2} for abandonment...{WAIT_PRESS}\n{CENTER_ALIGN}That is what you claim?") }, LABEL(29), /* = 0x1d */ - ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+In spite of that, $n2\n#+is trying to help Gardevoir...#W\n#+Why should that be so?")), + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("{CENTER_ALIGN}In spite of that, {NAME_2}\n{CENTER_ALIGN}is trying to help Gardevoir...{WAIT_PRESS}\n{CENTER_ALIGN}Why should that be so?")), CHOICE(/* label */ 30, _("To clear up misunderstandings.")), CHOICE(/* label */ 31, _("To punish Gardevoir.")), LABEL(30), /* = 0x1e */ - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+I see.\n#+To clear up misunderstandings.") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Gengar hopes to help $n3\n#+and clear up misunderstandings...#W\n#+That is what you claim?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}I see.\n{CENTER_ALIGN}To clear up misunderstandings.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Gengar hopes to help {NAME_3}\n{CENTER_ALIGN}and clear up misunderstandings...{WAIT_PRESS}\n{CENTER_ALIGN}That is what you claim?") }, JUMP_LABEL(10), LABEL(31), /* = 0x1f */ - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Gengar would go through the trouble\n#+of helping $n3 just so she\n#+could be punished?") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Do you claim that seriously?") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+If that is true...") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+My queries will\n#+end now.") }, - ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("#+May I finish now?")), + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Gengar would go through the trouble\n{CENTER_ALIGN}of helping {NAME_3} just so she\n{CENTER_ALIGN}could be punished?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Do you claim that seriously?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}If that is true...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}My queries will\n{CENTER_ALIGN}end now.") }, + ASK2(FALSE, /*default*/ -1, /* speaker */ -1, _("{CENTER_ALIGN}May I finish now?")), CHOICE(/* label */ 10, _("Yes.")), CHOICE(/* label */ 33, _("No.")), LABEL(33), /* = 0x21 */ - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+This isn't the end?") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Is there anything else you wish to say?") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Oh? You are confused?") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+............#W\n#+You must be more serious.") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Let me go back to my inquiry.") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n3 felt hatred toward\n#+$n2 for abandonment...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}This isn't the end?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Is there anything else you wish to say?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Oh? You are confused?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}............{WAIT_PRESS}\n{CENTER_ALIGN}You must be more serious.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Let me go back to my inquiry.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_3} felt hatred toward\n{CENTER_ALIGN}{NAME_2} for abandonment...") }, JUMP_LABEL(29), LABEL(10), /* = 0x0a */ - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+I understand now...\n#+My questions are finished.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}I understand now...\n{CENTER_ALIGN}My questions are finished.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, HALT, diff --git a/src/data/ground/ground_data_a02p01_station.h b/src/data/ground/ground_data_a02p01_station.h index 85d7f60c4..fb6c26903 100644 --- a/src/data/ground/ground_data_a02p01_station.h +++ b/src/data/ground/ground_data_a02p01_station.h @@ -24,9 +24,9 @@ static const struct ScriptCommand s_gs164_g1_s0_station_sref_script[] = { /* 0x8 { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(164), { 0x2d, 0x09, 0x0000, 0x00000021, 0x00000000, NULL }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Thus began\n#+$n0's") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+cruel and arduous\n#+journey as a fugitive.") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Over forbidding mountains...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Thus began\n{CENTER_ALIGN}{NAME_0}'s") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}cruel and arduous\n{CENTER_ALIGN}journey as a fugitive.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Over forbidding mountains...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_a02p02_station.h b/src/data/ground/ground_data_a02p02_station.h index fcb424ce3..8372b87ab 100644 --- a/src/data/ground/ground_data_a02p02_station.h +++ b/src/data/ground/ground_data_a02p02_station.h @@ -23,7 +23,7 @@ static const struct ScriptCommand s_gs165_g1_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(165), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Across fields of fire...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Across fields of fire...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -33,8 +33,8 @@ static const struct ScriptCommand s_gs165_g1_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x09, 0x0000, 0x00000021, 0x00000000, NULL }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+But throughout it all,\n#+$n0's team kept\n#+their heads held high.") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Without a complaint,\n#+they marched on.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}But throughout it all,\n{CENTER_ALIGN}{NAME_0}'s team kept\n{CENTER_ALIGN}their heads held high.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Without a complaint,\n{CENTER_ALIGN}they marched on.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_a02p03_station.h b/src/data/ground/ground_data_a02p03_station.h index a5d4ef1a6..3aa8c45f5 100644 --- a/src/data/ground/ground_data_a02p03_station.h +++ b/src/data/ground/ground_data_a02p03_station.h @@ -120,7 +120,7 @@ static const struct ScriptCommand s_gs166_g2_s0_lives0_dlg0[] = { /* 0x821915c * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000b, 0x00000001, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What'll we do,\n$n0?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What'll we do,\n{NAME_0}?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(45), { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Look! There they are!") }, @@ -135,7 +135,7 @@ static const struct ScriptCommand s_gs166_g2_s0_lives0_dlg0[] = { /* 0x821915c * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000002, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There's no choice now!") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Let's go, $n0!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Let's go, {NAME_0}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x23, 0x00, 0x0028, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_a02p04_station.h b/src/data/ground/ground_data_a02p04_station.h index a1f3b93a7..194798bbb 100644 --- a/src/data/ground/ground_data_a02p04_station.h +++ b/src/data/ground/ground_data_a02p04_station.h @@ -42,14 +42,14 @@ static const struct ScriptCommand s_gs167_g2_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x09, 0x0000, 0x00000021, 0x00000000, NULL }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And so, $n0's\n#+harrowing journey continued.") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Seeking refuge in\n#+even harsher places...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+They fled north.") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+They crossed row upon\n#+row of mountains...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Forded fetid swamps...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Scaled frozen cliffs...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Till finally, $n0's tiny team\n#+arrived in a world of snow...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+A frigid wasteland of\n#+driving blizzards.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And so, {NAME_0}'s\n{CENTER_ALIGN}harrowing journey continued.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Seeking refuge in\n{CENTER_ALIGN}even harsher places...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}They fled north.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}They crossed row upon\n{CENTER_ALIGN}row of mountains...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Forded fetid swamps...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Scaled frozen cliffs...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Till finally, {NAME_0}'s tiny team\n{CENTER_ALIGN}arrived in a world of snow...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}A frigid wasteland of\n{CENTER_ALIGN}driving blizzards.") }, BGM_FADEOUT(120), { 0xe0, 0x00, 0x0018, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -114,8 +114,8 @@ static const struct ScriptCommand s_gs167_g2_s0_lives0_dlg0[] = { /* 0x8219c28 * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Oh, hey!\n$n0, you have to see this!")), - VARIANT_DEFAULT(_(" Oh, look!\n$n0, look over there!")), + VARIANT(/* == */ 1, _(" Oh, hey!\n{NAME_0}, you have to see this!")), + VARIANT_DEFAULT(_(" Oh, look!\n{NAME_0}, look over there!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -129,9 +129,9 @@ static const struct ScriptCommand s_gs167_g2_s0_lives0_dlg0[] = { /* 0x8219c28 * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ............#WHey, $n0.")), - VARIANT(/* == */ 3, _(" ............#WUm, $n0?")), - VARIANT_DEFAULT(_(" ............#W$n0.")), + VARIANT(/* == */ 1, _(" ............{WAIT_PRESS}Hey, {NAME_0}.")), + VARIANT(/* == */ 3, _(" ............{WAIT_PRESS}Um, {NAME_0}?")), + VARIANT_DEFAULT(_(" ............{WAIT_PRESS}{NAME_0}.")), { 0x91, 0x04, 0x000b, 0x00000003, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" You remember how tough it\nwas getting over Mt. Blaze, right?")), @@ -163,17 +163,17 @@ static const struct ScriptCommand s_gs167_g2_s0_lives0_dlg0[] = { /* 0x8219c28 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" What?#W There are others?")), + VARIANT(/* == */ 1, _(" What?{WAIT_PRESS} There are others?")), VARIANT(/* == */ 1, _(" Who might they be?")), - VARIANT_DEFAULT(_(" Oh?#W There's someone else?")), + VARIANT_DEFAULT(_(" Oh?{WAIT_PRESS} There's someone else?")), VARIANT_DEFAULT(_(" Well, who do you mean?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ...#WOh, right.#W\nAlakazam's still out there.")), + VARIANT(/* == */ 1, _(" ...{WAIT_PRESS}Oh, right.{WAIT_PRESS}\nAlakazam's still out there.")), VARIANT(/* == */ 1, _(" Their team should be able\nto get here...")), - VARIANT_DEFAULT(_(" ...#WOh, I get it.#W\nThere's Alakazam.")), + VARIANT_DEFAULT(_(" ...{WAIT_PRESS}Oh, I get it.{WAIT_PRESS}\nThere's Alakazam.")), VARIANT_DEFAULT(_(" You're right.\nAlakazam's team should be able to get\nhere.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, JUMP_LABEL(4), @@ -181,25 +181,25 @@ static const struct ScriptCommand s_gs167_g2_s0_lives0_dlg0[] = { /* 0x8219c28 * UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), { 0x2e, 0x03, 0x0001, 0x0000000b, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" I knew it!\nI knew you'd say that too, $n0!")), - VARIANT_DEFAULT(_(" I thought so!\nYou think so too, $n0, right?!")), + VARIANT(/* == */ 1, _(" I knew it!\nI knew you'd say that too, {NAME_0}!")), + VARIANT_DEFAULT(_(" I thought so!\nYou think so too, {NAME_0}, right?!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yeah, you're right.\nThere can't be anyone else.\nHahahahaha.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" All right!\nWe can say good-bye to living like\nfugitives.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We don't have to keep\nrunning away anymore!\nHahahahaha.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hahahaha...#W Haha...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hahahaha...{WAIT_PRESS} Haha...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), { 0x2e, 0x15, 0x0001, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ..................#W\nThis is no good, $n0.")), + VARIANT(/* == */ 1, _(" ..................{WAIT_PRESS}\nThis is no good, {NAME_0}.")), VARIANT(/* == */ 1, _(" We forgot about some\ntough customers.")), - VARIANT(/* == */ 1, _(" Alakazam.#W\nHis team won't drop the chase ever.")), - VARIANT_DEFAULT(_(" ........................#W\nIt's no good, $n0.")), + VARIANT(/* == */ 1, _(" Alakazam.{WAIT_PRESS}\nHis team won't drop the chase ever.")), + VARIANT_DEFAULT(_(" ........................{WAIT_PRESS}\nIt's no good, {NAME_0}.")), VARIANT_DEFAULT(_(" We've forgotten some\ntough customers.")), - VARIANT_DEFAULT(_(" It's Alakazam's team.#W\nThey'll keep chasing us wherever we go.")), + VARIANT_DEFAULT(_(" It's Alakazam's team.{WAIT_PRESS}\nThey'll keep chasing us wherever we go.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, JUMP_LABEL(4), UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), @@ -222,34 +222,34 @@ static const struct ScriptCommand s_gs167_g2_s0_lives0_dlg0[] = { /* 0x8219c28 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Huh?#W What's the matter?\nAren't you coming, $n0?")), - VARIANT(/* == */ 3, _(" Oh?#W What's wrong?\nAren't we going, $n0?")), - VARIANT_DEFAULT(_(" Huh?#W What's the matter?\nAren't you coming, $n0?")), + VARIANT(/* == */ 1, _(" Huh?{WAIT_PRESS} What's the matter?\nAren't you coming, {NAME_0}?")), + VARIANT(/* == */ 3, _(" Oh?{WAIT_PRESS} What's wrong?\nAren't we going, {NAME_0}?")), + VARIANT_DEFAULT(_(" Huh?{WAIT_PRESS} What's the matter?\nAren't you coming, {NAME_0}?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x91, 0x0a, 0x000b, 0x00000007, 0x00000000, NULL }, WAIT(30), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ...#WWhat?#W\nAren't I tired, you're asking?")), + VARIANT(/* == */ 1, _(" ...{WAIT_PRESS}What?{WAIT_PRESS}\nAren't I tired, you're asking?")), VARIANT(/* == */ 1, _(" We're being chased!\nWe can't rest.")), - VARIANT(/* == */ 1, _(" And...#W\nI told you, didn't I?")), - VARIANT(/* == */ 1, _(" I said I'd go with you,\n$n0.")), - VARIANT(/* == */ 3, _(" ...#WPardon?#W\nAm I tired?")), + VARIANT(/* == */ 1, _(" And...{WAIT_PRESS}\nI told you, didn't I?")), + VARIANT(/* == */ 1, _(" I said I'd go with you,\n{NAME_0}.")), + VARIANT(/* == */ 3, _(" ...{WAIT_PRESS}Pardon?{WAIT_PRESS}\nAm I tired?")), VARIANT(/* == */ 3, _(" They're trying to catch us.\nWe don't have time to rest.")), - VARIANT(/* == */ 3, _(" And...#W\nRemember what I said?")), - VARIANT(/* == */ 3, _(" I said I would go with\nyou, $n0.")), - VARIANT_DEFAULT(_(" ...#WHuh?#W\nAm I tired?")), + VARIANT(/* == */ 3, _(" And...{WAIT_PRESS}\nRemember what I said?")), + VARIANT(/* == */ 3, _(" I said I would go with\nyou, {NAME_0}.")), + VARIANT_DEFAULT(_(" ...{WAIT_PRESS}Huh?{WAIT_PRESS}\nAm I tired?")), VARIANT_DEFAULT(_(" They're chasing us down.\nWe can't afford to rest.\n")), - VARIANT_DEFAULT(_(" And...#W\nI told you already.")), - VARIANT_DEFAULT(_(" I said I would go with\nyou, $n0.")), + VARIANT_DEFAULT(_(" And...{WAIT_PRESS}\nI told you already.")), + VARIANT_DEFAULT(_(" I said I would go with\nyou, {NAME_0}.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" ...Don't look that way\nat me!\nI'm good. I'm good!")), - VARIANT(/* == */ 1, _(" Let's roll, $n0!\nI'll go with you wherever you go!")), + VARIANT(/* == */ 1, _(" Let's roll, {NAME_0}!\nI'll go with you wherever you go!")), VARIANT(/* == */ 3, _(" ...Oh, please don't look\nlike that.\nHonest, I'm fine.")), - VARIANT(/* == */ 3, _(" Let's go, $n0!\nI'll always stick with you!")), + VARIANT(/* == */ 3, _(" Let's go, {NAME_0}!\nI'll always stick with you!")), VARIANT_DEFAULT(_(" ...Oh, come on.\nNo need for that long face.\nI'm fine.")), - VARIANT_DEFAULT(_(" Let's go, $n0!\nI'll go wherever you go!")), + VARIANT_DEFAULT(_(" Let's go, {NAME_0}!\nI'll go wherever you go!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_a03p01_station.h b/src/data/ground/ground_data_a03p01_station.h index d43cf63bd..9578b11e0 100644 --- a/src/data/ground/ground_data_a03p01_station.h +++ b/src/data/ground/ground_data_a03p01_station.h @@ -56,7 +56,7 @@ static const struct ScriptCommand s_gs168_g1_s0_lives0_dlg0[] = { /* 0x821bbf8 * { 0x3b, 0x36, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...Brr... It's cold!#W") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...Brr... It's cold!{WAIT_PRESS}") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, WAIT(8), @@ -71,7 +71,7 @@ static const struct ScriptCommand s_gs168_g1_s0_lives0_dlg0[] = { /* 0x821bbf8 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000005, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yuck...#W\nMy nose is running, and it's freezing.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yuck...{WAIT_PRESS}\nMy nose is running, and it's freezing.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, @@ -117,14 +117,14 @@ static const struct ScriptCommand s_gs168_g1_s0_lives0_dlg0[] = { /* 0x821bbf8 * { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...#WWhat was that?#W\nIt looked like a Pokémon, but...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...{WAIT_PRESS}What was that?{WAIT_PRESS}\nIt looked like a Pokémon, but...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Was I seeing things?#W\nNo, that can't be right.#W\nI'm sure there was someone there...")), - VARIANT_DEFAULT(_(" Did I imagine that?#W\nNo, I don't think so.#W\nI'm sure there was somebody there.")), + VARIANT(/* == */ 1, _(" Was I seeing things?{WAIT_PRESS}\nNo, that can't be right.{WAIT_PRESS}\nI'm sure there was someone there...")), + VARIANT_DEFAULT(_(" Did I imagine that?{WAIT_PRESS}\nNo, I don't think so.{WAIT_PRESS}\nI'm sure there was somebody there.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -136,8 +136,8 @@ static const struct ScriptCommand s_gs168_g1_s0_lives0_dlg0[] = { /* 0x821bbf8 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Well, thinking about it\nisn't going to help.#W\nLet's keep moving.")), - VARIANT_DEFAULT(_(" I guess thinking about it\nwon't help us.#W\nWe should keep moving.")), + VARIANT(/* == */ 1, _(" Well, thinking about it\nisn't going to help.{WAIT_PRESS}\nLet's keep moving.")), + VARIANT_DEFAULT(_(" I guess thinking about it\nwon't help us.{WAIT_PRESS}\nWe should keep moving.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -248,11 +248,11 @@ static const struct ScriptCommand s_gs168_g2_s0_lives0_dlg0[] = { /* 0x821ca1c * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0!\nCheck that out!")), - VARIANT_DEFAULT(_(" $n0! Look!")), + VARIANT(/* == */ 1, _(" {NAME_0}!\nCheck that out!")), + VARIANT_DEFAULT(_(" {NAME_0}! Look!")), { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" See that?#W\nThose trees are frozen!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" See that?{WAIT_PRESS}\nThose trees are frozen!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, HALT, diff --git a/src/data/ground/ground_data_a03p02_station.h b/src/data/ground/ground_data_a03p02_station.h index 690d8d58d..08307ff63 100644 --- a/src/data/ground/ground_data_a03p02_station.h +++ b/src/data/ground/ground_data_a03p02_station.h @@ -36,9 +36,9 @@ static const struct ScriptCommand s_gs169_g1_s0_lives0_dlg0[] = { /* 0x821cfa4 * WAIT(30), WAIT(90), { 0x2e, 0x02, 0x0001, 0x0000000b, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wow!#W\nThe snow is like frozen powder!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wow!{WAIT_PRESS}\nThe snow is like frozen powder!") }, { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It looks pretty, but...#W\nIt must be harsh there...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It looks pretty, but...{WAIT_PRESS}\nIt must be harsh there...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_a03p03_station.h b/src/data/ground/ground_data_a03p03_station.h index 7ba29dd45..3ffd29db1 100644 --- a/src/data/ground/ground_data_a03p03_station.h +++ b/src/data/ground/ground_data_a03p03_station.h @@ -40,7 +40,7 @@ static const struct ScriptCommand s_gs170_g1_s0_lives0_dlg0[] = { /* 0x821d2f8 * { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(This icy mountain path seems to go\non forever...)") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(We've walked a long way here...)") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("($n1 looks exhausted, too...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("({NAME_1} looks exhausted, too...)") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(We've been running all this time out\nof desperation...)") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(What's in store for us ahead?)") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Are we really doing the right thing?)") }, @@ -49,24 +49,24 @@ static const struct ScriptCommand s_gs170_g1_s0_lives0_dlg0[] = { /* 0x821d2f8 * { 0x2e, 0x14, 0x0001, 0x00000002, 0x00000000, NULL }, { 0x2f, 0x00, 0x0001, 0x00000000, 0x00000002, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Brr... It's too cold!#W\nThere's only snow around us now.")), + VARIANT(/* == */ 1, _(" Brr... It's too cold!{WAIT_PRESS}\nThere's only snow around us now.")), VARIANT(/* == */ 1, _(" The scenery hasn't changed\nat all for a while now...")), VARIANT(/* == */ 1, _(" Are we even getting\nsomewhere?")), - VARIANT_DEFAULT(_(" Brr... This is too cold!#W\nThere's nothing but snow now.")), + VARIANT_DEFAULT(_(" Brr... This is too cold!{WAIT_PRESS}\nThere's nothing but snow now.")), VARIANT_DEFAULT(_(" The scenery's been\nthe same for a while...")), VARIANT_DEFAULT(_(" I wonder if we're really\nmaking progress...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ...Hey, $n0?\nYou know what I'm thinking...?")), + VARIANT(/* == */ 1, _(" ...Hey, {NAME_0}?\nYou know what I'm thinking...?")), VARIANT(/* == */ 1, _(" I think we've finally reached\na place where there's no one else but us.")), VARIANT(/* == */ 1, _(" I also have this feeling\nthere's nothing ahead of us here...")), VARIANT(/* == */ 1, _(" And, I'm feeling pretty\nbeat...")), - VARIANT(/* == */ 3, _(" ...Um, $n0?\nI was thinking...")), + VARIANT(/* == */ 3, _(" ...Um, {NAME_0}?\nI was thinking...")), VARIANT(/* == */ 3, _(" It looks like we've finally\nreached somewhere that's deserted...")), VARIANT(/* == */ 3, _(" I also have a feeling that\nthere isn't anything ahead...")), VARIANT(/* == */ 3, _(" And, I am pretty tired...")), - VARIANT_DEFAULT(_(" ...Hey, $n0?\nI was thinking...")), + VARIANT_DEFAULT(_(" ...Hey, {NAME_0}?\nI was thinking...")), VARIANT_DEFAULT(_(" I think we've come to\na place that's empty except for us...")), VARIANT_DEFAULT(_(" I have this feeling there's\nnothing ahead of here, even if we keep\nmoving...")), VARIANT_DEFAULT(_(" And I'm getting exhausted...")), @@ -88,21 +88,21 @@ static const struct ScriptCommand s_gs170_g1_s0_lives0_dlg0[] = { /* 0x821d2f8 * { 0x2e, 0x0f, 0x0001, 0x00000000, 0x00000000, NULL }, { 0x2f, 0x00, 0x0001, 0x00000000, 0x00000002, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ............#W\nYeah, you're right.")), + VARIANT(/* == */ 1, _(" ............{WAIT_PRESS}\nYeah, you're right.")), VARIANT(/* == */ 1, _(" We came out here.\nThere's no point wondering about it.")), - VARIANT(/* == */ 1, _(" Sorry, $n0.#W\nI got to feeling sorry for myself.")), - VARIANT(/* == */ 1, _(" $n0, I came out\nhere because I believed in you.")), - VARIANT(/* == */ 1, _(" And that's not changing.\nI'll keep believing in you, $n0...")), - VARIANT(/* == */ 3, _(" ............#W\nYou're right.")), + VARIANT(/* == */ 1, _(" Sorry, {NAME_0}.{WAIT_PRESS}\nI got to feeling sorry for myself.")), + VARIANT(/* == */ 1, _(" {NAME_0}, I came out\nhere because I believed in you.")), + VARIANT(/* == */ 1, _(" And that's not changing.\nI'll keep believing in you, {NAME_0}...")), + VARIANT(/* == */ 3, _(" ............{WAIT_PRESS}\nYou're right.")), VARIANT(/* == */ 3, _(" There isn't any point in\nwondering about what we did.\nNot after all this.")), - VARIANT(/* == */ 3, _(" Sorry, $n0.#W\nI was just getting down on myself.")), - VARIANT(/* == */ 3, _(" $n0, I believed in\nyou, and that's what got me this far.")), - VARIANT(/* == */ 3, _(" And that's not changing.\nI have faith in you, $n0...")), - VARIANT_DEFAULT(_(" ............#W\nSure, that's right.")), + VARIANT(/* == */ 3, _(" Sorry, {NAME_0}.{WAIT_PRESS}\nI was just getting down on myself.")), + VARIANT(/* == */ 3, _(" {NAME_0}, I believed in\nyou, and that's what got me this far.")), + VARIANT(/* == */ 3, _(" And that's not changing.\nI have faith in you, {NAME_0}...")), + VARIANT_DEFAULT(_(" ............{WAIT_PRESS}\nSure, that's right.")), VARIANT_DEFAULT(_(" There isn't any point in\nwondering about what might happen.\nNot after coming this far.")), - VARIANT_DEFAULT(_(" Sorry, $n0.#W\nI was just feeling sorry for myself.")), - VARIANT_DEFAULT(_(" I have faith in you, \n$n0.\nThat's what brought me here.")), - VARIANT_DEFAULT(_(" And that's not changing.\nI still have faith in you, $n0...")), + VARIANT_DEFAULT(_(" Sorry, {NAME_0}.{WAIT_PRESS}\nI was just feeling sorry for myself.")), + VARIANT_DEFAULT(_(" I have faith in you, \n{NAME_0}.\nThat's what brought me here.")), + VARIANT_DEFAULT(_(" And that's not changing.\nI still have faith in you, {NAME_0}...")), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, @@ -122,24 +122,24 @@ static const struct ScriptCommand s_gs170_g1_s0_lives0_dlg0[] = { /* 0x821d2f8 * { 0x2e, 0x0f, 0x0001, 0x00000000, 0x00000000, NULL }, { 0x2f, 0x00, 0x0001, 0x00000000, 0x00000002, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" .........#WSorry.#W\nI shouldn't have said that.\nIt doesn't help scaring you like that.")), + VARIANT(/* == */ 1, _(" .........{WAIT_PRESS}Sorry.{WAIT_PRESS}\nI shouldn't have said that.\nIt doesn't help scaring you like that.")), VARIANT(/* == */ 1, _(" We came out here.\nThere's no point wondering about it.")), - VARIANT(/* == */ 1, _(" Even if we don't know\nwhat's ahead...#W\nWe just have to keep going.")), + VARIANT(/* == */ 1, _(" Even if we don't know\nwhat's ahead...{WAIT_PRESS}\nWe just have to keep going.")), VARIANT(/* == */ 1, _(" Don't worry!\nThere's got to be something ahead.")), - VARIANT(/* == */ 1, _(" $n0, I came out\nhere because I believed in you.")), - VARIANT(/* == */ 1, _(" And that's not changing.\nI'll keep believing in you, $n0...")), - VARIANT(/* == */ 3, _(" .........#WI'm sorry.#W\nI shouldn't have said anything to bring\nyou down...")), + VARIANT(/* == */ 1, _(" {NAME_0}, I came out\nhere because I believed in you.")), + VARIANT(/* == */ 1, _(" And that's not changing.\nI'll keep believing in you, {NAME_0}...")), + VARIANT(/* == */ 3, _(" .........{WAIT_PRESS}I'm sorry.{WAIT_PRESS}\nI shouldn't have said anything to bring\nyou down...")), VARIANT(/* == */ 3, _(" There isn't any point in\nwondering about what we did.\nNot after all this.")), - VARIANT(/* == */ 3, _(" Even though we don't know\nwhat's ahead...#W\nWe'll find out if we keep moving!")), + VARIANT(/* == */ 3, _(" Even though we don't know\nwhat's ahead...{WAIT_PRESS}\nWe'll find out if we keep moving!")), VARIANT(/* == */ 3, _(" Don't worry!\nThere's got to be something ahead.")), - VARIANT(/* == */ 3, _(" $n0, I believed in\nyou, and that's what got me this far.")), - VARIANT(/* == */ 3, _(" And that's not changing.\nI have faith in you, $n0...")), - VARIANT_DEFAULT(_(" .........#WI'm sorry.#W\nI said something stupid to frighten you...")), + VARIANT(/* == */ 3, _(" {NAME_0}, I believed in\nyou, and that's what got me this far.")), + VARIANT(/* == */ 3, _(" And that's not changing.\nI have faith in you, {NAME_0}...")), + VARIANT_DEFAULT(_(" .........{WAIT_PRESS}I'm sorry.{WAIT_PRESS}\nI said something stupid to frighten you...")), VARIANT_DEFAULT(_(" There isn't any point in\nwondering about what might happen.\nNot after coming this far.")), - VARIANT_DEFAULT(_(" Even though we don't know\nwhat's ahead...#W\nWe'll only know by pressing on!")), + VARIANT_DEFAULT(_(" Even though we don't know\nwhat's ahead...{WAIT_PRESS}\nWe'll only know by pressing on!")), VARIANT_DEFAULT(_(" Don't worry!\nThere's got to be something ahead.")), - VARIANT_DEFAULT(_(" I have faith in you, \n$n0.\nThat's what brought me here.")), - VARIANT_DEFAULT(_(" And that's not changing.\nI still have faith in you, $n0...")), + VARIANT_DEFAULT(_(" I have faith in you, \n{NAME_0}.\nThat's what brought me here.")), + VARIANT_DEFAULT(_(" And that's not changing.\nI still have faith in you, {NAME_0}...")), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, @@ -152,7 +152,7 @@ static const struct ScriptCommand s_gs170_g1_s0_lives0_dlg0[] = { /* 0x821d2f8 * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, WAIT(45), { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Yes...)") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("($n1 trusts me without any\ndoubt.)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("({NAME_1} trusts me without any\ndoubt.)") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(I can't afford to be indecisive.)") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(I have to believe in myself more.)") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -169,7 +169,7 @@ static const struct ScriptCommand s_gs170_g1_s0_lives0_dlg0[] = { /* 0x821d2f8 * { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, WAIT(60), { 0x2e, 0x15, 0x0000, 0x00000002, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...#WWh-what?#W What was that?)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...{WAIT_PRESS}Wh-what?{WAIT_PRESS} What was that?)") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(476), { 0x28, 0x01, 0x0007, 0x00000004, 0x00806040, NULL }, @@ -180,7 +180,7 @@ static const struct ScriptCommand s_gs170_g1_s0_lives0_dlg0[] = { /* 0x821d2f8 * { 0x27, 0x01, 0x0007, 0x0000000c, 0x00806040, NULL }, { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...D-dizzy?#W Or what?)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...D-dizzy?{WAIT_PRESS} Or what?)") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(469), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -188,8 +188,8 @@ static const struct ScriptCommand s_gs170_g1_s0_lives0_dlg0[] = { /* 0x821d2f8 * { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, { 0x2f, 0x00, 0x0001, 0x00000000, 0x00000002, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Huh?#W What's the matter?\n$n0?")), - VARIANT_DEFAULT(_(" Huh?#W Is something wrong?\n$n0?")), + VARIANT(/* == */ 1, _(" Huh?{WAIT_PRESS} What's the matter?\n{NAME_0}?")), + VARIANT_DEFAULT(_(" Huh?{WAIT_PRESS} Is something wrong?\n{NAME_0}?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(476), { 0x28, 0x01, 0x0007, 0x00000004, 0x00806040, NULL }, @@ -205,9 +205,9 @@ static const struct ScriptCommand s_gs170_g1_s0_lives0_dlg0[] = { /* 0x821d2f8 * { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ...Finally, you have arrived...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Someone...#W\nSomeone is talking to me...)") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("($n1...?#W No.\nThis voice isn't $n1...)") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(This voice...#W\nI've heard it somewhere...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Someone...{WAIT_PRESS}\nSomeone is talking to me...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("({NAME_1}...?{WAIT_PRESS} No.\nThis voice isn't {NAME_1}...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(This voice...{WAIT_PRESS}\nI've heard it somewhere...)") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), FANFARE_PLAY2(477), @@ -288,11 +288,11 @@ static const struct ScriptCommand s_gs170_g2_s0_lives0_dlg0[] = { /* 0x821ee64 * WAIT(30), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I am so glad.#W\nFinally, we get to meet.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I am so glad.{WAIT_PRESS}\nFinally, we get to meet.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...You're...#W What...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...You're...{WAIT_PRESS} What...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -300,9 +300,9 @@ static const struct ScriptCommand s_gs170_g2_s0_lives0_dlg0[] = { /* 0x821ee64 * { 0x2e, 0x0f, 0x0001, 0x00000004, 0x00000000, NULL }, { 0x2f, 0x00, 0x0001, 0x00000000, 0x00000002, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey, $n0.\nWhat's up with you?")), + VARIANT(/* == */ 1, _(" Hey, {NAME_0}.\nWhat's up with you?")), VARIANT(/* == */ 1, _(" Talking to yourself like\nthat...")), - VARIANT_DEFAULT(_(" $n0, is something\nthe matter?")), + VARIANT_DEFAULT(_(" {NAME_0}, is something\nthe matter?")), VARIANT_DEFAULT(_(" Why are you talking to\nyourself?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -317,8 +317,8 @@ static const struct ScriptCommand s_gs170_g2_s0_lives0_dlg0[] = { /* 0x821ee64 * { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(64), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" A little farther ahead...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There is a jagged mountain\nrange topped by #CDMt. Freeze#R.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Inside its peak...#W\nNinetales lives.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There is a jagged mountain\nrange topped by {COLOR YELLOW_D}Mt. Freeze{RESET}.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Inside its peak...{WAIT_PRESS}\nNinetales lives.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0000, 0x0000000c, 0x00000000, NULL }, @@ -341,10 +341,10 @@ static const struct ScriptCommand s_gs170_g2_s0_lives0_dlg0[] = { /* 0x821ee64 * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey, $n0!\nCome on, $n0!")), - VARIANT(/* == */ 1, _(" What were you doing?#W\nWhat just happened to you...?")), - VARIANT_DEFAULT(_(" Hey, $n0!\n$n0!")), - VARIANT_DEFAULT(_(" What's the matter?#W\nWhat happened...?")), + VARIANT(/* == */ 1, _(" Hey, {NAME_0}!\nCome on, {NAME_0}!")), + VARIANT(/* == */ 1, _(" What were you doing?{WAIT_PRESS}\nWhat just happened to you...?")), + VARIANT_DEFAULT(_(" Hey, {NAME_0}!\n{NAME_0}!")), + VARIANT_DEFAULT(_(" What's the matter?{WAIT_PRESS}\nWhat happened...?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_a04p01_station.h b/src/data/ground/ground_data_a04p01_station.h index c210b232d..db7309523 100644 --- a/src/data/ground/ground_data_a04p01_station.h +++ b/src/data/ground/ground_data_a04p01_station.h @@ -60,7 +60,7 @@ static const struct ScriptCommand s_gs171_g1_s0_lives0_dlg0[] = { /* 0x821fb60 * { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" From the sky!\nComes a star!") }, - { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" ...It is huge...#W\nA giant of a star!") }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" ...It is huge...{WAIT_PRESS}\nA giant of a star!") }, { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" The star, it falls.\nIt falls straight to us.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, @@ -109,7 +109,7 @@ static const struct ScriptCommand s_gs171_g2_s0_lives0_dlg0[] = { /* 0x821fdc4 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" ...If it keeps coming...\nIt will crash into this world.#W\nIt shall be terrible.") }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" ...If it keeps coming...\nIt will crash into this world.{WAIT_PRESS}\nIt shall be terrible.") }, { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Something must be done...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -162,10 +162,10 @@ static const struct ScriptCommand s_gs171_g3_s0_lives0_dlg0[] = { /* 0x82200b0 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wh-#Wwhat's going on?#W\nWhat is $n3 doing?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wh-{WAIT_PRESS}what's going on?{WAIT_PRESS}\nWhat is {NAME_3} doing?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It is almost ready.#W\nThe #C4Teleport Gem#R...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It is almost ready.{WAIT_PRESS}\nThe {COLOR GREEN}Teleport Gem{RESET}...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -185,7 +185,7 @@ static const struct ScriptCommand s_gs171_g3_s0_lives0_dlg0[] = { /* 0x82200b0 * { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" .........#WIt is made.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" .........{WAIT_PRESS}It is made.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -193,9 +193,9 @@ static const struct ScriptCommand s_gs171_g3_s0_lives0_dlg0[] = { /* 0x82200b0 * { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" This...\nThis is the #C4Teleport Gem#R.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" This...\nThis is the {COLOR GREEN}Teleport Gem{RESET}.") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" This will deliver you\nto the world of the sky.") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Now, $n0.#W\nAccept!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Now, {NAME_0}.{WAIT_PRESS}\nAccept!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x84, 0x00, 0x0100, -0x00000018, -0x00000018, NULL }, @@ -204,7 +204,7 @@ static const struct ScriptCommand s_gs171_g3_s0_lives0_dlg0[] = { /* 0x82200b0 * { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY(212), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0's team received\n#+the #C4Teleport Gem#R.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0}'s team received\n{CENTER_ALIGN}the {COLOR GREEN}Teleport Gem{RESET}.") }, { 0xe1, 0x00, 0x00d4, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), @@ -213,7 +213,7 @@ static const struct ScriptCommand s_gs171_g3_s0_lives0_dlg0[] = { /* 0x82200b0 * { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, WAIT(30), { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" That was made using\nthe powers of psychics.") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" By me, $n2,\nand...#W\nOh?") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" By me, {NAME_2},\nand...{WAIT_PRESS}\nOh?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -236,8 +236,8 @@ static const struct ScriptCommand s_gs171_g3_s0_lives0_dlg0[] = { /* 0x82200b0 * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Now...#W\nI must ask you this one last time.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This journey will be fraught\nwith considerable danger.#W\nWill you still go?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Now...{WAIT_PRESS}\nI must ask you this one last time.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This journey will be fraught\nwith considerable danger.{WAIT_PRESS}\nWill you still go?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, @@ -257,7 +257,7 @@ static const struct ScriptCommand s_gs171_g3_s0_lives0_dlg0[] = { /* 0x82200b0 * { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x03, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...Yes...#W\nAnd when that wish comes true...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...Yes...{WAIT_PRESS}\nAnd when that wish comes true...)") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Gardevoir said...)") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -400,15 +400,15 @@ static const struct ScriptCommand s_gs171_g4_s0_lives0_dlg0[] = { /* 0x82213fc * WAIT(30), { 0x2e, 0x03, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(............)") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(This will be my last adventure...#W\nWith $n1...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(This will be my last adventure...{WAIT_PRESS}\nWith {NAME_1}...)") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0!\nLet's do this right!")), - VARIANT_DEFAULT(_(" $n0!\nLet's get this done!")), + VARIANT(/* == */ 1, _(" {NAME_0}!\nLet's do this right!")), + VARIANT_DEFAULT(_(" {NAME_0}!\nLet's get this done!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x54, 0x00, 0x002f, 0x00000000, 0x00000000, NULL }, @@ -419,7 +419,7 @@ static const struct ScriptCommand s_gs171_g4_s0_lives0_dlg0[] = { /* 0x82213fc * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0e, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2f, 0x00, 0x0002, 0x00000000, 0x00000002, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We're counting on you!\n$n1! $n0!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We're counting on you!\n{NAME_1}! {NAME_0}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), FANFARE_PLAY2(500), @@ -609,7 +609,7 @@ static const struct ScriptCommand s_gs171_g5_s0_lives0_dlg0[] = { /* 0x8221f00 * { 0x27, 0x01, 0x0005, 0x0000003c, 0x00ffffff, NULL }, WAIT(60), { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...#WHuh...?#W This place...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...{WAIT_PRESS}Huh...?{WAIT_PRESS} This place...)") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x3b, 0x39, 0x0004, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -630,13 +630,13 @@ static const struct ScriptCommand s_gs171_g5_s0_lives0_dlg0[] = { /* 0x8221f00 * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, CALL_SCRIPT(WAKEUP_FUNC), WAIT(15), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...#WI'm sure of it...)") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(I'm sure... Back there...#W\nGengar saved me...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...{WAIT_PRESS}I'm sure of it...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(I'm sure... Back there...{WAIT_PRESS}\nGengar saved me...)") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...Maybe...#W\nDid Gengar save $n0 too?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...Maybe...{WAIT_PRESS}\nDid Gengar save {NAME_0} too?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), CALL_LABEL(3), @@ -645,7 +645,7 @@ static const struct ScriptCommand s_gs171_g5_s0_lives0_dlg0[] = { /* 0x8221f00 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0e, 0x0004, 0x00000042, 0x00000000, NULL }, { 0x2f, 0x00, 0x0004, -0x00000003, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Awesome, you're alive!#W\nYou really had all of us worried!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Awesome, you're alive!{WAIT_PRESS}\nYou really had all of us worried!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x0c, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -655,17 +655,17 @@ static const struct ScriptCommand s_gs171_g5_s0_lives0_dlg0[] = { /* 0x8221f00 * { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0006, 0x00000042, 0x00000000, NULL }, - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Snivel...\nI'm so glad you're safe!#W\nIt's fantastic!") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Snivel...\nI'm so glad you're safe!{WAIT_PRESS}\nIt's fantastic!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Everyone... Thank you.#W\nBut...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Everyone... Thank you.{WAIT_PRESS}\nBut...") }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What about the star?!#W\nWhat happened to it?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What about the star?!{WAIT_PRESS}\nWhat happened to it?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), FANFARE_PLAY2(474), @@ -683,7 +683,7 @@ static const struct ScriptCommand s_gs171_g5_s0_lives0_dlg0[] = { /* 0x8221f00 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0003, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Fear not!\nThe star is no more.") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Though it will not be\nright away...#W\nThe disasters shall soon be calmed.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Though it will not be\nright away...{WAIT_PRESS}\nThe disasters shall soon be calmed.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), CJUMP_UNK_C6(10), @@ -696,17 +696,17 @@ static const struct ScriptCommand s_gs171_g5_s0_lives0_dlg0[] = { /* 0x8221f00 * JUMP_LABEL(13), LABEL(12), /* = 0x0c */ { 0x2d, 0x09, 0x0008, 0x0000000a, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What about our team\nmember?\nWhere's $n8?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What about our team\nmember?\nWhere's {NAME_8}?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Be calm.\n$n8 is safe.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Be calm.\n{NAME_8} is safe.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), JUMP_LABEL(10), LABEL(13), /* = 0x0d */ { 0x2d, 0x09, 0x0008, 0x0000000a, 0x00000000, NULL }, { 0x2d, 0x09, 0x0009, 0x0000000b, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What about our team\nmembers? Where are $n8 and\n$n9?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What about our team\nmembers? Where are {NAME_8} and\n{NAME_9}?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Be calm.\nBoth are unharmed.") }, @@ -727,9 +727,9 @@ static const struct ScriptCommand s_gs171_g5_s0_lives0_dlg0[] = { /* 0x8221f00 * CALL_LABEL(3), { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" We did it, $n0!#W\nWe got it done!")), + VARIANT(/* == */ 1, _(" We did it, {NAME_0}!{WAIT_PRESS}\nWe got it done!")), VARIANT(/* == */ 1, _(" We've won peace!")), - VARIANT_DEFAULT(_(" We did it, $n0!#W\nEverything worked!")), + VARIANT_DEFAULT(_(" We did it, {NAME_0}!{WAIT_PRESS}\nEverything worked!")), VARIANT_DEFAULT(_(" We've won peace!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), @@ -1117,7 +1117,7 @@ static const struct ScriptCommand s_gs171_g6_s0_lives0_dlg0[] = { /* 0x8223d40 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0e, 0x0004, 0x00000000, 0x00000000, NULL }, { 0x2f, 0x00, 0x0004, -0x00000003, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Whoa, hold on there!\nDon't you point those things at me!#W\nFace the other way! The other way!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Whoa, hold on there!\nDon't you point those things at me!{WAIT_PRESS}\nFace the other way! The other way!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2d, 0x09, 0x0009, 0x00000055, 0x00000000, NULL }, @@ -1147,7 +1147,7 @@ static const struct ScriptCommand s_gs171_g6_s0_lives0_dlg0[] = { /* 0x8223d40 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x09, 0x0009, 0x00000059, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0009, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Oh?#W Not bad!") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Oh?{WAIT_PRESS} Not bad!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, CALL_LABEL(2), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -1167,7 +1167,7 @@ static const struct ScriptCommand s_gs171_g6_s0_lives0_dlg0[] = { /* 0x8223d40 * { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Ahahahahaha!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" $n0...") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" {NAME_0}...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, BGM_FADEOUT(180), { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, @@ -1182,26 +1182,26 @@ static const struct ScriptCommand s_gs171_g6_s0_lives0_dlg0[] = { /* 0x8223d40 * SELECT_LIVES(-1, 1), { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(............#W\n$n5...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(............{WAIT_PRESS}\n{NAME_5}...)") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), BGM_SWITCH(42), { 0x2e, 0x03, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" We owe everything to you,\n$n0, and your friends.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" We owe everything to you,\n{NAME_0}, and your friends.") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Peace has returned to\nour world.") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Thank you for everything.") }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" And now...#W\n$n0, your role here has ended.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" And now...{WAIT_PRESS}\n{NAME_0}, your role here has ended.") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Soon, you must return to\nyour own world.") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" It is time to bid farewell.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(It's finally come...#W\nThis time has finally arrived...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(It's finally come...{WAIT_PRESS}\nThis time has finally arrived...)") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, WAIT(120), - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" $n0...#W\nI am so sorry for this...#W\nTo everyone...#W Please bid farewell...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" {NAME_0}...{WAIT_PRESS}\nI am so sorry for this...{WAIT_PRESS}\nTo everyone...{WAIT_PRESS} Please bid farewell...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -1216,7 +1216,7 @@ static const struct ScriptCommand s_gs171_g6_s0_lives0_dlg0[] = { /* 0x8223d40 * { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0c, 0x0006, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Oh? $n0?") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Oh? {NAME_0}?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, @@ -1228,12 +1228,12 @@ static const struct ScriptCommand s_gs171_g6_s0_lives0_dlg0[] = { /* 0x8223d40 * { 0x2e, 0x0f, 0x0001, 0x0000000c, 0x00000000, NULL }, { 0x2f, 0x00, 0x0001, 0x00000000, 0x00000003, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ...!#W $n0...!#W\nYour body...#W What's happening?")), - VARIANT_DEFAULT(_(" ...!#W $n0...!#W\nYour body...#W What's happening to you?")), + VARIANT(/* == */ 1, _(" ...!{WAIT_PRESS} {NAME_0}...!{WAIT_PRESS}\nYour body...{WAIT_PRESS} What's happening?")), + VARIANT_DEFAULT(_(" ...!{WAIT_PRESS} {NAME_0}...!{WAIT_PRESS}\nYour body...{WAIT_PRESS} What's happening to you?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x91, 0x0a, 0x000a, 0x00000004, 0x00000000, NULL }, WAIT(30), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("$n1...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("{NAME_1}...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x91, 0x0a, 0x000a, 0x00000005, 0x00000000, NULL }, WAIT(30), @@ -1241,7 +1241,7 @@ static const struct ScriptCommand s_gs171_g6_s0_lives0_dlg0[] = { /* 0x8223d40 * WAIT(30), { 0x91, 0x0a, 0x000a, 0x00000004, 0x00000000, NULL }, WAIT(30), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("And, everyone...#W I'm sorry.#W\nBut I have to leave.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("And, everyone...{WAIT_PRESS} I'm sorry.{WAIT_PRESS}\nBut I have to leave.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), FANFARE_PLAY2(465), @@ -1260,13 +1260,13 @@ static const struct ScriptCommand s_gs171_g6_s0_lives0_dlg0[] = { /* 0x8223d40 * { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Wh-what are you saying?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Everyone...#W\nThank you for everything all this time.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Everyone...{WAIT_PRESS}\nThank you for everything all this time.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...Huh?") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...#WLeave...?#W\nWhat do you mean, leave?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...{WAIT_PRESS}Leave...?{WAIT_PRESS}\nWhat do you mean, leave?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("My role as a Pokémon has ended.") }, @@ -1280,27 +1280,27 @@ static const struct ScriptCommand s_gs171_g6_s0_lives0_dlg0[] = { /* 0x8223d40 * WAIT(10), { 0x2d, 0x09, 0x0009, 0x0000005a, 0x00000000, NULL }, { 0x2e, 0x0c, 0x0009, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Go back...#W\nTo the human world?!") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Go back...{WAIT_PRESS}\nTo the human world?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh? W-why...?#W\nWhy?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh? W-why...?{WAIT_PRESS}\nWhy?!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I don't understand!\nWhy do you have to leave?!") }, { 0x2e, 0x15, 0x0001, 0x00000002, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Didn't we...#W\nAren't we friends?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Didn't we...{WAIT_PRESS}\nAren't we friends?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, WAIT(60), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Yes.#W\nYou will always be my friend,\n$n1.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Yes.{WAIT_PRESS}\nYou will always be my friend,\n{NAME_1}.") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I will never forget you.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000008, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Wait, $n0......")), - VARIANT_DEFAULT(_(" Don't go, $n0......")), + VARIANT(/* == */ 1, _(" Wait, {NAME_0}......")), + VARIANT_DEFAULT(_(" Don't go, {NAME_0}......")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, WAIT(60), @@ -1308,9 +1308,9 @@ static const struct ScriptCommand s_gs171_g6_s0_lives0_dlg0[] = { /* 0x8223d40 * { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" I...\nWhat am I going to do when you're\ngone, $n0?")), - VARIANT(/* == */ 3, _(" I...\nWhat am I going to do when you're\ngone, $n0?")), - VARIANT_DEFAULT(_(" I...\nWhat am I going to do when you're\ngone, $n0?")), + VARIANT(/* == */ 1, _(" I...\nWhat am I going to do when you're\ngone, {NAME_0}?")), + VARIANT(/* == */ 3, _(" I...\nWhat am I going to do when you're\ngone, {NAME_0}?")), + VARIANT_DEFAULT(_(" I...\nWhat am I going to do when you're\ngone, {NAME_0}?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I'm so very sorry.\nThis is good-bye...") }, @@ -1325,20 +1325,20 @@ static const struct ScriptCommand s_gs171_g6_s0_lives0_dlg0[] = { /* 0x8223d40 * { 0x2b, 0x00, 0x0000, 0x0000003c, 0x0000003c, NULL }, { 0x2d, 0x09, 0x0009, 0x0000004e, 0x00000000, NULL }, { 0x2e, 0x0c, 0x0009, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" $n0!") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" {NAME_0}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x09, 0x0009, 0x00000059, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0009, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" $n0!") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" {NAME_0}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x09, 0x0009, 0x0000004f, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0009, 0x00000041, 0x00000000, NULL }, { 0x2f, 0x00, 0x0009, -0x00000003, 0x00000000, NULL }, - { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" $n0!") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" {NAME_0}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0e, 0x0006, 0x00000042, 0x00000000, NULL }, { 0x2f, 0x00, 0x0006, -0x00000001, 0x00000002, NULL }, - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" $n0...") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" {NAME_0}...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -1346,7 +1346,7 @@ static const struct ScriptCommand s_gs171_g6_s0_lives0_dlg0[] = { /* 0x8223d40 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2b, 0x00, 0x0000, 0x000000b4, 0x000000b4, NULL }, { 0x2e, 0x03, 0x0001, 0x00000006, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0!!! Nooooo!!!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0}!!! Nooooo!!!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -2121,19 +2121,19 @@ static const struct ScriptCommand s_gs171_g7_s0_lives0_dlg0[] = { /* 0x8227f54 * WAIT(90), { 0x2b, 0x00, 0x0000, -0x00000001, -0x00000001, NULL }, { 0x2e, 0x02, 0x0006, 0x00000042, 0x00000000, NULL }, - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Snivel... $n0...#W\nWhy...#W I don't understand...") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Snivel... {NAME_0}...{WAIT_PRESS}\nWhy...{WAIT_PRESS} I don't understand...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2d, 0x09, 0x0009, 0x00000059, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0009, 0x00000044, 0x00000000, NULL }, - { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Why?#W\nWhy was it necessary to leave us...?") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Why?{WAIT_PRESS}\nWhy was it necessary to leave us...?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2d, 0x09, 0x0009, 0x00000055, 0x00000000, NULL }, { 0x2e, 0x0c, 0x0009, 0x00000043, 0x00000000, NULL }, - { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" $n0 saved my\nlife...") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" {NAME_0} saved my\nlife...") }, { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" But I hadn't done anything\nto show my thanks...") }, - { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Left...#W\nBefore I could even say thanks...") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Left...{WAIT_PRESS}\nBefore I could even say thanks...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x0e, 0x0004, 0x00000043, 0x00000000, NULL }, @@ -2141,50 +2141,50 @@ static const struct ScriptCommand s_gs171_g7_s0_lives0_dlg0[] = { /* 0x8227f54 * { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You're right...") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Just upped and went like\nthat...") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Why now?\nWhy when the world's been saved?") }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Just when things were\ngoing to get better...#W Sob...") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Just when things were\ngoing to get better...{WAIT_PRESS} Sob...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" This was coming...#W\nOur world, it was saved by $n0.") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I look back now...#W\nWhen bound for the sky, $n0\nseemed...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" This was coming...{WAIT_PRESS}\nOur world, it was saved by {NAME_0}.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I look back now...{WAIT_PRESS}\nWhen bound for the sky, {NAME_0}\nseemed...") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" As if resigned.\nResigned to accept what was to come.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x02, 0x0001, 0x00000005, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............#W\nI think I know...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}\nI think I know...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), CALL_LABEL(1), WAIT(60), MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" I think I understand now...")), - VARIANT(/* == */ 1, _(" $n0 became\na Pokémon to save us...")), - VARIANT(/* == */ 3, _(" $n0 must have...")), - VARIANT(/* == */ 3, _(" $n0 must have\nbecome a Pokémon to save us.")), - VARIANT_DEFAULT(_(" $n0 must have...")), - VARIANT_DEFAULT(_(" $n0 must have\nbecome a Pokémon to save us.")), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And when...#W\nWhen the star was destroyed...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0 knew that\nwould be the time to leave...") }, + VARIANT(/* == */ 1, _(" {NAME_0} became\na Pokémon to save us...")), + VARIANT(/* == */ 3, _(" {NAME_0} must have...")), + VARIANT(/* == */ 3, _(" {NAME_0} must have\nbecome a Pokémon to save us.")), + VARIANT_DEFAULT(_(" {NAME_0} must have...")), + VARIANT_DEFAULT(_(" {NAME_0} must have\nbecome a Pokémon to save us.")), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And when...{WAIT_PRESS}\nWhen the star was destroyed...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0} knew that\nwould be the time to leave...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000008, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Why...#W\nWhy didn't $n0 tell me earlier...?") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If this was coming...#W\nWhy didn't $n0 tell me?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Why...{WAIT_PRESS}\nWhy didn't {NAME_0} tell me earlier...?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If this was coming...{WAIT_PRESS}\nWhy didn't {NAME_0} tell me?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Those words couldn't be\nspoken.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" As much as you are heart-\nbroken now...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n0 must have felt\nthe same pain of leaving.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Try to understand,\n$n1.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" {NAME_0} must have felt\nthe same pain of leaving.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Try to understand,\n{NAME_1}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sob...#W\n$n0...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sob...{WAIT_PRESS}\n{NAME_0}...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_a04p04_station.h b/src/data/ground/ground_data_a04p04_station.h index 545f38a0f..792f59d13 100644 --- a/src/data/ground/ground_data_a04p04_station.h +++ b/src/data/ground/ground_data_a04p04_station.h @@ -44,9 +44,9 @@ static const struct ScriptCommand s_gs174_g1_s0_lives0_dlg0[] = { /* 0x822a258 * { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("........................") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...Is this...\na dream...?") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("........................") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("No...#W\nThis is no dream...") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Yes...#W\nThe star's explosion swallowed me...") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("And I'm now adrift...#W\nas a spirit...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("No...{WAIT_PRESS}\nThis is no dream...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Yes...{WAIT_PRESS}\nThe star's explosion swallowed me...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("And I'm now adrift...{WAIT_PRESS}\nas a spirit...") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("..................") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("What's going to happen...?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -57,13 +57,13 @@ static const struct ScriptCommand s_gs174_g1_s0_lives0_dlg0[] = { /* 0x822a258 * SELECT_LIVES(-1, 1), { 0x27, 0x01, 0x0005, 0x0000003c, 0x00ffffff, NULL }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(............)") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...This shadow...#W\n$n4...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...This shadow...{WAIT_PRESS}\n{NAME_4}...)") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Keke! $n0!#W\nDidn't take much to put you down!#W\nServes you right!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Keke! {NAME_0}!{WAIT_PRESS}\nDidn't take much to put you down!{WAIT_PRESS}\nServes you right!") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Kekeke!\nNow, what to do with you?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), @@ -82,7 +82,7 @@ static const struct ScriptCommand s_gs174_g1_s0_lives0_dlg0[] = { /* 0x822a258 * { 0x2e, 0x02, 0x0000, 0x00000005, 0x00000000, NULL }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(............)") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Gengar is dragging me...)") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...#WGengar said...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...{WAIT_PRESS}Gengar said...)") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(He would drag me into the dark\nworld...)") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(What is the dark world...?)") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Am I going to be abandoned in a world\nI don't know?)") }, @@ -96,7 +96,7 @@ static const struct ScriptCommand s_gs174_g1_s0_lives0_dlg0[] = { /* 0x822a258 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x54, 0x00, 0x0034, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0004, 0x00000044, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ..................#WHunh?") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ..................{WAIT_PRESS}Hunh?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -109,14 +109,14 @@ static const struct ScriptCommand s_gs174_g1_s0_lives0_dlg0[] = { /* 0x822a258 * { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(60), - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" This isn't like me...#W\nI can't tell which way is which...") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" This isn't like me...{WAIT_PRESS}\nI can't tell which way is which...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x0f, 0x0004, 0x00000044, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Keh! To heck with this.#W\nI'll just ditch you here...") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Keh! To heck with this.{WAIT_PRESS}\nI'll just ditch you here...") }, { 0x2e, 0x15, 0x0004, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" That's it. Good-bye to you.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_a05p01_station.h b/src/data/ground/ground_data_a05p01_station.h index be8da236e..ee4bc6864 100644 --- a/src/data/ground/ground_data_a05p01_station.h +++ b/src/data/ground/ground_data_a05p01_station.h @@ -53,7 +53,7 @@ static const struct ScriptCommand s_gs175_g1_s0_eff1_script[] = { /* 0x822b0f4 * { 0x2b, 0x00, 0x0000, -0x0000006e, 0x0000003c, NULL }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(......!)") }, { 0x2b, 0x00, 0x0000, -0x000000d2, 0x00000032, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Voices...#W\nI hear voices...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Voices...{WAIT_PRESS}\nI hear voices...)") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, HALT, @@ -88,13 +88,13 @@ static const struct ScriptCommand s_gs175_g2_s0_eff1_script[] = { /* 0x822b3d0 * { 0x2b, 0x00, 0x0000, 0x000000be, 0x000000be, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("\n#+I don't want to leave...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("\n{CENTER_ALIGN}I don't want to leave...") }, WAIT(100), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("\n#+I want to stay longer...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("\n{CENTER_ALIGN}I want to stay longer...") }, WAIT(100), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("\n#+With my invaluable...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("\n{CENTER_ALIGN}With my invaluable...") }, WAIT(100), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("\n#+Irreplaceable friend...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("\n{CENTER_ALIGN}Irreplaceable friend...") }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_a05p02_station.h b/src/data/ground/ground_data_a05p02_station.h index 62077c02d..3982989e0 100644 --- a/src/data/ground/ground_data_a05p02_station.h +++ b/src/data/ground/ground_data_a05p02_station.h @@ -98,15 +98,15 @@ static const struct ScriptCommand s_gs176_g1_s0_eff1_script[] = { /* 0x822bb50 * WAIT(90), { 0x2b, 0x00, 0x0000, 0x000000b4, 0x000000b4, NULL }, WAIT(60), - { 0x39, 0x00, 0x005a, 0x00000000, 0x00000000, _("#+Your friend is heartbroken...") }, + { 0x39, 0x00, 0x005a, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Your friend is heartbroken...") }, WAIT(80), - { 0x39, 0x00, 0x005a, 0x00000000, 0x00000000, _("#+A true friend...\n#+A friend for life...") }, + { 0x39, 0x00, 0x005a, 0x00000000, 0x00000000, _("{CENTER_ALIGN}A true friend...\n{CENTER_ALIGN}A friend for life...") }, WAIT(80), - { 0x39, 0x00, 0x005a, 0x00000000, 0x00000000, _("#+You finally realize it now...") }, + { 0x39, 0x00, 0x005a, 0x00000000, 0x00000000, _("{CENTER_ALIGN}You finally realize it now...") }, WAIT(80), - { 0x39, 0x00, 0x005a, 0x00000000, 0x00000000, _("#+If you wish...\n#+And wish very strongly...") }, + { 0x39, 0x00, 0x005a, 0x00000000, 0x00000000, _("{CENTER_ALIGN}If you wish...\n{CENTER_ALIGN}And wish very strongly...") }, WAIT(80), - { 0x39, 0x00, 0x005a, 0x00000000, 0x00000000, _("#+Perhaps you will meet again.") }, + { 0x39, 0x00, 0x005a, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Perhaps you will meet again.") }, { 0x31, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_a05p03_station.h b/src/data/ground/ground_data_a05p03_station.h index 47f603a27..a8cea2669 100644 --- a/src/data/ground/ground_data_a05p03_station.h +++ b/src/data/ground/ground_data_a05p03_station.h @@ -31,11 +31,11 @@ static const struct ScriptCommand s_gs177_g1_s0_station_sref_script[] = { /* 0x8 { 0x2d, 0x09, 0x0000, 0x00000001, 0x00000000, NULL }, { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The story of $n0 and\n#+$n1 ends here.") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+But $t isn't done yet!\n#+There are many rescues to be done!") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+A new adventure begins!") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The legendary Pokémon are set\n#+to make their appearance!") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Don't go away!") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The story of {NAME_0} and\n{CENTER_ALIGN}{NAME_1} ends here.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}But {TEAM_NAME} isn't done yet!\n{CENTER_ALIGN}There are many rescues to be done!") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}A new adventure begins!") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The legendary Pokémon are set\n{CENTER_ALIGN}to make their appearance!") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Don't go away!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_b01p01a_station.h b/src/data/ground/ground_data_b01p01a_station.h index bdb2ee2bd..a7dd320e5 100644 --- a/src/data/ground/ground_data_b01p01a_station.h +++ b/src/data/ground/ground_data_b01p01a_station.h @@ -525,22 +525,22 @@ static const struct ScriptCommand s_gs9_g0_s0_obj0_dlg2[] = { /* 0x819c378 */ { 0x3c, 0x21, 0x0000, 0x00000000, 0x00000000, NULL }, JUMP_SCRIPT(END_TALK), LABEL(0), /* = 0x00 */ - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+There is a warning tag\n#+on the side of the Mailbox.") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+- Open the Mailbox at the front -") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}There is a warning tag\n{CENTER_ALIGN}on the side of the Mailbox.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}- Open the Mailbox at the front -") }, JUMP_SCRIPT(END_TALK), EXECUTE_FUNCTION(EVENT_S01E02A_L001), JUMP_SCRIPT(END_TALK), LABEL(1), /* = 0x01 */ { 0x3b, 0x08, 0x0000, 0x00000000, 0x00000000, NULL }, COND_EQUAL(0, /* to label */ 2), - { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+\n#+= Extra! =") }, - { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Buried Relic Discovered!") }, - { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Mystery ruin\n#+found underground!") }, - { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Its site had been hidden by the crater\n#+of a meteor strike in ancient times.") }, - { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The Buried Relic is thought to date\n#+back beyond recorded history.") }, - { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+There are rumors of treasures...") }, - { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+And perhaps even Pokémon\n#+that lived in ancient times.") }, - { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The Buried Relic is the main\n#+topic in Pokémon Square.") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}\n{CENTER_ALIGN}= Extra! =") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Buried Relic Discovered!") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Mystery ruin\n{CENTER_ALIGN}found underground!") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Its site had been hidden by the crater\n{CENTER_ALIGN}of a meteor strike in ancient times.") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The Buried Relic is thought to date\n{CENTER_ALIGN}back beyond recorded history.") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}There are rumors of treasures...") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And perhaps even Pokémon\n{CENTER_ALIGN}that lived in ancient times.") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The Buried Relic is the main\n{CENTER_ALIGN}topic in Pokémon Square.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, SCENARIO_CALC(SCENARIO_SUB7, 49, 2), JUMP_SCRIPT(END_TALK), @@ -1208,9 +1208,9 @@ static const struct ScriptCommand s_gs9_g5_s0_lives0_dlg0[] = { /* 0x819f048 */ WAIT(30), { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Morning, $n0.")), + VARIANT(/* == */ 1, _(" Morning, {NAME_0}.")), VARIANT(/* == */ 1, _(" We blew it yesterday,\nso let's get it right this time.")), - VARIANT_DEFAULT(_(" Good morning, $n0.")), + VARIANT_DEFAULT(_(" Good morning, {NAME_0}.")), VARIANT_DEFAULT(_(" We failed yesterday,\nso let's try harder this time.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -1267,9 +1267,9 @@ static const struct ScriptCommand s_gs9_g6_s1_lives0_dlg0[] = { /* 0x819f3a8 */ { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" We did good today.#W\nLet's knock off and call it a night.")), + VARIANT(/* == */ 1, _(" We did good today.{WAIT_PRESS}\nLet's knock off and call it a night.")), VARIANT(/* == */ 1, _(" See you tomorrow!")), - VARIANT_DEFAULT(_(" Didn't we do good today?#W\nLet's call it a night and get some rest.")), + VARIANT_DEFAULT(_(" Didn't we do good today?{WAIT_PRESS}\nLet's call it a night and get some rest.")), VARIANT_DEFAULT(_(" OK, see you tomorrow!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -1328,7 +1328,7 @@ static const struct ScriptCommand s_gs9_g7_s0_lives0_dlg0[] = { /* 0x819f7c4 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Good morning, $n0.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Good morning, {NAME_0}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, HALT, @@ -1549,9 +1549,9 @@ static const struct ScriptCommand s_gs9_g17_s0_station_sref_script[] = { /* 0x81 { 0x2d, 0x09, 0x0000, 0x00000021, 0x00000000, NULL }, { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, WAIT(60), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And that is how") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+$n0 and $n1\n#+began their careers together") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+as a rescue team.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And that is how") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0} and {NAME_1}\n{CENTER_ALIGN}began their careers together") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}as a rescue team.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -1606,17 +1606,17 @@ static const struct ScriptCommand s_gs9_g17_s0_lives0_dlg0[] = { /* 0x81a05ac - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(It might be an instinct thing for\nPokémon...)") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Maybe this is what it feels like to want\nto wag your tail...)") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(It doesn't matter! I'm happy!)") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Maybe I feel that way because I'm\n$m0!)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Maybe I feel that way because I'm\n{POKEMON_0}!)") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Oh? $n0.\nI can tell you're impressed.")), - VARIANT(/* == */ 1, _(" I thought you'd like it.\nI figured you'd find this an easy place\nto live, $n0.")), - VARIANT_DEFAULT(_(" Oh, $n0.\nYou're impressed, aren't you?")), - VARIANT_DEFAULT(_(" I thought so.\nI thought this would make a good place\nfor you to live, $n0.")), + VARIANT(/* == */ 1, _(" Oh? {NAME_0}.\nI can tell you're impressed.")), + VARIANT(/* == */ 1, _(" I thought you'd like it.\nI figured you'd find this an easy place\nto live, {NAME_0}.")), + VARIANT_DEFAULT(_(" Oh, {NAME_0}.\nYou're impressed, aren't you?")), + VARIANT_DEFAULT(_(" I thought so.\nI thought this would make a good place\nfor you to live, {NAME_0}.")), { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" In fact, I was sure that\nyou'd like it.")), @@ -1628,40 +1628,40 @@ static const struct ScriptCommand s_gs9_g17_s0_lives0_dlg0[] = { /* 0x81a05ac - { 0x91, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" This is your #C5Mailbox#R.#W\nThis is where you'll get mail from\nother Pokémon.")), - VARIANT_DEFAULT(_(" This is your #C5Mailbox#R.#W\nThey deliver mail from Pokémon here.")), + VARIANT(/* == */ 1, _(" This is your {COLOR CYAN}Mailbox{RESET}.{WAIT_PRESS}\nThis is where you'll get mail from\nother Pokémon.")), + VARIANT_DEFAULT(_(" This is your {COLOR CYAN}Mailbox{RESET}.{WAIT_PRESS}\nThey deliver mail from Pokémon here.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x09, 0x0002, 0x00000036, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" You know that fissure\n$n2 fell into?")), + VARIANT(/* == */ 1, _(" You know that fissure\n{NAME_2} fell into?")), VARIANT(/* == */ 1, _(" There've been other\nnatural disasters like that all of a sudden.")), VARIANT(/* == */ 1, _(" A lot of Pokémon out there\nare hurting from those disasters.")), VARIANT(/* == */ 1, _(" I want to help Pokémon like\nthat.")), VARIANT(/* == */ 1, _(" I want to help make\nthis a safer place for Pokémon.")), - VARIANT(/* == */ 1, _(" And, uh...#W\nI think you're capable after seeing\nhow you did rescuing $n2.")), + VARIANT(/* == */ 1, _(" And, uh...{WAIT_PRESS}\nI think you're capable after seeing\nhow you did rescuing {NAME_2}.")), VARIANT(/* == */ 1, _(" How would you like to form\na rescue team with me?")), - VARIANT(/* == */ 3, _(" Just like the fissure\n$n2 fell into...")), + VARIANT(/* == */ 3, _(" Just like the fissure\n{NAME_2} fell into...")), VARIANT(/* == */ 3, _(" There have been all sorts\nof natural disasters recently.")), VARIANT(/* == */ 3, _(" Many Pokémon are suffering\nfrom these natural disasters.")), VARIANT(/* == */ 3, _(" I want to do good.\nI want to help Pokémon like that.")), VARIANT(/* == */ 3, _(" I want to help make the\nworld a safer place for Pokémon.")), - VARIANT(/* == */ 3, _(" So, um...#W\nWell, I saw how good you were when\nwe rescued $n2...")), + VARIANT(/* == */ 3, _(" So, um...{WAIT_PRESS}\nWell, I saw how good you were when\nwe rescued {NAME_2}...")), VARIANT(/* == */ 3, _(" Would you like to form\na rescue team with me?")), - VARIANT_DEFAULT(_(" You know, just like the\nfissure $n2 fell into...")), + VARIANT_DEFAULT(_(" You know, just like the\nfissure {NAME_2} fell into...")), VARIANT_DEFAULT(_(" For some reason, there have\nbeen many natural disasters lately.")), VARIANT_DEFAULT(_(" Because of those disasters,\nmany Pokémon are suffering.")), VARIANT_DEFAULT(_(" I want to help Pokémon in\nthese tough times.")), VARIANT_DEFAULT(_(" I want to help change things\nso all the Pokémon can live in peace.")), - VARIANT_DEFAULT(_(" So, uh...#W\nWell, I liked how you handled yourself\nwhen we rescued $n2.")), + VARIANT_DEFAULT(_(" So, uh...{WAIT_PRESS}\nWell, I liked how you handled yourself\nwhen we rescued {NAME_2}.")), VARIANT_DEFAULT(_(" Would you like to join me\non a rescue team?")), LABEL(4), /* = 0x04 */ { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), - VARIANT(/* == */ 1, _(" $n0, I think we'd\nmake the world's greatest rescue team.\nHow about it?")), - VARIANT(/* == */ 3, _(" I think we could become\nthe world's number-one rescue team,\n$n0. What do you think?")), - VARIANT_DEFAULT(_(" $n0, with you,\nI think we could even become the world's\nbest rescue team. How about it?")), + VARIANT(/* == */ 1, _(" {NAME_0}, I think we'd\nmake the world's greatest rescue team.\nHow about it?")), + VARIANT(/* == */ 3, _(" I think we could become\nthe world's number-one rescue team,\n{NAME_0}. What do you think?")), + VARIANT_DEFAULT(_(" {NAME_0}, with you,\nI think we could even become the world's\nbest rescue team. How about it?")), CHOICE(/* label */ 6, _("Form a rescue team.")), CHOICE(/* label */ 7, _("Refuse.")), LABEL(7), /* = 0x07 */ @@ -1677,9 +1677,9 @@ static const struct ScriptCommand s_gs9_g17_s0_lives0_dlg0[] = { /* 0x81a05ac - VARIANT_DEFAULT(_(" Huh?! Oh, but...")), { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0, I'm positive\nwe'd make a first-class rescue team!")), - VARIANT(/* == */ 3, _(" But, $n0!\nI'm sure that we would make a first-class\nrescue team together!")), - VARIANT_DEFAULT(_(" $n0, I'm sure\nthat the two of us would make a\nfirst-class rescue team.")), + VARIANT(/* == */ 1, _(" {NAME_0}, I'm positive\nwe'd make a first-class rescue team!")), + VARIANT(/* == */ 3, _(" But, {NAME_0}!\nI'm sure that we would make a first-class\nrescue team together!")), + VARIANT_DEFAULT(_(" {NAME_0}, I'm sure\nthat the two of us would make a\nfirst-class rescue team.")), ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), VARIANT(/* == */ 1, _(" So come on, I'm begging you.\nLet's form a rescue team, you and me.")), VARIANT(/* == */ 3, _(" Please?\nWill you please form a rescue team\nwith me?")), @@ -1695,21 +1695,21 @@ static const struct ScriptCommand s_gs9_g17_s0_lives0_dlg0[] = { /* 0x81a05ac - { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" OK! That's done it!")), - VARIANT(/* == */ 1, _(" Starting right now, me and\nyou, $n0, we're partners in\nour rescue team! I'm counting on you!")), + VARIANT(/* == */ 1, _(" Starting right now, me and\nyou, {NAME_0}, we're partners in\nour rescue team! I'm counting on you!")), VARIANT(/* == */ 3, _(" OK! Done deal!")), - VARIANT(/* == */ 3, _(" From now on, $n0,\nwe're partners in our rescue team!\nI'm so glad you joined!")), + VARIANT(/* == */ 3, _(" From now on, {NAME_0},\nwe're partners in our rescue team!\nI'm so glad you joined!")), VARIANT_DEFAULT(_(" Perfect! That's it, then!")), - VARIANT_DEFAULT(_(" We're partners in our\nrescue team from now on, $n0!\nGlad to have you on board!")), + VARIANT_DEFAULT(_(" We're partners in our\nrescue team from now on, {NAME_0}!\nGlad to have you on board!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" The team's name...\nActually, I haven't thought of one yet.")), - VARIANT(/* == */ 1, _(" Hey, $n0.\nWhat do you think would be a good name?")), + VARIANT(/* == */ 1, _(" Hey, {NAME_0}.\nWhat do you think would be a good name?")), VARIANT(/* == */ 3, _(" The team's name is...\nI haven't decided on one.")), - VARIANT(/* == */ 3, _(" Listen, $n0.\nWhat would be a good name for us?")), + VARIANT(/* == */ 3, _(" Listen, {NAME_0}.\nWhat would be a good name for us?")), VARIANT_DEFAULT(_(" The team name...\nWell, I don't have one yet.")), - VARIANT_DEFAULT(_(" So, $n0.\nWhat do you think would be a good\nname for us?")), + VARIANT_DEFAULT(_(" So, {NAME_0}.\nWhat do you think would be a good\nname for us?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x3e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), @@ -1721,12 +1721,12 @@ static const struct ScriptCommand s_gs9_g17_s0_lives0_dlg0[] = { /* 0x81a05ac - { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" #C5$t#R!#W\nYeah... That's a good name! It suits us!")), - VARIANT_DEFAULT(_(" #C5$t#R!#W\nI like it! It's a good name!\nIt's perfect for us!")), + VARIANT(/* == */ 1, _(" {COLOR CYAN}{TEAM_NAME}{RESET}!{WAIT_PRESS}\nYeah... That's a good name! It suits us!")), + VARIANT_DEFAULT(_(" {COLOR CYAN}{TEAM_NAME}{RESET}!{WAIT_PRESS}\nI like it! It's a good name!\nIt's perfect for us!")), { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Rescue Team\n#C5$t#R!#W\nWe begin tomorrow! Let's do it!")), - VARIANT_DEFAULT(_(" Rescue Team\n$t#R!#W\nLet's do good starting tomorrow!")), + VARIANT(/* == */ 1, _(" Rescue Team\n{COLOR CYAN}{TEAM_NAME}{RESET}!{WAIT_PRESS}\nWe begin tomorrow! Let's do it!")), + VARIANT_DEFAULT(_(" Rescue Team\n{TEAM_NAME}{RESET}!{WAIT_PRESS}\nLet's do good starting tomorrow!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x91, 0x06, 0x000a, 0x00000000, 0x00000000, NULL }, @@ -1869,11 +1869,11 @@ static const struct ScriptCommand s_gs9_g18_s0_lives0_dlg0[] = { /* 0x81a23fc */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hahaha, sorry!#W\nI was so excited, I've been waiting out\nhere since dawn...")), + VARIANT(/* == */ 1, _(" Hahaha, sorry!{WAIT_PRESS}\nI was so excited, I've been waiting out\nhere since dawn...")), VARIANT(/* == */ 1, _(" I guess I just fell asleep!")), - VARIANT(/* == */ 3, _(" Ahaha, sorry!#W\nI was so excited about today, I've been\nwaiting here since dawn...")), + VARIANT(/* == */ 3, _(" Ahaha, sorry!{WAIT_PRESS}\nI was so excited about today, I've been\nwaiting here since dawn...")), VARIANT(/* == */ 3, _(" I must have fallen asleep.")), - VARIANT_DEFAULT(_(" Hahaha, sorry!#W\nI was so excited, I came out here at\ndawn to wait for you.")), + VARIANT_DEFAULT(_(" Hahaha, sorry!{WAIT_PRESS}\nI was so excited, I came out here at\ndawn to wait for you.")), VARIANT_DEFAULT(_(" I must have snoozed off.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -1881,8 +1881,8 @@ static const struct ScriptCommand s_gs9_g18_s0_lives0_dlg0[] = { /* 0x81a23fc */ WAIT(30), { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Anyway...#W\nOur rescue team officially begins!\nLet's do this right!")), - VARIANT_DEFAULT(_(" Anyway...#W\nToday marks the start of our rescue team!\nLet's always do our best!")), + VARIANT(/* == */ 1, _(" Anyway...{WAIT_PRESS}\nOur rescue team officially begins!\nLet's do this right!")), + VARIANT_DEFAULT(_(" Anyway...{WAIT_PRESS}\nToday marks the start of our rescue team!\nLet's always do our best!")), { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" ......")), @@ -1904,7 +1904,7 @@ static const struct ScriptCommand s_gs9_g18_s0_lives0_dlg0[] = { /* 0x81a23fc */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, yeah!#W\nMaybe there's something in the Mailbox...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, yeah!{WAIT_PRESS}\nMaybe there's something in the Mailbox...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, @@ -1914,15 +1914,15 @@ static const struct ScriptCommand s_gs9_g18_s0_lives0_dlg0[] = { /* 0x81a23fc */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x3b, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n1 checked the Mailbox.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_1} checked the Mailbox.") }, FANFARE_PLAY(213), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The Mailbox contained\n#+a #C5Rescue Team Starter Set#R!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The Mailbox contained\n{CENTER_ALIGN}a {COLOR CYAN}Rescue Team Starter Set{RESET}!") }, { 0xe1, 0x00, 0x00d5, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I knew it'd be there!#W\nIt's the #C5Rescue Team Starter Set#R!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I knew it'd be there!{WAIT_PRESS}\nIt's the {COLOR CYAN}Rescue Team Starter Set{RESET}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -1936,15 +1936,15 @@ static const struct ScriptCommand s_gs9_g18_s0_lives0_dlg0[] = { /* 0x81a23fc */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n1 opened\n#+the #C5Rescue Team Starter Set#R.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_1} opened\n{CENTER_ALIGN}the {COLOR CYAN}Rescue Team Starter Set{RESET}.") }, FANFARE_PLAY(213), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+There was\n#+a #C5Rescue Team Badge#R inside!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}There was\n{CENTER_ALIGN}a {COLOR CYAN}Rescue Team Badge{RESET} inside!") }, { 0xe1, 0x00, 0x00d5, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY(213), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+There was a #C5Toolbox#R inside!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}There was a {COLOR CYAN}Toolbox{RESET} inside!") }, { 0xe1, 0x00, 0x00d5, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY(213), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+There was also an issue of\n#+#C5Pokémon News#R inside!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}There was also an issue of\n{CENTER_ALIGN}{COLOR CYAN}Pokémon News{RESET} inside!") }, { 0xe1, 0x00, 0x00d5, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), @@ -1952,34 +1952,34 @@ static const struct ScriptCommand s_gs9_g18_s0_lives0_dlg0[] = { /* 0x81a23fc */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Yeah!#W\nThere's all sorts of good stuff in it!")), - VARIANT_DEFAULT(_(" Yes!#W\nThere are some good things here!")), + VARIANT(/* == */ 1, _(" Yeah!{WAIT_PRESS}\nThere's all sorts of good stuff in it!")), + VARIANT_DEFAULT(_(" Yes!{WAIT_PRESS}\nThere are some good things here!")), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" This #C5Rescue Team Badge#R...#W\nIt's proof that you're in a rescue team.")), - VARIANT(/* == */ 1, _(" This #C5Toolbox#R too...#W\nYou can use it for keeping items that you\nfind in dungeons.")), + VARIANT(/* == */ 1, _(" This {COLOR CYAN}Rescue Team Badge{RESET}...{WAIT_PRESS}\nIt's proof that you're in a rescue team.")), + VARIANT(/* == */ 1, _(" This {COLOR CYAN}Toolbox{RESET} too...{WAIT_PRESS}\nYou can use it for keeping items that you\nfind in dungeons.")), VARIANT(/* == */ 1, _(" I'll put the stuff that\nButterfree gave us in here.\nMight as well put it to good use.")), VARIANT(/* == */ 1, _(" But items are really useful.\nLet's use them on our adventures.")), - VARIANT(/* == */ 1, _(" And we have here a copy of\nthe #C5Pokémon News#R.#W\nIt has useful information for rescuers.")), - VARIANT(/* == */ 1, _(" I'll leave the #C5Pokémon News#R\nin the Mailbox.\nYou should read it later.")), - VARIANT_DEFAULT(_(" First off,\nthe #C5Rescue Team Badge#R.#W\nIt shows that we're a rescue team.")), - VARIANT_DEFAULT(_(" This is a #C5Toolbox#R.#W\nYou use it for carrying items you find in\ndungeons.")), + VARIANT(/* == */ 1, _(" And we have here a copy of\nthe {COLOR CYAN}Pokémon News{RESET}.{WAIT_PRESS}\nIt has useful information for rescuers.")), + VARIANT(/* == */ 1, _(" I'll leave the {COLOR CYAN}Pokémon News{RESET}\nin the Mailbox.\nYou should read it later.")), + VARIANT_DEFAULT(_(" First off,\nthe {COLOR CYAN}Rescue Team Badge{RESET}.{WAIT_PRESS}\nIt shows that we're a rescue team.")), + VARIANT_DEFAULT(_(" This is a {COLOR CYAN}Toolbox{RESET}.{WAIT_PRESS}\nYou use it for carrying items you find in\ndungeons.")), VARIANT_DEFAULT(_(" Let's put the stuff\nButterfree gave us in here for now.")), VARIANT_DEFAULT(_(" Items are very useful,\nso let's use them on our adventures.")), - VARIANT_DEFAULT(_(" And finally, a copy of\nthe #C5Pokémon News#R.#W\nIt's useful for rescue teams.")), - VARIANT_DEFAULT(_(" I'll put the #C5Pokémon News#R\nin the Mailbox.\nYou should read it later on.")), + VARIANT_DEFAULT(_(" And finally, a copy of\nthe {COLOR CYAN}Pokémon News{RESET}.{WAIT_PRESS}\nIt's useful for rescue teams.")), + VARIANT_DEFAULT(_(" I'll put the {COLOR CYAN}Pokémon News{RESET}\nin the Mailbox.\nYou should read it later on.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(30), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" And, let's see...#W\nIs there any other mail...?#W\nDid we miss anything?")), - VARIANT_DEFAULT(_(" Anything else?#W\nIs there any other mail...?#W\nMaybe not?")), + VARIANT(/* == */ 1, _(" And, let's see...{WAIT_PRESS}\nIs there any other mail...?{WAIT_PRESS}\nDid we miss anything?")), + VARIANT_DEFAULT(_(" Anything else?{WAIT_PRESS}\nIs there any other mail...?{WAIT_PRESS}\nMaybe not?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n1 checked the Mailbox.") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+But the Mailbox was empty.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_1} checked the Mailbox.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}But the Mailbox was empty.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -2172,9 +2172,9 @@ static const struct ScriptCommand s_gs9_g19_s0_lives0_dlg2[] = { /* 0x81a411c */ WAIT(1), MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" Maybe this is it...")), - VARIANT(/* == */ 1, _(" $n0, how about\nchecking your Mailbox?")), + VARIANT(/* == */ 1, _(" {NAME_0}, how about\nchecking your Mailbox?")), VARIANT_DEFAULT(_(" Could this be...?")), - VARIANT_DEFAULT(_(" $n0, will you\ncheck the Mailbox, please?")), + VARIANT_DEFAULT(_(" {NAME_0}, will you\ncheck the Mailbox, please?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, JUMP_SCRIPT(END_TALK), }; @@ -2186,13 +2186,13 @@ static const struct ScriptCommand s_gs9_g19_s0_obj0_dlg2[] = { /* 0x81a4254 */ WAIT(1), CJUMP_DIR_TO_LINK(0), COND_EQUAL(0, /* to label */ 0), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 checked the Mailbox.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0} checked the Mailbox.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, EXECUTE_STATION(-1, 20, 0), HALT, LABEL(0), /* = 0x00 */ - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+There is a warning tag\n#+on the side of the Mailbox.") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+- Open the Mailbox at the front -") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}There is a warning tag\n{CENTER_ALIGN}on the side of the Mailbox.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}- Open the Mailbox at the front -") }, JUMP_SCRIPT(END_TALK), }; @@ -2222,8 +2222,8 @@ static const struct ScriptCommand s_gs9_g19_s1_lives0_dlg0[] = { /* 0x81a43f8 */ WAIT(1), { 0x2e, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey, $n0, aren't\nyou going to check the Mailbox?")), - VARIANT_DEFAULT(_(" $n0, please check\nthe Mailbox.")), + VARIANT(/* == */ 1, _(" Hey, {NAME_0}, aren't\nyou going to check the Mailbox?")), + VARIANT_DEFAULT(_(" {NAME_0}, please check\nthe Mailbox.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, RET, @@ -2254,7 +2254,7 @@ static const struct ScriptCommand s_gs9_g19_s1_lives1_dlg2[] = { /* 0x81a4574 */ VARIANT(/* == */ 1, _(" Oh, all right.\nI'll wait here until you're ready.")), VARIANT(/* == */ 1, _(" Give me a shout when you're\nready.\nWe'll get going then.")), VARIANT_DEFAULT(_(" Oh, OK.\nI'll wait until you're all set.")), - VARIANT_DEFAULT(_(" Tell me when you're\nready.#W\nWe'll leave right away then.")), + VARIANT_DEFAULT(_(" Tell me when you're\nready.{WAIT_PRESS}\nWe'll leave right away then.")), JUMP_SCRIPT(END_TALK), LABEL(1), /* = 0x01 */ EXECUTE_FUNCTION(EVENT_M01E07A_L002), @@ -2298,11 +2298,11 @@ static const struct ScriptCommand s_gs9_g20_s0_lives0_dlg0[] = { /* 0x81a48c8 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0001, 0x0000000b, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Maybe it's a rescue job\nrequest?!#W\nCome on, what's it say?")), - VARIANT_DEFAULT(_(" Maybe it's a rescue job\noffer!#W\nWhat does it say?")), + VARIANT(/* == */ 1, _(" Maybe it's a rescue job\nrequest?!{WAIT_PRESS}\nCome on, what's it say?")), + VARIANT_DEFAULT(_(" Maybe it's a rescue job\noffer!{WAIT_PRESS}\nWhat does it say?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x8e, 0x1e, 0x0000, 0x00000022, 0x00000000, NULL }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 read the letter.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0} read the letter.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("“BZZ BZZ BZZ!") }, @@ -2430,11 +2430,11 @@ static const struct ScriptCommand s_gs9_g21_s0_lives0_dlg0[] = { /* 0x81a5378 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(15), { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Morning, $n0.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Morning, {NAME_0}.") }, { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" We sure loused up on\n$n2's rescue yesterday.")), - VARIANT_DEFAULT(_(" We failed $n2's\nrescue badly yesterday, didn't we?")), + VARIANT(/* == */ 1, _(" We sure loused up on\n{NAME_2}'s rescue yesterday.")), + VARIANT_DEFAULT(_(" We failed {NAME_2}'s\nrescue badly yesterday, didn't we?")), { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" Let's get it done right today!")), @@ -2483,15 +2483,15 @@ static const struct ScriptCommand s_gs9_g22_s1_lives0_dlg0[] = { /* 0x81a56b4 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0!\nThe dungeon isn't that way.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0}!\nThe dungeon isn't that way.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x93, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" #CDThunderwave Cave#R is\nover this way!")), - VARIANT_DEFAULT(_(" #CDThunderwave Cave#R is \nout this way.")), + VARIANT(/* == */ 1, _(" {COLOR YELLOW_D}Thunderwave Cave{RESET} is\nover this way!")), + VARIANT_DEFAULT(_(" {COLOR YELLOW_D}Thunderwave Cave{RESET} is \nout this way.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -2540,15 +2540,15 @@ static const struct ScriptCommand s_gs9_g22_s2_lives0_dlg0[] = { /* 0x81a5a7c */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0!\nThe dungeon isn't that way.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0}!\nThe dungeon isn't that way.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x93, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" #CDThunderwave Cave#R is\nover this way!")), - VARIANT_DEFAULT(_(" #CDThunderwave Cave#R is \nout this way.")), + VARIANT(/* == */ 1, _(" {COLOR YELLOW_D}Thunderwave Cave{RESET} is\nover this way!")), + VARIANT_DEFAULT(_(" {COLOR YELLOW_D}Thunderwave Cave{RESET} is \nout this way.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -2656,14 +2656,14 @@ static const struct ScriptCommand s_gs9_g24_s0_obj0_dlg2[] = { /* 0x81a6384 */ WAIT(1), CJUMP_DIR_TO_LINK(0), COND_EQUAL(0, /* to label */ 0), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 checked the Mailbox.") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+But there was no mail seeking\n#+help from the rescue team.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0} checked the Mailbox.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}But there was no mail seeking\n{CENTER_ALIGN}help from the rescue team.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, EXECUTE_STATION(-1, 25, 0), HALT, LABEL(0), /* = 0x00 */ - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+There is a warning tag\n#+on the side of the Mailbox.") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+- Open the Mailbox at the front -") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}There is a warning tag\n{CENTER_ALIGN}on the side of the Mailbox.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}- Open the Mailbox at the front -") }, JUMP_SCRIPT(END_TALK), }; @@ -2691,7 +2691,7 @@ static const struct ScriptCommand s_gs9_g24_s1_lives0_dlg0[] = { /* 0x81a655c */ DEBUGINFO, { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Oops!#W\nI'd better check the Mailbox.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Oops!{WAIT_PRESS}\nI'd better check the Mailbox.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000008, NULL }, WAIT(30), @@ -2730,8 +2730,8 @@ static const struct ScriptCommand s_gs9_g25_s0_lives0_dlg0[] = { /* 0x81a6700 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Morning, $n0!\nYou're up early.")), - VARIANT_DEFAULT(_(" Good morning, $n0!\nAren't you up early?")), + VARIANT(/* == */ 1, _(" Morning, {NAME_0}!\nYou're up early.")), + VARIANT_DEFAULT(_(" Good morning, {NAME_0}!\nAren't you up early?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, @@ -2772,13 +2772,13 @@ static const struct ScriptCommand s_gs9_g25_s0_lives0_dlg0[] = { /* 0x81a6700 */ { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" Well, no point moping.\nLet's go check Pokémon Square.")), - VARIANT(/* == */ 1, _(" I think there will be jobs\nposted at the #C5Pelipper Post Office#R.")), + VARIANT(/* == */ 1, _(" I think there will be jobs\nposted at the {COLOR CYAN}Pelipper Post Office{RESET}.")), VARIANT(/* == */ 1, _(" Pokémon Square's over\nthis way.\nLet's go.")), VARIANT(/* == */ 3, _(" Oh, well.\nWe should go to Pokémon Square.")), - VARIANT(/* == */ 3, _(" We should check the\n#C5Pelipper#R #C5Post Office#R.\nI think they'll have jobs posted.")), + VARIANT(/* == */ 3, _(" We should check the\n{COLOR CYAN}Pelipper{RESET} {COLOR CYAN}Post Office{RESET}.\nI think they'll have jobs posted.")), VARIANT(/* == */ 3, _(" Pokémon Square is over\nhere.\nLet's go.")), VARIANT_DEFAULT(_(" Well, too bad.\nWant to go to Pokémon Square?")), - VARIANT_DEFAULT(_(" I think if we go to the\n#C5Pelipper#R #C5Post Office#R, there'll be jobs\nposted.")), + VARIANT_DEFAULT(_(" I think if we go to the\n{COLOR CYAN}Pelipper{RESET} {COLOR CYAN}Post Office{RESET}, there'll be jobs\nposted.")), VARIANT_DEFAULT(_(" Pokémon Square's over\nthis way.\nLet's go.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, BGM_FADEOUT(150), @@ -2843,11 +2843,11 @@ static const struct ScriptCommand s_gs9_g26_s0_lives0_dlg0[] = { /* 0x81a7140 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Morning, $n0!")), - VARIANT_DEFAULT(_(" Good morning, $n0!")), + VARIANT(/* == */ 1, _(" Morning, {NAME_0}!")), + VARIANT_DEFAULT(_(" Good morning, {NAME_0}!")), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ............#WHah?!")), - VARIANT_DEFAULT(_(" ............#WHuh?!")), + VARIANT(/* == */ 1, _(" ............{WAIT_PRESS}Hah?!")), + VARIANT_DEFAULT(_(" ............{WAIT_PRESS}Huh?!")), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), @@ -2864,9 +2864,9 @@ static const struct ScriptCommand s_gs9_g26_s0_lives0_dlg0[] = { /* 0x81a7140 */ { 0x62, 0x00, 0x0100, 0x00000000, -0x00000004, NULL }, WAIT(60), { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Our child, $n3,\nwas kidnapped!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" He was taken to #CDMt. Steel#R's\nsummit!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Please, we need your help!#W\nBye-bye!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Our child, {NAME_3},\nwas kidnapped!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" He was taken to {COLOR YELLOW_D}Mt. Steel{RESET}'s\nsummit!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Please, we need your help!{WAIT_PRESS}\nBye-bye!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -2877,8 +2877,8 @@ static const struct ScriptCommand s_gs9_g26_s0_lives0_dlg0[] = { /* 0x81a7140 */ WAIT(10), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ...#WI see...#W\nI guess we'd better go...")), - VARIANT_DEFAULT(_(" ...#WUh, OK...#W\nLet's go...")), + VARIANT(/* == */ 1, _(" ...{WAIT_PRESS}I see...{WAIT_PRESS}\nI guess we'd better go...")), + VARIANT_DEFAULT(_(" ...{WAIT_PRESS}Uh, OK...{WAIT_PRESS}\nLet's go...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -2956,9 +2956,9 @@ static const struct ScriptCommand s_gs9_g27_s0_lives0_dlg0[] = { /* 0x81a7910 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Morning, $n0.")), + VARIANT(/* == */ 1, _(" Morning, {NAME_0}.")), VARIANT(/* == */ 1, _(" We blew it yesterday.\nLet's save that little guy today for sure.")), - VARIANT_DEFAULT(_(" Good morning, $n0.")), + VARIANT_DEFAULT(_(" Good morning, {NAME_0}.")), VARIANT_DEFAULT(_(" We couldn't do it yesterday,\nso let's be sure to do this rescue today.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, @@ -3065,11 +3065,11 @@ static const struct ScriptCommand s_gs9_g28_s0_lives0_dlg0[] = { /* 0x81a7c70 */ CALL_SCRIPT(QUESTION_FUNC), { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hah? What was that?#W\nWho said that?")), - VARIANT_DEFAULT(_(" Huh? What was that?#W\nAm I hearing voices?")), + VARIANT(/* == */ 1, _(" Hah? What was that?{WAIT_PRESS}\nWho said that?")), + VARIANT_DEFAULT(_(" Huh? What was that?{WAIT_PRESS}\nAm I hearing voices?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ...Whoops! You can't see us?#W\nThat's terribly rude of us!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ...Whoops! You can't see us?{WAIT_PRESS}\nThat's terribly rude of us!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_ENTITIES(-1, 1), { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -3079,7 +3079,7 @@ static const struct ScriptCommand s_gs9_g28_s0_lives0_dlg0[] = { /* 0x81a7c70 */ CALL_SCRIPT(SHOCK_FUNC), { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, WAIT(30), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Hello. $n4 here.") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Hello. {NAME_4} here.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh! Papa!") }, @@ -3088,12 +3088,12 @@ static const struct ScriptCommand s_gs9_g28_s0_lives0_dlg0[] = { /* 0x81a7c70 */ { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" $n2!\nYou had us worried!\nYou're not hurt?") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" {NAME_2}!\nYou had us worried!\nYou're not hurt?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Nope!\nIt was scary, but I'm all right.#W\nIt's all thanks to $n0's team.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Nope!\nIt was scary, but I'm all right.{WAIT_PRESS}\nIt's all thanks to {NAME_0}'s team.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -3108,11 +3108,11 @@ static const struct ScriptCommand s_gs9_g28_s0_lives0_dlg0[] = { /* 0x81a7c70 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" If you want to thank\nanyone, thank our $n3 friends.")), + VARIANT(/* == */ 1, _(" If you want to thank\nanyone, thank our {NAME_3} friends.")), VARIANT(/* == */ 1, _(" We couldn't have done this\nrescue on our own, right?")), - VARIANT(/* == */ 3, _(" Please thank our\n$n3 friends.")), + VARIANT(/* == */ 3, _(" Please thank our\n{NAME_3} friends.")), VARIANT(/* == */ 3, _(" We couldn't have done this\nrescue by ourselves.")), - VARIANT_DEFAULT(_(" You should be thanking our\n$n3 friends.")), + VARIANT_DEFAULT(_(" You should be thanking our\n{NAME_3} friends.")), VARIANT_DEFAULT(_(" This rescue was impossible\nfor us to do on our own.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -3126,8 +3126,8 @@ static const struct ScriptCommand s_gs9_g28_s0_lives0_dlg0[] = { /* 0x81a7c70 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" NO, NO.#W\nIT WAS THE ONLY THING TO DO.#W\nAND...") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" HOW BOTH OUR EVOLVED\nFORMS ARE JOINED TRIOS...#W\nI FELT A CERTAIN KINSHIP.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" NO, NO.{WAIT_PRESS}\nIT WAS THE ONLY THING TO DO.{WAIT_PRESS}\nAND...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" HOW BOTH OUR EVOLVED\nFORMS ARE JOINED TRIOS...{WAIT_PRESS}\nI FELT A CERTAIN KINSHIP.") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" AFTER ALL, POKéMON MUST\nHELP EACH OTHER.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -3140,13 +3140,13 @@ static const struct ScriptCommand s_gs9_g28_s0_lives0_dlg0[] = { /* 0x81a7c70 */ { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x0f, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" We must be going.\n$n0.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" We must be going.\n{NAME_0}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n1.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" {NAME_1}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, @@ -3192,16 +3192,16 @@ static const struct ScriptCommand s_gs9_g28_s0_lives0_dlg0[] = { /* 0x81a7c70 */ WAIT(10), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Listen, um...#W\nHow would you like to join us?")), - VARIANT(/* == */ 3, _(" Um...#W\nWould you like to join our team?")), - VARIANT_DEFAULT(_(" Uh...#W\nWould you like to join our team?")), + VARIANT(/* == */ 1, _(" Listen, um...{WAIT_PRESS}\nHow would you like to join us?")), + VARIANT(/* == */ 3, _(" Um...{WAIT_PRESS}\nWould you like to join our team?")), + VARIANT_DEFAULT(_(" Uh...{WAIT_PRESS}\nWould you like to join our team?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" JOIN YOUR TEAM?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yes.#W\nWe couldn't have done the last job\nif you weren't around, $n3.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yes.{WAIT_PRESS}\nWe couldn't have done the last job\nif you weren't around, {NAME_3}.") }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I thought we would need\nmore help for doing rescues in the future.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -3211,8 +3211,8 @@ static const struct ScriptCommand s_gs9_g28_s0_lives0_dlg0[] = { /* 0x81a7c70 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0001, 0x00000000, 0x00000000, NULL }, ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), - VARIANT(/* == */ 1, _(" Hey, $n0.\nYou think so too, right?")), - VARIANT_DEFAULT(_(" $n0, don't you\nthink so too?")), + VARIANT(/* == */ 1, _(" Hey, {NAME_0}.\nYou think so too, right?")), + VARIANT_DEFAULT(_(" {NAME_0}, don't you\nthink so too?")), CHOICE(/* label */ 27, _("Yes! More members needed!")), CHOICE(/* label */ 28, _("We don't need any help.")), LABEL(28), /* = 0x1c */ @@ -3243,22 +3243,22 @@ static const struct ScriptCommand s_gs9_g28_s0_lives0_dlg0[] = { /* 0x81a7c70 */ { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" But we couldn't have saved\nDiglett by ourselves, right?")), - VARIANT(/* == */ 1, _(" If the $n3 pair\nweren't there to airlift Diglett out,\nwe would've been stuck.")), - VARIANT(/* == */ 1, _(" Or, are you trying to tell\nme that you could've pulled off that\nrescue yourself, $n0?")), + VARIANT(/* == */ 1, _(" If the {NAME_3} pair\nweren't there to airlift Diglett out,\nwe would've been stuck.")), + VARIANT(/* == */ 1, _(" Or, are you trying to tell\nme that you could've pulled off that\nrescue yourself, {NAME_0}?")), VARIANT(/* == */ 3, _(" But we couldn't have\nrescued Diglett on our own.")), - VARIANT(/* == */ 3, _(" If it weren't for the two\n$n3 to fly Diglett out, we\nwould have been stuck.")), - VARIANT(/* == */ 3, _(" Or, $n0, are you\nsaying that you could have done that\nrescue?")), + VARIANT(/* == */ 3, _(" If it weren't for the two\n{NAME_3} to fly Diglett out, we\nwould have been stuck.")), + VARIANT(/* == */ 3, _(" Or, {NAME_0}, are you\nsaying that you could have done that\nrescue?")), VARIANT_DEFAULT(_(" But, you know, we couldn't\nhave rescued Diglett just by ourselves.")), - VARIANT_DEFAULT(_(" If it weren't for the two\n$n3 that flew Diglett out,\nwe would have been helpless.")), - VARIANT_DEFAULT(_(" Or, $n0, you're\nsaying that you could have done that\nrescue by yourself?")), + VARIANT_DEFAULT(_(" If it weren't for the two\n{NAME_3} that flew Diglett out,\nwe would have been helpless.")), + VARIANT_DEFAULT(_(" Or, {NAME_0}, you're\nsaying that you could have done that\nrescue by yourself?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), - VARIANT(/* == */ 1, _(" $n0, do you have\na special ability that'd let you do that?")), - VARIANT(/* == */ 3, _(" Do you have some special\nability that would make you say that,\n$n0?")), - VARIANT_DEFAULT(_(" $n0, do you have\nsome special ability that would let\nyou do that?")), + VARIANT(/* == */ 1, _(" {NAME_0}, do you have\na special ability that'd let you do that?")), + VARIANT(/* == */ 3, _(" Do you have some special\nability that would make you say that,\n{NAME_0}?")), + VARIANT_DEFAULT(_(" {NAME_0}, do you have\nsome special ability that would let\nyou do that?")), CHOICE(/* label */ 32, _("My body stretches.")), CHOICE(/* label */ 32, _("I can fly.")), LABEL(32), /* = 0x20 */ @@ -3267,8 +3267,8 @@ static const struct ScriptCommand s_gs9_g28_s0_lives0_dlg0[] = { /* 0x81a7c70 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), - VARIANT(/* == */ 1, _(" Really? You're serious?#W\n...So how about showing me?")), - VARIANT_DEFAULT(_(" Oh, really?!#W\n...Can you show us?")), + VARIANT(/* == */ 1, _(" Really? You're serious?{WAIT_PRESS}\n...So how about showing me?")), + VARIANT_DEFAULT(_(" Oh, really?!{WAIT_PRESS}\n...Can you show us?")), CHOICE(/* label */ 33, _("Sorry, I can't...")), CHOICE(/* label */ 33, _("I just can't...")), LABEL(33), /* = 0x21 */ @@ -3304,7 +3304,7 @@ static const struct ScriptCommand s_gs9_g28_s0_lives0_dlg0[] = { /* 0x81a7c70 */ WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0003, 0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" RESCUE TEAM...#W\nTHAT SOUNDS FUN! BZZ BZZ BZZ!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" RESCUE TEAM...{WAIT_PRESS}\nTHAT SOUNDS FUN! BZZ BZZ BZZ!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -3321,7 +3321,7 @@ static const struct ScriptCommand s_gs9_g28_s0_lives0_dlg0[] = { /* 0x81a7c70 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" OH...\nTHERE ISN'T...") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" TOO BAD.#W\nSORRY, BUT WE CAN'T JOIN YOU.#W\nSEE YOU! BZZ BZZ BZZ!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" TOO BAD.{WAIT_PRESS}\nSORRY, BUT WE CAN'T JOIN YOU.{WAIT_PRESS}\nSEE YOU! BZZ BZZ BZZ!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -3344,24 +3344,24 @@ static const struct ScriptCommand s_gs9_g28_s0_lives0_dlg0[] = { /* 0x81a7c70 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" I know!#W\nLet's go out to #C5Pokémon Square#R\ntomorrow.")), - VARIANT(/* == */ 1, _(" There's this interesting\nshop called the #C5Wigglytuff Club#R.")), - VARIANT(/* == */ 1, _(" It wasn't open the other\nday when we went to the square.#W\nIt might be open tomorrow, though.")), - VARIANT(/* == */ 1, _(" The shop is next to\n#C5Felicity Bank#R.#W\nUsually, #C6Wigglytuff#R is there.")), + VARIANT(/* == */ 1, _(" I know!{WAIT_PRESS}\nLet's go out to {COLOR CYAN}Pokémon Square{RESET}\ntomorrow.")), + VARIANT(/* == */ 1, _(" There's this interesting\nshop called the {COLOR CYAN}Wigglytuff Club{RESET}.")), + VARIANT(/* == */ 1, _(" It wasn't open the other\nday when we went to the square.{WAIT_PRESS}\nIt might be open tomorrow, though.")), + VARIANT(/* == */ 1, _(" The shop is next to\n{COLOR CYAN}Felicity Bank{RESET}.{WAIT_PRESS}\nUsually, {COLOR YELLOW}Wigglytuff{RESET} is there.")), VARIANT(/* == */ 1, _(" We might be able to get\nsome useful information there.")), - VARIANT(/* == */ 1, _(" All right, so that's what\nwe'll do tomorrow.#W\nWe'll go down to Pokémon Square.")), - VARIANT(/* == */ 3, _(" Oh, I know!#W\nWe should go out to #C5Pokémon Square#R\ntomorrow.")), - VARIANT(/* == */ 3, _(" There's an interesting\nshop called the #C5Wigglytuff Club#R.")), - VARIANT(/* == */ 3, _(" There wasn't anyone when\nwe went to the square the other day.#W\nIt might be open tomorrow, though.")), - VARIANT(/* == */ 3, _(" The shop is beside\n#C5Felicity Bank#R.#W\n#C6Wigglytuff#R is usually there.")), + VARIANT(/* == */ 1, _(" All right, so that's what\nwe'll do tomorrow.{WAIT_PRESS}\nWe'll go down to Pokémon Square.")), + VARIANT(/* == */ 3, _(" Oh, I know!{WAIT_PRESS}\nWe should go out to {COLOR CYAN}Pokémon Square{RESET}\ntomorrow.")), + VARIANT(/* == */ 3, _(" There's an interesting\nshop called the {COLOR CYAN}Wigglytuff Club{RESET}.")), + VARIANT(/* == */ 3, _(" There wasn't anyone when\nwe went to the square the other day.{WAIT_PRESS}\nIt might be open tomorrow, though.")), + VARIANT(/* == */ 3, _(" The shop is beside\n{COLOR CYAN}Felicity Bank{RESET}.{WAIT_PRESS}\n{COLOR YELLOW}Wigglytuff{RESET} is usually there.")), VARIANT(/* == */ 3, _(" We might get some useful\ninformation there.")), - VARIANT(/* == */ 3, _(" So that's tomorrow.#W\nWe'll go to Pokémon Square!")), - VARIANT_DEFAULT(_(" I know!#W\nLet's go out to #C5Pokémon Square#R\ntomorrow.")), - VARIANT_DEFAULT(_(" There's an interesting\nplace called the #C5Wigglytuff Club#R.")), - VARIANT_DEFAULT(_(" It wasn't open the other\nday when we went to the square.#W\nIt should be open tomorrow, though.")), - VARIANT_DEFAULT(_(" It's next door to \n#C5Felicity Bank#R.#W\n#C6Wigglytuff#R is usually there every day.")), + VARIANT(/* == */ 3, _(" So that's tomorrow.{WAIT_PRESS}\nWe'll go to Pokémon Square!")), + VARIANT_DEFAULT(_(" I know!{WAIT_PRESS}\nLet's go out to {COLOR CYAN}Pokémon Square{RESET}\ntomorrow.")), + VARIANT_DEFAULT(_(" There's an interesting\nplace called the {COLOR CYAN}Wigglytuff Club{RESET}.")), + VARIANT_DEFAULT(_(" It wasn't open the other\nday when we went to the square.{WAIT_PRESS}\nIt should be open tomorrow, though.")), + VARIANT_DEFAULT(_(" It's next door to \n{COLOR CYAN}Felicity Bank{RESET}.{WAIT_PRESS}\n{COLOR YELLOW}Wigglytuff{RESET} is usually there every day.")), VARIANT_DEFAULT(_(" We may be able to get\nsome information.")), - VARIANT_DEFAULT(_(" OK, that's what we'll do\ntomorrow.#W\nWe'll go to Pokémon Square.")), + VARIANT_DEFAULT(_(" OK, that's what we'll do\ntomorrow.{WAIT_PRESS}\nWe'll go to Pokémon Square.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, HALT, @@ -3675,7 +3675,7 @@ static const struct ScriptCommand s_gs9_g29_s0_lives0_dlg0[] = { /* 0x81ab6d4 */ CALL_SCRIPT(LOOK_AROUND_FUNC), { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000009, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Morning, $n0!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Morning, {NAME_0}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -3688,35 +3688,35 @@ static const struct ScriptCommand s_gs9_g29_s0_lives0_dlg0[] = { /* 0x81ab6d4 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ...Hah?#W\nYou've been having weird dreams?")), + VARIANT(/* == */ 1, _(" ...Hah?{WAIT_PRESS}\nYou've been having weird dreams?")), VARIANT(/* == */ 1, _(" What sort of weird\ndreams?")), - VARIANT_DEFAULT(_(" ...Oh?#W\nYou've been having strange dreams?")), + VARIANT_DEFAULT(_(" ...Oh?{WAIT_PRESS}\nYou've been having strange dreams?")), VARIANT_DEFAULT(_(" What was strange about\nthem?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(45), { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, WAIT(16), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 told $n1\n#+about the dreams.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0} told {NAME_1}\n{CENTER_ALIGN}about the dreams.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(16), { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" Hmmm, uh-huh...")), - VARIANT(/* == */ 1, _(" $n0, you said\nyou're really a human, right?")), + VARIANT(/* == */ 1, _(" {NAME_0}, you said\nyou're really a human, right?")), VARIANT(/* == */ 1, _(" So I was thinking...")), VARIANT(/* == */ 1, _(" Maybe those dreams have\nsomething to do with how you became\na Pokémon?")), VARIANT_DEFAULT(_(" Hmmm, OK...")), - VARIANT_DEFAULT(_(" $n0, you said\nyou're actually a human, right?")), + VARIANT_DEFAULT(_(" {NAME_0}, you said\nyou're actually a human, right?")), VARIANT_DEFAULT(_(" So maybe...")), - VARIANT_DEFAULT(_(" Those dreams have some\nconnection to how you became a Pokémon,\n$n0.")), + VARIANT_DEFAULT(_(" Those dreams have some\nconnection to how you became a Pokémon,\n{NAME_0}.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" So let me ask you,\n$n0.\nWhat are you thinking?")), + VARIANT(/* == */ 1, _(" So let me ask you,\n{NAME_0}.\nWhat are you thinking?")), VARIANT(/* == */ 1, _(" Do you want to go back to\nbeing a human?")), - VARIANT_DEFAULT(_(" By the way, $n0.\nWhat do you want to do?")), + VARIANT_DEFAULT(_(" By the way, {NAME_0}.\nWhat do you want to do?")), VARIANT_DEFAULT(_(" Do you want to turn back\ninto a human?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(16), @@ -3741,8 +3741,8 @@ static const struct ScriptCommand s_gs9_g29_s0_lives0_dlg0[] = { /* 0x81ab6d4 */ VARIANT_DEFAULT(_(" Since you were a human to\nbegin with, it's only natural that you\nwould want to go back to being one.")), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" So, tell me.\nWhat sort of a human being were you,\n$n0?")), - VARIANT_DEFAULT(_(" Anyway, when you were\na human, what kind of person were you,\n$n0?")), + VARIANT(/* == */ 1, _(" So, tell me.\nWhat sort of a human being were you,\n{NAME_0}?")), + VARIANT_DEFAULT(_(" Anyway, when you were\na human, what kind of person were you,\n{NAME_0}?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0000, 0x00000004, 0x00000000, NULL }, @@ -3752,20 +3752,20 @@ static const struct ScriptCommand s_gs9_g29_s0_lives0_dlg0[] = { /* 0x81ab6d4 */ CALL_SCRIPT(SWEAT_FUNC), { 0xe2, 0x00, 0x01d6, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0000, 0x00000005, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(............#W\nNope. I can't remember a thing...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(............{WAIT_PRESS}\nNope. I can't remember a thing...)") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" Oh, wow.\nSo you forgot everything?")), VARIANT(/* == */ 1, _(" Well, that's all right.\nYou can take your time remembering.")), - VARIANT(/* == */ 1, _(" But you know,\n$n0? I'm positive that you\nwere a good human being.")), + VARIANT(/* == */ 1, _(" But you know,\n{NAME_0}? I'm positive that you\nwere a good human being.")), VARIANT(/* == */ 3, _(" Oh, no, you've forgotten?")), VARIANT(/* == */ 3, _(" It's OK.\nThere's no rush to remember.")), - VARIANT(/* == */ 3, _(" But, $n0?\nI can't picture you as anything but\na good human.")), + VARIANT(/* == */ 3, _(" But, {NAME_0}?\nI can't picture you as anything but\na good human.")), VARIANT_DEFAULT(_(" Oh, wow, you've forgotten?")), VARIANT_DEFAULT(_(" That's OK.\nThere's no rush to remember anything.")), - VARIANT_DEFAULT(_(" But this is you,\n$n0. I'm sure you were a good\nhuman being.")), + VARIANT_DEFAULT(_(" But this is you,\n{NAME_0}. I'm sure you were a good\nhuman being.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), JUMP_LABEL(9), @@ -3884,7 +3884,7 @@ static const struct ScriptCommand s_gs9_g30_s0_lives0_dlg0[] = { /* 0x81acd04 */ VARIANT_DEFAULT(_(" Good morning!\nLet's do good again today!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Is this the place?\nWhere that team named #C5$t#R\nis based?") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Is this the place?\nWhere that team named {COLOR CYAN}{TEAM_NAME}{RESET}\nis based?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, BGM_FADEOUT(60), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -3920,7 +3920,7 @@ static const struct ScriptCommand s_gs9_g30_s0_lives0_dlg0[] = { /* 0x81acd04 */ WAIT(10), { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0004, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Oh!#W\nOver there. A Mailbox〜♪") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Oh!{WAIT_PRESS}\nOver there. A Mailbox〜♪") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -3962,11 +3962,11 @@ static const struct ScriptCommand s_gs9_g30_s0_lives0_dlg0[] = { /* 0x81acd04 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0e, 0x0001, 0x00000003, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey!#W\nThose rescue jobs were meant for us!")), + VARIANT(/* == */ 1, _(" Hey!{WAIT_PRESS}\nThose rescue jobs were meant for us!")), VARIANT(/* == */ 1, _(" Don't butt in!")), - VARIANT(/* == */ 3, _(" Wait a second!#W\nThose belong to us!")), + VARIANT(/* == */ 3, _(" Wait a second!{WAIT_PRESS}\nThose belong to us!")), VARIANT(/* == */ 3, _(" Don't butt in!")), - VARIANT_DEFAULT(_(" Stop!#W\nThose were meant for us!")), + VARIANT_DEFAULT(_(" Stop!{WAIT_PRESS}\nThose were meant for us!")), VARIANT_DEFAULT(_(" Don't butt in!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -3975,7 +3975,7 @@ static const struct ScriptCommand s_gs9_g30_s0_lives0_dlg0[] = { /* 0x81acd04 */ { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Keh!#W\nIt doesn't matter who does it!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Keh!{WAIT_PRESS}\nIt doesn't matter who does it!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x02, 0x0004, 0x00000043, 0x00000000, NULL }, @@ -3984,7 +3984,7 @@ static const struct ScriptCommand s_gs9_g30_s0_lives0_dlg0[] = { /* 0x81acd04 */ WAIT(10), { 0x2e, 0x03, 0x0003, 0x00000042, 0x00000000, NULL }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...But all we ever get up\nto is no good.") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wanna know how it works?#W\nIf we have the cover of a rescue team,\nwe can get away with so much more!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wanna know how it works?{WAIT_PRESS}\nIf we have the cover of a rescue team,\nwe can get away with so much more!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x02, 0x0004, 0x00000043, 0x00000000, NULL }, @@ -3993,7 +3993,7 @@ static const struct ScriptCommand s_gs9_g30_s0_lives0_dlg0[] = { /* 0x81acd04 */ WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0e, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wha...#W\nWorld domination?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wha...{WAIT_PRESS}\nWorld domination?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -4002,7 +4002,7 @@ static const struct ScriptCommand s_gs9_g30_s0_lives0_dlg0[] = { /* 0x81acd04 */ { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh!\nYou heard right!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That's why we're raking in\nthe cash and adding to our gang!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The world will be ours!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The rescue team of evil!\nTeam #C5Meanies#R is who we are!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The rescue team of evil!\nTeam {COLOR CYAN}Meanies{RESET} is who we are!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" See you around!\nKekeh!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, BGM_FADEOUT(60), @@ -4023,9 +4023,9 @@ static const struct ScriptCommand s_gs9_g30_s0_lives0_dlg0[] = { /* 0x81acd04 */ WAIT(30), { 0x2e, 0x15, 0x0001, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ...They took off.#W\nWhat a bunch of creeps.")), - VARIANT(/* == */ 3, _(" ...They're gone.#W\nWhat a horrible bunch.")), - VARIANT_DEFAULT(_(" ...They took off.#W\nWhat an unbelievable bunch.")), + VARIANT(/* == */ 1, _(" ...They took off.{WAIT_PRESS}\nWhat a bunch of creeps.")), + VARIANT(/* == */ 3, _(" ...They're gone.{WAIT_PRESS}\nWhat a horrible bunch.")), + VARIANT_DEFAULT(_(" ...They took off.{WAIT_PRESS}\nWhat an unbelievable bunch.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -4334,12 +4334,12 @@ static const struct ScriptCommand s_gs9_g31_s0_lives0_dlg0[] = { /* 0x81aee18 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Morning, $n0!\nLet's keep up our good work today!")), + VARIANT(/* == */ 1, _(" Morning, {NAME_0}!\nLet's keep up our good work today!")), VARIANT_DEFAULT(_("")), - VARIANT_DEFAULT(_(" Good morning, $n0!\nLet's do good again today!")), + VARIANT_DEFAULT(_(" Good morning, {NAME_0}!\nLet's do good again today!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" $n0!\n$n1!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" {NAME_0}!\n{NAME_1}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -4362,14 +4362,14 @@ static const struct ScriptCommand s_gs9_g31_s0_lives0_dlg0[] = { /* 0x81aee18 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0e, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Oh, if it isn't $n5!\nLong time no see!")), - VARIANT_DEFAULT(_(" Oh, $n5?\nHow have you been?")), + VARIANT(/* == */ 1, _(" Oh, if it isn't {NAME_5}!\nLong time no see!")), + VARIANT_DEFAULT(_(" Oh, {NAME_5}?\nHow have you been?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Please!#W\nPlease help my friend!") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Please!{WAIT_PRESS}\nPlease help my friend!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, @@ -4412,9 +4412,9 @@ static const struct ScriptCommand s_gs9_g31_s0_lives0_dlg0[] = { /* 0x81aee18 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000003, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey!\n$n5 came to us for help!")), - VARIANT(/* == */ 3, _(" Wait a second!\n$n5 was asking us to help!")), - VARIANT_DEFAULT(_(" Hold on!\n$n5 came to us for help!")), + VARIANT(/* == */ 1, _(" Hey!\n{NAME_5} came to us for help!")), + VARIANT(/* == */ 3, _(" Wait a second!\n{NAME_5} was asking us to help!")), + VARIANT_DEFAULT(_(" Hold on!\n{NAME_5} came to us for help!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, @@ -4435,12 +4435,12 @@ static const struct ScriptCommand s_gs9_g31_s0_lives0_dlg0[] = { /* 0x81aee18 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Listen, $n5.\nHow about we do this?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Listen, {NAME_5}.\nHow about we do this?") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" How about you give the\nreward to the team that brings back your\nchum first?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x0f, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" But I...#W\nI don't have any money...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" But I...{WAIT_PRESS}\nI don't have any money...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, @@ -4451,16 +4451,16 @@ static const struct ScriptCommand s_gs9_g31_s0_lives0_dlg0[] = { /* 0x81aee18 */ { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh, yeah.#W\nYou can even join our team.\nThere's an offer you can't refuse.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh, yeah.{WAIT_PRESS}\nYou can even join our team.\nThere's an offer you can't refuse.") }, { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" When you join us, \n$n5, we'll let you be a big wheel\nin Team #C5Meanies#R, kekekeke!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" When you join us, \n{NAME_5}, we'll let you be a big wheel\nin Team {COLOR CYAN}Meanies{RESET}, kekekeke!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That's the deal,\n$n1.\nThe first to rescue wins!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That's the deal,\n{NAME_1}.\nThe first to rescue wins!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -4497,8 +4497,8 @@ static const struct ScriptCommand s_gs9_g31_s0_lives0_dlg0[] = { /* 0x81aee18 */ { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0!#W\nLet's roll, and quick!")), - VARIANT_DEFAULT(_(" $n0!#W\nLet's get going!")), + VARIANT(/* == */ 1, _(" {NAME_0}!{WAIT_PRESS}\nLet's roll, and quick!")), + VARIANT_DEFAULT(_(" {NAME_0}!{WAIT_PRESS}\nLet's get going!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, @@ -4680,9 +4680,9 @@ static const struct ScriptCommand s_gs9_g32_s0_lives0_dlg2[] = { /* 0x81b0818 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...What should I do?#W\nI don't have any money, and...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I don't want to join those\n#C5Meanies#R...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Please, $n0,\nhelp us...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...What should I do?{WAIT_PRESS}\nI don't have any money, and...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I don't want to join those\n{COLOR CYAN}Meanies{RESET}...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Please, {NAME_0},\nhelp us...") }, JUMP_SCRIPT(END_TALK), }; @@ -4711,9 +4711,9 @@ static const struct ScriptCommand s_gs9_g33_s0_lives0_dlg0[] = { /* 0x81b0a00 */ { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Morning, $n0.")), + VARIANT(/* == */ 1, _(" Morning, {NAME_0}.")), VARIANT(/* == */ 1, _(" We bungled it yesterday.\nWe've got to get it right today.")), - VARIANT_DEFAULT(_(" Good morning, $n0.")), + VARIANT_DEFAULT(_(" Good morning, {NAME_0}.")), VARIANT_DEFAULT(_(" We came up short\nyesterday, so let's be sure to do things\nright today.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, @@ -4756,20 +4756,20 @@ static const struct ScriptCommand s_gs9_g34_s0_lives0_dlg0[] = { /* 0x81b0c98 */ { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0e, 0x0002, 0x00000042, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This is great!\nWelcome back, $n3!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This is great!\nWelcome back, {NAME_3}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Thank you, $n2!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Thank you, {NAME_2}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(16), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And thank you,\n$n1 and $n0!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And thank you,\n{NAME_1} and {NAME_0}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -4791,12 +4791,12 @@ static const struct ScriptCommand s_gs9_g34_s0_lives0_dlg0[] = { /* 0x81b0c98 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" It's just great to see\nthat $n3 is back safe and sound.")), - VARIANT_DEFAULT(_(" We're happy to see that\n$n3 is back safe and sound.")), + VARIANT(/* == */ 1, _(" It's just great to see\nthat {NAME_3} is back safe and sound.")), + VARIANT_DEFAULT(_(" We're happy to see that\n{NAME_3} is back safe and sound.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#W\nCool...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}\nCool...") }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You're even more cool\nthan I thought!") }, @@ -4818,11 +4818,11 @@ static const struct ScriptCommand s_gs9_g34_s0_lives0_dlg0[] = { /* 0x81b0c98 */ { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0, how about we\ndo something right here?")), + VARIANT(/* == */ 1, _(" {NAME_0}, how about we\ndo something right here?")), VARIANT(/* == */ 1, _(" Why don't we make\na properly impressive rescue team base?")), - VARIANT(/* == */ 3, _(" $n0, why don't\nwe do something right here??")), + VARIANT(/* == */ 3, _(" {NAME_0}, why don't\nwe do something right here??")), VARIANT(/* == */ 3, _(" We should make a proper\nrescue team base here.\nSomething impressive.")), - VARIANT_DEFAULT(_(" $n0, we should\ndo something with this place.")), + VARIANT_DEFAULT(_(" {NAME_0}, we should\ndo something with this place.")), VARIANT_DEFAULT(_(" We should make a proper\nrescue team base here.\nSomething impressive.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), @@ -4876,7 +4876,7 @@ static const struct ScriptCommand s_gs9_g34_s0_lives0_dlg0[] = { /* 0x81b0c98 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, { 0x2e, 0x15, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" $n0 and\n$n1, thank you again!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" {NAME_0} and\n{NAME_1}, thank you again!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, @@ -4910,7 +4910,7 @@ static const struct ScriptCommand s_gs9_g34_s0_lives0_dlg0[] = { /* 0x81b0c98 */ { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" I'm just beat today.\nLet's keep up our good work tomorrow!\nSee you!")), - VARIANT_DEFAULT(_(" That was a tiring day.#W\nLet's do some more good tomorrow!\nSee you!")), + VARIANT_DEFAULT(_(" That was a tiring day.{WAIT_PRESS}\nLet's do some more good tomorrow!\nSee you!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -5073,8 +5073,8 @@ static const struct ScriptCommand s_gs9_g35_s0_lives0_dlg0[] = { /* 0x81b2540 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0, morning!\nLet's keep up our good work today!")), - VARIANT_DEFAULT(_(" $n0, good morning!\nLet's do good again today!")), + VARIANT(/* == */ 1, _(" {NAME_0}, morning!\nLet's keep up our good work today!")), + VARIANT_DEFAULT(_(" {NAME_0}, good morning!\nLet's do good again today!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Umm... Hello?") }, @@ -5091,10 +5091,10 @@ static const struct ScriptCommand s_gs9_g35_s0_lives0_dlg0[] = { /* 0x81b2540 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Umm... Is rescue team\n#C5$t#R here?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Umm... Is rescue team\n{COLOR CYAN}{TEAM_NAME}{RESET} here?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" That's right...#W Huh?#W\nWait, aren't you...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" That's right...{WAIT_PRESS} Huh?{WAIT_PRESS}\nWait, aren't you...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, HALT, @@ -5165,16 +5165,16 @@ static const struct ScriptCommand s_gs9_g36_s0_lives0_dlg0[] = { /* 0x81b2ab0 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" I remember now!#W\nYou're the $n2 in Pokémon\nSquare.")), - VARIANT(/* == */ 1, _(" We saw $n3's\nteam accepting your rescue job.")), - VARIANT(/* == */ 3, _(" I remember!#W\nYou're the $n2 in Pokémon\nSquare.")), - VARIANT(/* == */ 3, _(" We saw $n3\nagreeing to do your rescue job.")), - VARIANT_DEFAULT(_(" I remember now!#W\n$n2, we saw you in Pokémon\nSquare.")), - VARIANT_DEFAULT(_(" We watched $n3\nagreeing to take on your rescue job.")), + VARIANT(/* == */ 1, _(" I remember now!{WAIT_PRESS}\nYou're the {NAME_2} in Pokémon\nSquare.")), + VARIANT(/* == */ 1, _(" We saw {NAME_3}'s\nteam accepting your rescue job.")), + VARIANT(/* == */ 3, _(" I remember!{WAIT_PRESS}\nYou're the {NAME_2} in Pokémon\nSquare.")), + VARIANT(/* == */ 3, _(" We saw {NAME_3}\nagreeing to do your rescue job.")), + VARIANT_DEFAULT(_(" I remember now!{WAIT_PRESS}\n{NAME_2}, we saw you in Pokémon\nSquare.")), + VARIANT_DEFAULT(_(" We watched {NAME_3}\nagreeing to take on your rescue job.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x02, 0x0002, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.#W\nBut, $n3...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.{WAIT_PRESS}\nBut, {NAME_3}...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" He hasn't come back yet\nfrom the rescue mission.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(455), @@ -5186,8 +5186,8 @@ static const struct ScriptCommand s_gs9_g36_s0_lives0_dlg0[] = { /* 0x81b2ab0 */ { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Are you serious?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Our friend $n2 got\nwedged between some rocks.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We $n2 can go\nanywhere if we can catch a wind, but...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Our friend {NAME_2} got\nwedged between some rocks.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We {NAME_2} can go\nanywhere if we can catch a wind, but...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Even though the skies are\nfilled with thunderclouds, for some\nodd reason, the winds haven't blown.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -5195,19 +5195,19 @@ static const struct ScriptCommand s_gs9_g36_s0_lives0_dlg0[] = { /* 0x81b2ab0 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Not even a breeze?#W\nThat is strange...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Not even a breeze?{WAIT_PRESS}\nThat is strange...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n3's leafy fans\ncan whip up powerful winds.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We thought $n3's\nwind would be able to dislodge our friend,\nbut...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" {NAME_3}'s leafy fans\ncan whip up powerful winds.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We thought {NAME_3}'s\nwind would be able to dislodge our friend,\nbut...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" But $n3 hasn't\ncome back...")), - VARIANT(/* == */ 1, _(" It doesn't sound like that\ntough of a rescue...#W\nThat is weird...")), - VARIANT_DEFAULT(_(" But $n3 hasn't\nreturned...?")), - VARIANT_DEFAULT(_(" It doesn't sound like all\nthat challenging of a rescue mission...#W\nIt is strange...")), + VARIANT(/* == */ 1, _(" But {NAME_3} hasn't\ncome back...")), + VARIANT(/* == */ 1, _(" It doesn't sound like that\ntough of a rescue...{WAIT_PRESS}\nThat is weird...")), + VARIANT_DEFAULT(_(" But {NAME_3} hasn't\nreturned...?")), + VARIANT_DEFAULT(_(" It doesn't sound like all\nthat challenging of a rescue mission...{WAIT_PRESS}\nIt is strange...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, BGM_FADEOUT(120), WAIT(150), @@ -5218,8 +5218,8 @@ static const struct ScriptCommand s_gs9_g36_s0_lives0_dlg0[] = { /* 0x81b2ab0 */ WAIT(40), { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Oh?#W\nThat's the spirit, $n0.#W\nYour look says you won't need to be asked.")), - VARIANT_DEFAULT(_(" Oh?#W That's the spirit,\n$n0.#W\nYour expression tells me you're ready.")), + VARIANT(/* == */ 1, _(" Oh?{WAIT_PRESS}\nThat's the spirit, {NAME_0}.{WAIT_PRESS}\nYour look says you won't need to be asked.")), + VARIANT_DEFAULT(_(" Oh?{WAIT_PRESS} That's the spirit,\n{NAME_0}.{WAIT_PRESS}\nYour expression tells me you're ready.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -5246,8 +5246,8 @@ static const struct ScriptCommand s_gs9_g36_s0_lives0_dlg0[] = { /* 0x81b2ab0 */ { 0x91, 0x04, 0x000b, 0x00000001, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Let's get to it,\n$n0!")), - VARIANT_DEFAULT(_(" Let's go, $n0!")), + VARIANT(/* == */ 1, _(" Let's get to it,\n{NAME_0}!")), + VARIANT_DEFAULT(_(" Let's go, {NAME_0}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -5324,7 +5324,7 @@ static const struct ScriptCommand s_gs9_g37_s0_lives0_dlg2[] = { /* 0x81b390c */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" My friend is stuck in\na place called #CDSilent Chasm#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" My friend is stuck in\na place called {COLOR YELLOW_D}Silent Chasm{RESET}.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I hate to burden you,\nbut you're our only hope...") }, JUMP_SCRIPT(END_TALK), }; @@ -5355,8 +5355,8 @@ static const struct ScriptCommand s_gs9_g38_s0_lives0_dlg0[] = { /* 0x81b3acc */ WAIT(30), { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Morning!#W\nLet's try to get things right today!")), - VARIANT_DEFAULT(_(" Good morning!#W\nLet's do our best like always!")), + VARIANT(/* == */ 1, _(" Morning!{WAIT_PRESS}\nLet's try to get things right today!")), + VARIANT_DEFAULT(_(" Good morning!{WAIT_PRESS}\nLet's do our best like always!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -5437,8 +5437,8 @@ static const struct ScriptCommand s_gs9_g39_s0_lives0_dlg0[] = { /* 0x81b3de0 */ WAIT(20), { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" That monster...#W\nIt said it was Zapdos or something.")), - VARIANT_DEFAULT(_(" That monster...#W\nIt said it was Zapdos...")), + VARIANT(/* == */ 1, _(" That monster...{WAIT_PRESS}\nIt said it was Zapdos or something.")), + VARIANT_DEFAULT(_(" That monster...{WAIT_PRESS}\nIt said it was Zapdos...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), BGM_FADEOUT(30), @@ -5455,7 +5455,7 @@ static const struct ScriptCommand s_gs9_g39_s0_lives0_dlg0[] = { /* 0x81b3de0 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0c, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n4!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_4}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, @@ -5467,7 +5467,7 @@ static const struct ScriptCommand s_gs9_g39_s0_lives0_dlg0[] = { /* 0x81b3de0 */ { 0x91, 0x04, 0x000b, 0x00000003, 0x00000000, NULL }, BGM_SWITCH(114), { 0x2e, 0x10, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Zapdos...#W\nIt's one of the legendary bird Pokémon.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Zapdos...{WAIT_PRESS}\nIt's one of the legendary bird Pokémon.") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I heard it had been\nsleeping for a long time...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, @@ -5476,7 +5476,7 @@ static const struct ScriptCommand s_gs9_g39_s0_lives0_dlg0[] = { /* 0x81b3de0 */ WAIT(10), { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" No.#W\nShiftry's winds were only the trigger.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" No.{WAIT_PRESS}\nShiftry's winds were only the trigger.") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" To begin with, the absence\nof winds there was unnatural.") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" It must have been caused\nby the rash of natural disasters recently.") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Zapdos is enraged from\nhaving been awoken from its sleep.") }, @@ -5486,12 +5486,12 @@ static const struct ScriptCommand s_gs9_g39_s0_lives0_dlg0[] = { /* 0x81b3de0 */ { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" But Zapdos won't be easy.#W\nIts electric attacks are wicked nasty.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" But Zapdos won't be easy.{WAIT_PRESS}\nIts electric attacks are wicked nasty.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0b, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I know that.#W\nWe will need to be cautious.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I know that.{WAIT_PRESS}\nWe will need to be cautious.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -5507,8 +5507,8 @@ static const struct ScriptCommand s_gs9_g39_s0_lives0_dlg0[] = { /* 0x81b3de0 */ { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0x2e, 0x10, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" What?!#W\nThat is dangerous!") }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Zapdos is powerful.#W\nIt will be too much for your skill level.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" What?!{WAIT_PRESS}\nThat is dangerous!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Zapdos is powerful.{WAIT_PRESS}\nIt will be too much for your skill level.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -5525,8 +5525,8 @@ static const struct ScriptCommand s_gs9_g39_s0_lives0_dlg0[] = { /* 0x81b3de0 */ UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), - VARIANT(/* == */ 1, _(" And we're not afraid of no\nZapdos!#W\nIsn't that right, $n0?!")), - VARIANT_DEFAULT(_(" Besides, Zapdos doesn't\nscare us.#W\nRight, $n0?")), + VARIANT(/* == */ 1, _(" And we're not afraid of no\nZapdos!{WAIT_PRESS}\nIsn't that right, {NAME_0}?!")), + VARIANT_DEFAULT(_(" Besides, Zapdos doesn't\nscare us.{WAIT_PRESS}\nRight, {NAME_0}?")), CHOICE(/* label */ 15, _("Yup! I'm not scared!")), CHOICE(/* label */ 16, _("Owowow... My stomach!")), LABEL(15), /* = 0x0f */ @@ -5579,11 +5579,11 @@ static const struct ScriptCommand s_gs9_g39_s0_lives0_dlg0[] = { /* 0x81b3de0 */ UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" No problem!#W\nMy partner always puts on this act.")), + VARIANT(/* == */ 1, _(" No problem!{WAIT_PRESS}\nMy partner always puts on this act.")), VARIANT(/* == */ 1, _(" Always faking these\nstomachaches...\nIt's a big headache, I tell you!")), - VARIANT(/* == */ 3, _(" No problem!#W\n$n0 always puts on this act.")), + VARIANT(/* == */ 3, _(" No problem!{WAIT_PRESS}\n{NAME_0} always puts on this act.")), VARIANT(/* == */ 3, _(" Always faking a\nstomachache...\nIt gets to be annoying.")), - VARIANT_DEFAULT(_(" No problem!#W\n$n0 always does this act.")), + VARIANT_DEFAULT(_(" No problem!{WAIT_PRESS}\n{NAME_0} always does this act.")), VARIANT_DEFAULT(_(" It's always a fake\nstomachache.\nIt bugs me a little.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(470), @@ -5604,7 +5604,7 @@ static const struct ScriptCommand s_gs9_g39_s0_lives0_dlg0[] = { /* 0x81b3de0 */ WAIT(120), { 0x2e, 0x10, 0x0004, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ......") }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Fine.#W\nI see that you have courage.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Fine.{WAIT_PRESS}\nI see that you have courage.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(455), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -5614,10 +5614,10 @@ static const struct ScriptCommand s_gs9_g39_s0_lives0_dlg0[] = { /* 0x81b3de0 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x10, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Our two teams should make\nour ways separately through #CDMt. Thunder#R.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Our two teams should make\nour ways separately through {COLOR YELLOW_D}Mt. Thunder{RESET}.") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" We will go when we have\ngeared up for battle.") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Knowing how strong our\nopponent is, we have no choice but to\nbe cautious.") }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You should make way for\n#CDMt. Thunder#R only when you are fully\nprepared.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You should make way for\n{COLOR YELLOW_D}Mt. Thunder{RESET} only when you are fully\nprepared.") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Our objective is to rescue\nShiftry!\nLet us find success!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -5633,9 +5633,9 @@ static const struct ScriptCommand s_gs9_g39_s0_lives0_dlg0[] = { /* 0x81b3de0 */ { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0!\nLet's give it our best, partner!")), - VARIANT(/* == */ 3, _(" $n0!\nLet's do good!")), - VARIANT_DEFAULT(_(" $n0!\nLet's do our best!")), + VARIANT(/* == */ 1, _(" {NAME_0}!\nLet's give it our best, partner!")), + VARIANT(/* == */ 3, _(" {NAME_0}!\nLet's do good!")), + VARIANT_DEFAULT(_(" {NAME_0}!\nLet's do our best!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -5845,17 +5845,17 @@ static const struct ScriptCommand s_gs9_g40_s0_lives0_dlg0[] = { /* 0x81b603c */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Morning, $n0!\nGet a good night's sleep?")), - VARIANT_DEFAULT(_(" Good morning, $n0!\nDid you sleep well?")), + VARIANT(/* == */ 1, _(" Morning, {NAME_0}!\nGet a good night's sleep?")), + VARIANT_DEFAULT(_(" Good morning, {NAME_0}!\nDid you sleep well?")), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" So now...#W\nWe're supposed to be rescuing Shiftry at\n#CDMt. Thunder#R, right?")), + VARIANT(/* == */ 1, _(" So now...{WAIT_PRESS}\nWe're supposed to be rescuing Shiftry at\n{COLOR YELLOW_D}Mt. Thunder{RESET}, right?")), VARIANT(/* == */ 1, _(" But Alakazam said we should\nbe prepared before going...")), - VARIANT(/* == */ 1, _(" What do you think?#W\nWe can go off to #CDMt. Thunder#R right away,\nor we can put it off. It's your choice.")), + VARIANT(/* == */ 1, _(" What do you think?{WAIT_PRESS}\nWe can go off to {COLOR YELLOW_D}Mt. Thunder{RESET} right away,\nor we can put it off. It's your choice.")), VARIANT(/* == */ 1, _(" But whatever we do today,\nlet's give it our best like always!")), - VARIANT_DEFAULT(_(" OK...#W\nWe should be heading to #CDMt. Thunder#R to\ndo the Shiftry rescue, right?")), + VARIANT_DEFAULT(_(" OK...{WAIT_PRESS}\nWe should be heading to {COLOR YELLOW_D}Mt. Thunder{RESET} to\ndo the Shiftry rescue, right?")), VARIANT_DEFAULT(_(" But Alakazam said that we\nshould be properly prepared before we\ntry...")), - VARIANT_DEFAULT(_(" What should we do?#W\nWe can go to #CDMt. Thunder#R right now\nor later. It's up to you.")), + VARIANT_DEFAULT(_(" What should we do?{WAIT_PRESS}\nWe can go to {COLOR YELLOW_D}Mt. Thunder{RESET} right now\nor later. It's up to you.")), VARIANT_DEFAULT(_(" But anyway, let's do our\nbest like always!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, @@ -5910,8 +5910,8 @@ static const struct ScriptCommand s_gs9_g42_s0_lives0_dlg0[] = { /* 0x81b6630 */ WAIT(30), { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Morning!#W\nLet's keep giving it our best!")), - VARIANT_DEFAULT(_(" Good morning!#W\nLet's do our best like always!")), + VARIANT(/* == */ 1, _(" Morning!{WAIT_PRESS}\nLet's keep giving it our best!")), + VARIANT_DEFAULT(_(" Good morning!{WAIT_PRESS}\nLet's do our best like always!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -5967,14 +5967,14 @@ static const struct ScriptCommand s_gs9_g43_s0_lives0_dlg0[] = { /* 0x81b690c */ CALL_SCRIPT(LOOK_AROUND_FUNC), { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0, morning!")), + VARIANT(/* == */ 1, _(" {NAME_0}, morning!")), VARIANT(/* == */ 1, _(" I did a little checking\naround yesterday.")), - VARIANT(/* == */ 1, _(" The #C5Hill of the Ancients#R\nis in the #CDGreat Canyon#R.")), - VARIANT(/* == */ 1, _(" So let's roll!\nOff we go to the #CDGreat Canyon#R!")), - VARIANT_DEFAULT(_(" $n0, good morning!")), + VARIANT(/* == */ 1, _(" The {COLOR CYAN}Hill of the Ancients{RESET}\nis in the {COLOR YELLOW_D}Great Canyon{RESET}.")), + VARIANT(/* == */ 1, _(" So let's roll!\nOff we go to the {COLOR YELLOW_D}Great Canyon{RESET}!")), + VARIANT_DEFAULT(_(" {NAME_0}, good morning!")), VARIANT_DEFAULT(_(" Yesterday, I did some\nchecking around.")), - VARIANT_DEFAULT(_(" It turns out that the\n#C5Hill of the Ancients#R is apparently in\nthe #CDGreat Canyon#R.")), - VARIANT_DEFAULT(_(" We should go there right\naway!\nOff to the #CDGreat Canyon#R!")), + VARIANT_DEFAULT(_(" It turns out that the\n{COLOR CYAN}Hill of the Ancients{RESET} is apparently in\nthe {COLOR YELLOW_D}Great Canyon{RESET}.")), + VARIANT_DEFAULT(_(" We should go there right\naway!\nOff to the {COLOR YELLOW_D}Great Canyon{RESET}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, @@ -5985,7 +5985,7 @@ static const struct ScriptCommand s_gs9_g43_s0_lives0_dlg0[] = { /* 0x81b690c */ ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), VARIANT(/* == */ 1, _(" Huh? What's up with you?")), VARIANT_DEFAULT(_(" Huh? What's the matter?")), - CHOICE(/* label */ 1, _("Listen, $n1.")), + CHOICE(/* label */ 1, _("Listen, {NAME_1}.")), CHOICE(/* label */ 2, _("It's OK, it's nothing.")), LABEL(1), /* = 0x01 */ { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, @@ -6020,8 +6020,8 @@ static const struct ScriptCommand s_gs9_g43_s0_lives0_dlg0[] = { /* 0x81b690c */ LABEL(4), /* = 0x04 */ { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), - VARIANT(/* == */ 3, _(" Why...?#W\nYou need to ask me that?")), - VARIANT_DEFAULT(_(" Why...?#W\nWhat, you need to ask?")), + VARIANT(/* == */ 3, _(" Why...?{WAIT_PRESS}\nYou need to ask me that?")), + VARIANT_DEFAULT(_(" Why...?{WAIT_PRESS}\nWhat, you need to ask?")), CHOICE(/* label */ 6, _("It's not for you...")), CHOICE(/* label */ 7, _("It's for someone else...")), LABEL(6), /* = 0x06 */ @@ -6029,36 +6029,36 @@ static const struct ScriptCommand s_gs9_g43_s0_lives0_dlg0[] = { /* 0x81b690c */ MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" Well, sure.")), VARIANT(/* == */ 1, _(" It lets me try harder to do\nmy best because it's not about me.")), - VARIANT(/* == */ 1, _(" You and me--we're friends,\nright, $n0?")), + VARIANT(/* == */ 1, _(" You and me--we're friends,\nright, {NAME_0}?")), VARIANT(/* == */ 3, _(" That's why.")), VARIANT(/* == */ 3, _(" Because it's not about me,\nI can try that much harder to do my best.")), - VARIANT(/* == */ 3, _(" We're friends, aren't we,\n$n0?")), + VARIANT(/* == */ 3, _(" We're friends, aren't we,\n{NAME_0}?")), VARIANT_DEFAULT(_(" You said it.")), VARIANT_DEFAULT(_(" It lets me try harder to do\nmy best because it's not about me.")), - VARIANT_DEFAULT(_(" We're friends, aren't we,\n$n0?")), + VARIANT_DEFAULT(_(" We're friends, aren't we,\n{NAME_0}?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" I want to do my best\nbecause it's for you, $n0.")), - VARIANT(/* == */ 3, _(" I want to do my best\nbecause it's for you, $n0.")), - VARIANT_DEFAULT(_(" I want to do my best\nbecause it's for you, $n0.")), + VARIANT(/* == */ 1, _(" I want to do my best\nbecause it's for you, {NAME_0}.")), + VARIANT(/* == */ 3, _(" I want to do my best\nbecause it's for you, {NAME_0}.")), + VARIANT_DEFAULT(_(" I want to do my best\nbecause it's for you, {NAME_0}.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, JUMP_LABEL(8), LABEL(7), /* = 0x07 */ { 0x2e, 0x02, 0x0001, 0x00000009, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" For someone else?\nNow that's cold.")), - VARIANT(/* == */ 1, _(" You and me--we're friends,\nright, $n0?")), + VARIANT(/* == */ 1, _(" You and me--we're friends,\nright, {NAME_0}?")), VARIANT(/* == */ 3, _(" For someone else?\nNow isn't that cold?")), - VARIANT(/* == */ 3, _(" We're friends, aren't we,\n$n0?")), + VARIANT(/* == */ 3, _(" We're friends, aren't we,\n{NAME_0}?")), VARIANT_DEFAULT(_(" Someone else?\nCome on, what do you think I am?")), - VARIANT_DEFAULT(_(" We're friends, aren't we,\n$n0?")), + VARIANT_DEFAULT(_(" We're friends, aren't we,\n{NAME_0}?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" I want to do my best\nbecause it's for you, $n0.")), - VARIANT(/* == */ 3, _(" I want to do my best\nbecause it's for you, $n0.")), - VARIANT_DEFAULT(_(" I want to do my best\nbecause it's for you, $n0.")), + VARIANT(/* == */ 1, _(" I want to do my best\nbecause it's for you, {NAME_0}.")), + VARIANT(/* == */ 3, _(" I want to do my best\nbecause it's for you, {NAME_0}.")), + VARIANT_DEFAULT(_(" I want to do my best\nbecause it's for you, {NAME_0}.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, JUMP_LABEL(8), LABEL(8), /* = 0x08 */ @@ -6128,9 +6128,9 @@ static const struct ScriptCommand s_gs9_g44_s0_lives0_dlg0[] = { /* 0x81b78c0 */ { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Morning, $n0!")), + VARIANT(/* == */ 1, _(" Morning, {NAME_0}!")), VARIANT(/* == */ 1, _(" Like always, let's give\nit our best!")), - VARIANT_DEFAULT(_(" Good morning, $n0!")), + VARIANT_DEFAULT(_(" Good morning, {NAME_0}!")), VARIANT_DEFAULT(_(" Let's do our best like we\nalways do!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, @@ -6177,15 +6177,15 @@ static const struct ScriptCommand s_gs9_g45_s0_lives0_dlg0[] = { /* 0x81b7b50 */ CALL_SCRIPT(LOOK_AROUND_FUNC), { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Morning, $n0!")), - VARIANT(/* == */ 1, _(" Let's keep doing our best...#W\nActually, I need to ask you something.")), - VARIANT_DEFAULT(_(" Good morning, $n0!")), - VARIANT_DEFAULT(_(" Let's keep on doing good...#W\nActually, I want to ask you something.")), + VARIANT(/* == */ 1, _(" Morning, {NAME_0}!")), + VARIANT(/* == */ 1, _(" Let's keep doing our best...{WAIT_PRESS}\nActually, I need to ask you something.")), + VARIANT_DEFAULT(_(" Good morning, {NAME_0}!")), + VARIANT_DEFAULT(_(" Let's keep on doing good...{WAIT_PRESS}\nActually, I want to ask you something.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), - VARIANT(/* == */ 1, _(" Remember what\n$n3 said yesterday?#W\nDoes it bother you?")), - VARIANT_DEFAULT(_(" What do you think about\nwhat $n3 said yesterday?#W\nDoes it bother you?")), + VARIANT(/* == */ 1, _(" Remember what\n{NAME_3} said yesterday?{WAIT_PRESS}\nDoes it bother you?")), + VARIANT_DEFAULT(_(" What do you think about\nwhat {NAME_3} said yesterday?{WAIT_PRESS}\nDoes it bother you?")), CHOICE(/* label */ 0, _("Yes.")), CHOICE(/* label */ 1, _("No.")), LABEL(0), /* = 0x00 */ @@ -6195,11 +6195,11 @@ static const struct ScriptCommand s_gs9_g45_s0_lives0_dlg0[] = { /* 0x81b7b50 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Yeah, I guess so.\nIt would bother you too, $n0.")), + VARIANT(/* == */ 1, _(" Yeah, I guess so.\nIt would bother you too, {NAME_0}.")), VARIANT(/* == */ 1, _(" He said that there is a link\nbetween the world's balance being upset\nand how you became a Pokémon...")), VARIANT(/* == */ 1, _(" And how the upset balance\nis causing natural disasters...")), VARIANT(/* == */ 1, _(" And, worst of all, he said\nhow our world will be ruined if the\nbalance isn't restored.")), - VARIANT_DEFAULT(_(" Yes, I guess you would be\nconcerned too, $n0.")), + VARIANT_DEFAULT(_(" Yes, I guess you would be\nconcerned too, {NAME_0}.")), VARIANT_DEFAULT(_(" There's supposed to be\na link between the world's balance being\nupset and how you became a Pokémon...")), VARIANT_DEFAULT(_(" And because of the world's\nupset balance, natural disasters have been\noccurring...")), VARIANT_DEFAULT(_(" And more than anything,\nhe said that the world will be ruined\nif the balance isn't restored...")), @@ -6213,47 +6213,47 @@ static const struct ScriptCommand s_gs9_g45_s0_lives0_dlg0[] = { /* 0x81b7b50 */ { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" Hah?!\nIt doesn't have anything to do with you?!")), - VARIANT(/* == */ 1, _(" $n0!\nThat's not funny!")), + VARIANT(/* == */ 1, _(" {NAME_0}!\nThat's not funny!")), VARIANT(/* == */ 1, _(" The world might be\ndestroyed!")), - VARIANT(/* == */ 1, _(" And how you became a\nPokémon, $n0...\nThat's all supposed to be related!")), + VARIANT(/* == */ 1, _(" And how you became a\nPokémon, {NAME_0}...\nThat's all supposed to be related!")), VARIANT_DEFAULT(_(" Huh?!\nIt doesn't concern you?!")), - VARIANT_DEFAULT(_(" $n0!\nDon't joke around--it's not funny!")), + VARIANT_DEFAULT(_(" {NAME_0}!\nDon't joke around--it's not funny!")), VARIANT_DEFAULT(_(" The world might be\ndestroyed!")), - VARIANT_DEFAULT(_(" And how you became a\nPokémon, $n0...\nThat's all supposed to be related!")), + VARIANT_DEFAULT(_(" And how you became a\nPokémon, {NAME_0}...\nThat's all supposed to be related!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" Oh!\n...I get it.")), - VARIANT(/* == */ 1, _(" On second thought, you must\nbe more worried than I am,\n$n0...")), + VARIANT(/* == */ 1, _(" On second thought, you must\nbe more worried than I am,\n{NAME_0}...")), VARIANT(/* == */ 1, _(" You're in the middle of this.\nOf course you're worried...")), - VARIANT(/* == */ 1, _(" Sorry, $n0.\nI wasn't thinking.")), + VARIANT(/* == */ 1, _(" Sorry, {NAME_0}.\nI wasn't thinking.")), VARIANT(/* == */ 3, _(" Oh!\n...I understand now.")), - VARIANT(/* == */ 3, _(" How stupid of me...\nOf course you would be more worried\nthan I am, $n0...")), + VARIANT(/* == */ 3, _(" How stupid of me...\nOf course you would be more worried\nthan I am, {NAME_0}...")), VARIANT(/* == */ 3, _(" You're involved in all of\nthis.\nIt's only natural you'd be worried...")), - VARIANT(/* == */ 3, _(" Sorry, $n0.\nIt was inconsiderate of me.")), + VARIANT(/* == */ 3, _(" Sorry, {NAME_0}.\nIt was inconsiderate of me.")), VARIANT_DEFAULT(_(" Oh!\n...I get it.")), - VARIANT_DEFAULT(_(" I wasn't thinking.\nYou should be more worried than I am,\n$n0...")), + VARIANT_DEFAULT(_(" I wasn't thinking.\nYou should be more worried than I am,\n{NAME_0}...")), VARIANT_DEFAULT(_(" You're in the middle of this.\nOf course you're worried...")), - VARIANT_DEFAULT(_(" I'm sorry, $n0.\nI should have realized...")), + VARIANT_DEFAULT(_(" I'm sorry, {NAME_0}.\nI should have realized...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), { 0x2e, 0x02, 0x0001, 0x00000005, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n3 said the world\nwill be destroyed if nothing's done...")), - VARIANT_DEFAULT(_(" $n3 said that the\nworld will be ruined if nothing is done...")), + VARIANT(/* == */ 1, _(" {NAME_3} said the world\nwill be destroyed if nothing's done...")), + VARIANT_DEFAULT(_(" {NAME_3} said that the\nworld will be ruined if nothing is done...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, JUMP_LABEL(2), LABEL(2), /* = 0x02 */ { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" I want to do something...#W\nBut I don't really get it...")), - VARIANT(/* == */ 1, _(" Tell me.\nThe world's balance...#W\nWhat is that?")), - VARIANT_DEFAULT(_(" I want to do something...#W\nBut there's something I don't understand.")), - VARIANT_DEFAULT(_(" So, uh...\nThe world's balance...#W\nWhat is it?")), + VARIANT(/* == */ 1, _(" I want to do something...{WAIT_PRESS}\nBut I don't really get it...")), + VARIANT(/* == */ 1, _(" Tell me.\nThe world's balance...{WAIT_PRESS}\nWhat is that?")), + VARIANT_DEFAULT(_(" I want to do something...{WAIT_PRESS}\nBut there's something I don't understand.")), + VARIANT_DEFAULT(_(" So, uh...\nThe world's balance...{WAIT_PRESS}\nWhat is it?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, - ASK3(FALSE, /*default*/ -1, /* speaker */ 1, _(" $n0, do you know?\nWhat the world's balance is?")), + ASK3(FALSE, /*default*/ -1, /* speaker */ 1, _(" {NAME_0}, do you know?\nWhat the world's balance is?")), CHOICE(/* label */ 3, _("Of course.")), CHOICE(/* label */ 4, _("Don't know.")), CLEAR_ARRAY(EVENT_LOCAL), @@ -6265,8 +6265,8 @@ static const struct ScriptCommand s_gs9_g45_s0_lives0_dlg0[] = { /* 0x81b7b50 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Oh, really?!#W\n$n0, you know?!")), - VARIANT_DEFAULT(_(" Oh, really?!#W\n$n0, you know?!")), + VARIANT(/* == */ 1, _(" Oh, really?!{WAIT_PRESS}\n{NAME_0}, you know?!")), + VARIANT_DEFAULT(_(" Oh, really?!{WAIT_PRESS}\n{NAME_0}, you know?!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, CLEAR_ARRAY(EVENT_LOCAL), ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), @@ -6282,7 +6282,7 @@ static const struct ScriptCommand s_gs9_g45_s0_lives0_dlg0[] = { /* 0x81b7b50 */ { 0x54, 0x00, 0x002a, 0x00000000, 0x00000000, NULL }, WAIT(100), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" In space...?#W\nLike where the stars and the moon are?\nThat space?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" In space...?{WAIT_PRESS}\nLike where the stars and the moon are?\nThat space?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), @@ -6302,8 +6302,8 @@ static const struct ScriptCommand s_gs9_g45_s0_lives0_dlg0[] = { /* 0x81b7b50 */ UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hah?!#W\nGo out to space?!")), - VARIANT_DEFAULT(_(" Huh?!#W\nGo out to space?!")), + VARIANT(/* == */ 1, _(" Hah?!{WAIT_PRESS}\nGo out to space?!")), + VARIANT_DEFAULT(_(" Huh?!{WAIT_PRESS}\nGo out to space?!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, CLEAR_ARRAY(EVENT_LOCAL), { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, @@ -6337,12 +6337,12 @@ static const struct ScriptCommand s_gs9_g45_s0_lives0_dlg0[] = { /* 0x81b7b50 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey! $n2!")), - VARIANT(/* == */ 1, _(" You came at the right time!#W\nWe want you to carry us out to space...")), - VARIANT(/* == */ 3, _(" Oh! $n2!")), - VARIANT(/* == */ 3, _(" You came at the right time!#W\nI was wondering if you could carry us\nout to space...")), - VARIANT_DEFAULT(_(" Oh! $n2!")), - VARIANT_DEFAULT(_(" Just who we need!#W\nYou see, we're wondering if you could\ncarry us to space...")), + VARIANT(/* == */ 1, _(" Hey! {NAME_2}!")), + VARIANT(/* == */ 1, _(" You came at the right time!{WAIT_PRESS}\nWe want you to carry us out to space...")), + VARIANT(/* == */ 3, _(" Oh! {NAME_2}!")), + VARIANT(/* == */ 3, _(" You came at the right time!{WAIT_PRESS}\nI was wondering if you could carry us\nout to space...")), + VARIANT_DEFAULT(_(" Oh! {NAME_2}!")), + VARIANT_DEFAULT(_(" Just who we need!{WAIT_PRESS}\nYou see, we're wondering if you could\ncarry us to space...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -6376,8 +6376,8 @@ static const struct ScriptCommand s_gs9_g45_s0_lives0_dlg0[] = { /* 0x81b7b50 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" So, you don't know anything\nat all, $n0...")), - VARIANT_DEFAULT(_(" So, you don't know either,\n$n0...")), + VARIANT(/* == */ 1, _(" So, you don't know anything\nat all, {NAME_0}...")), + VARIANT_DEFAULT(_(" So, you don't know either,\n{NAME_0}...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, JUMP_LABEL(11), LABEL(9), /* = 0x09 */ @@ -6399,8 +6399,8 @@ static const struct ScriptCommand s_gs9_g45_s0_lives0_dlg0[] = { /* 0x81b7b50 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" So, you don't know anything\nat all, $n0...")), - VARIANT_DEFAULT(_(" So, you don't know either,\n$n0...")), + VARIANT(/* == */ 1, _(" So, you don't know anything\nat all, {NAME_0}...")), + VARIANT_DEFAULT(_(" So, you don't know either,\n{NAME_0}...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, JUMP_LABEL(11), LABEL(6), /* = 0x06 */ @@ -6429,8 +6429,8 @@ static const struct ScriptCommand s_gs9_g45_s0_lives0_dlg0[] = { /* 0x81b7b50 */ UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ...OK.#W\nYeah, I guess so.\nIt'd be impossible to know.")), - VARIANT_DEFAULT(_(" ...OK.#W\nI guess so. You wouldn't know.")), + VARIANT(/* == */ 1, _(" ...OK.{WAIT_PRESS}\nYeah, I guess so.\nIt'd be impossible to know.")), + VARIANT_DEFAULT(_(" ...OK.{WAIT_PRESS}\nI guess so. You wouldn't know.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(11), /* = 0x0b */ { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, @@ -6621,9 +6621,9 @@ static const struct ScriptCommand s_gs9_g46_s0_lives0_dlg0[] = { /* 0x81ba664 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0c, 0x0001, 0x00000007, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0!\nSorry!")), - VARIANT(/* == */ 3, _(" $n0!\nSorry!")), - VARIANT_DEFAULT(_(" $n0!\nSorry!")), + VARIANT(/* == */ 1, _(" {NAME_0}!\nSorry!")), + VARIANT(/* == */ 3, _(" {NAME_0}!\nSorry!")), + VARIANT_DEFAULT(_(" {NAME_0}!\nSorry!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), FANFARE_PLAY2(465), @@ -6632,28 +6632,28 @@ static const struct ScriptCommand s_gs9_g46_s0_lives0_dlg0[] = { /* 0x81ba664 */ WAIT(30), { 0x2e, 0x15, 0x0001, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" I started doubting you\na little, $n0...")), - VARIANT(/* == */ 3, _(" I started doubting you\na little, $n0...")), - VARIANT_DEFAULT(_(" I started doubting you\na little, $n0...")), + VARIANT(/* == */ 1, _(" I started doubting you\na little, {NAME_0}...")), + VARIANT(/* == */ 3, _(" I started doubting you\na little, {NAME_0}...")), + VARIANT_DEFAULT(_(" I started doubting you\na little, {NAME_0}...")), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" But I've made up my mind.")), - VARIANT(/* == */ 1, _(" I'm going to believe in you,\n$n0.")), - VARIANT(/* == */ 1, _(" Because you're my friend,\n$n0.\nAn important friend.")), - VARIANT(/* == */ 1, _(" Yes, a really important...#W\nfriend...")), + VARIANT(/* == */ 1, _(" I'm going to believe in you,\n{NAME_0}.")), + VARIANT(/* == */ 1, _(" Because you're my friend,\n{NAME_0}.\nAn important friend.")), + VARIANT(/* == */ 1, _(" Yes, a really important...{WAIT_PRESS}\nfriend...")), VARIANT(/* == */ 3, _(" I'm not going to worry\nanymore.")), - VARIANT(/* == */ 3, _(" I believe in you,\n$n0.")), - VARIANT(/* == */ 3, _(" Because...\nYou're a friend like no other,\n$n0.")), - VARIANT(/* == */ 3, _(" You're an invaluable...#W\nfriend...")), + VARIANT(/* == */ 3, _(" I believe in you,\n{NAME_0}.")), + VARIANT(/* == */ 3, _(" Because...\nYou're a friend like no other,\n{NAME_0}.")), + VARIANT(/* == */ 3, _(" You're an invaluable...{WAIT_PRESS}\nfriend...")), VARIANT_DEFAULT(_(" But I'm not going to worry\nanymore.")), - VARIANT_DEFAULT(_(" I believe in you,\n$n0.")), - VARIANT_DEFAULT(_(" Because you're a friend\nlike no other, $n0.")), - VARIANT_DEFAULT(_(" You're a friend...#W\nLike I'd never get again...")), + VARIANT_DEFAULT(_(" I believe in you,\n{NAME_0}.")), + VARIANT_DEFAULT(_(" Because you're a friend\nlike no other, {NAME_0}.")), + VARIANT_DEFAULT(_(" You're a friend...{WAIT_PRESS}\nLike I'd never get again...")), { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" All right, $n0!\nLet's get back to doing our best tomorrow!")), - VARIANT(/* == */ 3, _(" OK, $n0!\nLet's try our best to do well tomorrow!")), - VARIANT_DEFAULT(_(" OK, $n0!\nLet's do our best tomorrow like always!")), + VARIANT(/* == */ 1, _(" All right, {NAME_0}!\nLet's get back to doing our best tomorrow!")), + VARIANT(/* == */ 3, _(" OK, {NAME_0}!\nLet's try our best to do well tomorrow!")), + VARIANT_DEFAULT(_(" OK, {NAME_0}!\nLet's do our best tomorrow like always!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -6714,12 +6714,12 @@ static const struct ScriptCommand s_gs9_g47_s0_lives0_dlg0[] = { /* 0x81bb154 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000009, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Morning, $n0!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Morning, {NAME_0}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ...Huh?#W\nYou look pale.\nWhat's up with you?")), - VARIANT_DEFAULT(_(" ...Oh?#W\nYou look pale.\nIs something the matter?")), + VARIANT(/* == */ 1, _(" ...Huh?{WAIT_PRESS}\nYou look pale.\nWhat's up with you?")), + VARIANT_DEFAULT(_(" ...Oh?{WAIT_PRESS}\nYou look pale.\nIs something the matter?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), @@ -6799,7 +6799,7 @@ static const struct ScriptCommand s_gs9_g48_s0_lives0_dlg0[] = { /* 0x81bb6cc */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, BGM_FADEOUT(150), { 0x2e, 0x14, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Gasp, gasp...#W\nWow, that was a real shock!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Gasp, gasp...{WAIT_PRESS}\nWow, that was a real shock!") }, { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x93, 0x05, 0x0002, 0x00000022, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, @@ -6809,8 +6809,8 @@ static const struct ScriptCommand s_gs9_g48_s0_lives0_dlg0[] = { /* 0x81bb6cc */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" But, hey, $n0.")), - VARIANT_DEFAULT(_(" But listen, $n0.")), + VARIANT(/* == */ 1, _(" But, hey, {NAME_0}.")), + VARIANT_DEFAULT(_(" But listen, {NAME_0}.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000003, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), @@ -6820,10 +6820,10 @@ static const struct ScriptCommand s_gs9_g48_s0_lives0_dlg0[] = { /* 0x81bb6cc */ VARIANT_DEFAULT(_(" Why didn't you argue that\nit's not you?!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), - VARIANT(/* == */ 1, _(" Why didn't you say you're\nnot the human that appears in the legend\nof $n6?")), - VARIANT_DEFAULT(_(" You should have said you're\nnot the human that appears in the legend\nof $n6!")), - CHOICE(/* label */ 1, _("...Listen, $n1.")), - CHOICE(/* label */ 1, _("...Hey, $n1.")), + VARIANT(/* == */ 1, _(" Why didn't you say you're\nnot the human that appears in the legend\nof {NAME_6}?")), + VARIANT_DEFAULT(_(" You should have said you're\nnot the human that appears in the legend\nof {NAME_6}!")), + CHOICE(/* label */ 1, _("...Listen, {NAME_1}.")), + CHOICE(/* label */ 1, _("...Hey, {NAME_1}.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(4), LABEL(1), /* = 0x01 */ @@ -6841,10 +6841,10 @@ static const struct ScriptCommand s_gs9_g48_s0_lives0_dlg0[] = { /* 0x81bb6cc */ { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" Wh-what's the matter now?\nWhat are you saying all of a sudden?")), - VARIANT(/* == */ 1, _(" Give up our rescue team?#W\nThat doesn't sound like you, $n0.")), + VARIANT(/* == */ 1, _(" Give up our rescue team?{WAIT_PRESS}\nThat doesn't sound like you, {NAME_0}.")), VARIANT(/* == */ 1, _(" What's up with that?")), VARIANT_DEFAULT(_(" Wh-what's the matter?\nWhat makes you say that all of a sudden?")), - VARIANT_DEFAULT(_(" Give up on our rescue\nteam?#W\nIt's not like you to say that, $n0.")), + VARIANT_DEFAULT(_(" Give up on our rescue\nteam?{WAIT_PRESS}\nIt's not like you to say that, {NAME_0}.")), VARIANT_DEFAULT(_(" Is something the matter?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, JUMP_LABEL(4), @@ -6863,12 +6863,12 @@ static const struct ScriptCommand s_gs9_g48_s0_lives0_dlg0[] = { /* 0x81bb6cc */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ...Hah?#W\nYou're saying you don't deserve to be on\nour rescue team?!")), - VARIANT(/* == */ 1, _(" What's wrong with you?!#W\nWhy are you saying that?!")), - VARIANT(/* == */ 1, _(" It's not like you at all,\n$n0!#W\nWhat happened to you?!")), - VARIANT_DEFAULT(_(" ...Huh?!#W\nYou don't think you deserve to be on our\nrescue team?!")), - VARIANT_DEFAULT(_(" What's wrong?!#W\nWhat makes you say that?!")), - VARIANT_DEFAULT(_(" That doesn't sound like you\nat all, $n0.#W\nTell me, what's the matter?")), + VARIANT(/* == */ 1, _(" ...Hah?{WAIT_PRESS}\nYou're saying you don't deserve to be on\nour rescue team?!")), + VARIANT(/* == */ 1, _(" What's wrong with you?!{WAIT_PRESS}\nWhy are you saying that?!")), + VARIANT(/* == */ 1, _(" It's not like you at all,\n{NAME_0}!{WAIT_PRESS}\nWhat happened to you?!")), + VARIANT_DEFAULT(_(" ...Huh?!{WAIT_PRESS}\nYou don't think you deserve to be on our\nrescue team?!")), + VARIANT_DEFAULT(_(" What's wrong?!{WAIT_PRESS}\nWhat makes you say that?!")), + VARIANT_DEFAULT(_(" That doesn't sound like you\nat all, {NAME_0}.{WAIT_PRESS}\nTell me, what's the matter?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, JUMP_LABEL(4), LABEL(4), /* = 0x04 */ @@ -6879,10 +6879,10 @@ static const struct ScriptCommand s_gs9_g48_s0_lives0_dlg0[] = { /* 0x81bb6cc */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x54, 0x00, 0x0300, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............#WHuh?\nYou had a dream?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}Huh?\nYou had a dream?") }, FANFARE_PLAY2(465), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And $n7 appeared\nin it?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And {NAME_7} appeared\nin it?") }, { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...And that made you think\nthat maybe you were that human after\nall...") }, { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, @@ -6892,24 +6892,24 @@ static const struct ScriptCommand s_gs9_g48_s0_lives0_dlg0[] = { /* 0x81bb6cc */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000003, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey, $n0!")), + VARIANT(/* == */ 1, _(" Hey, {NAME_0}!")), VARIANT(/* == */ 1, _(" That doesn't mean you\nremembered what you were like as\na human, does it?")), VARIANT(/* == */ 1, _(" So you don't know what\nactually happened!")), - VARIANT(/* == */ 3, _(" Listen, $n0!")), + VARIANT(/* == */ 3, _(" Listen, {NAME_0}!")), VARIANT(/* == */ 3, _(" You didn't remember\nwhat you were like as a human being,\ndid you?")), VARIANT(/* == */ 3, _(" So you don't know what\nreally happened.")), - VARIANT_DEFAULT(_(" Listen, $n0.")), + VARIANT_DEFAULT(_(" Listen, {NAME_0}.")), VARIANT_DEFAULT(_(" Did your dream make\nyou remember what you were like as a\nhuman being?")), VARIANT_DEFAULT(_(" Since it didn't, you don't\nknow what really happened.")), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" I...#W\nYou know that I believe in you,\n$n0, right?")), + VARIANT(/* == */ 1, _(" I...{WAIT_PRESS}\nYou know that I believe in you,\n{NAME_0}, right?")), VARIANT(/* == */ 1, _(" So...")), - VARIANT(/* == */ 3, _(" I...#W\nI believe in you, $n0.\nYou know that, right?")), + VARIANT(/* == */ 3, _(" I...{WAIT_PRESS}\nI believe in you, {NAME_0}.\nYou know that, right?")), VARIANT(/* == */ 3, _(" So...")), - VARIANT_DEFAULT(_(" I...#W\nI have faith in you, $n0.\nYou know that?")), + VARIANT_DEFAULT(_(" I...{WAIT_PRESS}\nI have faith in you, {NAME_0}.\nYou know that?")), VARIANT_DEFAULT(_(" So...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_ENTITIES(-1, 1), @@ -6925,9 +6925,9 @@ static const struct ScriptCommand s_gs9_g48_s0_lives0_dlg0[] = { /* 0x81bb6cc */ { 0xe5, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" After that scene in\nPokémon Square...#W\nWe held a town meeting...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" After that scene in\nPokémon Square...{WAIT_PRESS}\nWe held a town meeting...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" On what we must do to\nsave the world...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And we arrived at a\nconsensus.#W\nWe must get rid of you.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And we arrived at a\nconsensus.{WAIT_PRESS}\nWe must get rid of you.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, BGM_SWITCH(9), WAIT(10), @@ -6939,7 +6939,7 @@ static const struct ScriptCommand s_gs9_g48_s0_lives0_dlg0[] = { /* 0x81bb6cc */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I was incredulous too...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I had hoped it would not\ncome to this, but...#W\nIt is unfortunate.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I had hoped it would not\ncome to this, but...{WAIT_PRESS}\nIt is unfortunate.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We will...\nDefeat you with all our might!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -6984,22 +6984,22 @@ static const struct ScriptCommand s_gs9_g48_s0_lives0_dlg0[] = { /* 0x81bb6cc */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(15), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Anyone that goes with\n$n0 will be considered an enemy.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Anyone that goes with\n{NAME_0} will be considered an enemy.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The trackers will attack\nwithout mercy.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That goes for us too.\nWe will join the hunt to be rid of you.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(15), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Against all odds, you must\nrun.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Run, run...#W\nAnd survive.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Run, run...{WAIT_PRESS}\nAnd survive.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You must run till you\nuncover the truth.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x15, 0x0001, 0x00000008, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n2...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_2}...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There will be no mercy\nthe next time we meet.#W\nFarewell.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There will be no mercy\nthe next time we meet.{WAIT_PRESS}\nFarewell.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -7016,35 +7016,35 @@ static const struct ScriptCommand s_gs9_g48_s0_lives0_dlg0[] = { /* 0x81bb6cc */ { 0x93, 0x0a, 0x000a, 0x00000022, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0...")), - VARIANT(/* == */ 1, _(" In their own way,\n$n2's team believes in you too.")), + VARIANT(/* == */ 1, _(" {NAME_0}...")), + VARIANT(/* == */ 1, _(" In their own way,\n{NAME_2}'s team believes in you too.")), VARIANT(/* == */ 1, _(" Didn't I say this before?")), VARIANT(/* == */ 1, _(" I'm not going to doubt you\nanymore.")), - VARIANT(/* == */ 1, _(" Whatever happens, I'll\nalways believe in you, $n0.")), + VARIANT(/* == */ 1, _(" Whatever happens, I'll\nalways believe in you, {NAME_0}.")), VARIANT(/* == */ 1, _(" I won't be scared, even if\nother rescue teams attack us.")), - VARIANT(/* == */ 3, _(" $n0...")), - VARIANT(/* == */ 3, _(" Did you see?\n$n2's team has faith in you too.")), + VARIANT(/* == */ 3, _(" {NAME_0}...")), + VARIANT(/* == */ 3, _(" Did you see?\n{NAME_2}'s team has faith in you too.")), VARIANT(/* == */ 3, _(" I said this before, didn't I?")), VARIANT(/* == */ 3, _(" I'm not going to worry\nanymore.")), - VARIANT(/* == */ 3, _(" Whatever happens, I have\nfaith in you, $n0.")), + VARIANT(/* == */ 3, _(" Whatever happens, I have\nfaith in you, {NAME_0}.")), VARIANT(/* == */ 3, _(" Even if other rescue teams\nstalk us, I won't be scared.")), - VARIANT_DEFAULT(_(" $n0...")), - VARIANT_DEFAULT(_(" In their own way,\n$n2's team has faith in you too.")), + VARIANT_DEFAULT(_(" {NAME_0}...")), + VARIANT_DEFAULT(_(" In their own way,\n{NAME_2}'s team has faith in you too.")), VARIANT_DEFAULT(_(" Didn't I say this before?")), VARIANT_DEFAULT(_(" I'm not going to worry\nanymore.")), - VARIANT_DEFAULT(_(" Whatever happens, I'll\nalways have faith in you, $n0.")), + VARIANT_DEFAULT(_(" Whatever happens, I'll\nalways have faith in you, {NAME_0}.")), VARIANT_DEFAULT(_(" Even if we're attacked\nby other rescue teams, I won't be\nscared.")), { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" So what's all this about\nnot believing in yourself, $n0?")), - VARIANT(/* == */ 3, _(" So what are we supposed to\ndo if you don't have faith in yourself,\n$n0?")), - VARIANT_DEFAULT(_(" What good will it do if\nyou don't believe in yourself,\n$n0?")), + VARIANT(/* == */ 1, _(" So what's all this about\nnot believing in yourself, {NAME_0}?")), + VARIANT(/* == */ 3, _(" So what are we supposed to\ndo if you don't have faith in yourself,\n{NAME_0}?")), + VARIANT_DEFAULT(_(" What good will it do if\nyou don't believe in yourself,\n{NAME_0}?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_ENTITIES(-1, 2), WAIT(1), { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" $n0.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" {NAME_0}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(4), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -7053,24 +7053,24 @@ static const struct ScriptCommand s_gs9_g48_s0_lives0_dlg0[] = { /* 0x81bb6cc */ { 0x93, 0x0a, 0x000a, 0x00000036, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x0e, 0x0001, 0x00000005, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n5...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_5}...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(4), { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" $n0...\nI made a promise, remember?") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" {NAME_0}...\nI made a promise, remember?") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" That we would make a\nrescue team base here.") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" That I would join your\nrescue team when I grew up.") }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" $n0...\nDon't give up.") }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" You're a hero to me,\n$n0.") }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" I believe in you too,\n$n0.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" {NAME_0}...\nDon't give up.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" You're a hero to me,\n{NAME_0}.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" I believe in you too,\n{NAME_0}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0001, 0x00000000, 0x00000000, NULL }, - ASK3(FALSE, /*default*/ -1, /* speaker */ 1, _(" So, what do you say,\n$n0?")), + ASK3(FALSE, /*default*/ -1, /* speaker */ 1, _(" So, what do you say,\n{NAME_0}?")), CHOICE(/* label */ 18, _("OK! I won't give up!")), CHOICE(/* label */ 18, _("I'm over it! No giving up!")), LABEL(18), /* = 0x12 */ @@ -7085,11 +7085,11 @@ static const struct ScriptCommand s_gs9_g48_s0_lives0_dlg0[] = { /* 0x81bb6cc */ { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" That's right!\nThat's the spirit!\nThat's what I wanted to hear!")), - VARIANT(/* == */ 1, _(" That's the $n0 we\nall know!")), + VARIANT(/* == */ 1, _(" That's the {NAME_0} we\nall know!")), VARIANT(/* == */ 3, _(" Exactly!\nThat's the spirit!\nThat's more like it!")), - VARIANT(/* == */ 3, _(" That's what we expect from\nour $n0!")), + VARIANT(/* == */ 3, _(" That's what we expect from\nour {NAME_0}!")), VARIANT_DEFAULT(_(" Yeah!\nThat's right!\nThat's more like it!")), - VARIANT_DEFAULT(_(" That's what we expect from\nour $n0!")), + VARIANT_DEFAULT(_(" That's what we expect from\nour {NAME_0}!")), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, @@ -7331,7 +7331,7 @@ static const struct ScriptCommand s_gs9_g49_s0_station_sref_script[] = { /* 0x81 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(9), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next dawn...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next dawn...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -7357,8 +7357,8 @@ static const struct ScriptCommand s_gs9_g49_s0_lives0_dlg0[] = { /* 0x81bea68 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Morning, $n0!\nIt's early, but I guessed you would be up!")), - VARIANT_DEFAULT(_(" Morning, $n0!#W\nIt's early, but of course you'd be up by\nnow!")), + VARIANT(/* == */ 1, _(" Morning, {NAME_0}!\nIt's early, but I guessed you would be up!")), + VARIANT_DEFAULT(_(" Morning, {NAME_0}!{WAIT_PRESS}\nIt's early, but of course you'd be up by\nnow!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), @@ -7370,9 +7370,9 @@ static const struct ScriptCommand s_gs9_g49_s0_lives0_dlg0[] = { /* 0x81bea68 */ { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" All right, I'll wait while\nyou get ready.")), - VARIANT(/* == */ 1, _(" Tell me when you're set.#W\nWe'll roll out then.")), + VARIANT(/* == */ 1, _(" Tell me when you're set.{WAIT_PRESS}\nWe'll roll out then.")), VARIANT_DEFAULT(_(" Oh, OK.\nI'll wait while you get ready.")), - VARIANT_DEFAULT(_(" Tell me when you're\nready.#W\nLet's leave then.")), + VARIANT_DEFAULT(_(" Tell me when you're\nready.{WAIT_PRESS}\nLet's leave then.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -7425,9 +7425,9 @@ static const struct ScriptCommand s_gs9_g50_s0_lives0_dlg2[] = { /* 0x81beef8 */ { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" All right. I'll wait while\nyou get ready.")), - VARIANT(/* == */ 1, _(" Tell me when you're set.#W\nWe'll roll out then.")), + VARIANT(/* == */ 1, _(" Tell me when you're set.{WAIT_PRESS}\nWe'll roll out then.")), VARIANT_DEFAULT(_(" Oh, OK.\nI'll wait while you get ready.")), - VARIANT_DEFAULT(_(" Tell me when you're\nready.#W\nLet's leave then.")), + VARIANT_DEFAULT(_(" Tell me when you're\nready.{WAIT_PRESS}\nLet's leave then.")), JUMP_SCRIPT(END_TALK), LABEL(1), /* = 0x01 */ EXECUTE_FUNCTION(EVENT_M01E07A_L002), @@ -7501,9 +7501,9 @@ static const struct ScriptCommand s_gs9_g50_s2_lives1_dlg2[] = { /* 0x81bf4bc */ LABEL(2), /* = 0x02 */ MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" All right, I'll wait while\nyou get ready.")), - VARIANT(/* == */ 1, _(" Tell me when you're set.#W\nWe'll roll out then.")), + VARIANT(/* == */ 1, _(" Tell me when you're set.{WAIT_PRESS}\nWe'll roll out then.")), VARIANT_DEFAULT(_(" Oh, OK.\nI'll wait while you get ready.")), - VARIANT_DEFAULT(_(" Tell me when you're\nready.#W\nLet's leave then.")), + VARIANT_DEFAULT(_(" Tell me when you're\nready.{WAIT_PRESS}\nLet's leave then.")), JUMP_SCRIPT(END_TALK), LABEL(1), /* = 0x01 */ EXECUTE_FUNCTION(EVENT_M01E07A_L002), @@ -7574,13 +7574,13 @@ static const struct ScriptCommand s_gs9_g51_s0_lives0_dlg0[] = { /* 0x81bf7d4 */ MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" This is going to be one\nrough trip...")), VARIANT(/* == */ 1, _(" I want to keep our team\nmembers out of all this...")), - VARIANT(/* == */ 1, _(" Let's not tell our friends...#W\nAnd we'll go, just you and me.")), + VARIANT(/* == */ 1, _(" Let's not tell our friends...{WAIT_PRESS}\nAnd we'll go, just you and me.")), VARIANT(/* == */ 3, _(" I'm sure that this will be a\ndangerous journey...")), VARIANT(/* == */ 3, _(" I don't want to get our team\nmembers involved in this...")), - VARIANT(/* == */ 3, _(" Let's not tell them...#W\nWe should go by ourselves.")), + VARIANT(/* == */ 3, _(" Let's not tell them...{WAIT_PRESS}\nWe should go by ourselves.")), VARIANT_DEFAULT(_(" This is going to be a\ndangerous trip...")), VARIANT_DEFAULT(_(" I don't want to get our team\nmembers involved...")), - VARIANT_DEFAULT(_(" Let's not tell them...#W\nWe'll just leave by ourselves.")), + VARIANT_DEFAULT(_(" Let's not tell them...{WAIT_PRESS}\nWe'll just leave by ourselves.")), LABEL(1), /* = 0x01 */ MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" You know what we have\nto do, right?")), @@ -7594,7 +7594,7 @@ static const struct ScriptCommand s_gs9_g51_s0_lives0_dlg0[] = { /* 0x81bf7d4 */ BGM_SWITCH(24), { 0x2e, 0x03, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(...Yes. We have to escape.)") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Like $n2 said that time...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Like {NAME_2} said that time...)") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x5f, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -7633,7 +7633,7 @@ static const struct ScriptCommand s_gs9_g52_s0_lives0_dlg0[] = { /* 0x81bff70 */ WAIT(30), { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Against all odds, you must\nrun.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Run, run...#W\nAnd survive.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Run, run...{WAIT_PRESS}\nAnd survive.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You must run till you\nuncover the truth.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -7723,7 +7723,7 @@ static const struct ScriptCommand s_gs9_g53_s0_lives0_dlg0[] = { /* 0x81c02fc */ VARIANT_DEFAULT(_(" OK!\nLet's get going!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" $n0!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" {NAME_0}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(465), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -7761,7 +7761,7 @@ static const struct ScriptCommand s_gs9_g53_s0_lives0_dlg0[] = { /* 0x81c02fc */ { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0006, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" We wanted to see you off,\n$n0.") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" We wanted to see you off,\n{NAME_0}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(15), { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" M-me too!") }, @@ -7817,7 +7817,7 @@ static const struct ScriptCommand s_gs9_g53_s0_lives0_dlg0[] = { /* 0x81c02fc */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's a letter.\n$n0, can you read it?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's a letter.\n{NAME_0}, can you read it?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -7830,7 +7830,7 @@ static const struct ScriptCommand s_gs9_g53_s0_lives0_dlg0[] = { /* 0x81c02fc */ { 0x86, 0x00, 0x0100, 0x00000039, 0x00000000, NULL }, { 0x91, 0x04, 0x000b, 0x00000004, 0x00000000, NULL }, WAIT(30), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 began reading the letter.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0} began reading the letter.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("“Take care!\n It's farewell, but only for now.") }, { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Until the day I can deliver mail\n to you again...") }, @@ -7859,7 +7859,7 @@ static const struct ScriptCommand s_gs9_g53_s0_lives0_dlg0[] = { /* 0x81c02fc */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0!\nLet's go! Hit the road!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0}!\nLet's go! Hit the road!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, @@ -8208,8 +8208,8 @@ static const struct ScriptCommand s_gs9_g55_s0_lives0_dlg0[] = { /* 0x81c23c0 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Morning, $n0.\nGet a good night's sleep?")), - VARIANT_DEFAULT(_(" Good morning, $n0.\nDid you sleep well?")), + VARIANT(/* == */ 1, _(" Morning, {NAME_0}.\nGet a good night's sleep?")), + VARIANT_DEFAULT(_(" Good morning, {NAME_0}.\nDid you sleep well?")), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" OK, we're back in the\nrescue team business!")), @@ -8235,12 +8235,12 @@ static const struct ScriptCommand s_gs9_g55_s0_lives0_dlg0[] = { /* 0x81c23c0 */ { 0x93, 0x04, 0x000b, 0x00000007, 0x00000000, NULL }, WAIT(10), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n2's brought us\nmail already, too.")), - VARIANT_DEFAULT(_(" And look, $n2 is\nbringing us mail already.")), + VARIANT(/* == */ 1, _(" {NAME_2}'s brought us\nmail already, too.")), + VARIANT_DEFAULT(_(" And look, {NAME_2} is\nbringing us mail already.")), { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Let's give it our best like\nwe always used to, $n0!")), - VARIANT_DEFAULT(_(" Let's try to do our best like\nwe always did, $n0!")), + VARIANT(/* == */ 1, _(" Let's give it our best like\nwe always used to, {NAME_0}!")), + VARIANT_DEFAULT(_(" Let's try to do our best like\nwe always did, {NAME_0}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -8337,7 +8337,7 @@ static const struct ScriptCommand s_gs9_g57_s0_lives0_dlg0[] = { /* 0x81c2c50 */ { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Good morning, $n0!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Good morning, {NAME_0}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(468), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -8352,22 +8352,22 @@ static const struct ScriptCommand s_gs9_g57_s0_lives0_dlg0[] = { /* 0x81c2c50 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Oh, right!#W\nThat earthquake earlier!")), - VARIANT(/* == */ 1, _(" $n0, you're\nworried the same way I am.\nI should've known, $n0.")), + VARIANT(/* == */ 1, _(" Oh, right!{WAIT_PRESS}\nThat earthquake earlier!")), + VARIANT(/* == */ 1, _(" {NAME_0}, you're\nworried the same way I am.\nI should've known, {NAME_0}.")), VARIANT(/* == */ 1, _(" Alakazam's team hasn't come\nback yet...")), VARIANT(/* == */ 1, _(" And they say Groudon is\nwickedly strong, so yeah, it is a bit\nworrying...")), VARIANT(/* == */ 1, _(" But, then again, Alakazam's\nbunch is tough, too.\nThey should be OK...")), VARIANT(/* == */ 1, _(" Well, we did leave Groudon\nup to Alakazam...")), VARIANT(/* == */ 1, _(" So we can't do much of\nanything but wait for them to come back.")), - VARIANT(/* == */ 3, _(" Oh, right!#W\nThat earthquake earlier!")), - VARIANT(/* == */ 3, _(" $n0, you're\nworried about the same thing I am.\nI should have guessed, $n0.")), + VARIANT(/* == */ 3, _(" Oh, right!{WAIT_PRESS}\nThat earthquake earlier!")), + VARIANT(/* == */ 3, _(" {NAME_0}, you're\nworried about the same thing I am.\nI should have guessed, {NAME_0}.")), VARIANT(/* == */ 3, _(" Alakazam's team still hasn't\ncome back...")), VARIANT(/* == */ 3, _(" People say that Groudon is\nvery powerful, so I am a little worried...")), VARIANT(/* == */ 3, _(" But Alakazam's team is also\nvery strong.\nThey must be OK.")), VARIANT(/* == */ 3, _(" Anyway, we agreed to let\nAlakazam handle Groudon.")), VARIANT(/* == */ 3, _(" So we'll just have to wait\nfor them to come back.")), - VARIANT_DEFAULT(_(" Oh, I get it!#W\nThat earthquake earlier!")), - VARIANT_DEFAULT(_(" $n0, you're\nworried about the same thing I am.\nI should've guessed, $n0.")), + VARIANT_DEFAULT(_(" Oh, I get it!{WAIT_PRESS}\nThat earthquake earlier!")), + VARIANT_DEFAULT(_(" {NAME_0}, you're\nworried about the same thing I am.\nI should've guessed, {NAME_0}.")), VARIANT_DEFAULT(_(" Alakazam's team hasn't come\nback yet...")), VARIANT_DEFAULT(_(" They say that Groudon is\npowerful.\nThat has me a little worried.")), VARIANT_DEFAULT(_(" But Alakazam's team is\ntough too.\nThey should be fine.")), @@ -8438,10 +8438,10 @@ static const struct ScriptCommand s_gs9_g58_s0_lives0_dlg0[] = { /* 0x81c37c8 */ WAIT(30), { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Oh, already awake,\n$n0?")), + VARIANT(/* == */ 1, _(" Oh, already awake,\n{NAME_0}?")), VARIANT(/* == */ 1, _(" There was another\nearthquake earlier, right?")), VARIANT(/* == */ 1, _(" There've been so many...\nI can't get a decent night's sleep.")), - VARIANT_DEFAULT(_(" Oh, hi!\nYou're up early, $n0.")), + VARIANT_DEFAULT(_(" Oh, hi!\nYou're up early, {NAME_0}.")), VARIANT_DEFAULT(_(" Did you notice the\nearthquake earlier?")), VARIANT_DEFAULT(_(" It's hard to get decent sleep\nwhen there are so many earthquakes.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -8465,8 +8465,8 @@ static const struct ScriptCommand s_gs9_g58_s0_lives0_dlg0[] = { /* 0x81c37c8 */ WAIT(30), { 0x2e, 0x0e, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey, $n2.#W\nWhat's up?")), - VARIANT_DEFAULT(_(" Oh, $n2.#W\nWhat's the matter?")), + VARIANT(/* == */ 1, _(" Hey, {NAME_2}.{WAIT_PRESS}\nWhat's up?")), + VARIANT_DEFAULT(_(" Oh, {NAME_2}.{WAIT_PRESS}\nWhat's the matter?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -8483,7 +8483,7 @@ static const struct ScriptCommand s_gs9_g58_s0_lives0_dlg0[] = { /* 0x81c37c8 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000b, 0x00000006, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0, let's go!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0}, let's go!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, WAIT(5), @@ -8571,13 +8571,13 @@ static const struct ScriptCommand s_gs9_g59_s0_lives0_dlg0[] = { /* 0x81c4100 */ WAIT(30), MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" I wish we could've gone too,\nbut that's just too bad.")), - VARIANT(/* == */ 1, _(" We'll let $n2's\nteam take care of things underground.")), + VARIANT(/* == */ 1, _(" We'll let {NAME_2}'s\nteam take care of things underground.")), VARIANT(/* == */ 1, _(" We'll keep giving it our\nbest in our rescue work.")), VARIANT(/* == */ 3, _(" I wish we could have gone\ntoo, but that can't be helped.")), - VARIANT(/* == */ 3, _(" $n2's team can\ntake care of things underground.")), + VARIANT(/* == */ 3, _(" {NAME_2}'s team can\ntake care of things underground.")), VARIANT(/* == */ 3, _(" And we'll keep doing the best\nwe can in our rescue work.")), VARIANT_DEFAULT(_(" I wish we could have gone\ntoo, but there's nothing we can do about\nthat.")), - VARIANT_DEFAULT(_(" $n2's team can\ntake care of things underground.")), + VARIANT_DEFAULT(_(" {NAME_2}'s team can\ntake care of things underground.")), VARIANT_DEFAULT(_(" We'll keep doing the best we\ncan in our rescue work.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, @@ -8631,12 +8631,12 @@ static const struct ScriptCommand s_gs9_g60_s0_lives0_dlg0[] = { /* 0x81c45d8 */ { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" We got held up by the\ntrouble we had with $n2.")), + VARIANT(/* == */ 1, _(" We got held up by the\ntrouble we had with {NAME_2}.")), VARIANT(/* == */ 1, _(" But now, we're finally\ngoing off to the underground dungeon.")), VARIANT(/* == */ 1, _(" I know we're not leaving\ntill tomorrow, but I'm, like, buzzing with\nexcitement.")), VARIANT(/* == */ 1, _(" We should spend today\ngetting ready.")), VARIANT(/* == */ 1, _(" Let me know when you're\nready to roll.")), - VARIANT_DEFAULT(_(" We were held up by that\ntrouble with $n2...")), + VARIANT_DEFAULT(_(" We were held up by that\ntrouble with {NAME_2}...")), VARIANT_DEFAULT(_(" But now, we're getting the\nchance to go to the underground dungeon.")), VARIANT_DEFAULT(_(" We're not leaving until\ntomorrow, but I'm jumpy with anticipation.")), VARIANT_DEFAULT(_(" Let's spend today getting\nready for the dungeon.")), @@ -8784,12 +8784,12 @@ static const struct ScriptCommand s_gs9_g62_s0_lives0_dlg0[] = { /* 0x81c5060 */ WAIT(30), { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Morning, $n0!\nGet a good night's sleep?")), - VARIANT_DEFAULT(_(" Good morning, $n0!\nDid you sleep well?")), + VARIANT(/* == */ 1, _(" Morning, {NAME_0}!\nGet a good night's sleep?")), + VARIANT_DEFAULT(_(" Good morning, {NAME_0}!\nDid you sleep well?")), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" This is it!#W\nLet's give it our best and rescue\n$n2!")), - VARIANT_DEFAULT(_(" OK, this is it!#W\nLet's do our best and save $n2's\nteam!")), + VARIANT(/* == */ 1, _(" This is it!{WAIT_PRESS}\nLet's give it our best and rescue\n{NAME_2}!")), + VARIANT_DEFAULT(_(" OK, this is it!{WAIT_PRESS}\nLet's do our best and save {NAME_2}'s\nteam!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), BGM_FADEOUT(150), @@ -8870,8 +8870,8 @@ static const struct ScriptCommand s_gs9_g63_s0_lives0_dlg0[] = { /* 0x81c56b4 */ WAIT(30), { 0x2e, 0x02, 0x0001, 0x00000005, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ............#W\nWe didn't do well, did we?")), - VARIANT_DEFAULT(_(" ............#W\nWe didn't do very well, did we?")), + VARIANT(/* == */ 1, _(" ............{WAIT_PRESS}\nWe didn't do well, did we?")), + VARIANT_DEFAULT(_(" ............{WAIT_PRESS}\nWe didn't do very well, did we?")), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" But we knew that it would\nbe a tough dungeon.\nWe don't need to get down on ourselves.")), @@ -8955,9 +8955,9 @@ static const struct ScriptCommand s_gs9_g65_s0_lives0_dlg0[] = { /* 0x81c5cd4 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" Morning!\nGet a good night's sleep?")), - VARIANT(/* == */ 1, _(" This is it!#W\nLet's roll, $n0!\nTo the sky we go!")), + VARIANT(/* == */ 1, _(" This is it!{WAIT_PRESS}\nLet's roll, {NAME_0}!\nTo the sky we go!")), VARIANT_DEFAULT(_(" Good morning!\nDid you sleep well?")), - VARIANT_DEFAULT(_(" This is it!#W\nLet's go, $n0!\nWe're off to the sky!")), + VARIANT_DEFAULT(_(" This is it!{WAIT_PRESS}\nLet's go, {NAME_0}!\nWe're off to the sky!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -9014,19 +9014,19 @@ static const struct ScriptCommand s_gs9_g67_s0_lives0_dlg0[] = { /* 0x81c605c */ MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" Morning!")), VARIANT(/* == */ 1, _(" Even while we do this,\nthat falling star is coming closer and\ncloser...")), - VARIANT(/* == */ 1, _(" The #CDSky Tower#R is one harsh\nplace...")), + VARIANT(/* == */ 1, _(" The {COLOR YELLOW_D}Sky Tower{RESET} is one harsh\nplace...")), VARIANT(/* == */ 1, _(" But I'm not giving up!")), - VARIANT(/* == */ 1, _(" Let's give it our best,\n$n0!")), + VARIANT(/* == */ 1, _(" Let's give it our best,\n{NAME_0}!")), VARIANT(/* == */ 3, _(" Good morning!")), VARIANT(/* == */ 3, _(" Even now, that falling star\nis getting closer and closer...")), - VARIANT(/* == */ 3, _(" The #CDSky Tower#R is incredibly\nharsh too...")), + VARIANT(/* == */ 3, _(" The {COLOR YELLOW_D}Sky Tower{RESET} is incredibly\nharsh too...")), VARIANT(/* == */ 3, _(" But I'm not giving up!")), - VARIANT(/* == */ 3, _(" Let's keep doing our best,\n$n0!")), + VARIANT(/* == */ 3, _(" Let's keep doing our best,\n{NAME_0}!")), VARIANT_DEFAULT(_(" Good morning!")), VARIANT_DEFAULT(_(" That falling star is coming\ncloser and closer even now...")), - VARIANT_DEFAULT(_(" The #CDSky Tower#R is also very\nchallenging...")), + VARIANT_DEFAULT(_(" The {COLOR YELLOW_D}Sky Tower{RESET} is also very\nchallenging...")), VARIANT_DEFAULT(_(" But I'm not giving up!")), - VARIANT_DEFAULT(_(" Let's keep doing our best,\n$n0!")), + VARIANT_DEFAULT(_(" Let's keep doing our best,\n{NAME_0}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -9580,7 +9580,7 @@ static const struct ScriptCommand s_gs9_g69_s0_lives0_dlg0[] = { /* 0x81c817c */ { 0x89, 0x15, 0x0080, 0x00000000, 0x00000000, NULL }, { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0002, -0x00000002, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n0!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" {NAME_0}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, { 0x89, 0x18, 0x0080, 0x00000000, 0x00000000, NULL }, @@ -9590,18 +9590,18 @@ static const struct ScriptCommand s_gs9_g69_s0_lives0_dlg0[] = { /* 0x81c817c */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x0f, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, hi, $n2 and\n$n3.#W\nWhat's the matter?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, hi, {NAME_2} and\n{NAME_3}.{WAIT_PRESS}\nWhat's the matter?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's Snubbull!#W\nThere's something weird going on!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's Snubbull!{WAIT_PRESS}\nThere's something weird going on!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Snubbull is weird...?#W\nWeird, how?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Snubbull is weird...?{WAIT_PRESS}\nWeird, how?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -9612,7 +9612,7 @@ static const struct ScriptCommand s_gs9_g69_s0_lives0_dlg0[] = { /* 0x81c817c */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0!\nLet's go to the square!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0}!\nLet's go to the square!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -9724,11 +9724,11 @@ static const struct ScriptCommand s_gs9_g71_s0_lives0_dlg0[] = { /* 0x81c899c */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Oh, yeah, $n0!\nHang on a second!")), + VARIANT(/* == */ 1, _(" Oh, yeah, {NAME_0}!\nHang on a second!")), VARIANT(/* == */ 1, _(" There's something I wanted\nto bounce off you before we go to any\ndungeon.")), - VARIANT(/* == */ 3, _(" Oh, yeah, $n0!\nHold on a second!")), + VARIANT(/* == */ 3, _(" Oh, yeah, {NAME_0}!\nHold on a second!")), VARIANT(/* == */ 3, _(" There's something I wanted\nto discuss before we go to a dungeon.")), - VARIANT_DEFAULT(_(" Oh, yeah, $n0!\nWait a second!")), + VARIANT_DEFAULT(_(" Oh, yeah, {NAME_0}!\nWait a second!")), VARIANT_DEFAULT(_(" There's something I wanted\nto talk over with you before we go to\na dungeon.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), @@ -9774,7 +9774,7 @@ static const struct ScriptCommand s_gs9_g72_s0_lives0_dlg0[] = { /* 0x81c8d90 */ { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" You know how we always\nwent into dungeons, me and you,\n$n0?")), + VARIANT(/* == */ 1, _(" You know how we always\nwent into dungeons, me and you,\n{NAME_0}?")), VARIANT(/* == */ 1, _(" But I think we're going to\nbe facing even more different types of\ndungeons from now on.")), VARIANT(/* == */ 1, _(" With just us two, I think\nwe might have some tough times.")), VARIANT(/* == */ 1, _(" So, this is what I was\nthinking...")), @@ -9782,7 +9782,7 @@ static const struct ScriptCommand s_gs9_g72_s0_lives0_dlg0[] = { /* 0x81c8d90 */ VARIANT(/* == */ 1, _(" For instance, how about\npicking different rescue team leaders\nand members to go to dungeons?")), VARIANT(/* == */ 1, _(" Depending on the dungeon,\nwe might not even get to go anymore...")), VARIANT(/* == */ 1, _(" But that way, we could have\ndifferent types of Pokémon go in.\nI think that'd be good for us.")), - VARIANT(/* == */ 3, _(" You know how we always\ngo to dungeons together, $n0?")), + VARIANT(/* == */ 3, _(" You know how we always\ngo to dungeons together, {NAME_0}?")), VARIANT(/* == */ 3, _(" But from now on, I expect\nto be seeing different types of dungeons.")), VARIANT(/* == */ 3, _(" With just us, I think there\nwill be times when we find it tough going.")), VARIANT(/* == */ 3, _(" So, this is my idea.")), @@ -9790,7 +9790,7 @@ static const struct ScriptCommand s_gs9_g72_s0_lives0_dlg0[] = { /* 0x81c8d90 */ VARIANT(/* == */ 3, _(" How about we make it\npossible to pick different leaders and\nmembers for rescue teams?")), VARIANT(/* == */ 3, _(" I think there will even be\ntimes we don't go on rescues, depending\non the dungeon.")), VARIANT(/* == */ 3, _(" But I think that will let us\nmount rescues with Pokémon of different\ntypes. It will make the team better.")), - VARIANT_DEFAULT(_(" You know how we always\ngo to dungeons together, $n0?")), + VARIANT_DEFAULT(_(" You know how we always\ngo to dungeons together, {NAME_0}?")), VARIANT_DEFAULT(_(" But I think we'll be seeing\nall sorts of different dungeons from\nnow on...")), VARIANT_DEFAULT(_(" I think some of them will\nbe tough even for us.")), VARIANT_DEFAULT(_(" So, I have an idea.")), @@ -9799,11 +9799,11 @@ static const struct ScriptCommand s_gs9_g72_s0_lives0_dlg0[] = { /* 0x81c8d90 */ VARIANT_DEFAULT(_(" That might mean we won't\nbe going on rescues to certain dungeons...")), VARIANT_DEFAULT(_(" But that will let us handle\nrescues better by having more Pokémon\ntypes available.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, - ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" What do you say?#W\n$n0, do you think it would be\ngood if we could make anyone the leader?")), + ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" What do you say?{WAIT_PRESS}\n{NAME_0}, do you think it would be\ngood if we could make anyone the leader?")), ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), - VARIANT(/* == */ 1, _(" What do you say?#W\n$n0, do you think it would be\ngood if we could make anyone the leader?")), - VARIANT(/* == */ 3, _(" Do you like the idea?#W\n$n0, do you think it'd be good\nto be able to freely choose leaders?")), - VARIANT_DEFAULT(_(" Do you like the idea?#W\n$n0, do you think it'd be good to\nbe able to freely choose leaders?")), + VARIANT(/* == */ 1, _(" What do you say?{WAIT_PRESS}\n{NAME_0}, do you think it would be\ngood if we could make anyone the leader?")), + VARIANT(/* == */ 3, _(" Do you like the idea?{WAIT_PRESS}\n{NAME_0}, do you think it'd be good\nto be able to freely choose leaders?")), + VARIANT_DEFAULT(_(" Do you like the idea?{WAIT_PRESS}\n{NAME_0}, do you think it'd be good to\nbe able to freely choose leaders?")), CHOICE(/* label */ 2, _("Yes.")), CHOICE(/* label */ 3, _("No.")), LABEL(3), /* = 0x03 */ @@ -9824,11 +9824,11 @@ static const struct ScriptCommand s_gs9_g72_s0_lives0_dlg0[] = { /* 0x81c8d90 */ VARIANT_DEFAULT(_(" Don't you think it would be\nbetter if different types of Pokémon\nwent in instead of us?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, - ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" Right, $n0?#W\nIt's better to be able to change leaders\nand members in any way, agreed?")), + ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" Right, {NAME_0}?{WAIT_PRESS}\nIt's better to be able to change leaders\nand members in any way, agreed?")), ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), - VARIANT(/* == */ 1, _(" Right, $n0?#W\nIt's better to be able to change leaders\nand members in any way, agreed?")), - VARIANT(/* == */ 3, _(" Right, $n0?#W\nYou agree that it'd be better if we could\nfreely choose team leaders and members?")), - VARIANT_DEFAULT(_(" Right, $n0?#W\nYou agree that it'd be better if we could\nfreely choose team leaders and members?")), + VARIANT(/* == */ 1, _(" Right, {NAME_0}?{WAIT_PRESS}\nIt's better to be able to change leaders\nand members in any way, agreed?")), + VARIANT(/* == */ 3, _(" Right, {NAME_0}?{WAIT_PRESS}\nYou agree that it'd be better if we could\nfreely choose team leaders and members?")), + VARIANT_DEFAULT(_(" Right, {NAME_0}?{WAIT_PRESS}\nYou agree that it'd be better if we could\nfreely choose team leaders and members?")), CHOICE(/* label */ 2, _("Yes.")), CHOICE(/* label */ 3, _("No.")), LABEL(2), /* = 0x02 */ @@ -9838,27 +9838,27 @@ static const struct ScriptCommand s_gs9_g72_s0_lives0_dlg0[] = { /* 0x81c8d90 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Yeah, that's right!#W\nYou think so too, $n0!")), - VARIANT(/* == */ 1, _(" OK! That's settled!#W\nWe'll make it so we can choose the\nPokémon going into dungeons from now on.")), - VARIANT_DEFAULT(_(" Yup, that's right!#W\nI thought you'd agree, $n0!")), - VARIANT_DEFAULT(_(" OK! New rule!#W\nWe can now freely pick the Pokémon that\nare going into dungeons.")), + VARIANT(/* == */ 1, _(" Yeah, that's right!{WAIT_PRESS}\nYou think so too, {NAME_0}!")), + VARIANT(/* == */ 1, _(" OK! That's settled!{WAIT_PRESS}\nWe'll make it so we can choose the\nPokémon going into dungeons from now on.")), + VARIANT_DEFAULT(_(" Yup, that's right!{WAIT_PRESS}\nI thought you'd agree, {NAME_0}!")), + VARIANT_DEFAULT(_(" OK! New rule!{WAIT_PRESS}\nWe can now freely pick the Pokémon that\nare going into dungeons.")), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" This is how we should\npick a rescue team's leader.")), VARIANT_DEFAULT(_(" I think this is how we\nshould pick the leader of a team going\ninto a dungeon.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" In its Friend Area, face the\nteam member you want to make the leader,\nthen select #C6Make Leader#R on the menu.")), + VARIANT(/* == */ 1, _(" In its Friend Area, face the\nteam member you want to make the leader,\nthen select {COLOR YELLOW}Make Leader{RESET} on the menu.")), VARIANT(/* == */ 1, _(" That Pokémon will be the\nteam leader from then on.\nWe should do that before dungeons.")), VARIANT(/* == */ 1, _(" Oh, there's one more thing.")), VARIANT(/* == */ 1, _(" Let's also make it so\nthe leader can go to dungeons alone\nif it wants.")), - VARIANT(/* == */ 1, _(" Don't forget!#W To pick a\nleader,#W go to them in their Friend Area...#W\nand select #C6Make Leader#R.")), + VARIANT(/* == */ 1, _(" Don't forget!{WAIT_PRESS} To pick a\nleader,{WAIT_PRESS} go to them in their Friend Area...{WAIT_PRESS}\nand select {COLOR YELLOW}Make Leader{RESET}.")), VARIANT(/* == */ 1, _(" Let's get in the habit of\ngoing out to Friend Areas and picking\na leader before leaving for a dungeon.")), - VARIANT_DEFAULT(_(" In its Friend Area, face the\nteam member you want as the leader,\nthen select #C6Make Leader#R on the menu.")), + VARIANT_DEFAULT(_(" In its Friend Area, face the\nteam member you want as the leader,\nthen select {COLOR YELLOW}Make Leader{RESET} on the menu.")), VARIANT_DEFAULT(_(" That will make the Pokémon\nthe team leader.\nWe should do that before every dungeon.")), VARIANT_DEFAULT(_(" One more thing.")), VARIANT_DEFAULT(_(" We should make it so\na team leader can go into a dungeon\nalone if it wants.")), - VARIANT_DEFAULT(_(" Anyway...#W To choose the\nleader of a dungeon-bound team...#W\nIn a Friend Area, use...#W #C6Make Leader#R.")), + VARIANT_DEFAULT(_(" Anyway...{WAIT_PRESS} To choose the\nleader of a dungeon-bound team...{WAIT_PRESS}\nIn a Friend Area, use...{WAIT_PRESS} {COLOR YELLOW}Make Leader{RESET}.")), VARIANT_DEFAULT(_(" We should always choose\nthe team leader in its Friend Area\nbefore sending the team to any dungeon.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, @@ -9941,7 +9941,7 @@ static const struct ScriptCommand s_gs9_g74_s0_lives0_dlg0[] = { /* 0x81ca698 */ { 0x2e, 0x0e, 0x0001, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Uh...#W Um...") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Uh...{WAIT_PRESS} Um...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(465), CALL_SCRIPT(NOTICE_FUNC), @@ -9957,7 +9957,7 @@ static const struct ScriptCommand s_gs9_g74_s0_lives0_dlg0[] = { /* 0x81ca698 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Um...#W\nI'm Wynaut, and this is...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Um...{WAIT_PRESS}\nI'm Wynaut, and this is...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -9998,14 +9998,14 @@ static const struct ScriptCommand s_gs9_g74_s0_lives0_dlg0[] = { /* 0x81ca698 */ { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0003, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wobbuffet!!!#W") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wobbuffet!!!{WAIT_PRESS}") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Please help me.#W\nI have to go now.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Please help me.{WAIT_PRESS}\nI have to go now.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -10025,17 +10025,17 @@ static const struct ScriptCommand s_gs9_g74_s0_lives0_dlg0[] = { /* 0x81ca698 */ { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" What was that?\nWhat just happened?")), - VARIANT(/* == */ 1, _(" That little Pokémon...#W\nWhat was the boy called? Wynaut?")), + VARIANT(/* == */ 1, _(" That little Pokémon...{WAIT_PRESS}\nWhat was the boy called? Wynaut?")), VARIANT(/* == */ 1, _(" He wanted us to check the\nBulletin Board at the Pelipper Post Office.")), VARIANT(/* == */ 1, _(" Maybe those two have a\nproblem or something...")), VARIANT(/* == */ 1, _(" And they put up a rescue\njob notice on the Bulletin Board.")), - VARIANT(/* == */ 1, _(" There's only one way to\nfind out.#W Let's go to the Pelipper Post\nOffice and check the Bulletin Board.")), + VARIANT(/* == */ 1, _(" There's only one way to\nfind out.{WAIT_PRESS} Let's go to the Pelipper Post\nOffice and check the Bulletin Board.")), VARIANT_DEFAULT(_(" What was that?\nWhat was that all about?")), - VARIANT_DEFAULT(_(" That little Pokémon...#W\nDid the boy say he was Wynaut?")), + VARIANT_DEFAULT(_(" That little Pokémon...{WAIT_PRESS}\nDid the boy say he was Wynaut?")), VARIANT_DEFAULT(_(" I think he wanted us to look\nat the Bulletin Board at the Pelipper Post\nOffice.")), VARIANT_DEFAULT(_(" Maybe Wynaut and his\nfriend have a problem on their hands...")), VARIANT_DEFAULT(_(" So, they may have a help-\nwanted notice on the Bulletin Board.")), - VARIANT_DEFAULT(_(" Only one thing to do.#W\nLet's go check the Pelipper Post Office's\nBulletin Board.")), + VARIANT_DEFAULT(_(" Only one thing to do.{WAIT_PRESS}\nLet's go check the Pelipper Post Office's\nBulletin Board.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -10194,9 +10194,9 @@ static const struct ScriptCommand s_gs9_g75_s0_lives0_dlg0[] = { /* 0x81cb8b4 */ { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Just like we promised,\nwe punished that gang of $n4.")), + VARIANT(/* == */ 1, _(" Just like we promised,\nwe punished that gang of {NAME_4}.")), VARIANT(/* == */ 1, _(" I'm hoping that they'll\nsmarten up and settle down.")), - VARIANT_DEFAULT(_(" Like we promised, we\nshowed the $n4 gang they\nshouldn't monkey around.")), + VARIANT_DEFAULT(_(" Like we promised, we\nshowed the {NAME_4} gang they\nshouldn't monkey around.")), VARIANT_DEFAULT(_(" That should teach them not\nto be so wild.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -10218,7 +10218,7 @@ static const struct ScriptCommand s_gs9_g75_s0_lives0_dlg0[] = { /* 0x81cb8b4 */ { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY(203), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0's team received\n#+a peeled #C4Chestnut#R as their reward.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0}'s team received\n{CENTER_ALIGN}a peeled {COLOR GREEN}Chestnut{RESET} as their reward.") }, { 0xe1, 0x00, 0x00cb, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), @@ -10226,10 +10226,10 @@ static const struct ScriptCommand s_gs9_g75_s0_lives0_dlg0[] = { /* 0x81cb8b4 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ..................#W\nThis...#W\nA peeled Chestnut?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ..................{WAIT_PRESS}\nThis...{WAIT_PRESS}\nA peeled Chestnut?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes. It's a peeled Chestnut.#W\nYou see, we...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes. It's a peeled Chestnut.{WAIT_PRESS}\nYou see, we...") }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Don't have any money.") }, @@ -10241,16 +10241,16 @@ static const struct ScriptCommand s_gs9_g75_s0_lives0_dlg0[] = { /* 0x81cb8b4 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" So we can only give you\na Chestnut as our reward.#W\nAre you unhappy?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" So we can only give you\na Chestnut as our reward.{WAIT_PRESS}\nAre you unhappy?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Uh... No, no...#W\nWe're OK with this.")), + VARIANT(/* == */ 1, _(" Uh... No, no...{WAIT_PRESS}\nWe're OK with this.")), VARIANT(/* == */ 1, _(" Peeled Chestnuts are\ndelicious...")), - VARIANT(/* == */ 3, _(" Uh... No, no...#W\nWe're not upset.")), + VARIANT(/* == */ 3, _(" Uh... No, no...{WAIT_PRESS}\nWe're not upset.")), VARIANT(/* == */ 3, _(" I mean, peeled Chestnuts\nare tasty...")), - VARIANT_DEFAULT(_(" Um... No. No...#W\nWe're fine with this.")), + VARIANT_DEFAULT(_(" Um... No. No...{WAIT_PRESS}\nWe're fine with this.")), VARIANT_DEFAULT(_(" Peeled Chestnuts are\ndelicious...")), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, @@ -10281,7 +10281,7 @@ static const struct ScriptCommand s_gs9_g75_s0_lives0_dlg0[] = { /* 0x81cb8b4 */ WAIT(15), { 0x2e, 0x0f, 0x0001, 0x0000000c, 0x00000000, NULL }, { 0x2f, 0x00, 0x0001, 0x00000002, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Aww, no, the $n4\ngang!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Aww, no, the {NAME_4}\ngang!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -10292,7 +10292,7 @@ static const struct ScriptCommand s_gs9_g75_s0_lives0_dlg0[] = { /* 0x81cb8b4 */ MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" Did those goons...")), VARIANT(/* == */ 1, _(" Did they follow us here\nfor revenge?")), - VARIANT_DEFAULT(_(" That $n4 gang...")), + VARIANT_DEFAULT(_(" That {NAME_4} gang...")), VARIANT_DEFAULT(_(" Did they chase us here to\nget us back?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, BGM_SWITCH(10), @@ -10374,7 +10374,7 @@ static const struct ScriptCommand s_gs9_g75_s0_lives0_dlg0[] = { /* 0x81cb8b4 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They look like...#W\nThey're having a discussion.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They look like...{WAIT_PRESS}\nThey're having a discussion.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -10394,12 +10394,12 @@ static const struct ScriptCommand s_gs9_g75_s0_lives0_dlg0[] = { /* 0x81cb8b4 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ...Uh, listen.#W\nYou got something we want...") }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" That peeled Chestnut you\nhave...#W\nCan we have it?") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ...Uh, listen.{WAIT_PRESS}\nYou got something we want...") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" That peeled Chestnut you\nhave...{WAIT_PRESS}\nCan we have it?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" We, uh...#W\nLove peeled Chestnuts!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" We, uh...{WAIT_PRESS}\nLove peeled Chestnuts!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, @@ -10412,16 +10412,16 @@ static const struct ScriptCommand s_gs9_g75_s0_lives0_dlg0[] = { /* 0x81cb8b4 */ VARIANT_DEFAULT(_(" Can't you just get Chestnuts\nby yourselves?")), { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You know how Chestnuts\nhave that spiky shell?") }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Trying to peel that spiky\nshell... It hurts.#W\nAnd we end up losing our tempers!") }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" That's why we're asking.\nGive us that peeled Chestnut.#W\nWe'll do whatever you want.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Trying to peel that spiky\nshell... It hurts.{WAIT_PRESS}\nAnd we end up losing our tempers!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" That's why we're asking.\nGive us that peeled Chestnut.{WAIT_PRESS}\nWe'll do whatever you want.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hmmm...\n$n0, what do you think?") }, - ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" Should we give our peeled\nChestnut to the $n4 gang?")), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hmmm...\n{NAME_0}, what do you think?") }, + ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" Should we give our peeled\nChestnut to the {NAME_4} gang?")), CHOICE(/* label */ 15, _("Yes.")), CHOICE(/* label */ 16, _("No.")), LABEL(16), /* = 0x10 */ @@ -10463,9 +10463,9 @@ static const struct ScriptCommand s_gs9_g75_s0_lives0_dlg0[] = { /* 0x81cb8b4 */ { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+$n0 was suddenly attacked\n#+by the $n4 gang!") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+However...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The $n4 gang was weak.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0} was suddenly attacked\n{CENTER_ALIGN}by the {NAME_4} gang!") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}However...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The {NAME_4} gang was weak.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -10521,10 +10521,10 @@ static const struct ScriptCommand s_gs9_g75_s0_lives0_dlg0[] = { /* 0x81cb8b4 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, { 0x2f, 0x00, 0x0001, -0x00000001, -0x00000004, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hmmm...\n$n0, what do you think?") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The $n4 are saying\nthey'll do anything we want.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hmmm...\n{NAME_0}, what do you think?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The {NAME_4} are saying\nthey'll do anything we want.") }, WAIT(10), - ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" Should we give our peeled\nChestnut to the $n4 gang?")), + ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" Should we give our peeled\nChestnut to the {NAME_4} gang?")), CHOICE(/* label */ 15, _("Yes.")), CHOICE(/* label */ 16, _("No.")), LABEL(15), /* = 0x0f */ @@ -10545,15 +10545,15 @@ static const struct ScriptCommand s_gs9_g75_s0_lives0_dlg0[] = { /* 0x81cb8b4 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" I know!#W\nHey, $n4 gang, how are you guys\nwith physical labor?")), - VARIANT_DEFAULT(_(" I know!#W\nListen, $n4 gang, how are you\nwith physical labor?")), + VARIANT(/* == */ 1, _(" I know!{WAIT_PRESS}\nHey, {NAME_4} gang, how are you guys\nwith physical labor?")), + VARIANT_DEFAULT(_(" I know!{WAIT_PRESS}\nListen, {NAME_4} gang, how are you\nwith physical labor?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Physical labor?\nYou mean muscle work?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" We have muscles...#W\nBut we don't like work.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" We have muscles...{WAIT_PRESS}\nBut we don't like work.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, @@ -10574,10 +10574,10 @@ static const struct ScriptCommand s_gs9_g75_s0_lives0_dlg0[] = { /* 0x81cb8b4 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" You got it!#W\nOur rescue team base!")), + VARIANT(/* == */ 1, _(" You got it!{WAIT_PRESS}\nOur rescue team base!")), VARIANT(/* == */ 1, _(" If you'd help us build our\nrescue team base, we could give you this\npeeled Chestnut!")), VARIANT(/* == */ 1, _(" What do you say?")), - VARIANT_DEFAULT(_(" That's right!#W\nOur rescue team base!")), + VARIANT_DEFAULT(_(" That's right!{WAIT_PRESS}\nOur rescue team base!")), VARIANT_DEFAULT(_(" If you would help us with\nthe building of our rescue team base,\nwe could give you this peeled Chestnut!")), VARIANT_DEFAULT(_(" How does that sound?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -10603,7 +10603,7 @@ static const struct ScriptCommand s_gs9_g75_s0_lives0_dlg0[] = { /* 0x81cb8b4 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Really?#W\nYou'll help us?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Really?{WAIT_PRESS}\nYou'll help us?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Yeah.\nLeave it to us!") }, @@ -10614,7 +10614,7 @@ static const struct ScriptCommand s_gs9_g75_s0_lives0_dlg0[] = { /* 0x81cb8b4 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x02, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ...In return...#W\nHand over that peeled Chestnut.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ...In return...{WAIT_PRESS}\nHand over that peeled Chestnut.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, @@ -10665,7 +10665,7 @@ static const struct ScriptCommand s_gs9_g75_s0_lives0_dlg0[] = { /* 0x81cb8b4 */ { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sniff...\nThanks, everyone!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" OK!#W\nLet's get a move on!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" OK!{WAIT_PRESS}\nLet's get a move on!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, @@ -11171,10 +11171,10 @@ static const struct ScriptCommand s_gs9_g76_s0_station_sref_script[] = { /* 0x81 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(9), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And so...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Construction work began on\n#+the rescue team base of") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+$n0's team\n#+$t.") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Several days later...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And so...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Construction work began on\n{CENTER_ALIGN}the rescue team base of") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0}'s team\n{CENTER_ALIGN}{TEAM_NAME}.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Several days later...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -11223,7 +11223,7 @@ static const struct ScriptCommand s_gs9_g76_s0_lives0_dlg0[] = { /* 0x81d041c */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Whew...#W\nOur base is coming along quickly.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Whew...{WAIT_PRESS}\nOur base is coming along quickly.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -11267,8 +11267,8 @@ static const struct ScriptCommand s_gs9_g76_s0_lives0_dlg0[] = { /* 0x81d041c */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Yeah...#W But we're getting\nclose, right, $n4 gang?#W\n...#WHah?")), - VARIANT_DEFAULT(_(" That's true.#W But we're\ngetting close, right, $n4 gang?#W\n...#WHuh?")), + VARIANT(/* == */ 1, _(" Yeah...{WAIT_PRESS} But we're getting\nclose, right, {NAME_4} gang?{WAIT_PRESS}\n...{WAIT_PRESS}Hah?")), + VARIANT_DEFAULT(_(" That's true.{WAIT_PRESS} But we're\ngetting close, right, {NAME_4} gang?{WAIT_PRESS}\n...{WAIT_PRESS}Huh?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -11325,7 +11325,7 @@ static const struct ScriptCommand s_gs9_g76_s0_lives0_dlg0[] = { /* 0x81d041c */ { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" This work's too boring!#W\nHow do you expect us to keep going?") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" This work's too boring!{WAIT_PRESS}\nHow do you expect us to keep going?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x0c, 0x0004, 0x00000000, 0x00000000, NULL }, @@ -11347,12 +11347,12 @@ static const struct ScriptCommand s_gs9_g76_s0_lives0_dlg0[] = { /* 0x81d041c */ { 0x91, 0x04, 0x0001, 0x00000005, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Problem, $n0.")), - VARIANT(/* == */ 1, _(" It looks like the\n$n4 gang won't work unless\nwe get them another peeled Chestnut.")), - VARIANT(/* == */ 1, _(" I guess we have to find\nmore peeled Chestnuts and give them to\nthe $n4 gang.")), - VARIANT_DEFAULT(_(" We have a problem,\n$n0.")), - VARIANT_DEFAULT(_(" I don't think the\n$n4 gang will work unless\nwe get them another peeled Chestnut.")), - VARIANT_DEFAULT(_(" I guess we'll have to give\nthe $n4 gang any peeled\nChestnuts that we find.")), + VARIANT(/* == */ 1, _(" Problem, {NAME_0}.")), + VARIANT(/* == */ 1, _(" It looks like the\n{NAME_4} gang won't work unless\nwe get them another peeled Chestnut.")), + VARIANT(/* == */ 1, _(" I guess we have to find\nmore peeled Chestnuts and give them to\nthe {NAME_4} gang.")), + VARIANT_DEFAULT(_(" We have a problem,\n{NAME_0}.")), + VARIANT_DEFAULT(_(" I don't think the\n{NAME_4} gang will work unless\nwe get them another peeled Chestnut.")), + VARIANT_DEFAULT(_(" I guess we'll have to give\nthe {NAME_4} gang any peeled\nChestnuts that we find.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -11570,7 +11570,7 @@ static const struct ScriptCommand s_gs9_g77_s0_lives0_dlg2[] = { /* 0x81d1bf4 */ { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What?!\nYou don't have any?!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Then we can't work!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you want us to renovate\nyour rescue team base, bring us \na Chestnut. A peeled one!") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We see peeled #CIChestnuts#R\nsometimes in #CDUproar Forest#R.\nWe want them out of the shell.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We see peeled {COLOR GREEN_I}Chestnuts{RESET}\nsometimes in {COLOR YELLOW_D}Uproar Forest{RESET}.\nWe want them out of the shell.") }, JUMP_SCRIPT(END_TALK), LABEL(0), /* = 0x00 */ EXECUTE_STATION(-1, -1, 1), @@ -11594,7 +11594,7 @@ static const struct ScriptCommand s_gs9_g77_s0_lives1_dlg2[] = { /* 0x81d1e24 */ { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What?!\nYou don't have any?!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Then we can't work!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you want us to renovate\nyour rescue team base, bring us \na Chestnut. A peeled one!") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We see #CIChestnuts#R\nsometimes in #CDUproar Forest#R.\nWe want them out of the shell.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We see {COLOR GREEN_I}Chestnuts{RESET}\nsometimes in {COLOR YELLOW_D}Uproar Forest{RESET}.\nWe want them out of the shell.") }, JUMP_SCRIPT(END_TALK), LABEL(0), /* = 0x00 */ EXECUTE_STATION(-1, -1, 1), @@ -11618,7 +11618,7 @@ static const struct ScriptCommand s_gs9_g77_s0_lives2_dlg2[] = { /* 0x81d1f8c */ { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What?!\nYou don't have any?!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Then we can't work!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you want us to renovate\nyour rescue team base, bring us \na Chestnut. A peeled one!") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We see #CIChestnuts#R\nsometimes in #CDUproar Forest#R.\nWe want them out of the shell.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We see {COLOR GREEN_I}Chestnuts{RESET}\nsometimes in {COLOR YELLOW_D}Uproar Forest{RESET}.\nWe want them out of the shell.") }, JUMP_SCRIPT(END_TALK), LABEL(0), /* = 0x00 */ EXECUTE_STATION(-1, -1, 1), @@ -11746,9 +11746,9 @@ static const struct ScriptCommand s_gs9_g77_s1_lives0_dlg0[] = { /* 0x81d23bc */ BGM_FADEOUT(60), { 0x23, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+$n0 was suddenly attacked\n#+by the $n2 gang!") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+However...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The $n2 gang was weak.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0} was suddenly attacked\n{CENTER_ALIGN}by the {NAME_2} gang!") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}However...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The {NAME_2} gang was weak.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -11774,7 +11774,7 @@ static const struct ScriptCommand s_gs9_g77_s1_lives0_dlg0[] = { /* 0x81d23bc */ LABEL(3), /* = 0x03 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 peeled the spiny shell\n#+and handed the peeled Chestnut over.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0} peeled the spiny shell\n{CENTER_ALIGN}and handed the peeled Chestnut over.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), SELECT_ENTITIES(-1, 3), @@ -11814,7 +11814,7 @@ static const struct ScriptCommand s_gs9_g77_s1_lives0_dlg0[] = { /* 0x81d23bc */ WAIT(10), { 0x2e, 0x0b, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2f, 0x00, 0x0002, -0x00000002, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We'll carry in the materials\nand get the place built. Double-quick!#W\nYou just wait!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We'll carry in the materials\nand get the place built. Double-quick!{WAIT_PRESS}\nYou just wait!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, SCENARIO_ADVANCE(SCENARIO_SUB1, /*unused*/ 30), REMOVE_ITEMSTACK(ITEM_CHESTNUT), @@ -11825,11 +11825,11 @@ static const struct ScriptCommand s_gs9_g77_s1_lives0_dlg0[] = { /* 0x81d23bc */ { 0x23, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And so...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Supplied with another peeled Chestnut,\n#+the $n2 gang got motivated...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And returned to work on\n#+the rescue team base's renovation.") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+As a result...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The rescue team base's completion\n#+moved a little closer.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And so...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Supplied with another peeled Chestnut,\n{CENTER_ALIGN}the {NAME_2} gang got motivated...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And returned to work on\n{CENTER_ALIGN}the rescue team base's renovation.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}As a result...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The rescue team base's completion\n{CENTER_ALIGN}moved a little closer.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -12000,11 +12000,11 @@ static const struct ScriptCommand s_gs9_g78_s0_station_sref_script[] = { /* 0x81 { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(9), { 0x2d, 0x09, 0x0000, 0x0000006f, 0x00000000, NULL }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And so...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Supplied with another peeled Chestnut,\n#+the $n0 gang got motivated...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And returned to work on\n#+the rescue team base's renovation.") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And finally...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The rescue team base was completed!") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And so...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Supplied with another peeled Chestnut,\n{CENTER_ALIGN}the {NAME_0} gang got motivated...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And returned to work on\n{CENTER_ALIGN}the rescue team base's renovation.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And finally...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The rescue team base was completed!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -12016,12 +12016,12 @@ static const struct ScriptCommand s_gs9_g78_s0_station_sref_script[] = { /* 0x81 { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2d, 0x09, 0x0000, 0x0000006f, 0x00000000, NULL }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+As a result of everyone's desperate\n#+efforts to stop the $n0 gang...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The rescue team base was saved.") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+As for the $n4 gang, they\n#+promised to keep from rampaging...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+In return for more peeled Chestnuts,\n#+they returned to their forest.") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And that is how...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The chaotic renovation of\n#+the rescue team base came to an end.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}As a result of everyone's desperate\n{CENTER_ALIGN}efforts to stop the {NAME_0} gang...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The rescue team base was saved.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}As for the {NAME_4} gang, they\n{CENTER_ALIGN}promised to keep from rampaging...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}In return for more peeled Chestnuts,\n{CENTER_ALIGN}they returned to their forest.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And that is how...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The chaotic renovation of\n{CENTER_ALIGN}the rescue team base came to an end.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, CANCEL_ENTITIES(-1, 0), WAIT(1), @@ -12075,8 +12075,8 @@ static const struct ScriptCommand s_gs9_g78_s0_lives0_dlg0[] = { /* 0x81d3cc4 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Sniff...#W\nFinally...#W\nThis day has finally come...")), - VARIANT_DEFAULT(_(" Sniff...#W\nFinally...#W\nThis day has finally arrived...")), + VARIANT(/* == */ 1, _(" Sniff...{WAIT_PRESS}\nFinally...{WAIT_PRESS}\nThis day has finally come...")), + VARIANT_DEFAULT(_(" Sniff...{WAIT_PRESS}\nFinally...{WAIT_PRESS}\nThis day has finally arrived...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -12084,12 +12084,12 @@ static const struct ScriptCommand s_gs9_g78_s0_lives0_dlg0[] = { /* 0x81d3cc4 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0!\nIt's finally finished!")), - VARIANT(/* == */ 1, _(" Our... #C5$t#R's\nrescue team base!")), - VARIANT(/* == */ 3, _(" $n0!\nIt's finally ready!")), - VARIANT(/* == */ 3, _(" Our... #C5$t#R's\nrescue team base!")), - VARIANT_DEFAULT(_(" $n0!\nIt's ready! Finally!")), - VARIANT_DEFAULT(_(" Our... #C5$t#R's\nrescue team base!")), + VARIANT(/* == */ 1, _(" {NAME_0}!\nIt's finally finished!")), + VARIANT(/* == */ 1, _(" Our... {COLOR CYAN}{TEAM_NAME}{RESET}'s\nrescue team base!")), + VARIANT(/* == */ 3, _(" {NAME_0}!\nIt's finally ready!")), + VARIANT(/* == */ 3, _(" Our... {COLOR CYAN}{TEAM_NAME}{RESET}'s\nrescue team base!")), + VARIANT_DEFAULT(_(" {NAME_0}!\nIt's ready! Finally!")), + VARIANT_DEFAULT(_(" Our... {COLOR CYAN}{TEAM_NAME}{RESET}'s\nrescue team base!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x91, 0x08, 0x0002, 0x00000004, 0x00000000, NULL }, { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, @@ -12097,8 +12097,8 @@ static const struct ScriptCommand s_gs9_g78_s0_lives0_dlg0[] = { /* 0x81d3cc4 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Sniff... This is so cool.#W\nI can stare at it forever! Our rescue team\nbase is so cool.")), - VARIANT_DEFAULT(_(" Sniff... It's so cool.#W\nEvery time I take a look at our rescue\nteam base, I only see coolness.")), + VARIANT(/* == */ 1, _(" Sniff... This is so cool.{WAIT_PRESS}\nI can stare at it forever! Our rescue team\nbase is so cool.")), + VARIANT_DEFAULT(_(" Sniff... It's so cool.{WAIT_PRESS}\nEvery time I take a look at our rescue\nteam base, I only see coolness.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -12106,8 +12106,8 @@ static const struct ScriptCommand s_gs9_g78_s0_lives0_dlg0[] = { /* 0x81d3cc4 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" The way it looks like you\nis a nice touch, $n0!")), - VARIANT_DEFAULT(_(" Its resemblance to you\nis a nice touch, $n0!")), + VARIANT(/* == */ 1, _(" The way it looks like you\nis a nice touch, {NAME_0}!")), + VARIANT_DEFAULT(_(" Its resemblance to you\nis a nice touch, {NAME_0}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -12140,7 +12140,7 @@ static const struct ScriptCommand s_gs9_g78_s0_lives0_dlg0[] = { /* 0x81d3cc4 */ { 0x91, 0x0a, 0x0002, 0x00000001, 0x00000000, NULL }, WAIT(20), { 0x2e, 0x15, 0x0001, 0x0000000a, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sniff... Everyone...#W\nThank you!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sniff... Everyone...{WAIT_PRESS}\nThank you!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, @@ -12149,7 +12149,7 @@ static const struct ScriptCommand s_gs9_g78_s0_lives0_dlg0[] = { /* 0x81d3cc4 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0b, 0x0004, 0x00000000, 0x00000000, NULL }, { 0x2f, 0x00, 0x0004, -0x00000003, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Say, there.#W\nThere's something I want to ask...") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Say, there.{WAIT_PRESS}\nThere's something I want to ask...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe5, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -12158,7 +12158,7 @@ static const struct ScriptCommand s_gs9_g78_s0_lives0_dlg0[] = { /* 0x81d3cc4 */ { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" If this rescue team base is\nfinished...") }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Does that maybe mean...#W\nYou won't bring us peeled Chestnuts\nanymore?") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Does that maybe mean...{WAIT_PRESS}\nYou won't bring us peeled Chestnuts\nanymore?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -12166,10 +12166,10 @@ static const struct ScriptCommand s_gs9_g78_s0_lives0_dlg0[] = { /* 0x81d3cc4 */ MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" Hahaha!\nWell, what do you think?")), VARIANT(/* == */ 1, _(" We don't need to keep\nworking on the base anymore.")), - VARIANT(/* == */ 1, _(" To our $n4 gang!#W\nThanks for everything!")), + VARIANT(/* == */ 1, _(" To our {NAME_4} gang!{WAIT_PRESS}\nThanks for everything!")), VARIANT_DEFAULT(_(" Hahaha!\nOf course!")), VARIANT_DEFAULT(_(" We're finished with work\non our rescue team base.")), - VARIANT_DEFAULT(_(" To our $n4 gang!#W\nSincerely, thank you for everything!")), + VARIANT_DEFAULT(_(" To our {NAME_4} gang!{WAIT_PRESS}\nSincerely, thank you for everything!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, BGM_FADEOUT(120), { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, @@ -12551,9 +12551,9 @@ static const struct ScriptCommand s_gs9_g79_s0_lives0_dlg0[] = { /* 0x81d5d20 */ { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" That's cool, $n2.#W\nBut why'd you run away?")), + VARIANT(/* == */ 1, _(" That's cool, {NAME_2}.{WAIT_PRESS}\nBut why'd you run away?")), VARIANT(/* == */ 1, _(" Your letter said something\nabout not wanting to be a grown-up, but...")), - VARIANT_DEFAULT(_(" No problem, $n2.#W\nBut what made you run away in the first\nplace?")), + VARIANT_DEFAULT(_(" No problem, {NAME_2}.{WAIT_PRESS}\nBut what made you run away in the first\nplace?")), VARIANT_DEFAULT(_(" Your letter said something\nabout not wanting to become an adult...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -12588,18 +12588,18 @@ static const struct ScriptCommand s_gs9_g79_s0_lives0_dlg0[] = { /* 0x81d5d20 */ { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, { 0x2f, 0x00, 0x0001, -0x00000001, -0x00000004, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" More $n2?#W\nTwo of them, even...")), - VARIANT_DEFAULT(_(" More $n2?#W\nTwo of them...")), + VARIANT(/* == */ 1, _(" More {NAME_2}?{WAIT_PRESS}\nTwo of them, even...")), + VARIANT_DEFAULT(_(" More {NAME_2}?{WAIT_PRESS}\nTwo of them...")), WAIT(20), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey, $n2.#W\nWho are those guys?")), - VARIANT_DEFAULT(_(" Hey, $n2.#W\nWhat do they want?")), + VARIANT(/* == */ 1, _(" Hey, {NAME_2}.{WAIT_PRESS}\nWho are those guys?")), + VARIANT_DEFAULT(_(" Hey, {NAME_2}.{WAIT_PRESS}\nWhat do they want?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They're...#W\nMy friends.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They're...{WAIT_PRESS}\nMy friends.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -12608,7 +12608,7 @@ static const struct ScriptCommand s_gs9_g79_s0_lives0_dlg0[] = { /* 0x81d5d20 */ { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Now, come with us.#W\nThe grown-up ritual is ready for you.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Now, come with us.{WAIT_PRESS}\nThe grown-up ritual is ready for you.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -12624,21 +12624,21 @@ static const struct ScriptCommand s_gs9_g79_s0_lives0_dlg0[] = { /* 0x81d5d20 */ { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If I have to get that\npaw print on my back...#W\nI'd rather not become a grown-up!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If I have to get that\npaw print on my back...{WAIT_PRESS}\nI'd rather not become a grown-up!") }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" What is that?#W\nThis grown-up ritual?")), - VARIANT_DEFAULT(_(" What was that?#W\nWhat grown-up ritual?")), + VARIANT(/* == */ 1, _(" What is that?{WAIT_PRESS}\nThis grown-up ritual?")), + VARIANT_DEFAULT(_(" What was that?{WAIT_PRESS}\nWhat grown-up ritual?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" It is a custom among us $m2.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" It is a custom among us {POKEMON_2}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -12651,7 +12651,7 @@ static const struct ScriptCommand s_gs9_g79_s0_lives0_dlg0[] = { /* 0x81d5d20 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" They do that by taking the\nfront paw...#W\nand pushing doooooowwnn on the back...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" They do that by taking the\nfront paw...{WAIT_PRESS}\nand pushing doooooowwnn on the back...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -12668,8 +12668,8 @@ static const struct ScriptCommand s_gs9_g79_s0_lives0_dlg0[] = { /* 0x81d5d20 */ WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...I know!#W\nI have decided!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I shall join $n0's\nrescue team!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...I know!{WAIT_PRESS}\nI have decided!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I shall join {NAME_0}'s\nrescue team!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -12684,7 +12684,7 @@ static const struct ScriptCommand s_gs9_g79_s0_lives0_dlg0[] = { /* 0x81d5d20 */ { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" So...\nI won't return to the pack!#W\nThis is where I will dedicate myself!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" So...\nI won't return to the pack!{WAIT_PRESS}\nThis is where I will dedicate myself!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, @@ -12727,8 +12727,8 @@ static const struct ScriptCommand s_gs9_g79_s0_lives0_dlg0[] = { /* 0x81d5d20 */ { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Welcome to the team!#W\nWe expect your best, $n2!")), - VARIANT_DEFAULT(_(" You're on the team now!#W\nWe expect your best, $n2!")), + VARIANT(/* == */ 1, _(" Welcome to the team!{WAIT_PRESS}\nWe expect your best, {NAME_2}!")), + VARIANT_DEFAULT(_(" You're on the team now!{WAIT_PRESS}\nWe expect your best, {NAME_2}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -12737,7 +12737,7 @@ static const struct ScriptCommand s_gs9_g79_s0_lives0_dlg0[] = { /* 0x81d5d20 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" One thing I am good at is\ndrawing and painting.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" For example...#W\nLet me see...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" For example...{WAIT_PRESS}\nLet me see...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -12763,12 +12763,12 @@ static const struct ScriptCommand s_gs9_g79_s0_lives0_dlg0[] = { /* 0x81d5d20 */ { 0x3b, 0x1d, 0x0000, 0x00000000, 0x00000000, NULL }, COND_EQUAL(1, /* to label */ 16), FANFARE_PLAY(204), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n2 joined the rescue team!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_2} joined the rescue team!") }, { 0xe1, 0x00, 0x00cc, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x3b, 0x1e, 0x0000, 0x00000000, 0x00000000, NULL }, - ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to $n2?")), + ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to {NAME_2}?")), CHOICE(/* label */ 17, _("*Yes")), CHOICE(/* label */ 18, _("No")), LABEL(17), /* = 0x11 */ @@ -12777,15 +12777,15 @@ static const struct ScriptCommand s_gs9_g79_s0_lives0_dlg0[] = { /* 0x81d5d20 */ { 0x3b, 0x1f, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, SCENARIO_CALC(SCENARIO_SUB1, 32, 3), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I will find my own place\nin the #C4Sky Blue Plains#R.\nUntil then...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I will find my own place\nin the {COLOR GREEN}Sky Blue Plains{RESET}.\nUntil then...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, HALT, LABEL(16), /* = 0x10 */ SCENARIO_CALC(SCENARIO_SUB1, 32, 2), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...But wait! I see that\nmy Friend Area is full...#W\nThis is most unfortunate.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I could join your rescue\nteam if there were room for me in the\n#C4Sky Blue Plains#R...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...But wait! I see that\nmy Friend Area is full...{WAIT_PRESS}\nThis is most unfortunate.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I could join your rescue\nteam if there were room for me in the\n{COLOR GREEN}Sky Blue Plains{RESET}...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Please speak with me\nagain then.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), @@ -13084,7 +13084,7 @@ static const struct ScriptCommand s_gs9_g81_s0_station_sref_script[] = { /* 0x81 SELECT_MAP(9), { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -13106,7 +13106,7 @@ static const struct ScriptCommand s_gs9_g81_s0_lives0_dlg0[] = { /* 0x81d87d8 */ { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hi, $n2, long time!#W\nYou're here to visit us?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hi, {NAME_2}, long time!{WAIT_PRESS}\nYou're here to visit us?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), MSG_VAR(2, PARTNER_TALK_KIND, 1), @@ -13116,9 +13116,9 @@ static const struct ScriptCommand s_gs9_g81_s0_lives0_dlg0[] = { /* 0x81d87d8 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n2, you must be\ninterested in our adventures!\nHahahaha!")), - VARIANT(/* == */ 3, _(" $n2, you must be\ninterested in our achievements!\nHahahaha!")), - VARIANT_DEFAULT(_(" $n2, you must be\nintrigued by our achievements!\nHahahaha!")), + VARIANT(/* == */ 1, _(" {NAME_2}, you must be\ninterested in our adventures!\nHahahaha!")), + VARIANT(/* == */ 3, _(" {NAME_2}, you must be\ninterested in our achievements!\nHahahaha!")), + VARIANT_DEFAULT(_(" {NAME_2}, you must be\nintrigued by our achievements!\nHahahaha!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(60), @@ -13144,7 +13144,7 @@ static const struct ScriptCommand s_gs9_g81_s0_lives0_dlg0[] = { /* 0x81d87d8 */ { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh...\nIs that all...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Hey, $n2!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Hey, {NAME_2}!") }, FANFARE_PLAY2(465), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -13159,18 +13159,18 @@ static const struct ScriptCommand s_gs9_g81_s0_lives0_dlg0[] = { /* 0x81d87d8 */ WAIT(30), { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh, hey!\nThere you are!") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Didn't know you'd be here.\nYou had me looking, $n2.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Didn't know you'd be here.\nYou had me looking, {NAME_2}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What is it?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Well, to the northeast of\n#CDMt. Thunder#R...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Well, to the northeast of\n{COLOR YELLOW_D}Mt. Thunder{RESET}...") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" There's a gigantic cave!") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" There wasn't anything like\nthat there before, hey?") }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" So, I figured $n2\nwould know something...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" So, I figured {NAME_2}\nwould know something...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), WAIT(60), @@ -13187,11 +13187,11 @@ static const struct ScriptCommand s_gs9_g81_s0_lives0_dlg0[] = { /* 0x81d87d8 */ WAIT(60), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I shall call it...#W\nThe #CDMeteor Cave#R.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I shall call it...{WAIT_PRESS}\nThe {COLOR YELLOW_D}Meteor Cave{RESET}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x00, 0x0001, 0x00000004, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" #CDMeteor Cave#R?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {COLOR YELLOW_D}Meteor Cave{RESET}?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It was when Rayquaza\ndestroyed the falling star...") }, @@ -13203,17 +13203,17 @@ static const struct ScriptCommand s_gs9_g81_s0_lives0_dlg0[] = { /* 0x81d87d8 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x00, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Say, $n3.")), - VARIANT_DEFAULT(_(" Um, $n3.")), + VARIANT(/* == */ 1, _(" Say, {NAME_3}.")), + VARIANT_DEFAULT(_(" Um, {NAME_3}.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(15), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Did you explore inside the\n#CDMeteor Cave#R?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Did you explore inside the\n{COLOR YELLOW_D}Meteor Cave{RESET}?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Uh, yeah...#W\nJust a little...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Uh, yeah...{WAIT_PRESS}\nJust a little...") }, { 0x2e, 0x0d, 0x0003, 0x00000003, 0x00000000, NULL }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" But the place was crawling\nwith these weird things...") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" It freaked me out.\nI couldn't stay there long...") }, @@ -13222,15 +13222,15 @@ static const struct ScriptCommand s_gs9_g81_s0_lives0_dlg0[] = { /* 0x81d87d8 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x0000000a, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Ahaha!\nWho would've thought it?\n$n3's kind of cowardly!")), - VARIANT_DEFAULT(_(" Hahaha!\nSurprise, surprise!\n$n3's kind of cowardly!")), + VARIANT(/* == */ 1, _(" Ahaha!\nWho would've thought it?\n{NAME_3}'s kind of cowardly!")), + VARIANT_DEFAULT(_(" Hahaha!\nSurprise, surprise!\n{NAME_3}'s kind of cowardly!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0003, 0x00000002, 0x00000000, NULL }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" What's that?!") }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Hey, you, $n1.#W\nIf you were to see that dungeon, you'd be\nintimidated too!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Hey, you, {NAME_1}.{WAIT_PRESS}\nIf you were to see that dungeon, you'd be\nintimidated too!") }, { 0x2e, 0x15, 0x0003, 0x00000003, 0x00000000, NULL }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I've never seen anything\nlike it before...") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" There were downright\nbizarre things in there that I'm not\nsure were even Pokémon.") }, @@ -13243,18 +13243,18 @@ static const struct ScriptCommand s_gs9_g81_s0_lives0_dlg0[] = { /* 0x81d87d8 */ { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x93, 0x04, 0x000a, 0x00000061, 0x00000000, NULL }, { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" $n2, do you have\nany idea what are in that place?") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" {NAME_2}, do you have\nany idea what are in that place?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...I draw a blank.#W\nI do not know...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...I draw a blank.{WAIT_PRESS}\nI do not know...") }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" However...#W\nThat cavern. The collision that caused \nit had to be enormous.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" However...{WAIT_PRESS}\nThat cavern. The collision that caused \nit had to be enormous.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If there were things that\nsurvived the crash...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Perhaps...\nOf this world they may not be.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" You mean...#W\nThey came from that falling star?") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" You mean...{WAIT_PRESS}\nThey came from that falling star?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -13267,8 +13267,8 @@ static const struct ScriptCommand s_gs9_g81_s0_lives0_dlg0[] = { /* 0x81d87d8 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0.\nWe should go investigate.#W\nThe #CDMeteor Cave#R.")), - VARIANT_DEFAULT(_(" $n0.\nWant to go investigate?#W\nThe #CDMeteor Cave#R.")), + VARIANT(/* == */ 1, _(" {NAME_0}.\nWe should go investigate.{WAIT_PRESS}\nThe {COLOR YELLOW_D}Meteor Cave{RESET}.")), + VARIANT_DEFAULT(_(" {NAME_0}.\nWant to go investigate?{WAIT_PRESS}\nThe {COLOR YELLOW_D}Meteor Cave{RESET}.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), @@ -13276,7 +13276,7 @@ static const struct ScriptCommand s_gs9_g81_s0_lives0_dlg0[] = { /* 0x81d87d8 */ { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, BGM_STOP, FANFARE_PLAY(205), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The rescue team gained\n#+access to the #CDMeteor Cave#R!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The rescue team gained\n{CENTER_ALIGN}access to the {COLOR YELLOW_D}Meteor Cave{RESET}!") }, { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), @@ -13491,14 +13491,14 @@ static const struct ScriptCommand s_gs9_g83_s0_lives0_dlg0[] = { /* 0x81da3bc */ FANFARE_PLAY2(469), CALL_SCRIPT(QUESTION_FUNC), { 0x2e, 0x07, 0x0000, 0x00000004, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Wh-what was that...?#W\nWhat just happened?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Wh-what was that...?{WAIT_PRESS}\nWhat just happened?") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Something huge flew by at an incredible\nspeed...") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("It seemed to be going...\nToward the mountain range in the north?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x91, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............#W\nYawwwwwn...\nStill sleepy...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............{WAIT_PRESS}\nYawwwwwn...\nStill sleepy...") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("It's still early.\nI'll catch a little more sleep...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -13547,23 +13547,23 @@ static const struct ScriptCommand s_gs9_g84_s0_lives0_dlg0[] = { /* 0x81da9c8 */ { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0003, 0x00000002, 0x00000000, NULL }, { 0x2f, 0x00, 0x0003, 0x00000002, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" $n2!#W\nYou're safe! Yesssss!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" {NAME_2}!{WAIT_PRESS}\nYou're safe! Yesssss!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x0e, 0x0002, 0x00000006, 0x00000000, NULL }, { 0x2f, 0x00, 0x0002, -0x00000002, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm so sorry, $n3.#W\nThat dungeon--it was too much for me.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm so sorry, {NAME_3}.{WAIT_PRESS}\nThat dungeon--it was too much for me.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Thank you for saving me.#W\nI appreciate it〜♪") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Thank you for saving me.{WAIT_PRESS}\nI appreciate it〜♪") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), { 0x2e, 0x15, 0x0002, 0x00000006, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ow, ow, ow...#W\nMy body--it hurts all over even now...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ow, ow, ow...{WAIT_PRESS}\nMy body--it hurts all over even now...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -13587,7 +13587,7 @@ static const struct ScriptCommand s_gs9_g84_s0_lives0_dlg0[] = { /* 0x81da9c8 */ { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" At first, I made an SOS Call\nbecause I did not want to lose this...") }, { 0x2e, 0x15, 0x0002, 0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But I will give it to you.#W\nHere! Your reward for my rescue〜♪") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But I will give it to you.{WAIT_PRESS}\nHere! Your reward for my rescue〜♪") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -13600,13 +13600,13 @@ static const struct ScriptCommand s_gs9_g84_s0_lives0_dlg0[] = { /* 0x81da9c8 */ { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x91, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They say if you take that\nstone to the #CDWish Cave#R...\nTo its very depths...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They say if you take that\nstone to the {COLOR YELLOW_D}Wish Cave{RESET}...\nTo its very depths...") }, { 0x2e, 0x15, 0x0002, 0x00000003, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Wonder of wonders!#W\nA wish--it comes true!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Wonder of wonders!{WAIT_PRESS}\nA wish--it comes true!") }, { 0x2e, 0x15, 0x0002, 0x00000001, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You see〜♪\nA rich reward, won't you agree?") }, { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" However...#W\nIf you lose that #CIWish Stone#R on\nthe way, the wish cannot come true.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" However...{WAIT_PRESS}\nIf you lose that {COLOR GREEN_I}Wish Stone{RESET} on\nthe way, the wish cannot come true.") }, { 0x2e, 0x15, 0x0002, 0x00000001, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" For me, it was impossible.\nBut you must try〜♪") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -13657,9 +13657,9 @@ static const struct ScriptCommand s_gs9_g84_s0_lives1_dlg2[] = { /* 0x81db3d8 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" They say if you take that\nWish Stone to the Wish Cave...\nTo its very depths...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wonder of wonders!#W\nA wish--it comes true!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wonder of wonders!{WAIT_PRESS}\nA wish--it comes true!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You see〜♪\nA rich reward, won't you agree?") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" However...#W\nIf you lose that #CIWish Stone#R on\nthe way, the wish cannot come true.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" However...{WAIT_PRESS}\nIf you lose that {COLOR GREEN_I}Wish Stone{RESET} on\nthe way, the wish cannot come true.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" For me, it was impossible.\nBut you must try〜♪") }, JUMP_SCRIPT(END_TALK), }; @@ -13718,27 +13718,27 @@ static const struct ScriptCommand s_gs9_g85_s0_lives0_dlg0[] = { /* 0x81db740 */ WAIT(30), { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n2 is our newest\nfriend!#W\nGlad to have you with us!")), - VARIANT_DEFAULT(_(" From now on, $n2\nis our friend!#W\nGlad to meet you!")), + VARIANT(/* == */ 1, _(" {NAME_2} is our newest\nfriend!{WAIT_PRESS}\nGlad to have you with us!")), + VARIANT_DEFAULT(_(" From now on, {NAME_2}\nis our friend!{WAIT_PRESS}\nGlad to meet you!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(15), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The latest recruit to\n#+Team #C5$t#R!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The latest recruit to\n{CENTER_ALIGN}Team {COLOR CYAN}{TEAM_NAME}{RESET}!") }, FANFARE_PLAY(204), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n2 joined\n#+the rescue team!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_2} joined\n{CENTER_ALIGN}the rescue team!") }, { 0xe1, 0x00, 0x00cc, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x3b, 0x2a, 0x0000, 0x00000000, 0x00000000, NULL }, COND_EQUAL(0, /* to label */ 2), COND_EQUAL(1, /* to label */ 2), WAIT(10), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+And more!") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The Friend Area\n#+#CH$h#R was obtained!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And more!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The Friend Area\n{CENTER_ALIGN}{COLOR GREEN_H}{FRIEND_AREA}{RESET} was obtained!") }, FANFARE_PLAY(212), { 0xe1, 0x00, 0x00d4, 0x00000000, 0x00000000, NULL }, { 0x31, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(2), /* = 0x02 */ { 0x3b, 0x2b, 0x0000, 0x00000000, 0x00000000, NULL }, - ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to $n2?")), + ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to {NAME_2}?")), CHOICE(/* label */ 3, _("*Yes.")), CHOICE(/* label */ 4, _("No.")), LABEL(3), /* = 0x03 */ @@ -13794,16 +13794,16 @@ static const struct ScriptCommand s_gs9_g86_s0_lives0_dlg0[] = { /* 0x81dbc14 */ { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh!\nLate riser!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Like always, slow to rise,\naren't you, Team #C5$t#R! Kekeke!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Like always, slow to rise,\naren't you, Team {COLOR CYAN}{TEAM_NAME}{RESET}! Kekeke!") }, { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Tchah!#W\nBut that's not what I came here to say.\nNot today.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It irks me to say this, but...#W\nI need your help.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Can you take me up\n#CDMt. Freeze#R?") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I tried going up over and\nover, but...#W Keh...\nIt's steep and harsh...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ninetales is up on\n#CDMt. Freeze#R.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Tchah!{WAIT_PRESS}\nBut that's not what I came here to say.\nNot today.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It irks me to say this, but...{WAIT_PRESS}\nI need your help.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Can you take me up\n{COLOR YELLOW_D}Mt. Freeze{RESET}?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I tried going up over and\nover, but...{WAIT_PRESS} Keh...\nIt's steep and harsh...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ninetales is up on\n{COLOR YELLOW_D}Mt. Freeze{RESET}.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I've got to see Ninetales.\nI'm prepared to do whatever it takes.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, - ASK3(FALSE, /*default*/ -1, /* speaker */ 2, _(" That's why I'm asking you.#W\nTake me up #CDMt. Freeze#R.")), + ASK3(FALSE, /*default*/ -1, /* speaker */ 2, _(" That's why I'm asking you.{WAIT_PRESS}\nTake me up {COLOR YELLOW_D}Mt. Freeze{RESET}.")), CHOICE(/* label */ 2, _("Yes.")), CHOICE(/* label */ 3, _("No.")), LABEL(2), /* = 0x02 */ @@ -13826,24 +13826,24 @@ static const struct ScriptCommand s_gs9_g86_s0_lives0_dlg0[] = { /* 0x81dbc14 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#W\nI'd like to say that, but I need your help.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}\nI'd like to say that, but I need your help.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I've got to see Ninetales.\nI'm prepared to do whatever it takes.") }, - ASK3(FALSE, /*default*/ -1, /* speaker */ 2, _(" That's why I'm asking you.#W\nTake me up #CDMt. Freeze#R!")), + ASK3(FALSE, /*default*/ -1, /* speaker */ 2, _(" That's why I'm asking you.{WAIT_PRESS}\nTake me up {COLOR YELLOW_D}Mt. Freeze{RESET}!")), CHOICE(/* label */ 2, _("Yes.")), CHOICE(/* label */ 3, _("No.")), LABEL(4), /* = 0x04 */ WAIT(10), BGM_STOP, FANFARE_PLAY(204), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n2 can now tag\n#+along with the rescue team!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_2} can now tag\n{CENTER_ALIGN}along with the rescue team!") }, { 0xe1, 0x00, 0x00cc, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, BGM_SWITCH(1), WAIT(30), { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The only place I want to go\nis #CDMt. Freeze#R.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The only place I want to go\nis {COLOR YELLOW_D}Mt. Freeze{RESET}.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm not about to tag along\nif you're going to other dungeons.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'll only tag along when you\ngo off to #CDMt. Freeze#R. Keke!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'll only tag along when you\ngo off to {COLOR YELLOW_D}Mt. Freeze{RESET}. Keke!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -13893,9 +13893,9 @@ static const struct ScriptCommand s_gs9_g87_s0_lives0_dlg2[] = { /* 0x81dc588 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The only place I want to go\nis #CDMt. Freeze#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The only place I want to go\nis {COLOR YELLOW_D}Mt. Freeze{RESET}.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm not about to tag along\nif you're going to other dungeons.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll only tag along when you\ngo off to #CDMt. Freeze#R. Keke!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll only tag along when you\ngo off to {COLOR YELLOW_D}Mt. Freeze{RESET}. Keke!") }, JUMP_SCRIPT(END_TALK), }; @@ -13922,7 +13922,7 @@ static const struct ScriptCommand s_gs9_g88_s0_lives0_dlg0[] = { /* 0x81dc6c4 */ WAIT(30), { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Keke!\nYou did good today.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Next, we go to that\n#CDMurky Cave#R place...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Next, we go to that\n{COLOR YELLOW_D}Murky Cave{RESET} place...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That sounds like another\nchallenging place, so I'll need your\nhelp still! Keke!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -13943,9 +13943,9 @@ static const struct ScriptCommand s_gs9_g88_s0_lives1_dlg2[] = { /* 0x81dc878 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" They say, if you take that\nWish Stone to the Wish Cave...\nTo its very depths...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wonder of wonders!#W\nA wish--it comes true!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wonder of wonders!{WAIT_PRESS}\nA wish--it comes true!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You see〜♪\nA rich reward, won't you agree?") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" However...#W\nIf you lose that #CIWish Stone#R on\nthe way, the wish cannot come true.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" However...{WAIT_PRESS}\nIf you lose that {COLOR GREEN_I}Wish Stone{RESET} on\nthe way, the wish cannot come true.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" For me, it was impossible.\nBut you must try〜♪") }, JUMP_SCRIPT(END_TALK), }; @@ -13977,7 +13977,7 @@ static const struct ScriptCommand s_gs9_g89_s0_lives0_dlg0[] = { /* 0x81dca48 */ { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh!\nLate riser!") }, - ASK3(FALSE, /*default*/ -1, /* speaker */ 2, _(" It's the #CDMurky Cave#R next.#W\nI'll need your help for that.")), + ASK3(FALSE, /*default*/ -1, /* speaker */ 2, _(" It's the {COLOR YELLOW_D}Murky Cave{RESET} next.{WAIT_PRESS}\nI'll need your help for that.")), CHOICE(/* label */ 2, _("Yes.")), CHOICE(/* label */ 3, _("No.")), LABEL(2), /* = 0x02 */ @@ -13985,7 +13985,7 @@ static const struct ScriptCommand s_gs9_g89_s0_lives0_dlg0[] = { /* 0x81dca48 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_ENTITIES(-1, 1), { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Keke! Then, we'll go!\nTo the #CDMurky Cave#R!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Keke! Then, we'll go!\nTo the {COLOR YELLOW_D}Murky Cave{RESET}!") }, { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gardevoir's physical form...\nThat's where it is.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" For my sake, Gardevoir...") }, @@ -13995,8 +13995,8 @@ static const struct ScriptCommand s_gs9_g89_s0_lives0_dlg0[] = { /* 0x81dca48 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Nah, that's not important.#W\nI just feel like going! Keke!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...OK, go there for me!\nTo the #CDMurky Cave#R!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Nah, that's not important.{WAIT_PRESS}\nI just feel like going! Keke!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...OK, go there for me!\nTo the {COLOR YELLOW_D}Murky Cave{RESET}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, JUMP_LABEL(4), LABEL(3), /* = 0x03 */ @@ -14007,26 +14007,26 @@ static const struct ScriptCommand s_gs9_g89_s0_lives0_dlg0[] = { /* 0x81dca48 */ SELECT_ENTITIES(-1, 2), { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#W\nI thought that, but I need your help.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I have to go to the\n#CDMurky Cave#R.\nI'm prepared to do whatever it takes.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}\nI thought that, but I need your help.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I have to go to the\n{COLOR YELLOW_D}Murky Cave{RESET}.\nI'm prepared to do whatever it takes.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" When I get there, I...") }, { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - ASK3(FALSE, /*default*/ -1, /* speaker */ 2, _(" It doesn't matter.\nI just need your help.#W\nTake me to the #CDMurky Cave#R!")), + ASK3(FALSE, /*default*/ -1, /* speaker */ 2, _(" It doesn't matter.\nI just need your help.{WAIT_PRESS}\nTake me to the {COLOR YELLOW_D}Murky Cave{RESET}!")), CHOICE(/* label */ 2, _("Yes.")), CHOICE(/* label */ 3, _("No.")), LABEL(4), /* = 0x04 */ WAIT(10), BGM_STOP, FANFARE_PLAY(204), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n2 can now tag\n#+along with the rescue team!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_2} can now tag\n{CENTER_ALIGN}along with the rescue team!") }, { 0xe1, 0x00, 0x00cc, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, BGM_SWITCH(1), WAIT(30), { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The only place I want to go\nis the #CDMurky Cave#R.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The only place I want to go\nis the {COLOR YELLOW_D}Murky Cave{RESET}.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm not about to tag along\nif you're going to other dungeons.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'll only tag along when you\ngo off to the #CDMurky Cave#R. Keke!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'll only tag along when you\ngo off to the {COLOR YELLOW_D}Murky Cave{RESET}. Keke!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -14081,9 +14081,9 @@ static const struct ScriptCommand s_gs9_g90_s0_lives0_dlg2[] = { /* 0x81dd2d4 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The only place I want to go\nis the #CDMurky Cave#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The only place I want to go\nis the {COLOR YELLOW_D}Murky Cave{RESET}.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm not about to tag along\nif you're going to other dungeons.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll only tag along when you\ngo off to the #CDMurky Cave#R. Keke!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll only tag along when you\ngo off to the {COLOR YELLOW_D}Murky Cave{RESET}. Keke!") }, JUMP_SCRIPT(END_TALK), }; @@ -14109,20 +14109,20 @@ static const struct ScriptCommand s_gs9_g91_s0_lives0_dlg0[] = { /* 0x81dd410 */ { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x0e, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Thank you so much...#W\nMy curse has been lifted.") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" You did this for me, even\nthough I had never met you before...#W\nI have no idea how to thank you...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Thank you so much...{WAIT_PRESS}\nMy curse has been lifted.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" You did this for me, even\nthough I had never met you before...{WAIT_PRESS}\nI have no idea how to thank you...") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" From the bottom of my\nheart...") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Thank you so very much for\nsaving me.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x03, 0x0002, 0x00000044, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#W\nGood for you, $n3.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}\nGood for you, {NAME_3}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(45), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hey, $n0.\nThanks for getting me through this.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hey, {NAME_0}.\nThanks for getting me through this.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This is my thanks.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -14147,16 +14147,16 @@ static const struct ScriptCommand s_gs9_g91_s0_lives0_dlg0[] = { /* 0x81dd410 */ { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What is it now?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Your name...#W\nPlease, what is your name?") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Your name...{WAIT_PRESS}\nPlease, what is your name?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Keh!") }, { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The name's $n2.#W\nGlad to meet you.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The name's {NAME_2}.{WAIT_PRESS}\nGlad to meet you.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0003, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" My name is $n3.#W\nI am also glad to meet you.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" My name is {NAME_3}.{WAIT_PRESS}\nI am also glad to meet you.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_b01p02a_station.h b/src/data/ground/ground_data_b01p02a_station.h index 030a12b45..ab707ec29 100644 --- a/src/data/ground/ground_data_b01p02a_station.h +++ b/src/data/ground/ground_data_b01p02a_station.h @@ -255,7 +255,7 @@ static const struct ScriptCommand s_gs12_g3_s0_station_sref_script[] = { /* 0x81 SELECT_MAP(12), { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -334,7 +334,7 @@ static const struct ScriptCommand s_gs12_g6_s0_station_sref_script[] = { /* 0x81 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(12), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -469,11 +469,11 @@ static const struct ScriptCommand s_gs12_g9_s0_lives0_dlg0[] = { /* 0x81e2ec0 */ { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" It's $n0's house.")), + VARIANT(/* == */ 1, _(" It's {NAME_0}'s house.")), VARIANT(/* == */ 1, _(" It also happens to be our\nrescue team's base.")), - VARIANT(/* == */ 3, _(" It's $n0's house.")), + VARIANT(/* == */ 3, _(" It's {NAME_0}'s house.")), VARIANT(/* == */ 3, _(" It's also our rescue team's\nbase.")), - VARIANT_DEFAULT(_(" It's $n0's house.")), + VARIANT_DEFAULT(_(" It's {NAME_0}'s house.")), VARIANT_DEFAULT(_(" It's also our rescue team's\nbase.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -492,9 +492,9 @@ static const struct ScriptCommand s_gs12_g9_s0_lives0_dlg0[] = { /* 0x81e2ec0 */ { 0x2e, 0x03, 0x0001, 0x00000009, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" Hahaha, don't worry about it.\nNo need for thanks.")), - VARIANT(/* == */ 1, _(" But forget that...#W\nWhat happened to you?")), + VARIANT(/* == */ 1, _(" But forget that...{WAIT_PRESS}\nWhat happened to you?")), VARIANT_DEFAULT(_(" Hahaha, it's OK.\nThere's no need for thanks.")), - VARIANT_DEFAULT(_(" Rather than that...#W\nWhat happened?")), + VARIANT_DEFAULT(_(" Rather than that...{WAIT_PRESS}\nWhat happened?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -519,10 +519,10 @@ static const struct ScriptCommand s_gs12_g9_s0_lives0_dlg0[] = { /* 0x81e2ec0 */ { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes! That!#W\nIsn't it exciting?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes! That!{WAIT_PRESS}\nIsn't it exciting?") }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ever since then, I've been\ntraveling all over in hopes of seeing\nthe mirage Pokémon...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But I've had no luck...#W\nFinally, I became dizzy from fatigue...#W\nAnd I must have passed out.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But I've had no luck...{WAIT_PRESS}\nFinally, I became dizzy from fatigue...{WAIT_PRESS}\nAnd I must have passed out.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -531,7 +531,7 @@ static const struct ScriptCommand s_gs12_g9_s0_lives0_dlg0[] = { /* 0x81e2ec0 */ FANFARE_PLAY2(465), CALL_SCRIPT(SHOCK_FUNC), { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I...#W\nI'm giving up on my quest...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I...{WAIT_PRESS}\nI'm giving up on my quest...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm simply worn out...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -539,13 +539,13 @@ static const struct ScriptCommand s_gs12_g9_s0_lives0_dlg0[] = { /* 0x81e2ec0 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hold up a second!#W\nAre you sure you want to give up that\neasily?")), - VARIANT_DEFAULT(_(" Wait a second!#W\nAre you sure you won't regret giving up\nthat easily?")), + VARIANT(/* == */ 1, _(" Hold up a second!{WAIT_PRESS}\nAre you sure you want to give up that\neasily?")), + VARIANT_DEFAULT(_(" Wait a second!{WAIT_PRESS}\nAre you sure you won't regret giving up\nthat easily?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But I...#W\nI've reached my physical limit...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But I...{WAIT_PRESS}\nI've reached my physical limit...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If I push myself any\nfurther, I will collapse again.\nIt's not good for my health...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -557,7 +557,7 @@ static const struct ScriptCommand s_gs12_g9_s0_lives0_dlg0[] = { /* 0x81e2ec0 */ WAIT(10), BGM_STOP, FANFARE_PLAY(212), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n1 received something\n#+from $n2.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_1} received something\n{CENTER_ALIGN}from {NAME_2}.") }, { 0xe1, 0x00, 0x00d4, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -575,14 +575,14 @@ static const struct ScriptCommand s_gs12_g9_s0_lives0_dlg0[] = { /* 0x81e2ec0 */ WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's a...#W\n#CIClear Wing#R...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's a...{WAIT_PRESS}\n{COLOR GREEN_I}Clear Wing{RESET}...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Clear Wing?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.#W\nI found it on my travels.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's a wing of some sort.\nIt's transparent, but...#W\nIf you hold it up like this...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.{WAIT_PRESS}\nI found it on my travels.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's a wing of some sort.\nIt's transparent, but...{WAIT_PRESS}\nIf you hold it up like this...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), CANCEL_EFFECTS(9, 1), @@ -615,14 +615,14 @@ static const struct ScriptCommand s_gs12_g9_s0_lives0_dlg0[] = { /* 0x81e2ec0 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey, are you OK?#W\nYou still look wobbly on your feet.")), - VARIANT_DEFAULT(_(" Wait, are you OK?#W\nYou're still unsteady on your feet.")), + VARIANT(/* == */ 1, _(" Hey, are you OK?{WAIT_PRESS}\nYou still look wobbly on your feet.")), + VARIANT_DEFAULT(_(" Wait, are you OK?{WAIT_PRESS}\nYou're still unsteady on your feet.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh, no.\nWhen I walk, I always totter.#W\nBye.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh, no.\nWhen I walk, I always totter.{WAIT_PRESS}\nBye.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -632,7 +632,7 @@ static const struct ScriptCommand s_gs12_g9_s0_lives0_dlg0[] = { /* 0x81e2ec0 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" #C4Clear Wing#R, huh...#W\nI don't have a clue what this is all about...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {COLOR GREEN}Clear Wing{RESET}, huh...{WAIT_PRESS}\nI don't have a clue what this is all about...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -641,12 +641,12 @@ static const struct ScriptCommand s_gs12_g9_s0_lives0_dlg0[] = { /* 0x81e2ec0 */ MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" But you are interested in\nthe mirage Pokémon, right?")), VARIANT(/* == */ 1, _(" For something like this,\nXatu'd be the one to ask.")), - VARIANT(/* == */ 1, _(" Xatu should be at the peak\nof the #CDGreat Canyon#R.")), - VARIANT(/* == */ 1, _(" We should go out there.\nTo the #CDGreat Canyon#R!")), + VARIANT(/* == */ 1, _(" Xatu should be at the peak\nof the {COLOR YELLOW_D}Great Canyon{RESET}.")), + VARIANT(/* == */ 1, _(" We should go out there.\nTo the {COLOR YELLOW_D}Great Canyon{RESET}!")), VARIANT_DEFAULT(_(" But the mirage Pokémon\ndoes interest you, right?")), VARIANT_DEFAULT(_(" I think Xatu is the one to\nask for something like this.")), - VARIANT_DEFAULT(_(" Xatu should be at the peak\nof the #CDGreat Canyon#R.")), - VARIANT_DEFAULT(_(" We should go!\nTo the #CDGreat Canyon#R!")), + VARIANT_DEFAULT(_(" Xatu should be at the peak\nof the {COLOR YELLOW_D}Great Canyon{RESET}.")), + VARIANT_DEFAULT(_(" We should go!\nTo the {COLOR YELLOW_D}Great Canyon{RESET}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, HALT, @@ -858,9 +858,9 @@ static const struct ScriptCommand s_gs12_g10_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(12), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+No...\n#+Morning, but only by time...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+A time so early in the morning\n#+that everyone is still in bed...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}No...\n{CENTER_ALIGN}Morning, but only by time...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}A time so early in the morning\n{CENTER_ALIGN}that everyone is still in bed...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -894,8 +894,8 @@ static const struct ScriptCommand s_gs12_g10_s0_lives0_dlg0[] = { /* 0x81e507c * { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x02, 0x0000, 0x0000000c, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Wha...#W What is it?!") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("What...#W\nWhat's happening outside?!") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Wha...{WAIT_PRESS} What is it?!") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("What...{WAIT_PRESS}\nWhat's happening outside?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x6a, 0x00, 0x0200, 0x00000000, 0x00000020, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -911,7 +911,7 @@ static const struct ScriptCommand s_gs12_g11_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(12), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Several hours later...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Several hours later...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -920,12 +920,12 @@ static const struct ScriptCommand s_gs12_g11_s0_station_sref_script[] = { /* 0x8 { 0x2e, 0x00, 0x0000, -0x00000002, 0x00000000, NULL }, { 0x2e, 0x00, 0x0001, -0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ............#W\nHey...")), - VARIANT(/* == */ 1, _(" Hey, $n0.")), - VARIANT(/* == */ 1, _(" ...$n0, wake up!\nGet up already!")), - VARIANT_DEFAULT(_(" ............#W\nHey...")), - VARIANT_DEFAULT(_(" Hey, $n0.")), - VARIANT_DEFAULT(_(" $n0, wake up!\nCome on, wake up!")), + VARIANT(/* == */ 1, _(" ............{WAIT_PRESS}\nHey...")), + VARIANT(/* == */ 1, _(" Hey, {NAME_0}.")), + VARIANT(/* == */ 1, _(" ...{NAME_0}, wake up!\nGet up already!")), + VARIANT_DEFAULT(_(" ............{WAIT_PRESS}\nHey...")), + VARIANT_DEFAULT(_(" Hey, {NAME_0}.")), + VARIANT_DEFAULT(_(" {NAME_0}, wake up!\nCome on, wake up!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_ENTITIES(-1, -1), BGM_SWITCH(1), @@ -947,10 +947,10 @@ static const struct ScriptCommand s_gs12_g11_s0_lives0_dlg0[] = { /* 0x81e5528 * { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, CALL_SCRIPT(WAKEUP_FUNC), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" You're finally awake,\n$n0?")), + VARIANT(/* == */ 1, _(" You're finally awake,\n{NAME_0}?")), VARIANT(/* == */ 1, _(" Sounds like there's a big\nruckus going on at the square.")), VARIANT(/* == */ 1, _(" Let's go check it out!")), - VARIANT_DEFAULT(_(" $n0, are you\nawake?")), + VARIANT_DEFAULT(_(" {NAME_0}, are you\nawake?")), VARIANT_DEFAULT(_(" There's some sort of a\ncommotion down at the square.")), VARIANT_DEFAULT(_(" Let's take a look!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -976,7 +976,7 @@ static const struct ScriptCommand s_gs12_g12_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(12), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -1004,15 +1004,15 @@ static const struct ScriptCommand s_gs12_g12_s0_lives0_dlg0[] = { /* 0x81e5884 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey, $n0!\nGreat news!")), - VARIANT(/* == */ 1, _(" $n2 wants to\njoin us!")), - VARIANT_DEFAULT(_(" Listen, $n0!\nI've got great news!")), - VARIANT_DEFAULT(_(" $n2 wants to\njoin us!")), + VARIANT(/* == */ 1, _(" Hey, {NAME_0}!\nGreat news!")), + VARIANT(/* == */ 1, _(" {NAME_2} wants to\njoin us!")), + VARIANT_DEFAULT(_(" Listen, {NAME_0}!\nI've got great news!")), + VARIANT_DEFAULT(_(" {NAME_2} wants to\njoin us!")), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" I saw $n2 outside\nlooking dazed, so I went and said hello.")), + VARIANT(/* == */ 1, _(" I saw {NAME_2} outside\nlooking dazed, so I went and said hello.")), VARIANT(/* == */ 1, _(" It turns out that it was\nsuddenly blown here by gusting winds!")), - VARIANT_DEFAULT(_(" I saw $n2 outside\nlooking stunned, so I introduced myself.")), + VARIANT_DEFAULT(_(" I saw {NAME_2} outside\nlooking stunned, so I introduced myself.")), VARIANT_DEFAULT(_(" It says it was blown here\nby a sudden gust of wind!")), { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), @@ -1023,8 +1023,8 @@ static const struct ScriptCommand s_gs12_g12_s0_lives0_dlg0[] = { /* 0x81e5884 * VARIANT(/* == */ 1, _(" ...But since it's here, it\nfigures it must be for a good reason,\nso it wants to join us!")), VARIANT_DEFAULT(_(" ...But since it's here, it\ndecided that it must be for a good reason.\nAnd so it wants to join us!")), ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), - VARIANT(/* == */ 1, _(" What do you think?\nShould we let $n2 join?")), - VARIANT_DEFAULT(_(" What should we do?\nShould we let $n2 join?")), + VARIANT(/* == */ 1, _(" What do you think?\nShould we let {NAME_2} join?")), + VARIANT_DEFAULT(_(" What should we do?\nShould we let {NAME_2} join?")), CHOICE(/* label */ 2, _("Yes.")), CHOICE(/* label */ 3, _("No.")), LABEL(2), /* = 0x02 */ @@ -1051,12 +1051,12 @@ static const struct ScriptCommand s_gs12_g12_s0_lives0_dlg0[] = { /* 0x81e5884 * VARIANT_DEFAULT(_(" Huh?! You're sure of that?\nThat Pokémon volunteered to join...")), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Let me ask you again.#W\nBut this is the last time.")), - VARIANT_DEFAULT(_(" Let me make sure.#W\nAnd I won't ask you again.")), + VARIANT(/* == */ 1, _(" Let me ask you again.{WAIT_PRESS}\nBut this is the last time.")), + VARIANT_DEFAULT(_(" Let me make sure.{WAIT_PRESS}\nAnd I won't ask you again.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), - VARIANT(/* == */ 1, _(" What do you think?\nShould we let $n2 join?")), - VARIANT_DEFAULT(_(" What should we do?\nShould we let $n2 join?")), + VARIANT(/* == */ 1, _(" What do you think?\nShould we let {NAME_2} join?")), + VARIANT_DEFAULT(_(" What should we do?\nShould we let {NAME_2} join?")), CHOICE(/* label */ 2, _("Yes.")), CHOICE(/* label */ 5, _("No.")), LABEL(5), /* = 0x05 */ @@ -1067,8 +1067,8 @@ static const struct ScriptCommand s_gs12_g12_s0_lives0_dlg0[] = { /* 0x81e5884 * VARIANT_DEFAULT(_(" OK...\nIt's disappointing, but it can't be helped.")), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" I'll go tell $n2 no.")), - VARIANT_DEFAULT(_(" I'll let $n2 know\nhe hasn't been accepted.")), + VARIANT(/* == */ 1, _(" I'll go tell {NAME_2} no.")), + VARIANT_DEFAULT(_(" I'll let {NAME_2} know\nhe hasn't been accepted.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -1120,7 +1120,7 @@ static const struct ScriptCommand s_gs12_g13_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(12), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -1147,10 +1147,10 @@ static const struct ScriptCommand s_gs12_g13_s0_lives0_dlg0[] = { /* 0x81e6580 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey, $n0!\nGreat news!")), - VARIANT(/* == */ 1, _(" Team #C5$t#R's\nrescue rank went up!")), - VARIANT_DEFAULT(_(" Listen, $n0!\nI've got great news!")), - VARIANT_DEFAULT(_(" Team #C5$t#R's\nrescue rank went up!")), + VARIANT(/* == */ 1, _(" Hey, {NAME_0}!\nGreat news!")), + VARIANT(/* == */ 1, _(" Team {COLOR CYAN}{TEAM_NAME}{RESET}'s\nrescue rank went up!")), + VARIANT_DEFAULT(_(" Listen, {NAME_0}!\nI've got great news!")), + VARIANT_DEFAULT(_(" Team {COLOR CYAN}{TEAM_NAME}{RESET}'s\nrescue rank went up!")), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" I saw Pelipper outside\nlooking dazed, so I went and said hello.")), @@ -1170,9 +1170,9 @@ static const struct ScriptCommand s_gs12_g13_s0_lives0_dlg0[] = { /* 0x81e6580 * { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" But since he ended up here,\nhe figures it must be for a good reason.\nWe're getting the rescue rank crest!")), - VARIANT(/* == */ 1, _(" Isn't that awesome?!#W\nIt's kind of unfair, but...#W\nWell, so what?")), + VARIANT(/* == */ 1, _(" Isn't that awesome?!{WAIT_PRESS}\nIt's kind of unfair, but...{WAIT_PRESS}\nWell, so what?")), VARIANT_DEFAULT(_(" But since he ended up here,\nhe thinks it must be for a good reason.\nWe're getting that new rescue rank crest!")), - VARIANT_DEFAULT(_(" It's awesome!#W\nI guess it's kind of unfair, but...#W\nWell, anyway!")), + VARIANT_DEFAULT(_(" It's awesome!{WAIT_PRESS}\nI guess it's kind of unfair, but...{WAIT_PRESS}\nWell, anyway!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), @@ -1180,7 +1180,7 @@ static const struct ScriptCommand s_gs12_g13_s0_lives0_dlg0[] = { /* 0x81e6580 * VARIANT_DEFAULT(_(" If it's a gift, we have\nto accept!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(15), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Team #C5$t#R's\n#+rescue rank went up!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Team {COLOR CYAN}{TEAM_NAME}{RESET}'s\n{CENTER_ALIGN}rescue rank went up!") }, FANFARE_PLAY(201), { 0xe1, 0x00, 0x00c9, 0x00000000, 0x00000000, NULL }, { 0x31, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -1220,7 +1220,7 @@ static const struct ScriptCommand s_gs12_g14_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(12), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -1247,11 +1247,11 @@ static const struct ScriptCommand s_gs12_g14_s0_lives0_dlg0[] = { /* 0x81e6fcc * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey, $n0!\nGreat news!")), + VARIANT(/* == */ 1, _(" Hey, {NAME_0}!\nGreat news!")), VARIANT(/* == */ 1, _(" The Rescue Organization\nsent us a cash reward!")), VARIANT(/* == */ 1, _(" I don't have a clue why\nthey'd send us this, but...")), VARIANT(/* == */ 1, _(" Who am I to complain?")), - VARIANT_DEFAULT(_(" Listen, $n0!\nI've got great news!")), + VARIANT_DEFAULT(_(" Listen, {NAME_0}!\nI've got great news!")), VARIANT_DEFAULT(_(" The Rescue Organization\nsent us some reward money!")), VARIANT_DEFAULT(_(" I don't have the foggiest\nnotion why they'd send it...")), VARIANT_DEFAULT(_(" But why worry about it?")), @@ -1299,7 +1299,7 @@ static const struct ScriptCommand s_gs12_g15_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(12), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_ENTITIES(-1, 0), BGM_SWITCH(1), @@ -1322,15 +1322,15 @@ static const struct ScriptCommand s_gs12_g15_s0_lives0_dlg0[] = { /* 0x81e7560 - CALL_SCRIPT(LOOK_AROUND_FUNC), { 0x2e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("...I'm still the same.") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("The way I look...\nI'm still $m0.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("The way I look...\nI'm still {POKEMON_0}.") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("But why would I be transformed\ninto a Pokémon?") }, FANFARE_PLAY2(469), CALL_SCRIPT(QUESTION_FUNC), { 0x2e, 0x00, 0x0000, 0x00000004, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............#W\nHmm... I don't understand this at all...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............{WAIT_PRESS}\nHmm... I don't understand this at all...") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("........................") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............#W\nI feel groggy and sleepy...") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Not feeling well...#W\nI need more sleep...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............{WAIT_PRESS}\nI feel groggy and sleepy...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Not feeling well...{WAIT_PRESS}\nI need more sleep...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -1436,12 +1436,12 @@ static const struct ScriptCommand s_gs12_g17_s0_lives0_dlg0[] = { /* 0x81e7be8 * CALL_SCRIPT(LOOK_AROUND_FUNC), { 0x2e, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("..................") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Oof...#W\nI'm feeling refreshed!") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Oof...{WAIT_PRESS}\nI'm feeling refreshed!") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I still look like a Pokémon, but...") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("..................") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Oh, that's right.#W That Pokémon...#W\nI think it was $n1?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Oh, that's right.{WAIT_PRESS} That Pokémon...{WAIT_PRESS}\nI think it was {NAME_1}?") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("We made a promise to form a rescue\nteam together...") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I wonder what $n1 is doing?#W\nI should go out.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I wonder what {NAME_1} is doing?{WAIT_PRESS}\nI should go out.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -1459,7 +1459,7 @@ static const struct ScriptCommand s_gs12_g18_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(12), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_ENTITIES(-1, 0), BGM_SWITCH(1), @@ -1532,7 +1532,7 @@ static const struct ScriptCommand s_gs12_g20_s0_station_sref_script[] = { /* 0x8 SELECT_MAP(12), { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_ENTITIES(-1, 0), { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, @@ -1570,7 +1570,7 @@ static const struct ScriptCommand s_gs12_g20_s0_lives0_dlg0[] = { /* 0x81e8394 * FANFARE_PLAY2(469), CALL_SCRIPT(QUESTION_FUNC), WAIT(15), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Hello? Uhh...\nYou are $n0...#W Aren't you?") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Hello? Uhh...\nYou are {NAME_0}...{WAIT_PRESS} Aren't you?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), FANFARE_PLAY2(468), @@ -1584,7 +1584,7 @@ static const struct ScriptCommand s_gs12_g20_s0_lives0_dlg0[] = { /* 0x81e8394 * WAIT(15), { 0x92, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, WAIT(30), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ...Oh! You can't see us, of course!#W\nHow very rude of us!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ...Oh! You can't see us, of course!{WAIT_PRESS}\nHow very rude of us!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), SELECT_ENTITIES(-1, 1), @@ -1593,17 +1593,17 @@ static const struct ScriptCommand s_gs12_g20_s0_lives0_dlg0[] = { /* 0x81e8394 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(30), BGM_FADEIN(60, 1), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" We're pleased to meet you.\nWe are $n2.") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" We're pleased to meet you.\nWe are {NAME_2}.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Last night, during the\nearthquake...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Our child $n3 was\nattacked...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Our child {NAME_3} was\nattacked...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" He was whisked away to\nthe peak of a tall mountain.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We couldn't possibly climb\nsomewhere so high up...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That is why we must call\nupon you for your help, $n0.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n3 was abducted\nby a Pokémon named $n4.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That is why we must call\nupon you for your help, {NAME_0}.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" {NAME_3} was abducted\nby a Pokémon named {NAME_4}.") }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's a vilely vicious ruffian!\nPlease do be careful.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Please, we need your help!#W\nWe must go!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Please, we need your help!{WAIT_PRESS}\nWe must go!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -1660,7 +1660,7 @@ static const struct ScriptCommand s_gs12_g21_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(12), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_ENTITIES(-1, 0), BGM_SWITCH(1), @@ -1695,7 +1695,7 @@ static const struct ScriptCommand s_gs12_g22_s0_station_sref_script[] = { /* 0x8 SELECT_MAP(12), { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -1731,7 +1731,7 @@ static const struct ScriptCommand s_gs12_g23_s0_station_sref_script[] = { /* 0x8 SELECT_MAP(12), { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -1767,7 +1767,7 @@ static const struct ScriptCommand s_gs12_g24_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(12), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -1831,7 +1831,7 @@ static const struct ScriptCommand s_gs12_g26_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(12), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -1895,7 +1895,7 @@ static const struct ScriptCommand s_gs12_g28_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(12), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -1959,7 +1959,7 @@ static const struct ScriptCommand s_gs12_g30_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(12), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -2023,7 +2023,7 @@ static const struct ScriptCommand s_gs12_g32_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(12), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -2054,7 +2054,7 @@ static const struct ScriptCommand s_gs12_g33_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(12), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -2079,14 +2079,14 @@ static const struct ScriptCommand s_gs12_g33_s0_lives0_dlg0[] = { /* 0x81ea094 * WAIT(15), CALL_SCRIPT(LOOK_AROUND_DOWN_FUNC), WAIT(45), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............#W\nWhat a strange dream...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............{WAIT_PRESS}\nWhat a strange dream...") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("It's the dream I always have, but it was\nclearer than it was before...") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I think I finally learned who that\nPokémon was...") }, FANFARE_PLAY2(464), CALL_SCRIPT(NOTICE_FUNC), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("That's it!#W\n$n2!") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("It was $n2!") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Yesterday, $n3 said...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("That's it!{WAIT_PRESS}\n{NAME_2}!") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("It was {NAME_2}!") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Yesterday, {NAME_3} said...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, HALT, @@ -2122,9 +2122,9 @@ static const struct ScriptCommand s_gs12_g34_s0_lives0_dlg0[] = { /* 0x81ea3c4 * WAIT(30), WAIT(30), { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("..................") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Maybe...#W\nMaybe, I...") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Maybe I was the human who was\n$n2's partner...") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Maybe I was the one that abandoned\n$n2 when she was cursed...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Maybe...{WAIT_PRESS}\nMaybe, I...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Maybe I was the human who was\n{NAME_2}'s partner...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Maybe I was the one that abandoned\n{NAME_2} when she was cursed...") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("Maybe that's why I turned into\na Pokémon...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), @@ -2145,7 +2145,7 @@ static const struct ScriptCommand s_gs12_g35_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(12), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -2176,7 +2176,7 @@ static const struct ScriptCommand s_gs12_g36_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(12), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -2197,14 +2197,14 @@ static const struct ScriptCommand s_gs12_g36_s0_lives0_dlg0[] = { /* 0x81ea85c * CALL_SCRIPT(WAKEUP_FUNC), CALL_SCRIPT(LOOK_AROUND_FUNC), WAIT(30), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............#W\nThere was an earthquake...#W\nWasn't there...?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............{WAIT_PRESS}\nThere was an earthquake...{WAIT_PRESS}\nWasn't there...?") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I think I had that dream again...") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I think I spoke with Gardevoir...#W\nShe said something important...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("I think I spoke with Gardevoir...{WAIT_PRESS}\nShe said something important...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(464), CALL_SCRIPT(NOTICE_FUNC), WAIT(30), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("That's it!#W\nShe did say something!") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("That's it!{WAIT_PRESS}\nShe did say something!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -2239,9 +2239,9 @@ static const struct ScriptCommand s_gs12_g37_s0_lives0_dlg0[] = { /* 0x81eab48 * { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), FANFARE_PLAY2(466), - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("$n2 knows!#W\nShe knows why I became a Pokémon.") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("{NAME_2} knows!{WAIT_PRESS}\nShe knows why I became a Pokémon.") }, { 0x2e, 0x02, 0x0000, 0x00000004, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("She also said something about a role...#W\nWhat did she mean by that?") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("She also said something about a role...{WAIT_PRESS}\nWhat did she mean by that?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -2260,7 +2260,7 @@ static const struct ScriptCommand s_gs12_g38_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(12), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -2294,7 +2294,7 @@ static const struct ScriptCommand s_gs12_g38_s0_lives0_dlg0[] = { /* 0x81eaddc * WAIT(60), CALL_SCRIPT(LOOK_AROUND_FUNC), { 0x2e, 0x15, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............#W\nI guess it settled down...") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("............{WAIT_PRESS}\nI guess it settled down...") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _(".......There've been a lot of earthquakes\nlately...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, BGM_SWITCH(1), @@ -2310,7 +2310,7 @@ static const struct ScriptCommand s_gs12_g39_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(12), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -2354,7 +2354,7 @@ static const struct ScriptCommand s_gs12_g39_s0_lives0_dlg0[] = { /* 0x81eb100 * FANFARE_PLAY2(465), CALL_SCRIPT(NOTICE_FUNC), { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0!\nThere's a commotion down at the square!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0}!\nThere's a commotion down at the square!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" A lot of Pokémon have\nalready gathered there.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Let's go to the square right\nnow!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -2393,7 +2393,7 @@ static const struct ScriptCommand s_gs12_g40_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(12), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -2428,7 +2428,7 @@ static const struct ScriptCommand s_gs12_g41_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(12), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -2474,9 +2474,9 @@ static const struct ScriptCommand s_gs12_g42_s0_lives0_dlg0[] = { /* 0x81eb95c * { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" How do you like Dream\nEater?#W\nHorrible, isn't it? Keke!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" How do you like Dream\nEater?{WAIT_PRESS}\nHorrible, isn't it? Keke!") }, { 0x2e, 0x02, 0x0001, 0x00000044, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But who would've thought\nyou were also human before...#W\nDidn't expect that.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But who would've thought\nyou were also human before...{WAIT_PRESS}\nDidn't expect that.") }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But who cares?\nSomeone like that's sure to be some\nlowlife. Keke!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll expose you yet!") }, @@ -2487,14 +2487,14 @@ static const struct ScriptCommand s_gs12_g42_s0_lives0_dlg0[] = { /* 0x81eb95c * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000044, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hm?!#W\nSomething's coming!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hm?!{WAIT_PRESS}\nSomething's coming!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(484), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What? What is that light?#W\nIt's coming closer?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What? What is that light?{WAIT_PRESS}\nIt's coming closer?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, WAIT(90), @@ -2554,7 +2554,7 @@ static const struct ScriptCommand s_gs12_g43_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(12), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The next morning...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The next morning...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -2622,14 +2622,14 @@ static const struct ScriptCommand s_gs12_g45_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(12), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Due to $n0 and\n#+$n1's heroic actions...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+the falling star was destroyed...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+and peace returned to\n#+the world of Pokémon.") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+But that did not put an end\n#+to the natural calamities.") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Natural disasters still occurred,\n#+but much less often.") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Needless to say,\n#+$t's rescue activities") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+continued as if nothing had changed.") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Several mornings later...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Due to {NAME_0} and\n{CENTER_ALIGN}{NAME_1}'s heroic actions...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}the falling star was destroyed...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}and peace returned to\n{CENTER_ALIGN}the world of Pokémon.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}But that did not put an end\n{CENTER_ALIGN}to the natural calamities.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Natural disasters still occurred,\n{CENTER_ALIGN}but much less often.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Needless to say,\n{CENTER_ALIGN}{TEAM_NAME}'s rescue activities") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}continued as if nothing had changed.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Several mornings later...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -2656,16 +2656,16 @@ static const struct ScriptCommand s_gs12_g45_s0_lives0_dlg0[] = { /* 0x81ec59c * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Morning, $n0!\nDid you just get up?")), + VARIANT(/* == */ 1, _(" Morning, {NAME_0}!\nDid you just get up?")), VARIANT(/* == */ 1, _(" I just went by the Pelipper\nPost Office.")), VARIANT(/* == */ 1, _(" There were still rescue jobs\nposted on the Bulletin Board.")), VARIANT(/* == */ 1, _(" Even though it's peaceful\nagain, lots of Pokémon still need helping.")), - VARIANT(/* == */ 1, _(" $n0!#W\nLet's keep on giving it our best like\nalways!")), - VARIANT_DEFAULT(_(" Good morning, $n0!\nDid you just wake up?")), + VARIANT(/* == */ 1, _(" {NAME_0}!{WAIT_PRESS}\nLet's keep on giving it our best like\nalways!")), + VARIANT_DEFAULT(_(" Good morning, {NAME_0}!\nDid you just wake up?")), VARIANT_DEFAULT(_(" I went by the Pelipper Post\nOffice earlier.")), VARIANT_DEFAULT(_(" The Bulletin Board was still\ncovered with rescue jobs.")), VARIANT_DEFAULT(_(" Even though it's peaceful\nagain, many Pokémon still need our help.")), - VARIANT_DEFAULT(_(" $n0!#W\nLet's keep on doing our best as always!")), + VARIANT_DEFAULT(_(" {NAME_0}!{WAIT_PRESS}\nLet's keep on doing our best as always!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -2745,9 +2745,9 @@ static const struct ScriptCommand s_gs12_g46_s1_lives0_dlg0[] = { /* 0x81ecc04 * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Morning, $n0!")), + VARIANT(/* == */ 1, _(" Morning, {NAME_0}!")), VARIANT(/* == */ 1, _(" Let's keep on giving it our\nbest for our rescue team!")), - VARIANT_DEFAULT(_(" Good morning, $n0!")), + VARIANT_DEFAULT(_(" Good morning, {NAME_0}!")), VARIANT_DEFAULT(_(" Let's keep doing our best\nfor our rescue team!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d01p01_station.h b/src/data/ground/ground_data_d01p01_station.h index 567f47fa2..d02eb7325 100644 --- a/src/data/ground/ground_data_d01p01_station.h +++ b/src/data/ground/ground_data_d01p01_station.h @@ -41,11 +41,11 @@ static const struct ScriptCommand s_gs178_g1_s0_station_sref_script[] = { /* 0x8 { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(178), WAIT(100), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Where am I?") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Am I dreaming this?") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+I feel a pleasant breeze.") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+...I hear a voice from somewhere...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+I wonder who it is?") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Where am I?") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Am I dreaming this?") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}I feel a pleasant breeze.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}...I hear a voice from somewhere...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}I wonder who it is?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -54,9 +54,9 @@ static const struct ScriptCommand s_gs178_g1_s0_station_sref_script[] = { /* 0x8 { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ............") }, MSG_VAR(2, PARTNER_TALK_KIND, -1), VARIANT(/* == */ 1, _(" ...Hey.")), - VARIANT(/* == */ 1, _(" ...Hey, wake up.#W\nWake up already.")), + VARIANT(/* == */ 1, _(" ...Hey, wake up.{WAIT_PRESS}\nWake up already.")), VARIANT_DEFAULT(_(" ...Excuse me.")), - VARIANT_DEFAULT(_(" ...Please, wake up.#W\nCome on, wake up.")), + VARIANT_DEFAULT(_(" ...Please, wake up.{WAIT_PRESS}\nCome on, wake up.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_ENTITIES(-1, 0), BGM_FADEIN(60, 101), @@ -106,16 +106,16 @@ static const struct ScriptCommand s_gs178_g1_s0_lives0_dlg0[] = { /* 0x822c5e4 - { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" I'm $n1.\nGlad to meet you!")), - VARIANT(/* == */ 3, _(" I'm $n1.\nHappy to meet you!")), - VARIANT_DEFAULT(_(" I'm $n1.\nGlad to meet you!")), + VARIANT(/* == */ 1, _(" I'm {NAME_1}.\nGlad to meet you!")), + VARIANT(/* == */ 3, _(" I'm {NAME_1}.\nHappy to meet you!")), + VARIANT_DEFAULT(_(" I'm {NAME_1}.\nGlad to meet you!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ...So, who might you be?#W\nI don't think I've seen your face around\nhere.")), - VARIANT(/* == */ 3, _(" ...And, you are?#W\nI don't think I've seen you around before.")), - VARIANT_DEFAULT(_(" ...And, you are?#W\nI've never seen you around before.")), + VARIANT(/* == */ 1, _(" ...So, who might you be?{WAIT_PRESS}\nI don't think I've seen your face around\nhere.")), + VARIANT(/* == */ 3, _(" ...And, you are?{WAIT_PRESS}\nI don't think I've seen you around before.")), + VARIANT_DEFAULT(_(" ...And, you are?{WAIT_PRESS}\nI've never seen you around before.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -126,12 +126,12 @@ static const struct ScriptCommand s_gs178_g1_s0_lives0_dlg0[] = { /* 0x822c5e4 - { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hah?#W\nYou say you're a human?")), - VARIANT(/* == */ 1, _(" But any which way I look\nat you, you're a normal $m0.")), - VARIANT(/* == */ 3, _(" Huh?#W\nDid you say human?")), - VARIANT(/* == */ 3, _(" But you look like a normal\n$m0 from every angle?")), - VARIANT_DEFAULT(_(" Huh?#W\nYou're a human?")), - VARIANT_DEFAULT(_(" But you look like a normal\n$m0 in every way.")), + VARIANT(/* == */ 1, _(" Hah?{WAIT_PRESS}\nYou say you're a human?")), + VARIANT(/* == */ 1, _(" But any which way I look\nat you, you're a normal {POKEMON_0}.")), + VARIANT(/* == */ 3, _(" Huh?{WAIT_PRESS}\nDid you say human?")), + VARIANT(/* == */ 3, _(" But you look like a normal\n{POKEMON_0} from every angle?")), + VARIANT_DEFAULT(_(" Huh?{WAIT_PRESS}\nYou're a human?")), + VARIANT_DEFAULT(_(" But you look like a normal\n{POKEMON_0} in every way.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), FANFARE_PLAY2(469), @@ -144,7 +144,7 @@ static const struct ScriptCommand s_gs178_g1_s0_lives0_dlg0[] = { /* 0x822c5e4 - { 0xe2, 0x00, 0x01e2, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0000, 0x0000000c, 0x00000000, NULL }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(It... It's true...)") }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(I have turned into\na $m0!)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(I have turned into\na {POKEMON_0}!)") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0x2e, 0x15, 0x0000, 0x00000004, 0x00000000, NULL }, @@ -154,14 +154,14 @@ static const struct ScriptCommand s_gs178_g1_s0_lives0_dlg0[] = { /* 0x822c5e4 - { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" You're...#W\nSome kind of weird...")), + VARIANT(/* == */ 1, _(" You're...{WAIT_PRESS}\nSome kind of weird...")), VARIANT(/* == */ 1, _(" So, what's your name?\nWhat do you call yourself?")), - VARIANT_DEFAULT(_(" Um...#W\nYou're kind of weird...")), - VARIANT_DEFAULT(_(" Your name?#W\nWhat's your name?")), + VARIANT_DEFAULT(_(" Um...{WAIT_PRESS}\nYou're kind of weird...")), + VARIANT_DEFAULT(_(" Your name?{WAIT_PRESS}\nWhat's your name?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(My name...?#W\nThat's right, my name is...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(My name...?{WAIT_PRESS}\nThat's right, my name is...)") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0x3b, 0x16, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -170,9 +170,9 @@ static const struct ScriptCommand s_gs178_g1_s0_lives0_dlg0[] = { /* 0x822c5e4 - { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Uh-huh... $n0.#W\nThat's...")), - VARIANT(/* == */ 3, _(" OK.\nYou're named $n0?#W\nWell...")), - VARIANT_DEFAULT(_(" Oh.\n$n0's your name?#W\nWell...")), + VARIANT(/* == */ 1, _(" Uh-huh... {NAME_0}.{WAIT_PRESS}\nThat's...")), + VARIANT(/* == */ 3, _(" OK.\nYou're named {NAME_0}?{WAIT_PRESS}\nWell...")), + VARIANT_DEFAULT(_(" Oh.\n{NAME_0}'s your name?{WAIT_PRESS}\nWell...")), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x0000000a, 0x00000000, NULL }, @@ -218,7 +218,7 @@ static const struct ScriptCommand s_gs178_g1_s0_lives0_dlg0[] = { /* 0x822c5e4 - { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0e, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's horrible!\nMy $n3 fell into a cavern!\nMy poor baby!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's horrible!\nMy {NAME_3} fell into a cavern!\nMy poor baby!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -227,16 +227,16 @@ static const struct ScriptCommand s_gs178_g1_s0_lives0_dlg0[] = { /* 0x822c5e4 - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(12), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" A huge fissure opened in\nthe ground, and my $n3 fell in!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" A huge fissure opened in\nthe ground, and my {NAME_3} fell in!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" He's too young to crawl out\nby himself!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" When I went to get my\nbaby, Pokémon suddenly attacked me!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh? You were attacked?#W\nBy other Pokémon?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh? You were attacked?{WAIT_PRESS}\nBy other Pokémon?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They must be enraged by\nthe fissure...and out of control!\nThat's what I think.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm not strong enough to\nfend off those wild Pokémon...#W\nWhat will become of my baby?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm not strong enough to\nfend off those wild Pokémon...{WAIT_PRESS}\nWhat will become of my baby?") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh! What am I to do?!\nOh dear, oh dear...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -363,7 +363,7 @@ static const struct ScriptCommand s_gs178_g2_s0_station_sref_script[] = { /* 0x8 SELECT_MAP(178), { 0x2d, 0x09, 0x0000, 0x00000035, 0x00000000, NULL }, { 0x2e, 0x0b, 0x0000, -0x00000002, 0x00000000, NULL }, - { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" ...Hello?#W\nHello!") }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" ...Hello?{WAIT_PRESS}\nHello!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_ENTITIES(-1, 0), { 0x22, 0x01, 0x003c, 0x00000000, 0x00000000, NULL }, @@ -412,7 +412,7 @@ static const struct ScriptCommand s_gs178_g2_s0_lives0_dlg0[] = { /* 0x822df60 - { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" In the forest.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You two ran off to rescue\nmy poor $n3, but...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You two ran off to rescue\nmy poor {NAME_3}, but...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), MSG_VAR(2, PARTNER_TALK_KIND, 1), @@ -428,7 +428,7 @@ static const struct ScriptCommand s_gs178_g2_s0_lives0_dlg0[] = { /* 0x822df60 - { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ohh!\nIs my poor $n3 safe?!\nOh dear, oh dear...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ohh!\nIs my poor {NAME_3} safe?!\nOh dear, oh dear...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -441,8 +441,8 @@ static const struct ScriptCommand s_gs178_g2_s0_lives0_dlg0[] = { /* 0x822df60 - { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Let's roll, $n0!")), - VARIANT_DEFAULT(_(" $n0! Let's go!")), + VARIANT(/* == */ 1, _(" Let's roll, {NAME_0}!")), + VARIANT_DEFAULT(_(" {NAME_0}! Let's go!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, WAIT(1), @@ -540,14 +540,14 @@ static const struct ScriptCommand s_gs178_g3_s0_lives0_dlg0[] = { /* 0x822ea18 - { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0e, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" My baby's safe...#W\nI'm sorry, I don't know how I could ever\nthank you properly...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" My baby's safe...{WAIT_PRESS}\nI'm sorry, I don't know how I could ever\nthank you properly...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Aww, don't worry, lady.#W\nThere have been a lot of quakes and\nfissures lately. It's dangerous.")), + VARIANT(/* == */ 1, _(" Aww, don't worry, lady.{WAIT_PRESS}\nThere have been a lot of quakes and\nfissures lately. It's dangerous.")), VARIANT(/* == */ 1, _(" I'm glad your little guy's\nnot hurt, honestly.")), - VARIANT_DEFAULT(_(" Oh, that's OK!#W\nIt has been dangerous lately with sudden\nquakes and fissures like that one.")), + VARIANT_DEFAULT(_(" Oh, that's OK!{WAIT_PRESS}\nIt has been dangerous lately with sudden\nquakes and fissures like that one.")), VARIANT_DEFAULT(_(" It was great to find your\nlittle boy unharmed.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -556,18 +556,18 @@ static const struct ScriptCommand s_gs178_g3_s0_lives0_dlg0[] = { /* 0x822ea18 - WAIT(10), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" I'm $n1.")), - VARIANT(/* == */ 3, _(" I'm $n1.")), - VARIANT_DEFAULT(_(" I'm $n1.")), + VARIANT(/* == */ 1, _(" I'm {NAME_1}.")), + VARIANT(/* == */ 3, _(" I'm {NAME_1}.")), + VARIANT_DEFAULT(_(" I'm {NAME_1}.")), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And this is $n0.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And this is {NAME_0}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x15, 0x0003, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ............#W\nCool...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}\nCool...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -579,7 +579,7 @@ static const struct ScriptCommand s_gs178_g3_s0_lives0_dlg0[] = { /* 0x822ea18 - WAIT(30), FANFARE_STOP2(470), { 0x2e, 0x15, 0x0000, 0x00000004, 0x00000000, NULL }, - { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(He's, uh...#W Staring at me adoringly...)") }, + { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(He's, uh...{WAIT_PRESS} Staring at me adoringly...)") }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(Those sparkly eyes...\nIt's a little embarrassing...)") }, { 0x2e, 0x15, 0x0000, 0x00000001, 0x00000000, NULL }, { 0x33, 0x00, 0x0000, 0x00000000, 0x00000000, _("(But, this doesn't feel bad, either.\nIt's like I'm a hero.)") }, @@ -588,7 +588,7 @@ static const struct ScriptCommand s_gs178_g3_s0_lives0_dlg0[] = { /* 0x822ea18 - WAIT(30), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Thank you!\n$n1 and $n0!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Thank you!\n{NAME_1} and {NAME_0}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I know it isn't really\nenough, but this is a token of our\nthanks. Please accept it.") }, @@ -636,8 +636,8 @@ static const struct ScriptCommand s_gs178_g3_s0_lives0_dlg0[] = { /* 0x822ea18 - WAIT(30), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ...#WSay, $n0.#W\nIf you don't have anywhere to stay,\nwhy don't you come with me?")), - VARIANT_DEFAULT(_(" ...#WListen, $n0.#W\nIf you don't have a place to stay, you\nshould come with me.")), + VARIANT(/* == */ 1, _(" ...{WAIT_PRESS}Say, {NAME_0}.{WAIT_PRESS}\nIf you don't have anywhere to stay,\nwhy don't you come with me?")), + VARIANT_DEFAULT(_(" ...{WAIT_PRESS}Listen, {NAME_0}.{WAIT_PRESS}\nIf you don't have a place to stay, you\nshould come with me.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d02p01_station.h b/src/data/ground/ground_data_d02p01_station.h index 0cadb808a..49d766f70 100644 --- a/src/data/ground/ground_data_d02p01_station.h +++ b/src/data/ground/ground_data_d02p01_station.h @@ -60,7 +60,7 @@ static const struct ScriptCommand s_gs180_g1_s0_lives0_dlg0[] = { /* 0x823047c * { 0x2e, 0x0e, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" OH, YOU ARE HERE.\nBZBZBZZ!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" MY FRIENDS ARE IN THIS\nCAVERN. BZBZBZZ.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" MY FRIENDS SHOULD BE\nON B$d0F. PLEASE HELP THEM!\nBZBZBZZZT!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" MY FRIENDS SHOULD BE\nON B{VALUE_0}F. PLEASE HELP THEM!\nBZBZBZZZT!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, @@ -173,13 +173,13 @@ static const struct ScriptCommand s_gs180_g2_s0_lives0_dlg0[] = { /* 0x8230ae4 * { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The $n2 are in\nthere somewhere.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The {NAME_2} are in\nthere somewhere.") }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Let's give it our best\nand rescue them $n0!")), - VARIANT_DEFAULT(_(" Let's do our best to rescue\nthem, $n0!")), + VARIANT(/* == */ 1, _(" Let's give it our best\nand rescue them {NAME_0}!")), + VARIANT_DEFAULT(_(" Let's do our best to rescue\nthem, {NAME_0}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d03p01_station.h b/src/data/ground/ground_data_d03p01_station.h index e3ca1a42b..cda17c5e2 100644 --- a/src/data/ground/ground_data_d03p01_station.h +++ b/src/data/ground/ground_data_d03p01_station.h @@ -43,10 +43,10 @@ static const struct ScriptCommand s_gs182_g1_s0_lives0_dlg0[] = { /* 0x8232228 * WAIT(15), { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" So, this is it...\n#CDMt. Steel#R...")), - VARIANT(/* == */ 1, _(" $n3's been taken\nto the peak here...")), - VARIANT_DEFAULT(_(" Here we are...\n#CDMt. Steel#R...")), - VARIANT_DEFAULT(_(" So, $n3 was\nwhisked to its peak...")), + VARIANT(/* == */ 1, _(" So, this is it...\n{COLOR YELLOW_D}Mt. Steel{RESET}...")), + VARIANT(/* == */ 1, _(" {NAME_3}'s been taken\nto the peak here...")), + VARIANT_DEFAULT(_(" Here we are...\n{COLOR YELLOW_D}Mt. Steel{RESET}...")), + VARIANT_DEFAULT(_(" So, {NAME_3} was\nwhisked to its peak...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" That's right!") }, @@ -59,7 +59,7 @@ static const struct ScriptCommand s_gs182_g1_s0_lives0_dlg0[] = { /* 0x8232228 * WAIT(60), { 0x2d, 0x0a, 0x0000, 0x00000002, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The peak is $d0F!\nThank you for helping! Farewell!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The peak is {VALUE_0}F!\nThank you for helping! Farewell!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -74,8 +74,8 @@ static const struct ScriptCommand s_gs182_g1_s0_lives0_dlg0[] = { /* 0x8232228 * WAIT(30), { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ......#W\nWell, I guess we go...")), - VARIANT_DEFAULT(_(" ......#W\nUh... Let's go.")), + VARIANT(/* == */ 1, _(" ......{WAIT_PRESS}\nWell, I guess we go...")), + VARIANT_DEFAULT(_(" ......{WAIT_PRESS}\nUh... Let's go.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, @@ -162,10 +162,10 @@ static const struct ScriptCommand s_gs182_g2_s0_lives0_dlg0[] = { /* 0x8232988 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" We'll take another shot at\n#CDMt. Steel#R.")), - VARIANT(/* == */ 1, _(" We'll rescue $n3\nno matter what it takes!")), - VARIANT_DEFAULT(_(" We have to make another\nattempt at #CDMt. Steel#R.")), - VARIANT_DEFAULT(_(" Whatever it takes,\nlet's rescue $n3!")), + VARIANT(/* == */ 1, _(" We'll take another shot at\n{COLOR YELLOW_D}Mt. Steel{RESET}.")), + VARIANT(/* == */ 1, _(" We'll rescue {NAME_3}\nno matter what it takes!")), + VARIANT_DEFAULT(_(" We have to make another\nattempt at {COLOR YELLOW_D}Mt. Steel{RESET}.")), + VARIANT_DEFAULT(_(" Whatever it takes,\nlet's rescue {NAME_3}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" That's the spirit!") }, @@ -178,7 +178,7 @@ static const struct ScriptCommand s_gs182_g2_s0_lives0_dlg0[] = { /* 0x8232988 * WAIT(60), { 0x2d, 0x0a, 0x0000, 0x00000002, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The peak is $d0F!\nThank you for helping! Farewell!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The peak is {VALUE_0}F!\nThank you for helping! Farewell!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -193,8 +193,8 @@ static const struct ScriptCommand s_gs182_g2_s0_lives0_dlg0[] = { /* 0x8232988 * WAIT(30), { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ......#W\nWell, here we go...")), - VARIANT_DEFAULT(_(" ......#W\nUh... Let's go.")), + VARIANT(/* == */ 1, _(" ......{WAIT_PRESS}\nWell, here we go...")), + VARIANT_DEFAULT(_(" ......{WAIT_PRESS}\nUh... Let's go.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d03p02_station.h b/src/data/ground/ground_data_d03p02_station.h index d22f473b0..e0c9f622d 100644 --- a/src/data/ground/ground_data_d03p02_station.h +++ b/src/data/ground/ground_data_d03p02_station.h @@ -52,7 +52,7 @@ static const struct ScriptCommand s_gs183_g1_s0_lives0_dlg0[] = { /* 0x82333ec * { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x0f, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Grr... I can't keep up!#W\nI'll flee for now!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Grr... I can't keep up!{WAIT_PRESS}\nI'll flee for now!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -64,9 +64,9 @@ static const struct ScriptCommand s_gs183_g1_s0_lives0_dlg0[] = { /* 0x82333ec * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey!\nWe sent $n3 packing!")), + VARIANT(/* == */ 1, _(" Hey!\nWe sent {NAME_3} packing!")), VARIANT(/* == */ 1, _(" You're safe now.\nCome on down!")), - VARIANT_DEFAULT(_(" Hey there!\nWe chased $n3 off!")), + VARIANT_DEFAULT(_(" Hey there!\nWe chased {NAME_3} off!")), VARIANT_DEFAULT(_(" It's OK now.\nCome down over here.")), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -77,8 +77,8 @@ static const struct ScriptCommand s_gs183_g1_s0_lives0_dlg0[] = { /* 0x82333ec * { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" OK, no sweat.#W\nWe'll go to you. Just wait.")), - VARIANT_DEFAULT(_(" OK, no problem.#W\nWe'll come to you. Just wait.")), + VARIANT(/* == */ 1, _(" OK, no sweat.{WAIT_PRESS}\nWe'll go to you. Just wait.")), + VARIANT_DEFAULT(_(" OK, no problem.{WAIT_PRESS}\nWe'll come to you. Just wait.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -93,7 +93,7 @@ static const struct ScriptCommand s_gs183_g1_s0_lives0_dlg0[] = { /* 0x82333ec * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0, what'll\nwe do?\nWe can't get across this.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0}, what'll\nwe do?\nWe can't get across this.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_ENTITIES(-1, 1), { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -104,12 +104,12 @@ static const struct ScriptCommand s_gs183_g1_s0_lives0_dlg0[] = { /* 0x82333ec * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey! It's those $n4\nfrom that rescue!")), - VARIANT_DEFAULT(_(" Oh, hi!\nYou're the $n4 we saved!")), + VARIANT(/* == */ 1, _(" Hey! It's those {NAME_4}\nfrom that rescue!")), + VARIANT_DEFAULT(_(" Oh, hi!\nYou're the {NAME_4} we saved!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0c, 0x0004, 0x00000000, 0x00000000, NULL }, { 0x2f, 0x00, 0x0004, 0x00000002, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" WE GOT WORD OF THIS.#W\nWE CAN RESCUE DIGLETT FROM THE\nSKY. BZBZBZZ!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" WE GOT WORD OF THIS.{WAIT_PRESS}\nWE CAN RESCUE DIGLETT FROM THE\nSKY. BZBZBZZ!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d04p01_station.h b/src/data/ground/ground_data_d04p01_station.h index 006cfe185..16d0e7a65 100644 --- a/src/data/ground/ground_data_d04p01_station.h +++ b/src/data/ground/ground_data_d04p01_station.h @@ -43,14 +43,14 @@ static const struct ScriptCommand s_gs184_g1_s0_lives0_dlg0[] = { /* 0x82343f8 * WAIT(20), { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" This is it.\n$n2 is lost in these woods.")), - VARIANT(/* == */ 1, _(" $n3's crew\nshould have a head start on us.")), + VARIANT(/* == */ 1, _(" This is it.\n{NAME_2} is lost in these woods.")), + VARIANT(/* == */ 1, _(" {NAME_3}'s crew\nshould have a head start on us.")), VARIANT(/* == */ 1, _(" We'd better hurry.")), - VARIANT(/* == */ 3, _(" This is it.\n$n2 is lost somewhere in these\nwoods.")), - VARIANT(/* == */ 3, _(" $n3's gang should\nalready be here.")), + VARIANT(/* == */ 3, _(" This is it.\n{NAME_2} is lost somewhere in these\nwoods.")), + VARIANT(/* == */ 3, _(" {NAME_3}'s gang should\nalready be here.")), VARIANT(/* == */ 3, _(" We ought to hurry.")), - VARIANT_DEFAULT(_(" This must be it.\n$n2 is lost somewhere in these\nwoods.")), - VARIANT_DEFAULT(_(" $n3's gang should\nbe in there already.")), + VARIANT_DEFAULT(_(" This must be it.\n{NAME_2} is lost somewhere in these\nwoods.")), + VARIANT_DEFAULT(_(" {NAME_3}'s gang should\nbe in there already.")), VARIANT_DEFAULT(_(" We need to hurry.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -96,14 +96,14 @@ static const struct ScriptCommand s_gs184_g2_s0_lives0_dlg0[] = { /* 0x8234830 * WAIT(30), { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Let's move it, $n0!")), - VARIANT(/* == */ 1, _(" Even while we're dawdling\nhere, $n2's team...")), + VARIANT(/* == */ 1, _(" Let's move it, {NAME_0}!")), + VARIANT(/* == */ 1, _(" Even while we're dawdling\nhere, {NAME_2}'s team...")), VARIANT(/* == */ 1, _(" Hurry! Chop, chop!")), - VARIANT(/* == */ 3, _(" Let's hurry, $n0!")), - VARIANT(/* == */ 3, _(" While we're stuck\nback here, $n2's gang will be...")), + VARIANT(/* == */ 3, _(" Let's hurry, {NAME_0}!")), + VARIANT(/* == */ 3, _(" While we're stuck\nback here, {NAME_2}'s gang will be...")), VARIANT(/* == */ 3, _(" We have to hurry!")), - VARIANT_DEFAULT(_(" Let's hustle, $n0!")), - VARIANT_DEFAULT(_(" We're still stuck back here\nwhile $n2's gang is...")), + VARIANT_DEFAULT(_(" Let's hustle, {NAME_0}!")), + VARIANT_DEFAULT(_(" We're still stuck back here\nwhile {NAME_2}'s gang is...")), VARIANT_DEFAULT(_(" Come on, hurry!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d04p02_station.h b/src/data/ground/ground_data_d04p02_station.h index 04534fe50..e7535dd88 100644 --- a/src/data/ground/ground_data_d04p02_station.h +++ b/src/data/ground/ground_data_d04p02_station.h @@ -42,7 +42,7 @@ static const struct ScriptCommand s_gs185_g1_s0_lives0_dlg0[] = { /* 0x8234d94 * { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0e, 0x0003, 0x00000043, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Owowowow...#W\nYou'll pay for this!\nDon't you forget it!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Owowowow...{WAIT_PRESS}\nYou'll pay for this!\nDon't you forget it!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(16), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -60,8 +60,8 @@ static const struct ScriptCommand s_gs185_g1_s0_lives0_dlg0[] = { /* 0x8234d94 * WAIT(30), { 0x2e, 0x03, 0x0001, 0x00000009, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Well, those pests are gone.\nLet's find $n2.")), - VARIANT_DEFAULT(_(" No one should hold us back\nnow. Let's find $n2.")), + VARIANT(/* == */ 1, _(" Well, those pests are gone.\nLet's find {NAME_2}.")), + VARIANT_DEFAULT(_(" No one should hold us back\nnow. Let's find {NAME_2}.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(16), { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Um, excuse me...") }, @@ -83,7 +83,7 @@ static const struct ScriptCommand s_gs185_g1_s0_lives0_dlg0[] = { /* 0x8234d94 * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You must be $n2.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You must be {NAME_2}.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Let's get you home.\nCaterpie was worried about you.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(16), diff --git a/src/data/ground/ground_data_d05p01_station.h b/src/data/ground/ground_data_d05p01_station.h index ddc7d4925..e14f8b65f 100644 --- a/src/data/ground/ground_data_d05p01_station.h +++ b/src/data/ground/ground_data_d05p01_station.h @@ -64,8 +64,8 @@ static const struct ScriptCommand s_gs186_g1_s0_lives0_dlg0[] = { /* 0x8235ba8 * { 0x91, 0x04, 0x000b, 0x00000004, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" So your friend $n2\nis somewhere deep in this canyon?")), - VARIANT_DEFAULT(_(" Your friend $n2\nis lost deep in this canyon?")), + VARIANT(/* == */ 1, _(" So your friend {NAME_2}\nis somewhere deep in this canyon?")), + VARIANT_DEFAULT(_(" Your friend {NAME_2}\nis lost deep in this canyon?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x0d, 0x0002, 0x00000000, 0x00000000, NULL }, @@ -78,8 +78,8 @@ static const struct ScriptCommand s_gs186_g1_s0_lives0_dlg0[] = { /* 0x8235ba8 * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Let's roll, $n0!")), - VARIANT_DEFAULT(_(" Let's go, $n0!")), + VARIANT(/* == */ 1, _(" Let's roll, {NAME_0}!")), + VARIANT_DEFAULT(_(" Let's go, {NAME_0}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(15), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -100,19 +100,19 @@ static const struct ScriptCommand s_gs186_g1_s0_lives0_dlg0[] = { /* 0x8235ba8 * WAIT(10), { 0x2e, 0x0d, 0x0002, 0x00000041, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There's something I forgot\nto mention...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This canyon is known as\nthe #CDSilent Chasm#R, but...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This canyon is known as\nthe {COLOR YELLOW_D}Silent Chasm{RESET}, but...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's rumored that an amazing\nmonster sleeps here.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(473), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, CALL_SCRIPT(NOTICE_FUNC), { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" M...#Wmonster?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" M...{WAIT_PRESS}monster?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes, but!#W\nIt's only folklore!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes, but!{WAIT_PRESS}\nIt's only folklore!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's also true that\nShiftry hasn't returned...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I just thought I should\nlet you know...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -126,7 +126,7 @@ static const struct ScriptCommand s_gs186_g1_s0_lives0_dlg0[] = { /* 0x8235ba8 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh!#W\nWhat's wrong?!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh!{WAIT_PRESS}\nWhat's wrong?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -141,12 +141,12 @@ static const struct ScriptCommand s_gs186_g1_s0_lives0_dlg0[] = { /* 0x8235ba8 * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey, $n0, you too,\nright?")), - VARIANT_DEFAULT(_(" Say, $n0, you're\nfeeling sick too, aren't you?")), + VARIANT(/* == */ 1, _(" Hey, {NAME_0}, you too,\nright?")), + VARIANT_DEFAULT(_(" Say, {NAME_0}, you're\nfeeling sick too, aren't you?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), - VARIANT(/* == */ 1, _(" $n0, you have\na stomachache too, don't you?")), - VARIANT_DEFAULT(_(" $n0, your stomach\nhurts too, doesn't it?")), + VARIANT(/* == */ 1, _(" {NAME_0}, you have\na stomachache too, don't you?")), + VARIANT_DEFAULT(_(" {NAME_0}, your stomach\nhurts too, doesn't it?")), CHOICE(/* label */ 12, _("It's true! It's tearing me up!")), CHOICE(/* label */ 13, _("Huh? I'm perfectly fine.")), LABEL(12), /* = 0x0c */ @@ -162,9 +162,9 @@ static const struct ScriptCommand s_gs186_g1_s0_lives0_dlg0[] = { /* 0x8235ba8 * WAIT(30), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" See...\n$n0 is in pain too.")), + VARIANT(/* == */ 1, _(" See...\n{NAME_0} is in pain too.")), VARIANT(/* == */ 1, _(" Sorry, but we can't handle\nthis rescue...")), - VARIANT_DEFAULT(_(" See...\n$n0 is hurting too.")), + VARIANT_DEFAULT(_(" See...\n{NAME_0} is hurting too.")), VARIANT_DEFAULT(_(" I'm sorry, but we won't\nbe able to handle this rescue...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), @@ -172,7 +172,7 @@ static const struct ScriptCommand s_gs186_g1_s0_lives0_dlg0[] = { /* 0x8235ba8 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Is that so?") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But $n0...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But {NAME_0}...") }, { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hasn't had anything to\neat yet this morning.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -185,7 +185,7 @@ static const struct ScriptCommand s_gs186_g1_s0_lives0_dlg0[] = { /* 0x8235ba8 * { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Owowow...#W\nI guess the cramping settled down...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Owowow...{WAIT_PRESS}\nI guess the cramping settled down...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -208,13 +208,13 @@ static const struct ScriptCommand s_gs186_g1_s0_lives0_dlg0[] = { /* 0x8235ba8 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000003, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" What's wrong with you,\n$n0?!\nBack me up here!")), + VARIANT(/* == */ 1, _(" What's wrong with you,\n{NAME_0}?!\nBack me up here!")), VARIANT(/* == */ 1, _(" You're my partner!\nYou have to catch my drift better!")), - VARIANT_DEFAULT(_(" What's the matter,\n$n0?!\nI need you to back me!")), + VARIANT_DEFAULT(_(" What's the matter,\n{NAME_0}?!\nI need you to back me!")), VARIANT_DEFAULT(_(" If you're my partner, you\nneed to read my cues better!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Wh-why this sudden\noutburst, $n1?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Wh-why this sudden\noutburst, {NAME_1}?") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Don't you have a\nstomachache?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -227,9 +227,9 @@ static const struct ScriptCommand s_gs186_g1_s0_lives0_dlg0[] = { /* 0x8235ba8 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" Uh, yeah...")), - VARIANT(/* == */ 1, _(" Owowow...#W\nI guess the cramping settled down...")), + VARIANT(/* == */ 1, _(" Owowow...{WAIT_PRESS}\nI guess the cramping settled down...")), VARIANT_DEFAULT(_(" Uh, yes...")), - VARIANT_DEFAULT(_(" Owowow...#W\nI guess the cramping settled down...")), + VARIANT_DEFAULT(_(" Owowow...{WAIT_PRESS}\nI guess the cramping settled down...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -258,15 +258,15 @@ static const struct ScriptCommand s_gs186_g1_s0_lives0_dlg0[] = { /* 0x8235ba8 * { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" All right...#W\nThere's nothing we can do about that.")), + VARIANT(/* == */ 1, _(" All right...{WAIT_PRESS}\nThere's nothing we can do about that.")), VARIANT(/* == */ 1, _(" We'll just have to hope the\nmonster doesn't really exist.")), - VARIANT_DEFAULT(_(" OK...#W\nWell, it can't be helped.")), + VARIANT_DEFAULT(_(" OK...{WAIT_PRESS}\nWell, it can't be helped.")), VARIANT_DEFAULT(_(" Let's just hope that monster\ndoesn't exist.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2d, 0x0a, 0x0000, 0x00000006, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" My friend Jumpluff should\nbe around B$d0F.#W\nPlease take care!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" My friend Jumpluff should\nbe around B{VALUE_0}F.{WAIT_PRESS}\nPlease take care!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, @@ -277,8 +277,8 @@ static const struct ScriptCommand s_gs186_g1_s0_lives0_dlg0[] = { /* 0x8235ba8 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Let's roll, $n0!")), - VARIANT_DEFAULT(_(" Let's get going,\n$n0!")), + VARIANT(/* == */ 1, _(" Let's roll, {NAME_0}!")), + VARIANT_DEFAULT(_(" Let's get going,\n{NAME_0}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d05p02_station.h b/src/data/ground/ground_data_d05p02_station.h index 670e9f6ec..e65f35ff1 100644 --- a/src/data/ground/ground_data_d05p02_station.h +++ b/src/data/ground/ground_data_d05p02_station.h @@ -51,8 +51,8 @@ static const struct ScriptCommand s_gs187_g1_s0_lives0_dlg0[] = { /* 0x8237d1c * WAIT(32), { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n2's friend is\nsupposed to be around here, right?")), - VARIANT_DEFAULT(_(" Isn't this the place?\nWhere $n2's friend is supposed\nto be?")), + VARIANT(/* == */ 1, _(" {NAME_2}'s friend is\nsupposed to be around here, right?")), + VARIANT_DEFAULT(_(" Isn't this the place?\nWhere {NAME_2}'s friend is supposed\nto be?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, WAIT(60), @@ -77,11 +77,11 @@ static const struct ScriptCommand s_gs187_g1_s0_lives0_dlg0[] = { /* 0x8237d1c * { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Great!\nYour friend is waiting for you.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n3 is in the\nback...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" {NAME_3} is in the\nback...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh? $n3?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh? {NAME_3}?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, WAIT(5), @@ -112,7 +112,7 @@ static const struct ScriptCommand s_gs187_g1_s0_lives0_dlg0[] = { /* 0x8237d1c * { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Get away from here!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Get...#W\nGet away?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Get...{WAIT_PRESS}\nGet away?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, BGM_STOP, FANFARE_PLAY2(502), @@ -166,22 +166,22 @@ static const struct ScriptCommand s_gs187_g1_s0_lives0_dlg0[] = { /* 0x8237d1c * WAIT(8), CALL_SCRIPT(LOOK_AROUND_FUNC), WAIT(30), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Shi-$n3's gone!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Shi-{NAME_3}'s gone!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, WAIT(15), BGM_SWITCH(9), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I am $n6!\nThe embodiment of lightning!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I am {NAME_6}!\nThe embodiment of lightning!") }, { 0x2e, 0x0e, 0x0006, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" If you wish to save\n$n3, then scale #CDMt. Thunder#R!") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" If you wish to save\n{NAME_3}, then scale {COLOR YELLOW_D}Mt. Thunder{RESET}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n6...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_6}...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" So that's the legendary\nmonster...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), diff --git a/src/data/ground/ground_data_d06p01_station.h b/src/data/ground/ground_data_d06p01_station.h index 051b6470a..f2cf53417 100644 --- a/src/data/ground/ground_data_d06p01_station.h +++ b/src/data/ground/ground_data_d06p01_station.h @@ -52,15 +52,15 @@ static const struct ScriptCommand s_gs188_g1_s0_lives0_dlg0[] = { /* 0x82392cc * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" This must be the foot of\n#CDMt. Thunder#R...")), - VARIANT(/* == */ 1, _(" I wonder if $n3's\nteam is already on the way...")), - VARIANT_DEFAULT(_(" This is the foot of\n#CDMt. Thunder#R.")), - VARIANT_DEFAULT(_(" I wonder...\nIs $n3's team already on\ntheir way?")), + VARIANT(/* == */ 1, _(" This must be the foot of\n{COLOR YELLOW_D}Mt. Thunder{RESET}...")), + VARIANT(/* == */ 1, _(" I wonder if {NAME_3}'s\nteam is already on the way...")), + VARIANT_DEFAULT(_(" This is the foot of\n{COLOR YELLOW_D}Mt. Thunder{RESET}.")), + VARIANT_DEFAULT(_(" I wonder...\nIs {NAME_3}'s team already on\ntheir way?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n2, huh...#W\nIt sounds really tough.")), - VARIANT_DEFAULT(_(" $n2...#W\nIt sounds very tough...")), + VARIANT(/* == */ 1, _(" {NAME_2}, huh...{WAIT_PRESS}\nIt sounds really tough.")), + VARIANT_DEFAULT(_(" {NAME_2}...{WAIT_PRESS}\nIt sounds very tough...")), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Brr... I'm shaking...") }, @@ -71,14 +71,14 @@ static const struct ScriptCommand s_gs188_g1_s0_lives0_dlg0[] = { /* 0x82392cc * { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" But I can't be spooked\nby this.")), - VARIANT(/* == */ 1, _(" Our mission is to rescue\n$n4.")), - VARIANT(/* == */ 1, _(" $n0, let's give it\nour best!")), + VARIANT(/* == */ 1, _(" Our mission is to rescue\n{NAME_4}.")), + VARIANT(/* == */ 1, _(" {NAME_0}, let's give it\nour best!")), VARIANT(/* == */ 3, _(" I shouldn't get all scared\nnow!")), - VARIANT(/* == */ 3, _(" Our objective is to rescue\n$n4.")), - VARIANT(/* == */ 3, _(" $n0, let's do our\nbest!")), + VARIANT(/* == */ 3, _(" Our objective is to rescue\n{NAME_4}.")), + VARIANT(/* == */ 3, _(" {NAME_0}, let's do our\nbest!")), VARIANT_DEFAULT(_(" I can't be scared now.")), - VARIANT_DEFAULT(_(" Our objective is simple.\nWe're rescuing $n4.")), - VARIANT_DEFAULT(_(" $n0, let's try\nour best!")), + VARIANT_DEFAULT(_(" Our objective is simple.\nWe're rescuing {NAME_4}.")), + VARIANT_DEFAULT(_(" {NAME_0}, let's try\nour best!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x23, 0x00, 0x003c, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -146,9 +146,9 @@ static const struct ScriptCommand s_gs188_g2_s0_lives0_dlg0[] = { /* 0x8239a30 * WAIT(20), { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0!\nThis time, we're gonna rescue\n$n2!")), + VARIANT(/* == */ 1, _(" {NAME_0}!\nThis time, we're gonna rescue\n{NAME_2}!")), VARIANT(/* == */ 1, _(" Let's give it our best!")), - VARIANT_DEFAULT(_(" $n0!\nWe'll rescue $n2 this time for\nsure!")), + VARIANT_DEFAULT(_(" {NAME_0}!\nWe'll rescue {NAME_2} this time for\nsure!")), VARIANT_DEFAULT(_(" Let's work hard at it!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x23, 0x00, 0x003c, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d06p02_station.h b/src/data/ground/ground_data_d06p02_station.h index 7595288cc..213c9577f 100644 --- a/src/data/ground/ground_data_d06p02_station.h +++ b/src/data/ground/ground_data_d06p02_station.h @@ -153,12 +153,12 @@ static const struct ScriptCommand s_gs189_g1_s0_lives0_dlg0[] = { /* 0x823a4d8 * WAIT(10), { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hmm...#W\nThings didn't go right for us...")), - VARIANT_DEFAULT(_(" Hmm...#W\nThings didn't turn out in our favor...")), + VARIANT(/* == */ 1, _(" Hmm...{WAIT_PRESS}\nThings didn't go right for us...")), + VARIANT_DEFAULT(_(" Hmm...{WAIT_PRESS}\nThings didn't turn out in our favor...")), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" But we should be getting\nclose.#W\nLet's keep going hard at it!")), - VARIANT_DEFAULT(_(" But we shouldn't be far.#W\nLet's keep doing our best!")), + VARIANT(/* == */ 1, _(" But we should be getting\nclose.{WAIT_PRESS}\nLet's keep going hard at it!")), + VARIANT_DEFAULT(_(" But we shouldn't be far.{WAIT_PRESS}\nLet's keep doing our best!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d06p03_station.h b/src/data/ground/ground_data_d06p03_station.h index bed74bcd0..03a6dacaf 100644 --- a/src/data/ground/ground_data_d06p03_station.h +++ b/src/data/ground/ground_data_d06p03_station.h @@ -73,7 +73,7 @@ static const struct ScriptCommand s_gs190_g1_s0_lives0_dlg0[] = { /* 0x823ac18 * { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Wh-what is going on...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Urrggh!#W\nUwoah!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Urrggh!{WAIT_PRESS}\nUwoah!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -101,14 +101,14 @@ static const struct ScriptCommand s_gs190_g1_s0_lives0_dlg0[] = { /* 0x823ac18 * { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Enough!#W\nThat's enough fighting.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I've calmed down.\nTake $n6 back.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Enough!{WAIT_PRESS}\nThat's enough fighting.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I've calmed down.\nTake {NAME_6} back.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You kids...\nYou've impressed me.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But...#W\nThings won't be this easy next time.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But...{WAIT_PRESS}\nThings won't be this easy next time.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I will go all out next time,\nso you'd best be prepared!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Until then, you'd better\nhone your skills!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -133,7 +133,7 @@ static const struct ScriptCommand s_gs190_g1_s0_lives0_dlg0[] = { /* 0x823ac18 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, CALL_SCRIPT(NOTICE_FUNC), { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Look!\nThere's $n6!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Look!\nThere's {NAME_6}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -149,7 +149,7 @@ static const struct ScriptCommand s_gs190_g1_s0_lives0_dlg0[] = { /* 0x823ac18 * { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0006, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Ungh... Uh, yeah...#W\nSomehow, I am...") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Ungh... Uh, yeah...{WAIT_PRESS}\nSomehow, I am...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -160,7 +160,7 @@ static const struct ScriptCommand s_gs190_g1_s0_lives0_dlg0[] = { /* 0x823ac18 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" But that was an eye-opener.") }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Driving off that\n$n2.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Driving off that\n{NAME_2}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -168,7 +168,7 @@ static const struct ScriptCommand s_gs190_g1_s0_lives0_dlg0[] = { /* 0x823ac18 * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I agree.") }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You're awfully strong for\na plain $m0.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You're awfully strong for\na plain {POKEMON_0}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(32), { 0x91, 0x04, 0x0002, 0x00000005, 0x00000000, NULL }, @@ -176,7 +176,7 @@ static const struct ScriptCommand s_gs190_g1_s0_lives0_dlg0[] = { /* 0x823ac18 * { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ......") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I sensed it when we first\nmet...") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Perhaps...#W\nYou aren't a Pokémon, are you?") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Perhaps...{WAIT_PRESS}\nYou aren't a Pokémon, are you?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(465), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -184,8 +184,8 @@ static const struct ScriptCommand s_gs190_g1_s0_lives0_dlg0[] = { /* 0x823ac18 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wow!\nHow can you tell that?!") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But you're right.\n$n0 isn't a Pokémon.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0 is a human.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But you're right.\n{NAME_0} isn't a Pokémon.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0} is a human.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(473), { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, @@ -202,11 +202,11 @@ static const struct ScriptCommand s_gs190_g1_s0_lives0_dlg0[] = { /* 0x823ac18 * WAIT(30), { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0 doesn't really\nknow what happened, either.")), - VARIANT(/* == */ 1, _(" $n0 just woke up\none morning here as a Pokémon...")), + VARIANT(/* == */ 1, _(" {NAME_0} doesn't really\nknow what happened, either.")), + VARIANT(/* == */ 1, _(" {NAME_0} just woke up\none morning here as a Pokémon...")), VARIANT(/* == */ 1, _(" ...And doesn't remember\na thing about being a human.")), - VARIANT_DEFAULT(_(" $n0 doesn't\nunderstand very much, either.")), - VARIANT_DEFAULT(_(" $n0 woke up\none morning here as a Pokémon...")), + VARIANT_DEFAULT(_(" {NAME_0} doesn't\nunderstand very much, either.")), + VARIANT_DEFAULT(_(" {NAME_0} woke up\none morning here as a Pokémon...")), VARIANT_DEFAULT(_(" ...And doesn't remember\nanything about being a human.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(45), @@ -214,35 +214,35 @@ static const struct ScriptCommand s_gs190_g1_s0_lives0_dlg0[] = { /* 0x823ac18 * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Oh, that's right!#W\nLombre was saying something in the\nsquare.")), - VARIANT(/* == */ 1, _(" He said $n3\nknows everything.")), - VARIANT(/* == */ 1, _(" $n3, do you know\nwhy $n0 became a Pokémon?")), - VARIANT_DEFAULT(_(" Oh, wait!#W\nLombre said something in the square!")), - VARIANT_DEFAULT(_(" He said $n3 knows\neverything!")), - VARIANT_DEFAULT(_(" $n3, could you\nfigure out why $n0 became a\nPokémon?")), + VARIANT(/* == */ 1, _(" Oh, that's right!{WAIT_PRESS}\nLombre was saying something in the\nsquare.")), + VARIANT(/* == */ 1, _(" He said {NAME_3}\nknows everything.")), + VARIANT(/* == */ 1, _(" {NAME_3}, do you know\nwhy {NAME_0} became a Pokémon?")), + VARIANT_DEFAULT(_(" Oh, wait!{WAIT_PRESS}\nLombre said something in the square!")), + VARIANT_DEFAULT(_(" He said {NAME_3} knows\neverything!")), + VARIANT_DEFAULT(_(" {NAME_3}, could you\nfigure out why {NAME_0} became a\nPokémon?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ......") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" No...#W\nI can't determine that.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" No...{WAIT_PRESS}\nI can't determine that.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x03, 0x0001, 0x00000005, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh...\nI thought you would know...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" However...#W\nThere is a way for unveiling the truth.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" However...{WAIT_PRESS}\nThere is a way for unveiling the truth.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x03, 0x0001, 0x0000000b, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, really? How?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Make way to the\n#C5Hill of the Ancients#R.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Make way to the\n{COLOR CYAN}Hill of the Ancients{RESET}.") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" There, you will find a\nPokémon that stares into the sun all day...") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" A Pokémon who is said to\nsee into the future.") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Xatu is his name.#W\nHe should shed light on your puzzling\nfriend.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Xatu is his name.{WAIT_PRESS}\nHe should shed light on your puzzling\nfriend.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, @@ -254,20 +254,20 @@ static const struct ScriptCommand s_gs190_g1_s0_lives0_dlg0[] = { /* 0x823ac18 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000b, 0x00000003, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0, let's roll!\nWe're going to the #C5Hill of the Ancients#R!")), + VARIANT(/* == */ 1, _(" {NAME_0}, let's roll!\nWe're going to the {COLOR CYAN}Hill of the Ancients{RESET}!")), VARIANT(/* == */ 1, _(" There's no time to lose!\nWe'd better go back quick!")), - VARIANT_DEFAULT(_(" $n0, let's go!\nOff to the #C5Hill of the Ancients#R!")), + VARIANT_DEFAULT(_(" {NAME_0}, let's go!\nOff to the {COLOR CYAN}Hill of the Ancients{RESET}!")), VARIANT_DEFAULT(_(" We can't waste any time!\nLet's go back quick!")), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Shiftry, you too.#W\nLet's hurry back.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Shiftry, you too.{WAIT_PRESS}\nLet's hurry back.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0e, 0x0006, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Uh... Yeah...#W\nI guess we should...") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Uh... Yeah...{WAIT_PRESS}\nI guess we should...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, @@ -280,8 +280,8 @@ static const struct ScriptCommand s_gs190_g1_s0_lives0_dlg0[] = { /* 0x823ac18 * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0!")), - VARIANT_DEFAULT(_(" $n0!")), + VARIANT(/* == */ 1, _(" {NAME_0}!")), + VARIANT_DEFAULT(_(" {NAME_0}!")), { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(464), CALL_SCRIPT(NOTICE_FUNC), @@ -306,13 +306,13 @@ static const struct ScriptCommand s_gs190_g1_s0_lives0_dlg0[] = { /* 0x823ac18 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0x2e, 0x0e, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Alakazam.#W\nI know you.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Alakazam.{WAIT_PRESS}\nI know you.") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I don't think you're \ncompletely ignorant about this.") }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ......#W\nYou know something, don't you?") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ......{WAIT_PRESS}\nYou know something, don't you?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x0f, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" There is something that\nconcerns me.#W\nBut it should go unspoken for now.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" There is something that\nconcerns me.{WAIT_PRESS}\nBut it should go unspoken for now.") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...For their sake...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), diff --git a/src/data/ground/ground_data_d07p01_station.h b/src/data/ground/ground_data_d07p01_station.h index ed4392922..6433a31ec 100644 --- a/src/data/ground/ground_data_d07p01_station.h +++ b/src/data/ground/ground_data_d07p01_station.h @@ -44,20 +44,20 @@ static const struct ScriptCommand s_gs191_g1_s0_lives0_dlg0[] = { /* 0x823d8e0 * { 0x6b, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" This is the #CDGreat Canyon#R...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" This is the {COLOR YELLOW_D}Great Canyon{RESET}...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The peak is called the\n#C5Hill of the Ancients#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The peak is called the\n{COLOR CYAN}Hill of the Ancients{RESET}.") }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, { 0x2d, 0x0a, 0x0000, 0x00000009, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n2 said that\nthe #C5Hill of the Ancients#R is on $d0F.")), - VARIANT(/* == */ 1, _(" That's where we'll find\n$n3.#W\n$n0, let's give it our best!")), - VARIANT_DEFAULT(_(" According to $n2,\nthe #C5Hill of the Ancients#R is on $d0F.")), - VARIANT_DEFAULT(_(" $n3 should be\nthere.#W\n$n0, let's do our best!")), + VARIANT(/* == */ 1, _(" {NAME_2} said that\nthe {COLOR CYAN}Hill of the Ancients{RESET} is on {VALUE_0}F.")), + VARIANT(/* == */ 1, _(" That's where we'll find\n{NAME_3}.{WAIT_PRESS}\n{NAME_0}, let's give it our best!")), + VARIANT_DEFAULT(_(" According to {NAME_2},\nthe {COLOR CYAN}Hill of the Ancients{RESET} is on {VALUE_0}F.")), + VARIANT_DEFAULT(_(" {NAME_3} should be\nthere.{WAIT_PRESS}\n{NAME_0}, let's do our best!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x23, 0x00, 0x0028, 0x00000000, 0x00000000, NULL }, @@ -113,11 +113,11 @@ static const struct ScriptCommand s_gs191_g2_s0_lives0_dlg0[] = { /* 0x823ddac * { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0!\nThis time we'll make it to the peak,\nall right?")), - VARIANT(/* == */ 1, _(" We'll meet $n3\nand ask about you, $n0.")), + VARIANT(/* == */ 1, _(" {NAME_0}!\nThis time we'll make it to the peak,\nall right?")), + VARIANT(/* == */ 1, _(" We'll meet {NAME_3}\nand ask about you, {NAME_0}.")), VARIANT(/* == */ 1, _(" Let's give it our best!")), - VARIANT_DEFAULT(_(" $n0!\nLet's make it to the peak this time!")), - VARIANT_DEFAULT(_(" We have to meet\n$n3 and get some information\non you, $n0.")), + VARIANT_DEFAULT(_(" {NAME_0}!\nLet's make it to the peak this time!")), + VARIANT_DEFAULT(_(" We have to meet\n{NAME_3} and get some information\non you, {NAME_0}.")), VARIANT_DEFAULT(_(" Let's do our best!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d07p02_station.h b/src/data/ground/ground_data_d07p02_station.h index 873f72ff8..1684c4546 100644 --- a/src/data/ground/ground_data_d07p02_station.h +++ b/src/data/ground/ground_data_d07p02_station.h @@ -53,7 +53,7 @@ static const struct ScriptCommand s_gs192_g1_s0_lives0_dlg0[] = { /* 0x823e36c * { 0x6b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#W\nWhat is it?#W\nHave you reason to see me?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}\nWhat is it?{WAIT_PRESS}\nHave you reason to see me?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000008, NULL }, @@ -65,19 +65,19 @@ static const struct ScriptCommand s_gs192_g1_s0_lives0_dlg0[] = { /* 0x823e36c * WAIT(45), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hm! This...#W\nThis is a #CIClear Wing#R...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...#WI see.#W\nAbout the mirage Pokémon...#W\nThat is what you wish to know?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hm! This...{WAIT_PRESS}\nThis is a {COLOR GREEN_I}Clear Wing{RESET}...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...{WAIT_PRESS}I see.{WAIT_PRESS}\nAbout the mirage Pokémon...{WAIT_PRESS}\nThat is what you wish to know?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, - { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _(" #C6#RKwaaaaah!") }, + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _(" {COLOR YELLOW}{RESET}Kwaaaaah!") }, WAIT(30), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, CALL_SCRIPT(JUMP_SURPRISE_FUNC), WAIT(60), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" .......#W\nThe mirage Pokémon...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I know...#W\nLittle about it...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" .......{WAIT_PRESS}\nThe mirage Pokémon...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I know...{WAIT_PRESS}\nLittle about it...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............") }, @@ -94,7 +94,7 @@ static const struct ScriptCommand s_gs192_g1_s0_lives0_dlg0[] = { /* 0x823e36c * CALL_SCRIPT(NOTICE_FUNC), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" However!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There are Pokémon that\nlive, breathe, and prosper with\nthe very land.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They...#W\nrage with the eruptions of volcanoes...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They...{WAIT_PRESS}\nrage with the eruptions of volcanoes...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Roar as one with thunder...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And race with the north\nwind.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -106,19 +106,19 @@ static const struct ScriptCommand s_gs192_g1_s0_lives0_dlg0[] = { /* 0x823e36c * { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, WAIT(30), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" An island known as the\n“Three Fields.”") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There is one such field.\nThe #CDFiery Field#R!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There is one such field.\nThe {COLOR YELLOW_D}Fiery Field{RESET}!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" One of the Pokémon...\nA shadow of the mirage...is there.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Go.\nYou must go to the #CDFiery Field#R.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Go.\nYou must go to the {COLOR YELLOW_D}Fiery Field{RESET}.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The answers you seek...\nPerhaps they await you there.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), BGM_STOP, FANFARE_PLAY(205), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Gained access to\n#+the #CDFiery Field#R!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Gained access to\n{CENTER_ALIGN}the {COLOR YELLOW_D}Fiery Field{RESET}!") }, { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), @@ -194,16 +194,16 @@ static const struct ScriptCommand s_gs192_g2_s0_lives0_dlg0[] = { /* 0x823ef68 * { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Yes! We finally made it to\nthe top, $n0!")), - VARIANT_DEFAULT(_(" Yes! We've finally made it\nto the top, $n0!")), + VARIANT(/* == */ 1, _(" Yes! We finally made it to\nthe top, {NAME_0}!")), + VARIANT_DEFAULT(_(" Yes! We've finally made it\nto the top, {NAME_0}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x91, 0x08, 0x0002, 0x00000004, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" So this is the #C5Hill of\nthe Ancients#R...")), - VARIANT_DEFAULT(_(" This is the #C5Hill of the\nAncients#R...")), + VARIANT(/* == */ 1, _(" So this is the {COLOR CYAN}Hill of\nthe Ancients{RESET}...")), + VARIANT_DEFAULT(_(" This is the {COLOR CYAN}Hill of the\nAncients{RESET}...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -217,7 +217,7 @@ static const struct ScriptCommand s_gs192_g2_s0_lives0_dlg0[] = { /* 0x823ef68 * { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0!#W\nIs that $n2 over there?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0}!{WAIT_PRESS}\nIs that {NAME_2} over there?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -226,7 +226,7 @@ static const struct ScriptCommand s_gs192_g2_s0_lives0_dlg0[] = { /* 0x823ef68 * { 0x7a, 0x00, 0x003c, 0x00000002, 0x00000000, NULL }, { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, WAIT(20), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Excuse me?#W\nAre you maybe $n2?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Excuse me?{WAIT_PRESS}\nAre you maybe {NAME_2}?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ......") }, @@ -266,7 +266,7 @@ static const struct ScriptCommand s_gs192_g2_s0_lives0_dlg0[] = { /* 0x823ef68 * { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Maybe he's sleeping while\non his feet?") }, { 0x2e, 0x15, 0x0001, -0x00000002, 0x00000000, NULL }, ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), - VARIANT_DEFAULT(_(" $n0, what should\nwe do?")), + VARIANT_DEFAULT(_(" {NAME_0}, what should\nwe do?")), CHOICE(/* label */ 2, _("Tickle him.")), CHOICE(/* label */ 3, _("Attack him.")), LABEL(2), /* = 0x02 */ @@ -275,8 +275,8 @@ static const struct ScriptCommand s_gs192_g2_s0_lives0_dlg0[] = { /* 0x823ef68 * UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hah? Tickle him?#W\n...OK. I'll try it.")), - VARIANT_DEFAULT(_(" Huh? Tickle him?#W\n...OK. It's worth a try.")), + VARIANT(/* == */ 1, _(" Hah? Tickle him?{WAIT_PRESS}\n...OK. I'll try it.")), + VARIANT_DEFAULT(_(" Huh? Tickle him?{WAIT_PRESS}\n...OK. It's worth a try.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, @@ -329,8 +329,8 @@ static const struct ScriptCommand s_gs192_g2_s0_lives0_dlg0[] = { /* 0x823ef68 * { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" It's useless, $n0.\nI'm not getting any response.")), - VARIANT_DEFAULT(_(" It's no good, $n0.\nHe's not responding.")), + VARIANT(/* == */ 1, _(" It's useless, {NAME_0}.\nI'm not getting any response.")), + VARIANT_DEFAULT(_(" It's no good, {NAME_0}.\nHe's not responding.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(90), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -344,7 +344,7 @@ static const struct ScriptCommand s_gs192_g2_s0_lives0_dlg0[] = { /* 0x823ef68 * { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Snort...#W Giggle...") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Snort...{WAIT_PRESS} Giggle...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -358,9 +358,9 @@ static const struct ScriptCommand s_gs192_g2_s0_lives0_dlg0[] = { /* 0x823ef68 * { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" He finally started laughing...")), - VARIANT(/* == */ 1, _(" Maybe...#W\nIs he just dense?")), + VARIANT(/* == */ 1, _(" Maybe...{WAIT_PRESS}\nIs he just dense?")), VARIANT_DEFAULT(_(" He's finally laughing now...")), - VARIANT_DEFAULT(_(" Is he...#W\njust dense?")), + VARIANT_DEFAULT(_(" Is he...{WAIT_PRESS}\njust dense?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(90), BGM_STOP, @@ -401,8 +401,8 @@ static const struct ScriptCommand s_gs192_g2_s0_lives0_dlg0[] = { /* 0x823ef68 * WAIT(60), { 0x2e, 0x03, 0x0001, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ...#WOh, all right. \nYou really want me to do this.")), - VARIANT_DEFAULT(_(" ...#WFine, then.\nI'll do it, OK?")), + VARIANT(/* == */ 1, _(" ...{WAIT_PRESS}Oh, all right. \nYou really want me to do this.")), + VARIANT_DEFAULT(_(" ...{WAIT_PRESS}Fine, then.\nI'll do it, OK?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), @@ -420,8 +420,8 @@ static const struct ScriptCommand s_gs192_g2_s0_lives0_dlg0[] = { /* 0x823ef68 * { 0x2b, 0x00, 0x0000, 0x0000002d, 0x0000003c, NULL }, { 0x2e, 0x03, 0x0001, 0x00000003, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" All right. Counting down.#W\nThree...#W Two...#W One...#W Now...!")), - VARIANT_DEFAULT(_(" OK. Counting down.#W\nThree...#W Two...#W One...#W Now...!")), + VARIANT(/* == */ 1, _(" All right. Counting down.{WAIT_PRESS}\nThree...{WAIT_PRESS} Two...{WAIT_PRESS} One...{WAIT_PRESS} Now...!")), + VARIANT_DEFAULT(_(" OK. Counting down.{WAIT_PRESS}\nThree...{WAIT_PRESS} Two...{WAIT_PRESS} One...{WAIT_PRESS} Now...!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2b, 0x00, 0x0000, -0x00000001, -0x00000001, NULL }, @@ -449,8 +449,8 @@ static const struct ScriptCommand s_gs192_g2_s0_lives0_dlg0[] = { /* 0x823ef68 * { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Indeed.") }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I am $n2.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You discerned my true\nidentity...#W\nYou are not an ordinary sort...") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I am {NAME_2}.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You discerned my true\nidentity...{WAIT_PRESS}\nYou are not an ordinary sort...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -466,7 +466,7 @@ static const struct ScriptCommand s_gs192_g2_s0_lives0_dlg0[] = { /* 0x823ef68 * { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You there.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You are no ordinary\nPokémon.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You are...#W\nhuman, yes?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You are...{WAIT_PRESS}\nhuman, yes?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(4), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -494,17 +494,17 @@ static const struct ScriptCommand s_gs192_g2_s0_lives0_dlg0[] = { /* 0x823ef68 * WAIT(30), { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Then, you've got to tell us,\n$n2!")), - VARIANT_DEFAULT(_(" If you know, please tell us,\n$n2!")), + VARIANT(/* == */ 1, _(" Then, you've got to tell us,\n{NAME_2}!")), + VARIANT_DEFAULT(_(" If you know, please tell us,\n{NAME_2}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" This is my friend\n$n0...")), + VARIANT(/* == */ 1, _(" This is my friend\n{NAME_0}...")), VARIANT(/* == */ 1, _(" My friend woke up one\nmorning as a Pokémon.")), VARIANT(/* == */ 1, _(" Without remembering\nanything as a human being, too.")), - VARIANT_DEFAULT(_(" Next to me is my friend\n$n0...")), + VARIANT_DEFAULT(_(" Next to me is my friend\n{NAME_0}...")), VARIANT_DEFAULT(_(" My friend woke up one\nmorning as a Pokémon.")), VARIANT_DEFAULT(_(" And, without any memory as\na human.")), WAIT(30), @@ -512,8 +512,8 @@ static const struct ScriptCommand s_gs192_g2_s0_lives0_dlg0[] = { /* 0x823ef68 * { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n2, you can tell,\ncan't you?#W\nCan't you tell us?")), - VARIANT_DEFAULT(_(" $n2, you can tell,\ncan't you?#W\nPlease tell us.")), + VARIANT(/* == */ 1, _(" {NAME_2}, you can tell,\ncan't you?{WAIT_PRESS}\nCan't you tell us?")), + VARIANT_DEFAULT(_(" {NAME_2}, you can tell,\ncan't you?{WAIT_PRESS}\nPlease tell us.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................") }, @@ -526,10 +526,10 @@ static const struct ScriptCommand s_gs192_g2_s0_lives0_dlg0[] = { /* 0x823ef68 * { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wait. $n0\nbecoming a Pokémon and...#Wthe natural\ndisasters...#Ware related?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wait. {NAME_0}\nbecoming a Pokémon and...{WAIT_PRESS}the natural\ndisasters...{WAIT_PRESS}are related?!") }, { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What do you mean?!") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What does $n0\nhave to do with the natural disasters\nwe've been seeing?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What does {NAME_0}\nhave to do with the natural disasters\nwe've been seeing?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ........................") }, @@ -546,7 +546,7 @@ static const struct ScriptCommand s_gs192_g2_s0_lives0_dlg0[] = { /* 0x823ef68 * { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There are bigger concerns...#W\nI am afraid...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There are bigger concerns...{WAIT_PRESS}\nI am afraid...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The world's balance...\nIt must be restored.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Or the unthinkable shall\nbefall our world.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -556,10 +556,10 @@ static const struct ScriptCommand s_gs192_g2_s0_lives0_dlg0[] = { /* 0x823ef68 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Wh-#Wwhat did you say?")), - VARIANT(/* == */ 1, _(" The world...#W\nThe unthinkable is going to happen?")), - VARIANT_DEFAULT(_(" Huh...?#W\nYou're serious?!")), - VARIANT_DEFAULT(_(" The world...#W\nThe unthinkable is coming?")), + VARIANT(/* == */ 1, _(" Wh-{WAIT_PRESS}what did you say?")), + VARIANT(/* == */ 1, _(" The world...{WAIT_PRESS}\nThe unthinkable is going to happen?")), + VARIANT_DEFAULT(_(" Huh...?{WAIT_PRESS}\nYou're serious?!")), + VARIANT_DEFAULT(_(" The world...{WAIT_PRESS}\nThe unthinkable is coming?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Every day I see it.\nThe same future every day...") }, @@ -568,10 +568,10 @@ static const struct ScriptCommand s_gs192_g2_s0_lives0_dlg0[] = { /* 0x823ef68 * { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000005, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Xa-$n2...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Xa-{NAME_2}...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I fear it...#W\nThe world's destruction.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I fear it...{WAIT_PRESS}\nThe world's destruction.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), SELECT_LIVES(-1, 1), @@ -583,7 +583,7 @@ static const struct ScriptCommand s_gs192_g2_s0_lives0_dlg0[] = { /* 0x823ef68 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Kekeh!\nIsn't that a surprise!") }, { 0x2e, 0x02, 0x0003, 0x00000044, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" That $n0...\nwas human...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" That {NAME_0}...\nwas human...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d08p01_station.h b/src/data/ground/ground_data_d08p01_station.h index d91e5e3fb..e4647ca46 100644 --- a/src/data/ground/ground_data_d08p01_station.h +++ b/src/data/ground/ground_data_d08p01_station.h @@ -181,7 +181,7 @@ static const struct ScriptCommand s_gs193_g1_s0_lives0_dlg0[] = { /* 0x824313c * WAIT(20), { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I think they went this way.") }, { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" They can't get away.\nNot from all of us.") }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" We have to get rid of $n0\nquickly...") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" We have to get rid of {NAME_0}\nquickly...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), FANFARE_PLAY2(455), @@ -190,9 +190,9 @@ static const struct ScriptCommand s_gs193_g1_s0_lives0_dlg0[] = { /* 0x824313c * { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" Whoa!\nThey're catching up to us already?")), - VARIANT(/* == */ 1, _(" $n0, we have to\nroll.")), + VARIANT(/* == */ 1, _(" {NAME_0}, we have to\nroll.")), VARIANT_DEFAULT(_(" Aww, no!\nAre they catching up to us?")), - VARIANT_DEFAULT(_(" $n0, we'd better\ngo.")), + VARIANT_DEFAULT(_(" {NAME_0}, we'd better\ngo.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, @@ -256,18 +256,18 @@ static const struct ScriptCommand s_gs193_g2_s0_lives0_dlg0[] = { /* 0x8243ab8 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Urrggh...#W\nWe couldn't get through...")), - VARIANT_DEFAULT(_(" Ouch...#W\nWe couldn't break through...")), + VARIANT(/* == */ 1, _(" Urrggh...{WAIT_PRESS}\nWe couldn't get through...")), + VARIANT_DEFAULT(_(" Ouch...{WAIT_PRESS}\nWe couldn't break through...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(15), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" I think we got cocky and\ncareless, $n0.")), + VARIANT(/* == */ 1, _(" I think we got cocky and\ncareless, {NAME_0}.")), VARIANT(/* == */ 1, _(" Wonder what happened to\nthe Pokémon chasing us?\nAre they in the dungeon?")), VARIANT(/* == */ 1, _(" Well, running into them\nwould be bad trouble.\nLet's get through this...and fast.")), - VARIANT_DEFAULT(_(" I guess we got a little\ncareless, $n0.")), + VARIANT_DEFAULT(_(" I guess we got a little\ncareless, {NAME_0}.")), VARIANT_DEFAULT(_(" I wonder what became of\nthe Pokémon chasing us?\nAre they in the dungeon?")), VARIANT_DEFAULT(_(" We sure don't want to run\ninto them.\nLet's get through this quickly.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -339,8 +339,8 @@ static const struct ScriptCommand s_gs193_g3_s1_lives0_dlg0[] = { /* 0x8244078 * WAIT(1), { 0x8e, 0x01, 0x0000, 0x00000022, 0x00000000, NULL }, ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), - VARIANT(/* == */ 1, _(" Hey, $n0.\nAre you all ready?")), - VARIANT_DEFAULT(_(" Hi, $n0.\nAre you ready?")), + VARIANT(/* == */ 1, _(" Hey, {NAME_0}.\nAre you all ready?")), + VARIANT_DEFAULT(_(" Hi, {NAME_0}.\nAre you ready?")), CHOICE(/* label */ 0, _("All set!")), CHOICE(/* label */ 1, _("Not yet.")), LABEL(1), /* = 0x01 */ @@ -459,7 +459,7 @@ static const struct ScriptCommand s_gs193_g4_s0_lives0_dlg0[] = { /* 0x8244804 * CALL_SCRIPT(NOTICE_FUNC), { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What the...?#W\nIsn't this where we started from?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What the...?{WAIT_PRESS}\nIsn't this where we started from?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(468), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -469,12 +469,12 @@ static const struct ScriptCommand s_gs193_g4_s0_lives0_dlg0[] = { /* 0x8244804 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ............#W\nI guess that path just loops back to the\nstart.")), - VARIANT(/* == */ 1, _(" If we want to move on,\nI think our only choice is the #CDLapis Cave#R.")), - VARIANT(/* == */ 1, _(" $n0, let's give it\nour best!")), - VARIANT_DEFAULT(_(" ............#W\nI guess that path we took just loops back\nto where it started.")), - VARIANT_DEFAULT(_(" It looks like we have to go\nthrough the #CDLapis Cave#R to move on.")), - VARIANT_DEFAULT(_(" $n0, let's do our\nbest!")), + VARIANT(/* == */ 1, _(" ............{WAIT_PRESS}\nI guess that path just loops back to the\nstart.")), + VARIANT(/* == */ 1, _(" If we want to move on,\nI think our only choice is the {COLOR YELLOW_D}Lapis Cave{RESET}.")), + VARIANT(/* == */ 1, _(" {NAME_0}, let's give it\nour best!")), + VARIANT_DEFAULT(_(" ............{WAIT_PRESS}\nI guess that path we took just loops back\nto where it started.")), + VARIANT_DEFAULT(_(" It looks like we have to go\nthrough the {COLOR YELLOW_D}Lapis Cave{RESET} to move on.")), + VARIANT_DEFAULT(_(" {NAME_0}, let's do our\nbest!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, @@ -524,8 +524,8 @@ static const struct ScriptCommand s_gs193_g5_s0_lives0_dlg0[] = { /* 0x8244d30 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Urrggh...#W\nWe couldn't get through...")), - VARIANT_DEFAULT(_(" Ouch...#W\nWe couldn't break through...")), + VARIANT(/* == */ 1, _(" Urrggh...{WAIT_PRESS}\nWe couldn't get through...")), + VARIANT_DEFAULT(_(" Ouch...{WAIT_PRESS}\nWe couldn't break through...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(15), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -533,9 +533,9 @@ static const struct ScriptCommand s_gs193_g5_s0_lives0_dlg0[] = { /* 0x8244d30 * { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" We have to get through this\nfast, or they'll catch up to us.")), - VARIANT(/* == */ 1, _(" $n0, let's give it\nour best!")), + VARIANT(/* == */ 1, _(" {NAME_0}, let's give it\nour best!")), VARIANT_DEFAULT(_(" If we don't get through here\nfast, they'll catch up to us.")), - VARIANT_DEFAULT(_(" $n0, let's do our\nbest!")), + VARIANT_DEFAULT(_(" {NAME_0}, let's do our\nbest!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d08p02_station.h b/src/data/ground/ground_data_d08p02_station.h index dc97d2ddc..44060f7e8 100644 --- a/src/data/ground/ground_data_d08p02_station.h +++ b/src/data/ground/ground_data_d08p02_station.h @@ -68,7 +68,7 @@ static const struct ScriptCommand s_gs194_g1_s0_lives0_dlg0[] = { /* 0x8245734 * FANFARE_PLAY2(465), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, CALL_SCRIPT(NOTICE_FUNC), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Catch $n0!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Catch {NAME_0}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000b, 0x00000005, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d09p01_station.h b/src/data/ground/ground_data_d09p01_station.h index 5c68a8039..0fae1d1c5 100644 --- a/src/data/ground/ground_data_d09p01_station.h +++ b/src/data/ground/ground_data_d09p01_station.h @@ -159,7 +159,7 @@ static const struct ScriptCommand s_gs195_g1_s0_station_sref_script[] = { /* 0x8 WAIT(60), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ........................") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...I think...#W\nThey're gone.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...I think...{WAIT_PRESS}\nThey're gone.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, BGM_SWITCH(25), { 0x3b, 0x3a, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -210,8 +210,8 @@ static const struct ScriptCommand s_gs195_g1_s0_lives0_dlg0[] = { /* 0x8246544 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" But...#W\nThere's no point hiding out here.")), - VARIANT_DEFAULT(_(" But...#W\nThere isn't any point hiding here.")), + VARIANT(/* == */ 1, _(" But...{WAIT_PRESS}\nThere's no point hiding out here.")), + VARIANT_DEFAULT(_(" But...{WAIT_PRESS}\nThere isn't any point hiding here.")), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000b, 0x00000004, 0x00000000, NULL }, @@ -222,8 +222,8 @@ static const struct ScriptCommand s_gs195_g1_s0_lives0_dlg0[] = { /* 0x8246544 * WAIT(10), { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0, we need to\nroll as soon as we're ready.")), - VARIANT_DEFAULT(_(" Let's go as soon as we're\nready, $n0.")), + VARIANT(/* == */ 1, _(" {NAME_0}, we need to\nroll as soon as we're ready.")), + VARIANT_DEFAULT(_(" Let's go as soon as we're\nready, {NAME_0}.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -295,8 +295,8 @@ static const struct ScriptCommand s_gs195_g2_s1_lives0_dlg0[] = { /* 0x8246bd0 * WAIT(1), { 0x8e, 0x01, 0x0000, 0x00000022, 0x00000000, NULL }, ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), - VARIANT(/* == */ 1, _(" $n0, are you ready\nto roll?")), - VARIANT_DEFAULT(_(" $n0, are you\nready?")), + VARIANT(/* == */ 1, _(" {NAME_0}, are you ready\nto roll?")), + VARIANT_DEFAULT(_(" {NAME_0}, are you\nready?")), CHOICE(/* label */ 2, _("Yes.")), CHOICE(/* label */ 3, _("*Not yet.")), LABEL(3), /* = 0x03 */ @@ -425,8 +425,8 @@ static const struct ScriptCommand s_gs195_g3_s0_lives0_dlg0[] = { /* 0x82474ec * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Urrggh...#W\nWe couldn't get through...")), - VARIANT_DEFAULT(_(" Ouch...#W\nWe couldn't break through...")), + VARIANT(/* == */ 1, _(" Urrggh...{WAIT_PRESS}\nWe couldn't get through...")), + VARIANT_DEFAULT(_(" Ouch...{WAIT_PRESS}\nWe couldn't break through...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), FANFARE_PLAY2(463), @@ -434,19 +434,19 @@ static const struct ScriptCommand s_gs195_g3_s0_lives0_dlg0[] = { /* 0x82474ec * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000b, 0x00000002, 0x00000000, NULL }, { 0x2e, 0x08, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Ssh!#W\nSomeone's coming.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Ssh!{WAIT_PRESS}\nSomeone's coming.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x86, 0x00, 0x0200, 0x00000007, 0x00000000, NULL }, { 0x6b, 0x00, 0x0200, 0x00000008, 0x00000000, NULL }, WAIT(30), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Where are they?\n$n0 and that sidekick.") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Where are they?\n{NAME_0} and that sidekick.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(15), { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Do you think they tried getting over\nMt. Blaze?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(15), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" No, that's impossible.#W\nNobody could ever get past it.") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" No, that's impossible.{WAIT_PRESS}\nNobody could ever get past it.") }, { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" They should be around here still.\nKeep looking!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(15), @@ -541,7 +541,7 @@ static const struct ScriptCommand s_gs195_g4_s0_lives0_dlg0[] = { /* 0x8247d30 * CALL_SCRIPT(NOTICE_FUNC), { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What the...?#W\nIsn't this where we started from?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What the...?{WAIT_PRESS}\nIsn't this where we started from?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(468), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -551,12 +551,12 @@ static const struct ScriptCommand s_gs195_g4_s0_lives0_dlg0[] = { /* 0x8247d30 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ............#W\nI guess that path just loops back to the\nstart.")), - VARIANT(/* == */ 1, _(" If we want to move on,\nI think our only choice is #CDMt. Blaze#R.")), - VARIANT(/* == */ 1, _(" $n0, let's give it\nour best!")), - VARIANT_DEFAULT(_(" ............#W\nI guess that path we took just loops back\nto where it started.")), - VARIANT_DEFAULT(_(" It looks like we have to go\nover #CDMt. Blaze#R to move on.")), - VARIANT_DEFAULT(_(" $n0, let's do our\nbest!")), + VARIANT(/* == */ 1, _(" ............{WAIT_PRESS}\nI guess that path just loops back to the\nstart.")), + VARIANT(/* == */ 1, _(" If we want to move on,\nI think our only choice is {COLOR YELLOW_D}Mt. Blaze{RESET}.")), + VARIANT(/* == */ 1, _(" {NAME_0}, let's give it\nour best!")), + VARIANT_DEFAULT(_(" ............{WAIT_PRESS}\nI guess that path we took just loops back\nto where it started.")), + VARIANT_DEFAULT(_(" It looks like we have to go\nover {COLOR YELLOW_D}Mt. Blaze{RESET} to move on.")), + VARIANT_DEFAULT(_(" {NAME_0}, let's do our\nbest!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -605,8 +605,8 @@ static const struct ScriptCommand s_gs195_g5_s0_lives0_dlg0[] = { /* 0x8248230 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Urrggh...#W\nWe couldn't get through...")), - VARIANT_DEFAULT(_(" Ouch...#W\nWe couldn't break through...")), + VARIANT(/* == */ 1, _(" Urrggh...{WAIT_PRESS}\nWe couldn't get through...")), + VARIANT_DEFAULT(_(" Ouch...{WAIT_PRESS}\nWe couldn't break through...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(15), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -614,9 +614,9 @@ static const struct ScriptCommand s_gs195_g5_s0_lives0_dlg0[] = { /* 0x8248230 * { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" We have to get through this\nfast, or they'll catch up to us.")), - VARIANT(/* == */ 1, _(" $n0, let's give it\nour best!")), + VARIANT(/* == */ 1, _(" {NAME_0}, let's give it\nour best!")), VARIANT_DEFAULT(_(" If we don't get through here\nfast, they'll catch up to us.")), - VARIANT_DEFAULT(_(" $n0, let's do our\nbest!")), + VARIANT_DEFAULT(_(" {NAME_0}, let's do our\nbest!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d09p02_station.h b/src/data/ground/ground_data_d09p02_station.h index 84209f552..10b190b96 100644 --- a/src/data/ground/ground_data_d09p02_station.h +++ b/src/data/ground/ground_data_d09p02_station.h @@ -168,12 +168,12 @@ static const struct ScriptCommand s_gs196_g1_s0_lives0_dlg0[] = { /* 0x82491e4 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hmm...#W\nWell, that didn't go well.")), - VARIANT_DEFAULT(_(" Hmm...#W\nThat didn't work out...")), + VARIANT(/* == */ 1, _(" Hmm...{WAIT_PRESS}\nWell, that didn't go well.")), + VARIANT_DEFAULT(_(" Hmm...{WAIT_PRESS}\nThat didn't work out...")), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" But we almost made it.#W\nLet's give it our best again!")), - VARIANT_DEFAULT(_(" But we came close.#W\nLet's keep doing our best!")), + VARIANT(/* == */ 1, _(" But we almost made it.{WAIT_PRESS}\nLet's give it our best again!")), + VARIANT_DEFAULT(_(" But we came close.{WAIT_PRESS}\nLet's keep doing our best!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d09p03_station.h b/src/data/ground/ground_data_d09p03_station.h index e5ad59b53..b260897d4 100644 --- a/src/data/ground/ground_data_d09p03_station.h +++ b/src/data/ground/ground_data_d09p03_station.h @@ -89,17 +89,17 @@ static const struct ScriptCommand s_gs197_g1_s0_lives0_dlg0[] = { /* 0x82498b0 * WAIT(15), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................#W\nDo you say that sincerely?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................{WAIT_PRESS}\nDo you say that sincerely?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(15), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" I'm not lying to you.\nBelieve me.")), - VARIANT(/* == */ 1, _(" If you think I'm lying...#W\nLook at my eyes!")), + VARIANT(/* == */ 1, _(" If you think I'm lying...{WAIT_PRESS}\nLook at my eyes!")), VARIANT(/* == */ 3, _(" It's true!\nPlease believe me!")), - VARIANT(/* == */ 3, _(" If you think I'm lying...#W\nPlease, look at my eyes!")), + VARIANT(/* == */ 3, _(" If you think I'm lying...{WAIT_PRESS}\nPlease, look at my eyes!")), VARIANT_DEFAULT(_(" It's true!\nPlease believe me!")), - VARIANT_DEFAULT(_(" If you think I'm lying...#W\nLook at my eyes!")), + VARIANT_DEFAULT(_(" If you think I'm lying...{WAIT_PRESS}\nLook at my eyes!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(15), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ......") }, @@ -137,7 +137,7 @@ static const struct ScriptCommand s_gs197_g1_s0_lives0_dlg0[] = { /* 0x82498b0 * { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, CALL_SCRIPT(SPREE_END_FUNC), WAIT(15), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#WFine.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}Fine.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I trust that you aren't lying.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -157,7 +157,7 @@ static const struct ScriptCommand s_gs197_g1_s0_lives0_dlg0[] = { /* 0x82498b0 * WAIT(15), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You may pass.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Get through Mt. Blaze.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And...#W\nPromise me this.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And...{WAIT_PRESS}\nPromise me this.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Promise me that you will\nfind the cause of the calamities that\nwrack our world...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And stop the disasters\nfrom sowing more destruction and\nsuffering.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -195,20 +195,20 @@ static const struct ScriptCommand s_gs197_g1_s0_lives0_dlg0[] = { /* 0x82498b0 * MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" We're fugitives, so we can't\nget to it right away...")), VARIANT(/* == */ 1, _(" But we're a rescue team.")), - VARIANT(/* == */ 1, _(" We'll get to the bottom of\nwhat's causing the natural disasters.#W\nI promise.")), + VARIANT(/* == */ 1, _(" We'll get to the bottom of\nwhat's causing the natural disasters.{WAIT_PRESS}\nI promise.")), VARIANT(/* == */ 3, _(" We're being chased, so we\ncan't get on it right away...")), VARIANT(/* == */ 3, _(" But we're a rescue team.")), - VARIANT(/* == */ 3, _(" We'll get to the bottom of\nwhat's causing the natural calamities.#W\nI promise.")), + VARIANT(/* == */ 3, _(" We'll get to the bottom of\nwhat's causing the natural calamities.{WAIT_PRESS}\nI promise.")), VARIANT_DEFAULT(_(" We're being hunted, so we\ncan't get to it right away...")), VARIANT_DEFAULT(_(" But we're a rescue team.")), - VARIANT_DEFAULT(_(" We'll investigate what's\nbehind the natural calamities.#W\nI promise.")), + VARIANT_DEFAULT(_(" We'll investigate what's\nbehind the natural calamities.{WAIT_PRESS}\nI promise.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(15), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#W\nI will hold you to that promise.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}\nI will hold you to that promise.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You've made me believe that\nyou will honor that promise.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If you do not forget...#W\nthe courage you showed in facing me.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If you do not forget...{WAIT_PRESS}\nthe courage you showed in facing me.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(15), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -266,12 +266,12 @@ static const struct ScriptCommand s_gs197_g1_s0_lives0_dlg0[] = { /* 0x82498b0 * WAIT(10), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" But I'm glad $n2\nunderstood us. Really.")), - VARIANT(/* == */ 1, _(" So, anyway...#W\nWe should get off Mt. Blaze ourselves.")), - VARIANT(/* == */ 3, _(" But it's really great that\n$n2 understood us.")), - VARIANT(/* == */ 3, _(" Anyway...#W\nWe should get off Mt. Blaze, too.")), - VARIANT_DEFAULT(_(" But I'm glad $n2\nunderstood us. That was key.")), - VARIANT_DEFAULT(_(" Anyway...#W\nLet's get off Mt. Blaze ourselves.")), + VARIANT(/* == */ 1, _(" But I'm glad {NAME_2}\nunderstood us. Really.")), + VARIANT(/* == */ 1, _(" So, anyway...{WAIT_PRESS}\nWe should get off Mt. Blaze ourselves.")), + VARIANT(/* == */ 3, _(" But it's really great that\n{NAME_2} understood us.")), + VARIANT(/* == */ 3, _(" Anyway...{WAIT_PRESS}\nWe should get off Mt. Blaze, too.")), + VARIANT_DEFAULT(_(" But I'm glad {NAME_2}\nunderstood us. That was key.")), + VARIANT_DEFAULT(_(" Anyway...{WAIT_PRESS}\nLet's get off Mt. Blaze ourselves.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(15), BGM_FADEOUT(150), diff --git a/src/data/ground/ground_data_d10p01_station.h b/src/data/ground/ground_data_d10p01_station.h index 28afa0af4..a86f61082 100644 --- a/src/data/ground/ground_data_d10p01_station.h +++ b/src/data/ground/ground_data_d10p01_station.h @@ -172,9 +172,9 @@ static const struct ScriptCommand s_gs198_g1_s0_lives0_dlg0[] = { /* 0x824c290 * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" But there's no point in us\nsticking around here forever...")), - VARIANT(/* == */ 1, _(" We can only go forward!#W\nWe'll just have to go for it and get\nthrough this, $n0!")), + VARIANT(/* == */ 1, _(" We can only go forward!{WAIT_PRESS}\nWe'll just have to go for it and get\nthrough this, {NAME_0}!")), VARIANT_DEFAULT(_(" But hiding out in this area\nisn't the answer either...")), - VARIANT_DEFAULT(_(" We can only go forward.#W\nWe'll just have to keep our spirits up\nand keep going, $n0!")), + VARIANT_DEFAULT(_(" We can only go forward.{WAIT_PRESS}\nWe'll just have to keep our spirits up\nand keep going, {NAME_0}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x0002, 0x00000006, 0x00000000, NULL }, WAIT(10), @@ -232,8 +232,8 @@ static const struct ScriptCommand s_gs198_g2_s1_lives0_dlg0[] = { /* 0x824c7d4 * WAIT(1), { 0x8e, 0x01, 0x0000, 0x00000022, 0x00000000, NULL }, ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), - VARIANT(/* == */ 1, _(" $n0, are you ready\nto roll?")), - VARIANT_DEFAULT(_(" $n0, are you\nready?")), + VARIANT(/* == */ 1, _(" {NAME_0}, are you ready\nto roll?")), + VARIANT_DEFAULT(_(" {NAME_0}, are you\nready?")), CHOICE(/* label */ 2, _("Yes.")), CHOICE(/* label */ 3, _("*Not yet.")), LABEL(3), /* = 0x03 */ @@ -363,8 +363,8 @@ static const struct ScriptCommand s_gs198_g3_s0_lives0_dlg0[] = { /* 0x824d0c0 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Urrggh...#W\nWe couldn't get through...")), - VARIANT_DEFAULT(_(" Ouch...#W\nWe couldn't break through...")), + VARIANT(/* == */ 1, _(" Urrggh...{WAIT_PRESS}\nWe couldn't get through...")), + VARIANT_DEFAULT(_(" Ouch...{WAIT_PRESS}\nWe couldn't break through...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), @@ -372,8 +372,8 @@ static const struct ScriptCommand s_gs198_g3_s0_lives0_dlg0[] = { /* 0x824d0c0 * VARIANT_DEFAULT(_(" This is as tough as we\nexpected...")), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" But let's give it our best\nand get through this, $n0!")), - VARIANT_DEFAULT(_(" But let's keep trying our\nbest and get through this, $n0!")), + VARIANT(/* == */ 1, _(" But let's give it our best\nand get through this, {NAME_0}!")), + VARIANT_DEFAULT(_(" But let's keep trying our\nbest and get through this, {NAME_0}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -426,17 +426,17 @@ static const struct ScriptCommand s_gs198_g4_s0_lives0_dlg0[] = { /* 0x824d500 * { 0x2d, 0x09, 0x0002, 0x00000066, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hmmm...#W\nWell, that didn't go well.")), - VARIANT_DEFAULT(_(" Hmm...#W\nWe didn't do well at all...")), + VARIANT(/* == */ 1, _(" Hmmm...{WAIT_PRESS}\nWell, that didn't go well.")), + VARIANT_DEFAULT(_(" Hmm...{WAIT_PRESS}\nWe didn't do well at all...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" That $n2...\nHe's one tough customer.")), + VARIANT(/* == */ 1, _(" That {NAME_2}...\nHe's one tough customer.")), VARIANT(/* == */ 1, _(" But why aren't we allowed\nto go into this forest?")), - VARIANT(/* == */ 1, _(" ...It doesn't matter anyway.\nLet's give it our best, $n0!")), - VARIANT_DEFAULT(_(" That Pokémon,\n$n2, is pretty tough.")), + VARIANT(/* == */ 1, _(" ...It doesn't matter anyway.\nLet's give it our best, {NAME_0}!")), + VARIANT_DEFAULT(_(" That Pokémon,\n{NAME_2}, is pretty tough.")), VARIANT_DEFAULT(_(" But why are we forbidden\nfrom entering this forest?")), - VARIANT_DEFAULT(_(" It makes no difference.\n$n0, let's try our best!")), + VARIANT_DEFAULT(_(" It makes no difference.\n{NAME_0}, let's try our best!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -484,7 +484,7 @@ static const struct ScriptCommand s_gs198_g5_s0_lives0_dlg0[] = { /* 0x824d980 * CALL_SCRIPT(NOTICE_FUNC), { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What the...?#W\nIsn't this where we started from?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What the...?{WAIT_PRESS}\nIsn't this where we started from?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(468), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -494,12 +494,12 @@ static const struct ScriptCommand s_gs198_g5_s0_lives0_dlg0[] = { /* 0x824d980 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ............#W\nI guess that path just loops back to the\nstart.")), - VARIANT(/* == */ 1, _(" If we want to move on,\nI think our only choice is the #CDFrosty\nForest#R.")), - VARIANT(/* == */ 1, _(" $n0, let's give it\nour best!")), - VARIANT_DEFAULT(_(" ............#W\nI guess that path we took just loops back\nto where it started.")), - VARIANT_DEFAULT(_(" It looks like we have to get\nthrough the #CDFrosty Forest#R to move on.")), - VARIANT_DEFAULT(_(" $n0, let's do our\nbest!")), + VARIANT(/* == */ 1, _(" ............{WAIT_PRESS}\nI guess that path just loops back to the\nstart.")), + VARIANT(/* == */ 1, _(" If we want to move on,\nI think our only choice is the {COLOR YELLOW_D}Frosty\nForest{RESET}.")), + VARIANT(/* == */ 1, _(" {NAME_0}, let's give it\nour best!")), + VARIANT_DEFAULT(_(" ............{WAIT_PRESS}\nI guess that path we took just loops back\nto where it started.")), + VARIANT_DEFAULT(_(" It looks like we have to get\nthrough the {COLOR YELLOW_D}Frosty Forest{RESET} to move on.")), + VARIANT_DEFAULT(_(" {NAME_0}, let's do our\nbest!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -553,16 +553,16 @@ static const struct ScriptCommand s_gs198_g6_s0_lives0_dlg0[] = { /* 0x824ded4 * { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Urrggh...#W\nWe couldn't get through...")), - VARIANT_DEFAULT(_(" Ouch...#W\nWe couldn't break through...")), + VARIANT(/* == */ 1, _(" Urrggh...{WAIT_PRESS}\nWe couldn't get through...")), + VARIANT_DEFAULT(_(" Ouch...{WAIT_PRESS}\nWe couldn't break through...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(15), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" This is one harsh place,\nbut let's bear down and get through,\n$n0!")), - VARIANT_DEFAULT(_(" This is a harsh place,\nso let's do our best to get through,\n$n0!")), + VARIANT(/* == */ 1, _(" This is one harsh place,\nbut let's bear down and get through,\n{NAME_0}!")), + VARIANT_DEFAULT(_(" This is a harsh place,\nso let's do our best to get through,\n{NAME_0}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d10p02_station.h b/src/data/ground/ground_data_d10p02_station.h index 0f57572c2..0315f90aa 100644 --- a/src/data/ground/ground_data_d10p02_station.h +++ b/src/data/ground/ground_data_d10p02_station.h @@ -169,8 +169,8 @@ static const struct ScriptCommand s_gs199_g1_s0_lives0_dlg0[] = { /* 0x824eea4 * { 0x2d, 0x09, 0x0002, 0x00000066, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hmm...#W\nWell, that didn't go well.")), - VARIANT_DEFAULT(_(" Hmm...#W\nThat didn't work out...")), + VARIANT(/* == */ 1, _(" Hmm...{WAIT_PRESS}\nWell, that didn't go well.")), + VARIANT_DEFAULT(_(" Hmm...{WAIT_PRESS}\nThat didn't work out...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, @@ -180,8 +180,8 @@ static const struct ScriptCommand s_gs199_g1_s0_lives0_dlg0[] = { /* 0x824eea4 * VARIANT_DEFAULT(_(" This is as tough as we\nexpected...")), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" But let's give it our best\nand get through this, $n0!")), - VARIANT_DEFAULT(_(" But let's keep trying our\nbest and get through this, $n0!")), + VARIANT(/* == */ 1, _(" But let's give it our best\nand get through this, {NAME_0}!")), + VARIANT_DEFAULT(_(" But let's keep trying our\nbest and get through this, {NAME_0}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -237,19 +237,19 @@ static const struct ScriptCommand s_gs199_g2_s0_lives0_dlg0[] = { /* 0x824f33c * { 0x2d, 0x09, 0x0002, 0x00000066, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hmmm...#W\nWell, that didn't go well.")), - VARIANT_DEFAULT(_(" Hmm...#W\nWe didn't do well at all...")), + VARIANT(/* == */ 1, _(" Hmmm...{WAIT_PRESS}\nWell, that didn't go well.")), + VARIANT_DEFAULT(_(" Hmm...{WAIT_PRESS}\nWe didn't do well at all...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" That $n2...\nHe's one tough customer.")), + VARIANT(/* == */ 1, _(" That {NAME_2}...\nHe's one tough customer.")), VARIANT(/* == */ 1, _(" But why aren't we allowed\nto go into this forest?")), - VARIANT(/* == */ 1, _(" It doesn't matter anyway.\nLet's give it our best, $n0!")), - VARIANT_DEFAULT(_(" That Pokémon,\n$n2, is pretty tough.")), + VARIANT(/* == */ 1, _(" It doesn't matter anyway.\nLet's give it our best, {NAME_0}!")), + VARIANT_DEFAULT(_(" That Pokémon,\n{NAME_2}, is pretty tough.")), VARIANT_DEFAULT(_(" But why are we forbidden\nfrom entering this forest?")), - VARIANT_DEFAULT(_(" It makes no difference.\n$n0, let's try our best!")), + VARIANT_DEFAULT(_(" It makes no difference.\n{NAME_0}, let's try our best!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d10p03_station.h b/src/data/ground/ground_data_d10p03_station.h index 8a9cbadd0..b7092faf3 100644 --- a/src/data/ground/ground_data_d10p03_station.h +++ b/src/data/ground/ground_data_d10p03_station.h @@ -27,11 +27,11 @@ static const struct ScriptCommand s_gs200_g1_s0_station_sref_script[] = { /* 0x8 BGM_FADEOUT(60), { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And so...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+After getting through the Frosty\n#+Forest, $n0's team...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Headed further north...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The more they advanced...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The harsher the conditions became...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And so...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}After getting through the Frosty\n{CENTER_ALIGN}Forest, {NAME_0}'s team...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Headed further north...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The more they advanced...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The harsher the conditions became...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -51,13 +51,13 @@ static const struct ScriptCommand s_gs200_g1_s0_lives0_dlg0[] = { /* 0x824fcb4 * WAIT(30), { 0x2e, 0x03, 0x0001, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Please, $n2!")), + VARIANT(/* == */ 1, _(" Please, {NAME_2}!")), VARIANT(/* == */ 1, _(" We have to keep moving.\nWe have to get through this.")), VARIANT(/* == */ 1, _(" Please, let us pass!")), - VARIANT(/* == */ 3, _(" Please, $n2!")), + VARIANT(/* == */ 3, _(" Please, {NAME_2}!")), VARIANT(/* == */ 3, _(" We have to get through,\nno matter what.")), VARIANT(/* == */ 3, _(" Please, let us pass!")), - VARIANT_DEFAULT(_(" Please, $n2!")), + VARIANT_DEFAULT(_(" Please, {NAME_2}!")), VARIANT_DEFAULT(_(" We have to get through.\nNo matter what it takes.")), VARIANT_DEFAULT(_(" Please, let us pass!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -70,8 +70,8 @@ static const struct ScriptCommand s_gs200_g1_s0_lives0_dlg0[] = { /* 0x824fcb4 * WAIT(10), { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Why?#W\nWhy can't we pass?")), - VARIANT_DEFAULT(_(" Why?#W\nWhy can't we pass?")), + VARIANT(/* == */ 1, _(" Why?{WAIT_PRESS}\nWhy can't we pass?")), + VARIANT_DEFAULT(_(" Why?{WAIT_PRESS}\nWhy can't we pass?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -86,7 +86,7 @@ static const struct ScriptCommand s_gs200_g1_s0_lives0_dlg0[] = { /* 0x824fcb4 * VARIANT_DEFAULT(_(" W-warmed up?\n(I'm still freezing, but...)")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The flow of frigid air has\nbeen disturbed in the forest.#W\nSnow has started to melt.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The flow of frigid air has\nbeen disturbed in the forest.{WAIT_PRESS}\nSnow has started to melt.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Snow is melting.\nSnow that has never melted before.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This has never happened,\neven once.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Then you appeared in the\nforest.") }, @@ -105,21 +105,21 @@ static const struct ScriptCommand s_gs200_g1_s0_lives0_dlg0[] = { /* 0x824fcb4 * VARIANT_DEFAULT(_(" W-we don't have anything\nto do with that!\nIt's a coincidence!")), { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey, $n2.\nYou have to listen.")), + VARIANT(/* == */ 1, _(" Hey, {NAME_2}.\nYou have to listen.")), VARIANT(/* == */ 1, _(" It's not our fault that the\nsnow is melting here.")), - VARIANT(/* == */ 1, _(" It's not just here.#W\nNatural disasters are happening all\nover the place.")), + VARIANT(/* == */ 1, _(" It's not just here.{WAIT_PRESS}\nNatural disasters are happening all\nover the place.")), VARIANT(/* == */ 1, _(" Even if we hadn't come, the\nfrigid air here would have been disturbed.")), - VARIANT(/* == */ 3, _(" Please, $n2.\nListen to me.")), + VARIANT(/* == */ 3, _(" Please, {NAME_2}.\nListen to me.")), VARIANT(/* == */ 3, _(" It's not our fault that the\nsnow is melting.")), - VARIANT(/* == */ 3, _(" It's not just here.#W\nRight now, natural calamities are occurring\neverywhere.")), + VARIANT(/* == */ 3, _(" It's not just here.{WAIT_PRESS}\nRight now, natural calamities are occurring\neverywhere.")), VARIANT(/* == */ 3, _(" The forest's frigid airflow\nwould have been disturbed even if we\nhadn't come.")), - VARIANT_DEFAULT(_(" Please, $n2.\nHear me out.")), + VARIANT_DEFAULT(_(" Please, {NAME_2}.\nHear me out.")), VARIANT_DEFAULT(_(" It isn't our fault that the\nsnow started melting here.")), - VARIANT_DEFAULT(_(" It's not just here.#W\nNatural calamities are taking place\neverywhere right now.")), + VARIANT_DEFAULT(_(" It's not just here.{WAIT_PRESS}\nNatural calamities are taking place\neverywhere right now.")), VARIANT_DEFAULT(_(" The forest's frigid airflow\nwould have been disturbed even if we\nhadn't come.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Is that all?#W\nYou expect me to believe that?!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Is that all?{WAIT_PRESS}\nYou expect me to believe that?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(685), @@ -135,7 +135,7 @@ static const struct ScriptCommand s_gs200_g1_s0_lives0_dlg0[] = { /* 0x824fcb4 * { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Waaaaaaaah!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Enough of your foolish talk!#W\nPrepare for your end!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Enough of your foolish talk!{WAIT_PRESS}\nPrepare for your end!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -186,17 +186,17 @@ static const struct ScriptCommand s_gs200_g1_s0_lives0_dlg0[] = { /* 0x824fcb4 * { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" The calamities taking place\nnow are of a special nature.\nI've never experienced such before.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#W\nSo, there are calamities besides this...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}\nSo, there are calamities besides this...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................#WFine.#W\nI will choose to believe you.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................{WAIT_PRESS}Fine.{WAIT_PRESS}\nI will choose to believe you.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You may pass.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n2!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_2}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -215,7 +215,7 @@ static const struct ScriptCommand s_gs200_g1_s0_lives0_dlg0[] = { /* 0x824fcb4 * { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yup! We promise,\n$n2!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yup! We promise,\n{NAME_2}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -230,7 +230,7 @@ static const struct ScriptCommand s_gs200_g1_s0_lives0_dlg0[] = { /* 0x824fcb4 * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Thank you.#W\nYou saved us.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Thank you.{WAIT_PRESS}\nYou saved us.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, @@ -238,7 +238,7 @@ static const struct ScriptCommand s_gs200_g1_s0_lives0_dlg0[] = { /* 0x824fcb4 * { 0x2e, 0x0e, 0x0003, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ..................") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Rather than saying thanks,\nfocus on stopping the calamities before\nthey worsen.") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" If they are left unchecked,\nworse will befall us...#W\nMy instinct warns me so.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" If they are left unchecked,\nworse will befall us...{WAIT_PRESS}\nMy instinct warns me so.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, @@ -252,7 +252,7 @@ static const struct ScriptCommand s_gs200_g1_s0_lives0_dlg0[] = { /* 0x824fcb4 * { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(60), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ............#W\nI think it would be best if we combined\nforces...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}\nI think it would be best if we combined\nforces...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -266,7 +266,7 @@ static const struct ScriptCommand s_gs200_g1_s0_lives0_dlg0[] = { /* 0x824fcb4 * CALL_SCRIPT(JUMP_HAPPY_FUNC), { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh?#W\nYou will? Really?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh?{WAIT_PRESS}\nYou will? Really?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -278,16 +278,16 @@ static const struct ScriptCommand s_gs200_g1_s0_lives0_dlg0[] = { /* 0x824fcb4 * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sniffle...\nThank you, $n3.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sniffle...\nThank you, {NAME_3}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), BGM_STOP, FANFARE_PLAY(204), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n3 joined the team!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_3} joined the team!") }, { 0xe1, 0x00, 0x00cc, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x3b, 0x1a, 0x0000, 0x00000000, 0x00000000, NULL }, - ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to $n3?")), + ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to {NAME_3}?")), CHOICE(/* label */ 29, _("*Yes.")), CHOICE(/* label */ 30, _("No.")), LABEL(29), /* = 0x1d */ diff --git a/src/data/ground/ground_data_d11p01_station.h b/src/data/ground/ground_data_d11p01_station.h index 595199897..b32348237 100644 --- a/src/data/ground/ground_data_d11p01_station.h +++ b/src/data/ground/ground_data_d11p01_station.h @@ -154,39 +154,39 @@ static const struct ScriptCommand s_gs201_g1_s0_lives0_dlg0[] = { /* 0x8252548 * { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" ...OK.\nSo that's what happened...")), - VARIANT(/* == */ 1, _(" $n2 appeared to\nyou...")), + VARIANT(/* == */ 1, _(" {NAME_2} appeared to\nyou...")), VARIANT(/* == */ 1, _(" So that's why you were\nlooking so stunned.")), VARIANT_DEFAULT(_(" ...Oh.\nSo something like that happened.")), - VARIANT_DEFAULT(_(" $n2 appeared to\nyou...")), + VARIANT_DEFAULT(_(" {NAME_2} appeared to\nyou...")), VARIANT_DEFAULT(_(" That's why you were\nlooking so stunned earlier.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" But, wow...\n$n3 isn't just a legend.\nIt really exists...")), - VARIANT_DEFAULT(_(" I'm amazed, though...\n$n3 isn't just a legend.\nIt really exists...")), + VARIANT(/* == */ 1, _(" But, wow...\n{NAME_3} isn't just a legend.\nIt really exists...")), + VARIANT_DEFAULT(_(" I'm amazed, though...\n{NAME_3} isn't just a legend.\nIt really exists...")), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" And that $n3 is\nat the peak way up there.")), - VARIANT_DEFAULT(_(" And that $n3 is up\nat the peak...")), + VARIANT(/* == */ 1, _(" And that {NAME_3} is\nat the peak way up there.")), + VARIANT_DEFAULT(_(" And that {NAME_3} is up\nat the peak...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000008, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Sniffle...#W\n$n0!")), + VARIANT(/* == */ 1, _(" Sniffle...{WAIT_PRESS}\n{NAME_0}!")), VARIANT(/* == */ 1, _(" All the effort we put into\ngetting here...\nIt's finally going to pay off!")), - VARIANT(/* == */ 1, _(" We'll meet $n3\nand get the truth!")), - VARIANT_DEFAULT(_(" Sniffle...#W\n$n0!")), + VARIANT(/* == */ 1, _(" We'll meet {NAME_3}\nand get the truth!")), + VARIANT_DEFAULT(_(" Sniffle...{WAIT_PRESS}\n{NAME_0}!")), VARIANT_DEFAULT(_(" All the effort we put into\ngetting here...\nIt's finally going to bear fruit!")), - VARIANT_DEFAULT(_(" We'll meet $n3\nand get the truth!")), + VARIANT_DEFAULT(_(" We'll meet {NAME_3}\nand get the truth!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), - VARIANT(/* == */ 1, _(" We'll finally clear your\nreputation, $n0!#W\nThat'll be great!")), - VARIANT_DEFAULT(_(" We'll finally get rid of the\nsuspicions others have about you,\n$n0!#W Awesome!")), + VARIANT(/* == */ 1, _(" We'll finally clear your\nreputation, {NAME_0}!{WAIT_PRESS}\nThat'll be great!")), + VARIANT_DEFAULT(_(" We'll finally get rid of the\nsuspicions others have about you,\n{NAME_0}!{WAIT_PRESS} Awesome!")), CHOICE(/* label */ 2, _("........................")), CHOICE(/* label */ 2, _("........................")), LABEL(2), /* = 0x02 */ @@ -194,15 +194,15 @@ static const struct ScriptCommand s_gs201_g1_s0_lives0_dlg0[] = { /* 0x8252548 * WAIT(30), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey, $n0...")), - VARIANT(/* == */ 1, _(" You don't need to look so\nworried.#W\nIt'll be OK.")), - VARIANT(/* == */ 1, _(" $n0, I can\nunderstand how it'd be scary for you to\nmeet $n3.")), - VARIANT(/* == */ 1, _(" The heartless human who\nabandoned $n2...#W\nHow that might be you...")), + VARIANT(/* == */ 1, _(" Hey, {NAME_0}...")), + VARIANT(/* == */ 1, _(" You don't need to look so\nworried.{WAIT_PRESS}\nIt'll be OK.")), + VARIANT(/* == */ 1, _(" {NAME_0}, I can\nunderstand how it'd be scary for you to\nmeet {NAME_3}.")), + VARIANT(/* == */ 1, _(" The heartless human who\nabandoned {NAME_2}...{WAIT_PRESS}\nHow that might be you...")), VARIANT(/* == */ 1, _(" I bet you're scared,\nthinking that.")), - VARIANT_DEFAULT(_(" Listen, $n0...")), - VARIANT_DEFAULT(_(" ...Don't be so worried.#W\nIt will be all right.")), - VARIANT_DEFAULT(_(" It's only natural that you\nwould be scared of meeting $n3,\n$n0.")), - VARIANT_DEFAULT(_(" The heartless human who\nabandoned $n2...#W\nIt may be you...")), + VARIANT_DEFAULT(_(" Listen, {NAME_0}...")), + VARIANT_DEFAULT(_(" ...Don't be so worried.{WAIT_PRESS}\nIt will be all right.")), + VARIANT_DEFAULT(_(" It's only natural that you\nwould be scared of meeting {NAME_3},\n{NAME_0}.")), + VARIANT_DEFAULT(_(" The heartless human who\nabandoned {NAME_2}...{WAIT_PRESS}\nIt may be you...")), VARIANT_DEFAULT(_(" I can understand how\nyou could think that.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, @@ -211,33 +211,33 @@ static const struct ScriptCommand s_gs201_g1_s0_lives0_dlg0[] = { /* 0x8252548 * CHOICE(/* label */ 4, _("You believe so much in me?")), LABEL(4), /* = 0x04 */ { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hmm...?#W Well, there was\na time when I had some doubts...#W\nBut now...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hmm...?{WAIT_PRESS} Well, there was\na time when I had some doubts...{WAIT_PRESS}\nBut now...") }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...I wonder why?#W\nI really don't know why.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...I wonder why?{WAIT_PRESS}\nI really don't know why.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" But it doesn't matter now.#W\n$n0, you're a really good sort.")), + VARIANT(/* == */ 1, _(" But it doesn't matter now.{WAIT_PRESS}\n{NAME_0}, you're a really good sort.")), VARIANT(/* == */ 1, _(" You know, before...")), VARIANT(/* == */ 1, _(" When I first got the idea\nto start this rescue team...")), - VARIANT(/* == */ 1, _(" I met you in the Tiny\nWoods, $n0.")), + VARIANT(/* == */ 1, _(" I met you in the Tiny\nWoods, {NAME_0}.")), VARIANT(/* == */ 1, _(" Now that I think about it,\nthere was something different about you.\nJust a feeling.")), - VARIANT(/* == */ 3, _(" But it doesn't matter.\nI know you're a good sort, $n0...")), + VARIANT(/* == */ 3, _(" But it doesn't matter.\nI know you're a good sort, {NAME_0}...")), VARIANT(/* == */ 3, _(" Do you remember...?")), VARIANT(/* == */ 3, _(" When I first got the idea to\nstart a rescue team...")), - VARIANT(/* == */ 3, _(" I met you in the Tiny\nWoods, $n0...")), + VARIANT(/* == */ 3, _(" I met you in the Tiny\nWoods, {NAME_0}...")), VARIANT(/* == */ 3, _(" Even back then, I sensed\nthere was something different about you.")), - VARIANT_DEFAULT(_(" But it's all right.#W\n$n0, you're a really good sort.")), + VARIANT_DEFAULT(_(" But it's all right.{WAIT_PRESS}\n{NAME_0}, you're a really good sort.")), VARIANT_DEFAULT(_(" You know, before...")), VARIANT_DEFAULT(_(" When I first got the idea\nto start a rescue team...")), - VARIANT_DEFAULT(_(" I met you in the Tiny\nWoods, $n0.")), + VARIANT_DEFAULT(_(" I met you in the Tiny\nWoods, {NAME_0}.")), VARIANT_DEFAULT(_(" Now that I think about it,\nthere was something different about you.")), { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" This is kind of weird,\nisn't it?#W\nBut I believe in you, $n0.")), - VARIANT(/* == */ 3, _(" It is weird, isn't it?#W\nBut I believe in you, $n0.")), - VARIANT_DEFAULT(_(" It is strange, isn't it?#W\nBut, $n0, I believe in you.")), + VARIANT(/* == */ 1, _(" This is kind of weird,\nisn't it?{WAIT_PRESS}\nBut I believe in you, {NAME_0}.")), + VARIANT(/* == */ 3, _(" It is weird, isn't it?{WAIT_PRESS}\nBut I believe in you, {NAME_0}.")), + VARIANT_DEFAULT(_(" It is strange, isn't it?{WAIT_PRESS}\nBut, {NAME_0}, I believe in you.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -247,8 +247,8 @@ static const struct ScriptCommand s_gs201_g1_s0_lives0_dlg0[] = { /* 0x8252548 * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0, let's give it\nour best!")), - VARIANT_DEFAULT(_(" $n0, let's do our\nbest!")), + VARIANT(/* == */ 1, _(" {NAME_0}, let's give it\nour best!")), + VARIANT_DEFAULT(_(" {NAME_0}, let's do our\nbest!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0x54, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -328,8 +328,8 @@ static const struct ScriptCommand s_gs201_g2_s1_lives0_dlg0[] = { /* 0x8253910 * WAIT(1), { 0x8e, 0x01, 0x0000, 0x00000022, 0x00000000, NULL }, ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), - VARIANT(/* == */ 1, _(" Hey, $n0.\nAre you all ready?")), - VARIANT_DEFAULT(_(" Hi, $n0.\nAre you ready?")), + VARIANT(/* == */ 1, _(" Hey, {NAME_0}.\nAre you all ready?")), + VARIANT_DEFAULT(_(" Hi, {NAME_0}.\nAre you ready?")), CHOICE(/* label */ 2, _("All set!")), CHOICE(/* label */ 3, _("Not yet.")), LABEL(3), /* = 0x03 */ @@ -462,16 +462,16 @@ static const struct ScriptCommand s_gs201_g3_s0_lives0_dlg0[] = { /* 0x82541ac * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Darn...#W\nThat didn't go well.")), - VARIANT_DEFAULT(_(" Ouch...#W\nThat turned out badly.")), + VARIANT(/* == */ 1, _(" Darn...{WAIT_PRESS}\nThat didn't go well.")), + VARIANT_DEFAULT(_(" Ouch...{WAIT_PRESS}\nThat turned out badly.")), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" This is one seriously\nrough neighborhood...")), - VARIANT(/* == */ 1, _(" But let's storm our way\nto the peak, $n0!")), + VARIANT(/* == */ 1, _(" But let's storm our way\nto the peak, {NAME_0}!")), VARIANT_DEFAULT(_(" This is a seriously tough\nchallenge, but...")), - VARIANT_DEFAULT(_(" Let's be sure to reach the\npeak, $n0!")), + VARIANT_DEFAULT(_(" Let's be sure to reach the\npeak, {NAME_0}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -526,7 +526,7 @@ static const struct ScriptCommand s_gs201_g4_s0_lives0_dlg0[] = { /* 0x82545ec * CALL_SCRIPT(NOTICE_FUNC), { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What the...?#W\nIsn't this where we started from?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What the...?{WAIT_PRESS}\nIsn't this where we started from?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(468), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -536,12 +536,12 @@ static const struct ScriptCommand s_gs201_g4_s0_lives0_dlg0[] = { /* 0x82545ec * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ............#W\nI guess that path just loops back to the\nstart.")), - VARIANT(/* == */ 1, _(" If we want to move on,\nI think our only choice is #CDMt. Freeze#R.")), - VARIANT(/* == */ 1, _(" $n0, let's give it\nour best!")), - VARIANT_DEFAULT(_(" ............#W\nI guess that path we took just loops back\nto where it started.")), - VARIANT_DEFAULT(_(" It looks like we have to get\nover #CDMt. Freeze#R to move on.")), - VARIANT_DEFAULT(_(" $n0, let's do our\nbest!")), + VARIANT(/* == */ 1, _(" ............{WAIT_PRESS}\nI guess that path just loops back to the\nstart.")), + VARIANT(/* == */ 1, _(" If we want to move on,\nI think our only choice is {COLOR YELLOW_D}Mt. Freeze{RESET}.")), + VARIANT(/* == */ 1, _(" {NAME_0}, let's give it\nour best!")), + VARIANT_DEFAULT(_(" ............{WAIT_PRESS}\nI guess that path we took just loops back\nto where it started.")), + VARIANT_DEFAULT(_(" It looks like we have to get\nover {COLOR YELLOW_D}Mt. Freeze{RESET} to move on.")), + VARIANT_DEFAULT(_(" {NAME_0}, let's do our\nbest!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -595,16 +595,16 @@ static const struct ScriptCommand s_gs201_g5_s0_lives0_dlg0[] = { /* 0x8254af8 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Urrggh...#W\nWe couldn't get through...")), - VARIANT_DEFAULT(_(" Ouch...#W\nWe couldn't break through...")), + VARIANT(/* == */ 1, _(" Urrggh...{WAIT_PRESS}\nWe couldn't get through...")), + VARIANT_DEFAULT(_(" Ouch...{WAIT_PRESS}\nWe couldn't break through...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(15), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" This is one harsh place,\nbut let's bear down and get through,\n$n0!")), - VARIANT_DEFAULT(_(" This is a harsh place,\nso let's do our best to get through,\n$n0!")), + VARIANT(/* == */ 1, _(" This is one harsh place,\nbut let's bear down and get through,\n{NAME_0}!")), + VARIANT_DEFAULT(_(" This is a harsh place,\nso let's do our best to get through,\n{NAME_0}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -659,7 +659,7 @@ static const struct ScriptCommand s_gs201_g6_s0_lives0_dlg0[] = { /* 0x8254f30 * { 0x89, 0x40, 0x0080, 0x00000003, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000007, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You're going to #CDMt. Freeze#R?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You're going to {COLOR YELLOW_D}Mt. Freeze{RESET}?") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Don't forget to take me,\nkekeh!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d11p02_station.h b/src/data/ground/ground_data_d11p02_station.h index f54c0a4b9..30fb40402 100644 --- a/src/data/ground/ground_data_d11p02_station.h +++ b/src/data/ground/ground_data_d11p02_station.h @@ -181,16 +181,16 @@ static const struct ScriptCommand s_gs202_g1_s0_lives0_dlg0[] = { /* 0x8255f00 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hmm...#W\nWell, that didn't go well.")), - VARIANT_DEFAULT(_(" Hmm...#W\nThat didn't work out...")), + VARIANT(/* == */ 1, _(" Hmm...{WAIT_PRESS}\nWell, that didn't go well.")), + VARIANT_DEFAULT(_(" Hmm...{WAIT_PRESS}\nThat didn't work out...")), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" But we didn't have far to\ngo!")), - VARIANT(/* == */ 1, _(" Let's storm our way to the\ntop this time, $n0!")), + VARIANT(/* == */ 1, _(" Let's storm our way to the\ntop this time, {NAME_0}!")), VARIANT_DEFAULT(_(" But we were very close!")), - VARIANT_DEFAULT(_(" Let's be sure to reach the\npeak this time, $n0!")), + VARIANT_DEFAULT(_(" Let's be sure to reach the\npeak this time, {NAME_0}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d11p03_station.h b/src/data/ground/ground_data_d11p03_station.h index 39c4a4298..2037f2577 100644 --- a/src/data/ground/ground_data_d11p03_station.h +++ b/src/data/ground/ground_data_d11p03_station.h @@ -74,7 +74,7 @@ static const struct ScriptCommand s_gs203_g1_s0_lives0_dlg0[] = { /* 0x82566f8 * { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hey, Ninetales!#W\nWhere are you?! Come out!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hey, Ninetales!{WAIT_PRESS}\nWhere are you?! Come out!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(45), FANFARE_PLAY2(506), @@ -94,7 +94,7 @@ static const struct ScriptCommand s_gs203_g1_s0_lives0_dlg0[] = { /* 0x82566f8 * { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ............#WWhat do you want?") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}What do you want?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), FANFARE_PLAY2(455), @@ -108,9 +108,9 @@ static const struct ScriptCommand s_gs203_g1_s0_lives0_dlg0[] = { /* 0x82566f8 * WAIT(10), { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" It is not my fault.") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" It all arose because you\nfled, isn't that so?") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" You fled from yourself as\na human...#W\nAnd you fled from Gardevoir.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" You fled from yourself as\na human...{WAIT_PRESS}\nAnd you fled from Gardevoir.") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" It was I who cast the curse.") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" But you became\n$m2 because you\nabandoned Gardevoir.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" But you became\n{POKEMON_2} because you\nabandoned Gardevoir.") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" It was Gardevoir that bore\nmy curse, not you.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -119,18 +119,18 @@ static const struct ScriptCommand s_gs203_g1_s0_lives0_dlg0[] = { /* 0x82566f8 * { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Anyway...#W\nAbout that curse...#W\nHow about lifting it already?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Anyway...{WAIT_PRESS}\nAbout that curse...{WAIT_PRESS}\nHow about lifting it already?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), FANFARE_PLAY2(464), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" You...#W\nYou have the nerve to ask that?") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" You...{WAIT_PRESS}\nYou have the nerve to ask that?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Keh! That's right!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Imagine! Me asking anyone\nfor a favor!#W\nI'm breaking out in hives at the thought!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Imagine! Me asking anyone\nfor a favor!{WAIT_PRESS}\nI'm breaking out in hives at the thought!") }, { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Turn me down, and I'll\nKO you!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -152,7 +152,7 @@ static const struct ScriptCommand s_gs203_g1_s0_lives0_dlg0[] = { /* 0x82566f8 * WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Humph. I regret to inform...#W\nEven if you could defeat me, the curse\nwould remain.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Humph. I regret to inform...{WAIT_PRESS}\nEven if you could defeat me, the curse\nwould remain.") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I don't have the power to\nlift curses.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -162,10 +162,10 @@ static const struct ScriptCommand s_gs203_g1_s0_lives0_dlg0[] = { /* 0x82566f8 * { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gegeh!\nWhat are you saying?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" We $m3 are known\nto be vengeful in the extreme.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" We {POKEMON_3} are known\nto be vengeful in the extreme.") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Once we cast a curse,\nit is final...") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Our curse is so powerful,\neven we cannot lift it...#W\nThere may be a way, however...") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I became enraged at your\ntreacherous heart...#W\nAnd on it, I laid my curse.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Our curse is so powerful,\neven we cannot lift it...{WAIT_PRESS}\nThere may be a way, however...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I became enraged at your\ntreacherous heart...{WAIT_PRESS}\nAnd on it, I laid my curse.") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" For that reason, depending\non your heart now, the curse may be\nlifted.") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Take this with you.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -174,14 +174,14 @@ static const struct ScriptCommand s_gs203_g1_s0_lives0_dlg0[] = { /* 0x82566f8 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(30), FANFARE_PLAY(212), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n2 received the\n#+#CI9-Tail Crest#R from $n3.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_2} received the\n{CENTER_ALIGN}{COLOR GREEN_I}9-Tail Crest{RESET} from {NAME_3}.") }, { 0xe1, 0x00, 0x00d4, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Gardevoir's physical form\nis sealed within the #CDMurky Cave#R.") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" The seal can be broken\nby that stone.#W\nThe #CI9-Tail Crest#R.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Gardevoir's physical form\nis sealed within the {COLOR YELLOW_D}Murky Cave{RESET}.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" The seal can be broken\nby that stone.{WAIT_PRESS}\nThe {COLOR GREEN_I}9-Tail Crest{RESET}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), FANFARE_PLAY2(465), @@ -189,11 +189,11 @@ static const struct ScriptCommand s_gs203_g1_s0_lives0_dlg0[] = { /* 0x82566f8 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gotcha!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We just go to this\n#CDMurky Cave#R and plunk down that rock...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We just go to this\n{COLOR YELLOW_D}Murky Cave{RESET} and plunk down that rock...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And that breaks the seal,\nso good-bye to the curse!") }, { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh!\nHow do you like that?\nIt's ridiculously simple!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There was a way to lift\nthe curse after all!#W\nYou had me scared! Kekeke!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There was a way to lift\nthe curse after all!{WAIT_PRESS}\nYou had me scared! Kekeke!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, @@ -212,9 +212,9 @@ static const struct ScriptCommand s_gs203_g1_s0_lives0_dlg0[] = { /* 0x82566f8 * { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" That oaf...#W\nHe has changed in many ways...") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" But he is wavering...#W\nHis old and new emotions are clashing\nwithin his heart...") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" If he would only realize that\nupon reaching the #CDMurky Cave#R...#W\nIf he does not...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" That oaf...{WAIT_PRESS}\nHe has changed in many ways...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" But he is wavering...{WAIT_PRESS}\nHis old and new emotions are clashing\nwithin his heart...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" If he would only realize that\nupon reaching the {COLOR YELLOW_D}Murky Cave{RESET}...{WAIT_PRESS}\nIf he does not...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, @@ -338,15 +338,15 @@ static const struct ScriptCommand s_gs203_g2_s0_lives0_dlg0[] = { /* 0x8257ee8 * { 0x2e, 0x0f, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" We finally made it.")), - VARIANT(/* == */ 1, _(" This is the peak.#W\n...Right?")), - VARIANT(/* == */ 1, _(" Where could $n5\nbe?")), + VARIANT(/* == */ 1, _(" This is the peak.{WAIT_PRESS}\n...Right?")), + VARIANT(/* == */ 1, _(" Where could {NAME_5}\nbe?")), VARIANT_DEFAULT(_(" We've finally arrived.")), - VARIANT_DEFAULT(_(" This is the summit.#W\n...Isn't it?")), - VARIANT_DEFAULT(_(" I wonder where\n$n5 is?")), + VARIANT_DEFAULT(_(" This is the summit.{WAIT_PRESS}\n...Isn't it?")), + VARIANT_DEFAULT(_(" I wonder where\n{NAME_5} is?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" There they are!#W\nI've spotted $n0!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" There they are!{WAIT_PRESS}\nI've spotted {NAME_0}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" All right!\nI see them!") }, @@ -359,7 +359,7 @@ static const struct ScriptCommand s_gs203_g2_s0_lives0_dlg0[] = { /* 0x8257ee8 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, BGM_SWITCH(10), { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" A-$n2!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" A-{NAME_2}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, @@ -368,7 +368,7 @@ static const struct ScriptCommand s_gs203_g2_s0_lives0_dlg0[] = { /* 0x8257ee8 * { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Pipe down, $n4.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Pipe down, {NAME_4}.") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" We can finally settle\nthings here.") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I can barely contain myself.\nI'm itching for a fight.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -377,7 +377,7 @@ static const struct ScriptCommand s_gs203_g2_s0_lives0_dlg0[] = { /* 0x8257ee8 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" $n1.#W\nDon't think badly of me.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" {NAME_1}.{WAIT_PRESS}\nDon't think badly of me.") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I don't know how to show\nmercy.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -385,10 +385,10 @@ static const struct ScriptCommand s_gs203_g2_s0_lives0_dlg0[] = { /* 0x8257ee8 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n0...#W\nI didn't wish for this conclusion...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" {NAME_0}...{WAIT_PRESS}\nI didn't wish for this conclusion...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But this, too, is fate.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The role of a rescue team\nis to help bring peace.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We will...#W\ncrush you with every shred of our power!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We will...{WAIT_PRESS}\ncrush you with every shred of our power!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Get them!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -650,11 +650,11 @@ static const struct ScriptCommand s_gs203_g3_s0_station_sref_script[] = { /* 0x8 { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, { 0x2d, 0x09, 0x0002, 0x00000058, 0x00000000, NULL }, { 0x2d, 0x09, 0x0003, 0x00000067, 0x00000000, NULL }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And thus...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Alakazam's team made their\n#+way underground to quell\n#+the awakened $n3.") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Meanwhile, cleared of all\n#+suspicion, $n0's team...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Put an end to their long\n#+and arduous journey...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And returned to their\n#+welcoming rescue team base.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And thus...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Alakazam's team made their\n{CENTER_ALIGN}way underground to quell\n{CENTER_ALIGN}the awakened {NAME_3}.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Meanwhile, cleared of all\n{CENTER_ALIGN}suspicion, {NAME_0}'s team...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Put an end to their long\n{CENTER_ALIGN}and arduous journey...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And returned to their\n{CENTER_ALIGN}welcoming rescue team base.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -692,7 +692,7 @@ static const struct ScriptCommand s_gs203_g3_s0_lives0_dlg0[] = { /* 0x8259658 * { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...!#W\n$n5!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...!{WAIT_PRESS}\n{NAME_5}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -702,11 +702,11 @@ static const struct ScriptCommand s_gs203_g3_s0_lives0_dlg0[] = { /* 0x8259658 * FANFARE_PLAY2(455), CALL_SCRIPT(JUMP_SURPRISE_FUNC), { 0x2e, 0x0c, 0x0003, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" W-what?!#W\n$n5?!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" W-what?!{WAIT_PRESS}\n{NAME_5}?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x03, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Th-that's $n5...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Th-that's {NAME_5}...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x0d, 0x0004, 0x00000041, 0x00000000, NULL }, @@ -718,33 +718,33 @@ static const struct ScriptCommand s_gs203_g3_s0_lives0_dlg0[] = { /* 0x8259658 * { 0x2e, 0x02, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2f, 0x00, 0x0005, 0x00000001, -0x00000001, NULL }, BGM_SWITCH(6), - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Cease fighting at once,\n$n2.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Cease fighting at once,\n{NAME_2}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" They are...#W\nmy guests.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" They are...{WAIT_PRESS}\nmy guests.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Tell us, $n5!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Tell us, {NAME_5}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Who was the human that\nappeared in your legend?") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" No, even before that, was\nthe legend itself a true event?") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Depending on your reply...#W\nI may have no choice but to eliminate\nthem!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Depending on your reply...{WAIT_PRESS}\nI may have no choice but to eliminate\nthem!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Whether they consider my\ncurse to be a legend or not...") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" I care not.") }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" However...#W\nIt did happen.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" However...{WAIT_PRESS}\nIt did happen.") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Many years ago, I tried to\nlay a curse on a human.") }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" It was then, however, that\n$n6, the human's partner, dashed\nin...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" It was then, however, that\n{NAME_6}, the human's partner, dashed\nin...") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" It selflessly bore the full\nbrunt of the curse meant for the human.") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Then, the human did a\nselfish and cowardly thing.") }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" They abandoned\n$n6 and fled.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" They abandoned\n{NAME_6} and fled.") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" The human eventually\nbecame a Pokémon.") }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Transformed into a\nPokémon, the human...#W\nThe human lives on.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Transformed into a\nPokémon, the human...{WAIT_PRESS}\nThe human lives on.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -755,7 +755,7 @@ static const struct ScriptCommand s_gs203_g3_s0_lives0_dlg0[] = { /* 0x8259658 * WAIT(10), { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" $n0...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" {NAME_0}...") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" You may relax.\nIt is not you.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, BGM_SWITCH(24), @@ -763,25 +763,25 @@ static const struct ScriptCommand s_gs203_g3_s0_lives0_dlg0[] = { /* 0x8259658 * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............#WJust now...#W\n...What did you just say?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}Just now...{WAIT_PRESS}\n...What did you just say?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" $n0 is not the\nhuman that appears in the legend.\nThat is what I said.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" {NAME_0} is not the\nhuman that appears in the legend.\nThat is what I said.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Wh-#Wwhat...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Wh-{WAIT_PRESS}what...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000008, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ............#W\nWhat's wrong with me?#W\nI'm too tensed up to move...")), - VARIANT(/* == */ 3, _(" ............#W\nThere's something wrong...#W\nI'm too tensed up to move...")), - VARIANT_DEFAULT(_(" ............#W\nWhat's happening to me...?#W\nI'm too tensed up to move...")), + VARIANT(/* == */ 1, _(" ............{WAIT_PRESS}\nWhat's wrong with me?{WAIT_PRESS}\nI'm too tensed up to move...")), + VARIANT(/* == */ 3, _(" ............{WAIT_PRESS}\nThere's something wrong...{WAIT_PRESS}\nI'm too tensed up to move...")), + VARIANT_DEFAULT(_(" ............{WAIT_PRESS}\nWhat's happening to me...?{WAIT_PRESS}\nI'm too tensed up to move...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -795,9 +795,9 @@ static const struct ScriptCommand s_gs203_g3_s0_lives0_dlg0[] = { /* 0x8259658 * { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" Deep breaths...\nIn... Out... In... Out... In... Out...")), - VARIANT(/* == */ 1, _(" ..................#WWhew...")), + VARIANT(/* == */ 1, _(" ..................{WAIT_PRESS}Whew...")), VARIANT_DEFAULT(_(" Deep breaths...\nIn... Out... In... Out... In... Out...")), - VARIANT_DEFAULT(_(" ..................#WWhew...")), + VARIANT_DEFAULT(_(" ..................{WAIT_PRESS}Whew...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe5, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -821,29 +821,29 @@ static const struct ScriptCommand s_gs203_g3_s0_lives0_dlg0[] = { /* 0x8259658 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x0000000a, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" That's great!#W\nI knew $n0 wasn't the one!")), - VARIANT(/* == */ 1, _(" It's just as I thought!#W\n$n0 wouldn't do anything like\nthat!")), - VARIANT(/* == */ 3, _(" That's great!#W\nI knew $n0 couldn't be the one!")), - VARIANT(/* == */ 3, _(" I knew it!#W\n$n0 couldn't possibly be\nanyone that terrible!")), - VARIANT_DEFAULT(_(" That's great!#W\nI knew that $n0 wasn't involved!")), - VARIANT_DEFAULT(_(" I knew it!#W\nThere's no way that $n0 would\ndo those terrible things!")), + VARIANT(/* == */ 1, _(" That's great!{WAIT_PRESS}\nI knew {NAME_0} wasn't the one!")), + VARIANT(/* == */ 1, _(" It's just as I thought!{WAIT_PRESS}\n{NAME_0} wouldn't do anything like\nthat!")), + VARIANT(/* == */ 3, _(" That's great!{WAIT_PRESS}\nI knew {NAME_0} couldn't be the one!")), + VARIANT(/* == */ 3, _(" I knew it!{WAIT_PRESS}\n{NAME_0} couldn't possibly be\nanyone that terrible!")), + VARIANT_DEFAULT(_(" That's great!{WAIT_PRESS}\nI knew that {NAME_0} wasn't involved!")), + VARIANT_DEFAULT(_(" I knew it!{WAIT_PRESS}\nThere's no way that {NAME_0} would\ndo those terrible things!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" I have another thing to say.") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" It is true that I foretold\nof the world's balance becoming unstable...") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" However, that human\nbecoming a Pokémon and the world's\nbalance are not linked in any way.") }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" The cause of the natural\ncalamities...#W\nIt exists elsewhere.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" The cause of the natural\ncalamities...{WAIT_PRESS}\nIt exists elsewhere.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000003, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey! You lot!#W\nYou were wrong!")), - VARIANT(/* == */ 1, _(" You doubted and hounded\n$n0!")), - VARIANT_DEFAULT(_(" Hey, you!#W\nYou were wrong!")), - VARIANT_DEFAULT(_(" You were wrong to hound\nand harass $n0!")), + VARIANT(/* == */ 1, _(" Hey! You lot!{WAIT_PRESS}\nYou were wrong!")), + VARIANT(/* == */ 1, _(" You doubted and hounded\n{NAME_0}!")), + VARIANT_DEFAULT(_(" Hey, you!{WAIT_PRESS}\nYou were wrong!")), + VARIANT_DEFAULT(_(" You were wrong to hound\nand harass {NAME_0}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, @@ -852,7 +852,7 @@ static const struct ScriptCommand s_gs203_g3_s0_lives0_dlg0[] = { /* 0x8259658 * { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Uh...er...#W\nWe...uh...apologize.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Uh...er...{WAIT_PRESS}\nWe...uh...apologize.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0004, 0x00000000, 0x00000000, NULL }, @@ -860,8 +860,8 @@ static const struct ScriptCommand s_gs203_g3_s0_lives0_dlg0[] = { /* 0x8259658 * { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0003, 0x00000042, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" No.#W\nI suspected Gengar right from the start.") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" $n0 just doesn't\nlook like the treacherous type!#W\nHahahahaha...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" No.{WAIT_PRESS}\nI suspected Gengar right from the start.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" {NAME_0} just doesn't\nlook like the treacherous type!{WAIT_PRESS}\nHahahahaha...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), MSG_VAR(2, PARTNER_TALK_KIND, 1), @@ -873,7 +873,7 @@ static const struct ScriptCommand s_gs203_g3_s0_lives0_dlg0[] = { /* 0x8259658 * { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But I must say...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You are to be commended\nfor prevailing through this cruel\njourney and discovering the truth.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Impressive, $n0.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Impressive, {NAME_0}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -891,18 +891,18 @@ static const struct ScriptCommand s_gs203_g3_s0_lives0_dlg0[] = { /* 0x8259658 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ...Hah?#W\nBut wait a second.")), - VARIANT_DEFAULT(_(" ...Huh?#W\nOh, but wait...")), + VARIANT(/* == */ 1, _(" ...Hah?{WAIT_PRESS}\nBut wait a second.")), + VARIANT_DEFAULT(_(" ...Huh?{WAIT_PRESS}\nOh, but wait...")), BGM_FADEOUT(150), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Why did $n0\nbecome a Pokémon?")), - VARIANT(/* == */ 1, _(" I understand that\n$n0 isn't the human that\nappeared in the legend...")), - VARIANT(/* == */ 1, _(" Then, why would\n$n0 become a Pokémon?")), - VARIANT(/* == */ 1, _(" $n0...#W\nWho are you?!")), - VARIANT_DEFAULT(_(" Then why did $n0\nturn into a Pokémon?")), - VARIANT_DEFAULT(_(" I understand that\n$n0 isn't the human from that\nlegend...")), - VARIANT_DEFAULT(_(" Then, how do you explain\n$n0 becoming a Pokémon?")), - VARIANT_DEFAULT(_(" $n0...#W\nWho are you?")), + VARIANT(/* == */ 1, _(" Why did {NAME_0}\nbecome a Pokémon?")), + VARIANT(/* == */ 1, _(" I understand that\n{NAME_0} isn't the human that\nappeared in the legend...")), + VARIANT(/* == */ 1, _(" Then, why would\n{NAME_0} become a Pokémon?")), + VARIANT(/* == */ 1, _(" {NAME_0}...{WAIT_PRESS}\nWho are you?!")), + VARIANT_DEFAULT(_(" Then why did {NAME_0}\nturn into a Pokémon?")), + VARIANT_DEFAULT(_(" I understand that\n{NAME_0} isn't the human from that\nlegend...")), + VARIANT_DEFAULT(_(" Then, how do you explain\n{NAME_0} becoming a Pokémon?")), + VARIANT_DEFAULT(_(" {NAME_0}...{WAIT_PRESS}\nWho are you?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), FANFARE_PLAY2(453), @@ -930,7 +930,7 @@ static const struct ScriptCommand s_gs203_g3_s0_lives0_dlg0[] = { /* 0x8259658 * BGM_FADEIN(60, 9), { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" The world's crust is\nshifting.") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" The natural calamities are\nworsening.") }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" And...#W\nThe shifting of the ground...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" And...{WAIT_PRESS}\nThe shifting of the ground...") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" It will awaken the beast\nthat embodies the ground...\nThe beast that slept deep underground...") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Groudon will be awakened!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -954,7 +954,7 @@ static const struct ScriptCommand s_gs203_g3_s0_lives0_dlg0[] = { /* 0x8259658 * { 0x91, 0x04, 0x0002, 0x00000004, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000004, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What is that?#W\nWhat's a Groudon?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What is that?{WAIT_PRESS}\nWhat's a Groudon?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d12p01_station.h b/src/data/ground/ground_data_d12p01_station.h index 461244d1c..9e1d3a56f 100644 --- a/src/data/ground/ground_data_d12p01_station.h +++ b/src/data/ground/ground_data_d12p01_station.h @@ -110,10 +110,10 @@ static const struct ScriptCommand s_gs204_g1_s0_lives0_dlg0[] = { /* 0x825d228 * CALL_SCRIPT(LOOK_AROUND_FUNC), WAIT(30), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" So this is it...#W\nThe underground cavern where\n$n2 is...")), + VARIANT(/* == */ 1, _(" So this is it...{WAIT_PRESS}\nThe underground cavern where\n{NAME_2} is...")), VARIANT(/* == */ 1, _(" Look at the flowing\nstreams of lava...")), VARIANT(/* == */ 1, _(" It wouldn't surprise me if\nthe dungeon is scorching hot...")), - VARIANT_DEFAULT(_(" This must be it...#W\n$n2 is in this underground\ncavern.")), + VARIANT_DEFAULT(_(" This must be it...{WAIT_PRESS}\n{NAME_2} is in this underground\ncavern.")), VARIANT_DEFAULT(_(" Whew...\nLook at the streams of lava.")), VARIANT_DEFAULT(_(" It's going to be scorching\nhot in the dungeon, I think.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -175,8 +175,8 @@ static const struct ScriptCommand s_gs204_g2_s0_lives0_dlg0[] = { /* 0x825d818 * { 0x93, 0x04, 0x000b, 0x00000022, 0x00000000, NULL }, WAIT(15), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" This time, we'll rescue\n$n2's team!\nLet's get it done!")), - VARIANT_DEFAULT(_(" This time, we have to\nrescue $n2's team!\nLet's not blow it!")), + VARIANT(/* == */ 1, _(" This time, we'll rescue\n{NAME_2}'s team!\nLet's get it done!")), + VARIANT_DEFAULT(_(" This time, we have to\nrescue {NAME_2}'s team!\nLet's not blow it!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d12p02_station.h b/src/data/ground/ground_data_d12p02_station.h index 37d5b708e..c502cb638 100644 --- a/src/data/ground/ground_data_d12p02_station.h +++ b/src/data/ground/ground_data_d12p02_station.h @@ -152,12 +152,12 @@ static const struct ScriptCommand s_gs205_g1_s0_lives0_dlg0[] = { /* 0x825e344 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hmm...#W\nWell, that didn't go well.")), - VARIANT_DEFAULT(_(" Hmm...#W\nThat didn't work out...")), + VARIANT(/* == */ 1, _(" Hmm...{WAIT_PRESS}\nWell, that didn't go well.")), + VARIANT_DEFAULT(_(" Hmm...{WAIT_PRESS}\nThat didn't work out...")), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" But we didn't have far to\ngo!#W\nLet's give it our best!")), - VARIANT_DEFAULT(_(" But we were very close!#W\nLet's keep trying our best!")), + VARIANT(/* == */ 1, _(" But we didn't have far to\ngo!{WAIT_PRESS}\nLet's give it our best!")), + VARIANT_DEFAULT(_(" But we were very close!{WAIT_PRESS}\nLet's keep trying our best!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d12p04_station.h b/src/data/ground/ground_data_d12p04_station.h index 366a8b01a..f9e5e7808 100644 --- a/src/data/ground/ground_data_d12p04_station.h +++ b/src/data/ground/ground_data_d12p04_station.h @@ -32,8 +32,8 @@ static const struct ScriptCommand s_gs206_g1_s0_station_sref_script[] = { /* 0x8 { 0x2d, 0x09, 0x0000, 0x00000001, 0x00000000, NULL }, { 0x2d, 0x09, 0x0001, 0x00000058, 0x00000000, NULL }, { 0x2d, 0x09, 0x0002, 0x00000067, 0x00000000, NULL }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Having calmed $n2,\n#+$n0's team left the dungeon...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And returned to Pokémon Square\n#+together with $n1's team.") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Having calmed {NAME_2},\n{CENTER_ALIGN}{NAME_0}'s team left the dungeon...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And returned to Pokémon Square\n{CENTER_ALIGN}together with {NAME_1}'s team.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -85,7 +85,7 @@ static const struct ScriptCommand s_gs206_g1_s0_lives0_dlg0[] = { /* 0x825eb18 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000005, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Look! It's $n3!#W\n$n4 and $n5 too!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Look! It's {NAME_3}!{WAIT_PRESS}\n{NAME_4} and {NAME_5} too!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, @@ -102,7 +102,7 @@ static const struct ScriptCommand s_gs206_g1_s0_lives0_dlg0[] = { /* 0x825eb18 * { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x0c, 0x0004, 0x00000043, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Did you do it?\n$n2?") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Did you do it?\n{NAME_2}?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -121,7 +121,7 @@ static const struct ScriptCommand s_gs206_g1_s0_lives0_dlg0[] = { /* 0x825eb18 * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0005, 0x00000005, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What about $n2?#W\nWill it be OK?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What about {NAME_2}?{WAIT_PRESS}\nWill it be OK?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Your concern is unneeded.\nIt will awaken soon enough.") }, @@ -137,7 +137,7 @@ static const struct ScriptCommand s_gs206_g1_s0_lives0_dlg0[] = { /* 0x825eb18 * { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x15, 0x0005, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Waah...#W\nAnother quake!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Waah...{WAIT_PRESS}\nAnother quake!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Out! Quickly!") }, diff --git a/src/data/ground/ground_data_d13p01_station.h b/src/data/ground/ground_data_d13p01_station.h index 3d35f5f21..b40b6107f 100644 --- a/src/data/ground/ground_data_d13p01_station.h +++ b/src/data/ground/ground_data_d13p01_station.h @@ -54,8 +54,8 @@ static const struct ScriptCommand s_gs207_g1_s0_lives0_dlg0[] = { /* 0x826008c * WAIT(60), { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Ouch...#W\nWhere are we?")), - VARIANT_DEFAULT(_(" Owowow...#W\nWhere are we?")), + VARIANT(/* == */ 1, _(" Ouch...{WAIT_PRESS}\nWhere are we?")), + VARIANT_DEFAULT(_(" Owowow...{WAIT_PRESS}\nWhere are we?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -64,7 +64,7 @@ static const struct ScriptCommand s_gs207_g1_s0_lives0_dlg0[] = { /* 0x826008c * CALL_SCRIPT(LOOK_AROUND_RIGHT_FUNC), { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wah!\n$n0, this is cool!#W\nWe're on clouds!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wah!\n{NAME_0}, this is cool!{WAIT_PRESS}\nWe're on clouds!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -77,7 +77,7 @@ static const struct ScriptCommand s_gs207_g1_s0_lives0_dlg0[] = { /* 0x826008c * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0, look up there!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0}, look up there!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -184,16 +184,16 @@ static const struct ScriptCommand s_gs207_g2_s0_lives0_dlg0[] = { /* 0x8260934 * WAIT(30), MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" It must be at the very top...")), - VARIANT(/* == */ 1, _(" That must be where\n$n2 is...")), + VARIANT(/* == */ 1, _(" That must be where\n{NAME_2} is...")), VARIANT_DEFAULT(_(" It's at the top of this\ntower...")), - VARIANT_DEFAULT(_(" That's where $n2\nis...")), + VARIANT_DEFAULT(_(" That's where {NAME_2}\nis...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, WAIT(10), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0!\nLet's give it our best!")), - VARIANT_DEFAULT(_(" $n0!\nLet's do our best on the climb!")), + VARIANT(/* == */ 1, _(" {NAME_0}!\nLet's give it our best!")), + VARIANT_DEFAULT(_(" {NAME_0}!\nLet's do our best on the climb!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x23, 0x00, 0x0050, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d13p02_station.h b/src/data/ground/ground_data_d13p02_station.h index 3c2ab32eb..8e7748cd4 100644 --- a/src/data/ground/ground_data_d13p02_station.h +++ b/src/data/ground/ground_data_d13p02_station.h @@ -153,12 +153,12 @@ static const struct ScriptCommand s_gs208_g1_s0_lives0_dlg0[] = { /* 0x8261b84 * WAIT(10), { 0x2e, 0x02, 0x0001, 0x00000002, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hmm...#W\nWell, that didn't go well.")), - VARIANT_DEFAULT(_(" Hmm...#W\nThat didn't work out...")), + VARIANT(/* == */ 1, _(" Hmm...{WAIT_PRESS}\nWell, that didn't go well.")), + VARIANT_DEFAULT(_(" Hmm...{WAIT_PRESS}\nThat didn't work out...")), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" But we didn't have far to\ngo!#W\nLet's give it our best!")), - VARIANT_DEFAULT(_(" But we were very close!#W\nLet's keep trying our best!")), + VARIANT(/* == */ 1, _(" But we didn't have far to\ngo!{WAIT_PRESS}\nLet's give it our best!")), + VARIANT_DEFAULT(_(" But we were very close!{WAIT_PRESS}\nLet's keep trying our best!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d13p03_station.h b/src/data/ground/ground_data_d13p03_station.h index 0d0c30a10..841cd35e0 100644 --- a/src/data/ground/ground_data_d13p03_station.h +++ b/src/data/ground/ground_data_d13p03_station.h @@ -86,9 +86,9 @@ static const struct ScriptCommand s_gs209_g1_s0_lives0_dlg0[] = { /* 0x826223c * WAIT(60), { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Wh-wh-what?! Quake?!#W\nIt can't be!")), + VARIANT(/* == */ 1, _(" Wh-wh-what?! Quake?!{WAIT_PRESS}\nIt can't be!")), VARIANT(/* == */ 1, _(" We're up on clouds...")), - VARIANT_DEFAULT(_(" Wh-wh-what?!\nAn earthquake?!#W\nIt's not possible!")), + VARIANT_DEFAULT(_(" Wh-wh-what?!\nAn earthquake?!{WAIT_PRESS}\nIt's not possible!")), VARIANT_DEFAULT(_(" We're on top of clouds...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -96,15 +96,15 @@ static const struct ScriptCommand s_gs209_g1_s0_lives0_dlg0[] = { /* 0x826223c * { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" These are shock waves!#W\nAnd they're huge!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" These are shock waves!{WAIT_PRESS}\nAnd they're huge!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), FANFARE_PLAY2(465), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" That's it! I get it now!#W\nLook straight up, $n2!")), - VARIANT_DEFAULT(_(" That's it! I got it!#W\nLook straight up, $n2!")), + VARIANT(/* == */ 1, _(" That's it! I get it now!{WAIT_PRESS}\nLook straight up, {NAME_2}!")), + VARIANT_DEFAULT(_(" That's it! I got it!{WAIT_PRESS}\nLook straight up, {NAME_2}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -272,9 +272,9 @@ static const struct ScriptCommand s_gs209_g2_s0_lives0_dlg0[] = { /* 0x8262f4c * VARIANT_DEFAULT(_(" It's a shooting star!\nAnd it's enormous!")), VARIANT_DEFAULT(_(" It will destroy the world\nif it continues on its path!")), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" That's why we came,\n$n2. We need you to destroy\nthat falling star!")), - VARIANT(/* == */ 3, _(" That's why we came,\n$n2.\nPlease, destroy the falling star!")), - VARIANT_DEFAULT(_(" That's why we came,\n$n2.\nPlease, destroy the falling star!")), + VARIANT(/* == */ 1, _(" That's why we came,\n{NAME_2}. We need you to destroy\nthat falling star!")), + VARIANT(/* == */ 3, _(" That's why we came,\n{NAME_2}.\nPlease, destroy the falling star!")), + VARIANT_DEFAULT(_(" That's why we came,\n{NAME_2}.\nPlease, destroy the falling star!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -288,15 +288,15 @@ static const struct ScriptCommand s_gs209_g2_s0_lives0_dlg0[] = { /* 0x8262f4c * VARIANT_DEFAULT(_(" Yes!\nPlease hurry and destroy it!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#WBefore I try...#W\nI need to know your resolve.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}Before I try...{WAIT_PRESS}\nI need to know your resolve.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The star has come too close.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If I were to loose my\nHyper Beam here...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You would not escape\nunscathed!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" So what?!#W\nWe knew that right from the start!")), - VARIANT_DEFAULT(_(" So?!#W\nWe accepted that from the start!")), + VARIANT(/* == */ 1, _(" So what?!{WAIT_PRESS}\nWe knew that right from the start!")), + VARIANT_DEFAULT(_(" So?!{WAIT_PRESS}\nWe accepted that from the start!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Well said!") }, diff --git a/src/data/ground/ground_data_d15p01_station.h b/src/data/ground/ground_data_d15p01_station.h index ec478d006..baccf205a 100644 --- a/src/data/ground/ground_data_d15p01_station.h +++ b/src/data/ground/ground_data_d15p01_station.h @@ -34,30 +34,30 @@ static const struct ScriptCommand s_gs211_g1_s0_lives0_dlg0[] = { /* 0x826425c * { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gwooooooooooh!#W\n...H-how dare you!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gwooooooooooh!{WAIT_PRESS}\n...H-how dare you!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" How...#W\nHow did this happen...?") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But regardless, you have\nwon.#W\nLet me hear your wish.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" How...{WAIT_PRESS}\nHow did this happen...?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But regardless, you have\nwon.{WAIT_PRESS}\nLet me hear your wish.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Hm?! This...#W\nThis is the #CIRed Wing#R...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#WYou...#W\nStand back!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Hm?! This...{WAIT_PRESS}\nThis is the {COLOR GREEN_I}Red Wing{RESET}...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}You...{WAIT_PRESS}\nStand back!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Raikou's thunderbolt\n#+electrified the #CIRed Wing#R!") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The #CIRed Wing#R...#W\n#+transformed into\n#+the #CISunset Wing#R!") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Its subtle gradation of yellow\n#+to red is a truly beauteous sight!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Raikou's thunderbolt\n{CENTER_ALIGN}electrified the {COLOR GREEN_I}Red Wing{RESET}!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The {COLOR GREEN_I}Red Wing{RESET}...{WAIT_PRESS}\n{CENTER_ALIGN}transformed into\n{CENTER_ALIGN}the {COLOR GREEN_I}Sunset Wing{RESET}!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Its subtle gradation of yellow\n{CENTER_ALIGN}to red is a truly beauteous sight!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Go northeast!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" To a place called the\n#CDNorthwind Field#R.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" To a place called the\n{COLOR YELLOW_D}Northwind Field{RESET}.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You will find a Pokémon\nthere named Suicune.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If you are lucky enough to\nmeet Suicune...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Perhaps your wish will\ncome true!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY(212), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 received\n#+the #CISunset Wing#R.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0} received\n{CENTER_ALIGN}the {COLOR GREEN_I}Sunset Wing{RESET}.") }, { 0xe1, 0x00, 0x00d4, 0x00000000, 0x00000000, NULL }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+And...") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And...") }, FANFARE_PLAY(205), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Gained access to\n#+the #CDNorthwind Field#R!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Gained access to\n{CENTER_ALIGN}the {COLOR YELLOW_D}Northwind Field{RESET}!") }, { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d16p01_station.h b/src/data/ground/ground_data_d16p01_station.h index 9dfced553..4c9ee7001 100644 --- a/src/data/ground/ground_data_d16p01_station.h +++ b/src/data/ground/ground_data_d16p01_station.h @@ -67,8 +67,8 @@ static const struct ScriptCommand s_gs212_g1_s0_lives0_dlg0[] = { /* 0x82649c8 * { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gwooooooh!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Urghgh...#W\nI... I lost...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You...#W\nWhat do you wish?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Urghgh...{WAIT_PRESS}\nI... I lost...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You...{WAIT_PRESS}\nWhat do you wish?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000018, NULL }, @@ -76,9 +76,9 @@ static const struct ScriptCommand s_gs212_g1_s0_lives0_dlg0[] = { /* 0x82649c8 * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x62, 0x00, 0x0100, 0x00000000, 0x00000018, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Wh-what?! This is...\nthe #CIClear Wing#R...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...I understand now.#W\nTo meet that Pokémon...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#WStand aside.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Wh-what?! This is...\nthe {COLOR GREEN_I}Clear Wing{RESET}...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...I understand now.{WAIT_PRESS}\nTo meet that Pokémon...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}Stand aside.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x62, 0x00, 0x0100, 0x00000000, 0x00000008, NULL }, @@ -95,8 +95,8 @@ static const struct ScriptCommand s_gs212_g1_s0_lives0_dlg0[] = { /* 0x82649c8 * WAIT(10), { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Entei's fiery blast made\n#+the #CIClear Wing#R flare!") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The #CIClear Wing#R...#W\n#+transformed into the #CIRed Wing#R!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Entei's fiery blast made\n{CENTER_ALIGN}the {COLOR GREEN_I}Clear Wing{RESET} flare!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The {COLOR GREEN_I}Clear Wing{RESET}...{WAIT_PRESS}\n{CENTER_ALIGN}transformed into the {COLOR GREEN_I}Red Wing{RESET}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), WAIT(10), @@ -111,9 +111,9 @@ static const struct ScriptCommand s_gs212_g1_s0_lives0_dlg0[] = { /* 0x82649c8 * BGM_SWITCH(114), WAIT(60), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Take this and go west!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There, you will find\nthe #CDLightning Field#R.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There, you will find\nthe {COLOR YELLOW_D}Lightning Field{RESET}.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You will know your path\nthere!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Now go!\nTo the #CDLightning Field#R!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Now go!\nTo the {COLOR YELLOW_D}Lightning Field{RESET}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x62, 0x00, 0x0100, 0x00000000, -0x00000018, NULL }, WAIT(20), @@ -121,13 +121,13 @@ static const struct ScriptCommand s_gs212_g1_s0_lives0_dlg0[] = { /* 0x82649c8 * WAIT(20), BGM_STOP, FANFARE_PLAY(212), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 received\n#+the #CIRed Wing#R.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0} received\n{CENTER_ALIGN}the {COLOR GREEN_I}Red Wing{RESET}.") }, { 0xe1, 0x00, 0x00d4, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+And...") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And...") }, FANFARE_PLAY(205), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Gained access to\n#+the #CDLightning Field#R!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Gained access to\n{CENTER_ALIGN}the {COLOR YELLOW_D}Lightning Field{RESET}!") }, { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), diff --git a/src/data/ground/ground_data_d17p01_station.h b/src/data/ground/ground_data_d17p01_station.h index 03840f789..45562cdac 100644 --- a/src/data/ground/ground_data_d17p01_station.h +++ b/src/data/ground/ground_data_d17p01_station.h @@ -65,12 +65,12 @@ static const struct ScriptCommand s_gs213_g1_s0_lives0_dlg0[] = { /* 0x82657d4 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0002, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(685), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gwooooooooooh!#W\n...H-how dare you!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gwooooooooooh!{WAIT_PRESS}\n...H-how dare you!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" How...#W\nHow did this happen...?") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But regardless, you have\nwon.#W\nLet me hear your wish.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" How...{WAIT_PRESS}\nHow did this happen...?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But regardless, you have\nwon.{WAIT_PRESS}\nLet me hear your wish.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x6a, 0x00, 0x0100, 0x00000000, -0x00000018, NULL }, @@ -78,8 +78,8 @@ static const struct ScriptCommand s_gs213_g1_s0_lives0_dlg0[] = { /* 0x82657d4 * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x62, 0x00, 0x0100, 0x00000000, 0x00000018, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Hm?! This...#W\nThis is the #CIRed Wing#R...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#WYou...#W\nStand back!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Hm?! This...{WAIT_PRESS}\nThis is the {COLOR GREEN_I}Red Wing{RESET}...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}You...{WAIT_PRESS}\nStand back!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x62, 0x00, 0x0100, 0x00000000, 0x00000008, NULL }, @@ -94,8 +94,8 @@ static const struct ScriptCommand s_gs213_g1_s0_lives0_dlg0[] = { /* 0x82657d4 * WAIT(1), { 0x27, 0x01, 0x0005, 0x00000003, 0x00505000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Raikou's thunderbolt\n#+electrified the #CIRed Wing#R!") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The #CIRed Wing#R...#W\n#+transformed into\n#+the #CISunset Wing#R!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Raikou's thunderbolt\n{CENTER_ALIGN}electrified the {COLOR GREEN_I}Red Wing{RESET}!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The {COLOR GREEN_I}Red Wing{RESET}...{WAIT_PRESS}\n{CENTER_ALIGN}transformed into\n{CENTER_ALIGN}the {COLOR GREEN_I}Sunset Wing{RESET}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), WAIT(10), @@ -108,11 +108,11 @@ static const struct ScriptCommand s_gs213_g1_s0_lives0_dlg0[] = { /* 0x82657d4 * { 0xe2, 0x00, 0x01fb, 0x00000000, 0x00000000, NULL }, BGM_SWITCH(114), WAIT(60), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Its subtle gradation of yellow\n#+to red is a truly beauteous sight!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Its subtle gradation of yellow\n{CENTER_ALIGN}to red is a truly beauteous sight!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Go northeast!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" To a place called the\n#CDNorthwind Field#R.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" To a place called the\n{COLOR YELLOW_D}Northwind Field{RESET}.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You will find a Pokémon\nthere named Suicune.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If you are lucky enough to\nmeet Suicune...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Perhaps your wish will\ncome true!") }, @@ -123,13 +123,13 @@ static const struct ScriptCommand s_gs213_g1_s0_lives0_dlg0[] = { /* 0x82657d4 * WAIT(20), BGM_STOP, FANFARE_PLAY(212), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 received\n#+the #CISunset Wing#R.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0} received\n{CENTER_ALIGN}the {COLOR GREEN_I}Sunset Wing{RESET}.") }, { 0xe1, 0x00, 0x00d4, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+And...") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And...") }, FANFARE_PLAY(205), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Gained access to\n#+the #CDNorthwind Field#R!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Gained access to\n{CENTER_ALIGN}the {COLOR YELLOW_D}Northwind Field{RESET}!") }, { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), diff --git a/src/data/ground/ground_data_d18p01_station.h b/src/data/ground/ground_data_d18p01_station.h index 1d13bfef8..3e92ab974 100644 --- a/src/data/ground/ground_data_d18p01_station.h +++ b/src/data/ground/ground_data_d18p01_station.h @@ -76,9 +76,9 @@ static const struct ScriptCommand s_gs214_g1_s0_lives0_dlg0[] = { /* 0x8266664 * { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x62, 0x00, 0x0100, 0x00000000, 0x00000018, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This!#W\nThe #CISunset Wing#R!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...I see.#W\nYou came seeking the mirage Pokémon...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...#WStep back.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This!{WAIT_PRESS}\nThe {COLOR GREEN_I}Sunset Wing{RESET}!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...I see.{WAIT_PRESS}\nYou came seeking the mirage Pokémon...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...{WAIT_PRESS}Step back.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x62, 0x00, 0x0100, 0x00000000, 0x00000008, NULL }, @@ -96,8 +96,8 @@ static const struct ScriptCommand s_gs214_g1_s0_lives0_dlg0[] = { /* 0x8266664 * { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The north wind swirled\n#+around the #CISunset Wing#R!") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The #CISunset Wing#R...#W\n#+transformed into the #CIRainbow Wing#R!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The north wind swirled\n{CENTER_ALIGN}around the {COLOR GREEN_I}Sunset Wing{RESET}!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The {COLOR GREEN_I}Sunset Wing{RESET}...{WAIT_PRESS}\n{CENTER_ALIGN}transformed into the {COLOR GREEN_I}Rainbow Wing{RESET}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), WAIT(10), @@ -110,14 +110,14 @@ static const struct ScriptCommand s_gs214_g1_s0_lives0_dlg0[] = { /* 0x8266664 * { 0xe2, 0x00, 0x01fb, 0x00000000, 0x00000000, NULL }, BGM_SWITCH(114), WAIT(60), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Glittering in the seven colors\n#+of the rainbow, this wing is\n#+beautiful beyond description!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Glittering in the seven colors\n{CENTER_ALIGN}of the rainbow, this wing is\n{CENTER_ALIGN}beautiful beyond description!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This #CIRainbow Wing#R...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This {COLOR GREEN_I}Rainbow Wing{RESET}...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It is the key to meeting\nthe mirage Pokémon.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Take this wing...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Take it to the mountain so\nhigh that its peak is obscured by clouds.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes...\nTake it to #CDMt. Faraway#R!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes...\nTake it to {COLOR YELLOW_D}Mt. Faraway{RESET}!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The mirage Pokémon is at\nits peak!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x62, 0x00, 0x0100, 0x00000000, -0x00000018, NULL }, @@ -126,13 +126,13 @@ static const struct ScriptCommand s_gs214_g1_s0_lives0_dlg0[] = { /* 0x8266664 * WAIT(20), BGM_STOP, FANFARE_PLAY(212), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 received\n#+the #CIRainbow Wing#R.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0} received\n{CENTER_ALIGN}the {COLOR GREEN_I}Rainbow Wing{RESET}.") }, { 0xe1, 0x00, 0x00d4, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+And...") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And...") }, FANFARE_PLAY(205), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Gained access to\n#+#CDMt. Faraway#R!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Gained access to\n{CENTER_ALIGN}{COLOR YELLOW_D}Mt. Faraway{RESET}!") }, { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), diff --git a/src/data/ground/ground_data_d19p01_station.h b/src/data/ground/ground_data_d19p01_station.h index 1f45dc02b..e398ba083 100644 --- a/src/data/ground/ground_data_d19p01_station.h +++ b/src/data/ground/ground_data_d19p01_station.h @@ -39,26 +39,26 @@ static const struct ScriptCommand s_gs215_g1_s0_lives0_dlg0[] = { /* 0x82674cc * { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I have lost...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I admit it.\nYou are strong.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This!#W\nThe #CISunset Wing#R!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...I see.#W\nYou came seeking the mirage Pokémon...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...#WStep back.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This!{WAIT_PRESS}\nThe {COLOR GREEN_I}Sunset Wing{RESET}!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...I see.{WAIT_PRESS}\nYou came seeking the mirage Pokémon...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...{WAIT_PRESS}Step back.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kyuuuuuuuuhn!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The north wind swirled\n#+around the #CISunset Wing#R!") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The #CISunset Wing#R...#W\n#+transformed into the #CIRainbow Wing#R!") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Glittering in the seven colors\n#+of the rainbow, this wing is\n#+beautiful beyond description!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The north wind swirled\n{CENTER_ALIGN}around the {COLOR GREEN_I}Sunset Wing{RESET}!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The {COLOR GREEN_I}Sunset Wing{RESET}...{WAIT_PRESS}\n{CENTER_ALIGN}transformed into the {COLOR GREEN_I}Rainbow Wing{RESET}!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Glittering in the seven colors\n{CENTER_ALIGN}of the rainbow, this wing is\n{CENTER_ALIGN}beautiful beyond description!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This #CIRainbow Wing#R...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This {COLOR GREEN_I}Rainbow Wing{RESET}...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It is the key to meeting\nthe mirage Pokémon.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Take this wing...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Take it to the mountain so\nhigh that its peak is obscured by clouds.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes...\nTake it to #CDMt. Faraway#R!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes...\nTake it to {COLOR YELLOW_D}Mt. Faraway{RESET}!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The mirage Pokémon is at\nits peak!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 received\n#+the #CIRainbow Wing#R.") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+And...") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Gained access to\n#+#CDMt. Faraway#R!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0} received\n{CENTER_ALIGN}the {COLOR GREEN_I}Rainbow Wing{RESET}.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And...") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Gained access to\n{CENTER_ALIGN}{COLOR YELLOW_D}Mt. Faraway{RESET}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, HALT, diff --git a/src/data/ground/ground_data_d20p01_station.h b/src/data/ground/ground_data_d20p01_station.h index c1c58cf6f..5392902b1 100644 --- a/src/data/ground/ground_data_d20p01_station.h +++ b/src/data/ground/ground_data_d20p01_station.h @@ -24,8 +24,8 @@ static const struct ScriptCommand s_gs216_g1_s0_station_sref_script[] = { /* 0x8 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(216), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+One day...") }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+In a small cave\n#+in the distant west...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}One day...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}In a small cave\n{CENTER_ALIGN}in the distant west...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -55,7 +55,7 @@ static const struct ScriptCommand s_gs216_g1_s0_lives0_dlg0[] = { /* 0x8267cc8 * WAIT(30), { 0x56, 0x00, 0x0000, 0x0000005a, 0x00000000, NULL }, { 0x2e, 0x0c, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Hey!#W\nGet a move on!") }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Hey!{WAIT_PRESS}\nGet a move on!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -63,7 +63,7 @@ static const struct ScriptCommand s_gs216_g1_s0_lives0_dlg0[] = { /* 0x8267cc8 * { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x03, 0x0001, 0x00000003, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Gasp, gasp...#W\nThis is rough going...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Gasp, gasp...{WAIT_PRESS}\nThis is rough going...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Heh! What's with you?\nYou're gonna whine about it now?") }, @@ -71,7 +71,7 @@ static const struct ScriptCommand s_gs216_g1_s0_lives0_dlg0[] = { /* 0x8267cc8 * { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Saying you'd found a new\ncave and all!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yeah...#W\nI just happened to be swimming by in\nthe sea when I spotted this cave...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yeah...{WAIT_PRESS}\nI just happened to be swimming by in\nthe sea when I spotted this cave...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -79,19 +79,19 @@ static const struct ScriptCommand s_gs216_g1_s0_lives0_dlg0[] = { /* 0x8267cc8 * { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I didn't expect it to be\na dungeon this rough...\nGasp, gasp...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Heh!#W\nI thought a different combo would be\na good change of pace...") }, - { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" But you're pathetic!#W\nSo much for Mr. Big Shot $n1!") }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Heh!{WAIT_PRESS}\nI thought a different combo would be\na good change of pace...") }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" But you're pathetic!{WAIT_PRESS}\nSo much for Mr. Big Shot {NAME_1}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), FANFARE_PLAY2(472), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000002, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wh-what!#W\nCall me pathetic, will you?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wh-what!{WAIT_PRESS}\nCall me pathetic, will you?!") }, { 0x2e, 0x15, 0x0001, 0x00000003, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What you've seen of me\nso far is nothing!") }, { 0x2e, 0x15, 0x0001, 0x00000002, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Never...#W\nunderestimate $n1!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Never...{WAIT_PRESS}\nunderestimate {NAME_1}!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wroooooooaaaaar!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -99,14 +99,14 @@ static const struct ScriptCommand s_gs216_g1_s0_lives0_dlg0[] = { /* 0x8267cc8 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x56, 0x00, 0x0000, 0x0000005d, 0x00000000, NULL }, { 0x2e, 0x15, 0x0000, 0x00000002, 0x00000000, NULL }, - { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Hahaha!#W\nThere! You're still feeling frisky!") }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Hahaha!{WAIT_PRESS}\nThere! You're still feeling frisky!") }, { 0x56, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" That's the spirit!#W\nI think we're getting close.\nLet's keep it going!") }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" That's the spirit!{WAIT_PRESS}\nI think we're getting close.\nLet's keep it going!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...!#W\nSo you did that to motivate me...#W\n...Thanks.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...!{WAIT_PRESS}\nSo you did that to motivate me...{WAIT_PRESS}\n...Thanks.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Hey, no problem.\nLet's move!") }, @@ -120,12 +120,12 @@ static const struct ScriptCommand s_gs216_g1_s0_lives0_dlg0[] = { /* 0x8267cc8 * WAIT(60), { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, WAIT(30), - { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Hm?#W What's wrong?#W\nAre you still wiped out?") }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Hm?{WAIT_PRESS} What's wrong?{WAIT_PRESS}\nAre you still wiped out?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), WAIT(30), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...No. That's not it.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...Just now.#W\nDid you hear something?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...Just now.{WAIT_PRESS}\nDid you hear something?") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I thought I heard a voice...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -136,13 +136,13 @@ static const struct ScriptCommand s_gs216_g1_s0_lives0_dlg0[] = { /* 0x8267cc8 * { 0x92, 0x04, 0x0001, 0x00000003, 0x00000000, NULL }, WAIT(30), { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, - { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" ...No?#W\nI don't hear anything.") }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" ...No?{WAIT_PRESS}\nI don't hear anything.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), BGM_SWITCH(35), { 0x2b, 0x00, 0x0000, 0x0000003c, 0x0000003c, NULL }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ............#WIs it#W \nyou...?") }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ......Who...disturbs...my sleep...#W\nIs it#W you?!\n") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}Is it{WAIT_PRESS} \nyou...?") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ......Who...disturbs...my sleep...{WAIT_PRESS}\nIs it{WAIT_PRESS} you?!\n") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -156,7 +156,7 @@ static const struct ScriptCommand s_gs216_g1_s0_lives0_dlg0[] = { /* 0x8267cc8 * WAIT(30), { 0x2b, 0x00, 0x0000, -0x00000001, -0x00000001, NULL }, { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Wh-who's there?!") }, - { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Who are you?!#W\nShow yourself!") }, + { 0x34, 0x00, 0x0000, 0x00000000, 0x00000000, _(" Who are you?!{WAIT_PRESS}\nShow yourself!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), FANFARE_PLAY2(453), @@ -164,7 +164,7 @@ static const struct ScriptCommand s_gs216_g1_s0_lives0_dlg0[] = { /* 0x8267cc8 * WAIT(60), { 0x2b, 0x00, 0x0000, 0x0000005a, 0x0000005a, NULL }, { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Me...?") }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I was...#W\nEngineered...") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I was...{WAIT_PRESS}\nEngineered...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), WAIT(60), @@ -173,7 +173,7 @@ static const struct ScriptCommand s_gs216_g1_s0_lives0_dlg0[] = { /* 0x8267cc8 * { 0x28, 0x01, 0x0001, 0x00000005, 0x00ffffff, NULL }, WAIT(10), { 0x27, 0x01, 0x0001, 0x00000005, 0x00ffffff, NULL }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Created only to fight...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Created only to fight...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), BGM_STOP, @@ -189,7 +189,7 @@ static const struct ScriptCommand s_gs216_g1_s0_lives0_dlg0[] = { /* 0x8267cc8 * { 0x27, 0x01, 0x0001, 0x00000005, 0x00ffffff, NULL }, { 0x23, 0x01, 0x000a, 0x00000000, 0x00000000, NULL }, { 0x2b, 0x00, 0x0000, 0x00000078, 0x00000078, NULL }, - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+The most powerful of all Pokémon!") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The most powerful of all Pokémon!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d21p01_station.h b/src/data/ground/ground_data_d21p01_station.h index 71677b583..666b2ecb9 100644 --- a/src/data/ground/ground_data_d21p01_station.h +++ b/src/data/ground/ground_data_d21p01_station.h @@ -49,9 +49,9 @@ static const struct ScriptCommand s_gs217_g1_s0_lives0_dlg0[] = { /* 0x8269878 * WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#WPlease...\nPlease let me go...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I have to go...#W\nThere's somewhere that I have to go...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If...I don't hurry...#W\nM-my little sister...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}Please...\nPlease let me go...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I have to go...{WAIT_PRESS}\nThere's somewhere that I have to go...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If...I don't hurry...{WAIT_PRESS}\nM-my little sister...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d22p01_station.h b/src/data/ground/ground_data_d22p01_station.h index 605622ad2..9b97b896a 100644 --- a/src/data/ground/ground_data_d22p01_station.h +++ b/src/data/ground/ground_data_d22p01_station.h @@ -88,7 +88,7 @@ static const struct ScriptCommand s_gs218_g1_s0_lives0_dlg0[] = { /* 0x826a108 * WAIT(60), { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ............") }, { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ...Y-you are...?") }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ...Did you maybe...#W\ncome to save me?") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" ...Did you maybe...{WAIT_PRESS}\ncome to save me?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, BGM_FADEIN(20, 114), WAIT(10), @@ -98,8 +98,8 @@ static const struct ScriptCommand s_gs218_g1_s0_lives0_dlg0[] = { /* 0x826a108 * { 0x6b, 0x00, 0x0100, 0x00000001, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x0d, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#W\nYes, I'll be fine.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" My wing is still damaged\na little, but...#W\nI can go.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}\nYes, I'll be fine.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" My wing is still damaged\na little, but...{WAIT_PRESS}\nI can go.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x6a, 0x00, 0x0100, 0x00000008, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d24p01_station.h b/src/data/ground/ground_data_d24p01_station.h index 17755706e..349eb2035 100644 --- a/src/data/ground/ground_data_d24p01_station.h +++ b/src/data/ground/ground_data_d24p01_station.h @@ -56,14 +56,14 @@ static const struct ScriptCommand s_gs220_g1_s0_lives0_dlg0[] = { /* 0x826abb0 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh!\nWe're here at last!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This is it?\nThis is the deepest floor of the\n#CDMurky Cave#R?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This is it?\nThis is the deepest floor of the\n{COLOR YELLOW_D}Murky Cave{RESET}?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), FANFARE_PLAY2(465), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh, look!#W\nThere's a dais!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh, look!{WAIT_PRESS}\nThere's a dais!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, @@ -77,7 +77,7 @@ static const struct ScriptCommand s_gs220_g1_s0_lives0_dlg0[] = { /* 0x826abb0 * { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(348), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n2 placed the #CI9-Tail Crest#R\n#+in the hollow spot.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_2} placed the {COLOR GREEN_I}9-Tail Crest{RESET}\n{CENTER_ALIGN}in the hollow spot.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), BGM_STOP, @@ -107,7 +107,7 @@ static const struct ScriptCommand s_gs220_g1_s0_lives0_dlg0[] = { /* 0x826abb0 * FANFARE_PLAY2(463), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............?#W\nHuh? I thought I heard something...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............?{WAIT_PRESS}\nHuh? I thought I heard something...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -132,13 +132,13 @@ static const struct ScriptCommand s_gs220_g1_s0_lives0_dlg0[] = { /* 0x826abb0 * { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That's odd...\nI could've sworn I heard something...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+...Wel...co...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}...Wel...co...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+...W...e...lc...ome...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}...W...e...lc...ome...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(45), - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Welcome to\n#+the Murky Cave!") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Welcome to\n{CENTER_ALIGN}the Murky Cave!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(469), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -153,29 +153,29 @@ static const struct ScriptCommand s_gs220_g1_s0_lives0_dlg0[] = { /* 0x826abb0 * { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), BGM_SWITCH(6), - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+I am the\n#+judge of darkness.") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+You have nothing to fear from me.\n#+I mean you no harm.") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Just now, a key was\n#+inserted to break a curse.") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The curse...\n#+It is the one on $n3?") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}I am the\n{CENTER_ALIGN}judge of darkness.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}You have nothing to fear from me.\n{CENTER_ALIGN}I mean you no harm.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Just now, a key was\n{CENTER_ALIGN}inserted to break a curse.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The curse...\n{CENTER_ALIGN}It is the one on {NAME_3}?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh! Exactly!#W\nPlease lift the curse now!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh! Exactly!{WAIT_PRESS}\nPlease lift the curse now!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+I cannot allow that right away.") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+I must first know if you\n#+have earned the right.") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+I must evaluate you.") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+You must bare your\n#+true feelings to me.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}I cannot allow that right away.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}I must first know if you\n{CENTER_ALIGN}have earned the right.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}I must evaluate you.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}You must bare your\n{CENTER_ALIGN}true feelings to me.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh? What?#W\nYou're going to test me?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh? What?{WAIT_PRESS}\nYou're going to test me?") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What, I have to fight some\nboss creature?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Oh, no.\n#+Nothing so barbaric.") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+All that I need is for some\n#+questions to be answered.") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+However...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Oh, no.\n{CENTER_ALIGN}Nothing so barbaric.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}All that I need is for some\n{CENTER_ALIGN}questions to be answered.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}However...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), FANFARE_PLAY2(502), @@ -191,19 +191,19 @@ static const struct ScriptCommand s_gs220_g1_s0_lives0_dlg0[] = { /* 0x826abb0 * { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000046, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gegeh?! What the...?!#W\nI can't move!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gegeh?! What the...?!{WAIT_PRESS}\nI can't move!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n2, you will not\n#+be doing the answering...") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_2}, you will not\n{CENTER_ALIGN}be doing the answering...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), FANFARE_PLAY2(465), CALL_SCRIPT(NOTICE_FUNC), { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, WAIT(30), - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0.\n#+You will answer.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0}.\n{CENTER_ALIGN}You will answer.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), { 0x6b, 0x00, 0x0080, 0x00000001, 0x00000000, NULL }, @@ -220,15 +220,15 @@ static const struct ScriptCommand s_gs220_g1_s0_lives0_dlg0[] = { /* 0x826abb0 * WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n2.#W\n#+Your heart is interwoven\n#+with conflicting emotions.") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+You will probably never show\n#+the truth within your heart.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_2}.{WAIT_PRESS}\n{CENTER_ALIGN}Your heart is interwoven\n{CENTER_ALIGN}with conflicting emotions.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}You will probably never show\n{CENTER_ALIGN}the truth within your heart.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh?!\nWhat?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 will enter\n#+$n2's heart.") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Please navigate carefully\n#+through $n2's emotions.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0} will enter\n{CENTER_ALIGN}{NAME_2}'s heart.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Please navigate carefully\n{CENTER_ALIGN}through {NAME_2}'s emotions.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, HALT, @@ -337,11 +337,11 @@ static const struct ScriptCommand s_gs220_g2_s0_lives0_dlg0[] = { /* 0x826c278 * { 0x2d, 0x09, 0x0003, 0x00000052, 0x00000000, NULL }, { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(80), - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n2.\n#+Whether you have the right\n#+to break the curse or not...") }, - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+I will now render\n#+my judgment.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_2}.\n{CENTER_ALIGN}Whether you have the right\n{CENTER_ALIGN}to break the curse or not...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}I will now render\n{CENTER_ALIGN}my judgment.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The curse...#W\n#+could not be lifted.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The curse...{WAIT_PRESS}\n{CENTER_ALIGN}could not be lifted.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -351,7 +351,7 @@ static const struct ScriptCommand s_gs220_g2_s0_lives0_dlg0[] = { /* 0x826c278 * { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" W-wait...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+It is most regrettable, but\n#+the curse on $n3\n#+will last all eternity...") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}It is most regrettable, but\n{CENTER_ALIGN}the curse on {NAME_3}\n{CENTER_ALIGN}will last all eternity...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Wait!\nWait a minute!") }, @@ -365,31 +365,31 @@ static const struct ScriptCommand s_gs220_g2_s0_lives0_dlg0[] = { /* 0x826c278 * { 0x6a, 0x00, 0x0100, -0x00000018, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, WAIT(20), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Let me...#W\nLet me say something!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Let me...{WAIT_PRESS}\nLet me say something!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, BGM_FADEIN(60, 24), WAIT(60), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's true.\nI abandoned $n3 and ran.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's true.\nI abandoned {NAME_3} and ran.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I was afraid that the curse\nwould fall on me.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I had to get away, no matter\nwhat...#W\nThat's what I thought.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It didn't take long for me\nto forget about the curse and about\n$n3.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I had to get away, no matter\nwhat...{WAIT_PRESS}\nThat's what I thought.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It didn't take long for me\nto forget about the curse and about\n{NAME_3}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Many long years passed...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But $n3...#W\nShe never forgot about me.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" One night...#W\nIn $n4's dream, $n3\nsaid this...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But {NAME_3}...{WAIT_PRESS}\nShe never forgot about me.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" One night...{WAIT_PRESS}\nIn {NAME_4}'s dream, {NAME_3}\nsaid this...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That she considered me an\nirreplaceable friend, and that she still\nbelieved we would meet again...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n3 kept thinking\nabout someone like me.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" {NAME_3} kept thinking\nabout someone like me.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x15, 0x0002, 0x00000045, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But I...\nHow selfish I was.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I lived carefree all this\ntime...#W\nI realize now how selfish I was.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's not just $n3.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" #C5Team $t#R put up\nwith my selfishness and brought me here.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I lived carefree all this\ntime...{WAIT_PRESS}\nI realize now how selfish I was.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It's not just {NAME_3}.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" {COLOR CYAN}Team {TEAM_NAME}{RESET} put up\nwith my selfishness and brought me here.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I finally know what I was\nmissing.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What I lacked...#W\nIt was something for the others...#W\nA sense of gratitude.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What I lacked...{WAIT_PRESS}\nIt was something for the others...{WAIT_PRESS}\nA sense of gratitude.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(120), BGM_STOP, @@ -415,7 +415,7 @@ static const struct ScriptCommand s_gs220_g2_s0_lives0_dlg0[] = { /* 0x826c278 * { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, CALL_SCRIPT(LOOK_AROUND_FUNC), WAIT(15), - { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The lock bearing the curse...#W\n#+It has opened.") }, + { 0x33, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The lock bearing the curse...{WAIT_PRESS}\n{CENTER_ALIGN}It has opened.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), FANFARE_PLAY2(506), @@ -429,7 +429,7 @@ static const struct ScriptCommand s_gs220_g2_s0_lives0_dlg0[] = { /* 0x826c278 * { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000046, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ga-$n3!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ga-{NAME_3}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), BGM_FADEIN(60, 5), @@ -437,21 +437,21 @@ static const struct ScriptCommand s_gs220_g2_s0_lives0_dlg0[] = { /* 0x826c278 * WAIT(30), { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" It worked, $n2!") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" It worked, {NAME_2}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0002, 0x00000044, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" N-$n5!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" N-{NAME_5}!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...But...\nI don't know what you're saying...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" The curse has been broken.") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" I cast my curse, enraged at\nyour twisted heart.") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" When your heart gained\nwhat it had been missing...\nThe curse was shattered.") }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" The final key to break the\ncurse...#W\nwas your sense of gratitude.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" The final key to break the\ncurse...{WAIT_PRESS}\nwas your sense of gratitude.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -459,13 +459,13 @@ static const struct ScriptCommand s_gs220_g2_s0_lives0_dlg0[] = { /* 0x826c278 * { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Then, Gardevoir...?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" You may be reassured.\n$n3 has returned.#W\nShe will soon awaken.") }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" However...#W\nThat you were her partner in the past...") }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" $n3 will have no\nrecollection of that.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" You may be reassured.\n{NAME_3} has returned.{WAIT_PRESS}\nShe will soon awaken.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" However...{WAIT_PRESS}\nThat you were her partner in the past...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" {NAME_3} will have no\nrecollection of that.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#WThat doesn't matter.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n3 is back.#W\nThat's enough for me...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}That doesn't matter.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" {NAME_3} is back.{WAIT_PRESS}\nThat's enough for me...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_d24p02_station.h b/src/data/ground/ground_data_d24p02_station.h index f8656a476..d2cb62c65 100644 --- a/src/data/ground/ground_data_d24p02_station.h +++ b/src/data/ground/ground_data_d24p02_station.h @@ -45,7 +45,7 @@ static const struct ScriptCommand s_gs221_g1_s0_lives0_dlg0[] = { /* 0x826d898 * { 0x89, 0x50, 0x0099, 0x00000004, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You're going to the\n#CDMurky Cave#R?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You're going to the\n{COLOR YELLOW_D}Murky Cave{RESET}?") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Don't forget to take me,\nkekeh!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_h29p01_station.h b/src/data/ground/ground_data_h29p01_station.h index 8ce53f823..a07f1a8bf 100644 --- a/src/data/ground/ground_data_h29p01_station.h +++ b/src/data/ground/ground_data_h29p01_station.h @@ -293,16 +293,16 @@ static const struct ScriptCommand s_gs158_g2_s0_lives0_dlg0[] = { /* 0x820d22c * { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The guardian of the sea is\nsaid to arise.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Our arrival at the\n#CHLegendary Island#R...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Our arrival at the\n{COLOR GREEN_H}Legendary Island{RESET}...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The three of us caused\nthe sea guardian to awaken.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It is what caused whirlpools\nto grow into tornadoes.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I have here the\n#C4Vortex Stone#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I have here the\n{COLOR GREEN}Vortex Stone{RESET}.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Bearing it, you will gain\npassage through the sea's tornadoes...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It will lead you to a place\ncalled the #CDSilver Trench#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It will lead you to a place\ncalled the {COLOR YELLOW_D}Silver Trench{RESET}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There, you will find the\nguardian of the sea.") }, @@ -316,11 +316,11 @@ static const struct ScriptCommand s_gs158_g2_s0_lives0_dlg0[] = { /* 0x820d22c * WAIT(30), BGM_STOP, FANFARE_PLAY(212), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Obtained the #C4Vortex Stone#R.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Obtained the {COLOR GREEN}Vortex Stone{RESET}.") }, { 0xe1, 0x00, 0x00d4, 0x00000000, 0x00000000, NULL }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+And...") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And...") }, FANFARE_PLAY(205), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Gained access to\n#+the #CDSilver Trench#R!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Gained access to\n{CENTER_ALIGN}the {COLOR YELLOW_D}Silver Trench{RESET}!") }, { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_s01_station.h b/src/data/ground/ground_data_s01_station.h index 4b181c249..fc545e430 100644 --- a/src/data/ground/ground_data_s01_station.h +++ b/src/data/ground/ground_data_s01_station.h @@ -19,12 +19,12 @@ static const struct ScriptCommand s_gs223_g1_s0_station_sref_script[] = { /* 0x8 DEBUGINFO, BGM_STOP, SELECT_MAP(223), - { 0x37, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Welcome!") }, - { 0x37, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+This is the portal that leads\n#+to the world of Pokémon!") }, - { 0x37, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+But before I can let you through,\n#+I have several questions for you.") }, - { 0x37, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+I want you to answer them sincerely.") }, - { 0x37, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Are you ready?") }, - { 0x37, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+OK...#W\n#+Let the interview begin!") }, + { 0x37, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Welcome!") }, + { 0x37, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}This is the portal that leads\n{CENTER_ALIGN}to the world of Pokémon!") }, + { 0x37, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}But before I can let you through,\n{CENTER_ALIGN}I have several questions for you.") }, + { 0x37, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}I want you to answer them sincerely.") }, + { 0x37, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Are you ready?") }, + { 0x37, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}OK...{WAIT_PRESS}\n{CENTER_ALIGN}Let the interview begin!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_ENTITIES(-1, 0), BGM_SWITCH(12), diff --git a/src/data/ground/ground_data_t01p01_station.h b/src/data/ground/ground_data_t01p01_station.h index 4d1728536..448152d51 100644 --- a/src/data/ground/ground_data_t01p01_station.h +++ b/src/data/ground/ground_data_t01p01_station.h @@ -390,7 +390,7 @@ static const struct ScriptCommand s_gs1_g0_s0_obj0_dlg2[] = { /* 0x8138fc0 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Welcome!\n#+The fun and bustling Pokémon Square!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Welcome!\n{CENTER_ALIGN}The fun and bustling Pokémon Square!") }, { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("Whiscash Pond ↑\n Pelipper Post Office →") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, @@ -402,7 +402,7 @@ static const struct ScriptCommand s_gs1_g0_s0_obj1_dlg2[] = { /* 0x81390c0 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+↑\n#+Whiscash Pond") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}↑\n{CENTER_ALIGN}Whiscash Pond") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, RET, @@ -413,7 +413,7 @@ static const struct ScriptCommand s_gs1_g0_s0_obj2_dlg2[] = { /* 0x8139158 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("\n#+Pelipper Post Office →") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("\n{CENTER_ALIGN}Pelipper Post Office →") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, RET, @@ -570,7 +570,7 @@ static const struct ScriptCommand s_gs1_g1_s0_lives6_dlg2[] = { /* 0x8139760 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What's your rescue rank?\nHow high'd you get it?") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We're still Normal Rank.#W\nWe're trying, but...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We're still Normal Rank.{WAIT_PRESS}\nWe're trying, but...") }, JUMP_SCRIPT(END_TALK), }; @@ -580,10 +580,10 @@ static const struct ScriptCommand s_gs1_g1_s0_lives7_dlg2[] = { /* 0x8139840 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It sounds like the natural\ndisasters were interfering with our ability\nto evolve.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I think the timing's right.#W\nI should think about evolving...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But when I evolve...#W\nI become a #CMLudicolo#R...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You know? \n#CMLudicolo#R is a carefree Pokémon.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I don't know about having\nmy personality become carefree...#W\nWhat do you think? Huh?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I think the timing's right.{WAIT_PRESS}\nI should think about evolving...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But when I evolve...{WAIT_PRESS}\nI become a {COLOR CYAN_M}Ludicolo{RESET}...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You know? \n{COLOR CYAN_M}Ludicolo{RESET} is a carefree Pokémon.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I don't know about having\nmy personality become carefree...{WAIT_PRESS}\nWhat do you think? Huh?") }, JUMP_SCRIPT(END_TALK), }; @@ -593,8 +593,8 @@ static const struct ScriptCommand s_gs1_g1_s0_lives8_dlg2[] = { /* 0x8139a3c */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x09, 0x0002, 0x00000050, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I've given up on trying to\nturn back into $m2.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" From now on, I'm living as\n$m1.\nPleased to meet you.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I've given up on trying to\nturn back into {POKEMON_2}.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" From now on, I'm living as\n{POKEMON_1}.\nPleased to meet you.") }, JUMP_SCRIPT(END_TALK), }; @@ -613,7 +613,7 @@ static const struct ScriptCommand s_gs1_g1_s0_lives10_dlg2[] = { /* 0x8139bf4 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wonder what's higher than\nthe Gold Rank?#W\nI can't imagine it.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wonder what's higher than\nthe Gold Rank?{WAIT_PRESS}\nI can't imagine it.") }, JUMP_SCRIPT(END_TALK), }; @@ -624,8 +624,8 @@ static const struct ScriptCommand s_gs1_g1_s0_lives11_dlg2[] = { /* 0x8139c9c */ WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" For many years, countless\nPokémon have served on rescue teams.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Many have engraved\ntheir names in glory.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But if anyone asks\nabout the greatest of them all...#W\nThere is but one hero.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's Lucario...#W\nwhose exploits as a rescue leader are the\nstuff of legend.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But if anyone asks\nabout the greatest of them all...{WAIT_PRESS}\nThere is but one hero.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's Lucario...{WAIT_PRESS}\nwhose exploits as a rescue leader are the\nstuff of legend.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I aspire to become like\nLucario.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" To become even closer to\nLucario's greatness...\nThat is my goal and my dream.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -846,7 +846,7 @@ static const struct ScriptCommand s_gs1_g4_s1_lives0_dlg0[] = { /* 0x813a9b4 */ { 0x93, 0x04, 0x000a, 0x0000007f, 0x00000000, NULL }, WAIT(60), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ....................................\n................................................\n................................................") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Belly...rumbling...#W\nHungry...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Belly...rumbling...{WAIT_PRESS}\nHungry...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -992,7 +992,7 @@ static const struct ScriptCommand s_gs1_g4_s3_lives0_dlg2[] = { /* 0x813b1ac */ WAIT(1), { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, - ASK3(FALSE, /*default*/ -1, /* speaker */ 1, _(" Munchlax hungry...#W\nYou have food?")), + ASK3(FALSE, /*default*/ -1, /* speaker */ 1, _(" Munchlax hungry...{WAIT_PRESS}\nYou have food?")), CHOICE(/* label */ 1, _("Yes.")), CHOICE(/* label */ 2, _("No.")), LABEL(1), /* = 0x01 */ @@ -1008,19 +1008,19 @@ static const struct ScriptCommand s_gs1_g4_s3_lives0_dlg2[] = { /* 0x813b1ac */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0001, 0x00000045, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...Nnnnn?#W\nOh... Don't have food...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Munchlax feel sad...#W\nMunchlax go now.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...Nnnnn?{WAIT_PRESS}\nOh... Don't have food...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Munchlax feel sad...{WAIT_PRESS}\nMunchlax go now.") }, JUMP_SCRIPT(END_TALK), LABEL(3), /* = 0x03 */ UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 gave Munchlax\n#+one #CI$i0#R.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0} gave Munchlax\n{CENTER_ALIGN}one {COLOR GREEN_I}{MOVE_ITEM_0}{RESET}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0001, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Th-this #CI$i0#R!#W\nM-Munchlax big favorite!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Th-this {COLOR GREEN_I}{MOVE_ITEM_0}{RESET}!{WAIT_PRESS}\nM-Munchlax big favorite!") }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(516), @@ -1030,7 +1030,7 @@ static const struct ScriptCommand s_gs1_g4_s3_lives0_dlg2[] = { /* 0x813b1ac */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000044, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Nnnnnnnnn!#W\nDeeeeelicious!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Nnnnnnnnn!{WAIT_PRESS}\nDeeeeelicious!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000043, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Munchlax satisfied!") }, @@ -1038,7 +1038,7 @@ static const struct ScriptCommand s_gs1_g4_s3_lives0_dlg2[] = { /* 0x813b1ac */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............#W\nYou, good to Munchlax.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}\nYou, good to Munchlax.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Munchlax say thank you\nwith this.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -1092,7 +1092,7 @@ static const struct ScriptCommand s_gs1_g4_s4_lives0_dlg2[] = { /* 0x813b988 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000044, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............#W\nYou, good to Munchlax.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}\nYou, good to Munchlax.") }, JUMP_SCRIPT(END_TALK), }; @@ -1411,14 +1411,14 @@ static const struct ScriptCommand s_gs1_g5_s4_lives0_dlg0[] = { /* 0x813c7e4 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x93, 0x08, 0x000a, 0x0000007f, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - ASK3(FALSE, /*default*/ -1, /* speaker */ 2, _(" ............#WHey.#W\nThat belong to Munchlax.#W\nMunchlax want back.")), + ASK3(FALSE, /*default*/ -1, /* speaker */ 2, _(" ............{WAIT_PRESS}Hey.{WAIT_PRESS}\nThat belong to Munchlax.{WAIT_PRESS}\nMunchlax want back.")), CHOICE(/* label */ 1, _("Return it.")), CHOICE(/* label */ 2, _("Keep it.")), LABEL(1), /* = 0x01 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), FANFARE_PLAY2(333), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 returned\n#+the #CIApple#R to Munchlax.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0} returned\n{CENTER_ALIGN}the {COLOR GREEN_I}Apple{RESET} to Munchlax.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, @@ -1428,7 +1428,7 @@ static const struct ScriptCommand s_gs1_g5_s4_lives0_dlg0[] = { /* 0x813c7e4 */ { 0x2e, 0x15, 0x0002, 0x00000042, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Snivel...\nMunchlax feel all squishy inside...") }, { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#W\nYou honest and nice.\nMunchlax like.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}\nYou honest and nice.\nMunchlax like.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Munchlax say thank you\nwith this.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -1448,18 +1448,18 @@ static const struct ScriptCommand s_gs1_g5_s4_lives0_dlg0[] = { /* 0x813c7e4 */ { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x15, 0x0002, 0x00000045, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Nnnnnnnnnnnn!#W\nNnnnnnnnnnnnnnnnnnnnnnnnnnnnnn!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Nnnnnnnnnnnn!{WAIT_PRESS}\nNnnnnnnnnnnnnnnnnnnnnnnnnnnnnn!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................#W\nMunchlax sad...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................{WAIT_PRESS}\nMunchlax sad...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(20), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................#W\nMeanie...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................{WAIT_PRESS}\nMeanie...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -1548,7 +1548,7 @@ static const struct ScriptCommand s_gs1_g5_s5_lives0_dlg2[] = { /* 0x813d140 */ DEBUGINFO, { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............#W\nYou, good to Munchlax.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}\nYou, good to Munchlax.") }, JUMP_SCRIPT(END_TALK), }; @@ -1565,7 +1565,7 @@ static const struct ScriptCommand s_gs1_g5_s6_lives0_dlg2[] = { /* 0x813d1d0 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x2e, 0x15, 0x0001, 0x00000045, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ..................#W\nMeanie...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ..................{WAIT_PRESS}\nMeanie...") }, JUMP_SCRIPT(END_TALK), }; @@ -1626,36 +1626,36 @@ static const struct ScriptCommand s_gs1_g6_s0_lives0_dlg0[] = { /* 0x813d45c */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(30), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" That's the #C5Kecleon Shop#R.#W\nYou can buy and sell items there.")), - VARIANT_DEFAULT(_(" That's the #C5Kecleon Shop#R.#W\nYou can buy and sell items there.")), + VARIANT(/* == */ 1, _(" That's the {COLOR CYAN}Kecleon Shop{RESET}.{WAIT_PRESS}\nYou can buy and sell items there.")), + VARIANT_DEFAULT(_(" That's the {COLOR CYAN}Kecleon Shop{RESET}.{WAIT_PRESS}\nYou can buy and sell items there.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" That's #C5Felicity Bank#R.")), + VARIANT(/* == */ 1, _(" That's {COLOR CYAN}Felicity Bank{RESET}.")), VARIANT(/* == */ 1, _(" You can save your money\nthere.")), - VARIANT_DEFAULT(_(" That's #C5Felicity Bank#R.")), + VARIANT_DEFAULT(_(" That's {COLOR CYAN}Felicity Bank{RESET}.")), VARIANT_DEFAULT(_(" You can save your money\nthere.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" This is the\n#C5Gulpin Link Shop#R.#W\nGulpin will link moves for you.")), - VARIANT(/* == */ 1, _(" Hah?#W What's linking?#W\nWell, if you link moves...#W\nYou can use them at the same time.")), + VARIANT(/* == */ 1, _(" This is the\n{COLOR CYAN}Gulpin Link Shop{RESET}.{WAIT_PRESS}\nGulpin will link moves for you.")), + VARIANT(/* == */ 1, _(" Hah?{WAIT_PRESS} What's linking?{WAIT_PRESS}\nWell, if you link moves...{WAIT_PRESS}\nYou can use them at the same time.")), VARIANT(/* == */ 1, _(" If you need details, you'd\nbe better off asking Gulpin.")), - VARIANT(/* == */ 3, _(" This is the\n#C5Gulpin Link Shop#R.#W\nGulpin can link moves for you.")), - VARIANT(/* == */ 3, _(" Huh?#W What's linking?#W\nWell, if you link moves...#W\nYou can use them at the same time.")), + VARIANT(/* == */ 3, _(" This is the\n{COLOR CYAN}Gulpin Link Shop{RESET}.{WAIT_PRESS}\nGulpin can link moves for you.")), + VARIANT(/* == */ 3, _(" Huh?{WAIT_PRESS} What's linking?{WAIT_PRESS}\nWell, if you link moves...{WAIT_PRESS}\nYou can use them at the same time.")), VARIANT(/* == */ 3, _(" You should just ask Gulpin\nfor details.")), - VARIANT_DEFAULT(_(" This is the\n#C5Gulpin Link Shop#R.#W\nGulpin can link moves for you.")), - VARIANT_DEFAULT(_(" Huh?#W What's linking?#W\nWell, if you link moves...#W\nYou can use them at the same time.")), + VARIANT_DEFAULT(_(" This is the\n{COLOR CYAN}Gulpin Link Shop{RESET}.{WAIT_PRESS}\nGulpin can link moves for you.")), + VARIANT_DEFAULT(_(" Huh?{WAIT_PRESS} What's linking?{WAIT_PRESS}\nWell, if you link moves...{WAIT_PRESS}\nYou can use them at the same time.")), VARIANT_DEFAULT(_(" I think you should ask Gulpin\nif you want to know more.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" This is #C5Kangaskhan Storage#R.\nStore items here so they'll never be\nlost.")), + VARIANT(/* == */ 1, _(" This is {COLOR CYAN}Kangaskhan Storage{RESET}.\nStore items here so they'll never be\nlost.")), VARIANT(/* == */ 1, _(" If you have important\nitems, you should store them before you\nhead out to a dungeon.")), - VARIANT_DEFAULT(_(" This is #C5Kangaskhan Storage#R.\nIf you store items here, they'll never go\nmissing.")), + VARIANT_DEFAULT(_(" This is {COLOR CYAN}Kangaskhan Storage{RESET}.\nIf you store items here, they'll never go\nmissing.")), VARIANT_DEFAULT(_(" You should store important\nitems here before you go out on any\ndungeon adventure.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, @@ -1670,17 +1670,17 @@ static const struct ScriptCommand s_gs1_g6_s0_lives0_dlg0[] = { /* 0x813d45c */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Oh, yeah, there's also the\n#C5Pelipper Post Office#R.\nIt's straight ahead past here.")), - VARIANT_DEFAULT(_(" Oh, and there's also the\n#C5Pelipper Post Office#R.\nThat's up past here.")), + VARIANT(/* == */ 1, _(" Oh, yeah, there's also the\n{COLOR CYAN}Pelipper Post Office{RESET}.\nIt's straight ahead past here.")), + VARIANT_DEFAULT(_(" Oh, and there's also the\n{COLOR CYAN}Pelipper Post Office{RESET}.\nThat's up past here.")), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" I'm sure you can get\ninformation on rescue jobs there.")), - VARIANT(/* == */ 1, _(" So, let's start with a visit\nto the #C5Pelipper Post Office#R.")), + VARIANT(/* == */ 1, _(" So, let's start with a visit\nto the {COLOR CYAN}Pelipper Post Office{RESET}.")), VARIANT(/* == */ 3, _(" I think we can get rescue-\njob information there.")), - VARIANT(/* == */ 3, _(" So, how about we go to\nthe #C5Pelipper Post Office#R first?")), + VARIANT(/* == */ 3, _(" So, how about we go to\nthe {COLOR CYAN}Pelipper Post Office{RESET} first?")), VARIANT_DEFAULT(_(" I think we can get some\ninformation on rescue jobs.")), - VARIANT_DEFAULT(_(" Let's first go to the\n#C5Pelipper Post Office#R.")), + VARIANT_DEFAULT(_(" Let's first go to the\n{COLOR CYAN}Pelipper Post Office{RESET}.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -1810,8 +1810,8 @@ static const struct ScriptCommand s_gs1_g7_s0_lives7_dlg2[] = { /* 0x813e61c */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Pardon?\nOh, the #C5Pelipper Post Office#R?") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The #C5Pelipper Post Office#R\nwould be...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Pardon?\nOh, the {COLOR CYAN}Pelipper Post Office{RESET}?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The {COLOR CYAN}Pelipper Post Office{RESET}\nwould be...") }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Straight down this path.") }, @@ -1855,10 +1855,10 @@ static const struct ScriptCommand s_gs1_g7_s1_lives0_dlg0[] = { /* 0x813e880 */ { 0x93, 0x08, 0x000a, 0x00000004, 0x00000000, NULL }, WAIT(10), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" We haven't gone to the\n#C5Pelipper Post Office#R yet?")), - VARIANT(/* == */ 1, _(" You can go home after we\ngo to the #C5Pelipper Post Office#R.")), - VARIANT_DEFAULT(_(" We haven't gone to the\n#C5Pelipper Post Office#R yet.")), - VARIANT_DEFAULT(_(" Let's go to the #C5Pelipper\nPost Office#R at least.")), + VARIANT(/* == */ 1, _(" We haven't gone to the\n{COLOR CYAN}Pelipper Post Office{RESET} yet?")), + VARIANT(/* == */ 1, _(" You can go home after we\ngo to the {COLOR CYAN}Pelipper Post Office{RESET}.")), + VARIANT_DEFAULT(_(" We haven't gone to the\n{COLOR CYAN}Pelipper Post Office{RESET} yet.")), + VARIANT_DEFAULT(_(" Let's go to the {COLOR CYAN}Pelipper\nPost Office{RESET} at least.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, @@ -2124,12 +2124,12 @@ static const struct ScriptCommand s_gs1_g9_s0_lives0_dlg0[] = { /* 0x813f614 */ { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Friends are my treasures!\nWelcome to $n2 Club--a circle\nof friends! ") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Oh?#W\nIs this your first visit here?") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Oh, I get it!#W\nYou started a rescue team too, didn't you?") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You've come to the right\nplace!#W I sell Friend Areas to add\nmembers to your rescue team.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Friends are my treasures!\nWelcome to {NAME_2} Club--a circle\nof friends! ") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Oh?{WAIT_PRESS}\nIs this your first visit here?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Oh, I get it!{WAIT_PRESS}\nYou started a rescue team too, didn't you?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You've come to the right\nplace!{WAIT_PRESS} I sell Friend Areas to add\nmembers to your rescue team.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Since you're here for the\nvery first time, I'll give you two Friend\nAreas for free!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Let's do it!#W\nWigglytuff〜♪ Wigglytuff〜♪#W\nLet's be friends... Taaaaaaah!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Let's do it!{WAIT_PRESS}\nWigglytuff〜♪ Wigglytuff〜♪{WAIT_PRESS}\nLet's be friends... Taaaaaaah!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(603), { 0x28, 0x01, 0x0005, 0x00000002, 0x00808010, NULL }, @@ -2139,12 +2139,12 @@ static const struct ScriptCommand s_gs1_g9_s0_lives0_dlg0[] = { /* 0x813f614 */ { 0xe2, 0x00, 0x025b, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY(206), { 0x3b, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Congratulations!#W\nYou can go to the #CHWild Plains#R now.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You can also go to the\n#CHMist-Rise Forest#R.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Congratulations!{WAIT_PRESS}\nYou can go to the {COLOR GREEN_H}Wild Plains{RESET} now.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You can also go to the\n{COLOR GREEN_H}Mist-Rise Forest{RESET}.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Now you can recruit\nPokémon that live in these two Friend\nAreas.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" How do you recruit new\nmembers?#W Well, if you're fighting\nPokémon that live in a Friend Area...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" How do you recruit new\nmembers?{WAIT_PRESS} Well, if you're fighting\nPokémon that live in a Friend Area...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Sometimes, they will come\nto admire you as a friend.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" In that case, they may ask\nto join your team.#W\nJust keep trying!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" In that case, they may ask\nto join your team.{WAIT_PRESS}\nJust keep trying!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), SELECT_ENTITIES(-1, 1), @@ -2154,8 +2154,8 @@ static const struct ScriptCommand s_gs1_g9_s0_lives0_dlg0[] = { /* 0x813f614 */ { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0c, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" BZBZBZZT!#W\nIF YOU'RE GIVING FRIEND AREAS AWAY...") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" CAN YOU ALSO GIVE MY\nFRIENDS ACCESS TO THE #CHPOWER PLANT#R\nFRIEND AREA?") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" BZBZBZZT!{WAIT_PRESS}\nIF YOU'RE GIVING FRIEND AREAS AWAY...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" CAN YOU ALSO GIVE MY\nFRIENDS ACCESS TO THE {COLOR GREEN_H}POWER PLANT{RESET}\nFRIEND AREA?") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I ALSO WANT TO JOIN\nTHEIR RESCUE TEAM.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -2166,7 +2166,7 @@ static const struct ScriptCommand s_gs1_g9_s0_lives0_dlg0[] = { /* 0x813f614 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm giving it away today!#W\nWigglytuff〜♪ Wigglytuff〜♪#W\nLet's be friends... Taaaaaaah!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm giving it away today!{WAIT_PRESS}\nWigglytuff〜♪ Wigglytuff〜♪{WAIT_PRESS}\nLet's be friends... Taaaaaaah!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(603), { 0x28, 0x01, 0x0005, 0x00000002, 0x00808010, NULL }, @@ -2175,7 +2175,7 @@ static const struct ScriptCommand s_gs1_g9_s0_lives0_dlg0[] = { /* 0x813f614 */ { 0x27, 0x01, 0x0005, 0x00000002, 0x00808010, NULL }, { 0xe2, 0x00, 0x025b, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY(206), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Congratulations!#W\nYou can go to the #CHPower Plant#R now.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Congratulations!{WAIT_PRESS}\nYou can go to the {COLOR GREEN_H}Power Plant{RESET} now.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -2194,7 +2194,7 @@ static const struct ScriptCommand s_gs1_g9_s0_lives0_dlg0[] = { /* 0x813f614 */ { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, { 0x2e, 0x15, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" SORRY.#W\nI KNOW MY FRIEND TURNED DOWN YOUR\nOFFER TO JOIN YOUR TEAM YESTERDAY...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" SORRY.{WAIT_PRESS}\nI KNOW MY FRIEND TURNED DOWN YOUR\nOFFER TO JOIN YOUR TEAM YESTERDAY...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -2209,7 +2209,7 @@ static const struct ScriptCommand s_gs1_g9_s0_lives0_dlg0[] = { /* 0x813f614 */ { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I APOLOGIZE, BUT COULD\nYOU ALLOW MY FRIEND TO JOIN YOUR\nRESCUE TEAM?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, wow!#W\nDon't forget, we were the ones that asked\nyour friend to join us.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, wow!{WAIT_PRESS}\nDon't forget, we were the ones that asked\nyour friend to join us.") }, { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" So, yes, that'd be awesome!\nGlad to have your friend on board!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -2228,12 +2228,12 @@ static const struct ScriptCommand s_gs1_g9_s0_lives0_dlg0[] = { /* 0x813f614 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), FANFARE_PLAY(204), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n4 became a team member!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_4} became a team member!") }, { 0xe1, 0x00, 0x00cc, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x3b, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, - ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to $n4?")), + ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to {NAME_4}?")), CHOICE(/* label */ 0, _("*Yes.")), CHOICE(/* label */ 1, _("No.")), LABEL(0), /* = 0x00 */ @@ -2248,8 +2248,8 @@ static const struct ScriptCommand s_gs1_g9_s0_lives0_dlg0[] = { /* 0x813f614 */ { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I'LL BE RESTING UP IN THE\n#CHPOWER PLANT#R FRIEND AREA.") }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" IF YOU WANT ME ALONG\nFOR A RESCUE, COME GET ME AT THE\n#CHPOWER PLANT#R.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I'LL BE RESTING UP IN THE\n{COLOR GREEN_H}POWER PLANT{RESET} FRIEND AREA.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" IF YOU WANT ME ALONG\nFOR A RESCUE, COME GET ME AT THE\n{COLOR GREEN_H}POWER PLANT{RESET}.") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" OK! BZBZBZZ!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -2261,7 +2261,7 @@ static const struct ScriptCommand s_gs1_g9_s0_lives0_dlg0[] = { /* 0x813f614 */ { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You can go to your Friend\nAreas by taking the left path from your\nrescue team base.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There's a sign on the path\nto the left of your rescue team base,\nso you shouldn't have any trouble.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That's all the giveaways\ntoday!#W If you want more Friend Areas,\nyou'll have to buy them now.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That's all the giveaways\ntoday!{WAIT_PRESS} If you want more Friend Areas,\nyou'll have to buy them now.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, { 0x52, 0x00, 0x0000, 0x00001000, 0x00000000, NULL }, @@ -2458,7 +2458,7 @@ static const struct ScriptCommand s_gs1_g10_s0_lives2_dlg0[] = { /* 0x81412bc */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh? What's going on over\nthere?#W\nThere seems to be a commotion.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh? What's going on over\nthere?{WAIT_PRESS}\nThere seems to be a commotion.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, BGM_FADEOUT(120), { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, @@ -2495,7 +2495,7 @@ static const struct ScriptCommand s_gs1_g10_s0_lives2_dlg0[] = { /* 0x81412bc */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x05, 0x0004, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Huh? That scene there?") }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" $n2's begging for\na rescue mission, but not finding any luck.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" {NAME_2}'s begging for\na rescue mission, but not finding any luck.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(4), { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, @@ -2509,7 +2509,7 @@ static const struct ScriptCommand s_gs1_g10_s0_lives2_dlg0[] = { /* 0x81412bc */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x00, 0x0004, -0x00000002, 0x00000000, NULL }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" There, the one in the middle\nwith the pointy nose.") }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" He's a Pokémon named\n$m3.\nHe's got his own rescue team.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" He's a Pokémon named\n{POKEMON_3}.\nHe's got his own rescue team.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -2518,7 +2518,7 @@ static const struct ScriptCommand s_gs1_g10_s0_lives2_dlg0[] = { /* 0x81412bc */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x05, 0x0004, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" But his team's greedy.\nThey don't work unless they get paid\nroyally.") }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" $n2's been begging\nfor help, but...#W\nI feel sorry for that poor Pokémon.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" {NAME_2}'s been begging\nfor help, but...{WAIT_PRESS}\nI feel sorry for that poor Pokémon.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, @@ -2547,8 +2547,8 @@ static const struct ScriptCommand s_gs1_g10_s0_lives2_dlg0[] = { /* 0x81412bc */ { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh! Wh-what do you want?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Oh! It's $n5!") }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" That's $n5?!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Oh! It's {NAME_5}!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" That's {NAME_5}?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, @@ -2558,15 +2558,15 @@ static const struct ScriptCommand s_gs1_g10_s0_lives2_dlg0[] = { /* 0x81412bc */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0e, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Hey. Rather coldhearted,\naren't you?") }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" To save $n2's\nfriend, a strong wind is needed.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" To save {NAME_2}'s\nfriend, a strong wind is needed.") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Your leafy fans can whip up\npowerful winds.") }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" It's an easy matter for you.#W\nHelp that Pokémon out.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" It's an easy matter for you.{WAIT_PRESS}\nHelp that Pokémon out.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(4), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x10, 0x0003, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Grr...#W\nTch! OK, we'll do it.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Grr...{WAIT_PRESS}\nTch! OK, we'll do it.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -2577,7 +2577,7 @@ static const struct ScriptCommand s_gs1_g10_s0_lives2_dlg0[] = { /* 0x81412bc */ { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Wow...") }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" That $n3 agreed without\nany argument...") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" That {NAME_3} agreed without\nany argument...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), BGM_FADEIN(80, 7), @@ -2595,7 +2595,7 @@ static const struct ScriptCommand s_gs1_g10_s0_lives2_dlg0[] = { /* 0x81412bc */ { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x05, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" What? You don't know?!\nIt's $n5's team!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" What? You don't know?!\nIt's {NAME_5}'s team!") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" They're the most famous\nrescue team around these parts.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(4), @@ -2607,21 +2607,21 @@ static const struct ScriptCommand s_gs1_g10_s0_lives2_dlg0[] = { /* 0x81412bc */ { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x00, 0x0004, -0x00000002, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" That's $n6.#W\nHis Flamethrower can melt mountains!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" That's {NAME_6}.{WAIT_PRESS}\nHis Flamethrower can melt mountains!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(4), { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" That's $n7.#W\nHe takes great pride in his armored\nbody and amazing strength.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" That's {NAME_7}.{WAIT_PRESS}\nHe takes great pride in his armored\nbody and amazing strength.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(4), { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" And that's the leader,\n$n5.") }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" $n5 doesn't like\nphysical attacks.\nHe fights with his psychic powers.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" And that's the leader,\n{NAME_5}.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" {NAME_5} doesn't like\nphysical attacks.\nHe fights with his psychic powers.") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" He's endowed with an\namazing brain and an IQ of 5,000.") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Apparently, he's memorized\neverything that's happened in the world.") }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" $n5 does all the\ncommanding in the team.#W\nHe's clearly in charge.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" {NAME_5} does all the\ncommanding in the team.{WAIT_PRESS}\nHe's clearly in charge.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(16), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -2644,9 +2644,9 @@ static const struct ScriptCommand s_gs1_g10_s0_lives2_dlg0[] = { /* 0x81412bc */ { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000e, 0x00000000, 0x00000000, NULL }, WAIT(46), - { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("#C6{SPEECH_BUBBLE}#R: C-cool...") }, + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("{COLOR YELLOW}{SPEECH_BUBBLE}{RESET}: C-cool...") }, WAIT(60), - { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("#C6{SPEECH_BUBBLE}#R: I wouldn't expect less from a Gold\nRank rescue team.") }, + { 0x36, 0x00, -0x0001, 0x00000000, 0x00000000, _("{COLOR YELLOW}{SPEECH_BUBBLE}{RESET}: I wouldn't expect less from a Gold\nRank rescue team.") }, WAIT(40), { 0x91, 0x0a, 0x000b, 0x00000002, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -2680,7 +2680,7 @@ static const struct ScriptCommand s_gs1_g10_s0_lives2_dlg0[] = { /* 0x81412bc */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x0f, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" ......#W\nIt's fine. Nothing.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" ......{WAIT_PRESS}\nIt's fine. Nothing.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, WAIT(64), @@ -2707,11 +2707,11 @@ static const struct ScriptCommand s_gs1_g10_s0_lives2_dlg0[] = { /* 0x81412bc */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Whew, $n0...#W\nThat's what we've got to become.")), + VARIANT(/* == */ 1, _(" Whew, {NAME_0}...{WAIT_PRESS}\nThat's what we've got to become.")), VARIANT(/* == */ 1, _(" Let's get more members and\nmake our rescue team first-class!")), - VARIANT(/* == */ 3, _(" Whew, $n0!#W\nWe need to become like them!")), + VARIANT(/* == */ 3, _(" Whew, {NAME_0}!{WAIT_PRESS}\nWe need to become like them!")), VARIANT(/* == */ 3, _(" Let's recruit more members\nand make our rescue team first-class!")), - VARIANT_DEFAULT(_(" Whew, $n0!#W\nWe need to become like them!")), + VARIANT_DEFAULT(_(" Whew, {NAME_0}!{WAIT_PRESS}\nWe need to become like them!")), VARIANT_DEFAULT(_(" Let's recruit more members\nand make our rescue team first-class!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -3182,10 +3182,10 @@ static const struct ScriptCommand s_gs1_g11_s0_lives6_dlg2[] = { /* 0x8144320 */ WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Alakazam and his sidekicks\nwere sure cool before.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" That's how a real hero has\nto carry himself.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" By the way...#W\nApparently, it's been impossible for us to\nevolve lately.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" By the way...{WAIT_PRESS}\nApparently, it's been impossible for us to\nevolve lately.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You know how we Pokémon\nevolve if the conditions are right?") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But for some reason, we\nhaven't been able to evolve at all.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's rumored that the natural\ndisasters are to blame, but...#W\nI wonder what's going on.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's rumored that the natural\ndisasters are to blame, but...{WAIT_PRESS}\nI wonder what's going on.") }, JUMP_SCRIPT(END_TALK), }; @@ -3203,7 +3203,7 @@ static const struct ScriptCommand s_gs1_g11_s0_lives7_dlg2[] = { /* 0x81445b8 */ WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Did you know that a new\ntraining gym--I think they called it\na dojo--opened in town?") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You know how many rescue\nteams started up? To deal with all\nthe natural disasters?") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There was a group of\nconcerned Pokémon...#W\nThey wanted to support rescue teams.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There was a group of\nconcerned Pokémon...{WAIT_PRESS}\nThey wanted to support rescue teams.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" So they got together and\nbuilt the dojo.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You can find the dojo easily.") }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -3235,17 +3235,17 @@ static const struct ScriptCommand s_gs1_g11_s0_lives8_dlg2[] = { /* 0x8144938 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Alakazam's team has the\nGold Rank. Isn't that awesome?") }, - ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" You have a rescue team too,\ndon't you?#W\nWhat's your rank?")), + ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" You have a rescue team too,\ndon't you?{WAIT_PRESS}\nWhat's your rank?")), CHOICE(/* label */ 0, _("Nothing special.")), CHOICE(/* label */ 1, _("Gold Rank.")), LABEL(0), /* = 0x00 */ { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I guess that's true.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It might be rude to say it...#W\nbut you obviously look like you really are\nnothing special.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It might be rude to say it...{WAIT_PRESS}\nbut you obviously look like you really are\nnothing special.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It just goes to show how\nawesome Alakazam's team is!") }, JUMP_SCRIPT(END_TALK), LABEL(1), /* = 0x01 */ { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What?!\nYou're Gold Rank too?!") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ......#W\nI'm not falling for a lie like that.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ......{WAIT_PRESS}\nI'm not falling for a lie like that.") }, JUMP_SCRIPT(END_TALK), }; @@ -3415,7 +3415,7 @@ static const struct ScriptCommand s_gs1_g13_s0_lives6_dlg2[] = { /* 0x8145218 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We heard.#W\nShiftry hasn't returned?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We heard.{WAIT_PRESS}\nShiftry hasn't returned?") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wonder...\nDid Shiftry maybe just run off?") }, JUMP_SCRIPT(END_TALK), }; @@ -3528,9 +3528,9 @@ static const struct ScriptCommand s_gs1_g14_s0_lives7_dlg2[] = { /* 0x81457e4 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Is that right...\nShiftry was taken away to #CDMt. Thunder#R...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wonder what that place is\nlike?#W\nIt sounds rather horrible.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh? Me?#W\nI couldn't possibly go rescue him.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Is that right...\nShiftry was taken away to {COLOR YELLOW_D}Mt. Thunder{RESET}...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wonder what that place is\nlike?{WAIT_PRESS}\nIt sounds rather horrible.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh? Me?{WAIT_PRESS}\nI couldn't possibly go rescue him.") }, JUMP_SCRIPT(END_TALK), }; @@ -3687,7 +3687,7 @@ static const struct ScriptCommand s_gs1_g15_s0_lives6_dlg2[] = { /* 0x8146020 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x09, 0x0001, 0x0000004d, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Xatu?#W I wouldn't know.#W\nThere's really a Pokémon named that?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Xatu?{WAIT_PRESS} I wouldn't know.{WAIT_PRESS}\nThere's really a Pokémon named that?") }, JUMP_SCRIPT(END_TALK), }; @@ -3723,7 +3723,7 @@ static const struct ScriptCommand s_gs1_g15_s0_lives9_dlg2[] = { /* 0x8146288 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0, your team is\nfantastic!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0}, your team is\nfantastic!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's shocking to hear that\nyou've beaten Zapdos!") }, JUMP_SCRIPT(END_TALK), }; @@ -3830,8 +3830,8 @@ static const struct ScriptCommand s_gs1_g17_s0_lives0_dlg0[] = { /* 0x8146704 */ WAIT(30), { 0x93, 0x04, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hah?#W\nWhat are those guys talking about?")), - VARIANT_DEFAULT(_(" Huh?#W\nWhat are they chatting about?")), + VARIANT(/* == */ 1, _(" Hah?{WAIT_PRESS}\nWhat are those guys talking about?")), + VARIANT_DEFAULT(_(" Huh?{WAIT_PRESS}\nWhat are they chatting about?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, @@ -3846,7 +3846,7 @@ static const struct ScriptCommand s_gs1_g17_s0_lives0_dlg0[] = { /* 0x8146704 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x0f, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" But could it be true?#W\nI'm having a hard time believing it...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" But could it be true?{WAIT_PRESS}\nI'm having a hard time believing it...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -3863,7 +3863,7 @@ static const struct ScriptCommand s_gs1_g17_s0_lives0_dlg0[] = { /* 0x8146704 */ { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x10, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Well, you know the\n#C4$n6 legend#R?\nThat old story?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Well, you know the\n{COLOR GREEN}{NAME_6} legend{RESET}?\nThat old story?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -3871,7 +3871,7 @@ static const struct ScriptCommand s_gs1_g17_s0_lives0_dlg0[] = { /* 0x8146704 */ { 0x91, 0x08, 0x0001, 0x00000001, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The $n6 legend?#W\nWhat's that?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The {NAME_6} legend?{WAIT_PRESS}\nWhat's that?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -3894,16 +3894,16 @@ static const struct ScriptCommand s_gs1_g17_s0_lives0_dlg0[] = { /* 0x8146704 */ { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Personally, I don't believe\nin rumors of that sort.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If you want to know more\nabout the $n6 legend...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If you want to know more\nabout the {NAME_6} legend...") }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You should go see a\nPokémon named $n5.\nHe knows the story well.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You should go see a\nPokémon named {NAME_5}.\nHe knows the story well.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n5 is uh...#W\nYou know, in his pond.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" {NAME_5} is uh...{WAIT_PRESS}\nYou know, in his pond.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -4129,8 +4129,8 @@ static const struct ScriptCommand s_gs1_g19_s0_lives0_dlg0[] = { /* 0x8147af4 */ { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ...Listen, $n0.")), - VARIANT_DEFAULT(_(" ...Say, $n0.")), + VARIANT(/* == */ 1, _(" ...Listen, {NAME_0}.")), + VARIANT_DEFAULT(_(" ...Say, {NAME_0}.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, WAIT(10), @@ -4221,7 +4221,7 @@ static const struct ScriptCommand s_gs1_g20_s0_lives0_dlg0[] = { /* 0x8147f8c */ { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Maybe something's happened.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0, let's check\nit out!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0}, let's check\nit out!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(15), { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -4313,7 +4313,7 @@ static const struct ScriptCommand s_gs1_g21_s0_lives0_dlg0[] = { /* 0x81484d4 */ { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0005, 0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Let me tell you, I was\namazed!#W\nIt really was true!") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Let me tell you, I was\namazed!{WAIT_PRESS}\nIt really was true!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), MSG_VAR(2, PARTNER_TALK_KIND, 1), @@ -4328,7 +4328,7 @@ static const struct ScriptCommand s_gs1_g21_s0_lives0_dlg0[] = { /* 0x81484d4 */ { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" $n0, $n1.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" {NAME_0}, {NAME_1}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, @@ -4336,7 +4336,7 @@ static const struct ScriptCommand s_gs1_g21_s0_lives0_dlg0[] = { /* 0x81484d4 */ FANFARE_PLAY2(463), CALL_SCRIPT(NOTICE_FUNC), { 0x93, 0x05, 0x000a, 0x00000036, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, hi, $n3!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, hi, {NAME_3}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -4345,7 +4345,7 @@ static const struct ScriptCommand s_gs1_g21_s0_lives0_dlg0[] = { /* 0x81484d4 */ { 0x93, 0x0a, 0x000a, 0x00000036, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Even you came out,\n$n3?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Even you came out,\n{NAME_3}?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(4), { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -4354,15 +4354,15 @@ static const struct ScriptCommand s_gs1_g21_s0_lives0_dlg0[] = { /* 0x81484d4 */ { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0006, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Ssh!#W Quiet.") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Ssh!{WAIT_PRESS} Quiet.") }, { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" That guy there's telling us.\nKeep it down.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hah?#W\nWho's doing the talking?")), - VARIANT_DEFAULT(_(" Huh?#W Who's talking?")), + VARIANT(/* == */ 1, _(" Hah?{WAIT_PRESS}\nWho's doing the talking?")), + VARIANT_DEFAULT(_(" Huh?{WAIT_PRESS} Who's talking?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I-it's...") }, @@ -4390,13 +4390,13 @@ static const struct ScriptCommand s_gs1_g21_s0_lives0_dlg0[] = { /* 0x81484d4 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, CALL_SCRIPT(SHOCK_FUNC), { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Ge-$n2?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Ge-{NAME_2}?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), BGM_SWITCH(9), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...So I went up to the\n#C5Hill of the Ancients#R.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...So I went up to the\n{COLOR CYAN}Hill of the Ancients{RESET}.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And that's where I saw it!\nIt was shocking stuff, I tell you!\nKekeh!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -4404,11 +4404,11 @@ static const struct ScriptCommand s_gs1_g21_s0_lives0_dlg0[] = { /* 0x81484d4 */ { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Shocking stuff?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This certain Pokémon was\ngetting advice from $n7.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" This certain Pokémon was\ngetting advice from {NAME_7}.") }, { 0x2e, 0x15, 0x0002, 0x00000004, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That Pokémon...\nIt looks like an ordinary Pokémon...") }, { 0x2e, 0x15, 0x0002, 0x00000006, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But get this!#W\nIt was originally a human!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But get this!{WAIT_PRESS}\nIt was originally a human!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, @@ -4428,12 +4428,12 @@ static const struct ScriptCommand s_gs1_g21_s0_lives0_dlg0[] = { /* 0x81484d4 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(4), { 0x2e, 0x15, 0x0002, 0x00000004, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There's more.\n$n7 told the human...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There's more.\n{NAME_7} told the human...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That how the human became\na Pokémon has a lot to do with how\nthe world's balance is upset.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(4), { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Wait a second...#W\nThat's exactly like the Ninetales legend!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Wait a second...{WAIT_PRESS}\nThat's exactly like the Ninetales legend!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(4), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -4443,7 +4443,7 @@ static const struct ScriptCommand s_gs1_g21_s0_lives0_dlg0[] = { /* 0x81484d4 */ { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0002, 0x00000004, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You all know how there've\nbeen many natural disasters, correct?") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" According to $n7,\nthose disasters are caused by the world's\nbalance being upset.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" According to {NAME_7},\nthose disasters are caused by the world's\nbalance being upset.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And if the world's balance\nisn't restored soon...") }, { 0x2e, 0x15, 0x0002, 0x00000006, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The unthinkable will happen\nto the world! That's what Xatu said!\nKekeh!") }, @@ -4461,7 +4461,7 @@ static const struct ScriptCommand s_gs1_g21_s0_lives0_dlg0[] = { /* 0x81484d4 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x0c, 0x0005, 0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" The world...#W\nThe unthinkable's going to happen?") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" The world...{WAIT_PRESS}\nThe unthinkable's going to happen?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" What are we to do?!") }, @@ -4469,12 +4469,12 @@ static const struct ScriptCommand s_gs1_g21_s0_lives0_dlg0[] = { /* 0x81484d4 */ WAIT(10), { 0x2e, 0x15, 0x0001, 0x00000003, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" That Gengar...!#W\nHe's getting everyone worked up...")), - VARIANT_DEFAULT(_(" That Gengar...!#W\nHe's deliberately working everyone up...")), + VARIANT(/* == */ 1, _(" That Gengar...!{WAIT_PRESS}\nHe's getting everyone worked up...")), + VARIANT_DEFAULT(_(" That Gengar...!{WAIT_PRESS}\nHe's deliberately working everyone up...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Now, now, people.#W\nThere's no need to panic.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Now, now, people.{WAIT_PRESS}\nThere's no need to panic.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Why, I think there's a way\nwe can do something about this.\nKekeh!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), @@ -4508,7 +4508,7 @@ static const struct ScriptCommand s_gs1_g21_s0_lives0_dlg0[] = { /* 0x81484d4 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh!\nAnd that human is the rotten coward\nthat abandoned $n8, correct?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh!\nAnd that human is the rotten coward\nthat abandoned {NAME_8}, correct?") }, { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000004, 0x00000000, NULL }, @@ -4517,7 +4517,7 @@ static const struct ScriptCommand s_gs1_g21_s0_lives0_dlg0[] = { /* 0x81484d4 */ BGM_STOP, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Isn't that right,\n$n0?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Isn't that right,\n{NAME_0}?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(4), { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -4534,10 +4534,10 @@ static const struct ScriptCommand s_gs1_g21_s0_lives0_dlg0[] = { /* 0x81484d4 */ CLEAR_ARRAY(EVENT_LOCAL), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Wha...#W What?!#W\nIt... It can't be!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Wha...{WAIT_PRESS} What?!{WAIT_PRESS}\nIt... It can't be!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(4), - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Y-you...#W\nYou were that human?!") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Y-you...{WAIT_PRESS}\nYou were that human?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x03, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -4548,17 +4548,17 @@ static const struct ScriptCommand s_gs1_g21_s0_lives0_dlg0[] = { /* 0x81484d4 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" W-w-whoa...#W\nThis is, like...\nWe can explain...")), - VARIANT_DEFAULT(_(" W-w-wait...#W\nThis is, like...\nThere's a good explanation for...")), + VARIANT(/* == */ 1, _(" W-w-whoa...{WAIT_PRESS}\nThis is, like...\nWe can explain...")), + VARIANT_DEFAULT(_(" W-w-wait...{WAIT_PRESS}\nThis is, like...\nThere's a good explanation for...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(4), { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" We're not asking you.\nWe're asking $n0!") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" We're not asking you.\nWe're asking {NAME_0}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Hey! $n0!\nSo what is it?!") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Hey! {NAME_0}!\nSo what is it?!") }, { 0x2e, 0x15, 0x0006, -0x00000002, 0x00000000, NULL }, ASK3(FALSE, /*default*/ -1, /* speaker */ 6, _(" Are you really the human\nthat was in the legend?")), CHOICE(/* label */ 35, _("..................")), @@ -4570,16 +4570,16 @@ static const struct ScriptCommand s_gs1_g21_s0_lives0_dlg0[] = { /* 0x81484d4 */ WAIT(30), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0}...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x05, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" $n0...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" {NAME_0}...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0002, 0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekekekekekeh!\nLooks like you have nothing to say\nin your defense, $n0!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekekekekekeh!\nLooks like you have nothing to say\nin your defense, {NAME_0}!") }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(15), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -4597,7 +4597,7 @@ static const struct ScriptCommand s_gs1_g21_s0_lives0_dlg0[] = { /* 0x81484d4 */ { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Let's get rid of\n$n0 and regain peace.\nKekekekekeh!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Let's get rid of\n{NAME_0} and regain peace.\nKekekekekeh!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, @@ -4615,9 +4615,9 @@ static const struct ScriptCommand s_gs1_g21_s0_lives0_dlg0[] = { /* 0x81484d4 */ { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" ...Wh-what?")), - VARIANT(/* == */ 1, _(" E-everyone, hold up.\nWhat's with you?#W\nWhat are you going to do?")), + VARIANT(/* == */ 1, _(" E-everyone, hold up.\nWhat's with you?{WAIT_PRESS}\nWhat are you going to do?")), VARIANT_DEFAULT(_(" ...Wh-what?")), - VARIANT_DEFAULT(_(" E-everyone, what's gotten\ninto you?#W\nWhat are you going to do?")), + VARIANT_DEFAULT(_(" E-everyone, what's gotten\ninto you?{WAIT_PRESS}\nWhat are you going to do?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x05, 0x0002, 0x00000004, 0x00000000, NULL }, @@ -4628,7 +4628,7 @@ static const struct ScriptCommand s_gs1_g21_s0_lives0_dlg0[] = { /* 0x81484d4 */ { 0x62, 0x00, 0x004c, -0x00000008, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" $n0, forgive me!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" {NAME_0}, forgive me!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, WAIT(20), @@ -4652,7 +4652,7 @@ static const struct ScriptCommand s_gs1_g21_s0_lives0_dlg0[] = { /* 0x81484d4 */ { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Waaaaah!#W\n$n0, run!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Waaaaah!{WAIT_PRESS}\n{NAME_0}, run!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe5, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x93, 0x02, 0x000a, 0x00000022, 0x00000000, NULL }, @@ -5603,7 +5603,7 @@ static const struct ScriptCommand s_gs1_g23_s0_station_sref_script[] = { /* 0x81 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(1), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+Meanwhile, back in\n#+Pokémon Square...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Meanwhile, back in\n{CENTER_ALIGN}Pokémon Square...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -5645,7 +5645,7 @@ static const struct ScriptCommand s_gs1_g23_s0_lives0_dlg0[] = { /* 0x814dc14 */ { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh!\nYou lot!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Why aren't you out there\nhunting down $n0's team?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Why aren't you out there\nhunting down {NAME_0}'s team?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, @@ -5661,7 +5661,7 @@ static const struct ScriptCommand s_gs1_g23_s0_lives0_dlg0[] = { /* 0x814dc14 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(4), { 0x2e, 0x03, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" They say $n0's\nteam has gone way far out there.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" They say {NAME_0}'s\nteam has gone way far out there.") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" If we went, the best we\ncould hope for is maybe the Lapis Cave.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(4), @@ -5677,8 +5677,8 @@ static const struct ScriptCommand s_gs1_g23_s0_lives0_dlg0[] = { /* 0x814dc14 */ { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I joined the chase...") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" But they fled into Mt. Blaze.") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" For the life of me, I can't\ngo in there.\nAnd that's where I lost their trail.") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I'm a Grass type, see.#W\nFire doesn't agree with me at all.") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I don't know what became\nof $n0's team after that.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I'm a Grass type, see.{WAIT_PRESS}\nFire doesn't agree with me at all.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I don't know what became\nof {NAME_0}'s team after that.") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...But those fugitives...\nTo think they would risk Mt. Blaze...") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" They've grown up tough!\nI can't keep up!") }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -5701,7 +5701,7 @@ static const struct ScriptCommand s_gs1_g23_s0_lives0_dlg0[] = { /* 0x814dc14 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We're out of that picture.\nKekeh!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Our role is to receive word\nabout $n0's demise.\nKekekekekeh!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Our role is to receive word\nabout {NAME_0}'s demise.\nKekekekekeh!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(4), { 0x2e, 0x15, 0x0004, 0x00000000, 0x00000000, NULL }, @@ -5720,24 +5720,24 @@ static const struct ScriptCommand s_gs1_g23_s0_lives0_dlg0[] = { /* 0x814dc14 */ { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n7, what's\nthe word?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" {NAME_7}, what's\nthe word?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0c, 0x0007, 0x00000042, 0x00000000, NULL }, - { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" $n0...\n$n0 is...") }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" {NAME_0}...\n{NAME_0} is...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(4), FANFARE_PLAY2(465), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh! Finally!\nWe're finally rid of $n0!\nKekeh!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh! Finally!\nWe're finally rid of {NAME_0}!\nKekeh!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0007, 0x00000045, 0x00000000, NULL }, - { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" No!#W\nIt's the opposite!") }, - { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" $n0 is back!") }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" No!{WAIT_PRESS}\nIt's the opposite!") }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" {NAME_0} is back!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(463), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -5773,7 +5773,7 @@ static const struct ScriptCommand s_gs1_g23_s0_lives0_dlg0[] = { /* 0x814dc14 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x05, 0x0006, 0x00000042, 0x00000000, NULL }, { 0x2f, 0x00, 0x0006, -0x00000002, 0x00000000, NULL }, - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" ...$n0!") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" ...{NAME_0}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(4), { 0x2e, 0x03, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -5799,19 +5799,19 @@ static const struct ScriptCommand s_gs1_g23_s0_lives0_dlg0[] = { /* 0x814dc14 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" It's good to be back in the\nsquare again, $n0.")), - VARIANT_DEFAULT(_(" It feels kind of nostalgic\nto be back in the square, $n0.")), + VARIANT(/* == */ 1, _(" It's good to be back in the\nsquare again, {NAME_0}.")), + VARIANT_DEFAULT(_(" It feels kind of nostalgic\nto be back in the square, {NAME_0}.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hey, $n1!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hey, {NAME_1}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000003, 0x00000000, NULL }, { 0x93, 0x01, 0x000b, 0x0000005b, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hm! Oh, it's you,\n$n2.\nIt's been a while.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hm! Oh, it's you,\n{NAME_2}.\nIt's been a while.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" (Kekeh! What's with that\nsmug confidence?)") }, @@ -5822,12 +5822,12 @@ static const struct ScriptCommand s_gs1_g23_s0_lives0_dlg0[] = { /* 0x814dc14 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n2!#W\nYou spewed all sorts of trumped up\ngarbage, didn't you?!")), - VARIANT(/* == */ 1, _(" $n0 had nothing to\ndo with it!")), - VARIANT(/* == */ 1, _(" $n0 was innocent!")), - VARIANT_DEFAULT(_(" $n2!#W\nEverything you said was completely\nwrong!")), - VARIANT_DEFAULT(_(" $n0 had nothing to\ndo with it!")), - VARIANT_DEFAULT(_(" $n0 was innocent!")), + VARIANT(/* == */ 1, _(" {NAME_2}!{WAIT_PRESS}\nYou spewed all sorts of trumped up\ngarbage, didn't you?!")), + VARIANT(/* == */ 1, _(" {NAME_0} had nothing to\ndo with it!")), + VARIANT(/* == */ 1, _(" {NAME_0} was innocent!")), + VARIANT_DEFAULT(_(" {NAME_2}!{WAIT_PRESS}\nEverything you said was completely\nwrong!")), + VARIANT_DEFAULT(_(" {NAME_0} had nothing to\ndo with it!")), + VARIANT_DEFAULT(_(" {NAME_0} was innocent!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(463), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -5850,10 +5850,10 @@ static const struct ScriptCommand s_gs1_g23_s0_lives0_dlg0[] = { /* 0x814dc14 */ { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" You bet.\nWe met Ninetales and found out.")), - VARIANT(/* == */ 1, _(" $n0 isn't the human\nfrom that legend.")), + VARIANT(/* == */ 1, _(" {NAME_0} isn't the human\nfrom that legend.")), VARIANT(/* == */ 1, _(" We came back when we\nfound that out.")), VARIANT_DEFAULT(_(" Yup.\nWe met Ninetales and asked.")), - VARIANT_DEFAULT(_(" $n0 isn't the human\nfrom the legend.")), + VARIANT_DEFAULT(_(" {NAME_0} isn't the human\nfrom the legend.")), VARIANT_DEFAULT(_(" We're back because we\ndiscovered the truth.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -5871,7 +5871,7 @@ static const struct ScriptCommand s_gs1_g23_s0_lives0_dlg0[] = { /* 0x814dc14 */ { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh! W-wait a second!#W\nYou can't be trusted yet.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekeh! W-wait a second!{WAIT_PRESS}\nYou can't be trusted yet.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If you're going to make that\nclaim, let's see some proof.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, @@ -5891,7 +5891,7 @@ static const struct ScriptCommand s_gs1_g23_s0_lives0_dlg0[] = { /* 0x814dc14 */ { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Let's see some proof!\nCome on, out with it!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Proof...#W\nWe don't have any proof...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Proof...{WAIT_PRESS}\nWe don't have any proof...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(470), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -5900,13 +5900,13 @@ static const struct ScriptCommand s_gs1_g23_s0_lives0_dlg0[] = { /* 0x814dc14 */ { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekekekekekeh!#W\nIt's too bad you don't have proof!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Kekekekekekeh!{WAIT_PRESS}\nIt's too bad you don't have proof!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You came back for us so\nwe could get rid of you easier!\nHow conveniently foolish! Kekekeh!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Now, fellow Pokémon.#W\nHere's your chance to get rid of\n$n0! Kekekekekeh!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Now, fellow Pokémon.{WAIT_PRESS}\nHere's your chance to get rid of\n{NAME_0}! Kekekekekeh!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(90), FANFARE_PLAY2(468), @@ -5915,14 +5915,14 @@ static const struct ScriptCommand s_gs1_g23_s0_lives0_dlg0[] = { /* 0x814dc14 */ { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, WAIT(180), { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............#WKekeh?!#W\nWhat's wrong, everyone?\nDon't you want to be rid of $n0?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}Kekeh?!{WAIT_PRESS}\nWhat's wrong, everyone?\nDon't you want to be rid of {NAME_0}?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000b, 0x00000001, 0x00000000, NULL }, { 0x2e, 0x02, 0x0006, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" I...#W\nI always believed in $n0!") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" I...{WAIT_PRESS}\nI always believed in {NAME_0}!") }, { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" You don't fool me!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -5947,9 +5947,9 @@ static const struct ScriptCommand s_gs1_g23_s0_lives0_dlg0[] = { /* 0x814dc14 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0003, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...I...\nI'm out.") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I was saved by\n$n0's team before.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I was saved by\n{NAME_0}'s team before.") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I joined the chase with a\nheavy heart because of your urging...") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" But I simply can't think\nof $n0 being bad in any way.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" But I simply can't think\nof {NAME_0} being bad in any way.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(455), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -5964,7 +5964,7 @@ static const struct ScriptCommand s_gs1_g23_s0_lives0_dlg0[] = { /* 0x814dc14 */ { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0004, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I've heard enough too!\nI believe $n0!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I've heard enough too!\nI believe {NAME_0}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -6014,7 +6014,7 @@ static const struct ScriptCommand s_gs1_g23_s0_lives0_dlg0[] = { /* 0x814dc14 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(4), { 0x2e, 0x0c, 0x0007, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" ......#W\nIt looks like a newspaper...\nDoesn't it?") }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" ......{WAIT_PRESS}\nIt looks like a newspaper...\nDoesn't it?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -6027,12 +6027,12 @@ static const struct ScriptCommand s_gs1_g23_s0_lives0_dlg0[] = { /* 0x814dc14 */ { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+\n#+= EXTRA =") }, - { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+ \n#+$n0 Innocent!") }, - { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 met with Ninetales under\n#+the watchful eye of Alakazam...") }, - { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+...And proved that it had nothing to\n#+do with the human in the legend.") }, - { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+As a result, Gengar's claims were\n#+found to be malicious lies.") }, - { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+-End-") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}\n{CENTER_ALIGN}= EXTRA =") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN} \n{CENTER_ALIGN}{NAME_0} Innocent!") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0} met with Ninetales under\n{CENTER_ALIGN}the watchful eye of Alakazam...") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}...And proved that it had nothing to\n{CENTER_ALIGN}do with the human in the legend.") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}As a result, Gengar's claims were\n{CENTER_ALIGN}found to be malicious lies.") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}-End-") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(470), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -6088,11 +6088,11 @@ static const struct ScriptCommand s_gs1_g23_s0_lives0_dlg0[] = { /* 0x814dc14 */ { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Welcome back!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000009, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yup! It's good to be back!#W\nWe're back like we promised.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yup! It's good to be back!{WAIT_PRESS}\nWe're back like we promised.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0006, 0x00000042, 0x00000000, NULL }, { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" ...Sniffle...") }, - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" I'm so glad...#W\n$n0 isn't suspected anymore...") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" I'm so glad...{WAIT_PRESS}\n{NAME_0} isn't suspected anymore...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yup, I'm glad too.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We won't have to keep\nrunning from everyone anymore.") }, @@ -6102,12 +6102,12 @@ static const struct ScriptCommand s_gs1_g23_s0_lives0_dlg0[] = { /* 0x814dc14 */ { 0x93, 0x04, 0x000b, 0x00000022, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" All right, $n0.")), + VARIANT(/* == */ 1, _(" All right, {NAME_0}.")), VARIANT(/* == */ 1, _(" We're both worn out.\nI'm going to get some sleep.")), - VARIANT(/* == */ 1, _(" Our rescue team is back\nin business tomorrow!#W\nLet's give it our best!")), - VARIANT_DEFAULT(_(" $n0.")), + VARIANT(/* == */ 1, _(" Our rescue team is back\nin business tomorrow!{WAIT_PRESS}\nLet's give it our best!")), + VARIANT_DEFAULT(_(" {NAME_0}.")), VARIANT_DEFAULT(_(" We're both exhausted.\nI'm going to get some sleep.")), - VARIANT_DEFAULT(_(" Our rescue team gets\nrevived tomorrow!#W\nLet's try to do our best!")), + VARIANT_DEFAULT(_(" Our rescue team gets\nrevived tomorrow!{WAIT_PRESS}\nLet's try to do our best!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -6757,9 +6757,9 @@ static const struct ScriptCommand s_gs1_g24_s0_lives0_dlg2[] = { /* 0x8152c74 */ JUMPIF_ARRAY(EVENT_M01E09A_2N, 0, /* to label */ 0), SET_ARRAYVAL(EVENT_M01E09A_2N, 0, 1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm so sorry.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I was fully convinced of\nyour guilt, $n0.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I was fully convinced of\nyour guilt, {NAME_0}.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But I am glad to hear\nyou are free from that cloud of\nsuspicion〜♪") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll never give you my\nbusiness again!#W\nI hope you won't say that.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll never give you my\nbusiness again!{WAIT_PRESS}\nI hope you won't say that.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -6787,7 +6787,7 @@ static const struct ScriptCommand s_gs1_g24_s0_lives2_dlg2[] = { /* 0x8152edc */ WAIT(1), JUMPIF_ARRAY(EVENT_M01E09A_2N, 2, /* to label */ 0), SET_ARRAYVAL(EVENT_M01E09A_2N, 2, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I do apologize.#W\nHow could one run a bank without\ntrusting clients?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I do apologize.{WAIT_PRESS}\nHow could one run a bank without\ntrusting clients?") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I promise to satisfy all\nyour banking needs from now on.\nI hope you'll stay.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ @@ -6834,7 +6834,7 @@ static const struct ScriptCommand s_gs1_g24_s0_lives5_dlg2[] = { /* 0x8153334 */ WAIT(1), JUMPIF_ARRAY(EVENT_M01E09A_2N, 5, /* to label */ 0), SET_ARRAYVAL(EVENT_M01E09A_2N, 5, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I believed in you,\n$n0!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I believed in you,\n{NAME_0}!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Because you're my friend!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ @@ -6854,7 +6854,7 @@ static const struct ScriptCommand s_gs1_g24_s0_lives6_dlg2[] = { /* 0x8153470 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We got conned by Gengar...#W\nI'm sorry.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We got conned by Gengar...{WAIT_PRESS}\nI'm sorry.") }, JUMP_SCRIPT(END_TALK), }; @@ -6870,7 +6870,7 @@ static const struct ScriptCommand s_gs1_g24_s0_lives7_dlg2[] = { /* 0x815353c */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm truly sorry for what\nhappened.#W\nSorry for suspecting you.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm truly sorry for what\nhappened.{WAIT_PRESS}\nSorry for suspecting you.") }, JUMP_SCRIPT(END_TALK), }; @@ -6887,8 +6887,8 @@ static const struct ScriptCommand s_gs1_g24_s0_lives8_dlg2[] = { /* 0x8153620 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...So, what became of\nAlakazam's team?\nDid they head underground?") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Groudon...#W\nThe mythical Pokémon...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It is rather worrying...#W\nBut I suppose it is Alakazam's team.\nThey should be fine.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Groudon...{WAIT_PRESS}\nThe mythical Pokémon...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It is rather worrying...{WAIT_PRESS}\nBut I suppose it is Alakazam's team.\nThey should be fine.") }, JUMP_SCRIPT(END_TALK), }; @@ -6919,16 +6919,16 @@ static const struct ScriptCommand s_gs1_g24_s1_lives0_dlg0[] = { /* 0x8153894 */ { 0x2e, 0x0c, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I am so sorry!") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I was convinced that\n$n0 had to be the one.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I was convinced that\n{NAME_0} had to be the one.") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I'm very ashamed that I\ntreated a valuable customer with such\ndisdain and suspicion...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It isn't just you, my brother.#W\nI am guilty of the same.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It isn't just you, my brother.{WAIT_PRESS}\nI am guilty of the same.") }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" B-Brother...#W\nSniffle... My brother...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" B-Brother...{WAIT_PRESS}\nSniffle... My brother...") }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -6969,9 +6969,9 @@ static const struct ScriptCommand s_gs1_g24_s1_lives2_dlg2[] = { /* 0x8153cd4 */ JUMPIF_ARRAY(EVENT_M01E09A_2N, 0, /* to label */ 0), SET_ARRAYVAL(EVENT_M01E09A_2N, 0, 1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm so sorry.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I was fully convinced of\nyour guilt, $n0.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I was fully convinced of\nyour guilt, {NAME_0}.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But I am glad to hear\nyou are free from that cloud of\nsuspicion〜♪") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll never give you my\nbusiness again!#W\nI hope you won't say that.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll never give you my\nbusiness again!{WAIT_PRESS}\nI hope you won't say that.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -7116,7 +7116,7 @@ static const struct ScriptCommand s_gs1_g25_s0_lives8_dlg2[] = { /* 0x81543dc */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What's that?\nHas Alakazam's team returned?") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm not sure...#W\nI haven't seen them around the square.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm not sure...{WAIT_PRESS}\nI haven't seen them around the square.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I don't think Alakazam's\nteam has come back.") }, JUMP_SCRIPT(END_TALK), }; @@ -7190,7 +7190,7 @@ static const struct ScriptCommand s_gs1_g26_s0_lives0_dlg0[] = { /* 0x8154794 */ { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Looks like they sent out\nto a lot of rescue teams for help.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I've seen some pretty\nfamous leaders from faraway places.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That $n3...\nI wonder what he's planning to do with\nall these rescue teams?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That {NAME_3}...\nI wonder what he's planning to do with\nall these rescue teams?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -7205,13 +7205,13 @@ static const struct ScriptCommand s_gs1_g26_s0_lives0_dlg0[] = { /* 0x8154794 */ { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Can I get everyone's\nattention here?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I, uh...#W\nIt's not my style to get up in front of\neveryone like this, and...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I, uh...{WAIT_PRESS}\nIt's not my style to get up in front of\neveryone like this, and...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...Sorry.\nThis isn't the time for that!") }, BGM_SWITCH(10), { 0x2e, 0x15, 0x0003, 0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" There's big trouble!#W\n$n8's team went underground...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" There's big trouble!{WAIT_PRESS}\n{NAME_8}'s team went underground...") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" But they haven't returned!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), @@ -7227,24 +7227,24 @@ static const struct ScriptCommand s_gs1_g26_s0_lives0_dlg0[] = { /* 0x8154794 */ WAIT(10), { 0x2e, 0x15, 0x0003, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Yes, unfortunately.") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" $n8 led his team\nunderground to quell $n9...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" {NAME_8} led his team\nunderground to quell {NAME_9}...") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" And that's it.\nWe haven't heard anything from them.") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" To be honest...#W\nWe have no idea what became of them.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" To be honest...{WAIT_PRESS}\nWe have no idea what became of them.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, WAIT(90), { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" No idea?#W\nHow is that possible?!#W\nThis is $n8 you're talking about?") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" No idea?{WAIT_PRESS}\nHow is that possible?!{WAIT_PRESS}\nThis is {NAME_8} you're talking about?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" But they haven't come back.\nThat's for real!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" That's right...\nAnd it sounds as if $n9 is out of\nour league...") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" That's right...\nAnd it sounds as if {NAME_9} is out of\nour league...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" What? It's that tough?\nThis Pokémon named $n9?") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" What? It's that tough?\nThis Pokémon named {NAME_9}?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x91, 0x04, 0x000a, 0x00000001, 0x00000000, NULL }, @@ -7255,7 +7255,7 @@ static const struct ScriptCommand s_gs1_g26_s0_lives0_dlg0[] = { /* 0x8154794 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" There's magma flowing everywhere\nunderground.#W\nI'd burn up if I went anywhere like that!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" There's magma flowing everywhere\nunderground.{WAIT_PRESS}\nI'd burn up if I went anywhere like that!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Quiet, please! Be quiet!") }, @@ -7285,8 +7285,8 @@ static const struct ScriptCommand s_gs1_g26_s0_lives0_dlg0[] = { /* 0x8154794 */ { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey, $n0.\nThis is some chance. Let's go for it.")), - VARIANT_DEFAULT(_(" Say, $n0.\nThis is a great opportunity. Let's go.")), + VARIANT(/* == */ 1, _(" Hey, {NAME_0}.\nThis is some chance. Let's go for it.")), + VARIANT_DEFAULT(_(" Say, {NAME_0}.\nThis is a great opportunity. Let's go.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -7337,10 +7337,10 @@ static const struct ScriptCommand s_gs1_g26_s0_lives0_dlg0[] = { /* 0x8154794 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" It's B-$n4!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" It's B-{NAME_4}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" You mean...\n#C5Team Hydro#R's roughneck $n4?!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" You mean...\n{COLOR CYAN}Team Hydro{RESET}'s roughneck {NAME_4}?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Those waterspouts on his back can\nrocket water so fast that it punches\nthrough thick iron plates!") }, @@ -7352,9 +7352,9 @@ static const struct ScriptCommand s_gs1_g26_s0_lives0_dlg0[] = { /* 0x8154794 */ WAIT(30), { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, { 0x2f, 0x00, 0x0004, 0x00000000, 0x00000001, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" It's rumored $n9\nis a Ground type.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" It's rumored {NAME_9}\nis a Ground type.") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I am a Water type.\nStrong against the Ground type.") }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" My Hydro Pump will put\n$n9 down in one shot.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" My Hydro Pump will put\n{NAME_9} down in one shot.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I'll join the party too.") }, @@ -7365,13 +7365,13 @@ static const struct ScriptCommand s_gs1_g26_s0_lives0_dlg0[] = { /* 0x8154794 */ { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, { 0x93, 0x04, 0x000a, 0x00000069, 0x00000000, NULL }, WAIT(60), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Woohoo! It's $n5!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Woohoo! It's {NAME_5}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" She's #C5Team Constrictor#R's leader.") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" She's {COLOR CYAN}Team Constrictor{RESET}'s leader.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" She's known for persistent and\nclingy attacks.#W She ensnares foes with\nher tentacles, then head-butts them!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" She's known for persistent and\nclingy attacks.{WAIT_PRESS} She ensnares foes with\nher tentacles, then head-butts them!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" She'd be nasty to face in any battle\nof endurance.") }, @@ -7394,11 +7394,11 @@ static const struct ScriptCommand s_gs1_g26_s0_lives0_dlg0[] = { /* 0x8154794 */ { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, { 0x93, 0x04, 0x000a, 0x0000006a, 0x00000000, NULL }, WAIT(60), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Wow! $n6!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Wow! {NAME_6}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" He's the most brutal out of #C5Team\nRumblerock#R!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" He's the most brutal out of {COLOR CYAN}Team\nRumblerock{RESET}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" His body is rock hard.\nHe's supposed to be able to withstand\nhuge explosions without taking damage.") }, @@ -7409,7 +7409,7 @@ static const struct ScriptCommand s_gs1_g26_s0_lives0_dlg0[] = { /* 0x8154794 */ WAIT(30), { 0x2e, 0x03, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2f, 0x00, 0x0006, 0x00000000, 0x00000001, NULL }, - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" If $n9's awakened\nunderground, that suits me fine.") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" If {NAME_9}'s awakened\nunderground, that suits me fine.") }, { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" I'll use my Rock Throw to\nkeep it buried underground.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), @@ -7422,7 +7422,7 @@ static const struct ScriptCommand s_gs1_g26_s0_lives0_dlg0[] = { /* 0x8154794 */ WAIT(30), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh, $n4!\n$n5! And $n6!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh, {NAME_4}!\n{NAME_5}! And {NAME_6}!") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" No one could complain\nabout your selection.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), @@ -7462,7 +7462,7 @@ static const struct ScriptCommand s_gs1_g26_s0_lives0_dlg0[] = { /* 0x8154794 */ { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Win it for us!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Save $n8's team!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Save {NAME_8}'s team!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, @@ -7480,8 +7480,8 @@ static const struct ScriptCommand s_gs1_g26_s0_lives0_dlg0[] = { /* 0x8154794 */ { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" OK...\nI guess we can't say anything,\n$n0.")), - VARIANT_DEFAULT(_(" Hmmm...\nIt can't be helped, $n0.")), + VARIANT(/* == */ 1, _(" OK...\nI guess we can't say anything,\n{NAME_0}.")), + VARIANT_DEFAULT(_(" Hmmm...\nIt can't be helped, {NAME_0}.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, @@ -8566,7 +8566,7 @@ static const struct ScriptCommand s_gs1_g27_s0_lives6_dlg2[] = { /* 0x815a520 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You bet I'm worried about\nAlakazam's team...#W\nBut Blastoise and company are tough.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You bet I'm worried about\nAlakazam's team...{WAIT_PRESS}\nBut Blastoise and company are tough.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Don't you worry now.\nThey'll get the job done.") }, JUMP_SCRIPT(END_TALK), }; @@ -8583,7 +8583,7 @@ static const struct ScriptCommand s_gs1_g27_s0_lives7_dlg2[] = { /* 0x815a660 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There have been so many\nearthquakes...#W\nI can't get a decent night's sleep!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There have been so many\nearthquakes...{WAIT_PRESS}\nI can't get a decent night's sleep!") }, JUMP_SCRIPT(END_TALK), }; @@ -8609,7 +8609,7 @@ static const struct ScriptCommand s_gs1_g27_s0_lives9_dlg2[] = { /* 0x815a810 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You know how we've had\nso many earthquakes lately?") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Are they signs that\nsomething a lot worse is coming?#W\nI shudder to think!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Are they signs that\nsomething a lot worse is coming?{WAIT_PRESS}\nI shudder to think!") }, JUMP_SCRIPT(END_TALK), }; @@ -8664,15 +8664,15 @@ static const struct ScriptCommand s_gs1_g28_s0_lives0_dlg0[] = { /* 0x815aae0 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x93, 0x04, 0x000a, 0x0000004d, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey, $n2!")), + VARIANT(/* == */ 1, _(" Hey, {NAME_2}!")), VARIANT(/* == */ 1, _(" What's up here?")), - VARIANT_DEFAULT(_(" Oh! $n2!")), + VARIANT_DEFAULT(_(" Oh! {NAME_2}!")), VARIANT_DEFAULT(_(" What's going on here?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hey, $n1.\nW-well...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hey, {NAME_1}.\nW-well...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -8689,20 +8689,20 @@ static const struct ScriptCommand s_gs1_g28_s0_lives0_dlg0[] = { /* 0x815aae0 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, BGM_SWITCH(9), { 0x2e, 0x0e, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Look!\nIt's $n5!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Look!\nIt's {NAME_5}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n3!#W\nWhat's going on here?!")), - VARIANT_DEFAULT(_(" $n3!#W\nWhat happened here?!")), + VARIANT(/* == */ 1, _(" {NAME_3}!{WAIT_PRESS}\nWhat's going on here?!")), + VARIANT_DEFAULT(_(" {NAME_3}!{WAIT_PRESS}\nWhat happened here?!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, { 0x2f, 0x00, 0x0003, 0x00000000, -0x00000001, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ............#W\nThey were wiped out...#W\nIn the underground dungeon...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}\nThey were wiped out...{WAIT_PRESS}\nIn the underground dungeon...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, CALL_SCRIPT(SHOCK_FUNC), @@ -8711,7 +8711,7 @@ static const struct ScriptCommand s_gs1_g28_s0_lives0_dlg0[] = { /* 0x815aae0 */ WAIT(10), { 0x2e, 0x03, 0x0005, 0x00000003, 0x00000000, NULL }, { 0x2f, 0x00, 0x0005, 0x00000000, 0x00000001, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Groan... That place...#W\nIt's rough, seriously...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Groan... That place...{WAIT_PRESS}\nIt's rough, seriously...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -8719,7 +8719,7 @@ static const struct ScriptCommand s_gs1_g28_s0_lives0_dlg0[] = { /* 0x815aae0 */ WAIT(10), { 0x2e, 0x0d, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2f, 0x00, 0x0006, 0x00000000, -0x00000001, NULL }, - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" ...We couldn't get far\nenough to even see $n9...") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" ...We couldn't get far\nenough to even see {NAME_9}...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -8736,7 +8736,7 @@ static const struct ScriptCommand s_gs1_g28_s0_lives0_dlg0[] = { /* 0x815aae0 */ WAIT(30), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x93, 0x04, 0x000a, 0x00000055, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...It appears the dungeon\nunderground...#W\nis far worse than we'd imagined...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...It appears the dungeon\nunderground...{WAIT_PRESS}\nis far worse than we'd imagined...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, BGM_FADEOUT(60), WAIT(60), @@ -8754,15 +8754,15 @@ static const struct ScriptCommand s_gs1_g28_s0_lives0_dlg0[] = { /* 0x815aae0 */ CALL_SCRIPT(SHOCK_FUNC), WAIT(30), { 0x2e, 0x0e, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" What fools.#W\nThat's what you get for trying the\nimpossible.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" What fools.{WAIT_PRESS}\nThat's what you get for trying the\nimpossible.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x05, 0x0001, 0x00000003, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Ge-$n4!")), - VARIANT(/* == */ 1, _(" Why don't you shut up?!#W\nThis is about saving $n8's team.\nWe have to try!")), - VARIANT_DEFAULT(_(" Ge-$n4!")), - VARIANT_DEFAULT(_(" What are you saying?!#W\nIt's only expected that we try. This is for\nsaving $n8's team.")), + VARIANT(/* == */ 1, _(" Ge-{NAME_4}!")), + VARIANT(/* == */ 1, _(" Why don't you shut up?!{WAIT_PRESS}\nThis is about saving {NAME_8}'s team.\nWe have to try!")), + VARIANT_DEFAULT(_(" Ge-{NAME_4}!")), + VARIANT_DEFAULT(_(" What are you saying?!{WAIT_PRESS}\nIt's only expected that we try. This is for\nsaving {NAME_8}'s team.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000d, 0x00000000, 0x00000000, NULL }, @@ -8788,10 +8788,10 @@ static const struct ScriptCommand s_gs1_g28_s0_lives0_dlg0[] = { /* 0x815aae0 */ { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(60), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" It's too much...\nEven $n5 went down...") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" It's too much...\nEven {NAME_5} went down...") }, { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" It's gotta be awful tough.") }, { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Who'd want to go into a dungeon that\ndangerous?") }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" There's no way. I can't go.#W\nI burn too easily.") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" There's no way. I can't go.{WAIT_PRESS}\nI burn too easily.") }, { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I can't take earthquakes.") }, { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" It'd be like going and knowing full\nwell we'd get wiped...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -8815,7 +8815,7 @@ static const struct ScriptCommand s_gs1_g28_s0_lives0_dlg0[] = { /* 0x815aae0 */ { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I...#W\nMy leafy fans would burn up...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I...{WAIT_PRESS}\nMy leafy fans would burn up...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, CALL_SCRIPT(NOTICE_FUNC), @@ -8826,7 +8826,7 @@ static const struct ScriptCommand s_gs1_g28_s0_lives0_dlg0[] = { /* 0x815aae0 */ WAIT(15), { 0x2e, 0x0e, 0x0001, 0x00000005, 0x00000000, NULL }, { 0x2f, 0x00, 0x0001, -0x00000002, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" E-even $n3...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" E-even {NAME_3}...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -8840,7 +8840,7 @@ static const struct ScriptCommand s_gs1_g28_s0_lives0_dlg0[] = { /* 0x815aae0 */ { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0e, 0x0004, 0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ............Huh?#W\nDid I say something profound?\nKekekekekekekeh!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ............Huh?{WAIT_PRESS}\nDid I say something profound?\nKekekekekekekeh!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x93, 0x04, 0x000a, 0x0000005b, 0x00000000, NULL }, @@ -8855,31 +8855,31 @@ static const struct ScriptCommand s_gs1_g28_s0_lives0_dlg0[] = { /* 0x815aae0 */ BGM_FADEOUT(150), WAIT(30), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0...\nI don't know anymore...")), + VARIANT(/* == */ 1, _(" {NAME_0}...\nI don't know anymore...")), VARIANT(/* == */ 1, _(" What should we do?")), VARIANT(/* == */ 1, _(" Even if it's impossible...")), - VARIANT(/* == */ 3, _(" $n0...\nI don't know anymore...")), + VARIANT(/* == */ 3, _(" {NAME_0}...\nI don't know anymore...")), VARIANT(/* == */ 3, _(" What should we do?")), VARIANT(/* == */ 3, _(" Even if it's the impossible...")), - VARIANT_DEFAULT(_(" $n0...\nI don't know anymore...")), + VARIANT_DEFAULT(_(" {NAME_0}...\nI don't know anymore...")), VARIANT_DEFAULT(_(" What should we do?")), VARIANT_DEFAULT(_(" Even if it's the impossible...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(17), /* = 0x11 */ - ASK3(FALSE, /*default*/ -1, /* speaker */ 1, _(" Should we still\ntry to rescue $n8?")), + ASK3(FALSE, /*default*/ -1, /* speaker */ 1, _(" Should we still\ntry to rescue {NAME_8}?")), CHOICE(/* label */ 18, _("Let's go!")), CHOICE(/* label */ 19, _("Let's not.")), LABEL(19), /* = 0x13 */ - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...#WReally...?#W\nYou honestly think we shouldn't go?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...{WAIT_PRESS}Really...?{WAIT_PRESS}\nYou honestly think we shouldn't go?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, JUMP_LABEL(17), LABEL(18), /* = 0x12 */ { 0x2e, 0x15, 0x0001, 0x0000000b, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ...#WYes...#W\nYeah, you're right.")), - VARIANT(/* == */ 1, _(" All right, $n0!")), - VARIANT_DEFAULT(_(" ...#WYes...#W\nI think so too.")), - VARIANT_DEFAULT(_(" OK, $n0!")), + VARIANT(/* == */ 1, _(" ...{WAIT_PRESS}Yes...{WAIT_PRESS}\nYeah, you're right.")), + VARIANT(/* == */ 1, _(" All right, {NAME_0}!")), + VARIANT_DEFAULT(_(" ...{WAIT_PRESS}Yes...{WAIT_PRESS}\nI think so too.")), + VARIANT_DEFAULT(_(" OK, {NAME_0}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -8898,9 +8898,9 @@ static const struct ScriptCommand s_gs1_g28_s0_lives0_dlg0[] = { /* 0x815aae0 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(60), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" We're going!\nTo rescue $n8's team!")), - VARIANT(/* == */ 3, _(" We're going!\nTo rescue $n8's team!")), - VARIANT_DEFAULT(_(" We're going!\nTo rescue $n8's team!")), + VARIANT(/* == */ 1, _(" We're going!\nTo rescue {NAME_8}'s team!")), + VARIANT(/* == */ 3, _(" We're going!\nTo rescue {NAME_8}'s team!")), + VARIANT_DEFAULT(_(" We're going!\nTo rescue {NAME_8}'s team!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, @@ -8919,10 +8919,10 @@ static const struct ScriptCommand s_gs1_g28_s0_lives0_dlg0[] = { /* 0x815aae0 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Hey, who are they?") }, { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Can't say I know them...") }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" It's #C5Team $t#R.#W\nThey're well known around these parts.") }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" #C5Team $t#R...?#W\nYou mean the lot that were suspected of\ninvolvement in the Ninetales legend?") }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I heard about that!#W\nWeren't they living like fugitives until\nrecently?") }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Can they handle it?#W\nThey don't look very tough.") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" It's {COLOR CYAN}Team {TEAM_NAME}{RESET}.{WAIT_PRESS}\nThey're well known around these parts.") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" {COLOR CYAN}Team {TEAM_NAME}{RESET}...?{WAIT_PRESS}\nYou mean the lot that were suspected of\ninvolvement in the Ninetales legend?") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I heard about that!{WAIT_PRESS}\nWeren't they living like fugitives until\nrecently?") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Can they handle it?{WAIT_PRESS}\nThey don't look very tough.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -8937,27 +8937,27 @@ static const struct ScriptCommand s_gs1_g28_s0_lives0_dlg0[] = { /* 0x815aae0 */ WAIT(30), { 0x2e, 0x15, 0x0001, 0x00000005, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" But...#W\nwe're still a rescue team.")), + VARIANT(/* == */ 1, _(" But...{WAIT_PRESS}\nwe're still a rescue team.")), VARIANT(/* == */ 1, _(" I wanted to help Pokémon\nthat were suffering from the natural\ndisasters...")), VARIANT(/* == */ 1, _(" That's why we started up\nour rescue team!")), - VARIANT(/* == */ 3, _(" But...#W\nEven so, we're still a rescue team.")), + VARIANT(/* == */ 3, _(" But...{WAIT_PRESS}\nEven so, we're still a rescue team.")), VARIANT(/* == */ 3, _(" To help Pokémon suffering\nfrom the natural disasters...")), VARIANT(/* == */ 3, _(" That's why we started up\nour rescue team!")), - VARIANT_DEFAULT(_(" But...#W\nwe're still a rescue team.")), + VARIANT_DEFAULT(_(" But...{WAIT_PRESS}\nwe're still a rescue team.")), VARIANT_DEFAULT(_(" To help Pokémon suffering\nfrom the natural disasters...")), VARIANT_DEFAULT(_(" That's why we started up\nour rescue team!")), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" That's why I want to\nrescue $n8's team more than\nanything.")), - VARIANT(/* == */ 1, _(" Never giving up...\nThat's what #C5Team $t#R takes\npride in!")), - VARIANT(/* == */ 3, _(" That's why I want to rescue\n$n8's team, even if it's risky.")), - VARIANT(/* == */ 3, _(" Never giving up...\nThat's where #C5Team $t#R stakes\nits pride!")), - VARIANT_DEFAULT(_(" That's why I want to\nrescue $n8's team more than\nanything.")), - VARIANT_DEFAULT(_(" Never giving up...\nThat's where #C5Team $t#R stakes\nits pride!")), + VARIANT(/* == */ 1, _(" That's why I want to\nrescue {NAME_8}'s team more than\nanything.")), + VARIANT(/* == */ 1, _(" Never giving up...\nThat's what {COLOR CYAN}Team {TEAM_NAME}{RESET} takes\npride in!")), + VARIANT(/* == */ 3, _(" That's why I want to rescue\n{NAME_8}'s team, even if it's risky.")), + VARIANT(/* == */ 3, _(" Never giving up...\nThat's where {COLOR CYAN}Team {TEAM_NAME}{RESET} stakes\nits pride!")), + VARIANT_DEFAULT(_(" That's why I want to\nrescue {NAME_8}'s team more than\nanything.")), + VARIANT_DEFAULT(_(" Never giving up...\nThat's where {COLOR CYAN}Team {TEAM_NAME}{RESET} stakes\nits pride!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), { 0x2e, 0x0e, 0x0004, 0x00000003, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ............#WKeh.#W Kekekeh!#W\nYou really aren't very bright, are you?") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}Keh.{WAIT_PRESS} Kekekeh!{WAIT_PRESS}\nYou really aren't very bright, are you?") }, { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -8968,7 +8968,7 @@ static const struct ScriptCommand s_gs1_g28_s0_lives0_dlg0[] = { /* 0x815aae0 */ WAIT(10), { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, { 0x2f, 0x00, 0x0003, 0x00000000, -0x00000001, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...No.\n$n1 is right.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...No.\n{NAME_1} is right.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, @@ -9030,7 +9030,7 @@ static const struct ScriptCommand s_gs1_g28_s0_lives0_dlg0[] = { /* 0x815aae0 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x0e, 0x0001, 0x0000000b, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n5!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_5}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" ...This is no time to be\nlying around!") }, @@ -9068,7 +9068,7 @@ static const struct ScriptCommand s_gs1_g28_s0_lives0_dlg0[] = { /* 0x815aae0 */ { 0x91, 0x04, 0x000a, 0x00000002, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x0e, 0x0001, 0x0000000b, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n6!\nAnd $n7 too!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_6}!\nAnd {NAME_7} too!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, @@ -9104,7 +9104,7 @@ static const struct ScriptCommand s_gs1_g28_s0_lives0_dlg0[] = { /* 0x815aae0 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Ugegegegegegegegeh!#W\nAre you dreaming?!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Ugegegegegegegegeh!{WAIT_PRESS}\nAre you dreaming?!") }, UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -9130,7 +9130,7 @@ static const struct ScriptCommand s_gs1_g28_s0_lives0_dlg0[] = { /* 0x815aae0 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, WAIT(60), - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Thank you, $n1.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Thank you, {NAME_1}.") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" You stopped us from\nthrowing away the most important thing\nwe have--pride.") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" My thanks from all of us.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -9139,7 +9139,7 @@ static const struct ScriptCommand s_gs1_g28_s0_lives0_dlg0[] = { /* 0x815aae0 */ WAIT(15), { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, WAIT(60), - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Everyone!#W\nIt's time to get to work!") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Everyone!{WAIT_PRESS}\nIt's time to get to work!") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Let's show them what we\nrescue teams are really about!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), @@ -10088,9 +10088,9 @@ static const struct ScriptCommand s_gs1_g29_s0_lives0_dlg2[] = { /* 0x8161054 */ WAIT(1), JUMPIF_ARRAY(EVENT_M01E09A_8N, 0, /* to label */ 0), SET_ARRAYVAL(EVENT_M01E09A_8N, 0, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, my goodness, yes!\n$n2's talk was such an\ninspiration!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, my goodness, yes!\n{NAME_2}'s talk was such an\ninspiration!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It has stoked a raging fire\nin our hearts!") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I will keep bringing in fine\nmerchandise!#W This, I do for you!#W\nSo...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I will keep bringing in fine\nmerchandise!{WAIT_PRESS} This, I do for you!{WAIT_PRESS}\nSo...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -10118,7 +10118,7 @@ static const struct ScriptCommand s_gs1_g29_s0_lives2_dlg2[] = { /* 0x81612a0 */ WAIT(1), JUMPIF_ARRAY(EVENT_M01E09A_8N, 2, /* to label */ 0), SET_ARRAYVAL(EVENT_M01E09A_8N, 2, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Aren't you remarkable?#W\nYour money will be jealously guarded,\nso feel secure on your outings!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Aren't you remarkable?{WAIT_PRESS}\nYour money will be jealously guarded,\nso feel secure on your outings!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -10133,7 +10133,7 @@ static const struct ScriptCommand s_gs1_g29_s0_lives3_dlg2[] = { /* 0x81613b4 */ WAIT(1), JUMPIF_ARRAY(EVENT_M01E09A_8N, 3, /* to label */ 0), SET_ARRAYVAL(EVENT_M01E09A_8N, 3, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n2's words struck\nme deeply.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_2}'s words struck\nme deeply.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You can count on me for all\nyour move-linking needs!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ @@ -10165,7 +10165,7 @@ static const struct ScriptCommand s_gs1_g29_s0_lives5_dlg2[] = { /* 0x816167c */ JUMPIF_ARRAY(EVENT_M01E09A_8N, 5, /* to label */ 0), SET_ARRAYVAL(EVENT_M01E09A_8N, 5, 1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll do my best to get more\nFriend Areas!") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Because $n0's team\nare my friends!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Because {NAME_0}'s team\nare my friends!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -10187,11 +10187,11 @@ static const struct ScriptCommand s_gs1_g29_s0_lives6_dlg2[] = { /* 0x81617c4 */ WAIT(1), { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What's it like?\nThis #CDMagma Cavern#R.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What's it like?\nThis {COLOR YELLOW_D}Magma Cavern{RESET}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" It was teeming with tough\nPokémon, that's for sure.") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I'm strong against fire...#W\nbut that place is special.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I'm strong against fire...{WAIT_PRESS}\nbut that place is special.") }, JUMP_SCRIPT(END_TALK), }; @@ -10210,11 +10210,11 @@ static const struct ScriptCommand s_gs1_g29_s0_lives7_dlg2[] = { /* 0x8161978 */ WAIT(1), { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What's it like?\nThis #CDMagma Cavern#R.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What's it like?\nThis {COLOR YELLOW_D}Magma Cavern{RESET}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" It was teeming with tough\nPokémon, that's for sure.") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I'm strong against fire...#W\nbut that place is special.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I'm strong against fire...{WAIT_PRESS}\nbut that place is special.") }, JUMP_SCRIPT(END_TALK), }; @@ -10233,11 +10233,11 @@ static const struct ScriptCommand s_gs1_g29_s0_lives8_dlg2[] = { /* 0x8161a88 */ WAIT(1), { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" The #CDMagma Cavern#R...\nAbove all, there were many Fire-type\nPokémon.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" The {COLOR YELLOW_D}Magma Cavern{RESET}...\nAbove all, there were many Fire-type\nPokémon.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Fire-type Pokémon...#W\nI think they would burn me up in no time...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But, no!#W\nI mustn't make excuses for myself!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Fire-type Pokémon...{WAIT_PRESS}\nI think they would burn me up in no time...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But, no!{WAIT_PRESS}\nI mustn't make excuses for myself!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Now is the time for each\nand every one of us to make a stand!") }, JUMP_SCRIPT(END_TALK), }; @@ -10257,11 +10257,11 @@ static const struct ScriptCommand s_gs1_g29_s0_lives9_dlg2[] = { /* 0x8161cac */ WAIT(1), { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" The #CDMagma Cavern#R...\nAbove all, there were many Fire-type\nPokémon.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" The {COLOR YELLOW_D}Magma Cavern{RESET}...\nAbove all, there were many Fire-type\nPokémon.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Fire-type Pokémon...#W\nI think they would burn me up in no time...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But, no!#W\nI mustn't make excuses for myself!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Fire-type Pokémon...{WAIT_PRESS}\nI think they would burn me up in no time...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But, no!{WAIT_PRESS}\nI mustn't make excuses for myself!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Now is the time for each\nand every one of us to make a stand!") }, JUMP_SCRIPT(END_TALK), }; @@ -10282,10 +10282,10 @@ static const struct ScriptCommand s_gs1_g29_s0_lives10_dlg2[] = { /* 0x8161dcc * { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oi, you lot shouldn't go.") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" The #CDMagma Cavern#R is\nalive with flames. You'll be burned up!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" The {COLOR YELLOW_D}Magma Cavern{RESET} is\nalive with flames. You'll be burned up!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We can't do that!#W\nWe are a rescue team too.\nWe can't stand by idly!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We can't do that!{WAIT_PRESS}\nWe are a rescue team too.\nWe can't stand by idly!") }, JUMP_SCRIPT(END_TALK), }; @@ -10305,10 +10305,10 @@ static const struct ScriptCommand s_gs1_g29_s0_lives11_dlg2[] = { /* 0x8161f8c * { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oi, you lot shouldn't go.") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" The #CDMagma Cavern#R is\nalive with flames. You'll be burned up!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" The {COLOR YELLOW_D}Magma Cavern{RESET} is\nalive with flames. You'll be burned up!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We can't do that!#W\nWe are a rescue team too.\nWe can't stand by idly!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We can't do that!{WAIT_PRESS}\nWe are a rescue team too.\nWe can't stand by idly!") }, JUMP_SCRIPT(END_TALK), }; @@ -10317,8 +10317,8 @@ static const struct ScriptCommand s_gs1_g29_s0_lives12_dlg2[] = { /* 0x816206c * { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Several rescue teams have\nalready left for the #CDMagma Cavern#R.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0, you guys take\ncare, too.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Several rescue teams have\nalready left for the {COLOR YELLOW_D}Magma Cavern{RESET}.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0}, you guys take\ncare, too.") }, JUMP_SCRIPT(END_TALK), }; @@ -10339,18 +10339,18 @@ static const struct ScriptCommand s_gs1_g29_s1_lives0_dlg0[] = { /* 0x8162190 */ WAIT(1), { 0x2e, 0x0c, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" $n1's words\nshook me up with inspiration!") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Especially the part about\ntaking pride...#W That made me...#W\nIt left me choked up...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" {NAME_1}'s words\nshook me up with inspiration!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Especially the part about\ntaking pride...{WAIT_PRESS} That made me...{WAIT_PRESS}\nIt left me choked up...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It isn't just you, my brother.#W\nI am likewise inspired beyond words.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It isn't just you, my brother.{WAIT_PRESS}\nI am likewise inspired beyond words.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" B-Brother...#W\nSniffle... My brother...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" B-Brother...{WAIT_PRESS}\nSniffle... My brother...") }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -10391,9 +10391,9 @@ static const struct ScriptCommand s_gs1_g29_s1_lives2_dlg2[] = { /* 0x8162580 */ WAIT(1), JUMPIF_ARRAY(EVENT_M01E09A_8N, 0, /* to label */ 0), SET_ARRAYVAL(EVENT_M01E09A_8N, 0, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, my goodness, yes!\n$n2's talk was such an\ninspiration!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, my goodness, yes!\n{NAME_2}'s talk was such an\ninspiration!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It has stoked a raging fire\nin our hearts!") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I will keep bringing in fine\nmerchandise!#W This, I do for you!#W\nSo...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I will keep bringing in fine\nmerchandise!{WAIT_PRESS} This, I do for you!{WAIT_PRESS}\nSo...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -10445,9 +10445,9 @@ static const struct ScriptCommand s_gs1_g30_s0_lives0_dlg2[] = { /* 0x816280c */ WAIT(1), JUMPIF_ARRAY(EVENT_M01E09A_8N, 0, /* to label */ 0), SET_ARRAYVAL(EVENT_M01E09A_8N, 0, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, my goodness, yes!\n$n2's talk was such an\ninspiration!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, my goodness, yes!\n{NAME_2}'s talk was such an\ninspiration!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It has stoked a raging fire\nin our hearts!") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I will keep bringing in fine\nmerchandise!#W This, I do for you!#W\nSo...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I will keep bringing in fine\nmerchandise!{WAIT_PRESS} This, I do for you!{WAIT_PRESS}\nSo...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -10480,7 +10480,7 @@ static const struct ScriptCommand s_gs1_g30_s0_lives2_dlg2[] = { /* 0x81629bc */ WAIT(1), JUMPIF_ARRAY(EVENT_M01E09A_8N, 2, /* to label */ 0), SET_ARRAYVAL(EVENT_M01E09A_8N, 2, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Aren't you remarkable?#W\nYour money will be jealously guarded,\nso feel secure on your outings!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Aren't you remarkable?{WAIT_PRESS}\nYour money will be jealously guarded,\nso feel secure on your outings!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -10495,7 +10495,7 @@ static const struct ScriptCommand s_gs1_g30_s0_lives3_dlg2[] = { /* 0x8162a6c */ WAIT(1), JUMPIF_ARRAY(EVENT_M01E09A_8N, 3, /* to label */ 0), SET_ARRAYVAL(EVENT_M01E09A_8N, 3, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n2's words struck\nme deeply.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_2}'s words struck\nme deeply.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You can count on me for all\nyour move-linking needs!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ @@ -10527,7 +10527,7 @@ static const struct ScriptCommand s_gs1_g30_s0_lives5_dlg2[] = { /* 0x8162c3c */ JUMPIF_ARRAY(EVENT_M01E09A_8N, 5, /* to label */ 0), SET_ARRAYVAL(EVENT_M01E09A_8N, 5, 1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll do my best to get more\nFriend Areas!") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Because $n0's team\nare my friends!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Because {NAME_0}'s team\nare my friends!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -10553,16 +10553,16 @@ static const struct ScriptCommand s_gs1_g30_s0_lives6_dlg2[] = { /* 0x8162d2c */ { 0x2e, 0x0d, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" We got wiped again...#W\nFifteen times now we have been to that\ninfernal #CDMagma Cavern#R.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" We got wiped again...{WAIT_PRESS}\nFifteen times now we have been to that\ninfernal {COLOR YELLOW_D}Magma Cavern{RESET}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Why does this keep\nhappening?#W\nWe can't be that weak!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Why does this keep\nhappening?{WAIT_PRESS}\nWe can't be that weak!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Maybe we're just lacking\nthe will to win.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The will to win?#W\nThat's it! This is about willpower!\nI didn't realize!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The will to win?{WAIT_PRESS}\nThat's it! This is about willpower!\nI didn't realize!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Darlings, we will will\nourselves to win, and we will win!") }, @@ -10592,16 +10592,16 @@ static const struct ScriptCommand s_gs1_g30_s0_lives7_dlg2[] = { /* 0x81630c0 */ { 0x2e, 0x0d, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" We got wiped again...#W\nFifteen times now we have been to that\ninfernal #CDMagma Cavern#R.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" We got wiped again...{WAIT_PRESS}\nFifteen times now we have been to that\ninfernal {COLOR YELLOW_D}Magma Cavern{RESET}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Why does this keep\nhappening?#W\nWe can't be that weak!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Why does this keep\nhappening?{WAIT_PRESS}\nWe can't be that weak!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Maybe we're just lacking\nthe will to win.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The will to win?#W\nThat's it! This is about willpower!\nI didn't realize!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The will to win?{WAIT_PRESS}\nThat's it! This is about willpower!\nI didn't realize!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Darlings, we will will\nourselves to win, and we will win!") }, @@ -10631,16 +10631,16 @@ static const struct ScriptCommand s_gs1_g30_s0_lives8_dlg2[] = { /* 0x81632d0 */ { 0x2e, 0x0d, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" We got wiped again...#W\nFifteen times now we have been to that\ninfernal #CDMagma Cavern#R.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" We got wiped again...{WAIT_PRESS}\nFifteen times now we have been to that\ninfernal {COLOR YELLOW_D}Magma Cavern{RESET}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Why does this keep\nhappening?#W\nWe can't be that weak!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Why does this keep\nhappening?{WAIT_PRESS}\nWe can't be that weak!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Maybe we're just lacking\nthe will to win.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The will to win?#W\nThat's it! This is about willpower!\nI didn't realize!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The will to win?{WAIT_PRESS}\nThat's it! This is about willpower!\nI didn't realize!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Darlings, we will will\nourselves to win, and we will win!") }, @@ -10675,8 +10675,8 @@ static const struct ScriptCommand s_gs1_g30_s0_lives9_dlg2[] = { /* 0x81635b0 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I ventured into the #CDMagma\nCavern#R, but...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I got nowhere.#W\nI got KO'd and kicked out as soon as I\nwent in...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I ventured into the {COLOR YELLOW_D}Magma\nCavern{RESET}, but...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I got nowhere.{WAIT_PRESS}\nI got KO'd and kicked out as soon as I\nwent in...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But I won't give up!\nNot ever!") }, JUMP_SCRIPT(END_TALK), }; @@ -10688,7 +10688,7 @@ static const struct ScriptCommand s_gs1_g30_s0_lives10_dlg2[] = { /* 0x81636d0 * WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's tough for us to get\nvery deep in there...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But it helps that other\nrescue teams give us information about\nwhat's underground.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" However...#W\nWhatever became of Alakazam?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" However...{WAIT_PRESS}\nWhatever became of Alakazam?") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If he had fallen in\na dungeon, he would've been\nexpelled back here...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Since he hasn't returned,\ndoes it mean he's still in the dungeon?") }, JUMP_SCRIPT(END_TALK), @@ -10700,7 +10700,7 @@ static const struct ScriptCommand s_gs1_g30_s0_lives11_dlg2[] = { /* 0x81638c0 * { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I talked to other rescue\nteams.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" They all say the #CDMagma\nCavern#R goes very deep.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" They all say the {COLOR YELLOW_D}Magma\nCavern{RESET} goes very deep.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wonder exactly how deep\nit goes?") }, JUMP_SCRIPT(END_TALK), }; @@ -10712,7 +10712,7 @@ static const struct ScriptCommand s_gs1_g30_s0_lives12_dlg2[] = { /* 0x81639bc * WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I overheard some rescue\nteam Pokémon earlier.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" They say it's very taxing\nbecause it's so easy to get burns there.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Please be careful of burns,\n$n0.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Please be careful of burns,\n{NAME_0}.") }, JUMP_SCRIPT(END_TALK), }; @@ -10733,18 +10733,18 @@ static const struct ScriptCommand s_gs1_g30_s1_lives0_dlg0[] = { /* 0x8163b24 */ WAIT(1), { 0x2e, 0x0c, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" $n1's words\nshook me up with inspiration!") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Especially the part about\ntaking pride...#W That made me...#W\nIt left me choked up...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" {NAME_1}'s words\nshook me up with inspiration!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Especially the part about\ntaking pride...{WAIT_PRESS} That made me...{WAIT_PRESS}\nIt left me choked up...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It isn't just you, my brother.#W\nI am likewise inspired beyond words.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It isn't just you, my brother.{WAIT_PRESS}\nI am likewise inspired beyond words.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" B-Brother...#W\nSniffle... My brother...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" B-Brother...{WAIT_PRESS}\nSniffle... My brother...") }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -10785,9 +10785,9 @@ static const struct ScriptCommand s_gs1_g30_s1_lives2_dlg2[] = { /* 0x8163dd4 */ WAIT(1), JUMPIF_ARRAY(EVENT_M01E09A_8N, 0, /* to label */ 0), SET_ARRAYVAL(EVENT_M01E09A_8N, 0, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, my goodness, yes!\n$n2's talk was such an\ninspiration!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, my goodness, yes!\n{NAME_2}'s talk was such an\ninspiration!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It has stoked a raging fire\nin our hearts!") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I will keep bringing in fine\nmerchandise!#W This, I do for you!#W\nSo...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I will keep bringing in fine\nmerchandise!{WAIT_PRESS} This, I do for you!{WAIT_PRESS}\nSo...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ { 0x3c, 0x17, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -10828,7 +10828,7 @@ static const struct ScriptCommand s_gs1_g31_s0_station_sref_script[] = { /* 0x81 { 0x23, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x26, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, SELECT_MAP(1), - { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("#+And in the square...") }, + { 0x39, 0x00, 0x001e, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And in the square...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x25, 0x01, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -10862,7 +10862,7 @@ static const struct ScriptCommand s_gs1_g31_s0_lives0_dlg0[] = { /* 0x81641b8 */ { 0x53, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Is $n0's team\nalmost here?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Is {NAME_0}'s team\nalmost here?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -10912,14 +10912,14 @@ static const struct ScriptCommand s_gs1_g31_s0_lives0_dlg0[] = { /* 0x81641b8 */ { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0004, 0x00000042, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Great work!\nGreat work, $n0!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Great work!\nGreat work, {NAME_0}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x03, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" You really took down that\nGroudon?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Darlings, it's fantastic!#W\nYou have won me over!") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Darlings, it's fantastic!{WAIT_PRESS}\nYou have won me over!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -10942,14 +10942,14 @@ static const struct ScriptCommand s_gs1_g31_s0_lives0_dlg0[] = { /* 0x81641b8 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x0d, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" You lot did great!#W\nWhy don't we team up sometime?\nGahahahaha!") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" You lot did great!{WAIT_PRESS}\nWhy don't we team up sometime?\nGahahahaha!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" You've earned everyone's\nrespect now.") }, - { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" Your #C5Team $t#R\nis a first-class rescue team.") }, - { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" Take pride in that.#W\n$n1, $n0.") }, + { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" Your {COLOR CYAN}Team {TEAM_NAME}{RESET}\nis a first-class rescue team.") }, + { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" Take pride in that.{WAIT_PRESS}\n{NAME_1}, {NAME_0}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -10957,15 +10957,15 @@ static const struct ScriptCommand s_gs1_g31_s0_lives0_dlg0[] = { /* 0x81641b8 */ WAIT(5), { 0x2e, 0x15, 0x0001, 0x00000008, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Sniff... Sniffle...#W\n$n0!#W This is great!")), + VARIANT(/* == */ 1, _(" Sniff... Sniffle...{WAIT_PRESS}\n{NAME_0}!{WAIT_PRESS} This is great!")), VARIANT(/* == */ 1, _(" All the work we put in...\nIt was all worth it!")), - VARIANT(/* == */ 3, _(" Sniff... Sniffle...#W\n$n0!#W I can't believe it!")), + VARIANT(/* == */ 3, _(" Sniff... Sniffle...{WAIT_PRESS}\n{NAME_0}!{WAIT_PRESS} I can't believe it!")), VARIANT(/* == */ 3, _(" Everything we experienced...\nIt was all worthwhile!")), - VARIANT_DEFAULT(_(" Sniff... Sniffle...#W\n$n0!#W This is great!")), + VARIANT_DEFAULT(_(" Sniff... Sniffle...{WAIT_PRESS}\n{NAME_0}!{WAIT_PRESS} This is great!")), VARIANT_DEFAULT(_(" Every bit of our effort...\nIt was all worthwhile!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Would you look at that?#W\nI didn't think someone that could take down\nGroudon'd be such a crybaby! Gahahahaha!") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Would you look at that?{WAIT_PRESS}\nI didn't think someone that could take down\nGroudon'd be such a crybaby! Gahahahaha!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0014, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, @@ -10983,8 +10983,8 @@ static const struct ScriptCommand s_gs1_g31_s0_lives0_dlg0[] = { /* 0x81641b8 */ { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Huh?#W What was that?") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I thought I heard something\njust for a moment...#W\nDid I just imagine it?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Huh?{WAIT_PRESS} What was that?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I thought I heard something\njust for a moment...{WAIT_PRESS}\nDid I just imagine it?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -11005,10 +11005,10 @@ static const struct ScriptCommand s_gs1_g31_s0_lives0_dlg0[] = { /* 0x81641b8 */ { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" No. I heard it too.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Me too.#W\nEven now, I hear it...") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Me too.{WAIT_PRESS}\nEven now, I hear it...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" Someone talking?#W\n...Not sure.") }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" Someone talking?{WAIT_PRESS}\n...Not sure.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -11031,16 +11031,16 @@ static const struct ScriptCommand s_gs1_g31_s0_lives0_dlg0[] = { /* 0x81641b8 */ { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Th-this voice...#W\nI remember this voice.")), - VARIANT(/* == */ 1, _(" This voice...#W I think...#W\nThat's it! It's $n9!")), - VARIANT_DEFAULT(_(" Th-this voice...#W\nI've heard it before.")), - VARIANT_DEFAULT(_(" This voice...#W I'm sure...#W\nThat's it! It's $n9!")), + VARIANT(/* == */ 1, _(" Th-this voice...{WAIT_PRESS}\nI remember this voice.")), + VARIANT(/* == */ 1, _(" This voice...{WAIT_PRESS} I think...{WAIT_PRESS}\nThat's it! It's {NAME_9}!")), + VARIANT_DEFAULT(_(" Th-this voice...{WAIT_PRESS}\nI've heard it before.")), + VARIANT_DEFAULT(_(" This voice...{WAIT_PRESS} I'm sure...{WAIT_PRESS}\nThat's it! It's {NAME_9}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, - { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" $n9?#W\nAh, that's it! Telepathy!") }, - { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" $n9 is calling out\nto us using telepathy!") }, + { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" {NAME_9}?{WAIT_PRESS}\nAh, that's it! Telepathy!") }, + { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" {NAME_9} is calling out\nto us using telepathy!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), FANFARE_PLAY2(487), @@ -11050,7 +11050,7 @@ static const struct ScriptCommand s_gs1_g31_s0_lives0_dlg0[] = { /* 0x81641b8 */ BGM_SWITCH(19), { 0x2e, 0x00, 0x0009, -0x00000002, 0x00000000, NULL }, { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" ...To all Pokémon!\nCalling all Pokémon!") }, - { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Terrible, it is!#W\nFrom the sky...#W Falls a star...") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Terrible, it is!{WAIT_PRESS}\nFrom the sky...{WAIT_PRESS} Falls a star...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x52, 0x00, 0x0000, 0x0000001f, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -11533,7 +11533,7 @@ static const struct ScriptCommand s_gs1_g32_s0_lives0_dlg0[] = { /* 0x8166c80 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" $n9.#W\nTell us.") }, + { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" {NAME_9}.{WAIT_PRESS}\nTell us.") }, { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" Can the falling star be\nstopped?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -11543,47 +11543,47 @@ static const struct ScriptCommand s_gs1_g32_s0_lives0_dlg0[] = { /* 0x8166c80 */ { 0x27, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, WAIT(30), { 0x2e, 0x00, 0x0009, -0x00000002, 0x00000000, NULL }, - { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" ............#WThere is a way.") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}There is a way.") }, { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" ...To prevent collision,\nthere is but one solution.") }, - { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" You must ask $n7.") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" You must ask {NAME_7}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x0d, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" $n7?#W\nWhat might that be?") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" {NAME_7}?{WAIT_PRESS}\nWhat might that be?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, FANFARE_PLAY2(487), { 0x28, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, { 0x27, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, WAIT(30), { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" A Pokémon, living far above\nus in the sky.\nLegendary, it is.") }, - { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" $n7 must be asked\nto destroy the star from the sky.") }, - { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" However...#W\nFar, far up in the sky lives $n7.\nKnown by few and seen by none.") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" {NAME_7} must be asked\nto destroy the star from the sky.") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" However...{WAIT_PRESS}\nFar, far up in the sky lives {NAME_7}.\nKnown by few and seen by none.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" The sky...#W\nHow are we to go there?") }, + { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" The sky...{WAIT_PRESS}\nHow are we to go there?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), FANFARE_PLAY2(487), { 0x28, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, { 0x27, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, WAIT(30), - { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" $n8 and I\namplify our Teleport together...") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" {NAME_8} and I\namplify our Teleport together...") }, { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" And send Pokémon to the\nsky.") }, - { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" However...#W\nThe sky is a world above the clouds.") }, - { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" What will become of the\nPokémon sent to the sky?#W\nEven I can guess nothing...") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" However...{WAIT_PRESS}\nThe sky is a world above the clouds.") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" What will become of the\nPokémon sent to the sky?{WAIT_PRESS}\nEven I can guess nothing...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x10, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Then, we'll do it!#W\nWe'll go!")), - VARIANT(/* == */ 3, _(" Then, we'll do it!#W\nWe'll go!")), - VARIANT_DEFAULT(_(" Then, we'll do it!#W\nWe'll go!")), + VARIANT(/* == */ 1, _(" Then, we'll do it!{WAIT_PRESS}\nWe'll go!")), + VARIANT(/* == */ 3, _(" Then, we'll do it!{WAIT_PRESS}\nWe'll go!")), + VARIANT_DEFAULT(_(" Then, we'll do it!{WAIT_PRESS}\nWe'll go!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" I also...#W\nI thought there could be none but you...") }, - { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" But...#W Are you sure?#W\nThere's no telling what you would find\nin that world above the clouds.") }, + { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" I also...{WAIT_PRESS}\nI thought there could be none but you...") }, + { 0x34, 0x00, 0x0008, 0x00000000, 0x00000000, _(" But...{WAIT_PRESS} Are you sure?{WAIT_PRESS}\nThere's no telling what you would find\nin that world above the clouds.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -11601,10 +11601,10 @@ static const struct ScriptCommand s_gs1_g32_s0_lives0_dlg0[] = { /* 0x8166c80 */ { 0x28, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, { 0x27, 0x01, 0x0001, 0x0000000f, 0x00ffffff, NULL }, WAIT(30), - { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" $n1, $n0.#W\nDo you hear?#W This is $n9.") }, - { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Discuss we will,\n$n8 and I, about how our\nTeleport can be amplified.") }, - { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Departure, it is tomorrow.#W\nRest you should until then.") }, - { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Last word.#W\nDangerous will be your adventure...#W\nBut fail, you must not. Surpass yourselves.") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" {NAME_1}, {NAME_0}.{WAIT_PRESS}\nDo you hear?{WAIT_PRESS} This is {NAME_9}.") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Discuss we will,\n{NAME_8} and I, about how our\nTeleport can be amplified.") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Departure, it is tomorrow.{WAIT_PRESS}\nRest you should until then.") }, + { 0x34, 0x00, 0x0009, 0x00000000, 0x00000000, _(" Last word.{WAIT_PRESS}\nDangerous will be your adventure...{WAIT_PRESS}\nBut fail, you must not. Surpass yourselves.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" No problem!\nWe'll be fine!") }, @@ -11613,8 +11613,8 @@ static const struct ScriptCommand s_gs1_g32_s0_lives0_dlg0[] = { /* 0x8166c80 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey, $n0!\nLet's get it done!")), - VARIANT_DEFAULT(_(" Right, $n0?\nLet's get it done!")), + VARIANT(/* == */ 1, _(" Hey, {NAME_0}!\nLet's get it done!")), + VARIANT_DEFAULT(_(" Right, {NAME_0}?\nLet's get it done!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -11807,8 +11807,8 @@ static const struct ScriptCommand s_gs1_g34_s0_lives0_dlg2[] = { /* 0x8167dbc */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0.")), - VARIANT_DEFAULT(_(" $n0.")), + VARIANT(/* == */ 1, _(" {NAME_0}.")), + VARIANT_DEFAULT(_(" {NAME_0}.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, ASK3_VAR(FALSE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), VARIANT(/* == */ 1, _(" Are you all ready for\nthe sky?")), @@ -11827,11 +11827,11 @@ static const struct ScriptCommand s_gs1_g34_s0_lives0_dlg2[] = { /* 0x8167dbc */ VARIANT(/* == */ 1, _(" Great!\nLooks like you're all set to roll!")), VARIANT(/* == */ 1, _(" We leave tomorrow.")), VARIANT(/* == */ 1, _(" Let's get plenty of rest\ntonight and get set for tomorrow.")), - VARIANT(/* == */ 1, _(" Tomorrow!#W\nLet's give it everything we've got,\n$n0!")), + VARIANT(/* == */ 1, _(" Tomorrow!{WAIT_PRESS}\nLet's give it everything we've got,\n{NAME_0}!")), VARIANT_DEFAULT(_(" Yup!\nLooks like we're ready to go!")), VARIANT_DEFAULT(_(" We leave tomorrow.")), VARIANT_DEFAULT(_(" So let's get plenty of rest\nfor tomorrow.")), - VARIANT_DEFAULT(_(" Tomorrow!#W\nLet's give it everything we can,\n$n0!")), + VARIANT_DEFAULT(_(" Tomorrow!{WAIT_PRESS}\nLet's give it everything we can,\n{NAME_0}!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, BGM_FADEOUT(150), { 0x23, 0x01, 0x002d, 0x00000000, 0x00000000, NULL }, @@ -11877,7 +11877,7 @@ static const struct ScriptCommand s_gs1_g34_s0_lives3_dlg2[] = { /* 0x81683c4 */ WAIT(1), JUMPIF_ARRAY(EVENT_M01E10A_1N, 2, /* to label */ 0), SET_ARRAYVAL(EVENT_M01E10A_1N, 2, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0, you're our\none hope!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0}, you're our\none hope!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -11891,7 +11891,7 @@ static const struct ScriptCommand s_gs1_g34_s0_lives4_dlg2[] = { /* 0x8168494 */ WAIT(1), JUMPIF_ARRAY(EVENT_M01E10A_1N, 3, /* to label */ 0), SET_ARRAYVAL(EVENT_M01E10A_1N, 3, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm rooting for your\nsuccess, $n0!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm rooting for your\nsuccess, {NAME_0}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -11905,7 +11905,7 @@ static const struct ScriptCommand s_gs1_g34_s0_lives5_dlg2[] = { /* 0x816856c */ WAIT(1), JUMPIF_ARRAY(EVENT_M01E10A_1N, 4, /* to label */ 0), SET_ARRAYVAL(EVENT_M01E10A_1N, 4, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You'll do fine!#W\nI'm sure you'll find success!\nHave confidence in yourselves!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You'll do fine!{WAIT_PRESS}\nI'm sure you'll find success!\nHave confidence in yourselves!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ { 0x3c, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -11941,7 +11941,7 @@ static const struct ScriptCommand s_gs1_g34_s0_lives8_dlg2[] = { /* 0x8168824 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Darlings, I can't begin to\nimagine a world above the clouds...#W\nThe best of luck!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Darlings, I can't begin to\nimagine a world above the clouds...{WAIT_PRESS}\nThe best of luck!") }, JUMP_SCRIPT(END_TALK), }; @@ -11970,7 +11970,7 @@ static const struct ScriptCommand s_gs1_g34_s0_lives11_dlg2[] = { /* 0x8168a5c * { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" This is getting heavy!") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But I have this feeling\nthat you can do it.#W\nWe need you to win!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But I have this feeling\nthat you can do it.{WAIT_PRESS}\nWe need you to win!") }, JUMP_SCRIPT(END_TALK), }; @@ -11980,7 +11980,7 @@ static const struct ScriptCommand s_gs1_g34_s0_lives12_dlg2[] = { /* 0x8168b28 * { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I will wait for you.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0, I'm sure that\nyou will succeed and come back.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0}, I'm sure that\nyou will succeed and come back.") }, JUMP_SCRIPT(END_TALK), }; @@ -11999,7 +11999,7 @@ static const struct ScriptCommand s_gs1_g34_s0_lives14_dlg2[] = { /* 0x8168cbc * { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm throwing in my lot with\n#C5Team $t#R!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm throwing in my lot with\n{COLOR CYAN}Team {TEAM_NAME}{RESET}!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Get out there and save\nthe world!") }, JUMP_SCRIPT(END_TALK), }; @@ -12009,7 +12009,7 @@ static const struct ScriptCommand s_gs1_g34_s0_lives15_dlg2[] = { /* 0x8168d80 * { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You can do it!#W\nYou can stop the star from falling!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You can do it!{WAIT_PRESS}\nYou can stop the star from falling!") }, JUMP_SCRIPT(END_TALK), }; @@ -12057,7 +12057,7 @@ static const struct ScriptCommand s_gs1_g35_s0_lives2_dlg2[] = { /* 0x816901c */ WAIT(1), JUMPIF_ARRAY(EVENT_M01E10A_3N, 2, /* to label */ 0), SET_ARRAYVAL(EVENT_M01E10A_3N, 2, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0, don't let us\ndown!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0}, don't let us\ndown!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -12071,7 +12071,7 @@ static const struct ScriptCommand s_gs1_g35_s0_lives3_dlg2[] = { /* 0x81690ec */ WAIT(1), JUMPIF_ARRAY(EVENT_M01E10A_3N, 3, /* to label */ 0), SET_ARRAYVAL(EVENT_M01E10A_3N, 3, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm rooting for you!\nGo get 'em, $n0!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm rooting for you!\nGo get 'em, {NAME_0}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ { 0x3c, 0x19, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -12120,7 +12120,7 @@ static const struct ScriptCommand s_gs1_g35_s0_lives7_dlg2[] = { /* 0x816941c */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0, take care,\ndarling.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0}, take care,\ndarling.") }, JUMP_SCRIPT(END_TALK), }; @@ -12219,7 +12219,7 @@ static const struct ScriptCommand s_gs1_g36_s0_lives1_dlg2[] = { /* 0x81699e0 */ WAIT(1), JUMPIF_ARRAY(EVENT_M01E10A_5N, 1, /* to label */ 0), SET_ARRAYVAL(EVENT_M01E10A_5N, 1, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0, I'm certain\nthat you will succeed!\nGood luck!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0}, I'm certain\nthat you will succeed!\nGood luck!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -12298,7 +12298,7 @@ static const struct ScriptCommand s_gs1_g36_s0_lives7_dlg2[] = { /* 0x8169f3c */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Darling, you've only begun.#W\n$n0, keep your chin up!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Darling, you've only begun.{WAIT_PRESS}\n{NAME_0}, keep your chin up!") }, JUMP_SCRIPT(END_TALK), }; @@ -12307,7 +12307,7 @@ static const struct ScriptCommand s_gs1_g36_s0_lives8_dlg2[] = { /* 0x8169fdc */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh? There's a tower of\nclouds in the sky?!#W\nIt exists? Amazing!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh? There's a tower of\nclouds in the sky?!{WAIT_PRESS}\nIt exists? Amazing!") }, JUMP_SCRIPT(END_TALK), }; @@ -12401,7 +12401,7 @@ static const struct ScriptCommand s_gs1_g38_s0_lives0_dlg2[] = { /* 0x816a4d8 */ WAIT(1), JUMPIF_ARRAY(EVENT_M02E01A_2N, 0, /* to label */ 0), SET_ARRAYVAL(EVENT_M02E01A_2N, 0, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yes! You did it,\n$n0!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yes! You did it,\n{NAME_0}!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Now that peace has been\nrestored, I can sell my wares with\npeace of mind.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Thank you so much!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -12431,7 +12431,7 @@ static const struct ScriptCommand s_gs1_g38_s0_lives2_dlg2[] = { /* 0x816a6d8 */ WAIT(1), JUMPIF_ARRAY(EVENT_M02E01A_2N, 2, /* to label */ 0), SET_ARRAYVAL(EVENT_M02E01A_2N, 2, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Peace has returned!\nThank you, $n0!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Peace has returned!\nThank you, {NAME_0}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ { 0x3c, 0x13, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -12485,7 +12485,7 @@ static const struct ScriptCommand s_gs1_g38_s0_lives6_dlg2[] = { /* 0x816aa80 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You guys were amazing...#W\nTruly, you've impressed me.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You guys were amazing...{WAIT_PRESS}\nTruly, you've impressed me.") }, JUMP_SCRIPT(END_TALK), }; @@ -12494,7 +12494,7 @@ static const struct ScriptCommand s_gs1_g38_s0_lives7_dlg2[] = { /* 0x816ab1c */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You've done it,\n$n0!\nYou're the greatest! Really!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You've done it,\n{NAME_0}!\nYou're the greatest! Really!") }, JUMP_SCRIPT(END_TALK), }; @@ -12504,7 +12504,7 @@ static const struct ScriptCommand s_gs1_g38_s0_lives8_dlg2[] = { /* 0x816abb8 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x09, 0x0002, 0x00000022, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0! $n2!\nYou both hung in there! Great job!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0}! {NAME_2}!\nYou both hung in there! Great job!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...But you're still not up to\nour caliber!") }, JUMP_SCRIPT(END_TALK), }; @@ -12545,7 +12545,7 @@ static const struct ScriptCommand s_gs1_g38_s0_lives12_dlg2[] = { /* 0x816ae70 * WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We will soon be departing\nthe area.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sincerely, thank you for\nall the help and kindness you've given us.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0 and\n$n2, please do take care!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0} and\n{NAME_2}, please do take care!") }, JUMP_SCRIPT(END_TALK), }; @@ -12557,8 +12557,8 @@ static const struct ScriptCommand s_gs1_g38_s0_lives13_dlg2[] = { /* 0x816af9c * WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We will soon be leaving\nthis area.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We Jumpluff travel the\nworld, carried wherever the winds will\ntake us.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0 and\n$n2, we owe so much to you.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Thank you for everything.#W\nMay we meet again.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0} and\n{NAME_2}, we owe so much to you.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Thank you for everything.{WAIT_PRESS}\nMay we meet again.") }, JUMP_SCRIPT(END_TALK), }; @@ -12580,19 +12580,19 @@ static const struct ScriptCommand s_gs1_g38_s1_lives0_dlg0[] = { /* 0x816b150 */ { 0x2e, 0x0c, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0003, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I'm all shaken up with\nemotion!") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Knowing that the square will\nbe safe...#W That made me...#W\nIt left me choked up...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Knowing that the square will\nbe safe...{WAIT_PRESS} That made me...{WAIT_PRESS}\nIt left me choked up...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It isn't just you, my brother.#W\nI am likewise overcome with joy.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It isn't just you, my brother.{WAIT_PRESS}\nI am likewise overcome with joy.") }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" B-Brother...#W\nSniffle... My brother...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" B-Brother...{WAIT_PRESS}\nSniffle... My brother...") }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" $n0 and\n$n1...#W\nWe only have gratitude for you.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" {NAME_0} and\n{NAME_1}...{WAIT_PRESS}\nWe only have gratitude for you.") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Thank you ever so much!") }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, { 0x3c, 0x18, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -12623,7 +12623,7 @@ static const struct ScriptCommand s_gs1_g38_s1_lives1_dlg2[] = { /* 0x816b4d4 */ WAIT(1), JUMPIF_ARRAY(EVENT_M02E01A_2N, 0, /* to label */ 0), SET_ARRAYVAL(EVENT_M02E01A_2N, 0, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, my, you've outdone\nyourself, $n0!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, my, you've outdone\nyourself, {NAME_0}!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Because peace has been\nrestored, I may go about securely in my\nbusiness.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Thank you ever so much!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -12675,11 +12675,11 @@ static const struct ScriptCommand s_gs1_g39_s0_lives0_dlg2[] = { /* 0x816b7a0 */ COND_EQUAL(1, /* to label */ 2), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Thank you!") }, FANFARE_PLAY(204), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n1 \n#+became a member!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_1} \n{CENTER_ALIGN}became a member!") }, { 0xe1, 0x00, 0x00cc, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x3b, 0x1e, 0x0000, 0x00000000, 0x00000000, NULL }, - ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to $n1?")), + ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to {NAME_1}?")), CHOICE(/* label */ 3, _("*Yes.")), CHOICE(/* label */ 4, _("No.")), LABEL(3), /* = 0x03 */ @@ -12695,14 +12695,14 @@ static const struct ScriptCommand s_gs1_g39_s0_lives0_dlg2[] = { /* 0x816b7a0 */ JUMP_SCRIPT(END_TALK), LABEL(2), /* = 0x02 */ { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yes!\nThank you!") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...But there appears to be\nno room for me in my Friend Area...#W\nHow disappointing...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I would be able to join your\nrescue team if there were less Pokémon\nin #C4Sky Blue Plains#R...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...But there appears to be\nno room for me in my Friend Area...{WAIT_PRESS}\nHow disappointing...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I would be able to join your\nrescue team if there were less Pokémon\nin {COLOR GREEN}Sky Blue Plains{RESET}...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Please let me know then.") }, JUMP_SCRIPT(END_TALK), LABEL(1), /* = 0x01 */ { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, I see...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There still is no room for\nme in the Friend Area I must go to...\nHow disappointing...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I would be able to join your\nrescue team if there were less Pokémon\nin #C4Sky Blue Plains#R...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I would be able to join your\nrescue team if there were less Pokémon\nin {COLOR GREEN}Sky Blue Plains{RESET}...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Please let me know then.") }, JUMP_SCRIPT(END_TALK), }; @@ -12721,10 +12721,10 @@ static const struct ScriptCommand s_gs1_g40_s0_lives0_dlg2[] = { /* 0x816bc34 */ WAIT(1), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh? What's that?#W\n...Oh, you mean what happened at sea?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh? What's that?{WAIT_PRESS}\n...Oh, you mean what happened at sea?") }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wasn't drowning!#W\nSheesh, they're making up stories about\nme!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wasn't drowning!{WAIT_PRESS}\nSheesh, they're making up stories about\nme!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -12742,13 +12742,13 @@ static const struct ScriptCommand s_gs1_g40_s0_lives0_dlg2[] = { /* 0x816bc34 */ UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" See, I went out to the sea\nto frolic a while back.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You know?#W\nI was trying that Dive thing.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You know?{WAIT_PRESS}\nI was trying that Dive thing.") }, { 0x2e, 0x15, 0x0001, 0x00000003, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" So, I was having fun\ngoing underwater...#W\nAnd I got washed out to sea a bit.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" So, I was having fun\ngoing underwater...{WAIT_PRESS}\nAnd I got washed out to sea a bit.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" All of a sudden, these\nwicked clouds rolled in...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And before I knew it, there\nwas a full-blown storm raging!") }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There's more!#W\nA dungeon appeared in the sea!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There's more!{WAIT_PRESS}\nA dungeon appeared in the sea!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I was shocked witless!\nI got out of there fast!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But who'd've guessed it?\nA dungeon in a stormy sea!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -12760,7 +12760,7 @@ static const struct ScriptCommand s_gs1_g40_s0_lives0_dlg2[] = { /* 0x816bc34 */ FANFARE_PLAY2(468), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh?#W\nYou want to know more about that\ndungeon in the sea?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Huh?{WAIT_PRESS}\nYou want to know more about that\ndungeon in the sea?") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I vamoosed it out of there,\nso I can't tell you much...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -12768,7 +12768,7 @@ static const struct ScriptCommand s_gs1_g40_s0_lives0_dlg2[] = { /* 0x816bc34 */ FANFARE_PLAY2(465), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I know!#W\nMaybe Whiscash would know something.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I know!{WAIT_PRESS}\nMaybe Whiscash would know something.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yeah, that'd be best.\nGo talk to Whiscash.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, RESET_ARRAY(EVENT_LOCAL), @@ -12824,18 +12824,18 @@ static const struct ScriptCommand s_gs1_g41_s0_lives0_dlg2[] = { /* 0x816c540 */ WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It is said to be near the\n#C4Legendary Island#R Friend Area.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It hasn't caused any damage\nso far as I know...#W\nBut it does concern me.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It is said to be near the\n{COLOR GREEN}Legendary Island{RESET} Friend Area.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It hasn't caused any damage\nso far as I know...{WAIT_PRESS}\nBut it does concern me.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The #C4Legendary Island#R\nbelongs to your team.") }, - ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" Will you travel to the\n#C4Legendary Island#R and observe what is\ntaking place?")), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The {COLOR GREEN}Legendary Island{RESET}\nbelongs to your team.") }, + ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" Will you travel to the\n{COLOR GREEN}Legendary Island{RESET} and observe what is\ntaking place?")), CHOICE(/* label */ 2, _("Yes.")), CHOICE(/* label */ 3, _("No.")), LABEL(3), /* = 0x03 */ - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Feeling contrary today?#W\nWe need your help, please.") }, - ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" Will you travel to the\n#C4Legendary Island#R and observe what is\ntaking place?")), + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Feeling contrary today?{WAIT_PRESS}\nWe need your help, please.") }, + ASK3( TRUE, /*default*/ -1, /* speaker */ 1, _(" Will you travel to the\n{COLOR GREEN}Legendary Island{RESET} and observe what is\ntaking place?")), CHOICE(/* label */ 2, _("Yes.")), CHOICE(/* label */ 3, _("No.")), LABEL(2), /* = 0x02 */ @@ -12986,7 +12986,7 @@ static const struct ScriptCommand s_gs1_g43_s0_lives0_dlg0[] = { /* 0x816cf4c */ { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x07, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Never seen it before.#W\nIt's not from around these parts.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Never seen it before.{WAIT_PRESS}\nIt's not from around these parts.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, BGM_FADEOUT(120), WAIT(10), @@ -13000,14 +13000,14 @@ static const struct ScriptCommand s_gs1_g43_s0_lives0_dlg0[] = { /* 0x816cf4c */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" No more...#W\nI can't walk anymore...") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" No more...{WAIT_PRESS}\nI can't walk anymore...") }, { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" I'm falling down...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Goodness!#W\nIt needs help!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Goodness!{WAIT_PRESS}\nIt needs help!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -13115,8 +13115,8 @@ static const struct ScriptCommand s_gs1_g44_s0_lives0_dlg2[] = { /* 0x816d78c */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x09, 0x0001, 0x00000073, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I...#W\nI've given up on ever seeing the mirage\nPokémon...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I...#W\nI've reached the limit of my endurance...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I...{WAIT_PRESS}\nI've given up on ever seeing the mirage\nPokémon...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I...{WAIT_PRESS}\nI've reached the limit of my endurance...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm as tired as tired can\nbe...") }, JUMP_SCRIPT(END_TALK), }; @@ -13156,11 +13156,11 @@ static const struct ScriptCommand s_gs1_g45_s1_lives0_dlg0[] = { /* 0x816d940 */ { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...I see.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ............I see, I see.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Ah... Understood.\nSo, it is named Ho-Oh...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ah, I see indeed!#W\nTruly!#W Truly, I envy you!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ah, I see indeed!{WAIT_PRESS}\nTruly!{WAIT_PRESS} Truly, I envy you!") }, { 0x3b, 0x23, 0x0000, 0x00000000, 0x00000000, NULL }, COND_EQUAL(0, /* to label */ 1), COND_EQUAL(1, /* to label */ 1), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Wait!#W Huh?!#W\nYou are!#W You are the one-and-only Ho-Oh?!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Wait!{WAIT_PRESS} Huh?!{WAIT_PRESS}\nYou are!{WAIT_PRESS} You are the one-and-only Ho-Oh?!") }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, LABEL(1), /* = 0x01 */ @@ -13172,22 +13172,22 @@ static const struct ScriptCommand s_gs1_g45_s1_lives0_dlg0[] = { /* 0x816d940 */ { 0x3b, 0x23, 0x0000, 0x00000000, 0x00000000, NULL }, COND_EQUAL(2, /* to label */ 2), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Wroooooooah!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I...#W You...#W\nYou've made me open my eyes!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I...{WAIT_PRESS} You...{WAIT_PRESS}\nYou've made me open my eyes!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Well, they still look googly,\nbut still...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The lesson is: we mustn't\never give up!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Because if you give up,\nthat's when it ends!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Thank you!#W\nYou have inspired me to resume my\ntravels!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I will again travel the\nworld to find rare Pokémon, perhaps even\nbefore you.#W Farewell!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Thank you!{WAIT_PRESS}\nYou have inspired me to resume my\ntravels!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I will again travel the\nworld to find rare Pokémon, perhaps even\nbefore you.{WAIT_PRESS} Farewell!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, JUMP_LABEL(3), LABEL(2), /* = 0x02 */ { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Waaaaaaaaaaaah!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" My head...#W Is spinning...#W\nMy head's spinning...#W Waaaaaah!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" My head...{WAIT_PRESS} Is spinning...{WAIT_PRESS}\nMy head's spinning...{WAIT_PRESS} Waaaaaah!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -13198,15 +13198,15 @@ static const struct ScriptCommand s_gs1_g45_s1_lives0_dlg0[] = { /* 0x816d940 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x22, 0x01, 0x001e, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm so sorry I keeled over\nlike that...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And you even came to my\naid when I was down...#W\nThank you...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But I...#W\nI'm feeling overcome by emotion.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Never...#W\nNever did I expect to meet the mirage\nPokémon...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And you even came to my\naid when I was down...{WAIT_PRESS}\nThank you...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But I...{WAIT_PRESS}\nI'm feeling overcome by emotion.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Never...{WAIT_PRESS}\nNever did I expect to meet the mirage\nPokémon...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I feel giddily elated...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The lesson is we mustn't\never give up!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Because if you give up,\nthat's when it ends!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Thank you!#W\nYou have inspired me to resume my\ntravels!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Thank you!{WAIT_PRESS}\nYou have inspired me to resume my\ntravels!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" My meeting you...\nIt will be a memory I will cherish\nforever!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I will keep the memory...#W\nin a special place deep in my heart!#W\nFarewell!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I will keep the memory...{WAIT_PRESS}\nin a special place deep in my heart!{WAIT_PRESS}\nFarewell!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(3), /* = 0x03 */ { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -13441,7 +13441,7 @@ static const struct ScriptCommand s_gs1_g46_s0_lives0_dlg0[] = { /* 0x816e9f8 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hey, you came along at\nthe right time.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We're having a little\nargument about who the most powerful\nPokémon happens to be.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n0, what do you\nthink?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" {NAME_0}, what do you\nthink?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, ASK3( TRUE, /*default*/ -1, /* speaker */ 2, _(" Who do you think is the\nmost powerful Pokémon?")), CHOICE(/* label */ 5, _("Rayquaza.")), @@ -13457,12 +13457,12 @@ static const struct ScriptCommand s_gs1_g46_s0_lives0_dlg0[] = { /* 0x816e9f8 */ { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh, yeah?\n$n0, you think so too?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh, yeah?\n{NAME_0}, you think so too?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000002, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yeah, you bet it is!#W\nRayquaza is the toughest!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yeah, you bet it is!{WAIT_PRESS}\nRayquaza is the toughest!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, JUMP_LABEL(8), LABEL(6), /* = 0x06 */ @@ -13475,7 +13475,7 @@ static const struct ScriptCommand s_gs1_g46_s0_lives0_dlg0[] = { /* 0x816e9f8 */ { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Ah, yes!\n$n0! Isn't that right!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Ah, yes!\n{NAME_0}! Isn't that right!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -13502,7 +13502,7 @@ static const struct ScriptCommand s_gs1_g46_s0_lives0_dlg0[] = { /* 0x816e9f8 */ { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("...............................................................\n...............................................................\n...............................................................") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...#WWell, uh...#W\nI know you want to become tougher, but...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...{WAIT_PRESS}Well, uh...{WAIT_PRESS}\nI know you want to become tougher, but...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(60), { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I hope you never give up\nchasing your dreams.") }, @@ -13528,7 +13528,7 @@ static const struct ScriptCommand s_gs1_g46_s0_lives0_dlg0[] = { /* 0x816e9f8 */ { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Somewhere in the world is\na Pokémon that was made for fighting.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" A Pokémon...#W\nmade for fighting?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" A Pokémon...{WAIT_PRESS}\nmade for fighting?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Yup.") }, @@ -13546,12 +13546,12 @@ static const struct ScriptCommand s_gs1_g46_s0_lives0_dlg0[] = { /* 0x816e9f8 */ WAIT(10), { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Rumors say...#W\nit is storing its power...") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Rumors say...{WAIT_PRESS}\nit is storing its power...") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" They say it is sleeping in\na dungeon somewhere...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, BGM_FADEOUT(60), WAIT(30), - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" That rumor...#W\nIt's true...") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" That rumor...{WAIT_PRESS}\nIt's true...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -13567,7 +13567,7 @@ static const struct ScriptCommand s_gs1_g46_s0_lives0_dlg0[] = { /* 0x816e9f8 */ WAIT(120), { 0x62, 0x00, 0x0080, 0x00000010, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n6...#W\nAnd $n7...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" {NAME_6}...{WAIT_PRESS}\nAnd {NAME_7}...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -13577,12 +13577,12 @@ static const struct ScriptCommand s_gs1_g46_s0_lives0_dlg0[] = { /* 0x816e9f8 */ { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh my gosh!\nWhat happened to you?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They're hurt bad...#W\nWhat exactly happened?!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They're hurt bad...{WAIT_PRESS}\nWhat exactly happened?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x02, 0x0006, 0x00000003, 0x00000000, NULL }, { 0x2e, 0x0c, 0x0007, 0x00000003, 0x00000000, NULL }, - { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" Urgh...#W\nIt's what that $n4 was saying...") }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" Urgh...{WAIT_PRESS}\nIt's what that {NAME_4} was saying...") }, { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" ...We were wiped out by\nthat Pokémon...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -13596,9 +13596,9 @@ static const struct ScriptCommand s_gs1_g46_s0_lives0_dlg0[] = { /* 0x816e9f8 */ { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Wh-what did you say?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Grgh... There's no mistake...#W\nIt said it was born to fight...") }, - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" ...But that Pokémon's\npower...#W\nThere was nothing fake about it...") }, - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" ...It really was the most\npowerful...#W\n...Gfah!") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Grgh... There's no mistake...{WAIT_PRESS}\nIt said it was born to fight...") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" ...But that Pokémon's\npower...{WAIT_PRESS}\nThere was nothing fake about it...") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" ...It really was the most\npowerful...{WAIT_PRESS}\n...Gfah!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, @@ -13609,17 +13609,17 @@ static const struct ScriptCommand s_gs1_g46_s0_lives0_dlg0[] = { /* 0x816e9f8 */ { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ch-$n6!\nAre you OK?!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Ch-{NAME_6}!\nAre you OK?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), WAIT(60), - { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" There is a cave...\nfar in the west...#W\nIt's there...") }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" There is a cave...\nfar in the west...{WAIT_PRESS}\nIt's there...") }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0x93, 0x04, 0x000a, 0x00000068, 0x00000000, NULL }, - { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" I never want...#W\nto go back again...#W Gfwoh!") }, + { 0x34, 0x00, 0x0007, 0x00000000, 0x00000000, _(" I never want...{WAIT_PRESS}\nto go back again...{WAIT_PRESS} Gfwoh!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000c, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -13629,7 +13629,7 @@ static const struct ScriptCommand s_gs1_g46_s0_lives0_dlg0[] = { /* 0x816e9f8 */ { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0x56, 0x00, 0x0000, 0x0000005b, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh, my gosh!\nBlastoise went down, too!#W\nThey need help now!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh, my gosh!\nBlastoise went down, too!{WAIT_PRESS}\nThey need help now!") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I'll go get someone!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -13639,11 +13639,11 @@ static const struct ScriptCommand s_gs1_g46_s0_lives0_dlg0[] = { /* 0x816e9f8 */ { 0x2e, 0x0c, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x12, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Wow, it really exists...#W\nA Pokémon that tough...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Wow, it really exists...{WAIT_PRESS}\nA Pokémon that tough...") }, { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0x93, 0x04, 0x000a, 0x0000004d, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...But, you know?#W\nSo we now know that Pokémon is in the\n#CDWestern Cave#R...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...But, you know?{WAIT_PRESS}\nSo we now know that Pokémon is in the\n{COLOR YELLOW_D}Western Cave{RESET}...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I still don't feel like going\nout there...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Going anywhere like that'd\nbe too scary by half!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -13662,10 +13662,10 @@ static const struct ScriptCommand s_gs1_g46_s0_lives0_dlg0[] = { /* 0x816e9f8 */ { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The cave shunned\n#+by all out of fear...") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The cave shunned\n{CENTER_ALIGN}by all out of fear...") }, BGM_STOP, FANFARE_PLAY(205), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The #CDWestern Cave#R\n#+is now open for exploration!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The {COLOR YELLOW_D}Western Cave{RESET}\n{CENTER_ALIGN}is now open for exploration!") }, { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), @@ -14053,8 +14053,8 @@ static const struct ScriptCommand s_gs1_g47_s0_lives0_dlg0[] = { /* 0x8171d48 */ { 0x6a, 0x00, 0x0100, 0x00000050, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey, $n0.\nEveryone's gathered around.")), - VARIANT_DEFAULT(_(" Look, $n0.\nEveryone's gathered around.")), + VARIANT(/* == */ 1, _(" Hey, {NAME_0}.\nEveryone's gathered around.")), + VARIANT_DEFAULT(_(" Look, {NAME_0}.\nEveryone's gathered around.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, @@ -14094,7 +14094,7 @@ static const struct ScriptCommand s_gs1_g47_s0_lives0_dlg0[] = { /* 0x8171d48 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, { 0x2e, 0x03, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" My bank wasn't hit, but...#W\nThese are frightening times.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" My bank wasn't hit, but...{WAIT_PRESS}\nThese are frightening times.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -14104,7 +14104,7 @@ static const struct ScriptCommand s_gs1_g47_s0_lives0_dlg0[] = { /* 0x8171d48 */ { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" No problem.#W\nNothing gets stolen from under my eye.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" No problem.{WAIT_PRESS}\nNothing gets stolen from under my eye.") }, { 0x2e, 0x0f, 0x0005, 0x00000001, 0x00000000, NULL }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" This mama's not about to\nmake a stupid mistake like that! Kakakah!") }, { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, @@ -14114,7 +14114,7 @@ static const struct ScriptCommand s_gs1_g47_s0_lives0_dlg0[] = { /* 0x8171d48 */ { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0c, 0x0002, 0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You're insinuating...#W\nthat we were robbed for being careless?!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You're insinuating...{WAIT_PRESS}\nthat we were robbed for being careless?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, @@ -14127,19 +14127,19 @@ static const struct ScriptCommand s_gs1_g47_s0_lives0_dlg0[] = { /* 0x8171d48 */ { 0x2e, 0x0f, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Now wait.") }, WAIT(10), - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Tell me, Kecleon.#W\nYou saw...this thief?") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Tell me, Kecleon.{WAIT_PRESS}\nYou saw...this thief?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0c, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hmm...?#W\nNo, not very clearly, I didn't.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hmm...?{WAIT_PRESS}\nNo, not very clearly, I didn't.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" When I saw it, it had\nalready taken off...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Taken off?#W\nYou mean it flew away?") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Taken off?{WAIT_PRESS}\nYou mean it flew away?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes.") }, @@ -14156,7 +14156,7 @@ static const struct ScriptCommand s_gs1_g47_s0_lives0_dlg0[] = { /* 0x8171d48 */ WAIT(10), { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" The yonder direction...#W\nThat would be the Northern Range...") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" The yonder direction...{WAIT_PRESS}\nThat would be the Northern Range...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, @@ -14164,21 +14164,21 @@ static const struct ScriptCommand s_gs1_g47_s0_lives0_dlg0[] = { /* 0x8171d48 */ { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" So we'll need to investigate\nthis matter properly.") }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x11, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes. I beg for justice.#W\nMy business faces ruination.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes. I beg for justice.{WAIT_PRESS}\nMy business faces ruination.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0.\nWant to go check it out?")), - VARIANT_DEFAULT(_(" $n0.\nWant to look into this?")), + VARIANT(/* == */ 1, _(" {NAME_0}.\nWant to go check it out?")), + VARIANT_DEFAULT(_(" {NAME_0}.\nWant to look into this?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0's team took on\n#+the case of pursuing the burglar\n#+that struck Kecleon's shop.") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The burglar's alleged\n#+getaway spot...") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0}'s team took on\n{CENTER_ALIGN}the case of pursuing the burglar\n{CENTER_ALIGN}that struck Kecleon's shop.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The burglar's alleged\n{CENTER_ALIGN}getaway spot...") }, BGM_STOP, FANFARE_PLAY(205), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The #CDNorthern Range#R\n#+is now open for investigation!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The {COLOR YELLOW_D}Northern Range{RESET}\n{CENTER_ALIGN}is now open for investigation!") }, { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -14376,9 +14376,9 @@ static const struct ScriptCommand s_gs1_g48_s0_lives0_dlg0[] = { /* 0x8173394 */ WAIT(10), MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" This is Pokémon Square.")), - VARIANT(/* == */ 1, _(" You passed out in the\n#CDNorthern Range#R, so we brought you back\nwith us.")), + VARIANT(/* == */ 1, _(" You passed out in the\n{COLOR YELLOW_D}Northern Range{RESET}, so we brought you back\nwith us.")), VARIANT_DEFAULT(_(" This is Pokémon Square.")), - VARIANT_DEFAULT(_(" You fainted in the #CDNorthern\nRange#R, so we brought you back here.")), + VARIANT_DEFAULT(_(" You fainted in the {COLOR YELLOW_D}Northern\nRange{RESET}, so we brought you back here.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -14393,13 +14393,13 @@ static const struct ScriptCommand s_gs1_g48_s0_lives0_dlg0[] = { /* 0x8173394 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0d, 0x0004, 0x00000000, 0x00000000, NULL }, { 0x2f, 0x00, 0x0004, -0x00000003, 0x00000001, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Now wait.#W\nThere must be a good reason for this.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Now wait.{WAIT_PRESS}\nThere must be a good reason for this.") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" We should at least hear\nthat.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" ...!#W That's right!\nI have to get my sister...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" ...!{WAIT_PRESS} That's right!\nI have to get my sister...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, @@ -14423,35 +14423,35 @@ static const struct ScriptCommand s_gs1_g48_s0_lives0_dlg0[] = { /* 0x8173394 */ BGM_SWITCH(114), WAIT(60), { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" I have a younger sister.\nHer name is Latias.") }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Latias...#W\nCrashed somewhere in the #CDPitfall Valley#R...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Latias...{WAIT_PRESS}\nCrashed somewhere in the {COLOR YELLOW_D}Pitfall Valley{RESET}...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" What?!#W\nThe #CDPitfall Valley#R?!") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" What?!{WAIT_PRESS}\nThe {COLOR YELLOW_D}Pitfall Valley{RESET}?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" ...What is that?#W\nWhat's the #CDPitfall Valley#R?")), - VARIANT_DEFAULT(_(" ...What is that?#W\nWhat is the #CDPitfall Valley#R?")), + VARIANT(/* == */ 1, _(" ...What is that?{WAIT_PRESS}\nWhat's the {COLOR YELLOW_D}Pitfall Valley{RESET}?")), + VARIANT_DEFAULT(_(" ...What is that?{WAIT_PRESS}\nWhat is the {COLOR YELLOW_D}Pitfall Valley{RESET}?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It is near the #CDNorthern\nRange#R.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They say that anyone so\nunlucky to fall into the #CDPitfall Valley#R...#W\nwill never again emerge.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" It is near the {COLOR YELLOW_D}Northern\nRange{RESET}.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" They say that anyone so\nunlucky to fall into the {COLOR YELLOW_D}Pitfall Valley{RESET}...{WAIT_PRESS}\nwill never again emerge.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Latias and I were flying\nover the Northern Range.") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" When suddenly, what\nappeared to be a meteorite struck\nLatias on the wing...") }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Her wing shattered by the\nblow, Latias tumbled down into the\ndepths of the #CDPitfall Valley#R...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Her wing shattered by the\nblow, Latias tumbled down into the\ndepths of the {COLOR YELLOW_D}Pitfall Valley{RESET}...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -14460,12 +14460,12 @@ static const struct ScriptCommand s_gs1_g48_s0_lives0_dlg0[] = { /* 0x8173394 */ { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" A meteorite?!") }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0!#W\nDo you think maybe that it's a chunk of\nthe blown-up meteor?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0}!{WAIT_PRESS}\nDo you think maybe that it's a chunk of\nthe blown-up meteor?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" I went to the #CDPitfall Valley#R\nin hopes of rescuing my sister, but...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" I went to the {COLOR YELLOW_D}Pitfall Valley{RESET}\nin hopes of rescuing my sister, but...") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" I made little headway...\nI wasn't up to the task...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -14473,11 +14473,11 @@ static const struct ScriptCommand s_gs1_g48_s0_lives0_dlg0[] = { /* 0x8173394 */ { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" So that drove you to steal\nTechnical Machines...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Yes.#W\nI intended to make amends after I saved\nmy sister...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Yes.{WAIT_PRESS}\nI intended to make amends after I saved\nmy sister...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" But that doesn't mean I can\nget away with thievery.#W\nIt was wrong, and I'm sorry.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" But that doesn't mean I can\nget away with thievery.{WAIT_PRESS}\nIt was wrong, and I'm sorry.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, @@ -14487,7 +14487,7 @@ static const struct ScriptCommand s_gs1_g48_s0_lives0_dlg0[] = { /* 0x8173394 */ { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh... Oh, my!#W\nIt is not a problem! Not a problem at all!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh... Oh, my!{WAIT_PRESS}\nIt is not a problem! Not a problem at all!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" For a reason so compelling,\nit can't be helped. Hahaha.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -14496,32 +14496,32 @@ static const struct ScriptCommand s_gs1_g48_s0_lives0_dlg0[] = { /* 0x8173394 */ { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x0002, 0x00000003, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" However...#W\nEven if you were to plumb the depths of\n#CDPitfall Valley#R...") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" However...{WAIT_PRESS}\nEven if you were to plumb the depths of\n{COLOR YELLOW_D}Pitfall Valley{RESET}...") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" What would you do then?") }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" The nether regions of the\n#CDPitfall Valley#R are a void...") }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You will wander forever,\nneither falling...#Wnor living...#W\nWhat then?") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" The nether regions of the\n{COLOR YELLOW_D}Pitfall Valley{RESET} are a void...") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You will wander forever,\nneither falling...{WAIT_PRESS}nor living...{WAIT_PRESS}\nWhat then?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" ............#W\nSo much time has passed since my sister\ncrashed.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}\nSo much time has passed since my sister\ncrashed.") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Latias hasn't been able to\nclimb out of the depths.\nShe is all alone down there.") }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Even if I end up like her,\nunable to escape...#W\nTwo would be better than one.") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Even if I end up like her,\nunable to escape...{WAIT_PRESS}\nTwo would be better than one.") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Latias wouldn't have to\nbe so alone...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" How foolish...#W\nDo you think Latias wishes for that?") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" How foolish...{WAIT_PRESS}\nDo you think Latias wishes for that?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" But...#W\nIt's a place you can never escape, right?")), + VARIANT(/* == */ 1, _(" But...{WAIT_PRESS}\nIt's a place you can never escape, right?")), VARIANT(/* == */ 1, _(" How are we supposed to pull\noff a rescue from a place like that...?")), - VARIANT_DEFAULT(_(" But...#W\nIt's a place you can't escape, isn't it?")), + VARIANT_DEFAULT(_(" But...{WAIT_PRESS}\nIt's a place you can't escape, isn't it?")), VARIANT_DEFAULT(_(" I don't see how we could\ndo a rescue in a place like that...")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" No...#W There is...#W\nThere is but one possible way...") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" No...{WAIT_PRESS} There is...{WAIT_PRESS}\nThere is but one possible way...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, @@ -14532,42 +14532,42 @@ static const struct ScriptCommand s_gs1_g48_s0_lives0_dlg0[] = { /* 0x8173394 */ CALL_SCRIPT(SHOCK_FUNC), { 0x91, 0x04, 0x0001, 0x00000002, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You can?!#W\nHow?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You can?!{WAIT_PRESS}\nHow?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" You already have the means\nin your possession.") }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" The #CITeleport Gem#R.#W\nUse that.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" The {COLOR GREEN_I}Teleport Gem{RESET}.{WAIT_PRESS}\nUse that.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The #CITeleport Gem#R?#W\nThe one we used to get up to the sky\nwhere Rayquaza lives?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The {COLOR GREEN_I}Teleport Gem{RESET}?{WAIT_PRESS}\nThe one we used to get up to the sky\nwhere Rayquaza lives?") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But it got broken in the\nfalling star's explosion.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" While it is unlikely to\ncarry you to the sky again, it should\nbe able to carry you a shorter distance.") }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" If you were to use the\n#CITeleport Gem#R from deep within the #CDPitfall\nValley#R...") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" If you were to use the\n{COLOR GREEN_I}Teleport Gem{RESET} from deep within the {COLOR YELLOW_D}Pitfall\nValley{RESET}...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x02, 0x0001, 0x00000009, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" That's it!#W\nIf we did that, we could escape with\nLatias!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" That's it!{WAIT_PRESS}\nIf we did that, we could escape with\nLatias!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0!#W\nThis is a rescue that only we can do!")), + VARIANT(/* == */ 1, _(" {NAME_0}!{WAIT_PRESS}\nThis is a rescue that only we can do!")), VARIANT(/* == */ 1, _(" Let's get out there and\nhelp Latias!")), - VARIANT(/* == */ 3, _(" $n0!#W\nThis is a rescue that only we can do!")), + VARIANT(/* == */ 3, _(" {NAME_0}!{WAIT_PRESS}\nThis is a rescue that only we can do!")), VARIANT(/* == */ 3, _(" Let's go get Latias!")), - VARIANT_DEFAULT(_(" $n0!#W\nThis is a rescue that only we can do!")), + VARIANT_DEFAULT(_(" {NAME_0}!{WAIT_PRESS}\nThis is a rescue that only we can do!")), VARIANT_DEFAULT(_(" Let's go rescue Latias!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), BGM_STOP, FANFARE_PLAY(205), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 gained access to\n#+the #CDPitfall Valley#R!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0} gained access to\n{CENTER_ALIGN}the {COLOR YELLOW_D}Pitfall Valley{RESET}!") }, { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -14789,7 +14789,7 @@ static const struct ScriptCommand s_gs1_g49_s0_lives0_dlg0[] = { /* 0x81757f8 */ { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" $n6!") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" {NAME_6}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x000b, 0x00000000, 0x00000000, NULL }, @@ -14825,7 +14825,7 @@ static const struct ScriptCommand s_gs1_g49_s0_lives0_dlg0[] = { /* 0x81757f8 */ { 0x2e, 0x03, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" My sister is safe, all\nthanks to you.") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" To be honest, I came close\nto giving up...") }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" But we're back together\nagain...#W\nIt's happiness beyond words...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" But we're back together\nagain...{WAIT_PRESS}\nIt's happiness beyond words...") }, { 0x2e, 0x15, 0x0005, 0x00000001, 0x00000000, NULL }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" We owe you so much\ngratitude! Thank you!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -14834,13 +14834,13 @@ static const struct ScriptCommand s_gs1_g49_s0_lives0_dlg0[] = { /* 0x81757f8 */ WAIT(10), { 0x2e, 0x02, 0x0001, 0x00000009, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey, now, that's OK.#W\nIt's even a little embarrassing when you\nput it that way, hahaha!")), - VARIANT_DEFAULT(_(" It's OK, really.#W\nWhen you put it that way, it's even a little\nembarrassing. Hahaha.")), + VARIANT(/* == */ 1, _(" Hey, now, that's OK.{WAIT_PRESS}\nIt's even a little embarrassing when you\nput it that way, hahaha!")), + VARIANT_DEFAULT(_(" It's OK, really.{WAIT_PRESS}\nWhen you put it that way, it's even a little\nembarrassing. Hahaha.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" However...\nWe have no money or any other way of\nrepaying your kindness.") }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" So, and it's the least we\ncan do...#W\nMay we join your rescue team?") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" So, and it's the least we\ncan do...{WAIT_PRESS}\nMay we join your rescue team?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -14853,13 +14853,13 @@ static const struct ScriptCommand s_gs1_g49_s0_lives0_dlg0[] = { /* 0x81757f8 */ { 0x91, 0x04, 0x0002, 0x00000002, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0006, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" We would like to join #C5Team\n$t#R and help with your rescue\nwork.") }, + { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" We would like to join {COLOR CYAN}Team\n{TEAM_NAME}{RESET} and help with your rescue\nwork.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x0001, 0x00000001, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Would that work?#W\nWould you be willing to accept us on\nyour rescue team?") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Would that work?{WAIT_PRESS}\nWould you be willing to accept us on\nyour rescue team?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -14867,8 +14867,8 @@ static const struct ScriptCommand s_gs1_g49_s0_lives0_dlg0[] = { /* 0x81757f8 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, ASK3_VAR( TRUE, /*default*/ -1, /* speaker */ 1, PARTNER_TALK_KIND), - VARIANT(/* == */ 1, _(" $n0, what do you\nsay?#W\nShould we let Latios and Latias join?")), - VARIANT_DEFAULT(_(" $n0, what should\nwe do?#W\nDo we let Latios and Latias join?")), + VARIANT(/* == */ 1, _(" {NAME_0}, what do you\nsay?{WAIT_PRESS}\nShould we let Latios and Latias join?")), + VARIANT_DEFAULT(_(" {NAME_0}, what should\nwe do?{WAIT_PRESS}\nDo we let Latios and Latias join?")), CHOICE(/* label */ 10, _("Yes.")), CHOICE(/* label */ 11, _("No.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -14915,7 +14915,7 @@ static const struct ScriptCommand s_gs1_g49_s0_lives0_dlg0[] = { /* 0x81757f8 */ { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Latios and Latias are\nPokémon so rarely seen that they are\nconsidered mythical.") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" If you part ways with them\nnow, you may never see them again.") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Strike that.\nYou will never again see them.") }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Even knowing that...#W\nEven if you would never see them again,\nyou will still not accept them?") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Even knowing that...{WAIT_PRESS}\nEven if you would never see them again,\nyou will still not accept them?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, @@ -14927,8 +14927,8 @@ static const struct ScriptCommand s_gs1_g49_s0_lives0_dlg0[] = { /* 0x81757f8 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0, think good\nand hard about this.")), - VARIANT_DEFAULT(_(" $n0, give it good\nthought.")), + VARIANT(/* == */ 1, _(" {NAME_0}, think good\nand hard about this.")), + VARIANT_DEFAULT(_(" {NAME_0}, give it good\nthought.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, @@ -14976,15 +14976,15 @@ static const struct ScriptCommand s_gs1_g49_s0_lives0_dlg0[] = { /* 0x81757f8 */ { 0x34, 0x00, 0x0006, 0x00000000, 0x00000000, _(" Delighted to join!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+And thus...") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+#C5Team $t#R was\n#+joined by $n5 and $n6!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}And thus...") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{COLOR CYAN}Team {TEAM_NAME}{RESET} was\n{CENTER_ALIGN}joined by {NAME_5} and {NAME_6}!") }, BGM_STOP, FANFARE_PLAY(204), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n5 and $n6\n#+became team members!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_5} and {NAME_6}\n{CENTER_ALIGN}became team members!") }, { 0xe1, 0x00, 0x00cc, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x3b, 0x24, 0x0000, 0x00000000, 0x00000000, NULL }, - ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to $n5?")), + ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to {NAME_5}?")), CHOICE(/* label */ 17, _("*Yes.")), CHOICE(/* label */ 18, _("No.")), LABEL(17), /* = 0x11 */ @@ -14993,7 +14993,7 @@ static const struct ScriptCommand s_gs1_g49_s0_lives0_dlg0[] = { /* 0x81757f8 */ { 0x3b, 0x25, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x3b, 0x26, 0x0000, 0x00000000, 0x00000000, NULL }, - ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to $n6?")), + ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to {NAME_6}?")), CHOICE(/* label */ 19, _("*Yes.")), CHOICE(/* label */ 20, _("No.")), LABEL(19), /* = 0x13 */ @@ -15262,12 +15262,12 @@ static const struct ScriptCommand s_gs1_g50_s0_lives0_dlg2[] = { /* 0x8177b2c */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), SET_ARRAYVAL(EVENT_S07E01, 0, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hey, have you heard?\nAbout the #CDBuried Relic#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hey, have you heard?\nAbout the {COLOR YELLOW_D}Buried Relic{RESET}.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" They're rumoring that there\nare treasures in there.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And they say the treasures\naren't just lying around on the ground.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Know what they're saying?#W\nThey're saying that treasures are even\nembedded in the walls!") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you knock down the walls,\nthere might be treasures galore!#W\nSounds really enticing, eh?") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I think Shiftry knows where\nthe #CDBuried Relic#R is.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Know what they're saying?{WAIT_PRESS}\nThey're saying that treasures are even\nembedded in the walls!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you knock down the walls,\nthere might be treasures galore!{WAIT_PRESS}\nSounds really enticing, eh?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I think Shiftry knows where\nthe {COLOR YELLOW_D}Buried Relic{RESET} is.") }, JUMP_SCRIPT(END_TALK), }; @@ -15278,7 +15278,7 @@ static const struct ScriptCommand s_gs1_g50_s0_lives1_dlg2[] = { /* 0x8177da0 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), SET_ARRAYVAL(EVENT_S07E01, 1, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I heard rumors that\nPokémon from ancient times live in the\n#CDBuried Relic#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I heard rumors that\nPokémon from ancient times live in the\n{COLOR YELLOW_D}Buried Relic{RESET}.") }, JUMP_SCRIPT(END_TALK), }; @@ -15289,8 +15289,8 @@ static const struct ScriptCommand s_gs1_g50_s0_lives2_dlg2[] = { /* 0x8177e60 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), SET_ARRAYVAL(EVENT_S07E01, 2, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I've heard that there are\ntreasures to be found in the relic.#W\nI wonder how much is true?") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But, I must admit...#W\nI do get a certain thrill from it!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I've heard that there are\ntreasures to be found in the relic.{WAIT_PRESS}\nI wonder how much is true?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But, I must admit...{WAIT_PRESS}\nI do get a certain thrill from it!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I guess there's a sense of\ndrama and adventure about it.") }, JUMP_SCRIPT(END_TALK), }; @@ -15315,18 +15315,18 @@ static const struct ScriptCommand s_gs1_g50_s0_lives3_dlg2[] = { /* 0x817803c */ FANFARE_PLAY2(465), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What's that?\nWhere is the #CDBuried Relic#R?") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The #CDBuried Relic#R is deep\nin the jungle to the southeast.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What's that?\nWhere is the {COLOR YELLOW_D}Buried Relic{RESET}?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The {COLOR YELLOW_D}Buried Relic{RESET} is deep\nin the jungle to the southeast.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Are you dreaming about\nthe treasures too?") }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Kukukuh...#W Me too!#W\nBest of luck, compadre!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Kukukuh...{WAIT_PRESS} Me too!{WAIT_PRESS}\nBest of luck, compadre!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, JUMPIF_SCENE_GT(SCENARIO_SUB7, 49, 2, /* to label */ 1), WAIT(30), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Leaving aside the disturbing fact that\n#+$n1 made them compadres...") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Leaving aside the disturbing fact that\n{CENTER_ALIGN}{NAME_1} made them compadres...") }, FANFARE_PLAY(205), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0's team gained\n#+access to the #CDBuried Relic#R!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0}'s team gained\n{CENTER_ALIGN}access to the {COLOR YELLOW_D}Buried Relic{RESET}!") }, { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, JUMPIF_SCENE_GT(SCENARIO_SUB7, 49, 2, /* to label */ 1), @@ -15378,7 +15378,7 @@ static const struct ScriptCommand s_gs1_g50_s0_lives5_dlg2[] = { /* 0x8178564 */ WAIT(1), JUMPIF_ARRAY(EVENT_S07E01, 6, /* to label */ 0), SET_ARRAYVAL(EVENT_S07E01, 6, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, isn't it exciting?#W\nWhy, I wouldn't mind closing up the shop\nso I could go treasure hunting!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, isn't it exciting?{WAIT_PRESS}\nWhy, I wouldn't mind closing up the shop\nso I could go treasure hunting!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And now...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ @@ -15409,7 +15409,7 @@ static const struct ScriptCommand s_gs1_g50_s0_lives7_dlg2[] = { /* 0x8178780 */ WAIT(1), JUMPIF_ARRAY(EVENT_S07E01, 8, /* to label */ 0), SET_ARRAYVAL(EVENT_S07E01, 8, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wonder what kinds of\nfriends are in the #CDBuried Relic#R?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wonder what kinds of\nfriends are in the {COLOR YELLOW_D}Buried Relic{RESET}?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ { 0x3c, 0x1b, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -15424,7 +15424,7 @@ static const struct ScriptCommand s_gs1_g50_s0_lives8_dlg2[] = { /* 0x8178870 */ WAIT(1), JUMPIF_ARRAY(EVENT_S07E01, 9, /* to label */ 0), SET_ARRAYVAL(EVENT_S07E01, 9, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You're going too, aren't you?\nTo the #CDBuried Relic#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You're going too, aren't you?\nTo the {COLOR YELLOW_D}Buried Relic{RESET}.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" This mama's behind you all\nthe way! Go for it!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" OK...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -15441,7 +15441,7 @@ static const struct ScriptCommand s_gs1_g50_s0_lives9_dlg2[] = { /* 0x81789bc */ WAIT(1), JUMPIF_ARRAY(EVENT_S07E01, 10, /* to label */ 0), SET_ARRAYVAL(EVENT_S07E01, 10, 1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What treasures can be\nfound in the #CDBuried Relic#R, I wonder?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What treasures can be\nfound in the {COLOR YELLOW_D}Buried Relic{RESET}, I wonder?") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It makes me drool thinking\nwhat I could swallow in a place like that.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ @@ -15455,9 +15455,9 @@ static const struct ScriptCommand s_gs1_g51_s0_lives0_dlg2[] = { /* 0x8178b08 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I think Gengar headed off\nto #CDMt. Freeze#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I think Gengar headed off\nto {COLOR YELLOW_D}Mt. Freeze{RESET}.") }, { 0x2e, 0x02, 0x0001, 0x00000044, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I have heard it is a place\nthat is very difficult.#W\nWill he be OK?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I have heard it is a place\nthat is very difficult.{WAIT_PRESS}\nWill he be OK?") }, SCENARIO_CALC(SCENARIO_SUB9, 53, 4), JUMP_SCRIPT(END_TALK), }; @@ -15481,7 +15481,7 @@ static const struct ScriptCommand s_gs1_g52_s0_lives0_dlg2[] = { /* 0x8178d0c */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I have done a lot of\nthinking...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I would like to join #C5Team \n$t#R and help on rescues.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I would like to join {COLOR CYAN}Team \n{TEAM_NAME}{RESET} and help on rescues.") }, ASK3(FALSE, /*default*/ -1, /* speaker */ 1, _(" Please, may I become\na member?")), CHOICE(/* label */ 2, _("Yes.")), CHOICE(/* label */ 3, _("No.")), @@ -15489,16 +15489,16 @@ static const struct ScriptCommand s_gs1_g52_s0_lives0_dlg2[] = { /* 0x8178d0c */ { 0x3b, 0x30, 0x0000, 0x00000000, 0x00000000, NULL }, COND_EQUAL(1, /* to label */ 4), { 0x2e, 0x02, 0x0001, 0x00000041, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Thank you!#W\nI promise to do my best for the team!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Thank you!{WAIT_PRESS}\nI promise to do my best for the team!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), FANFARE_PLAY(204), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n1 became the\n#+rescue team's newest member!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_1} became the\n{CENTER_ALIGN}rescue team's newest member!") }, { 0xe1, 0x00, 0x00cc, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x3b, 0x31, 0x0000, 0x00000000, 0x00000000, NULL }, - ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to $n1?")), + ASK1(FALSE, /*default*/ -1, /* speaker */ -1, _("Give a nickname to {NAME_1}?")), CHOICE(/* label */ 6, _("*Yes.")), CHOICE(/* label */ 7, _("No.")), LABEL(6), /* = 0x06 */ @@ -15516,14 +15516,14 @@ static const struct ScriptCommand s_gs1_g52_s0_lives0_dlg2[] = { /* 0x8178d0c */ { 0x2e, 0x02, 0x0001, 0x00000041, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yes!\nThank you!") }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...However, there seems to\nbe no space for me in my Friend Area...#W\nThis is disappointing...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I could join your rescue\nteam if there were less Pokémon in\n#C4Sky Blue Plains#R...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...However, there seems to\nbe no space for me in my Friend Area...{WAIT_PRESS}\nThis is disappointing...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I could join your rescue\nteam if there were less Pokémon in\n{COLOR GREEN}Sky Blue Plains{RESET}...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Please tell me then.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, JUMP_SCRIPT(END_TALK), LABEL(3), /* = 0x03 */ { 0x2e, 0x15, 0x0001, 0x00000042, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...I see.#W\nThis is disappointing...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...I see.{WAIT_PRESS}\nThis is disappointing...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, JUMP_SCRIPT(END_TALK), }; diff --git a/src/data/ground/ground_data_t01p02a_station.h b/src/data/ground/ground_data_t01p02a_station.h index 9b1fecaa2..5ac12a2be 100644 --- a/src/data/ground/ground_data_t01p02a_station.h +++ b/src/data/ground/ground_data_t01p02a_station.h @@ -196,8 +196,8 @@ static const struct ScriptCommand s_gs2_g0_s2_evt0_sref_script[] = { /* 0x817df3 { 0x01, 0x00, -0x0001, 0x00000008, 0x00000000, NULL }, HALT, LABEL(0), /* = 0x00 */ - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The entrance is too narrow.\n#+There is only room for one.") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Come alone to enter!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The entrance is too narrow.\n{CENTER_ALIGN}There is only room for one.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Come alone to enter!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, RET, }; @@ -243,7 +243,7 @@ static const struct ScriptCommand s_gs2_g1_s0_lives0_dlg2[] = { /* 0x817e130 */ WAIT(1), { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I went into the cave, but...#W\nI couldn't evolve into Butterfree.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I went into the cave, but...{WAIT_PRESS}\nI couldn't evolve into Butterfree.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That's too bad, Metapod.") }, @@ -251,7 +251,7 @@ static const struct ScriptCommand s_gs2_g1_s0_lives0_dlg2[] = { /* 0x817e130 */ { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If you train and raise your\nlevel, I think you'll be able to evolve.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh, so it's my level!#W\nI get it! I'll work at leveling up!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh, so it's my level!{WAIT_PRESS}\nI get it! I'll work at leveling up!") }, JUMP_SCRIPT(END_TALK), }; @@ -271,7 +271,7 @@ static const struct ScriptCommand s_gs2_g1_s0_lives1_dlg2[] = { /* 0x817e3c0 */ WAIT(1), { 0x2e, 0x03, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I went into the cave, but...#W\nI couldn't evolve into Butterfree.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I went into the cave, but...{WAIT_PRESS}\nI couldn't evolve into Butterfree.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" That's too bad, Metapod.") }, @@ -279,7 +279,7 @@ static const struct ScriptCommand s_gs2_g1_s0_lives1_dlg2[] = { /* 0x817e3c0 */ { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If you train and raise your\nlevel, I think you'll be able to evolve.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh, so it's my level!#W\nI get it! I'll work at leveling up!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh, so it's my level!{WAIT_PRESS}\nI get it! I'll work at leveling up!") }, JUMP_SCRIPT(END_TALK), }; @@ -361,7 +361,7 @@ static const struct ScriptCommand s_gs2_g3_s0_lives0_dlg2[] = { /* 0x817e834 */ { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I, too, have heard of it.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I have heard of a place that\nis far off our coast...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It is a sea churned by\ntorrential storms and violent waves.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It is a place appropriately\nnamed the #CDStormy Sea#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It is a place appropriately\nnamed the {COLOR YELLOW_D}Stormy Sea{RESET}.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There, one will find a\ndungeon that leads to the bottom of\nthe sea.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The sea is infinitely dark,\nand its depth unimaginable.\nThat is what I have heard.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -369,50 +369,50 @@ static const struct ScriptCommand s_gs2_g3_s0_lives0_dlg2[] = { /* 0x817e834 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hohoho!#W\nYou look eager to go.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hohoho!{WAIT_PRESS}\nYou look eager to go.") }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" However...#W\nTo go beneath the sea, a Hidden Machine\nnamed #CIDive#R is needed.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Without #CIDive#R, you cannot\ngo to the #CDStormy Sea#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" However...{WAIT_PRESS}\nTo go beneath the sea, a Hidden Machine\nnamed {COLOR GREEN_I}Dive{RESET} is needed.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Without {COLOR GREEN_I}Dive{RESET}, you cannot\ngo to the {COLOR YELLOW_D}Stormy Sea{RESET}.") }, { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hohoho! Your face tells me\nyou are desperate to go.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" So be it.#W\nYou may have this.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" So be it.{WAIT_PRESS}\nYou may have this.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0x3c, 0x2c, 0x0000, 0x000000e7, 0x00000000, NULL }, WAIT(20), { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I understand that it is\na very rare item that was found in a place\ncalled the #CDSolar Cave#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I understand that it is\na very rare item that was found in a place\ncalled the {COLOR YELLOW_D}Solar Cave{RESET}.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you were to carry that\nHidden Machine as an item...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Or if any team member\nwishing to enter the dungeon used that\nHidden Machine to learn #CIDive#R...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You would be able to enter\nthe #CDStormy Sea#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Or if any team member\nwishing to enter the dungeon used that\nHidden Machine to learn {COLOR GREEN_I}Dive{RESET}...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You would be able to enter\nthe {COLOR YELLOW_D}Stormy Sea{RESET}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), BGM_STOP, FANFARE_PLAY(205), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Gained access to\n#+the #CDStormy Sea#R!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Gained access to\n{CENTER_ALIGN}the {COLOR YELLOW_D}Stormy Sea{RESET}!") }, { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Beware--you must take the HM #CIDive#R,\n#+or a team member must learn #CIDive#R\n#+as a move for the team to enter!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Beware--you must take the HM {COLOR GREEN_I}Dive{RESET},\n{CENTER_ALIGN}or a team member must learn {COLOR GREEN_I}Dive{RESET}\n{CENTER_ALIGN}as a move for the team to enter!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, BGM_SWITCH(8), { 0xaf, 0x01, 0x0010, 0x00000000, 0x00000000, NULL }, SCENARIO_CALC(SCENARIO_SUB2, 33, 4), JUMP_SCRIPT(END_TALK), LABEL(0), /* = 0x00 */ - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you were to carry the\nHidden Machine #CIDive#R as an item...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Or if any team member\nwishing to enter the dungeon used that\nHidden Machine to learn #CIDive#R...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You would be able to enter\nthe #CDStormy Sea#R.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh?#W\nWhat happens if you lose the\nHidden Machine #CIDive#R?") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" All I had was the one\nI gave you...#W\nHmm... What should one do?") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The Hidden Machine #CIDive#R\nwas apparently found in the #CDSolar Cave#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you were to carry the\nHidden Machine {COLOR GREEN_I}Dive{RESET} as an item...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Or if any team member\nwishing to enter the dungeon used that\nHidden Machine to learn {COLOR GREEN_I}Dive{RESET}...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You would be able to enter\nthe {COLOR YELLOW_D}Stormy Sea{RESET}.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh?{WAIT_PRESS}\nWhat happens if you lose the\nHidden Machine {COLOR GREEN_I}Dive{RESET}?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" All I had was the one\nI gave you...{WAIT_PRESS}\nHmm... What should one do?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The Hidden Machine {COLOR GREEN_I}Dive{RESET}\nwas apparently found in the {COLOR YELLOW_D}Solar Cave{RESET}.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I suppose it wouldn't hurt\nto search there.") }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hohoho.#W\nAdventures keep you young.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hohoho.{WAIT_PRESS}\nAdventures keep you young.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Why, if I were only a little\nyounger, I might have joined you on your\nadventures.") }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -473,10 +473,10 @@ static const struct ScriptCommand s_gs2_g4_s0_lives0_dlg2[] = { /* 0x817f4e4 */ WAIT(1), SET_ARRAYVAL(EVENT_S07E01, 3, 1), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hohoho.#W\nThere is an old saying about the #CDBuried\nRelic#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hohoho.{WAIT_PRESS}\nThere is an old saying about the {COLOR YELLOW_D}Buried\nRelic{RESET}.") }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Three parts there are,\nguarded by three disciples.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" When the three parts\nare gathered in hand...#W\nA mirage shall appear to the bearer...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" When the three parts\nare gathered in hand...{WAIT_PRESS}\nA mirage shall appear to the bearer...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...What this actually means,\nthere is no telling now. Hohoho.") }, JUMP_SCRIPT(END_TALK), }; @@ -568,7 +568,7 @@ static const struct ScriptCommand s_gs2_g6_s0_lives0_dlg0[] = { /* 0x817f910 */ { 0x2e, 0x15, 0x0002, 0x00000001, 0x00000000, NULL }, { 0x2e, 0x15, 0x0003, 0x00000002, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" My wish...\nIt will finally come true!#W\nPshehehe!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" My wish...\nIt will finally come true!{WAIT_PRESS}\nPshehehe!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -580,14 +580,14 @@ static const struct ScriptCommand s_gs2_g6_s0_lives0_dlg0[] = { /* 0x817f910 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Listen, $n3.#W\nWe must keep this a secret just between\nthe two of us.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Listen, {NAME_3}.{WAIT_PRESS}\nWe must keep this a secret just between\nthe two of us.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We can't tell any Pokémon.\nNot even Gengar.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I know that!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Let's decide on how\nwe're going to do this...#W First...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Let's decide on how\nwe're going to do this...{WAIT_PRESS} First...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), FANFARE_PLAY2(465), @@ -612,11 +612,11 @@ static const struct ScriptCommand s_gs2_g6_s0_lives0_dlg0[] = { /* 0x817f910 */ WAIT(60), { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I...#W\nI don't know anything!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I...{WAIT_PRESS}\nI don't know anything!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Me too!\nI don't know a thing!") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I don't know anything about\nmaking wishes come true!#W\nI know nothing!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I don't know anything about\nmaking wishes come true!{WAIT_PRESS}\nI know nothing!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -765,12 +765,12 @@ static const struct ScriptCommand s_gs2_g8_s0_lives0_dlg0[] = { /* 0x8180674 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" $n3, listen.#W\nI'm thinking it is best if only we go\ninto the dungeon.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" {NAME_3}, listen.{WAIT_PRESS}\nI'm thinking it is best if only we go\ninto the dungeon.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If either one of us\nfalls before the end...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh, I get it.#W\nThe other one can still go make wishes!") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" That's smart, $n2!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh, I get it.{WAIT_PRESS}\nThe other one can still go make wishes!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" That's smart, {NAME_2}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x15, 0x0002, 0x00000001, 0x00000000, NULL }, @@ -814,11 +814,11 @@ static const struct ScriptCommand s_gs2_g8_s0_lives0_dlg0[] = { /* 0x8180674 */ WAIT(60), { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I...#W\nI don't know anything!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I...{WAIT_PRESS}\nI don't know anything!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Me too!\nI don't know a thing!") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I don't know anything about\na dungeon that makes wishes come true!#W\nI know nothing!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I don't know anything about\na dungeon that makes wishes come true!{WAIT_PRESS}\nI know nothing!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -966,7 +966,7 @@ static const struct ScriptCommand s_gs2_g9_s1_lives0_dlg0[] = { /* 0x818131c */ WAIT(60), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Wh-what are you staring\nat, you?!") }, { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm having a hard time\ntrying to make up my mind!#W\nGet lost!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm having a hard time\ntrying to make up my mind!{WAIT_PRESS}\nGet lost!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -1100,7 +1100,7 @@ static const struct ScriptCommand s_gs2_g12_s0_lives0_dlg2[] = { /* 0x8181c58 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Seeing the innocence of\nchildren at play is a good thing.\nHohoho.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" When I was small...#W\nI was tiny...#W\nHohoho.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" When I was small...{WAIT_PRESS}\nI was tiny...{WAIT_PRESS}\nHohoho.") }, JUMP_SCRIPT(END_TALK), }; @@ -1117,10 +1117,10 @@ static const struct ScriptCommand s_gs2_g12_s0_lives1_dlg2[] = { /* 0x8181d6c */ { 0x2d, 0x09, 0x0002, 0x00000022, 0x00000000, NULL }, { 0x2d, 0x09, 0x0003, 0x0000005e, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh! $n0 and\n$n2! Long time no see!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh! {NAME_0} and\n{NAME_2}! Long time no see!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I have a new friend!") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" His name is $n3.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm going to call on\n$n3 and go play in the woods!\nIt's going to be fun!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" His name is {NAME_3}.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm going to call on\n{NAME_3} and go play in the woods!\nIt's going to be fun!") }, JUMP_SCRIPT(END_TALK), }; @@ -1145,7 +1145,7 @@ static const struct ScriptCommand s_gs2_g13_s0_lives0_dlg2[] = { /* 0x8181f38 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x09, 0x0002, 0x00000036, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I've not seen $n2\nor other children lately.\nI wonder how they are keeping.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I've not seen {NAME_2}\nor other children lately.\nI wonder how they are keeping.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Not seeing the children\ngives me a twinge of sadness...") }, JUMP_SCRIPT(END_TALK), }; @@ -1178,14 +1178,14 @@ static const struct ScriptCommand s_gs2_g14_s0_lives0_dlg2[] = { /* 0x81820f0 */ WAIT(1), { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It's good to see the\nyoungsters back.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I heard you saved them.#W\nGetting through the dungeon must have\nbeen very taxing on you.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I heard you saved them.{WAIT_PRESS}\nGetting through the dungeon must have\nbeen very taxing on you.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm also grateful for what\nyou've done. Thank you.") }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Incidentally...#W\nI have heard of a particularly challenging\ndungeon somewhere in our world.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It starts your level at one...#W\nclears all your gained stats...#W\nand empties your Toolbox at the start.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Incidentally...{WAIT_PRESS}\nI have heard of a particularly challenging\ndungeon somewhere in our world.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It starts your level at one...{WAIT_PRESS}\nclears all your gained stats...{WAIT_PRESS}\nand empties your Toolbox at the start.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" In other words, it forces\none to enter in a completely clean state.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It has never been conquered\nby any rescue team...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It has earned its title as\nthe #CDUltimate Dungeon#R...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It has earned its title as\nthe {COLOR YELLOW_D}Ultimate Dungeon{RESET}...") }, { 0x2e, 0x15, 0x0001, 0x00000001, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Perhaps your team will take\non that challenge one day? Hohoho!") }, JUMP_SCRIPT(END_TALK), @@ -1203,7 +1203,7 @@ static const struct ScriptCommand s_gs2_g14_s0_lives1_dlg2[] = { /* 0x81824b4 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x09, 0x0002, 0x0000005e, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I can play with $n2\nagain!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I can play with {NAME_2}\nagain!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Thank you!") }, JUMP_SCRIPT(END_TALK), }; @@ -1214,7 +1214,7 @@ static const struct ScriptCommand s_gs2_g14_s0_lives2_dlg2[] = { /* 0x818255c */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x09, 0x0002, 0x00000022, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0 and\n$n2, thank you!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0} and\n{NAME_2}, thank you!") }, JUMP_SCRIPT(END_TALK), }; @@ -1264,7 +1264,7 @@ static const struct ScriptCommand s_gs2_g15_s0_lives1_dlg2[] = { /* 0x8182768 */ WAIT(1), { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yay, $n3!\nWhat'll we do next?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yay, {NAME_3}!\nWhat'll we do next?") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Let's play battle!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" OK, I use String Shot!") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Then, I use Harden!") }, @@ -1288,7 +1288,7 @@ static const struct ScriptCommand s_gs2_g15_s0_lives2_dlg2[] = { /* 0x8182904 */ WAIT(1), { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yay, $n3!\nWhat'll we do next?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yay, {NAME_3}!\nWhat'll we do next?") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Let's play battle!") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" OK, I use String Shot!") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Then, I use Harden!") }, @@ -1321,12 +1321,12 @@ static const struct ScriptCommand s_gs2_g16_s0_lives0_dlg2[] = { /* 0x8182a70 */ { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hohoho.\nYou wish to hear me tell old folklore?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), - ASK3(FALSE, /*default*/ -1, /* speaker */ 1, _(" What was that?\nYou wish to hear the #C4$n2 legend#R?")), + ASK3(FALSE, /*default*/ -1, /* speaker */ 1, _(" What was that?\nYou wish to hear the {COLOR GREEN}{NAME_2} legend{RESET}?")), CHOICE(/* label */ 1, _("Yes.")), CHOICE(/* label */ 2, _("No.")), LABEL(1), /* = 0x01 */ BGM_FADEOUT(90), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hohoho. Fine, then.#W\nLet me recount the tale.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hohoho. Fine, then.{WAIT_PRESS}\nLet me recount the tale.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, EXECUTE_STATION(-1, 16, 1), HALT, @@ -1349,7 +1349,7 @@ static const struct ScriptCommand s_gs2_g16_s0_lives1_dlg2[] = { /* 0x8182ce8 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x09, 0x0002, 0x00000062, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n2 told us\nfolklore from long ago.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_2} told us\nfolklore from long ago.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It was fun.") }, JUMP_SCRIPT(END_TALK), }; @@ -1360,7 +1360,7 @@ static const struct ScriptCommand s_gs2_g16_s0_lives2_dlg2[] = { /* 0x8182da0 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x09, 0x0002, 0x00000062, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The folklore was fun and\ninteresting.#W\n$n2 is very wise.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The folklore was fun and\ninteresting.{WAIT_PRESS}\n{NAME_2} is very wise.") }, JUMP_SCRIPT(END_TALK), }; @@ -1395,11 +1395,11 @@ static const struct ScriptCommand s_gs2_g16_s1_lives0_dlg0[] = { /* 0x8182f18 */ { 0x6b, 0x00, 0x0100, 0x0000000c, 0x00000000, NULL }, { 0x8b, 0x1e, 0x0004, 0x00000000, 0x00000000, NULL }, BGM_SWITCH(6), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There once lived a Pokémon\nby the name of $n2.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There once lived a Pokémon\nby the name of {NAME_2}.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Now, $n2 had\nmany tails, all of them imbued with\npsychic power...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Now, {NAME_2} had\nmany tails, all of them imbued with\npsychic power...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It was said that anyone so\nfoolish as to touch a tail would be cursed\nfor a thousand years.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But there was someone\nso foolish as to grab a tail.#W\nAnd it was a human.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But there was someone\nso foolish as to grab a tail.{WAIT_PRESS}\nAnd it was a human.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x03, 0x0003, 0x00000004, 0x00000000, NULL }, @@ -1408,7 +1408,7 @@ static const struct ScriptCommand s_gs2_g16_s1_lives0_dlg0[] = { /* 0x8182f18 */ WAIT(10), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Yes, a human.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" As one might expect, the\nhuman that grabbed the tail was subjected\nto a thousand-year curse.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" However, just when the\ncurse was cast, a Pokémon named\n$n4 shielded the human...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" However, just when the\ncurse was cast, a Pokémon named\n{NAME_4} shielded the human...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And sacrificed herself to\nabsorb the curse.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -1416,21 +1416,21 @@ static const struct ScriptCommand s_gs2_g16_s1_lives0_dlg0[] = { /* 0x8182f18 */ { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Why would that Pokémon,\nGardevoir, take the human's place?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" To $n4, that human\nwas her partner.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" To {NAME_4}, that human\nwas her partner.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There exist strong bonds\nbetween humans and Pokémon.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x03, 0x0003, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 3), - VARIANT(/* == */ 1, _(" ...All right.#W\nBut humans... Aren't there good ones and\nbad ones too?")), - VARIANT_DEFAULT(_(" ...OK.#W\nBut humans... Aren't there good humans\nand bad ones too?")), + VARIANT(/* == */ 1, _(" ...All right.{WAIT_PRESS}\nBut humans... Aren't there good ones and\nbad ones too?")), + VARIANT_DEFAULT(_(" ...OK.{WAIT_PRESS}\nBut humans... Aren't there good humans\nand bad ones too?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Correct.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Taking pity on $n4,\n$n2 asked the human this...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" “Do you wish to save\n$n4?” it asked...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But the human had already\nabandoned $n4 and fled.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n2 became\ndisillusioned with the human...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Taking pity on {NAME_4},\n{NAME_2} asked the human this...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" “Do you wish to save\n{NAME_4}?” it asked...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But the human had already\nabandoned {NAME_4} and fled.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_2} became\ndisillusioned with the human...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And it made this prediction...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" “That human will one day\nbe reborn as a Pokémon...”") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -1439,7 +1439,7 @@ static const struct ScriptCommand s_gs2_g16_s1_lives0_dlg0[] = { /* 0x8182f18 */ FANFARE_PLAY2(466), CALL_SCRIPT(SHOCK_FUNC), { 0x2e, 0x03, 0x0003, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" What?!#W\nA human turn into a Pokémon?!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" What?!{WAIT_PRESS}\nA human turn into a Pokémon?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -1459,7 +1459,7 @@ static const struct ScriptCommand s_gs2_g16_s1_lives0_dlg0[] = { /* 0x8182f18 */ { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ........................") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Ah-hah!#W\nYou found it so interesting, you're at\na loss for words? Hohoho.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Ah-hah!{WAIT_PRESS}\nYou found it so interesting, you're at\na loss for words? Hohoho.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There's no need to wear\nsuch a serious expression.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Certainly some rumors say\nthat the legend may actually be true...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But it is only ancient\nfolklore, nothing more.") }, @@ -1520,11 +1520,11 @@ static const struct ScriptCommand s_gs2_g16_s1_lives2_dlg2[] = { /* 0x8183d24 */ { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hohoho.\nYou wish to hear me tell old folklore?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), - ASK3(FALSE, /*default*/ -1, /* speaker */ 1, _(" What was that?\nYou wish to hear the #C4$n2 legend#R?")), + ASK3(FALSE, /*default*/ -1, /* speaker */ 1, _(" What was that?\nYou wish to hear the {COLOR GREEN}{NAME_2} legend{RESET}?")), CHOICE(/* label */ 1, _("Yes.")), CHOICE(/* label */ 2, _("No.")), LABEL(1), /* = 0x01 */ - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hohoho. Fine, then.#W\nLet me recount the tale.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hohoho. Fine, then.{WAIT_PRESS}\nLet me recount the tale.") }, EXECUTE_STATION(-1, 16, 1), HALT, LABEL(2), /* = 0x02 */ @@ -1567,7 +1567,7 @@ static const struct ScriptCommand s_gs2_g18_s0_lives0_dlg0[] = { /* 0x8183f98 */ WAIT(30), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Yes, a human.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" As one might expect, the\nhuman that grabbed the tail was subjected\nto a curse of a thousand years.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" However, just when the\ncurse was cast, a Pokémon named\n$n3 shielded the human...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" However, just when the\ncurse was cast, a Pokémon named\n{NAME_3} shielded the human...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" And sacrificed herself to\nabsorb the curse.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -1576,7 +1576,7 @@ static const struct ScriptCommand s_gs2_g18_s0_lives0_dlg0[] = { /* 0x8183f98 */ { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Why would that Pokémon,\nGardevoir, take the human's place?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" To $n3, that human\nwas her partner.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" To {NAME_3}, that human\nwas her partner.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" There exist strong bonds\nbetween humans and Pokémon.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -1643,8 +1643,8 @@ static const struct ScriptCommand s_gs2_g20_s0_lives0_dlg2[] = { /* 0x81843a8 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I regret this...#W\nHow some old folklore I told...#W\ncould cause such an uproar...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I got carried away and\nrecounted that tale...#W\nI should've left well enough alone...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I regret this...{WAIT_PRESS}\nHow some old folklore I told...{WAIT_PRESS}\ncould cause such an uproar...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I got carried away and\nrecounted that tale...{WAIT_PRESS}\nI should've left well enough alone...") }, JUMP_SCRIPT(END_TALK), }; @@ -1669,7 +1669,7 @@ static const struct ScriptCommand s_gs2_g20_s0_lives1_dlg2[] = { /* 0x8184568 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm so glad $n0\nisn't under suspicion anymore.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm so glad {NAME_0}\nisn't under suspicion anymore.") }, JUMP_SCRIPT(END_TALK), }; @@ -1678,7 +1678,7 @@ static const struct ScriptCommand s_gs2_g20_s0_lives2_dlg2[] = { /* 0x81845fc */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I just knew $n0\ncouldn't be evil.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I just knew {NAME_0}\ncouldn't be evil.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I hope you keep doing good\nwith your rescue work!") }, JUMP_SCRIPT(END_TALK), }; @@ -1705,7 +1705,7 @@ static const struct ScriptCommand s_gs2_g21_s0_lives0_dlg2[] = { /* 0x8184754 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wroooar!\nI can't relax!") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" My whiskers...#W\nThey tell me of coming earthquakes.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" My whiskers...{WAIT_PRESS}\nThey tell me of coming earthquakes.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And many quakes are indeed\ncoming.") }, JUMP_SCRIPT(END_TALK), }; @@ -1732,7 +1732,7 @@ static const struct ScriptCommand s_gs2_g21_s0_lives1_dlg2[] = { /* 0x81848ec */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" That earthquake really\nfrightened me...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I was so scared, I spat silk\nall over the place...#W\nIt was a mess for everyone...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I was so scared, I spat silk\nall over the place...{WAIT_PRESS}\nIt was a mess for everyone...") }, JUMP_SCRIPT(END_TALK), }; @@ -1742,7 +1742,7 @@ static const struct ScriptCommand s_gs2_g21_s0_lives2_dlg2[] = { /* 0x81849e0 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I hardened when the quake\nhit...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I couldn't take a step...#W\nI was just shaking inside my shell...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I couldn't take a step...{WAIT_PRESS}\nI was just shaking inside my shell...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Waaah!\nThinking about it is scary!") }, JUMP_SCRIPT(END_TALK), }; @@ -1769,7 +1769,7 @@ static const struct ScriptCommand s_gs2_g22_s0_lives0_dlg2[] = { /* 0x8184b7c */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Wroooar!\nI can't relax!") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" My whiskers...#W\nThey tell me of coming earthquakes.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" My whiskers...{WAIT_PRESS}\nThey tell me of coming earthquakes.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And many quakes are indeed\ncoming.") }, JUMP_SCRIPT(END_TALK), }; @@ -1830,7 +1830,7 @@ static const struct ScriptCommand s_gs2_g23_s0_lives0_dlg2[] = { /* 0x8184e44 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Your words in the square\nstruck me to my heart.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I shouldn't be panicking.#W\nI have the ability to sense quakes.\nI must remain calm.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I shouldn't be panicking.{WAIT_PRESS}\nI have the ability to sense quakes.\nI must remain calm.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" It appears I've learned\nsomething from you youngsters.") }, JUMP_SCRIPT(END_TALK), }; @@ -1857,7 +1857,7 @@ static const struct ScriptCommand s_gs2_g23_s0_lives1_dlg2[] = { /* 0x818502c */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x09, 0x0002, 0x00000022, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" $n0!\nPlease take care!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" {NAME_0}!\nPlease take care!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We'll be OK.\nWe'll try not to be scared of the quakes!") }, JUMP_SCRIPT(END_TALK), }; @@ -1894,7 +1894,7 @@ static const struct ScriptCommand s_gs2_g24_s0_lives0_dlg2[] = { /* 0x8185214 */ WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sniffle...\nThis is so inspiring...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Pokémon have united in\ntheir efforts to rescue Alakazam's team...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I can feel their resolve...#W\nThe same feeling...from everyone.\nSniffle...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I can feel their resolve...{WAIT_PRESS}\nThe same feeling...from everyone.\nSniffle...") }, JUMP_SCRIPT(END_TALK), }; @@ -1919,11 +1919,11 @@ static const struct ScriptCommand s_gs2_g24_s0_lives1_dlg2[] = { /* 0x81853ec */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" My mom has joined other\nPokémon to fight in the #CDMagma Cavern#R.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" My mom has joined other\nPokémon to fight in the {COLOR YELLOW_D}Magma Cavern{RESET}.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Mom is weak to fire, so it\nisn't easy for her...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But she is doing her best.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Mom also told me...#W\nIt is hard going because there are so many\nmonster houses.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If my information helps\neven a little, $n0, I'm happy.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Mom also told me...{WAIT_PRESS}\nIt is hard going because there are so many\nmonster houses.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If my information helps\neven a little, {NAME_0}, I'm happy.") }, JUMP_SCRIPT(END_TALK), }; @@ -1956,9 +1956,9 @@ static const struct ScriptCommand s_gs2_g25_s0_lives0_dlg2[] = { /* 0x81856d4 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" A shooting star is on\na collision course...#W\nThis is indeed a desperate time.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But there is nothing that\nI can do.#W\nAll our hopes ride with you.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I realize that it is a heavy\nburden to bear, but...#W\nwe must count on you to succeed.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" A shooting star is on\na collision course...{WAIT_PRESS}\nThis is indeed a desperate time.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But there is nothing that\nI can do.{WAIT_PRESS}\nAll our hopes ride with you.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I realize that it is a heavy\nburden to bear, but...{WAIT_PRESS}\nwe must count on you to succeed.") }, JUMP_SCRIPT(END_TALK), }; @@ -1973,7 +1973,7 @@ static const struct ScriptCommand s_gs2_g25_s0_lives1_dlg2[] = { /* 0x8185874 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll use Harden and wait for\n$n0's team to come back!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll use Harden and wait for\n{NAME_0}'s team to come back!") }, JUMP_SCRIPT(END_TALK), }; @@ -2016,7 +2016,7 @@ static const struct ScriptCommand s_gs2_g26_s0_lives1_dlg2[] = { /* 0x8185aa0 */ { 0x2d, 0x09, 0x0002, 0x00000022, 0x00000000, NULL }, WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You're soon going...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But this is $n0\nand $n2.#W\nYou can't fail.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But this is {NAME_0}\nand {NAME_2}.{WAIT_PRESS}\nYou can't fail.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I believe in you.\nSo I'll be waiting for you.") }, JUMP_SCRIPT(END_TALK), }; @@ -2027,7 +2027,7 @@ static const struct ScriptCommand s_gs2_g26_s0_lives2_dlg2[] = { /* 0x8185bac */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hello, I am Caterpie's\nmother. It's been a while.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You also have my support.#W\nPlease do your best. And please be careful!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You also have my support.{WAIT_PRESS}\nPlease do your best. And please be careful!") }, JUMP_SCRIPT(END_TALK), }; @@ -2036,7 +2036,7 @@ static const struct ScriptCommand s_gs2_g26_s0_lives3_dlg2[] = { /* 0x8185ca4 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll use Harden and wait for\n$n0's team to come back!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'll use Harden and wait for\n{NAME_0}'s team to come back!") }, JUMP_SCRIPT(END_TALK), }; @@ -2061,7 +2061,7 @@ static const struct ScriptCommand s_gs2_g27_s0_lives0_dlg2[] = { /* 0x8185d90 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Ah...#W The #CDSky Tower#R,\nyou say...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Ah...{WAIT_PRESS} The {COLOR YELLOW_D}Sky Tower{RESET},\nyou say...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" In all my long years, I'd\nnot known of any world above the clouds.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" The world remains a vast\nmystery...") }, JUMP_SCRIPT(END_TALK), @@ -2079,7 +2079,7 @@ static const struct ScriptCommand s_gs2_g27_s0_lives1_dlg2[] = { /* 0x8185edc */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x09, 0x0002, 0x00000022, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" This is $n0\nand $n2 after all.#W\nYou can't fail.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" This is {NAME_0}\nand {NAME_2} after all.{WAIT_PRESS}\nYou can't fail.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I believe in you.\nSo I'll be waiting for you.") }, JUMP_SCRIPT(END_TALK), }; @@ -2089,7 +2089,7 @@ static const struct ScriptCommand s_gs2_g27_s0_lives2_dlg2[] = { /* 0x8185f90 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I believe too.\n$n0, don't let us down!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I believe too.\n{NAME_0}, don't let us down!") }, JUMP_SCRIPT(END_TALK), }; @@ -2185,7 +2185,7 @@ static const struct ScriptCommand s_gs2_g29_s0_lives0_dlg0[] = { /* 0x81863ec */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000003, 0x00000000, NULL }, { 0x2e, 0x02, 0x0001, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hi, $n4!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hi, {NAME_4}!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -2200,9 +2200,9 @@ static const struct ScriptCommand s_gs2_g29_s0_lives0_dlg0[] = { /* 0x81863ec */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Hey, $n4?#W\nHave you seen Snubbull around?")), + VARIANT(/* == */ 1, _(" Hey, {NAME_4}?{WAIT_PRESS}\nHave you seen Snubbull around?")), VARIANT(/* == */ 1, _(" I heard something weird\nhappened to him.")), - VARIANT_DEFAULT(_(" Hi, $n4.\nHave you seen Snubbull?")), + VARIANT_DEFAULT(_(" Hi, {NAME_4}.\nHave you seen Snubbull?")), VARIANT_DEFAULT(_(" I heard something strange\nhappened to him.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -2217,7 +2217,7 @@ static const struct ScriptCommand s_gs2_g29_s0_lives0_dlg0[] = { /* 0x81863ec */ CALL_SCRIPT(JUMP_SURPRISE_FUNC), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Whaaaat?!#W\nYou're Snubbull?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Whaaaat?!{WAIT_PRESS}\nYou're Snubbull?") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But you don't look anything\nlike the way you did before!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), @@ -2263,13 +2263,13 @@ static const struct ScriptCommand s_gs2_g29_s0_lives0_dlg0[] = { /* 0x81863ec */ WAIT(15), { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Yup.#W\nAnd I came out looking like this...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Yup.{WAIT_PRESS}\nAnd I came out looking like this...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0e, 0x0004, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Snubbull underwent\n“evolution.”#W\nHe evolved.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Snubbull underwent\n“evolution.”{WAIT_PRESS}\nHe evolved.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -2283,8 +2283,8 @@ static const struct ScriptCommand s_gs2_g29_s0_lives0_dlg0[] = { /* 0x81863ec */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000004, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Evolution? Evolved?#W\nWhat's that about?")), - VARIANT_DEFAULT(_(" Evolution? Evolved?#W\nI don't follow.")), + VARIANT(/* == */ 1, _(" Evolution? Evolved?{WAIT_PRESS}\nWhat's that about?")), + VARIANT_DEFAULT(_(" Evolution? Evolved?{WAIT_PRESS}\nI don't follow.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Pokémon, upon satisfying\ncertain conditions, may evolve.") }, @@ -2298,13 +2298,13 @@ static const struct ScriptCommand s_gs2_g29_s0_lives0_dlg0[] = { /* 0x81863ec */ { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, CALL_SCRIPT(NOTICE_FUNC), { 0x2e, 0x15, 0x0001, 0x0000000c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, wow!#W\nYour own appearance...#W\nThat can change?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, wow!{WAIT_PRESS}\nYour own appearance...{WAIT_PRESS}\nThat can change?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" I suspect that cave is where\nevolution can take place.") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" This is merely a guess...") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Perhaps evolution could\nnot take place before because the world's\nbalance was askew.") }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" However, now that the star\nhas been destroyed...#W\nThe world's balance has been restored...") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" However, now that the star\nhas been destroyed...{WAIT_PRESS}\nThe world's balance has been restored...") }, { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" And perhaps that cave\nbecame unsealed.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -2312,17 +2312,17 @@ static const struct ScriptCommand s_gs2_g29_s0_lives0_dlg0[] = { /* 0x81863ec */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x04, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2f, 0x00, 0x0002, -0x00000002, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" So if I evolved, I would\nbecome like $n3?!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" So if I evolved, I would\nbecome like {NAME_3}?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2e, 0x03, 0x0003, 0x00000000, 0x00000000, NULL }, { 0x2f, 0x00, 0x0003, -0x00000001, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I wish...#W\nI want to be Butterfree quickly...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" I wish...{WAIT_PRESS}\nI want to be Butterfree quickly...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" W-wait a second.#W\nI don't know if I like this or not...") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" W-wait a second.{WAIT_PRESS}\nI don't know if I like this or not...") }, { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" My cute little face turned\nall craggy...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -2339,7 +2339,7 @@ static const struct ScriptCommand s_gs2_g29_s0_lives0_dlg0[] = { /* 0x81863ec */ { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, CALL_SCRIPT(NOTICE_FUNC), - { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Oh! Really?!#W\nI...#W I might be stronger?!") }, + { 0x34, 0x00, 0x0005, 0x00000000, 0x00000000, _(" Oh! Really?!{WAIT_PRESS}\nI...{WAIT_PRESS} I might be stronger?!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" That makes me want to\nevolve even more!") }, @@ -2365,16 +2365,16 @@ static const struct ScriptCommand s_gs2_g29_s0_lives0_dlg0[] = { /* 0x81863ec */ { 0xe4, 0x00, 0x0009, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x000a, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Yes.#W\nBut it would depend on the conditions.") }, + { 0x34, 0x00, 0x0004, 0x00000000, 0x00000000, _(" Yes.{WAIT_PRESS}\nBut it would depend on the conditions.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x91, 0x04, 0x000a, 0x00000006, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0.#W\nWe should go to the cave if we want to\nevolve.")), - VARIANT(/* == */ 3, _(" $n0.#W\nLet's go to the cave if we're ready to\nevolve.")), - VARIANT_DEFAULT(_(" $n0.#W\nLet's go to the cave if we're ready to\nevolve.")), + VARIANT(/* == */ 1, _(" {NAME_0}.{WAIT_PRESS}\nWe should go to the cave if we want to\nevolve.")), + VARIANT(/* == */ 3, _(" {NAME_0}.{WAIT_PRESS}\nLet's go to the cave if we're ready to\nevolve.")), + VARIANT_DEFAULT(_(" {NAME_0}.{WAIT_PRESS}\nLet's go to the cave if we're ready to\nevolve.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -2640,7 +2640,7 @@ static const struct ScriptCommand s_gs2_g30_s0_lives3_dlg2[] = { /* 0x818856c */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I might become\nstronger!#W\nOoh, it's exciting...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I might become\nstronger!{WAIT_PRESS}\nOoh, it's exciting...") }, JUMP_SCRIPT(END_TALK), }; diff --git a/src/data/ground/ground_data_t01p03_station.h b/src/data/ground/ground_data_t01p03_station.h index b8de3531a..ffb3a72ab 100644 --- a/src/data/ground/ground_data_t01p03_station.h +++ b/src/data/ground/ground_data_t01p03_station.h @@ -339,7 +339,7 @@ static const struct ScriptCommand s_gs4_g1_s0_lives1_dlg2[] = { /* 0x818a974 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" My #C5Team Hydro#R is Bronze\nRank.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" My {COLOR CYAN}Team Hydro{RESET} is Bronze\nRank.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" We need to do better.") }, JUMP_SCRIPT(END_TALK), }; @@ -349,8 +349,8 @@ static const struct ScriptCommand s_gs4_g1_s0_lives2_dlg2[] = { /* 0x818aa20 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Our #C5Team Rumblerock#R\nis famous for savagery...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But we're actually only\nNormal Rank.#W\nIt's an embarrassment...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Our {COLOR CYAN}Team Rumblerock{RESET}\nis famous for savagery...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But we're actually only\nNormal Rank.{WAIT_PRESS}\nIt's an embarrassment...") }, JUMP_SCRIPT(END_TALK), }; @@ -362,13 +362,13 @@ static const struct ScriptCommand s_gs4_g1_s0_lives3_dlg2[] = { /* 0x818ab0c */ JUMPIF_UNK_BD(118, /* to label */ 0), /* likely "is friend area unlocked" (by GroundEnter id) */ { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Darlings, did you know?") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Every so often, there are\nrescue jobs that reward you with a new\nFriend Area...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Well, lately there've been\nrumors about a new Friend Area!#W\nThe #CHSky Blue Plains#R, they say!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Well, lately there've been\nrumors about a new Friend Area!{WAIT_PRESS}\nThe {COLOR GREEN_H}Sky Blue Plains{RESET}, they say!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Just maybe, getting that\nFriend Area could be the start of\nsomething enchanting.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Darlings, if you spot rescue\njobs that seem promising, you should\ntry them!") }, JUMP_SCRIPT(END_TALK), LABEL(0), /* = 0x00 */ - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Darlings, I'll have you know\nthat my #C5Team Constrictor#R is actually\nSilver Rank.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Not too bad, is it?#W\nWe surprise people with our excellence.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Darlings, I'll have you know\nthat my {COLOR CYAN}Team Constrictor{RESET} is actually\nSilver Rank.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Not too bad, is it?{WAIT_PRESS}\nWe surprise people with our excellence.") }, JUMP_SCRIPT(END_TALK), }; @@ -396,32 +396,32 @@ static const struct ScriptCommand s_gs4_g1_s0_lives4_dlg2[] = { /* 0x818aecc */ COND_EQUAL(1, /* to label */ 1), COND_EQUAL(2, /* to label */ 2), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, hello!\nDid you know?") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Somewhere in the world\nthere is an extremely rare Pokémon...#W\nnamed Chansey.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" This is what they say about\nChansey...#W If you are lucky enough to\nmeet one, you will be filled with happiness.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wonder what sort of\na Pokémon it is.#W\nWouldn't you like to meet one, even once?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Somewhere in the world\nthere is an extremely rare Pokémon...{WAIT_PRESS}\nnamed Chansey.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" This is what they say about\nChansey...{WAIT_PRESS} If you are lucky enough to\nmeet one, you will be filled with happiness.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wonder what sort of\na Pokémon it is.{WAIT_PRESS}\nWouldn't you like to meet one, even once?") }, JUMP_SCRIPT(END_TALK), LABEL(1), /* = 0x01 */ - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............#WOh-oh-oh?!#W\nYou've met Chansey?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ............{WAIT_PRESS}Oh-oh-oh?!{WAIT_PRESS}\nYou've met Chansey?") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" That is so lucky!\nWhat are the chances of that?") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, my gosh!\nHow wonderful for you!\nHow I envy you!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wish I could meet Chansey\nand be filled with happiness...") }, JUMP_SCRIPT(END_TALK), LABEL(2), /* = 0x02 */ { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, hello!\nDid you know?") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Somewhere in the world\nthere is an extremely rare Pokémon...#W\nnamed Chansey.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" This is what they say about\nChansey.#W If you are lucky enough to meet\none, you will be filled with happiness.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wonder what sort of\na Pokémon it is.#W Wouldn't you like to meet\none, even once?#W Wait a second...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Somewhere in the world\nthere is an extremely rare Pokémon...{WAIT_PRESS}\nnamed Chansey.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" This is what they say about\nChansey.{WAIT_PRESS} If you are lucky enough to meet\none, you will be filled with happiness.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I wonder what sort of\na Pokémon it is.{WAIT_PRESS} Wouldn't you like to meet\none, even once?{WAIT_PRESS} Wait a second...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Waaaaaaaaaaaaaaaaaaaah!") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You're...#W\nMaybe...#W Chansey?!") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You are! You really are!#W\nI'm so lucky!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You're...{WAIT_PRESS}\nMaybe...{WAIT_PRESS} Chansey?!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You are! You really are!{WAIT_PRESS}\nI'm so lucky!") }, SET_ARRAYVAL(EVENT_T01P03, 2, 1), JUMP_SCRIPT(END_TALK), LABEL(0), /* = 0x00 */ { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, my gosh...\nI've finally met you...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm bursting with happiness!#W\nOh, I am so lucky!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I'm bursting with happiness!{WAIT_PRESS}\nOh, I am so lucky!") }, JUMP_SCRIPT(END_TALK), }; @@ -478,13 +478,13 @@ static const struct ScriptCommand s_gs4_g1_s1_lives0_dlg0[] = { /* 0x818b710 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" (Papa still hasn't come\nhome...)") }, - { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Our son!#W\nSorry to make you wait!") }, + { 0x34, 0x00, -0x0001, 0x00000000, 0x00000000, _(" Our son!{WAIT_PRESS}\nSorry to make you wait!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), FANFARE_PLAY2(465), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...Oh!#W\nThat voice!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ...Oh!{WAIT_PRESS}\nThat voice!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -551,7 +551,7 @@ static const struct ScriptCommand s_gs4_g1_s1_lives0_dlg0[] = { /* 0x818b710 */ { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Our son, we're sorry for\ncausing you anxiety.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Papa.#W\nWhere were you?") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Papa.{WAIT_PRESS}\nWhere were you?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" We were traveling the\nworld.") }, @@ -559,17 +559,17 @@ static const struct ScriptCommand s_gs4_g1_s1_lives0_dlg0[] = { /* 0x818b710 */ WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The world is vast.#W\nThere are countless Pokémon around the\nworld that are unknown in these areas.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" The world is vast.{WAIT_PRESS}\nThere are countless Pokémon around the\nworld that are unknown in these areas.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" That's why you were gone...#W\nPapa, did you see all the Pokémon that\naren't known in these areas?") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" That's why you were gone...{WAIT_PRESS}\nPapa, did you see all the Pokémon that\naren't known in these areas?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................#W\nOf course.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................{WAIT_PRESS}\nOf course.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What do you take us for?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh! Of course!#W\nPapa, you're so special!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh! Of course!{WAIT_PRESS}\nPapa, you're so special!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -719,7 +719,7 @@ static const struct ScriptCommand s_gs4_g1_s2_lives0_dlg2[] = { /* 0x818c768 */ DEBUGINFO, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What do you take us for?!#W\n...Uh, er... Um, yes.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" What do you take us for?!{WAIT_PRESS}\n...Uh, er... Um, yes.") }, JUMP_SCRIPT(END_TALK), }; @@ -787,7 +787,7 @@ static const struct ScriptCommand s_gs4_g3_s0_lives0_dlg0[] = { /* 0x818ca80 */ { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0f, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x0e, 0x0003, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There was a job posted on\nthe Bulletin Board which said, “Punish bad\n#CNMankey#R.”") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" There was a job posted on\nthe Bulletin Board which said, “Punish bad\n{COLOR YELLOW_N}Mankey{RESET}.”") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Did you two put up that job?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), @@ -840,8 +840,8 @@ static const struct ScriptCommand s_gs4_g3_s0_lives0_dlg0[] = { /* 0x818ca80 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x15, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" $n0, we should go.")), - VARIANT_DEFAULT(_(" $n0, we should go.")), + VARIANT(/* == */ 1, _(" {NAME_0}, we should go.")), + VARIANT_DEFAULT(_(" {NAME_0}, we should go.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Thank you!\nWe're counting on you!") }, @@ -855,10 +855,10 @@ static const struct ScriptCommand s_gs4_g3_s0_lives0_dlg0[] = { /* 0x818ca80 */ { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The place where the Mankey gang\n#+is wreaking havoc on others...") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The place where the Mankey gang\n{CENTER_ALIGN}is wreaking havoc on others...") }, BGM_STOP, FANFARE_PLAY(205), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The #CDUproar Forest#R is now\n#+open for exploration!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The {COLOR YELLOW_D}Uproar Forest{RESET} is now\n{CENTER_ALIGN}open for exploration!") }, { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -982,40 +982,40 @@ static const struct ScriptCommand s_gs4_g5_s0_lives0_dlg0[] = { /* 0x818d758 */ { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, { 0x2e, 0x03, 0x0001, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" “Smeargle's desperate plea,“\nhuh...?#W\nThat's some title.")), - VARIANT(/* == */ 1, _(" What's it say?#W\nCan you read it?")), - VARIANT_DEFAULT(_(" “Smeargle's desperate plea,”\nhuh...?#W\nThat's quite the title.")), - VARIANT_DEFAULT(_(" What does it say?#W\nCan you read it?")), + VARIANT(/* == */ 1, _(" “Smeargle's desperate plea,“\nhuh...?{WAIT_PRESS}\nThat's some title.")), + VARIANT(/* == */ 1, _(" What's it say?{WAIT_PRESS}\nCan you read it?")), + VARIANT_DEFAULT(_(" “Smeargle's desperate plea,”\nhuh...?{WAIT_PRESS}\nThat's quite the title.")), + VARIANT_DEFAULT(_(" What does it say?{WAIT_PRESS}\nCan you read it?")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0x91, 0x04, 0x000a, 0x00000004, 0x00000000, NULL }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 read the letter.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0} read the letter.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("“Please allow me to introduce myself.\nMy name is Smeargle.") }, { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("I once had aspirations of becoming\nan artist.") }, - { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("Then, one day...#W\nThere was an incident of an unforgivable\nnature...") }, - { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("I fled because I didn't want to become an\nadult.#W\nBut then I lost my way...") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("Then, one day...{WAIT_PRESS}\nThere was an incident of an unforgivable\nnature...") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("I fled because I didn't want to become an\nadult.{WAIT_PRESS}\nBut then I lost my way...") }, { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("I now find myself in this forest, unable to\nextricate myself...") }, - { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("I am lost in the #CDHowling Forest#R!#W\nSomebody!#W Please save me!”") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("I am lost in the {COLOR YELLOW_D}Howling Forest{RESET}!{WAIT_PRESS}\nSomebody!{WAIT_PRESS} Please save me!”") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x93, 0x04, 0x000a, 0x00000022, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" .............#W\nIt says he ran away because he didn't want\nto be an adult...#W What's up with that?")), - VARIANT(/* == */ 1, _(" I don't really get it, but...#W\nWell, let's go rescue this Smeargle!")), - VARIANT_DEFAULT(_(" .............#W\nHe ran away because he didn't want to\nbecome an adult...#W What's that about?")), - VARIANT_DEFAULT(_(" I don't really get this...#W\nBut let's go rescue this Smeargle anyway!")), + VARIANT(/* == */ 1, _(" .............{WAIT_PRESS}\nIt says he ran away because he didn't want\nto be an adult...{WAIT_PRESS} What's up with that?")), + VARIANT(/* == */ 1, _(" I don't really get it, but...{WAIT_PRESS}\nWell, let's go rescue this Smeargle!")), + VARIANT_DEFAULT(_(" .............{WAIT_PRESS}\nHe ran away because he didn't want to\nbecome an adult...{WAIT_PRESS} What's that about?")), + VARIANT_DEFAULT(_(" I don't really get this...{WAIT_PRESS}\nBut let's go rescue this Smeargle anyway!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The forest in which Smeargle\n#+is thought to have gone missing...") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The forest in which Smeargle\n{CENTER_ALIGN}is thought to have gone missing...") }, BGM_STOP, FANFARE_PLAY(205), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The #CDHowling Forest#R\n#+is now open for exploration!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The {COLOR YELLOW_D}Howling Forest{RESET}\n{CENTER_ALIGN}is now open for exploration!") }, { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -1130,21 +1130,21 @@ static const struct ScriptCommand s_gs4_g7_s0_lives0_dlg0[] = { /* 0x818e464 */ { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2e, 0x02, 0x0000, 0x00000000, 0x00000000, NULL }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+$n0 read the SOS Mail\n#+apparently sent by Medicham.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}{NAME_0} read the SOS Mail\n{CENTER_ALIGN}apparently sent by Medicham.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(20), { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("“My name is Medicham.") }, - { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("We had no trouble entering this dungeon...#W\nBut it's horrible here!\nIt is much too difficult!") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("We had no trouble entering this dungeon...{WAIT_PRESS}\nBut it's horrible here!\nIt is much too difficult!") }, { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("Ekans, he was defeated right away.\nIt makes me want to scream!") }, - { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("Somebody!#W\nPlease help me!") }, - { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("The place is the #CDWish Cave#R.") }, - { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("The reward is a secret〜♪#W\nBut it's really very nice--you can be\nsure of that〜♪”") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("Somebody!{WAIT_PRESS}\nPlease help me!") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("The place is the {COLOR YELLOW_D}Wish Cave{RESET}.") }, + { 0x35, 0x00, -0x0001, 0x00000000, 0x00000000, _("The reward is a secret〜♪{WAIT_PRESS}\nBut it's really very nice--you can be\nsure of that〜♪”") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The place in which Medicham\n#+is thought to have gone missing...") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The place in which Medicham\n{CENTER_ALIGN}is thought to have gone missing...") }, BGM_STOP, FANFARE_PLAY(205), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The #CDWish Cave#R is now\n#+open for exploration!") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The {COLOR YELLOW_D}Wish Cave{RESET} is now\n{CENTER_ALIGN}open for exploration!") }, { 0xe1, 0x00, 0x00cd, 0x00000000, 0x00000000, NULL }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -1237,7 +1237,7 @@ static const struct ScriptCommand s_gs4_g9_s0_lives0_dlg0[] = { /* 0x818eafc */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x93, 0x04, 0x000a, 0x0000005d, 0x00000000, NULL }, { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, - ASK3(FALSE, /*default*/ -1, /* speaker */ 2, _(" Say, sweetie.#W\nHave you seen Gengar around?")), + ASK3(FALSE, /*default*/ -1, /* speaker */ 2, _(" Say, sweetie.{WAIT_PRESS}\nHave you seen Gengar around?")), CHOICE(/* label */ 2, _("Yes.")), CHOICE(/* label */ 3, _("No.")), LABEL(2), /* = 0x02 */ @@ -1246,11 +1246,11 @@ static const struct ScriptCommand s_gs4_g9_s0_lives0_dlg0[] = { /* 0x818eafc */ { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2e, 0x02, 0x0002, 0x00000042, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hunh? You did?#W\n...Wh-where?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Hunh? You did?{WAIT_PRESS}\n...Wh-where?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(45), { 0x2e, 0x15, 0x0002, 0x00000044, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................#W\nOh, you're just joking.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................{WAIT_PRESS}\nOh, you're just joking.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(3), /* = 0x03 */ UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 1), @@ -1275,24 +1275,24 @@ static const struct ScriptCommand s_gs4_g9_s0_lives0_dlg0[] = { /* 0x818eafc */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x93, 0x04, 0x000a, 0x0000005d, 0x00000000, NULL }, { 0x2e, 0x15, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You think so?#W\nHis expression...\nIt looks the same as usual, no?") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" You think so?{WAIT_PRESS}\nHis expression...\nIt looks the same as usual, no?") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" All I have seen is him\nlaughing in his usual mean way?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x93, 0x04, 0x000a, 0x0000005c, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" No, it's different.#W\nI can tell.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" No, it's different.{WAIT_PRESS}\nI can tell.") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" The way he sets his mouth.\nIt's different just a little at the corners.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Hmm...#W\nPerhaps that is so.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...Hmm...{WAIT_PRESS}\nPerhaps that is so.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x93, 0x04, 0x000a, 0x0000005d, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Anyway, without Gengar\naround, #C5Team Meanies#R can't operate.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Anyway, without Gengar\naround, {COLOR CYAN}Team Meanies{RESET} can't operate.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Such a vexing problem!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, UPDATE_VARINT(CALC_SET, EVENT_LOCAL, 0), @@ -1368,7 +1368,7 @@ static const struct ScriptCommand s_gs4_g10_s0_lives0_dlg2[] = { /* 0x818f4f4 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Anyway, without Gengar\naround, #C5Team Meanies#R can't operate.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Anyway, without Gengar\naround, {COLOR CYAN}Team Meanies{RESET} can't operate.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Such a vexing problem!") }, JUMP_SCRIPT(END_TALK), }; @@ -1537,8 +1537,8 @@ static const struct ScriptCommand s_gs4_g12_s0_lives0_dlg0[] = { /* 0x818fcdc */ { 0xdf, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), MSG_VAR(2, PARTNER_TALK_KIND, 1), - VARIANT(/* == */ 1, _(" Over there... The\n#C5Pelipper Post Office#R.")), - VARIANT_DEFAULT(_(" That building is the\n#C5Pelipper Post Office#R.")), + VARIANT(/* == */ 1, _(" Over there... The\n{COLOR CYAN}Pelipper Post Office{RESET}.")), + VARIANT_DEFAULT(_(" That building is the\n{COLOR CYAN}Pelipper Post Office{RESET}.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0004, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, @@ -1568,34 +1568,34 @@ static const struct ScriptCommand s_gs4_g12_s0_lives0_dlg0[] = { /* 0x818fcdc */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" See?\nThere were jobs listed, right?")), - VARIANT(/* == */ 1, _(" If you want to go on a\nrescue, you first choose the job by\nselecting it with #C6Accept#R...")), - VARIANT(/* == */ 1, _(" Then, on the #C5Job List#R,\nchoose the job, then confirm it with\n#C6Take Job#R to go on that rescue mission.")), - VARIANT(/* == */ 1, _(" If you don't select #C6Take Job#R,\nyou won't be able to do the rescue job even\nif you go to the dungeon.")), + VARIANT(/* == */ 1, _(" If you want to go on a\nrescue, you first choose the job by\nselecting it with {COLOR YELLOW}Accept{RESET}...")), + VARIANT(/* == */ 1, _(" Then, on the {COLOR CYAN}Job List{RESET},\nchoose the job, then confirm it with\n{COLOR YELLOW}Take Job{RESET} to go on that rescue mission.")), + VARIANT(/* == */ 1, _(" If you don't select {COLOR YELLOW}Take Job{RESET},\nyou won't be able to do the rescue job even\nif you go to the dungeon.")), VARIANT(/* == */ 1, _(" For the time being, we\nshould just stick with the jobs posted\nhere.")), VARIANT(/* == */ 1, _(" Our team'll become known\nafter we do some rescue jobs.")), VARIANT(/* == */ 1, _(" I bet we'll get job offers\nin our Mailbox soon.")), VARIANT(/* == */ 3, _(" See?\nThere were jobs listed, right?")), - VARIANT(/* == */ 3, _(" If you want to do a rescue\njob, you first select it with #C6Accept#R...")), - VARIANT(/* == */ 3, _(" Then, on the #C5Job List#R,\nchoose the job, then confirm it with\n#C6Take Job#R to go on that rescue mission.")), - VARIANT(/* == */ 3, _(" If you don't select #C6Take Job#R,\nyou can't do that rescue job even if you go\nto the dungeon. Be careful!")), + VARIANT(/* == */ 3, _(" If you want to do a rescue\njob, you first select it with {COLOR YELLOW}Accept{RESET}...")), + VARIANT(/* == */ 3, _(" Then, on the {COLOR CYAN}Job List{RESET},\nchoose the job, then confirm it with\n{COLOR YELLOW}Take Job{RESET} to go on that rescue mission.")), + VARIANT(/* == */ 3, _(" If you don't select {COLOR YELLOW}Take Job{RESET},\nyou can't do that rescue job even if you go\nto the dungeon. Be careful!")), VARIANT(/* == */ 3, _(" While we're starting out,\nwe should handle the jobs that are posted\nhere.")), VARIANT(/* == */ 3, _(" Doing that should get our\nteam some recognition.")), VARIANT(/* == */ 3, _(" That should pull in job\noffers to our Mailbox soon.")), VARIANT_DEFAULT(_(" See?\nThere were jobs listed, right?")), - VARIANT_DEFAULT(_(" To do a rescue job, you first\nselect it with #C6Accept#R...")), - VARIANT_DEFAULT(_(" Then, on the #C5Job List#R,\nchoose the job, then confirm it with\n#C6Take Job#R to go on that rescue mission.")), - VARIANT_DEFAULT(_(" If you don't select #C6Take Job#R,\nyou can't do that rescue job even if you go\nto the dungeon.")), + VARIANT_DEFAULT(_(" To do a rescue job, you first\nselect it with {COLOR YELLOW}Accept{RESET}...")), + VARIANT_DEFAULT(_(" Then, on the {COLOR CYAN}Job List{RESET},\nchoose the job, then confirm it with\n{COLOR YELLOW}Take Job{RESET} to go on that rescue mission.")), + VARIANT_DEFAULT(_(" If you don't select {COLOR YELLOW}Take Job{RESET},\nyou can't do that rescue job even if you go\nto the dungeon.")), VARIANT_DEFAULT(_(" Since we're just starting up,\nwe should handle the jobs that are posted\nhere.")), VARIANT_DEFAULT(_(" Our team name will get\nbetter known by doing that.")), VARIANT_DEFAULT(_(" I think that will bring\njob offers to our Mailbox.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" And if you want to take on\na rescue job...")), - VARIANT(/* == */ 1, _(" Choose the job on the #C5Job\nList#R...#W Then, select #C6Take Job#R.#W\nGet in the habit of doing that regularly!")), + VARIANT(/* == */ 1, _(" Choose the job on the {COLOR CYAN}Job\nList{RESET}...{WAIT_PRESS} Then, select {COLOR YELLOW}Take Job{RESET}.{WAIT_PRESS}\nGet in the habit of doing that regularly!")), VARIANT(/* == */ 3, _(" And if you want to go on\na rescue mission...")), - VARIANT(/* == */ 3, _(" Choose the job on the #C5Job\nList#R...#W Then, select #C6Take Job#R.#W\nDon't forget to do that before you leave!")), + VARIANT(/* == */ 3, _(" Choose the job on the {COLOR CYAN}Job\nList{RESET}...{WAIT_PRESS} Then, select {COLOR YELLOW}Take Job{RESET}.{WAIT_PRESS}\nDon't forget to do that before you leave!")), VARIANT_DEFAULT(_(" And if you want to go on\na rescue mission...")), - VARIANT_DEFAULT(_(" Choose the job on the #C5Job\nList#R...#W Then, select #C6Take Job#R.#W\nTry to always do that before you leave!")), + VARIANT_DEFAULT(_(" Choose the job on the {COLOR CYAN}Job\nList{RESET}...{WAIT_PRESS} Then, select {COLOR YELLOW}Take Job{RESET}.{WAIT_PRESS}\nTry to always do that before you leave!")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x9b, 0x00, 0x0100, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -1754,16 +1754,16 @@ static const struct ScriptCommand s_gs4_g16_s1_lives0_dlg0[] = { /* 0x8190fcc */ WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Papa?#W\nPapa, have you ever gone out to sea?") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Papa?{WAIT_PRESS}\nPapa, have you ever gone out to sea?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................#W\nOf course.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................{WAIT_PRESS}\nOf course.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What do you take us for?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh! You have!#W\nPapa, you're so special!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh! You have!{WAIT_PRESS}\nPapa, you're so special!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -1867,16 +1867,16 @@ static const struct ScriptCommand s_gs4_g17_s1_lives0_dlg0[] = { /* 0x819154c */ WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Papa?#W\nPapa, have you ever gone out to sea?") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Papa?{WAIT_PRESS}\nPapa, have you ever gone out to sea?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................#W\nOf course.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................{WAIT_PRESS}\nOf course.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What do you take us for?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh! You have!#W\nPapa, you're so special!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh! You have!{WAIT_PRESS}\nPapa, you're so special!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -1948,17 +1948,17 @@ static const struct ScriptCommand s_gs4_g18_s0_lives0_dlg2[] = { /* 0x8191968 */ { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" .........(Does that mean Papa\ncan swim...?)") }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - ASK3( TRUE, /*default*/ -1, /* speaker */ 3, _(" $n0.#W\n$n0, can you swim?")), + ASK3( TRUE, /*default*/ -1, /* speaker */ 3, _(" {NAME_0}.{WAIT_PRESS}\n{NAME_0}, can you swim?")), CHOICE(/* label */ 0, _("Yes.")), CHOICE(/* label */ 1, _("No.")), LABEL(0), /* = 0x00 */ - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh.\nSo you can swim too, $n0...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh.\nSo you can swim too, {NAME_0}...") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" OK!\nI'm going to try hard to swim too!") }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, JUMP_SCRIPT(END_TALK), LABEL(1), /* = 0x01 */ - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh.\nSo you can't swim either, $n0...") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh.\nSo you can't swim either, {NAME_0}...") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" But that's natural.\nSwimming isn't very easy.") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" My papa is special!\nI'm going to try hard to swim too!") }, { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, @@ -1989,16 +1989,16 @@ static const struct ScriptCommand s_gs4_g18_s1_lives0_dlg2[] = { /* 0x8191d1c */ CHOICE(/* label */ 0, _("Yes.")), CHOICE(/* label */ 1, _("No.")), LABEL(0), /* = 0x00 */ - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, you already knew?#W\nThat's OK, then.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, you already knew?{WAIT_PRESS}\nThat's OK, then.") }, JUMP_SCRIPT(END_TALK), LABEL(1), /* = 0x01 */ - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you choose jobs in the\nsame dungeon on the #C5Job List#R, you can\ndo them at the same time.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If you choose jobs in the\nsame dungeon on the {COLOR CYAN}Job List{RESET}, you can\ndo them at the same time.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" For example, say there are\ntwo rescue jobs in the same dungeon, but\none on 5F and one on 10F.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You can accept these two\njobs, then select #C6Take Job#R on both of them\nbefore heading into that dungeon.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You can accept these two\njobs, then select {COLOR YELLOW}Take Job{RESET} on both of them\nbefore heading into that dungeon.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You can complete the first\nrescue on 5F. Then, instead of exiting,\ngo on to the job on 10F.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" That way, you can do two\nrescue jobs in one outing.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" See?#W If you do that, you\ncan take care of rescue jobs efficiently.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...Ehe, this is what Alakazam\ntold me.#W I just repeated what he said,\nso don't tell anyone else.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" See?{WAIT_PRESS} If you do that, you\ncan take care of rescue jobs efficiently.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...Ehe, this is what Alakazam\ntold me.{WAIT_PRESS} I just repeated what he said,\nso don't tell anyone else.") }, JUMP_SCRIPT(END_TALK), }; @@ -2057,16 +2057,16 @@ static const struct ScriptCommand s_gs4_g19_s1_lives0_dlg0[] = { /* 0x81922f8 */ { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Yes, Papa.") }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Papa?#W\nPapa, can you swim?") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Papa?{WAIT_PRESS}\nPapa, can you swim?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................#W\nOf course.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................{WAIT_PRESS}\nOf course.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What do you take us for?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh! So you can swim!#W\nPapa, you're so special!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Oh! So you can swim!{WAIT_PRESS}\nPapa, you're so special!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -2199,12 +2199,12 @@ static const struct ScriptCommand s_gs4_g20_s1_lives1_dlg0[] = { /* 0x81929a0 */ WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Papa?#W\nPapa, how do you swim in the sea?") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Papa?{WAIT_PRESS}\nPapa, how do you swim in the sea?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................#W\nWell, Son...#W\nThe three of us cooperate, and...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ..................{WAIT_PRESS}\nWell, Son...{WAIT_PRESS}\nThe three of us cooperate, and...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0x2b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -2246,11 +2246,11 @@ static const struct ScriptCommand s_gs4_g20_s1_lives1_dlg0[] = { /* 0x81929a0 */ { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x2b, 0x00, 0x0000, -0x00000001, -0x00000001, NULL }, { 0x2e, 0x02, 0x0002, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...And that's sort of how\nwe swim!#W\nGasp, gasp...") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What do you...#W\nTake us for?!#W\nGasp, gasp...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ...And that's sort of how\nwe swim!{WAIT_PRESS}\nGasp, gasp...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What do you...{WAIT_PRESS}\nTake us for?!{WAIT_PRESS}\nGasp, gasp...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" OK!#W\nPapa, you're so special!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" OK!{WAIT_PRESS}\nPapa, you're so special!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -2451,20 +2451,20 @@ static const struct ScriptCommand s_gs4_g21_s1_lives0_dlg0[] = { /* 0x8193870 */ { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Well, our son!\nTell me, do the earthquakes frighten you?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Yes, Papa.#W\nThey are very scary.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Yes, Papa.{WAIT_PRESS}\nThey are very scary.") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Especially when I'm\nburrowing. It makes me twitchy because\nI get so scared.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Papa?#W\nPapa, aren't you afraid of earthquakes?") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Papa?{WAIT_PRESS}\nPapa, aren't you afraid of earthquakes?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ........................#W\nOf course they don't scare us.") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What do you...#W\nTake us for?!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If we were in charge...#W\nThis is what we'd do to any earthquake!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ........................{WAIT_PRESS}\nOf course they don't scare us.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What do you...{WAIT_PRESS}\nTake us for?!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If we were in charge...{WAIT_PRESS}\nThis is what we'd do to any earthquake!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x2b, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, @@ -2508,7 +2508,7 @@ static const struct ScriptCommand s_gs4_g21_s1_lives0_dlg0[] = { /* 0x8193870 */ { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Gasp, gasp...") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" OK!#W\nPapa, you're so special!") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" OK!{WAIT_PRESS}\nPapa, you're so special!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -2707,19 +2707,19 @@ static const struct ScriptCommand s_gs4_g22_s1_lives0_dlg0[] = { /* 0x81947b4 */ { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Well, my son?\nDoes Groudon frighten you?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Yes, Papa.#W\nIt frightens me so much I don't know\nwhat to think.") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Yes, Papa.{WAIT_PRESS}\nIt frightens me so much I don't know\nwhat to think.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Papa?#W\nAre you going to the #CDMagma Cavern#R too,\nPapa?") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" Papa?{WAIT_PRESS}\nAre you going to the {COLOR YELLOW_D}Magma Cavern{RESET} too,\nPapa?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(10), { 0xe4, 0x00, 0x0007, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ........................#W\nOf course.") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" ........................{WAIT_PRESS}\nOf course.") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" What do you take us for?!") }, - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If we were in charge...#W\nThis is what we'd do to the #CDMagma\nCavern#R!#W Hah!") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" If we were in charge...{WAIT_PRESS}\nThis is what we'd do to the {COLOR YELLOW_D}Magma\nCavern{RESET}!{WAIT_PRESS} Hah!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0x2b, 0x00, 0x0000, 0x0000000a, 0x0000000a, NULL }, @@ -2731,7 +2731,7 @@ static const struct ScriptCommand s_gs4_g22_s1_lives0_dlg0[] = { /* 0x81947b4 */ { 0x2b, 0x00, 0x0000, -0x00000001, -0x00000001, NULL }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ............") }, { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ........................") }, - { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ....................................#WHuh?#W\nPapa?#W Where did you go, Papa?") }, + { 0x34, 0x00, 0x0003, 0x00000000, 0x00000000, _(" ....................................{WAIT_PRESS}Huh?{WAIT_PRESS}\nPapa?{WAIT_PRESS} Where did you go, Papa?") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(30), { 0xe4, 0x00, 0x0008, 0x00000000, 0x00000000, NULL }, @@ -2829,14 +2829,14 @@ static const struct ScriptCommand s_gs4_g23_s0_lives0_dlg2[] = { /* 0x8194fac */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Papa hasn't come back...#W\nI wonder where they went?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Papa hasn't come back...{WAIT_PRESS}\nI wonder where they went?") }, FANFARE_PLAY2(465), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh!#W Maybe they've already\ngone to the #CDMagma Cavern#R...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh!{WAIT_PRESS} Maybe they've already\ngone to the {COLOR YELLOW_D}Magma Cavern{RESET}...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And maybe they're already\nfighting Groudon.") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And, maybe, maybe...#W\nMaybe they've already won.#W\nMaybe they've already beaten Groudon!") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, wow! That's amazing!#W\nMaybe Papa is special!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And, maybe, maybe...{WAIT_PRESS}\nMaybe they've already won.{WAIT_PRESS}\nMaybe they've already beaten Groudon!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, wow! That's amazing!{WAIT_PRESS}\nMaybe Papa is special!") }, JUMP_SCRIPT(END_TALK), }; @@ -2875,7 +2875,7 @@ static const struct ScriptCommand s_gs4_g24_s0_lives0_dlg2[] = { /* 0x81952bc */ FANFARE_PLAY2(465), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh!#W\nMaybe they've already gone to the sky...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh!{WAIT_PRESS}\nMaybe they've already gone to the sky...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And maybe they've already\nmet Rayquaza...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...That's not possible.\nEven Papa can't fly.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sigh...\nWhere did Papa go...?") }, @@ -2909,7 +2909,7 @@ static const struct ScriptCommand s_gs4_g24_s0_lives2_dlg2[] = { /* 0x81955d8 */ { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh my, isn't this awful!") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But I get the feeling that\nyou can make a difference, $n0!\nPlease don't let us down!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But I get the feeling that\nyou can make a difference, {NAME_0}!\nPlease don't let us down!") }, JUMP_SCRIPT(END_TALK), }; @@ -2938,7 +2938,7 @@ static const struct ScriptCommand s_gs4_g25_s0_lives0_dlg2[] = { /* 0x8195750 */ FANFARE_PLAY2(465), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh!#W\nMaybe they've already gone to the sky...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh!{WAIT_PRESS}\nMaybe they've already gone to the sky...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And maybe they've already\nmet Rayquaza...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...That's not possible.\nEven Papa can't fly.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sigh...\nWhere did Papa go...?") }, @@ -3000,7 +3000,7 @@ static const struct ScriptCommand s_gs4_g26_s0_lives0_dlg2[] = { /* 0x8195a5c */ FANFARE_PLAY2(465), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh!#W\nMaybe they've already gone to the sky...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh!{WAIT_PRESS}\nMaybe they've already gone to the sky...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And maybe they've already\nmet Rayquaza...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ...That's not possible.\nEven Papa can't fly.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sigh...\nWhere did Papa go...?") }, @@ -3082,13 +3082,13 @@ static const struct ScriptCommand s_gs4_g28_s0_lives0_dlg2[] = { /* 0x8195e54 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" But Papa still hasn't come\nback...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Everyone says they haven't\nseen them...#W\nWhere did my papa go?") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Everyone says they haven't\nseen them...{WAIT_PRESS}\nWhere did my papa go?") }, FANFARE_PLAY2(465), { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, { 0xe3, 0x00, 0x0005, 0x00000000, 0x00000000, NULL }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh!#W\nMaybe they got left behind in the sky...") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh!{WAIT_PRESS}\nMaybe they got left behind in the sky...") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" And maybe Rayquaza is\nhaving them as a meal...") }, - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ......#WThat's not possible.#W\nPapa can't fly in the first place.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" ......{WAIT_PRESS}That's not possible.{WAIT_PRESS}\nPapa can't fly in the first place.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Sigh...\nWhere did Papa go...?") }, JUMP_SCRIPT(END_TALK), }; @@ -3112,7 +3112,7 @@ static const struct ScriptCommand s_gs4_g28_s0_lives1_dlg2[] = { /* 0x819614c */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, how marvelous,\n$n0!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, how marvelous,\n{NAME_0}!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I can go on living again\nwithout fear. Thank you!") }, JUMP_SCRIPT(END_TALK), }; @@ -3132,7 +3132,7 @@ static const struct ScriptCommand s_gs4_g28_s0_lives3_dlg2[] = { /* 0x81962d8 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, darlings, you've outdone\nyourselves, $n0!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Oh, darlings, you've outdone\nyourselves, {NAME_0}!") }, JUMP_SCRIPT(END_TALK), }; @@ -3141,7 +3141,7 @@ static const struct ScriptCommand s_gs4_g28_s0_lives4_dlg2[] = { /* 0x8196370 */ { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You fought your way up\na tower of clouds?#W I can't even imagine\nthat. Sounds kind of wow!#W Ayup!") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" You fought your way up\na tower of clouds?{WAIT_PRESS} I can't even imagine\nthat. Sounds kind of wow!{WAIT_PRESS} Ayup!") }, JUMP_SCRIPT(END_TALK), }; diff --git a/src/data/ground/ground_data_t01p04_station.h b/src/data/ground/ground_data_t01p04_station.h index 8cfad439f..ea74365de 100644 --- a/src/data/ground/ground_data_t01p04_station.h +++ b/src/data/ground/ground_data_t01p04_station.h @@ -196,7 +196,7 @@ static const struct ScriptCommand s_gs5_g3_s0_lives0_dlg0[] = { /* 0x8198234 */ { 0x2d, 0x09, 0x0002, 0x0000002f, 0x00000000, NULL }, { 0x3b, 0x0c, 0x0000, 0x00000000, 0x00000000, NULL }, COND_EQUAL(0, /* to label */ 0), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh! Welcome back!#W\nThe rescue...#Wwent badly, I see...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh! Welcome back!{WAIT_PRESS}\nThe rescue...{WAIT_PRESS}went badly, I see...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But that wasn't the final\nchance! Don't give up!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -204,7 +204,7 @@ static const struct ScriptCommand s_gs5_g3_s0_lives0_dlg0[] = { /* 0x8198234 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, RET, LABEL(0), /* = 0x00 */ - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh! Welcome back!#W\nThe rescue...#Wwent badly, I see...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh! Welcome back!{WAIT_PRESS}\nThe rescue...{WAIT_PRESS}went badly, I see...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm terribly sorry, but you\nmay not go on that rescue again...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Please inform your friend\nthat, regrettably, the friend rescue\nmission ended in failure.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, @@ -249,7 +249,7 @@ static const struct ScriptCommand s_gs5_g4_s0_lives0_dlg0[] = { /* 0x81985f8 */ { 0x2d, 0x09, 0x0002, 0x0000002f, 0x00000000, NULL }, { 0x3b, 0x0c, 0x0000, 0x00000000, 0x00000000, NULL }, COND_EQUAL(0, /* to label */ 0), - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh! Welcome back!#W\nThe rescue...#Wwent badly, I see...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh! Welcome back!{WAIT_PRESS}\nThe rescue...{WAIT_PRESS}went badly, I see...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" But that wasn't the final\nchance! Don't give up!") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0xe4, 0x00, 0x0003, 0x00000000, 0x00000000, NULL }, @@ -257,7 +257,7 @@ static const struct ScriptCommand s_gs5_g4_s0_lives0_dlg0[] = { /* 0x81985f8 */ { 0xe4, 0x00, 0x0006, 0x00000000, 0x00000000, NULL }, RET, LABEL(0), /* = 0x00 */ - { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh! Welcome back!#W\nThe rescue...#Wwent badly, I see...") }, + { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Oh! Welcome back!{WAIT_PRESS}\nThe rescue...{WAIT_PRESS}went badly, I see...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" I'm terribly sorry, but you\nmay not go on that rescue again...") }, { 0x34, 0x00, 0x0002, 0x00000000, 0x00000000, _(" Please inform your friend\nthat, regrettably, the friend rescue\nmission ended in failure.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, diff --git a/src/data/ground/ground_data_t01p05_station.h b/src/data/ground/ground_data_t01p05_station.h index aee2e7b08..8f26ab2c8 100644 --- a/src/data/ground/ground_data_t01p05_station.h +++ b/src/data/ground/ground_data_t01p05_station.h @@ -164,9 +164,9 @@ static const struct ScriptCommand s_gs6_g1_s1_evt0_sref_script[] = { /* 0x819952 { 0x54, 0x00, 0x0002, 0x00000000, 0x00000000, NULL }, { 0x2d, 0x07, 0x0000, 0x00000000, 0x00000000, NULL }, WAIT(1), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+There appears to be no one inside.") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+............!#W\n#+There is a notice posted in the back.") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+Under Construction - Keep Out\n#+- Makuhita Dojo -") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}There appears to be no one inside.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}............!{WAIT_PRESS}\n{CENTER_ALIGN}There is a notice posted in the back.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}Under Construction - Keep Out\n{CENTER_ALIGN}- Makuhita Dojo -") }, JUMP_SCRIPT(END_TALK), }; diff --git a/src/data/ground/ground_event_data.h b/src/data/ground/ground_event_data.h index f7f71488e..8895c17ac 100644 --- a/src/data/ground/ground_event_data.h +++ b/src/data/ground/ground_event_data.h @@ -37,7 +37,7 @@ static const struct ScriptCommand s_script_WAIT_START_FUNC[] = { /* 0x811ef28 */ static const struct ScriptCommand s_script_INCOMPLETE_TALK[] = { /* 0x811ef58 */ DEBUGINFO, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#CWUnregistered dialog script#R") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{COLOR RED_W}Unregistered dialog script{RESET}") }, JUMP_SCRIPT(END_TALK), }; @@ -75,7 +75,7 @@ static const struct ScriptCommand s_script_OBJECT_REPLY_NORMAL[] = { /* 0x811f0a static const struct ScriptCommand s_script_EXAMINE_MISS[] = { /* 0x811f0e8 */ DEBUGINFO, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("$n0 checked underfoot.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{NAME_0} checked underfoot.") }, { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("But there was nothing to be found...") }, JUMP_SCRIPT(END_TALK), }; @@ -135,16 +135,16 @@ static const struct ScriptCommand s_script_HABITAT_TALK_S01E02A[] = { /* 0x811f3 RET, LABEL(0), /* = 0x00 */ { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Hello!") }, - ASK3(FALSE, /*default*/ 1, /* speaker */ 1, _(" Oh?#W Did you perhaps wish\nto change the team flag's design?")), + ASK3(FALSE, /*default*/ 1, /* speaker */ 1, _(" Oh?{WAIT_PRESS} Did you perhaps wish\nto change the team flag's design?")), CHOICE(/* label */ 1, _("No need to change.")), CHOICE(/* label */ 2, _("Yes, please.")), LABEL(1), /* = 0x01 */ - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I see.#W If you would like the\nflag's design changed, please tell me.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I see.{WAIT_PRESS} If you would like the\nflag's design changed, please tell me.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, { 0x3b, 0x10, 0x0000, 0x00000000, 0x00000000, NULL }, RET, LABEL(2), /* = 0x02 */ - { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Ah, very well!#W\nI may be unknown, but nonetheless, I am\nan artist.") }, + { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" Ah, very well!{WAIT_PRESS}\nI may be unknown, but nonetheless, I am\nan artist.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" I will do my best to create\na splendid design for you!\nPlease check the rescue team flag later!") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If my design fails to\nimpress you, please let me know.") }, { 0x34, 0x00, 0x0001, 0x00000000, 0x00000000, _(" If so, I will change the\ndesign to one perhaps more to your liking.") }, @@ -556,8 +556,8 @@ static const struct ScriptCommand s_script_DISMISSAL_SALLY_MEMBER_FUNC[] = { /* { 0xf2, 0x00, 0x0002, 0x00000000, 0x00000000, _("DISMISSAL_SALLY_MEMBER_FUNC\n") }, { 0x3b, 0x09, 0x0000, 0x00000000, 0x00000000, NULL }, COND_EQUAL(0, /* to label */ 0), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The rescue team member(s)\n#+dispersed to the Friend Area(s).") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+If you want to add members to\n#+the rescue team, go visit\n#+them in their Friend Areas.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The rescue team member(s)\n{CENTER_ALIGN}dispersed to the Friend Area(s).") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}If you want to add members to\n{CENTER_ALIGN}the rescue team, go visit\n{CENTER_ALIGN}them in their Friend Areas.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ RET_DIRECT, @@ -568,8 +568,8 @@ static const struct ScriptCommand s_script_DISMISSAL_SALLY_MEMBER2_FUNC[] = { /* { 0xf2, 0x00, 0x0002, 0x00000000, 0x00000000, _("DISMISSAL_SALLY_MEMBER2_FUNC\n") }, { 0x3b, 0x09, 0x0000, 0x00000000, 0x00000000, NULL }, COND_EQUAL(0, /* to label */ 0), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The rescue team member(s)\n#+dispersed to the Friend Area(s).") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+If you want to add members to\n#+the rescue team, go visit\n#+them in their Friend Areas.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The rescue team member(s)\n{CENTER_ALIGN}dispersed to the Friend Area(s).") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}If you want to add members to\n{CENTER_ALIGN}the rescue team, go visit\n{CENTER_ALIGN}them in their Friend Areas.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ RET_DIRECT, @@ -580,8 +580,8 @@ static const struct ScriptCommand s_script_DISMISSAL_SALLY_MEMBER3_FUNC[] = { /* { 0xf2, 0x00, 0x0002, 0x00000000, 0x00000000, _("DISMISSAL_SALLY_MEMBER3_FUNC\n") }, { 0x3b, 0x09, 0x0000, 0x00000000, 0x00000000, NULL }, COND_EQUAL(0, /* to label */ 0), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The rescue team member(s)\n#+dispersed to the Friend Area(s).") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+If you want to add members to\n#+the rescue team, go visit\n#+them in their Friend Areas.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The rescue team member(s)\n{CENTER_ALIGN}dispersed to the Friend Area(s).") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}If you want to add members to\n{CENTER_ALIGN}the rescue team, go visit\n{CENTER_ALIGN}them in their Friend Areas.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ RET_DIRECT, @@ -592,8 +592,8 @@ static const struct ScriptCommand s_script_DISMISSAL_SALLY_MEMBER4_FUNC[] = { /* { 0xf2, 0x00, 0x0002, 0x00000000, 0x00000000, _("DISMISSAL_SALLY_MEMBER4_FUNC\n") }, { 0x3b, 0x09, 0x0000, 0x00000000, 0x00000000, NULL }, COND_EQUAL(0, /* to label */ 0), - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+The rescue team member(s)\n#+dispersed to the Friend Area(s).") }, - { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("#+If you want to add members to\n#+the rescue team, go visit\n#+them in their Friend Areas.") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}The rescue team member(s)\n{CENTER_ALIGN}dispersed to the Friend Area(s).") }, + { 0x32, 0x00, -0x0001, 0x00000000, 0x00000000, _("{CENTER_ALIGN}If you want to add members to\n{CENTER_ALIGN}the rescue team, go visit\n{CENTER_ALIGN}them in their Friend Areas.") }, { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, LABEL(0), /* = 0x00 */ RET_DIRECT, @@ -1763,11 +1763,11 @@ static const struct ScriptCommand s_script_EVENT_DIVIDE_WARP_LOCK_FUNC[] = { /* { 0x2d, 0x09, 0x0001, 0x00000022, 0x00000000, NULL }, MSG_VAR(2, PARTNER_TALK_KIND, 1), VARIANT(/* == */ 1, _(" Huh?\nAre you going home already?")), - VARIANT(/* == */ 1, _(" We haven't gone to the\n#C5Pelipper Post Office#R yet?")), - VARIANT(/* == */ 1, _(" You can go home after we\ngo to the #C5Pelipper Post Office#R.")), + VARIANT(/* == */ 1, _(" We haven't gone to the\n{COLOR CYAN}Pelipper Post Office{RESET} yet?")), + VARIANT(/* == */ 1, _(" You can go home after we\ngo to the {COLOR CYAN}Pelipper Post Office{RESET}.")), VARIANT_DEFAULT(_(" Huh?\nYou want to go home already?")), VARIANT_DEFAULT(_(" We're already here.\nLet me show you around a bit more.")), - VARIANT_DEFAULT(_(" Let's go to the #C5Pelipper\nPost Office#R at least.")), + VARIANT_DEFAULT(_(" Let's go to the {COLOR CYAN}Pelipper\nPost Office{RESET} at least.")), { 0x30, 0x00, 0x0000, 0x00000000, 0x00000000, NULL }, RET_DIRECT, LABEL(1), /* = 0x01 */ diff --git a/src/data/gulpin_shop.h b/src/data/gulpin_shop.h index c9312ab65..8bd5d1909 100644 --- a/src/data/gulpin_shop.h +++ b/src/data/gulpin_shop.h @@ -30,12 +30,12 @@ ALIGNED(4) static const u8 sWillAMoveBeForgotten[] = _( "Will a move be forgotten?"); ALIGNED(4) static const u8 sForgetMoveAndLinkedOnes[] = _( - "{CENTER_ALIGN}Forget the move {COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1} and\n" + "{CENTER_ALIGN}Forget the move {COLOR GREEN}{POKEMON_1}{RESET} and\n" "{CENTER_ALIGN}any moves linked to it, and learn the move\n" - "{CENTER_ALIGN}{COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}?"); + "{CENTER_ALIGN}{COLOR CYAN}{POKEMON_0}{RESET}?"); ALIGNED(4) static const u8 sForgetMoveOnly[] = _( - "{CENTER_ALIGN}Forget the move {COLOR_1 GREEN}{ARG_POKEMON_1}{END_COLOR_TEXT_1}\n" - "{CENTER_ALIGN}and learn {COLOR_1 CYAN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}?"); + "{CENTER_ALIGN}Forget the move {COLOR GREEN}{POKEMON_1}{RESET}\n" + "{CENTER_ALIGN}and learn {COLOR CYAN}{POKEMON_0}{RESET}?"); ALIGNED(4) static const u8 sForget[] = _("Forget"); \ No newline at end of file diff --git a/src/data/gulpin_shop_801FB50.h b/src/data/gulpin_shop_801FB50.h index 6570573f9..cf1567c84 100644 --- a/src/data/gulpin_shop_801FB50.h +++ b/src/data/gulpin_shop_801FB50.h @@ -48,7 +48,7 @@ ALIGNED(4) static const u8 gUnknown_80DC394[] = _( "{R_BUTTON}+{A_BUTTON}: Switch link {SELECT_BUTTON} Set"); ALIGNED(4) static const u8 gGulpinProceed[] = _("Proceed"); -ALIGNED(4) static const u8 gGulpinInfo[] = _("{COLOR_1 YELLOW}Info{END_COLOR_TEXT_1} "); +ALIGNED(4) static const u8 gGulpinInfo[] = _("{COLOR YELLOW}Info{RESET} "); ALIGNED(4) static const u8 gUnknown_80DC3D8[] = _("Moves"); ALIGNED(4) static const u8 gUnknown_80DC3E0[] = _("Summary"); ALIGNED(4) static const u8 gUnknown_80DC3E8[] = _("Check IQ"); diff --git a/src/data/iq_skill_info_menu.h b/src/data/iq_skill_info_menu.h index 3cf8c3ba9..a652eb8c3 100644 --- a/src/data/iq_skill_info_menu.h +++ b/src/data/iq_skill_info_menu.h @@ -1,2 +1,2 @@ -ALIGNED(4) static const u8 sFmtMoveItem0[] = _("{ARG_MOVE_ITEM_0}"); -ALIGNED(4) static const u8 sFmtPkmn0[] = _("{ARG_POKEMON_0}"); \ No newline at end of file +ALIGNED(4) static const u8 sFmtMoveItem0[] = _("{MOVE_ITEM_0}"); +ALIGNED(4) static const u8 sFmtPkmn0[] = _("{POKEMON_0}"); \ No newline at end of file diff --git a/src/data/iq_skill_list_menu.h b/src/data/iq_skill_list_menu.h index fd25289f1..a3182b376 100644 --- a/src/data/iq_skill_list_menu.h +++ b/src/data/iq_skill_list_menu.h @@ -19,4 +19,4 @@ static const UnkTextStruct2 sUnknown_80DBDF0 = { ALIGNED(4) static const u8 sIQSkills[] = _("IQ Skills"); ALIGNED(4) static const u8 sStarBullet[] = _("{STAR_BULLET}"); ALIGNED(4) static const u8 sUnknown_80DBE18[] = _("{UNK_ICON_40}"); -ALIGNED(4) static const u8 sFmt01[] = _("{ARG_MOVE_ITEM_0}{ARG_MOVE_ITEM_1}"); \ No newline at end of file +ALIGNED(4) static const u8 sFmt01[] = _("{MOVE_ITEM_0}{MOVE_ITEM_1}"); \ No newline at end of file diff --git a/src/data/kecleon_bros2.h b/src/data/kecleon_bros2.h index 1265c2f4b..055ff803d 100644 --- a/src/data/kecleon_bros2.h +++ b/src/data/kecleon_bros2.h @@ -17,4 +17,4 @@ static const UnkTextStruct2 sUnknown_80DB8CC = { }; ALIGNED(4) static const u8 sGoods[] = _("Goods"); -ALIGNED(4) static const u8 sFmtRed[] = _("{COLOR_1 RED}%s{END_COLOR_TEXT_1}"); \ No newline at end of file +ALIGNED(4) static const u8 sFmtRed[] = _("{COLOR RED}%s{RESET}"); \ No newline at end of file diff --git a/src/data/kecleon_bros3.h b/src/data/kecleon_bros3.h index 6e5f32ca0..ceb5b732e 100644 --- a/src/data/kecleon_bros3.h +++ b/src/data/kecleon_bros3.h @@ -17,4 +17,4 @@ static const UnkTextStruct2 sUnknown_80DB914 = { }; ALIGNED(4) static const u8 sGoods[] = _("Goods"); -ALIGNED(4) static const u8 sFmtRed[] = _("{COLOR_1 RED}%s{END_COLOR_TEXT_1}"); \ No newline at end of file +ALIGNED(4) static const u8 sFmtRed[] = _("{COLOR RED}%s{RESET}"); \ No newline at end of file diff --git a/src/data/kecleon_bros4.h b/src/data/kecleon_bros4.h index 2338493fd..8c89d6847 100644 --- a/src/data/kecleon_bros4.h +++ b/src/data/kecleon_bros4.h @@ -18,7 +18,7 @@ static const UnkTextStruct2 sUnknown_80DB95C = { ALIGNED(4) static const u8 sTeamToolboxA[] = _("Team Toolbox A"); ALIGNED(4) static const u8 sTeamToolboxB[] = _("Team Toolbox B"); -ALIGNED(4) static const u8 sFmtMoveItem0[] = _("{COLOR_1 UNK_COLOR_2}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1}"); -ALIGNED(4) static const u8 sFmtRed[] = _("{COLOR_1 RED}%s{END_COLOR_TEXT_1}"); +ALIGNED(4) static const u8 sFmtMoveItem0[] = _("{COLOR RED_RAW}{MOVE_ITEM_0}{RESET}"); +ALIGNED(4) static const u8 sFmtRed[] = _("{COLOR RED}%s{RESET}"); ALIGNED(4) static const u8 sItems[] = _("Items"); ALIGNED(4) static const u8 sSlash[] = _("/"); \ No newline at end of file diff --git a/src/data/luminous_cave.h b/src/data/luminous_cave.h index f10c58c9a..8cbdd6693 100644 --- a/src/data/luminous_cave.h +++ b/src/data/luminous_cave.h @@ -77,12 +77,12 @@ ALIGNED(4) static const u8 sLetUsBegin[] = _( "{CENTER_ALIGN}Let us begin."); ALIGNED(4) static const u8 sFmtChangedAppearance[] = _( - "{CENTER_ALIGN}...{WAIT_PRESS}{ARG_NICKNAME_0} is undergoing changes...{EXTRA_MSG}" - "{CENTER_ALIGN}{ARG_NICKNAME_0}'s appearance changed...{EXTRA_MSG}"); + "{CENTER_ALIGN}...{WAIT_PRESS}{NAME_0} is undergoing changes...{EXTRA_MSG}" + "{CENTER_ALIGN}{NAME_0}'s appearance changed...{EXTRA_MSG}"); ALIGNED(4) static const u8 sFmtEvolved[] = _( - "{CENTER_ALIGN}It evolved from {COLOR_1 GREEN}{ARG_POKEMON_0}{END_COLOR_TEXT_1}\n" - "{CENTER_ALIGN}to {COLOR_1 YELLOW}{ARG_POKEMON_1}{END_COLOR_TEXT_1}!"); + "{CENTER_ALIGN}It evolved from {COLOR GREEN}{POKEMON_0}{RESET}\n" + "{CENTER_ALIGN}to {COLOR YELLOW}{POKEMON_1}{RESET}!"); ALIGNED(4) static const u8 sComeAlone[] = _( "{CENTER_ALIGN}...{EXTRA_MSG}" diff --git a/src/data/main_menu2.h b/src/data/main_menu2.h index 935626ceb..a7cb731fa 100644 --- a/src/data/main_menu2.h +++ b/src/data/main_menu2.h @@ -219,7 +219,7 @@ static const MenuItem sUnknown_80E5DF0[] = {sUnknown_80E5E08, 0xFFDE}, {0, 0xFFDD} }; -ALIGNED(4) static const u8 sUnknown_80E5E08[] = _("{COLOR_1 RED}Beware{END_COLOR_TEXT_1}! This will delete it forever!"); +ALIGNED(4) static const u8 sUnknown_80E5E08[] = _("{COLOR RED}Beware{RESET}! This will delete it forever!"); ALIGNED(4) static const u8 sUnknown_80E5E34[] = _("This will delete your saved game data."); static const u8 sUnknown_80E5E74[]; diff --git a/src/data/makuhita_dojo1.h b/src/data/makuhita_dojo1.h index f2b10cc53..ea5c04a47 100644 --- a/src/data/makuhita_dojo1.h +++ b/src/data/makuhita_dojo1.h @@ -8,7 +8,7 @@ static const UnkTextStruct2 sUnknown_80E0760 = { }; ALIGNED(4) static const u8 sReceivedBonslyDoll[] = _( - "{CENTER_ALIGN}{COLOR_1 YELLOW_5}{ARG_NICKNAME_0}{END_COLOR_TEXT_1} received the {COLOR_1 GREEN_2}Bonsly Doll{END_COLOR_TEXT_1}!\n" + "{CENTER_ALIGN}{COLOR YELLOW_N}{NAME_0}{RESET} received the {COLOR GREEN_I}Bonsly Doll{RESET}!\n" "{CENTER_ALIGN}It has been placed outside your\n" "{CENTER_ALIGN}rescue team base."); diff --git a/src/data/makuhita_dojo2.h b/src/data/makuhita_dojo2.h index 80f12b767..f3472bda4 100644 --- a/src/data/makuhita_dojo2.h +++ b/src/data/makuhita_dojo2.h @@ -18,4 +18,4 @@ static const UnkTextStruct2 sUnknown_80E0804 = { ALIGNED(4) static const u8 sCourses[] = _("Courses"); ALIGNED(4) static const u8 sStarBullet[] = _("{STAR_BULLET}"); -ALIGNED(4) static const u8 sFmtColor[] = _("{COLOR_2}%c%s{END_COLOR_TEXT_2}"); \ No newline at end of file +ALIGNED(4) static const u8 sFmtColor[] = _("{color}%c%s{reset}"); \ No newline at end of file diff --git a/src/data/other_menus1.h b/src/data/other_menus1.h index 2c1d21101..094c266e8 100644 --- a/src/data/other_menus1.h +++ b/src/data/other_menus1.h @@ -26,7 +26,7 @@ const MenuItem sUnknown_80E656C[4] = { // TODO: MAKE STATIC WHEN other_menus1.s }; ALIGNED(4) static const u8 sUnknown_80E658C[] = _("{CENTER_ALIGN}Don't turn the power off!"); ALIGNED(4) static const u8 sUnknown_80E65AC[] = _("{CENTER_ALIGN}Item transmitting!"); -ALIGNED(4) static const u8 sUnknown_80E65C4[] = _("{CENTER_ALIGN}{COLOR_1 RED}Caution!{END_COLOR_TEXT_1} "); +ALIGNED(4) static const u8 sUnknown_80E65C4[] = _("{CENTER_ALIGN}{COLOR RED}Caution!{RESET} "); static const u8 sUnknown_80E65F8[]; const MenuItem sUnknown_80E65D8[4] = { // TODO: MAKE STATIC WHEN other_menus1.s IS DED @@ -82,7 +82,7 @@ static const MenuItem sUnknown_80E66D4[4] = { }; ALIGNED(4) static const u8 sUnknown_80E66F4[] = _("{CENTER_ALIGN}Please press any button."); ALIGNED(4) static const u8 sUnknown_80E6710[] = _("{CENTER_ALIGN}Your adventure will be continued."); -ALIGNED(4) static const u8 sUnknown_80E6734[] = _("{CENTER_ALIGN}{COLOR_1 LIGHT_BLUE}Success!{END_COLOR_TEXT_1} "); +ALIGNED(4) static const u8 sUnknown_80E6734[] = _("{CENTER_ALIGN}{COLOR CYAN_G}Success!{RESET} "); static const UnkTextStruct2 sUnknown_80E6748 = { 0, 0, 0, 0, @@ -104,7 +104,7 @@ static const MenuItem sUnknown_80E6760[4] = { }; ALIGNED(4) static const u8 sUnknown_80E6780[] = _("{CENTER_ALIGN}please try again."); ALIGNED(4) static const u8 sUnknown_80E6794[] = _("{CENTER_ALIGN}Check the Game Link cable and"); -ALIGNED(4) static const u8 sUnknown_80E67B4[] = _("{CENTER_ALIGN}{COLOR_1 RED}Communication error!{END_COLOR_TEXT_1} "); +ALIGNED(4) static const u8 sUnknown_80E67B4[] = _("{CENTER_ALIGN}{COLOR RED}Communication error!{RESET} "); static const UnkTextStruct2 sUnknown_80E67D4 = { 0, 0, 0, 0, @@ -164,7 +164,7 @@ static const MenuItem sUnknown_80E68B4[4] = { }; ALIGNED(4) static const u8 sUnknown_80E68D4[] = _("{CENTER_ALIGN}someone's storage space was full."); ALIGNED(4) static const u8 sUnknown_80E68FC[] = _("{CENTER_ALIGN}An item could not be transferred because"); -ALIGNED(4) static const u8 sUnknown_80E6928[] = _("{CENTER_ALIGN}{COLOR_1 RED}Error!{END_COLOR_TEXT_1} "); +ALIGNED(4) static const u8 sUnknown_80E6928[] = _("{CENTER_ALIGN}{COLOR RED}Error!{RESET} "); static const UnkTextStruct2 sUnknown_80E6938 = { 0, 0, 0, 0, @@ -184,7 +184,7 @@ static const MenuItem sUnknown_80E6950[4] = { {NULL, 3}, }; ALIGNED(4) static const u8 sUnknown_80E6970[] = _("{CENTER_ALIGN}Please check again."); -ALIGNED(4) static const u8 sUnknown_80E6988[] = _("{CENTER_ALIGN}This {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1} can't be used."); +ALIGNED(4) static const u8 sUnknown_80E6988[] = _("{CENTER_ALIGN}This {COLOR CYAN_G}SOS Mail{RESET} can't be used."); static const UnkTextStruct2 sUnknown_80E69B0 = { 0, 0, 0, 0, @@ -202,7 +202,7 @@ static const MenuItem sUnknown_80E69C8[4] = { {sUnknown_80E6970, 5}, {NULL, 3}, }; -ALIGNED(4) static const u8 sUnknown_80E69E8[] = _("{CENTER_ALIGN}This {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} can't be used."); +ALIGNED(4) static const u8 sUnknown_80E69E8[] = _("{CENTER_ALIGN}This {COLOR CYAN_G}A-OK Mail{RESET} can't be used."); static const UnkTextStruct2 sUnknown_80E6A10 = { 0, 0, 0, 0, @@ -220,7 +220,7 @@ static const MenuItem sUnknown_80E6A28[4] = { {sUnknown_80E6970, 5}, {NULL, 3}, }; -ALIGNED(4) static const u8 sUnknown_80E6A48[] = _("{CENTER_ALIGN}This {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} can't be used."); +ALIGNED(4) static const u8 sUnknown_80E6A48[] = _("{CENTER_ALIGN}This {COLOR CYAN_G}Thank-You Mail{RESET} can't be used."); static const UnkTextStruct2 sUnknown_80E6A74 = { 0, 0, 0, 0, @@ -260,7 +260,7 @@ UNUSED static const MenuItem sUnknown_80E6B04[4] = { {NULL, 3}, }; ALIGNED(4) static const u8 sUnknown_80E6B24[] = _("{CENTER_ALIGN}You need to go further in the story."); -ALIGNED(4) static const u8 sUnknown_80E6B4C[] = _("{CENTER_ALIGN}You may not go to that {COLOR_1 LIGHT_BLUE}dungeon{END_COLOR_TEXT_1} yet."); +ALIGNED(4) static const u8 sUnknown_80E6B4C[] = _("{CENTER_ALIGN}You may not go to that {COLOR CYAN_G}dungeon{RESET} yet."); static const UnkTextStruct2 sUnknown_80E6B78 = { 0, 0, 0, 0, diff --git a/src/data/party_list_menu.h b/src/data/party_list_menu.h index a0d73d0e9..33a2d849e 100644 --- a/src/data/party_list_menu.h +++ b/src/data/party_list_menu.h @@ -58,38 +58,38 @@ ALIGNED(4) static const u8 sUnknown_80DD420[] = _( "Will you release it anyway?"); ALIGNED(4) static const u8 sUnknown_80DD4C4[] = _( - "{CENTER_ALIGN}{ARG_POKEMON_1} joined the\n" + "{CENTER_ALIGN}{POKEMON_1} joined the\n" "{CENTER_ALIGN}rescue team for adventures!"); ALIGNED(4) static const u8 sUnknown_80DD4F4[] = _( - "{CENTER_ALIGN}{ARG_POKEMON_1} left the team to remain\n" + "{CENTER_ALIGN}{POKEMON_1} left the team to remain\n" "{CENTER_ALIGN}on standby in the Friend Area."); ALIGNED(4) static const u8 sBecameLeader[] = _( - "{CENTER_ALIGN}{ARG_POKEMON_1} became the leader\n" + "{CENTER_ALIGN}{POKEMON_1} became the leader\n" "{CENTER_ALIGN}of the rescue team."); ALIGNED(4) static const u8 sUnknown_80DD564[] = _( - "{CENTER_ALIGN}{ARG_POKEMON_1} left\n" + "{CENTER_ALIGN}{POKEMON_1} left\n" "{CENTER_ALIGN}the Friend Area.\n" - "{CENTER_ALIGN}Bye-bye, {ARG_POKEMON_1}!"); + "{CENTER_ALIGN}Bye-bye, {POKEMON_1}!"); ALIGNED(4) static const u8 sUnknown_80DD594[] = _( - "{CENTER_ALIGN}The {COLOR_1 GREEN}{ARG_MOVE_ITEM_1}{END_COLOR_TEXT_1} was\n" + "{CENTER_ALIGN}The {COLOR GREEN}{MOVE_ITEM_1}{RESET} was\n" "{CENTER_ALIGN}handed over. "); ALIGNED(4) static const u8 sUnknown_80DD5B8[] = _( - "{CENTER_ALIGN}The {COLOR_1 GREEN}{ARG_MOVE_ITEM_1}{END_COLOR_TEXT_1} was\n" + "{CENTER_ALIGN}The {COLOR GREEN}{MOVE_ITEM_1}{RESET} was\n" "{CENTER_ALIGN}handed over.{EXTRA_MSG}" - "{CENTER_ALIGN}The {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1} was\n" + "{CENTER_ALIGN}The {COLOR GREEN}{MOVE_ITEM_0}{RESET} was\n" "{CENTER_ALIGN}returned to the Toolbox."); ALIGNED(4) static const u8 sUnknown_80DD60C[] = _( - "{CENTER_ALIGN}The {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1} was\n" + "{CENTER_ALIGN}The {COLOR GREEN}{MOVE_ITEM_0}{RESET} was\n" "{CENTER_ALIGN}returned to the Toolbox."); ALIGNED(4) static const u8 sUnknown_80DD63C[] = _( - "{CENTER_ALIGN}The {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1} was\n" + "{CENTER_ALIGN}The {COLOR GREEN}{MOVE_ITEM_0}{RESET} was\n" "{CENTER_ALIGN}sent to storage."); ALIGNED(4) static const u8 sPartyMenuStandBy[] = "Stand By"; @@ -102,5 +102,5 @@ ALIGNED(4) static const u8 sPartyMenuSayFarewell[] = "Say Farewell"; ALIGNED(4) static const u8 sPartyMenuSummary[] = "Summary"; ALIGNED(4) static const u8 sPartyMenuMoves[] = "Moves"; ALIGNED(4) static const u8 sPartyMenuCheckIQ[] = "Check IQ"; -ALIGNED(4) static const u8 sPartyMenuItemPlaceholder[] = _("Item: {COLOR_1 GREEN}{ARG_MOVE_ITEM_0}{END_COLOR_TEXT_1} "); +ALIGNED(4) static const u8 sPartyMenuItemPlaceholder[] = _("Item: {COLOR GREEN}{MOVE_ITEM_0}{RESET} "); ALIGNED(4) static const u8 sUnknown_80DD6E0[] = "%s"; \ No newline at end of file diff --git a/src/data/personality_test1.h b/src/data/personality_test1.h index c9f7dfa7f..6755ce443 100644 --- a/src/data/personality_test1.h +++ b/src/data/personality_test1.h @@ -1214,7 +1214,7 @@ static const s16 gStarters[NUM_PERSONALITIES][2] = ALIGNED(4) static const u8 gStarterReveal[] = _( "\n" - "{CENTER_ALIGN}The Pokémon {ARG_POKEMON_0}!"); + "{CENTER_ALIGN}The Pokémon {POKEMON_0}!"); UNUSED ALIGNED(4) static const u8* const gStarterRevealPtr[] = { gStarterReveal }; ALIGNED(4) static const u8 gPartnerPrompt[] = _( diff --git a/src/data/pokemon_mail.h b/src/data/pokemon_mail.h index 0197766c6..0634bf717 100644 --- a/src/data/pokemon_mail.h +++ b/src/data/pokemon_mail.h @@ -53,12 +53,12 @@ const u8 * const gUnknown_80E8BF8[7] = { }; ALIGNED(4) static const u8 sUnknown_80E8C14[] = _("{STAR_BULLET}"); -ALIGNED(4) static const u8 sUnknown_80E8C18[] = _("{COLOR_1 RED}S{END_COLOR_TEXT_1}"); -ALIGNED(4) static const u8 sUnknown_80E8C20[] = _("{COLOR_1 CYAN}A{END_COLOR_TEXT_1}"); -ALIGNED(4) static const u8 sUnknown_80E8C28[] = _("{COLOR_1 CYAN}B{END_COLOR_TEXT_1}"); -ALIGNED(4) static const u8 sUnknown_80E8C30[] = _("{COLOR_1 GREEN}C{END_COLOR_TEXT_1}"); -ALIGNED(4) static const u8 sUnknown_80E8C38[] = _("{COLOR_1 GREEN}D{END_COLOR_TEXT_1}"); -ALIGNED(4) static const u8 sUnknown_80E8C40[] = _("{COLOR_1 WHITE}E{END_COLOR_TEXT_1}"); +ALIGNED(4) static const u8 sUnknown_80E8C18[] = _("{COLOR RED}S{RESET}"); +ALIGNED(4) static const u8 sUnknown_80E8C20[] = _("{COLOR CYAN}A{RESET}"); +ALIGNED(4) static const u8 sUnknown_80E8C28[] = _("{COLOR CYAN}B{RESET}"); +ALIGNED(4) static const u8 sUnknown_80E8C30[] = _("{COLOR GREEN}C{RESET}"); +ALIGNED(4) static const u8 sUnknown_80E8C38[] = _("{COLOR GREEN}D{RESET}"); +ALIGNED(4) static const u8 sUnknown_80E8C40[] = _("{COLOR DEFAULT}E{RESET}"); static const u8 sUnknown_80E8C60[]; static const u8 sUnknown_80E8C64[]; @@ -78,8 +78,8 @@ static const u8 * const gMissionRewardText[6] = { ALIGNED(4) static const u8 sUnknown_80E8C60[] = _("???"); ALIGNED(4) static const u8 sUnknown_80E8C64[] = _("Friend Area"); -ALIGNED(4) static const u8 sUnknown_80E8C70[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1} + ?"); -ALIGNED(4) static const u8 sUnknown_80E8C7C[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1}"); +ALIGNED(4) static const u8 sUnknown_80E8C70[] = _("{COLOR GREEN}%s{RESET} + ?"); +ALIGNED(4) static const u8 sUnknown_80E8C7C[] = _("{COLOR GREEN}%s{RESET}"); ALIGNED(4) static const u8 sUnknown_80E8C84[] = _("%d {POKE} + ?"); ALIGNED(4) static const u8 sUnknown_80E8C90[] = _("%d {POKE}"); @@ -248,9 +248,9 @@ ALIGNED(4) static const u8 sUnknown_80E914C[] = _("Hasn't come back."); ALIGNED(4) static const u8 sUnknown_80E9160[] = _("I'm worried."); ALIGNED(4) static const u8 sUnknown_80E9170[] = _("Somebody!"); ALIGNED(4) static const u8 sUnknown_80E917C[] = _("Failed to return."); -ALIGNED(4) static const u8 sUnknown_80E9190[] = _("Hurry, save {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); -ALIGNED(4) static const u8 sUnknown_80E91A8[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} needs help!"); -ALIGNED(4) static const u8 sUnknown_80E91BC[] = _("Please help {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); +ALIGNED(4) static const u8 sUnknown_80E9190[] = _("Hurry, save {COLOR YELLOW}%s{RESET}!"); +ALIGNED(4) static const u8 sUnknown_80E91A8[] = _("{COLOR YELLOW}%s{RESET} needs help!"); +ALIGNED(4) static const u8 sUnknown_80E91BC[] = _("Please help {COLOR YELLOW}%s{RESET}!"); static const u8 sUnknown_80E9288[]; static const u8 sUnknown_80E92A4[]; @@ -346,51 +346,51 @@ static const u8 * const gUnknown_80E91D4[45] = { sUnknown_80E9288 }; -ALIGNED(4) static const u8 sUnknown_80E9288[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} fell into a trap!"); -ALIGNED(4) static const u8 sUnknown_80E92A4[] = _("I lost contact with {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); -ALIGNED(4) static const u8 sUnknown_80E92C4[] = _("I can't contact {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); -ALIGNED(4) static const u8 sUnknown_80E92E0[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} can't walk anymore!"); -ALIGNED(4) static const u8 sUnknown_80E9300[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}'s been missing three days!"); -ALIGNED(4) static const u8 sUnknown_80E9328[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} went the wrong way!"); -ALIGNED(4) static const u8 sUnknown_80E9344[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is lost!"); -ALIGNED(4) static const u8 sUnknown_80E9358[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} appears to be stuck!"); -ALIGNED(4) static const u8 sUnknown_80E9378[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} appears to be lost!"); -ALIGNED(4) static const u8 sUnknown_80E9394[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} may have had an accident!"); -ALIGNED(4) static const u8 sUnknown_80E93B8[] = _("I'm worried for {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}'s safety!"); -ALIGNED(4) static const u8 sUnknown_80E93E0[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is fighting all alone!"); -ALIGNED(4) static const u8 sUnknown_80E9400[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is too hungry to move!"); -ALIGNED(4) static const u8 sUnknown_80E9420[] = _("Hurry, bring back {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}."); -ALIGNED(4) static const u8 sUnknown_80E9440[] = _("I got separated from {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}."); -ALIGNED(4) static const u8 sUnknown_80E9460[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is running out of time!"); -ALIGNED(4) static const u8 sUnknown_80E9480[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} was attacked, maybe!"); -ALIGNED(4) static const u8 sUnknown_80E94A0[] = _("Something happened to {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); -ALIGNED(4) static const u8 sUnknown_80E94C0[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} appears to be trapped!"); -ALIGNED(4) static const u8 sUnknown_80E94E0[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is stuck in a cave!"); -ALIGNED(4) static const u8 sUnknown_80E94FC[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} appears to be helpless!"); -ALIGNED(4) static const u8 sUnknown_80E951C[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} hasn't reemerged!"); -ALIGNED(4) static const u8 sUnknown_80E9538[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} was attacked by assailants!"); -ALIGNED(4) static const u8 sUnknown_80E955C[] = _("It appears as if {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} can't escape!"); -ALIGNED(4) static const u8 sUnknown_80E9588[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} may have fainted already!"); -ALIGNED(4) static const u8 sUnknown_80E95AC[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is about to faint!"); -ALIGNED(4) static const u8 sUnknown_80E95C8[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}'s been gone a long time!"); -ALIGNED(4) static const u8 sUnknown_80E95EC[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} has been cornered!"); -ALIGNED(4) static const u8 sUnknown_80E9608[] = _("I'm worried about {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); -ALIGNED(4) static const u8 sUnknown_80E9628[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}'s whereabouts are unknown!"); -ALIGNED(4) static const u8 sUnknown_80E9650[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} was paralyzed!"); -ALIGNED(4) static const u8 sUnknown_80E9668[] = _("Trouble may have found {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); -ALIGNED(4) static const u8 sUnknown_80E9688[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} appears to be freezing!"); -ALIGNED(4) static const u8 sUnknown_80E96A8[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} may be confused!"); -ALIGNED(4) static const u8 sUnknown_80E96C4[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is too scared to move!"); -ALIGNED(4) static const u8 sUnknown_80E96E4[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} went missing this morning!"); -ALIGNED(4) static const u8 sUnknown_80E9708[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} appears to be injured!"); -ALIGNED(4) static const u8 sUnknown_80E9728[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} may be facing danger!"); -ALIGNED(4) static const u8 sUnknown_80E9748[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} might be unable to return."); -ALIGNED(4) static const u8 sUnknown_80E976C[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} hasn't come back!"); -ALIGNED(4) static const u8 sUnknown_80E9788[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} can't swim!"); -ALIGNED(4) static const u8 sUnknown_80E97A0[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} hasn't been heard from!"); -ALIGNED(4) static const u8 sUnknown_80E97C4[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is still missing."); -ALIGNED(4) static const u8 sUnknown_80E97E0[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} may be endangered!"); -ALIGNED(4) static const u8 sUnknown_80E97FC[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} passed out from the heat!"); +ALIGNED(4) static const u8 sUnknown_80E9288[] = _("{COLOR YELLOW}%s{RESET} fell into a trap!"); +ALIGNED(4) static const u8 sUnknown_80E92A4[] = _("I lost contact with {COLOR YELLOW}%s{RESET}!"); +ALIGNED(4) static const u8 sUnknown_80E92C4[] = _("I can't contact {COLOR YELLOW}%s{RESET}!"); +ALIGNED(4) static const u8 sUnknown_80E92E0[] = _("{COLOR YELLOW}%s{RESET} can't walk anymore!"); +ALIGNED(4) static const u8 sUnknown_80E9300[] = _("{COLOR YELLOW}%s{RESET}'s been missing three days!"); +ALIGNED(4) static const u8 sUnknown_80E9328[] = _("{COLOR YELLOW}%s{RESET} went the wrong way!"); +ALIGNED(4) static const u8 sUnknown_80E9344[] = _("{COLOR YELLOW}%s{RESET} is lost!"); +ALIGNED(4) static const u8 sUnknown_80E9358[] = _("{COLOR YELLOW}%s{RESET} appears to be stuck!"); +ALIGNED(4) static const u8 sUnknown_80E9378[] = _("{COLOR YELLOW}%s{RESET} appears to be lost!"); +ALIGNED(4) static const u8 sUnknown_80E9394[] = _("{COLOR YELLOW}%s{RESET} may have had an accident!"); +ALIGNED(4) static const u8 sUnknown_80E93B8[] = _("I'm worried for {COLOR YELLOW}%s{RESET}'s safety!"); +ALIGNED(4) static const u8 sUnknown_80E93E0[] = _("{COLOR YELLOW}%s{RESET} is fighting all alone!"); +ALIGNED(4) static const u8 sUnknown_80E9400[] = _("{COLOR YELLOW}%s{RESET} is too hungry to move!"); +ALIGNED(4) static const u8 sUnknown_80E9420[] = _("Hurry, bring back {COLOR YELLOW}%s{RESET}."); +ALIGNED(4) static const u8 sUnknown_80E9440[] = _("I got separated from {COLOR YELLOW}%s{RESET}."); +ALIGNED(4) static const u8 sUnknown_80E9460[] = _("{COLOR YELLOW}%s{RESET} is running out of time!"); +ALIGNED(4) static const u8 sUnknown_80E9480[] = _("{COLOR YELLOW}%s{RESET} was attacked, maybe!"); +ALIGNED(4) static const u8 sUnknown_80E94A0[] = _("Something happened to {COLOR YELLOW}%s{RESET}!"); +ALIGNED(4) static const u8 sUnknown_80E94C0[] = _("{COLOR YELLOW}%s{RESET} appears to be trapped!"); +ALIGNED(4) static const u8 sUnknown_80E94E0[] = _("{COLOR YELLOW}%s{RESET} is stuck in a cave!"); +ALIGNED(4) static const u8 sUnknown_80E94FC[] = _("{COLOR YELLOW}%s{RESET} appears to be helpless!"); +ALIGNED(4) static const u8 sUnknown_80E951C[] = _("{COLOR YELLOW}%s{RESET} hasn't reemerged!"); +ALIGNED(4) static const u8 sUnknown_80E9538[] = _("{COLOR YELLOW}%s{RESET} was attacked by assailants!"); +ALIGNED(4) static const u8 sUnknown_80E955C[] = _("It appears as if {COLOR YELLOW}%s{RESET} can't escape!"); +ALIGNED(4) static const u8 sUnknown_80E9588[] = _("{COLOR YELLOW}%s{RESET} may have fainted already!"); +ALIGNED(4) static const u8 sUnknown_80E95AC[] = _("{COLOR YELLOW}%s{RESET} is about to faint!"); +ALIGNED(4) static const u8 sUnknown_80E95C8[] = _("{COLOR YELLOW}%s{RESET}'s been gone a long time!"); +ALIGNED(4) static const u8 sUnknown_80E95EC[] = _("{COLOR YELLOW}%s{RESET} has been cornered!"); +ALIGNED(4) static const u8 sUnknown_80E9608[] = _("I'm worried about {COLOR YELLOW}%s{RESET}!"); +ALIGNED(4) static const u8 sUnknown_80E9628[] = _("{COLOR YELLOW}%s{RESET}'s whereabouts are unknown!"); +ALIGNED(4) static const u8 sUnknown_80E9650[] = _("{COLOR YELLOW}%s{RESET} was paralyzed!"); +ALIGNED(4) static const u8 sUnknown_80E9668[] = _("Trouble may have found {COLOR YELLOW}%s{RESET}!"); +ALIGNED(4) static const u8 sUnknown_80E9688[] = _("{COLOR YELLOW}%s{RESET} appears to be freezing!"); +ALIGNED(4) static const u8 sUnknown_80E96A8[] = _("{COLOR YELLOW}%s{RESET} may be confused!"); +ALIGNED(4) static const u8 sUnknown_80E96C4[] = _("{COLOR YELLOW}%s{RESET} is too scared to move!"); +ALIGNED(4) static const u8 sUnknown_80E96E4[] = _("{COLOR YELLOW}%s{RESET} went missing this morning!"); +ALIGNED(4) static const u8 sUnknown_80E9708[] = _("{COLOR YELLOW}%s{RESET} appears to be injured!"); +ALIGNED(4) static const u8 sUnknown_80E9728[] = _("{COLOR YELLOW}%s{RESET} may be facing danger!"); +ALIGNED(4) static const u8 sUnknown_80E9748[] = _("{COLOR YELLOW}%s{RESET} might be unable to return."); +ALIGNED(4) static const u8 sUnknown_80E976C[] = _("{COLOR YELLOW}%s{RESET} hasn't come back!"); +ALIGNED(4) static const u8 sUnknown_80E9788[] = _("{COLOR YELLOW}%s{RESET} can't swim!"); +ALIGNED(4) static const u8 sUnknown_80E97A0[] = _("{COLOR YELLOW}%s{RESET} hasn't been heard from!"); +ALIGNED(4) static const u8 sUnknown_80E97C4[] = _("{COLOR YELLOW}%s{RESET} is still missing."); +ALIGNED(4) static const u8 sUnknown_80E97E0[] = _("{COLOR YELLOW}%s{RESET} may be endangered!"); +ALIGNED(4) static const u8 sUnknown_80E97FC[] = _("{COLOR YELLOW}%s{RESET} passed out from the heat!"); static const u8 sUnknown_80E9848[]; static const u8 sUnknown_80E985C[]; @@ -664,83 +664,83 @@ ALIGNED(4) static const u8 sUnknown_80EA1A8[] = _( ALIGNED(4) static const u8 sUnknown_80EA1FC[] = _("Please help my brother!"); ALIGNED(4) static const u8 sUnknown_80EA214[] = _( - "We've been rivals with {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} for\n" + "We've been rivals with {COLOR YELLOW}%s{RESET} for\n" "generations. It can't suddenly end like this!"); ALIGNED(4) static const u8 sUnknown_80EA26C[] = _( - "{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} has been a rival since my\n" + "{COLOR YELLOW}%s{RESET} has been a rival since my\n" "ancestors' time. The rivalry can't end!"); ALIGNED(4) static const u8 sUnknown_80EA2BC[] = _( - "{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} can't leave without settling\n" + "{COLOR YELLOW}%s{RESET} can't leave without settling\n" "which one of us is better. Please help!"); ALIGNED(4) static const u8 sUnknown_80EA30C[] = _( - "Please save {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}.\n" + "Please save {COLOR YELLOW}%s{RESET}.\n" "We owe each other a game!"); ALIGNED(4) static const u8 sUnknown_80EA33C[] = _( - "Please rescue {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}! We detest\n" + "Please rescue {COLOR YELLOW}%s{RESET}! We detest\n" "each other, but we need each other!"); ALIGNED(4) static const u8 sUnknown_80EA384[] = _("Rescue my rival!"); ALIGNED(4) static const u8 sUnknown_80EA398[] = _( - "I can't live without {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!\n" + "I can't live without {COLOR YELLOW}%s{RESET}!\n" "My heart is breaking! Please! Help!"); ALIGNED(4) static const u8 sUnknown_80EA3DC[] = _( - "Please save {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!\n" + "Please save {COLOR YELLOW}%s{RESET}!\n" "We're no good if we're not together!"); ALIGNED(4) static const u8 sUnknown_80EA41C[] = _( - "Please save my {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}! Now I\n" - "know what {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} means to me..."); + "Please save my {COLOR YELLOW}%s{RESET}! Now I\n" + "know what {COLOR YELLOW}%s{RESET} means to me..."); ALIGNED(4) static const u8 sUnknown_80EA45C[] = _( - "Please rescue {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}! We\n" + "Please rescue {COLOR YELLOW}%s{RESET}! We\n" "promised our futures together! Please!"); ALIGNED(4) static const u8 sUnknown_80EA4A0[] = _( - "Please rescue my precious {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!\n" + "Please rescue my precious {COLOR YELLOW}%s{RESET}!\n" "We're in love! Please help!"); ALIGNED(4) static const u8 sUnknown_80EA4E4[] = _( - "Please! Please rescue {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!\n" + "Please! Please rescue {COLOR YELLOW}%s{RESET}!\n" "We're madly in love!"); ALIGNED(4) static const u8 sUnknown_80EA51C[] = _("Please save my love!"); ALIGNED(4) static const u8 sUnknown_80EA534[] = _( "We make each other happy--it's in our\n" - "nature. Please save {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); + "nature. Please save {COLOR YELLOW}%s{RESET}!"); ALIGNED(4) static const u8 sUnknown_80EA57C[] = _( - "Please rescue {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}! The beach\n" + "Please rescue {COLOR YELLOW}%s{RESET}! The beach\n" "feels empty without my usual friend..."); ALIGNED(4) static const u8 sUnknown_80EA5C4[] = _( - "I feel lonely without {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} to pull\n" + "I feel lonely without {COLOR YELLOW}%s{RESET} to pull\n" "pranks and mess around with. Please help!"); ALIGNED(4) static const u8 sUnknown_80EA614[] = _( - "Help {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}, please!\n" + "Help {COLOR YELLOW}%s{RESET}, please!\n" "We often took strolls on the wind!"); ALIGNED(4) static const u8 sUnknown_80EA650[] = _( - "Please save {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}! We're both\n" + "Please save {COLOR YELLOW}%s{RESET}! We're both\n" "old-timers who are longtime friends!"); ALIGNED(4) static const u8 sUnknown_80EA698[] = _( - "Please save {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}. We've been in\n" + "Please save {COLOR YELLOW}%s{RESET}. We've been in\n" "the delivery business for many years!"); ALIGNED(4) static const u8 sUnknown_80EA6E4[] = _( - "I'm sad without {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}'s company.\n" + "I'm sad without {COLOR YELLOW}%s{RESET}'s company.\n" "We showed flowers to each other..."); ALIGNED(4) static const u8 sUnknown_80EA730[] = _( - "Without {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}, there's no one for\n" + "Without {COLOR YELLOW}%s{RESET}, there's no one for\n" "me to play with in the dark! Please help!"); ALIGNED(4) static const u8 sUnknown_80EA784[] = _( @@ -748,15 +748,15 @@ ALIGNED(4) static const u8 sUnknown_80EA784[] = _( "Who was it?"); ALIGNED(4) static const u8 sUnknown_80EA7A8[] = _( - "Please save {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}. We're both alike\n" + "Please save {COLOR YELLOW}%s{RESET}. We're both alike\n" "in being kind of vacant and unpredictable!"); ALIGNED(4) static const u8 sUnknown_80EA7FC[] = _( - "Without {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} around, there's no\n" + "Without {COLOR YELLOW}%s{RESET} around, there's no\n" "one to heckle! Please break my boredom!"); ALIGNED(4) static const u8 sUnknown_80EA84C[] = _( - "Please help {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!\n" + "Please help {COLOR YELLOW}%s{RESET}!\n" "My tiny and round best friend!"); ALIGNED(4) static const u8 sUnknown_80EA880[] = _( @@ -764,15 +764,15 @@ ALIGNED(4) static const u8 sUnknown_80EA880[] = _( "sharp our claws could be... Someone, help!"); ALIGNED(4) static const u8 sUnknown_80EA8D0[] = _( - "I lock horns with {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} for fun.\n" + "I lock horns with {COLOR YELLOW}%s{RESET} for fun.\n" "I terribly miss doing that..."); ALIGNED(4) static const u8 sUnknown_80EA914[] = _( - "Please help {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}! We're both lazy,\n" + "Please help {COLOR YELLOW}%s{RESET}! We're both lazy,\n" "so we're comfortable around each other!"); ALIGNED(4) static const u8 sUnknown_80EA968[] = _( - "I want to help {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!\n" + "I want to help {COLOR YELLOW}%s{RESET}!\n" "We both have a thing for pincers!"); ALIGNED(4) static const u8 sUnknown_80EA9A4[] = _( @@ -780,35 +780,35 @@ ALIGNED(4) static const u8 sUnknown_80EA9A4[] = _( "and hypnosis shows together. Please help!"); ALIGNED(4) static const u8 sUnknown_80EA9F8[] = _( - "Someone save {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}--my friend\n" + "Someone save {COLOR YELLOW}%s{RESET}--my friend\n" "and rival at ball juggling!"); ALIGNED(4) static const u8 sUnknown_80EAA34[] = _( - "Please help {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}! Our cries are\n" + "Please help {COLOR YELLOW}%s{RESET}! Our cries are\n" "identical! We can tell each other anything!"); ALIGNED(4) static const u8 sUnknown_80EAA84[] = _( "I can't play the biting game without my pal\n" - "{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}! Please help!"); + "{COLOR YELLOW}%s{RESET}! Please help!"); ALIGNED(4) static const u8 sUnknown_80EAAC8[] = _( - "{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is really noisy.\n" + "{COLOR YELLOW}%s{RESET} is really noisy.\n" "But it's lonely without the racket... Sob..."); ALIGNED(4) static const u8 sUnknown_80EAB10[] = _( - "Without {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}, it's no fun playing\n" + "Without {COLOR YELLOW}%s{RESET}, it's no fun playing\n" "with toxic powders! Someone, please help!"); ALIGNED(4) static const u8 sUnknown_80EAB68[] = _( - "Please rescue {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!\n" + "Please rescue {COLOR YELLOW}%s{RESET}!\n" "We've been friends since we were eggs!"); ALIGNED(4) static const u8 sUnknown_80EABA8[] = _( - "Please help {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}--a good\n" + "Please help {COLOR YELLOW}%s{RESET}--a good\n" "friend who shares my love of fire!"); ALIGNED(4) static const u8 sUnknown_80EABE8[] = _( - "{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} and I are of the same height.\n" + "{COLOR YELLOW}%s{RESET} and I are of the same height.\n" "We're lifelong friends! Please help!"); ALIGNED(4) static const u8 sUnknown_80EAC38[] = _( @@ -816,27 +816,27 @@ ALIGNED(4) static const u8 sUnknown_80EAC38[] = _( "both evolved from Wurmple. Please help!"); ALIGNED(4) static const u8 sUnknown_80EAC88[] = _( - "Help! I'm friends with {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}\n" + "Help! I'm friends with {COLOR YELLOW}%s{RESET}\n" "because we both evolve fast! Please help!"); ALIGNED(4) static const u8 sUnknown_80EACD4[] = _( - "Help! {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} isn't much now, but\n" + "Help! {COLOR YELLOW}%s{RESET} isn't much now, but\n" "my friend is amazing after evolution!"); ALIGNED(4) static const u8 sUnknown_80EAD20[] = _( - "Please rescue {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!\n" + "Please rescue {COLOR YELLOW}%s{RESET}!\n" "We always play together!"); ALIGNED(4) static const u8 sUnknown_80EAD50[] = _( - "Please rescue {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}.\n" + "Please rescue {COLOR YELLOW}%s{RESET}.\n" "I can't stand to see a sludge buddy hurt!"); ALIGNED(4) static const u8 sUnknown_80EAD94[] = _( - "Please save my best friend {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!\n" + "Please save my best friend {COLOR YELLOW}%s{RESET}!\n" "We're both bivalves!"); ALIGNED(4) static const u8 sUnknown_80EADD0[] = _( - "Please save {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1},\n" + "Please save {COLOR YELLOW}%s{RESET},\n" "my drilling buddy!"); ALIGNED(4) static const u8 sUnknown_80EADFC[] = _( @@ -860,7 +860,7 @@ static const u8 * const gUnknown_80EAE5C[4] = { ALIGNED(4) static const u8 EscortMe_Text[] = _("Escort me!"); ALIGNED(4) static const u8 TakeMeWith_Text[] = _("Please take me with you!"); -ALIGNED(4) static const u8 WantToSee_Text[] = _("I want to see {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}."); +ALIGNED(4) static const u8 WantToSee_Text[] = _("I want to see {COLOR YELLOW}%s{RESET}."); ALIGNED(4) static const u8 TakeMe_Text[] = _("Take me!"); static const u8 CloseFriends_80EAF08[]; @@ -907,26 +907,26 @@ static const u8 * const gUnknown_80EAEB8[20] = { CloseFriends_80EAF08 }; -ALIGNED(4) static const u8 CloseFriends_80EAF08[] = _("I'm close friends with {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); -ALIGNED(4) static const u8 Apologize_80EAF2C[] = _("I want to apologize to {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}."); +ALIGNED(4) static const u8 CloseFriends_80EAF08[] = _("I'm close friends with {COLOR YELLOW}%s{RESET}!"); +ALIGNED(4) static const u8 Apologize_80EAF2C[] = _("I want to apologize to {COLOR YELLOW}%s{RESET}."); ALIGNED(4) static const u8 MustMeet_80EAF4C[] = _("I don't care how--we must meet!"); ALIGNED(4) static const u8 HaveToMeet_80EAF70[] = _("We have to meet--whatever it takes!"); ALIGNED(4) static const u8 HaveToGo_80EAF94[] = _("I have to go!"); ALIGNED(4) static const u8 LongTime_80EAFA4[] = _("We haven't seen each other in a long time."); ALIGNED(4) static const u8 SickWorry_80EAFD4[] = _("I'm sick with worry..."); -ALIGNED(4) static const u8 FaintedInside_80EAFF0[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} may have fainted inside..."); -ALIGNED(4) static const u8 HasntReturned_80EB014[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} hasn't returned!"); -ALIGNED(4) static const u8 WantToHelp_80EB030[] = _("I want to help {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); -ALIGNED(4) static const u8 InTrouble_80EB048[] = _("Hurry, {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is in trouble..."); -ALIGNED(4) static const u8 WaitingForever_80EB06C[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} has been waiting forever..."); -ALIGNED(4) static const u8 WaitingInDungeon_80EB090[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is waiting in the dungeon."); +ALIGNED(4) static const u8 FaintedInside_80EAFF0[] = _("{COLOR YELLOW}%s{RESET} may have fainted inside..."); +ALIGNED(4) static const u8 HasntReturned_80EB014[] = _("{COLOR YELLOW}%s{RESET} hasn't returned!"); +ALIGNED(4) static const u8 WantToHelp_80EB030[] = _("I want to help {COLOR YELLOW}%s{RESET}!"); +ALIGNED(4) static const u8 InTrouble_80EB048[] = _("Hurry, {COLOR YELLOW}%s{RESET} is in trouble..."); +ALIGNED(4) static const u8 WaitingForever_80EB06C[] = _("{COLOR YELLOW}%s{RESET} has been waiting forever..."); +ALIGNED(4) static const u8 WaitingInDungeon_80EB090[] = _("{COLOR YELLOW}%s{RESET} is waiting in the dungeon."); ALIGNED(4) static const u8 TooWeak_80EB0B4[] = _("I'm too weak. It's not possible."); ALIGNED(4) static const u8 OwnPower_80EB0DC[] = _("I can't go on my own power..."); ALIGNED(4) static const u8 GoMyself_80EB0FC[] = _("I can't go by myself..."); -ALIGNED(4) static const u8 WorriedAbout_80EB118[] = _("I'm worried about {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}..."); -ALIGNED(4) static const u8 WantMeet_80EB138[] = _("I want to meet with {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}."); +ALIGNED(4) static const u8 WorriedAbout_80EB118[] = _("I'm worried about {COLOR YELLOW}%s{RESET}..."); +ALIGNED(4) static const u8 WantMeet_80EB138[] = _("I want to meet with {COLOR YELLOW}%s{RESET}."); ALIGNED(4) static const u8 PromisedMeet_80EB158[] = _("We promised to meet in the dungeon!"); -ALIGNED(4) static const u8 WaitingForMe_80EB17C[] = _("{COLOR_1 YELLOW}%s{END_COLOR_TEXT_1} is waiting for me!"); +ALIGNED(4) static const u8 WaitingForMe_80EB17C[] = _("{COLOR YELLOW}%s{RESET} is waiting for me!"); static const u8 SomeonePleaseEscort[]; static const u8 PleaseEscortMe[]; @@ -943,7 +943,7 @@ static const u8 * const gUnknown_80EB198[4] = { ALIGNED(4) static const u8 SomeonePleaseEscort[] = _("Someone, please escort me!"); ALIGNED(4) static const u8 PleaseEscortMe[] = _("Please escort me there!"); ALIGNED(4) static const u8 PleaseTakeMeThere[] = _("Please take me there with you!"); -ALIGNED(4) static const u8 PleaseTakeMeToSee[] = _("Please take me to see {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); +ALIGNED(4) static const u8 PleaseTakeMeToSee[] = _("Please take me to see {COLOR YELLOW}%s{RESET}!"); static const u8 Without_80EB238[]; static const u8 Worried_80EB250[]; @@ -961,12 +961,12 @@ static const u8 * const gUnknown_80EB220[6] = { Without_80EB238 }; -ALIGNED(4) static const u8 Without_80EB238[] = _("Without {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}, I..."); -ALIGNED(4) static const u8 Worried_80EB250[] = _("I'm so worried about {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}..."); -ALIGNED(4) static const u8 WantMeet_80EB274[] = _("I really want to meet {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); -ALIGNED(4) static const u8 HelpMeet_80EB294[] = _("Help me meet {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); -ALIGNED(4) static const u8 Escort_80EB2AC[] = _("Please escort me to my {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); -ALIGNED(4) static const u8 TakeMeet_80EB2CC[] = _("Please! Take me to meet {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}!"); +ALIGNED(4) static const u8 Without_80EB238[] = _("Without {COLOR YELLOW}%s{RESET}, I..."); +ALIGNED(4) static const u8 Worried_80EB250[] = _("I'm so worried about {COLOR YELLOW}%s{RESET}..."); +ALIGNED(4) static const u8 WantMeet_80EB274[] = _("I really want to meet {COLOR YELLOW}%s{RESET}!"); +ALIGNED(4) static const u8 HelpMeet_80EB294[] = _("Help me meet {COLOR YELLOW}%s{RESET}!"); +ALIGNED(4) static const u8 Escort_80EB2AC[] = _("Please escort me to my {COLOR YELLOW}%s{RESET}!"); +ALIGNED(4) static const u8 TakeMeet_80EB2CC[] = _("Please! Take me to meet {COLOR YELLOW}%s{RESET}!"); static const u8 Lonely_80EB308[]; static const u8 NoGood_80EB334[]; @@ -1040,28 +1040,28 @@ static const u8 * const gUnknown_80EB3F8[22] = { sUnknown_80EB450 }; -ALIGNED(4) static const u8 sUnknown_80EB450[] = _("Is it true about the {COLOR_1 GREEN}%s{END_COLOR_TEXT_1}?"); -ALIGNED(4) static const u8 sUnknown_80EB470[] = _("The item {COLOR_1 GREEN}%s{END_COLOR_TEXT_1} is the in thing!"); -ALIGNED(4) static const u8 sUnknown_80EB494[] = _("Wanted: my own {COLOR_1 GREEN}%s{END_COLOR_TEXT_1}."); -ALIGNED(4) static const u8 sUnknown_80EB4AC[] = _("I lost my {COLOR_1 GREEN}%s{END_COLOR_TEXT_1}."); -ALIGNED(4) static const u8 sUnknown_80EB4C0[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1} wanted for nostalgia."); -ALIGNED(4) static const u8 sUnknown_80EB4E0[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1} wanted to test effects."); -ALIGNED(4) static const u8 sUnknown_80EB500[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1}'s texture is comforting."); -ALIGNED(4) static const u8 sUnknown_80EB524[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1}--it's my mom's favorite."); -ALIGNED(4) static const u8 sUnknown_80EB54C[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1} makes me strong."); -ALIGNED(4) static const u8 sUnknown_80EB568[] = _("I can't sleep without it: {COLOR_1 GREEN}%s{END_COLOR_TEXT_1}."); -ALIGNED(4) static const u8 sUnknown_80EB590[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1}--I get scared without it!"); -ALIGNED(4) static const u8 sUnknown_80EB5B4[] = _("Hard-to-find {COLOR_1 GREEN}%s{END_COLOR_TEXT_1} sought."); -ALIGNED(4) static const u8 sUnknown_80EB5D4[] = _("I can't find one more {COLOR_1 GREEN}%s{END_COLOR_TEXT_1}."); -ALIGNED(4) static const u8 sUnknown_80EB5F8[] = _("Help this {COLOR_1 GREEN}%s{END_COLOR_TEXT_1} collector!"); -ALIGNED(4) static const u8 sUnknown_80EB618[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1}! Seeking in quantity!"); -ALIGNED(4) static const u8 sUnknown_80EB638[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1} wanted as a charm."); -ALIGNED(4) static const u8 sUnknown_80EB654[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1}--I can't leave without it."); -ALIGNED(4) static const u8 sUnknown_80EB67C[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1}--I'd love to utilize one!"); -ALIGNED(4) static const u8 sUnknown_80EB6A0[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1} wanted for exploration."); -ALIGNED(4) static const u8 sUnknown_80EB6C0[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1} wanted after long search."); -ALIGNED(4) static const u8 sUnknown_80EB6E4[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1}--it's convenient to have."); -ALIGNED(4) static const u8 sUnknown_80EB708[] = _("Having one {COLOR_1 GREEN}%s{END_COLOR_TEXT_1} is reassuring."); +ALIGNED(4) static const u8 sUnknown_80EB450[] = _("Is it true about the {COLOR GREEN}%s{RESET}?"); +ALIGNED(4) static const u8 sUnknown_80EB470[] = _("The item {COLOR GREEN}%s{RESET} is the in thing!"); +ALIGNED(4) static const u8 sUnknown_80EB494[] = _("Wanted: my own {COLOR GREEN}%s{RESET}."); +ALIGNED(4) static const u8 sUnknown_80EB4AC[] = _("I lost my {COLOR GREEN}%s{RESET}."); +ALIGNED(4) static const u8 sUnknown_80EB4C0[] = _("{COLOR GREEN}%s{RESET} wanted for nostalgia."); +ALIGNED(4) static const u8 sUnknown_80EB4E0[] = _("{COLOR GREEN}%s{RESET} wanted to test effects."); +ALIGNED(4) static const u8 sUnknown_80EB500[] = _("{COLOR GREEN}%s{RESET}'s texture is comforting."); +ALIGNED(4) static const u8 sUnknown_80EB524[] = _("{COLOR GREEN}%s{RESET}--it's my mom's favorite."); +ALIGNED(4) static const u8 sUnknown_80EB54C[] = _("{COLOR GREEN}%s{RESET} makes me strong."); +ALIGNED(4) static const u8 sUnknown_80EB568[] = _("I can't sleep without it: {COLOR GREEN}%s{RESET}."); +ALIGNED(4) static const u8 sUnknown_80EB590[] = _("{COLOR GREEN}%s{RESET}--I get scared without it!"); +ALIGNED(4) static const u8 sUnknown_80EB5B4[] = _("Hard-to-find {COLOR GREEN}%s{RESET} sought."); +ALIGNED(4) static const u8 sUnknown_80EB5D4[] = _("I can't find one more {COLOR GREEN}%s{RESET}."); +ALIGNED(4) static const u8 sUnknown_80EB5F8[] = _("Help this {COLOR GREEN}%s{RESET} collector!"); +ALIGNED(4) static const u8 sUnknown_80EB618[] = _("{COLOR GREEN}%s{RESET}! Seeking in quantity!"); +ALIGNED(4) static const u8 sUnknown_80EB638[] = _("{COLOR GREEN}%s{RESET} wanted as a charm."); +ALIGNED(4) static const u8 sUnknown_80EB654[] = _("{COLOR GREEN}%s{RESET}--I can't leave without it."); +ALIGNED(4) static const u8 sUnknown_80EB67C[] = _("{COLOR GREEN}%s{RESET}--I'd love to utilize one!"); +ALIGNED(4) static const u8 sUnknown_80EB6A0[] = _("{COLOR GREEN}%s{RESET} wanted for exploration."); +ALIGNED(4) static const u8 sUnknown_80EB6C0[] = _("{COLOR GREEN}%s{RESET} wanted after long search."); +ALIGNED(4) static const u8 sUnknown_80EB6E4[] = _("{COLOR GREEN}%s{RESET}--it's convenient to have."); +ALIGNED(4) static const u8 sUnknown_80EB708[] = _("Having one {COLOR GREEN}%s{RESET} is reassuring."); static const u8 sUnknown_80EB784[]; static const u8 sUnknown_80EB7A8[]; @@ -1329,7 +1329,7 @@ ALIGNED(4) static const u8 sLucarioRankText[] = _( ALIGNED(4) static const u8 sLucarioRankHeadline[] = _("Congratulations - Lucario Rank!"); ALIGNED(4) static const u8 sBuriedRelicText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}Mystery Ruin Found Underground!{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}Mystery Ruin Found Underground!{RESET}\n" "Its site had been hidden by the crater of a\n" "meteor strike in ancient times. The Buried\n" "Relic is thought to date back beyond\n" @@ -1341,11 +1341,11 @@ ALIGNED(4) static const u8 sBuriedRelicText[] = _( ALIGNED(4) static const u8 sBuriedRelicHeadline[] = _("Buried Relic Discovered!"); ALIGNED(4) static const u8 sNewsText2[] = _( - "{CENTER_ALIGN}{COLOR_1 CYAN}{ARG_POKEMON_0} Innocent! Part 2{END_COLOR_TEXT_1}\n" - "{COLOR_1 GREEN}Quote from Charizard on the scene:{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN}{COLOR CYAN}{POKEMON_0} Innocent! Part 2{RESET}\n" + "{COLOR GREEN}Quote from Charizard on the scene:{RESET}\n" "“That's what I thought right from\n" "the start, hahaha!”\n" - "{COLOR_1 GREEN}Quote from Tyranitar on the scene:{END_COLOR_TEXT_1}\n" + "{COLOR GREEN}Quote from Tyranitar on the scene:{RESET}\n" "“That muckraking Gengar...\n" "He's not getting away with this!\n" "He'd better be ready for it!”"); @@ -1353,13 +1353,13 @@ ALIGNED(4) static const u8 sNewsText2[] = _( ALIGNED(4) static const u8 sNewsHeadline2[] = _("Pokémon News Extra 2"); ALIGNED(4) static const u8 sNewsText1[] = _( - "{CENTER_ALIGN}{COLOR_1 CYAN}{ARG_POKEMON_0} Innocent! Part 1{END_COLOR_TEXT_1}\n" - "{ARG_POKEMON_1} met with Ninetales on {COLOR_1 RED}Mt. Freeze{END_COLOR_TEXT_1}.\n" - "Ninetales testified that {ARG_POKEMON_0} was\n" + "{CENTER_ALIGN}{COLOR CYAN}{POKEMON_0} Innocent! Part 1{RESET}\n" + "{POKEMON_1} met with Ninetales on {COLOR RED}Mt. Freeze{RESET}.\n" + "Ninetales testified that {POKEMON_0} was\n" "not the human that appeared in the legend.\n" "As a result, Gengar's claims were found to\n" "be malicious lies.\n" - "{COLOR_1 GREEN}The clearly dismayed Gengar's quote:{END_COLOR_TEXT_1}\n" + "{COLOR GREEN}The clearly dismayed Gengar's quote:{RESET}\n" "“Ugegegegegegegegegegegeh!”"); ALIGNED(4) static const u8 sNewsHeadline1[] = _("Pokémon News Extra 1"); @@ -1376,39 +1376,39 @@ ALIGNED(4) static const u8 sPelipperText[] = _( ALIGNED(4) static const u8 sPelipperHeadline[] =_("A Letter from Pelipper"); ALIGNED(4) static const u8 sLinkedProText2[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}Try These Linked Moves to KO Foes!{END_COLOR_TEXT_1}\n\n" + "{CENTER_ALIGN COLOR YELLOW}Try These Linked Moves to KO Foes!{RESET}\n\n" "Psyduck\n" - "{COLOR_1 GREEN}Confusion{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Disable{END_COLOR_TEXT_1}\n" + "{COLOR GREEN}Confusion{RESET} + {COLOR GREEN}Disable{RESET}\n" "Totodile\n" - "{COLOR_1 GREEN}Bite{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Scary Face{END_COLOR_TEXT_1}\n" + "{COLOR GREEN}Bite{RESET} + {COLOR GREEN}Scary Face{RESET}\n" "Cyndaquil\n" - "{COLOR_1 GREEN}Flame Wheel{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Smokescreen{END_COLOR_TEXT_1}{EXTRA_MSG}" + "{COLOR GREEN}Flame Wheel{RESET} + {COLOR GREEN}Smokescreen{RESET}{EXTRA_MSG}" "Pikachu\n" - "{COLOR_1 GREEN}Thunderbolt{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Double Team{END_COLOR_TEXT_1}\n" + "{COLOR GREEN}Thunderbolt{RESET} + {COLOR GREEN}Double Team{RESET}\n" "Skitty\n" - "{COLOR_1 GREEN}Tail Whip{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Doubleslap{END_COLOR_TEXT_1}"); + "{COLOR GREEN}Tail Whip{RESET} + {COLOR GREEN}Doubleslap{RESET}"); ALIGNED(4) static const u8 sLinkedProHeadline2[] =_("#50 Linked Moves Pro Level 2"); ALIGNED(4) static const u8 sLinkedProText1[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}These Linked Move Combinations{END_COLOR_TEXT_1}\n" - "{CENTER_ALIGN COLOR_1 YELLOW}Can Be Devastating!{END_COLOR_TEXT_1}\n\n" + "{CENTER_ALIGN COLOR YELLOW}These Linked Move Combinations{RESET}\n" + "{CENTER_ALIGN COLOR YELLOW}Can Be Devastating!{RESET}\n\n" "Bulbasaur\n" - "{COLOR_1 GREEN}Razor Leaf{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Sleep Powder{END_COLOR_TEXT_1}\n" + "{COLOR GREEN}Razor Leaf{RESET} + {COLOR GREEN}Sleep Powder{RESET}\n" "Chikorita\n" - "{COLOR_1 GREEN}Body Slam{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Reflect{END_COLOR_TEXT_1}{EXTRA_MSG}" + "{COLOR GREEN}Body Slam{RESET} + {COLOR GREEN}Reflect{RESET}{EXTRA_MSG}" "Treecko\n" - "{COLOR_1 GREEN}Screech{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Pound{END_COLOR_TEXT_1}\n" + "{COLOR GREEN}Screech{RESET} + {COLOR GREEN}Pound{RESET}\n" "Machop\n" - "{COLOR_1 GREEN}Focus Energy{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Karate Chop{END_COLOR_TEXT_1}\n" + "{COLOR GREEN}Focus Energy{RESET} + {COLOR GREEN}Karate Chop{RESET}\n" "Cubone\n" - "{COLOR_1 GREEN}Tail Whip{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Bonemerang{END_COLOR_TEXT_1}"); + "{COLOR GREEN}Tail Whip{RESET} + {COLOR GREEN}Bonemerang{RESET}"); ALIGNED(4) static const u8 sLinkedProHeadline1[] = _("#49 Linked Moves Pro Level 1"); ALIGNED(4) static const u8 sSlakothText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}Relief for Delicate Souls Who Can't{END_COLOR_TEXT_1}\n" - "{CENTER_ALIGN COLOR_1 YELLOW}Sleep with Different Pillows!{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}Relief for Delicate Souls Who Can't{RESET}\n" + "{CENTER_ALIGN COLOR YELLOW}Sleep with Different Pillows!{RESET}\n" "Insomniacs rejoiced over the announcement\n" "of the Slakoth Pillow, which is said to\n" "induce sleepiness just by seeing it.\n" @@ -1431,14 +1431,14 @@ ALIGNED(4) static const u8 sPitfallText[] = _( ALIGNED(4) static const u8 sPitfallHeadline[] = _("#47 Beware of Pitfalls"); ALIGNED(4) static const u8 sSeaRescueText[] = _( - "A high-seas rescue in the {COLOR_1 RED}Stormy Sea{END_COLOR_TEXT_1} by\n" - "{COLOR_1 CYAN}Team Sea Dragons{END_COLOR_TEXT_1} ended yesterday with\n" + "A high-seas rescue in the {COLOR RED}Stormy Sea{RESET} by\n" + "{COLOR CYAN}Team Sea Dragons{RESET} ended yesterday with\n" "the successful recovery of Tentacool.\n" "The client, Corsola, is said to be delighted\n" "by the outcome.\n" "Tentacool stated, “I didn't realize how far\n" "I'd been washed out to sea.”\n" - "The {COLOR_1 RED}Stormy Sea{END_COLOR_TEXT_1} is unforgiving!"); + "The {COLOR RED}Stormy Sea{RESET} is unforgiving!"); ALIGNED(4) static const u8 sSeaRescueHeadline[] = _("#46 Sea Rescue a Success!"); @@ -1454,7 +1454,7 @@ ALIGNED(4) static const u8 sVileplumeText[] = _( ALIGNED(4) static const u8 sVileplumeHeadline[] = _("#45 Vileplume's Weighty Problem"); ALIGNED(4) static const u8 sRawstText[] = _( - "Research has revealed that {COLOR_1 GREEN}Rawst Berries{END_COLOR_TEXT_1}\n" + "Research has revealed that {COLOR GREEN}Rawst Berries{RESET}\n" "found in dungeons are usually unripened\n" "and colored green. When ripe, they turn a\n" "sky blue color. An unripened one is easier\n" @@ -1521,10 +1521,10 @@ ALIGNED(4) static const u8 sCastformHeadline[] = _("#39 Castform's Daily Weather ALIGNED(4) static const u8 sGasText[] = _( "Reports of a noxious gas leak caused\n" - "widespread chaos in the {COLOR_1 YELLOW_4}Sinister Woods{END_COLOR_TEXT_1}.\n" + "widespread chaos in the {COLOR YELLOW_D}Sinister Woods{RESET}.\n" "Specialists speculate that the recent\n" "natural disasters are to blame. However,\n" - "some also blame {COLOR_1 CYAN}Team Koffing{END_COLOR_TEXT_1}'s training\n" + "some also blame {COLOR CYAN}Team Koffing{RESET}'s training\n" "in the area for the foul-smelling gas.\n" "The answer, apparently, is blowing in the\n" "wind."); @@ -1532,7 +1532,7 @@ ALIGNED(4) static const u8 sGasText[] = _( ALIGNED(4) static const u8 sGasHeadline[] = _("#38 Noxious Gas Leak?!"); ALIGNED(4) static const u8 sKeyItemText2[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}When Used Somewhere Special...{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}When Used Somewhere Special...{RESET}\n" "Eevee and Water Stone, Fire Stone,\n" "Thunderstone, or...\n" "Exeggcute and Leaf Stone...\n" @@ -1542,7 +1542,7 @@ ALIGNED(4) static const u8 sKeyItemText2[] = _( ALIGNED(4) static const u8 sKeyItemHeadline2[] = _("#37 Key Items for Pokémon 2"); ALIGNED(4) static const u8 sKeyItemText1[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}When Used Somewhere Special...{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}When Used Somewhere Special...{RESET}\n" "Sunkern and Sun Stone...\n" "Skitty and Moon Stone...\n" "Growlithe and Fire Stone...\n" @@ -1553,14 +1553,14 @@ ALIGNED(4) static const u8 sKeyItemText1[] = _( ALIGNED(4) static const u8 sKeyItemHeadline1[] = _("#36 Key Items for Pokémon 1"); ALIGNED(4) static const u8 sSwitchText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}Power Up Combination Attacks!{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}Power Up Combination Attacks!{RESET}\n" "Some dungeons allow rescue teams to\n" "switch leaders on the spot for doing\n" "combination attacks and so on.\n" "When you enter a dungeon, open the menu,\n" "choose the Pokémon you want as the\n" - "leader under {COLOR_1 YELLOW}Team{END_COLOR_TEXT_1}, then select the\n" - "command {COLOR_1 YELLOW}Leader{END_COLOR_TEXT_1}."); + "leader under {COLOR YELLOW}Team{RESET}, then select the\n" + "command {COLOR YELLOW}Leader{RESET}."); ALIGNED(4) static const u8 sSwitchHeadline[] = _("#35 Switching Leaders"); @@ -1591,7 +1591,7 @@ ALIGNED(4) static const u8 sWobbuffetText[] = _( "Earlier today, Wobbuffet reportedly\n" "wobbled the wrong way and wandered off.\n" "It had to be rescued by the famous\n" - "{COLOR_1 CYAN}Team Hydro{END_COLOR_TEXT_1}.\n" + "{COLOR CYAN}Team Hydro{RESET}.\n" "Fortunately, the wayward wanderer\n" "Wobbuffet was only wobbly and otherwise\n" "unharmed."); @@ -1602,8 +1602,8 @@ ALIGNED(4) static const u8 sPechaText[] = _( "Among rescue teams, there is growing\n" "demand for equipment that is not only\n" "practical, but also fashionably appealing.\n" - "The pink {COLOR_1 GREEN}Pecha Scarf{END_COLOR_TEXT_1} is especially popular.\n" - "Even the {COLOR_1 CYAN}Kecleon Shop{END_COLOR_TEXT_1} is having trouble\n" + "The pink {COLOR GREEN}Pecha Scarf{RESET} is especially popular.\n" + "Even the {COLOR CYAN}Kecleon Shop{RESET} is having trouble\n" "keeping it in stock.\n" "If you're lucky enough to spot one, make a\n" "beeline for it!"); @@ -1635,19 +1635,19 @@ ALIGNED(4) static const u8 sAzurillText[] = _( ALIGNED(4) static const u8 sAzurillHeadline[] = _("#29 Azurill--the Little Hero!"); ALIGNED(4) static const u8 sKeyText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}Head Out to the Desert Region!{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}Head Out to the Desert Region!{RESET}\n" "If you've been wondering what lies behind\n" - "the mysterious locked doors of the {COLOR_1 YELLOW_4}Solar\n" - "Cave{END_COLOR_TEXT_1}, there's been a breakthrough!\n" + "the mysterious locked doors of the {COLOR YELLOW_D}Solar\n" + "Cave{RESET}, there's been a breakthrough!\n" "Reports indicate the door keys are easily\n" - "found in the {COLOR_1 YELLOW_4}Desert Region{END_COLOR_TEXT_1}. Explorers are\n" + "found in the {COLOR YELLOW_D}Desert Region{RESET}. Explorers are\n" "advised to compose teams with Pokémon\n" "adapted to the desert environment."); ALIGNED(4) static const u8 sKeyHeadline[] = _("#28 The Key"); ALIGNED(4) static const u8 sSweetText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}Feel a Little Envious?{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}Feel a Little Envious?{RESET}\n" "Teddiursa is often seen licking its paws\n" "that have soaked up sweet honey. While it\n" "may be sticky shaking paws with\n" @@ -1657,10 +1657,10 @@ ALIGNED(4) static const u8 sSweetText[] = _( ALIGNED(4) static const u8 sSweetHeadline[] = _("#27 Sweet Hands!"); ALIGNED(4) static const u8 sRangeText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}All Moves Have Effective Ranges{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}All Moves Have Effective Ranges{RESET}\n" "Moves that affect an entire room have a\n" "range of two tiles in a corridor. The move\n" - "{COLOR_1 GREEN}Growl{END_COLOR_TEXT_1}, which lowers the Attack stat of\n" + "{COLOR GREEN}Growl{RESET}, which lowers the Attack stat of\n" "foes in a room, will reach two tiles away\n" "in a corridor, for example. If, however,\n" "the visibility is limited to just one tile,\n" @@ -1669,8 +1669,8 @@ ALIGNED(4) static const u8 sRangeText[] = _( ALIGNED(4) static const u8 sRangeHeadline[] = _("#26 The Range of Moves"); ALIGNED(4) static const u8 sIQText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}Make Your Explorations Easier by{END_COLOR_TEXT_1}\n" - "{CENTER_ALIGN COLOR_1 YELLOW}Boosting the IQ of Team Members!{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}Make Your Explorations Easier by{RESET}\n" + "{CENTER_ALIGN COLOR YELLOW}Boosting the IQ of Team Members!{RESET}\n" "Eating Gummis boosts the IQ of Pokémon.\n" "Upon reaching certain IQ levels, a Pokémon\n" "learns IQ Skills that can be very helpful\n" @@ -1681,7 +1681,7 @@ ALIGNED(4) static const u8 sIQText[] = _( ALIGNED(4) static const u8 sIQHeadline[] = _("#25 IQ"); ALIGNED(4) static const u8 sTrapTileText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}New Types of Floor Tiles?{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}New Types of Floor Tiles?{RESET}\n" "There have been numerous reports of new\n" "floor tiles other than Wonder Tiles.\n" "Believed to have been made by the recent\n" @@ -1693,32 +1693,32 @@ ALIGNED(4) static const u8 sTrapTileText[] = _( ALIGNED(4) static const u8 sTrapTileHeadline[] = _("#24 New Floor Tiles?"); ALIGNED(4) static const u8 sMakuhitaText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}Study Type Matchups{END_COLOR_TEXT_1}\n" - "{CENTER_ALIGN COLOR_1 YELLOW}at the Makuhita Dojo!{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}Study Type Matchups{RESET}\n" + "{CENTER_ALIGN COLOR YELLOW}at the Makuhita Dojo!{RESET}\n" "At the Makuhita Dojo, one can learn how\n" "Pokémon type matchups affect battles.\n" "It's because the dojo's training rooms are\n" - "divided by type. For example, in the {COLOR_1 YELLOW_4}Fire\n" - "Maze{END_COLOR_TEXT_1}, there are only Fire-type Pokémon.\n" + "divided by type. For example, in the {COLOR YELLOW_D}Fire\n" + "Maze{RESET}, there are only Fire-type Pokémon.\n" "Try move types to see what works best!"); ALIGNED(4) static const u8 sMakuhitaHeadline[] = _("#23 Train at the Makuhita Dojo!"); ALIGNED(4) static const u8 sMachineText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}New Types of Machines Discovered?{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}New Types of Machines Discovered?{RESET}\n" "In a recently discovered cave, explorers\n" "found unique types of Technical Machines.\n" "They apparently do not break after a single\n" "use. Further studies are said to be under\n" "consideration by the authorities.\n" "In related news, the cave is to be named\n" - "the {COLOR_1 YELLOW_4}Solar Cave{END_COLOR_TEXT_1}."); + "the {COLOR YELLOW_D}Solar Cave{RESET}."); ALIGNED(4) static const u8 sMachineHeadline[] = _("#22 New Types of Machines?"); ALIGNED(4) static const u8 sUltimateText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}The Ultimate Dungeon{END_COLOR_TEXT_1}\n" - "{CENTER_ALIGN COLOR_1 YELLOW}Challenges You to Do Your Best!{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}The Ultimate Dungeon{RESET}\n" + "{CENTER_ALIGN COLOR YELLOW}Challenges You to Do Your Best!{RESET}\n" "Somewhere in the world, there supposedly\n" "is an incredibly tough dungeon. One must\n" "enter alone at Level 1, and without any\n" @@ -1729,7 +1729,7 @@ ALIGNED(4) static const u8 sUltimateText[] = _( ALIGNED(4) static const u8 sUltimateHeadline[] = _("#21 The Ultimate Dungeon"); ALIGNED(4) static const u8 sGummiText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}Gummis That Make You Smart{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}Gummis That Make You Smart{RESET}\n" "Research has revealed that popular Gummi\n" "treats not only enhance intelligence, they\n" "also have different effects depending on\n" @@ -1741,12 +1741,12 @@ ALIGNED(4) static const u8 sGummiText[] = _( ALIGNED(4) static const u8 sGummiHeadline[] = _("#20 Secrets of the Gummi"); ALIGNED(4) static const u8 sMoveTipsText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}Moving Diagonally{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}Moving Diagonally{RESET}\n" "Move diagonally to avoid foes!\n" "Keeping {R_BUTTON}" " pressed, use\n" "{DPAD} to move diagonally.\n" - "{CENTER_ALIGN COLOR_1 YELLOW}Changing Direction{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}Changing Direction{RESET}\n" "It's also very important to change\n" "directions without moving. Check Hints to\n" "see how you can do this maneuver!"); @@ -1766,7 +1766,7 @@ ALIGNED(4) static const u8 sAddMembersText[] = _( ALIGNED(4) static const u8 sAddMembersHeadline[] = _("#18 Adding Team Members"); ALIGNED(4) static const u8 sTeamMoveText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}Use Team Members Effectively!{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}Use Team Members Effectively!{RESET}\n" "When you're fighting in a dungeon, it's\n" "important to use your team members. If\n" "attacked from the side, move horizontally.\n" @@ -1778,7 +1778,7 @@ ALIGNED(4) static const u8 sTeamMoveText[] = _( ALIGNED(4) static const u8 sTeamMoveHeadline[] = _("#17 Moving as a Team"); ALIGNED(4) static const u8 sWondersText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}The Seven Wonders of Pokémon?{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}The Seven Wonders of Pokémon?{RESET}\n" "The mysterious feet of Diglett.\n" "What is inside Forretress's shell.\n" "The intelligence of Girafarig's tail.\n" @@ -1790,73 +1790,73 @@ ALIGNED(4) static const u8 sWondersText[] = _( ALIGNED(4) static const u8 sWondersHeadline[] = _("#16 Seven Wonders of Pokémon"); ALIGNED(4) static const u8 sPollText[] = _( - "{COLOR_1 YELLOW}First{UNK_MACRO_3D_50}Gravelerock{END_COLOR_TEXT_1}\n" - "{COLOR_1 YELLOW}Second{UNK_MACRO_3D_50}Oran Berry{END_COLOR_TEXT_1}\n" + "{COLOR YELLOW}First{UNK_MACRO_3D_50}Gravelerock{RESET}\n" + "{COLOR YELLOW}Second{UNK_MACRO_3D_50}Oran Berry{RESET}\n" "In a nationwide survey involving rescue\n" "teams, the most popular item was found to\n" - "be {COLOR_1 GREEN}Gravelerocks{END_COLOR_TEXT_1}. According to Sudowoodo\n" - "of {COLOR_1 CYAN}Team Fakers{END_COLOR_TEXT_1}, “It lets you attack\n" + "be {COLOR GREEN}Gravelerocks{RESET}. According to Sudowoodo\n" + "of {COLOR CYAN}Team Fakers{RESET}, “It lets you attack\n" "from far away. It's invaluable.” The next\n" - "most popular item was {COLOR_1 GREEN}Oran Berries{END_COLOR_TEXT_1}."); + "most popular item was {COLOR GREEN}Oran Berries{RESET}."); ALIGNED(4) static const u8 sPollHeadline[] = _("#15 Poll: Top Two Items"); ALIGNED(4) static const u8 sLinkedEntryText3[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}These Are the Final Linked Moves{END_COLOR_TEXT_1}\n" - "{CENTER_ALIGN COLOR_1 YELLOW}We Recommend in the Entry Level!{END_COLOR_TEXT_1}\n" - "{COLOR_1 RED}Electric and Water Types{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}These Are the Final Linked Moves{RESET}\n" + "{CENTER_ALIGN COLOR YELLOW}We Recommend in the Entry Level!{RESET}\n" + "{COLOR RED}Electric and Water Types{RESET}\n" "Pikachu\n" - "{COLOR_1 GREEN}Thundershock{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Growl{END_COLOR_TEXT_1}\n" + "{COLOR GREEN}Thundershock{RESET} + {COLOR GREEN}Growl{RESET}\n" "Squirtle\n" - "{COLOR_1 GREEN}Tail Whip{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Tackle{END_COLOR_TEXT_1}{EXTRA_MSG}Totodile\n" - "{COLOR_1 GREEN}Leer{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Scratch{END_COLOR_TEXT_1}\n" + "{COLOR GREEN}Tail Whip{RESET} + {COLOR GREEN}Tackle{RESET}{EXTRA_MSG}Totodile\n" + "{COLOR GREEN}Leer{RESET} + {COLOR GREEN}Scratch{RESET}\n" "Mudkip\n" - "{COLOR_1 GREEN}Water Gun{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Mud-Slap{END_COLOR_TEXT_1}\n" + "{COLOR GREEN}Water Gun{RESET} + {COLOR GREEN}Mud-Slap{RESET}\n" "Psyduck\n" - "{COLOR_1 GREEN}Tail Whip{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Scratch{END_COLOR_TEXT_1}"); + "{COLOR GREEN}Tail Whip{RESET} + {COLOR GREEN}Scratch{RESET}"); ALIGNED(4) static const u8 sLinkedEntryHeadline3[] = _("#14 Linked Moves Entry Level 3"); ALIGNED(4) static const u8 sLinkedEntryText2[] = _( - "{COLOR_1 RED}Fire and Normal Types{END_COLOR_TEXT_1}\n" + "{COLOR RED}Fire and Normal Types{RESET}\n" "Charmander\n" - "{COLOR_1 GREEN}Ember{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Growl{END_COLOR_TEXT_1}\n" + "{COLOR GREEN}Ember{RESET} + {COLOR GREEN}Growl{RESET}\n" "Cyndaquil\n" - "{COLOR_1 GREEN}Leer{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Tackle{END_COLOR_TEXT_1}\n" + "{COLOR GREEN}Leer{RESET} + {COLOR GREEN}Tackle{RESET}\n" "Torchic\n" - "{COLOR_1 GREEN}Ember{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Growl{END_COLOR_TEXT_1}{EXTRA_MSG}Eevee\n" - "{COLOR_1 GREEN}Tail Whip{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Tackle{END_COLOR_TEXT_1}\n" + "{COLOR GREEN}Ember{RESET} + {COLOR GREEN}Growl{RESET}{EXTRA_MSG}Eevee\n" + "{COLOR GREEN}Tail Whip{RESET} + {COLOR GREEN}Tackle{RESET}\n" "Meowth\n" - "{COLOR_1 GREEN}Scratch{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Growl{END_COLOR_TEXT_1}\n" + "{COLOR GREEN}Scratch{RESET} + {COLOR GREEN}Growl{RESET}\n" "Skitty\n" - "{COLOR_1 GREEN}Tail Whip{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Tackle{END_COLOR_TEXT_1}"); + "{COLOR GREEN}Tail Whip{RESET} + {COLOR GREEN}Tackle{RESET}"); ALIGNED(4) static const u8 sLinkedEntryHeadline2[] = _("#13 Linked Moves Entry Level 2"); ALIGNED(4) static const u8 sLinkedEntryText1[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}These Are the Recommended{END_COLOR_TEXT_1}\n" - "{CENTER_ALIGN COLOR_1 YELLOW}Linked Moves for Beginners!{END_COLOR_TEXT_1}\n" - "{COLOR_1 RED}Grass, Fighting, and Ground Types{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}These Are the Recommended{RESET}\n" + "{CENTER_ALIGN COLOR YELLOW}Linked Moves for Beginners!{RESET}\n" + "{COLOR RED}Grass, Fighting, and Ground Types{RESET}\n" "Bulbasaur\n" - "{COLOR_1 GREEN}Vine Whip{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Growl{END_COLOR_TEXT_1}\n" + "{COLOR GREEN}Vine Whip{RESET} + {COLOR GREEN}Growl{RESET}\n" "Chikorita\n" - "{COLOR_1 GREEN}Razor Leaf{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Growl{END_COLOR_TEXT_1}{EXTRA_MSG}Treecko\n" - "{COLOR_1 GREEN}Leer{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Pound{END_COLOR_TEXT_1}\n" + "{COLOR GREEN}Razor Leaf{RESET} + {COLOR GREEN}Growl{RESET}{EXTRA_MSG}Treecko\n" + "{COLOR GREEN}Leer{RESET} + {COLOR GREEN}Pound{RESET}\n" "Machop\n" - "{COLOR_1 GREEN}Leer{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Low Kick{END_COLOR_TEXT_1}\n" + "{COLOR GREEN}Leer{RESET} + {COLOR GREEN}Low Kick{RESET}\n" "Cubone\n" - "{COLOR_1 GREEN}Tail Whip{END_COLOR_TEXT_1} + {COLOR_1 GREEN}Bone Club{END_COLOR_TEXT_1}"); + "{COLOR GREEN}Tail Whip{RESET} + {COLOR GREEN}Bone Club{RESET}"); ALIGNED(4) static const u8 sLinkedEntryHeadline1[] = _("#12 Linked Moves Entry Level 1"); ALIGNED(4) static const u8 sTypeText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}Learn How Types Match Up!{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}Learn How Types Match Up!{RESET}\n" "All Pokémon are of certain types, such as\n" - "{COLOR_1 RED}Fire{END_COLOR_TEXT_1} and {COLOR_1 CYAN}Water{END_COLOR_TEXT_1}. In a battle, the damage\n" + "{COLOR RED}Fire{RESET} and {COLOR CYAN}Water{RESET}. In a battle, the damage\n" "inflicted depends on how the Pokémon's\n" "type matches up with the move's type.\n" - "For example, a {COLOR_1 RED}Fire{END_COLOR_TEXT_1}-type Pokémon is\n" - "weak against {COLOR_1 CYAN}Water{END_COLOR_TEXT_1}-type moves.\n" + "For example, a {COLOR RED}Fire{RESET}-type Pokémon is\n" + "weak against {COLOR CYAN}Water{RESET}-type moves.\n" "Exploit type matchups to win battles!"); ALIGNED(4) static const u8 sTypeHeadline[] = _("#11 Types and Matchups"); @@ -1867,17 +1867,17 @@ ALIGNED(4) static const u8 sDungeonText[] = _( "all the money you are carrying.\n" "Beware of what you're carrying before\n" "you go off on a rescue or an outing.\n" - "Use {COLOR_1 CYAN}Kangaskhan Storage{END_COLOR_TEXT_1} to keep\n" + "Use {COLOR CYAN}Kangaskhan Storage{RESET} to keep\n" "invaluable items safely stored.\n" " - Pokémon Rescue Organization -"); ALIGNED(4) static const u8 sDungeonHeadline[] = _("#10 Mysterious Dungeons?"); ALIGNED(4) static const u8 sWonderText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}Wonder Tiles Reset Attack and Defense!{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}Wonder Tiles Reset Attack and Defense!{RESET}\n" "If your Attack is lowered by a foe's\n" - "{COLOR_1 GREEN}Growl{END_COLOR_TEXT_1}, or your Defense is lowered\n" - "by a foe's {COLOR_1 GREEN}Tail Whip{END_COLOR_TEXT_1}, for example, the\n" + "{COLOR GREEN}Growl{RESET}, or your Defense is lowered\n" + "by a foe's {COLOR GREEN}Tail Whip{RESET}, for example, the\n" "affected stat can be reset to normal by\n" "stepping on a Wonder Tile or going to the\n" "next floor. Beware, enhanced stats are\n" @@ -1886,30 +1886,30 @@ ALIGNED(4) static const u8 sWonderText[] = _( ALIGNED(4) static const u8 sWonderHeadline[] = _("#9 Wonder Tiles"); ALIGNED(4) static const u8 sMoveText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}The Benefits of Using Moves{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}The Benefits of Using Moves{RESET}\n" "If a move is used on a foe, when it is\n" - "defeated, {COLOR_1 CYAN}you earn more Exp. Points{END_COLOR_TEXT_1}!\n" + "defeated, {COLOR CYAN}you earn more Exp. Points{RESET}!\n" "A move only has to be used once on the\n" "foe: after that it can be defeated using a\n" "regular attack to earn more Exp. Points.\n" "Moves are also more likely to become\n" - "{COLOR_1 CYAN}critical hits{END_COLOR_TEXT_1}! Don't overuse them, though!"); + "{COLOR CYAN}critical hits{RESET}! Don't overuse them, though!"); ALIGNED(4) static const u8 sMoveHeadline[] = _("#8 Let's Use Moves!"); ALIGNED(4) static const u8 sOptionsText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}Change Your Option Settings{END_COLOR_TEXT_1}\n" - "{CENTER_ALIGN COLOR_1 YELLOW}to Suit Your Play Style!{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}Change Your Option Settings{RESET}\n" + "{CENTER_ALIGN COLOR YELLOW}to Suit Your Play Style!{RESET}\n" "Press {B_BUTTON} to open the menu, then\n" - "choose {COLOR_1 YELLOW}Others{END_COLOR_TEXT_1} and {COLOR_1 YELLOW}Game Options{END_COLOR_TEXT_1}.\n" + "choose {COLOR YELLOW}Others{RESET} and {COLOR YELLOW}Game Options{RESET}.\n" "You can change settings to suit the way\n" "you play."); ALIGNED(4) static const u8 sOptionsHeadline[] = _("#7 Game Options"); ALIGNED(4) static const u8 sDisasterText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}Investigations Under Way into{END_COLOR_TEXT_1}\n" - "{CENTER_ALIGN COLOR_1 YELLOW}Recent Rash of Natural Disasters{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}Investigations Under Way into{RESET}\n" + "{CENTER_ALIGN COLOR YELLOW}Recent Rash of Natural Disasters{RESET}\n" "Pokémon in affected areas attack any\n" "outsider without hesitation. Some believe\n" "a mysterious force is behind their\n" @@ -1920,7 +1920,7 @@ ALIGNED(4) static const u8 sDisasterText[] = _( ALIGNED(4) static const u8 sDisasterHeadline[] = _("#6 Recent Natural Disasters"); ALIGNED(4) static const u8 sSeedText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}Seeds Can Be Thrown, Too!{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}Seeds Can Be Thrown, Too!{RESET}\n" "Seeds are usually meant to be eaten.\n" "But did you know? They can also be thrown\n" "at other Pokémon to unlock their effects.\n" @@ -1931,14 +1931,14 @@ ALIGNED(4) static const u8 sSeedText[] = _( ALIGNED(4) static const u8 sSeedHeadline[] = _("#5 Throw Seeds!"); ALIGNED(4) static const u8 sHungerText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}Eat Something When You Get Hungry!{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}Eat Something When You Get Hungry!{RESET}\n" "While you're exploring a dungeon, you will\n" "get progressively hungry (your Belly goes\n" "down). If you become famished, you will\n" "eventually lose HP and even faint.\n" "That's why you should eat something to fill\n" "your Belly! You can always buy food at the\n" - "{COLOR_1 CYAN}Kecleon Shop{END_COLOR_TEXT_1}."); + "{COLOR CYAN}Kecleon Shop{RESET}."); ALIGNED(4) static const u8 sHungerHeadline[] = _("#4 Getting Hungry"); @@ -1946,8 +1946,8 @@ ALIGNED(4) static const u8 sJobText[] = _( "If you want to go on a rescue job listed\n" "on the Bulletin Board at the Pelipper Post\n" "Office, or one that's delivered to your\n" - "Mailbox, you first need to {COLOR_1 YELLOW}Accept{END_COLOR_TEXT_1} the job,\n" - "then choose {COLOR_1 YELLOW}Take Job{END_COLOR_TEXT_1}. Only then will you\n" + "Mailbox, you first need to {COLOR YELLOW}Accept{RESET} the job,\n" + "then choose {COLOR YELLOW}Take Job{RESET}. Only then will you\n" "be able to handle that job.\n" "Try to do accepted jobs quickly!\n" " - Pokémon Rescue Organization -"); @@ -1955,7 +1955,7 @@ ALIGNED(4) static const u8 sJobText[] = _( ALIGNED(4) static const u8 sJobHeadline[] = _("#3 Accepting Rescue Jobs"); ALIGNED(4) static const u8 sBasicsText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}Saving Your Adventure and Pokémon News{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}Saving Your Adventure and Pokémon News{RESET}\n" "You can save your adventure by going to\n" "your bed. Get in the habit of saving often.\n" "You should also store old Pokémon News.\n" @@ -1967,7 +1967,7 @@ ALIGNED(4) static const u8 sBasicsText[] = _( ALIGNED(4) static const u8 sBasicsHeadline[] = _("#2 Rescue Team Basics"); ALIGNED(4) static const u8 sWelcomeText[] = _( - "{CENTER_ALIGN COLOR_1 YELLOW}To All New Members!{END_COLOR_TEXT_1}\n" + "{CENTER_ALIGN COLOR YELLOW}To All New Members!{RESET}\n" "Your badge has the power to send back\n" "to town any Pokémon you've rescued. Just\n" "hold the badge up, and it does the rest.\n" diff --git a/src/data/pokemon_mail_pre.h b/src/data/pokemon_mail_pre.h index 1c1f72629..2d9cbecb4 100644 --- a/src/data/pokemon_mail_pre.h +++ b/src/data/pokemon_mail_pre.h @@ -518,31 +518,31 @@ const s16 gUnknown_80E81D4[386][2] = { { MONSTER_MACHOP, ITEM_ORANGE_GUMMI } }; -ALIGNED(4) const u8 gMankeyMission[] = _("Punish bad {COLOR_1 YELLOW}Mankey{END_COLOR_TEXT_1}!"); -ALIGNED(4) const u8 gSmeargleMission[] = _("{COLOR_1 YELLOW}Smeargle{END_COLOR_TEXT_1}'s desperate plea!"); -ALIGNED(4) const u8 gMedichamMission[] = _("{COLOR_1 YELLOW}Medicham{END_COLOR_TEXT_1}: Help me!"); -ALIGNED(4) const u8 gUnknown_80E8830[] = _("Deliver one {COLOR_1 GREEN}%s{END_COLOR_TEXT_1}."); -ALIGNED(4) const u8 gUnknown_80E8848[] = _("One {COLOR_1 GREEN}%s{END_COLOR_TEXT_1} wanted!"); +ALIGNED(4) const u8 gMankeyMission[] = _("Punish bad {COLOR YELLOW}Mankey{RESET}!"); +ALIGNED(4) const u8 gSmeargleMission[] = _("{COLOR YELLOW}Smeargle{RESET}'s desperate plea!"); +ALIGNED(4) const u8 gMedichamMission[] = _("{COLOR YELLOW}Medicham{RESET}: Help me!"); +ALIGNED(4) const u8 gUnknown_80E8830[] = _("Deliver one {COLOR GREEN}%s{RESET}."); +ALIGNED(4) const u8 gUnknown_80E8848[] = _("One {COLOR GREEN}%s{RESET} wanted!"); ALIGNED(4) const u8 gUnknown_80E885C[] = _("Save my child!"); ALIGNED(4) const u8 gUnknown_80E886C[] = _("Escort me to my love!"); ALIGNED(4) const u8 gUnknown_80E8884[] = _("Near %s"); ALIGNED(4) const u8 gUnknown_80E888C[] = _("Rescue Description"); -ALIGNED(4) const u8 gMankeyMissionDescription[] = _("Please punish bad {COLOR_1 YELLOW}Mankey{END_COLOR_TEXT_1}'s gang."); +ALIGNED(4) const u8 gMankeyMissionDescription[] = _("Please punish bad {COLOR YELLOW}Mankey{RESET}'s gang."); ALIGNED(4) const u8 gSmeargleMissionDescription[] = _( "I didn't want to become a grown-up, so I\n" "fled, but now I've lost my way! Help!"); ALIGNED(4) const u8 gMedichamMissionDescription[] = _( - "This is {COLOR_1 YELLOW}Medicham{END_COLOR_TEXT_1}. Rescue me, please!\n" + "This is {COLOR YELLOW}Medicham{RESET}. Rescue me, please!\n" "The reward is a secret〜♪ "); ALIGNED(4) const u8 gUnknown_80E8968[] = _( - "With the item {COLOR_1 GREEN}%s{END_COLOR_TEXT_1}, I can\n" + "With the item {COLOR GREEN}%s{RESET}, I can\n" "evolve! I'm yearning to evolve! Help!"); ALIGNED(4) const u8 gUnknown_80E89B0[] = _( - "The {COLOR_1 GREEN}%s{END_COLOR_TEXT_1}! What I love to eat\n" + "The {COLOR GREEN}%s{RESET}! What I love to eat\n" "and can't live without! Please get one!"); ALIGNED(4) const u8 gUnknown_80E89FC[] = _( @@ -558,14 +558,14 @@ ALIGNED(4) const u8 gUnknown_80E8A7C[] = _( "Send your thanks to your friend!"); ALIGNED(4) const u8 gUnknown_80E8AC8[] = _("Client:"); -ALIGNED(4) const u8 gUnknown_80E8AD0[] = _("%s{COLOR_1 GREEN}{UNK_ICON_81_69}%s{UNK_ICON_81_6A}{END_COLOR_TEXT_1}"); +ALIGNED(4) const u8 gUnknown_80E8AD0[] = _("%s{COLOR GREEN}{UNK_ICON_81_69}%s{UNK_ICON_81_6A}{RESET}"); ALIGNED(4) const u8 gUnknown_80E8AE0[] = _("Objective:"); ALIGNED(4) const u8 gUnknown_80E8AEC[] = _("Friend Rescue"); -ALIGNED(4) const u8 gUnknown_80E8AFC[] = _("Deliver {COLOR_1 GREEN}%s{END_COLOR_TEXT_1}."); -ALIGNED(4) const u8 gUnknown_80E8B10[] = _("Find {COLOR_1 GREEN}%s{END_COLOR_TEXT_1}."); +ALIGNED(4) const u8 gUnknown_80E8AFC[] = _("Deliver {COLOR GREEN}%s{RESET}."); +ALIGNED(4) const u8 gUnknown_80E8B10[] = _("Find {COLOR GREEN}%s{RESET}."); ALIGNED(4) const u8 gUnknown_80E8B20[] = _("Help me."); -ALIGNED(4) const u8 gUnknown_80E8B2C[] = _("Escort to {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}."); -ALIGNED(4) const u8 gUnknown_80E8B40[] = _("Find {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}."); +ALIGNED(4) const u8 gUnknown_80E8B2C[] = _("Escort to {COLOR YELLOW}%s{RESET}."); +ALIGNED(4) const u8 gUnknown_80E8B40[] = _("Find {COLOR YELLOW}%s{RESET}."); ALIGNED(4) const u8 gSpecialMissionText[] = _("Special mission"); ALIGNED(4) const u8 gPlaceText[] = _("Place:"); ALIGNED(4) const u8 gDifficultyText[] = _("Difficulty:"); diff --git a/src/data/post_office_guide1.h b/src/data/post_office_guide1.h index 8a9c1cb0f..de55f3702 100644 --- a/src/data/post_office_guide1.h +++ b/src/data/post_office_guide1.h @@ -38,7 +38,7 @@ static const MenuItem sPostOfficeHelpStartMenu[] = }; ALIGNED(4) static const u8 sCancel[] = _("Cancel"); -ALIGNED(4) static const u8 sFriendRescue[] = _("{COLOR_1 YELLOW}Friend Rescue{END_COLOR_TEXT_1} "); +ALIGNED(4) static const u8 sFriendRescue[] = _("{COLOR YELLOW}Friend Rescue{RESET} "); ALIGNED(4) static const u8 sDelivery[] = _("Delivery"); ALIGNED(4) static const u8 sBulletinBoard[] = _("Bulletin Board"); ALIGNED(4) static const u8 sPostOffice[] = _("Post Office"); @@ -61,8 +61,8 @@ static const MenuItem gPostOfficeHelpFriendRescueMenu[] = ALIGNED(4) static const u8 sExit[] = _("Exit"); ALIGNED(4) static const u8 sDeletingMailInfo[] = _("Deleting Mail Info"); -ALIGNED(4) static const u8 sGetHelp[] = _("{COLOR_1 YELLOW}Get help{END_COLOR_TEXT_1} "); -ALIGNED(4) static const u8 sGoRescue[] = _("{COLOR_1 YELLOW}Go rescue{END_COLOR_TEXT_1} "); +ALIGNED(4) static const u8 sGetHelp[] = _("{COLOR YELLOW}Get help{RESET} "); +ALIGNED(4) static const u8 sGoRescue[] = _("{COLOR YELLOW}Go rescue{RESET} "); ALIGNED(4) static const u8 sFriendRescueInfo[] = _("Friend Rescue Info"); static const MenuItem sPostOfficeHelpGoRescueMenu[] = @@ -93,98 +93,98 @@ ALIGNED(4) static const u8 sWhatdYouWantToKnow[] = ALIGNED(4) static const u8 sGettingHelpExplanation[] = _(" If you need to call for\n" "help, first send your friend\n" - "an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" + "an {COLOR CYAN_G}SOS Mail{RESET}.{EXTRA_MSG}" " Once you send that mail,\n" "wait until your friend sends you back\n" - "an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" + "an {COLOR CYAN_G}A-OK Mail{RESET}.{EXTRA_MSG}" " When you get that\n" - "{COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} back, your team\n" + "{COLOR CYAN_G}A-OK Mail{RESET} back, your team\n" "can continue from where it went down.{EXTRA_MSG}" " Make sure you send your\n" - "friend a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}.\n" + "friend a {COLOR CYAN_G}Thank-You Mail{RESET}.\n" "That's if you get revived, of course."); ALIGNED(4) static const u8 sSendSOSMailExplanation[] = _(" If your team gets defeated\n" - "in a dungeon, you can send an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}\n" + "in a dungeon, you can send an {COLOR CYAN_G}SOS Mail{RESET}\n" "to a friend willing to help.{EXTRA_MSG}" " But I have to warn you.\n" "You can't get anyone to rescue you\n" "in certain places.{EXTRA_MSG}" " If you need to send\n" - "an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}, you send it from the\n" - "{COLOR_1 LIGHT_BLUE}main menu{END_COLOR_TEXT_1}."); + "an {COLOR CYAN_G}SOS Mail{RESET}, you send it from the\n" + "{COLOR CYAN_G}main menu{RESET}."); ALIGNED(4) static const u8 sReceiveAOKMailExplanation[] = _(" If your friend manages to\n" "rescue your team, you need to receive\n" - "an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} from your friend.{EXTRA_MSG}" + "an {COLOR CYAN_G}A-OK Mail{RESET} from your friend.{EXTRA_MSG}" " See, once you get that\n" - "{COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}, your team can continue from\n" + "{COLOR CYAN_G}A-OK Mail{RESET}, your team can continue from\n" "where it went down in the dungeon.{EXTRA_MSG}" " And, if you use\n" - "a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}, your friend can\n" - "even send you a {COLOR_1 LIGHT_BLUE}helper Pokémon{END_COLOR_TEXT_1}.{EXTRA_MSG}" + "a {COLOR CYAN_G}Game Link cable{RESET}, your friend can\n" + "even send you a {COLOR CYAN_G}helper Pokémon{RESET}.{EXTRA_MSG}" " There's just one thing.\n" - "A {COLOR_1 LIGHT_BLUE}helper Pokémon{END_COLOR_TEXT_1} can't bring\n" + "A {COLOR CYAN_G}helper Pokémon{RESET} can't bring\n" "any item it happens to be holding.{EXTRA_MSG}" " You can receive that\n" - "team-saving {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} on the {COLOR_1 LIGHT_BLUE}main menu{END_COLOR_TEXT_1},\n" + "team-saving {COLOR CYAN_G}A-OK Mail{RESET} on the {COLOR CYAN_G}main menu{RESET},\n" "all right?"); ALIGNED(4) static const u8 sSendThankYouMailExplanation[] = _(" If your team gets rescued,\n" "be sure to send your friend\n" - "a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" + "a {COLOR CYAN_G}Thank-You Mail{RESET}.{EXTRA_MSG}" " You do that by going to\n" - "the {COLOR_1 LIGHT_BLUE}right counter{END_COLOR_TEXT_1}, or\n" - "by selecting it from the {COLOR_1 LIGHT_BLUE}main menu{END_COLOR_TEXT_1}.{EXTRA_MSG}" + "the {COLOR CYAN_G}right counter{RESET}, or\n" + "by selecting it from the {COLOR CYAN_G}main menu{RESET}.{EXTRA_MSG}" " You can attach an item in\n" - "storage to your {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}\n" - "as a {COLOR_1 LIGHT_BLUE}reward item{END_COLOR_TEXT_1}.{EXTRA_MSG}" + "storage to your {COLOR CYAN_G}Thank-You Mail{RESET}\n" + "as a {COLOR CYAN_G}reward item{RESET}.{EXTRA_MSG}" " You don't want to ever\n" "forget to express your thanks."); ALIGNED(4) static const u8 sRescueProceduresExplanation[] = _(" If you want to go and\n" "rescue your friend's KO'd team,\n" - "you need to receive an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" + "you need to receive an {COLOR CYAN_G}SOS Mail{RESET}.{EXTRA_MSG}" " When you get that mail,\n" "you can rescue your friend at\n" - "the {COLOR_1 LIGHT_BLUE}left counter{END_COLOR_TEXT_1} over there.{EXTRA_MSG}" + "the {COLOR CYAN_G}left counter{RESET} over there.{EXTRA_MSG}" " If you do manage to rescue\n" "the team, you send your friend\n" - "an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" + "an {COLOR CYAN_G}A-OK Mail{RESET}.{EXTRA_MSG}" " After you do that, your\n" "friend can send back to you\n" - "a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}."); + "a {COLOR CYAN_G}Thank-You Mail{RESET}."); ALIGNED(4) static const u8 sReceiveSOSMailExplanation[] = _(" To go off on a rescue,\n" "you first need to receive your friend's\n" - "{COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" + "{COLOR CYAN_G}SOS Mail{RESET}.{EXTRA_MSG}" " You do that at\n" - "the {COLOR_1 LIGHT_BLUE}left counter{END_COLOR_TEXT_1} over there,\n" - "or by selecting it from the {COLOR_1 LIGHT_BLUE}main menu{END_COLOR_TEXT_1}."); + "the {COLOR CYAN_G}left counter{RESET} over there,\n" + "or by selecting it from the {COLOR CYAN_G}main menu{RESET}."); ALIGNED(4) static const u8 sSendAOKMailExplanation[] = _(" If you succeed in rescuing\n" "that team, you send your friend an\n" - "{COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" + "{COLOR CYAN_G}A-OK Mail{RESET}.{EXTRA_MSG}" " You do that by going to\n" - "the {COLOR_1 LIGHT_BLUE}left counter{END_COLOR_TEXT_1},\n" - "or from the {COLOR_1 LIGHT_BLUE}main menu{END_COLOR_TEXT_1}.{EXTRA_MSG}" + "the {COLOR CYAN_G}left counter{RESET},\n" + "or from the {COLOR CYAN_G}main menu{RESET}.{EXTRA_MSG}" " You can send your friend\n" "a Pokémon as a helper from your Friend\n" - "Areas using a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}.{EXTRA_MSG}" + "Areas using a {COLOR CYAN_G}Game Link cable{RESET}.{EXTRA_MSG}" " This Pokémon won't\n" "disappear from its Friend Area, so\n" "don't you worry any."); ALIGNED(4) static const u8 sLeaveForRescueExplanation[] = - _(" If you get an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1},\n" + _(" If you get an {COLOR CYAN_G}SOS Mail{RESET},\n" "you head off on the rescue from\n" - "the {COLOR_1 LIGHT_BLUE}left counter{END_COLOR_TEXT_1}.{EXTRA_MSG}" + "the {COLOR CYAN_G}left counter{RESET}.{EXTRA_MSG}" " But, I have to warn you.\n" "You can't go off to rescue in a dungeon\n" "if you can't get into it.{EXTRA_MSG}" @@ -194,14 +194,14 @@ ALIGNED(4) static const u8 sLeaveForRescueExplanation[] = ALIGNED(4) static const u8 sGetThankYouMailExplanation[] = _(" If you send your friend\n" - "an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}, you can look forward\n" - "to getting a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} back.{EXTRA_MSG}" + "an {COLOR CYAN_G}A-OK Mail{RESET}, you can look forward\n" + "to getting a {COLOR CYAN_G}Thank-You Mail{RESET} back.{EXTRA_MSG}" " You can receive it at\n" - "the {COLOR_1 LIGHT_BLUE}right counter{END_COLOR_TEXT_1}\n" - "or on the {COLOR_1 LIGHT_BLUE}main menu{END_COLOR_TEXT_1}.{EXTRA_MSG}" - " But you need to {COLOR_1 RED}be careful{END_COLOR_TEXT_1}.\n" - "You {COLOR_1 RED}must not delete the A-OK Mail{END_COLOR_TEXT_1}\n" - "before you get the {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} back."); + "the {COLOR CYAN_G}right counter{RESET}\n" + "or on the {COLOR CYAN_G}main menu{RESET}.{EXTRA_MSG}" + " But you need to {COLOR RED}be careful{RESET}.\n" + "You {COLOR RED}must not delete the A-OK Mail{RESET}\n" + "before you get the {COLOR CYAN_G}Thank-You Mail{RESET} back."); ALIGNED(4) static const u8 sImYourGuide[] = _(" I'm your guide to what you\n" @@ -213,24 +213,24 @@ ALIGNED(4) static const u8 sAnythingElse[] = "anything else?"); ALIGNED(4) static const u8 sPostOfficeExplanation[] = - _(" {COLOR_1 LIGHT_BLUE}The Pelipper Post Office{END_COLOR_TEXT_1}\n" + _(" {COLOR CYAN_G}The Pelipper Post Office{RESET}\n" "keeps track of information from\n" "around the world.{EXTRA_MSG}" " We inform folks\n" "about everything from gossip to calls\n" "for help from fellow Pokémon.{EXTRA_MSG}" " For the latest news, check\n" - "{COLOR_1 LIGHT_BLUE}your Mailbox{END_COLOR_TEXT_1} or the {COLOR_1 LIGHT_BLUE}Bulletin Board{END_COLOR_TEXT_1}\n" + "{COLOR CYAN_G}your Mailbox{RESET} or the {COLOR CYAN_G}Bulletin Board{RESET}\n" "outside, all right?{EXTRA_MSG}" " Oh, that's not all.\n" - "You can arrange for {COLOR_1 LIGHT_BLUE}Friend Rescue{END_COLOR_TEXT_1}\n" + "You can arrange for {COLOR CYAN_G}Friend Rescue{RESET}\n" "missions at that counter there.{EXTRA_MSG}" - " The {COLOR_1 LIGHT_BLUE}left counter{END_COLOR_TEXT_1} is\n" - "for rescues, and the {COLOR_1 LIGHT_BLUE}right counter{END_COLOR_TEXT_1}\n" + " The {COLOR CYAN_G}left counter{RESET} is\n" + "for rescues, and the {COLOR CYAN_G}right counter{RESET}\n" "is for Thank-You Mail."); ALIGNED(4) static const u8 sBulletinBoardExplanation[] = - _(" The {COLOR_1 LIGHT_BLUE}Bulletin Board{END_COLOR_TEXT_1} outside\n" + _(" The {COLOR CYAN_G}Bulletin Board{RESET} outside\n" "here lists rescue requests.{EXTRA_MSG}" " Take on rescue jobs from\n" "the Bulletin Board. Be a hero and handle\n" @@ -240,25 +240,25 @@ ALIGNED(4) static const u8 sDeliveryExplanation[] = _(" If your rescue team\n" "becomes famous for doing lots of rescues,\n" "expect to get rescue requests directly.{EXTRA_MSG}" - " Our delivery {ARG_POKEMON_0}\n" + " Our delivery {POKEMON_0}\n" "will take those jobs straight to your\n" - "{COLOR_1 LIGHT_BLUE}Mailbox{END_COLOR_TEXT_1}."); + "{COLOR CYAN_G}Mailbox{RESET}."); ALIGNED(4) static const u8 sFriendRescueExplanation[] = _(" Friend Rescue is what we\n" "call rescue missions between friends using\n" - "a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}, {COLOR_1 LIGHT_BLUE}passwords{END_COLOR_TEXT_1}, etc.{EXTRA_MSG}" + "a {COLOR CYAN_G}Game Link cable{RESET}, {COLOR CYAN_G}passwords{RESET}, etc.{EXTRA_MSG}" " For instance, you can send\n" "out for help saying your team wiped out\n" "in a dungeon at such and such a place.{EXTRA_MSG}" " Your friend could play\n" "the hero and come to your team's rescue.\n" "Or it can be the other way around, too.{EXTRA_MSG}" - " If you use {COLOR_1 LIGHT_BLUE}passwords{END_COLOR_TEXT_1},\n" + " If you use {COLOR CYAN_G}passwords{RESET},\n" "you can do rescues with friends in\n" "far-away places.{EXTRA_MSG}" " You can apply for Friend\n" - "Rescue jobs at the {COLOR_1 LIGHT_BLUE}left counter{END_COLOR_TEXT_1} of\n" + "Rescue jobs at the {COLOR CYAN_G}left counter{RESET} of\n" "that counter there."); ALIGNED(4) static const u8 sDeletingMailExplanation[] = @@ -266,10 +266,10 @@ ALIGNED(4) static const u8 sDeletingMailExplanation[] = "getting rid of old mail that you don't\n" "need anymore.{EXTRA_MSG}" " If you do lots of Friend\n" - "Rescues, you'll find {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1} and\n" - "{COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} piling up.{EXTRA_MSG}" - " Once you get {COLOR_1 LIGHT_BLUE}30 pieces{END_COLOR_TEXT_1},\n" + "Rescues, you'll find {COLOR CYAN_G}SOS Mail{RESET} and\n" + "{COLOR CYAN_G}A-OK Mail{RESET} piling up.{EXTRA_MSG}" + " Once you get {COLOR CYAN_G}30 pieces{RESET},\n" "you won't be able to receive more mail.\n" "That's why you'll need to delete old mail.{EXTRA_MSG}" " You can look through old\n" - "mail at the {COLOR_1 LIGHT_BLUE}left counter{END_COLOR_TEXT_1} over there."); \ No newline at end of file + "mail at the {COLOR CYAN_G}left counter{RESET} over there."); \ No newline at end of file diff --git a/src/data/post_office_guide2.h b/src/data/post_office_guide2.h index b3eb997a9..190161e6a 100644 --- a/src/data/post_office_guide2.h +++ b/src/data/post_office_guide2.h @@ -22,9 +22,9 @@ static const UnkTextStruct2 sUnknown_80E1F18 = ALIGNED(4) static const u8 sObjectives[] = "Objectives"; ALIGNED(4) static const u8 sFmt1[] = "%dF"; -ALIGNED(4) static const u8 sFmtRescue[] = _(" Rescue {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}"); +ALIGNED(4) static const u8 sFmtRescue[] = _(" Rescue {COLOR YELLOW}%s{RESET}"); ALIGNED(4) static const u8 sJustGo[] = "Just go!"; -ALIGNED(4) static const u8 sFmtBring[] = _(" Bring {COLOR_1 GREEN}%s{END_COLOR_TEXT_1}"); -ALIGNED(4) static const u8 sFmtFind[] = _(" Find {COLOR_1 GREEN}%s{END_COLOR_TEXT_1}"); -ALIGNED(4) static const u8 sFmtEscort[] = _(" Escort to {COLOR_1 YELLOW}%s{END_COLOR_TEXT_1}"); -ALIGNED(4) static const u8 sRedQuestionMarks[] = _("{COLOR_1 RED_2}???{END_COLOR_TEXT_1}"); +ALIGNED(4) static const u8 sFmtBring[] = _(" Bring {COLOR GREEN}%s{RESET}"); +ALIGNED(4) static const u8 sFmtFind[] = _(" Find {COLOR GREEN}%s{RESET}"); +ALIGNED(4) static const u8 sFmtEscort[] = _(" Escort to {COLOR YELLOW}%s{RESET}"); +ALIGNED(4) static const u8 sRedQuestionMarks[] = _("{COLOR RED_W}???{RESET}"); diff --git a/src/data/story_missions.h b/src/data/story_missions.h index d305474f7..c7eae1879 100644 --- a/src/data/story_missions.h +++ b/src/data/story_missions.h @@ -80,7 +80,7 @@ ALIGNED(4) const u8 gUnknown_8109B78[] = _("Meet sea guardian."); ALIGNED(4) const u8 gUnknown_8109B8C[] = _("Explore seafloor."); ALIGNED(4) const u8 gUnknown_8109BA0[] = _("Rescue Smeargle."); ALIGNED(4) const u8 gUnknown_8109BB4[] = _("Punish bad Mankey."); -ALIGNED(4) const u8 gUnknown_8109BC8[] = _("{COLOR_1 YELLOW_3}Scenario Progress Dummy{END_COLOR_TEXT_1}"); +ALIGNED(4) const u8 gUnknown_8109BC8[] = _("{COLOR YELLOW_C}Scenario Progress Dummy{RESET}"); ALIGNED(4) const u8 gUnknown_8109BE8[] = _("Seek Rayquaza's help."); ALIGNED(4) const u8 gUnknown_8109C00[] = _("Rescue Alakazam."); ALIGNED(4) const u8 gUnknown_8109C14[] = _("Meet Ninetales."); diff --git a/src/data/thank_you_wonder_mail.h b/src/data/thank_you_wonder_mail.h index e60cedbdc..2c2d469f3 100644 --- a/src/data/thank_you_wonder_mail.h +++ b/src/data/thank_you_wonder_mail.h @@ -36,7 +36,7 @@ ALIGNED(4) const u8 gUnknown_80DF138[]= _( "Please try again from the start."); ALIGNED(4) const u8 gUnknown_80DF194[]= _( - " Your {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}\n" + " Your {COLOR CYAN_G}Thank-You Mail{RESET}\n" "has been sent."); ALIGNED(4) const u8 gUnknown_80DF1C0[]= @@ -46,28 +46,28 @@ ALIGNED(4) const u8 gUnknown_80DF1C0[]= ALIGNED(4) const u8 gUnknown_80DF208[]= _( " ...Oh? This password doesn't\n" - "appear to be for a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}."); + "appear to be for a {COLOR CYAN_G}Thank-You Mail{RESET}."); ALIGNED(4) const u8 gUnknown_80DF250[]= _( ": This is the counter for\n" - "{COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" - ": Oh, hi, {COLOR_1 YELLOW_5}%s{END_COLOR_TEXT_1}.\n" + "{COLOR CYAN_G}Thank-You Mail{RESET}.{EXTRA_MSG}" + ": Oh, hi, {COLOR YELLOW_N}%s{RESET}.\n" "I've been waiting for you. You wanted me\n" - "to process a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}?{EXTRA_MSG}" + "to process a {COLOR CYAN_G}Thank-You Mail{RESET}?{EXTRA_MSG}" ": Let me get on it right away."); ALIGNED(4) const u8 gUnknown_80DF304[]= _( " Is it OK to send this\n" - "{COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}?"); + "{COLOR CYAN_G}Thank-You Mail{RESET}?"); ALIGNED(4) const u8 gUnknown_80DF330[]= _( " Please choose the\n" - "{COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} that you want to\n" + "{COLOR CYAN_G}Thank-You Mail{RESET} that you want to\n" "send to your friend."); ALIGNED(4) const u8 gUnknown_80DF380[]= _( " OK. Please enter the\n" - "{COLOR_1 LIGHT_BLUE}Thank-You Mail password{END_COLOR_TEXT_1}."); + "{COLOR CYAN_G}Thank-You Mail password{RESET}."); ALIGNED(4) const u8 gUnknown_80DF3B4[]= _( " Please give this password\n" @@ -77,7 +77,7 @@ ALIGNED(4) const u8 gUnknown_80DF3B4[]= _( ALIGNED(4) const u8 gUnknown_80DF418[]= _( " OK, here is your\n" - "{COLOR_1 LIGHT_BLUE}Thank-You Mail password{END_COLOR_TEXT_1}."); + "{COLOR CYAN_G}Thank-You Mail password{RESET}."); ALIGNED(4) const u8 gUnknown_80DF44C[]= " I need to save your\n" @@ -91,7 +91,7 @@ ALIGNED(4) const u8 gUnknown_80DF46C[]= _( "Please keep up your rescue work!"); ALIGNED(4) const u8 gUnknown_80DF4F4[]= _( - " A {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} has\n" + " A {COLOR CYAN_G}Thank-You Mail{RESET} has\n" "arrived from your friend for your rescue\n" "mission."); @@ -102,17 +102,17 @@ ALIGNED(4) const u8 gUnknown_80DF544[]= _( ALIGNED(4) const u8 gUnknown_80DF594[]= _( " There. I've sent your\n" - "{COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}.\n" + "{COLOR CYAN_G}Thank-You Mail{RESET}.\n" "I need to save your adventure."); ALIGNED(4) const u8 gUnknown_80DF5E4[]= _( " Please connect the GBA\n" - "systems with a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}.\n" + "systems with a {COLOR CYAN_G}Game Link cable{RESET}.\n" "Is your friend also ready?"); ALIGNED(4) const u8 gUnknown_80DF63C[]= _( " There, all done.\n" - "{COLOR_1 YELLOW_5}%s{END_COLOR_TEXT_1}, I hope your friend\n" + "{COLOR YELLOW_N}%s{RESET}, I hope your friend\n" "appreciates your sense of gratitude."); ALIGNED(4) const u8 gUnknown_80DF694[]= _( @@ -134,12 +134,12 @@ ALIGNED(4) const u8 gUnknown_80DF73C[]= ALIGNED(4) const u8 gUnknown_80DF77C[]= _( " Would you like to choose\n" - "a {COLOR_1 LIGHT_BLUE}reward item{END_COLOR_TEXT_1} from storage and\n" + "a {COLOR CYAN_G}reward item{RESET} from storage and\n" "send it with your mail?"); ALIGNED(4) const u8 gUnknown_80DF7D4[]= _( " ...Oh?\n" - "You've already attached a {COLOR_1 LIGHT_BLUE}reward item{END_COLOR_TEXT_1}\n" + "You've already attached a {COLOR CYAN_G}reward item{RESET}\n" "to this mail.{EXTRA_MSG}" " I'm sorry, but once an item\n" "has been attached to mail, it can't be\n" @@ -151,11 +151,11 @@ ALIGNED(4) const u8 gUnknown_80DF870[]= ALIGNED(4) const u8 gUnknown_80DF8B4[]= _( " ...Oh?\n" - "You don't seem to have a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}."); + "You don't seem to have a {COLOR CYAN_G}Thank-You Mail{RESET}."); ALIGNED(4) const u8 gUnknown_80DF8EC[]= _( " Hello.\n" - "I handle {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}.\n" + "I handle {COLOR CYAN_G}Thank-You Mail{RESET}.\n" "How may I serve you?"); ALIGNED(4) const u8 gUnknown_80DF928[]= @@ -168,8 +168,8 @@ ALIGNED(4) const u8 gUnknown_80DF94C[] = ALIGNED(4) const u8 gUnknown_80DF96C[] = _( " How would you like to send\n" - "your {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}?"); + "your {COLOR CYAN_G}Thank-You Mail{RESET}?"); ALIGNED(4) const u8 gUnknown_80DF9A4[]= _( " How would you like to\n" - "receive your friend's {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}?"); \ No newline at end of file + "receive your friend's {COLOR CYAN_G}Thank-You Mail{RESET}?"); \ No newline at end of file diff --git a/src/data/trade_items_menu.h b/src/data/trade_items_menu.h index d6adc969d..e38cf8331 100644 --- a/src/data/trade_items_menu.h +++ b/src/data/trade_items_menu.h @@ -62,7 +62,7 @@ static const MenuItem sUnknown_80E618C[3] = { ALIGNED(4) static const u8 sWhatDoPrompt[] = "What would you like to do? "; ALIGNED(4) static const u8 sPleaseChooseItem[] = "Please choose the item to be sent."; ALIGNED(4) static const u8 sFmtWillBeSentPrompt[] = _( - "{COLOR_1 LIGHT_BLUE}{ARG_VALUE_0}{END_COLOR_TEXT_1} {COLOR_1 GREEN_2}{ARG_MOVE_ITEM_0}(s){END_COLOR_TEXT_1}\n" + "{COLOR CYAN_G}{VALUE_0}{RESET} {COLOR GREEN_I}{MOVE_ITEM_0}(s){RESET}\n" "will be sent.\n" "Is that OK?"); @@ -83,10 +83,10 @@ ALIGNED(4) static const u8 sInCommunication[] = _( ALIGNED(4) static const u8 sFmtYouReceived[] = _( "You received\n" - "{COLOR_1 LIGHT_BLUE}{ARG_VALUE_0}{END_COLOR_TEXT_1} {COLOR_1 GREEN_2}{ARG_MOVE_ITEM_0}(s){END_COLOR_TEXT_1}.\n" + "{COLOR CYAN_G}{VALUE_0}{RESET} {COLOR GREEN_I}{MOVE_ITEM_0}(s){RESET}.\n" "Your adventure will be saved."); -ALIGNED(4) static const u8 sFmtYouSent[] = _("You sent {COLOR_1 LIGHT_BLUE}{ARG_VALUE_0}{END_COLOR_TEXT_1} {COLOR_1 GREEN_2}{ARG_MOVE_ITEM_0}(s){END_COLOR_TEXT_1}."); +ALIGNED(4) static const u8 sFmtYouSent[] = _("You sent {COLOR CYAN_G}{VALUE_0}{RESET} {COLOR GREEN_I}{MOVE_ITEM_0}(s){RESET}."); // Trade Items Menu Link Error Messages ALIGNED(4) static const u8 sCommunicationError[] = "There was a communication error."; diff --git a/src/data/wigglytuff_shop1.h b/src/data/wigglytuff_shop1.h index 7a1f6663a..bfce03b7e 100644 --- a/src/data/wigglytuff_shop1.h +++ b/src/data/wigglytuff_shop1.h @@ -17,5 +17,5 @@ static const UnkTextStruct2 sUnknown_80DC47C = { }; ALIGNED(4) static const u8 sFriendAreas[] = _("Friend Areas"); -ALIGNED(4) static const u8 sFmtRedString[] = _("{COLOR_1 RED}%s{END_COLOR_TEXT_1}"); -ALIGNED(4) static const u8 sFmtGreenString[] = _("{COLOR_1 GREEN}%s{END_COLOR_TEXT_1}"); \ No newline at end of file +ALIGNED(4) static const u8 sFmtRedString[] = _("{COLOR RED}%s{RESET}"); +ALIGNED(4) static const u8 sFmtGreenString[] = _("{COLOR GREEN}%s{RESET}"); \ No newline at end of file diff --git a/src/data/wigglytuff_shop2.h b/src/data/wigglytuff_shop2.h index 1064f4ccc..70e999735 100644 --- a/src/data/wigglytuff_shop2.h +++ b/src/data/wigglytuff_shop2.h @@ -17,6 +17,6 @@ static const UnkTextStruct2 sUnknown_80DC4D8 = { &sUnknown_80DC4D4 }; -ALIGNED(4) static const u8 sUnknown_80DC4F0[] = _("Inhabitants (Friends: {COLOR_2 CYAN}Light blue{END_COLOR_TEXT_2})"); +ALIGNED(4) static const u8 sUnknown_80DC4F0[] = _("Inhabitants (Friends: {color CYAN}Light blue{reset})"); ALIGNED(4) static const u8 sInhabitants[] = _("Inhabitants"); -ALIGNED(4) static const u8 sFmtCyanString[] = _("{COLOR_2 CYAN}%s{END_COLOR_TEXT_2}"); +ALIGNED(4) static const u8 sFmtCyanString[] = _("{color CYAN}%s{reset}"); diff --git a/src/data/wonder_mail_1.h b/src/data/wonder_mail_1.h index ef6da20e7..fd1d3aed6 100644 --- a/src/data/wonder_mail_1.h +++ b/src/data/wonder_mail_1.h @@ -103,7 +103,7 @@ ALIGNED(4) const char gUnknown_80DDBA8[] = _( ALIGNED(4) const char gUnknown_80DDBFC[] = _( " All righty!\n" - "Here's your {COLOR_1 LIGHT_BLUE}A-OK Mail password{END_COLOR_TEXT_1}."); + "Here's your {COLOR CYAN_G}A-OK Mail password{RESET}."); ALIGNED(4) const char gUnknown_80DDC30[] = _( " Okeydoke! That's all done.\n" @@ -111,7 +111,7 @@ ALIGNED(4) const char gUnknown_80DDC30[] = _( ALIGNED(4) const char gUnknown_80DDC70[] = _( " Okeydoke! I sent off your\n" - "{COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" + "{COLOR CYAN_G}A-OK Mail{RESET}.{EXTRA_MSG}" " Let me save your adventure."); ALIGNED(4) const char gUnknown_80DDCBC[] = _( @@ -133,16 +133,16 @@ ALIGNED(4) const char gUnknown_80DDDBC[] = _( ALIGNED(4) const char gUnknown_80DDDD8[] = _( " All righty. I need you to\n" - "pick the {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} you want to send."); + "pick the {COLOR CYAN_G}A-OK Mail{RESET} you want to send."); ALIGNED(4) const char gUnknown_80DDE20[] = _( " ...Uh, no?\n" - "I don't see any {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} here."); + "I don't see any {COLOR CYAN_G}A-OK Mail{RESET} here."); ALIGNED(4) const char gUnknown_80DDE58[] = _( " Did you know? If you use\n" - "a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}, you can send\n" - "a {COLOR_1 LIGHT_BLUE}helper Pokémon{END_COLOR_TEXT_1} to your friend."); + "a {COLOR CYAN_G}Game Link cable{RESET}, you can send\n" + "a {COLOR CYAN_G}helper Pokémon{RESET} to your friend."); ALIGNED(4) const char gUnknown_80DDEC0[] = _( " Don't you worry. Sending\n" @@ -159,7 +159,7 @@ ALIGNED(4) const char gUnknown_80DDF2C[] = _( ALIGNED(4) const char gUnknown_80DDFB8[] = _( " All righty! Connect up\n" - "the {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}, if you'd please.\n" + "the {COLOR CYAN_G}Game Link cable{RESET}, if you'd please.\n" "Your friend ready, too?"); ALIGNED(4) const char gUnknown_80DE01C[] = _( @@ -169,7 +169,7 @@ ALIGNED(4) const char gUnknown_80DE01C[] = _( ALIGNED(4) const char gUnknown_80DE06C[] = _( " Okeydoke!\n" - "I received your friend's {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" + "I received your friend's {COLOR CYAN_G}SOS Mail{RESET}.{EXTRA_MSG}" " Let me save your adventure."); ALIGNED(4) const char gUnknown_80DE0C0[] = _( @@ -179,22 +179,22 @@ ALIGNED(4) const char gUnknown_80DE0C0[] = _( ALIGNED(4) const char gUnknown_80DE124[] = _( " OK, I need you to enter\n" - "the {COLOR_1 LIGHT_BLUE}SOS Mail password{END_COLOR_TEXT_1} that your\n" + "the {COLOR CYAN_G}SOS Mail password{RESET} that your\n" "friend gave you."); ALIGNED(4) const char gUnknown_80DE178[] = _( " How do you want to receive\n" - "your friend's {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}?"); + "your friend's {COLOR CYAN_G}SOS Mail{RESET}?"); ALIGNED(4) const char gUnknown_80DE1B4[] = _( " How do you want to send\n" - "your {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}?"); + "your {COLOR CYAN_G}A-OK Mail{RESET}?"); ALIGNED(4) const char gUnknown_80DE1E4[] = _( " ...Uh, no?\n" - "You don't have an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" + "You don't have an {COLOR CYAN_G}SOS Mail{RESET}.{EXTRA_MSG}" " You'll need to arrange\n" - "to receive your friend's {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1} first.\n" + "to receive your friend's {COLOR CYAN_G}SOS Mail{RESET} first.\n" "That's what you need to do."); ALIGNED(4) const char gUnknown_80DE280[] = _( @@ -204,7 +204,7 @@ ALIGNED(4) const char gUnknown_80DE280[] = _( ALIGNED(4) const char gUnknown_80DE2B0[] = _( " ...Uh, no?\n" "Doesn't look like you can go to the dungeon\n" - "named in this {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" + "named in this {COLOR CYAN_G}SOS Mail{RESET}.{EXTRA_MSG}" " Come see me about doing\n" "this rescue when you can actually go\n" "to that dungeon, all right?"); @@ -219,7 +219,7 @@ ALIGNED(4) const char gUnknown_80DE368[] = _( ALIGNED(4) const char gUnknown_80DE430[] = _( " Okeydoke.\n" - "I'll need you to choose the {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}\n" + "I'll need you to choose the {COLOR CYAN_G}SOS Mail{RESET}\n" "for you to go on a rescue mission."); ALIGNED(4) const char gUnknown_80DE48C[] = _( @@ -228,25 +228,25 @@ ALIGNED(4) const char gUnknown_80DE48C[] = _( ALIGNED(4) const char gUnknown_80DE4B8[] = _( " All righty. Choose\n" - "the {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1} you don't need."); + "the {COLOR CYAN_G}SOS Mail{RESET} you don't need."); ALIGNED(4) const char gUnknown_80DE4F0[] = _( " ...Uh, no?\n" - "You don't have any {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}."); + "You don't have any {COLOR CYAN_G}SOS Mail{RESET}."); ALIGNED(4) const char gUnknown_80DE524[] = _( - " If you want a reward, {COLOR_1 RED}don't\n" - "delete an A-OK Mail{END_COLOR_TEXT_1} before getting a\n" - "{COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} back for it.{EXTRA_MSG}" - " {COLOR_1 RED}Be careful{END_COLOR_TEXT_1} if you're going\n" - "to delete any {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.{EXTRA_MSG}" + " If you want a reward, {COLOR RED}don't\n" + "delete an A-OK Mail{RESET} before getting a\n" + "{COLOR CYAN_G}Thank-You Mail{RESET} back for it.{EXTRA_MSG}" + " {COLOR RED}Be careful{RESET} if you're going\n" + "to delete any {COLOR CYAN_G}A-OK Mail{RESET}.{EXTRA_MSG}" " Okeydoke.\n" - "Choose an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}\n" + "Choose an {COLOR CYAN_G}A-OK Mail{RESET}\n" "you don't need anymore."); ALIGNED(4) const char gUnknown_80DE614[] = _( " ...Uh, no?\n" - "You don't have any {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}."); + "You don't have any {COLOR CYAN_G}A-OK Mail{RESET}."); ALIGNED(4) const char gUnknown_80DE648[] = _( " Uh, OK.\n" @@ -259,8 +259,8 @@ ALIGNED(4) const char gUnknown_80DE694[] = _( "mail on you!"); ALIGNED(4) const char gUnknown_80DE6D4[] = _( - " So, delete all your {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1},\n" - "{COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}, and your {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}?\n" + " So, delete all your {COLOR CYAN_G}SOS Mail{RESET},\n" + "{COLOR CYAN_G}A-OK Mail{RESET}, and your {COLOR CYAN_G}Thank-You Mail{RESET}?\n" "You're absolutely, positively sure?"); ALIGNED(4) const char gUnknown_80DE754[] = _( @@ -281,7 +281,7 @@ ALIGNED(4) const char gUnknown_80DE808[] = _( ALIGNED(4) const char gUnknown_80DE830[] = _( " Okeydoke.\n" - "I'll delete {COLOR_1 LIGHT_BLUE}every piece of mail{END_COLOR_TEXT_1}."); + "I'll delete {COLOR CYAN_G}every piece of mail{RESET}."); ALIGNED(4) const char gUnknown_80DE864[] = _( " Okeydoke.\n" @@ -290,7 +290,7 @@ ALIGNED(4) const char gUnknown_80DE864[] = _( ALIGNED(4) const char gUnknown_80DE8B4[] = _( " Well, hello, there!\n" - "This is the {COLOR_1 LIGHT_BLUE}Friend Rescue{END_COLOR_TEXT_1} counter.\n" + "This is the {COLOR CYAN_G}Friend Rescue{RESET} counter.\n" "What can I help you with today?"); ALIGNED(4) const char gUnknown_80DE918[] = _( @@ -348,8 +348,8 @@ ALIGNED(4) const char gWonderMailPasswordIncorrectText[] = _( ALIGNED(4) const char gWonderMailSOSPasswordIncorrectText[] = _( " ...Uh, no? This password's\n" - "not for any {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}."); + "not for any {COLOR CYAN_G}SOS Mail{RESET}."); ALIGNED(4) const char gWonderMailAOKMailReceivedText[] = _( - ": I received the {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}.\n" + ": I received the {COLOR CYAN_G}SOS Mail{RESET}.\n" "Your adventure will be saved."); \ No newline at end of file diff --git a/src/data/wonder_mail_802D098.h b/src/data/wonder_mail_802D098.h index f7ccd9f76..7c0839f67 100644 --- a/src/data/wonder_mail_802D098.h +++ b/src/data/wonder_mail_802D098.h @@ -45,19 +45,19 @@ UNUSED static const UnkTextStruct2 sUnknown_80DFE34 = { ALIGNED(4) static const u8 sReplaceOldMailPrompt[] = _( "Are you sure you want to replace the\n" - "old {COLOR_1 LIGHT_BLUE}Wonder Mail{END_COLOR_TEXT_1} with the new one?"); + "old {COLOR CYAN_G}Wonder Mail{RESET} with the new one?"); ALIGNED(4) static const u8 sMailAlreadyReceived[] = _( - "This {COLOR_1 LIGHT_BLUE}Wonder Mail{END_COLOR_TEXT_1} has already been\n" + "This {COLOR CYAN_G}Wonder Mail{RESET} has already been\n" "received."); ALIGNED(4) static const u8 sMailAlreadyReceivedMayNotReceiveAgain[] = _( - "This {COLOR_1 LIGHT_BLUE}Wonder Mail{END_COLOR_TEXT_1} has already been\n" + "This {COLOR CYAN_G}Wonder Mail{RESET} has already been\n" "received.\n" "You may not receive the same one again."); ALIGNED(4) static const u8 sOnlyOneMailCanBeHeldPleaseCompleteFirst[] = _( - "Only {COLOR_1 LIGHT_BLUE}one piece{END_COLOR_TEXT_1} of {COLOR_1 LIGHT_BLUE}Wonder Mail{END_COLOR_TEXT_1} can be held.\n" + "Only {COLOR CYAN_G}one piece{RESET} of {COLOR CYAN_G}Wonder Mail{RESET} can be held.\n" "Please receive it after completing any\n" "rescue mission in progress."); @@ -71,15 +71,15 @@ ALIGNED(4) static const u8 sTeamQuicksavedCannotDelete[] = _( "a dungeon with a mission in progress.\n" "Mail cannot be deleted now."); -ALIGNED(4) static const u8 sReceivedWonderMail[] = _("Received the {COLOR_1 LIGHT_BLUE}Wonder Mail{END_COLOR_TEXT_1}!"); +ALIGNED(4) static const u8 sReceivedWonderMail[] = _("Received the {COLOR CYAN_G}Wonder Mail{RESET}!"); ALIGNED(4) static const u8 sOnlyOneMailCanBeHeldSoReplacePrompt[] = _( - "Only {COLOR_1 LIGHT_BLUE}one piece{END_COLOR_TEXT_1} of {COLOR_1 LIGHT_BLUE}Wonder Mail{END_COLOR_TEXT_1} can be held.\n" - "Is it OK to replace the old {COLOR_1 LIGHT_BLUE}Wonder Mail{END_COLOR_TEXT_1}\n" + "Only {COLOR CYAN_G}one piece{RESET} of {COLOR CYAN_G}Wonder Mail{RESET} can be held.\n" + "Is it OK to replace the old {COLOR CYAN_G}Wonder Mail{RESET}\n" "with the new one?"); ALIGNED(4) static const u8 sJobListFullPleaseDelete[] = _( - "Your {COLOR_1 LIGHT_BLUE}Job List{END_COLOR_TEXT_1} is full.\n" + "Your {COLOR CYAN_G}Job List{RESET} is full.\n" "Please select and delete unwanted mail."); ALIGNED(4) static const u8 sNewMail[] = _("New Mail"); diff --git a/src/data/wonder_mail_main_menu.h b/src/data/wonder_mail_main_menu.h index 0e017a948..18a98b928 100644 --- a/src/data/wonder_mail_main_menu.h +++ b/src/data/wonder_mail_main_menu.h @@ -51,21 +51,21 @@ ALIGNED(4) const char gUnknown_80E7A48[] = _("There is no response from your fr ALIGNED(4) const char gUnknown_80E7AC4[] = "What would you like to do?"; ALIGNED(4) const char gUnknown_80E7AE0[] = _("How would you like to send your\n" - "{COLOR_1 LIGHT_BLUE}Wonder Mail{END_COLOR_TEXT_1}?"); + "{COLOR CYAN_G}Wonder Mail{RESET}?"); ALIGNED(4) const char gUnknown_80E7B14[] = _("How would you like to receive the\n" - "{COLOR_1 LIGHT_BLUE}Wonder Mail{END_COLOR_TEXT_1}?"); + "{COLOR CYAN_G}Wonder Mail{RESET}?"); ALIGNED(4) const char gUnknown_80E7B48[] = "Your adventure will be saved."; -ALIGNED(4) const char gUnknown_80E7B68[] = _("Your {COLOR_1 LIGHT_BLUE}Wonder Mail{END_COLOR_TEXT_1} was sent."); +ALIGNED(4) const char gUnknown_80E7B68[] = _("Your {COLOR CYAN_G}Wonder Mail{RESET} was sent."); -ALIGNED(4) const char gUnknown_80E7B88[] = _("The received {COLOR_1 LIGHT_BLUE}Wonder Mail{END_COLOR_TEXT_1} was\n" - "added to the {COLOR_1 LIGHT_BLUE}Job List{END_COLOR_TEXT_1}."); +ALIGNED(4) const char gUnknown_80E7B88[] = _("The received {COLOR CYAN_G}Wonder Mail{RESET} was\n" + "added to the {COLOR CYAN_G}Job List{RESET}."); -ALIGNED(4) const char gUnknown_80E7BC8[] = _("The {COLOR_1 LIGHT_BLUE}Wonder Mail{END_COLOR_TEXT_1} was refused."); +ALIGNED(4) const char gUnknown_80E7BC8[] = _("The {COLOR CYAN_G}Wonder Mail{RESET} was refused."); -ALIGNED(4) const char gUnknown_80E7BEC[] = _("Connect a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1}.\n" +ALIGNED(4) const char gUnknown_80E7BEC[] = _("Connect a {COLOR CYAN_G}Game Link cable{RESET}.\n" "When you and your friend are ready,\n" "you may communicate. "); @@ -74,7 +74,7 @@ ALIGNED(4) const char gUnknown_80E7C48[] = _("{CENTER_ALIGN}In communication...\ "{CENTER_ALIGN}To cancel, press {B_BUTTON}."); ALIGNED(4) const char gUnknown_80E7C98[] = _("Please enter the\n" - "{COLOR_1 LIGHT_BLUE}Wonder Mail password{END_COLOR_TEXT_1}."); + "{COLOR CYAN_G}Wonder Mail password{RESET}."); ALIGNED(4) const char gUnknown_80E7CC4[] = "This password is incorrect.\n" "Would you like to enter it again?"; diff --git a/src/dungeon.c b/src/dungeon.c index 78b837bf8..2a9b81f85 100644 --- a/src/dungeon.c +++ b/src/dungeon.c @@ -106,7 +106,7 @@ void sub_80901D8(DungeonLocation *param_1,DungeonLocation *param_2) void PrintYellowDungeonNametoBuffer(u8 *buffer, DungeonLocation *dungeonLocation) { - sprintfStatic(buffer, gUnknown_8108F10, gDungeonNames[dungeonLocation->id].name1); // {COLOR_2 YELLOW_4}%s{END_COLOR_TEXT_2} (normal floor print (no B) + sprintfStatic(buffer, gUnknown_8108F10, gDungeonNames[dungeonLocation->id].name1); // {color YELLOW_D}%s{reset} (normal floor print (no B) } void PrintDungeonLocationtoBuffer(u8 *buffer, DungeonLocation *dungeonLocation) diff --git a/src/friend_rescue.c b/src/friend_rescue.c index 5ac108e8d..29a88787d 100644 --- a/src/friend_rescue.c +++ b/src/friend_rescue.c @@ -42,53 +42,53 @@ const u8 gUnknown_80E25F4[] = "What would you like to do?"; ALIGNED(4) const u8 gUnknown_80E2610[] = _( "How would you like to send your\n" - "{COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}?"); + "{COLOR CYAN_G}SOS Mail{RESET}?"); ALIGNED(4) const u8 gUnknown_80E2640[] = _( "How would you like to receive your\n" - "friend's {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}?"); + "friend's {COLOR CYAN_G}SOS Mail{RESET}?"); ALIGNED(4) const u8 gUnknown_80E2680[] = _( "How would you like to send your\n" - "{COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}?"); + "{COLOR CYAN_G}A-OK Mail{RESET}?"); ALIGNED(4) const u8 gUnknown_80E26B0[] = _( "How would you like to receive your\n" - "friend's {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}?"); + "friend's {COLOR CYAN_G}A-OK Mail{RESET}?"); ALIGNED(4) const u8 gUnknown_80E26F0[] = _( "How would you like to send your\n" - "{COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}?"); + "{COLOR CYAN_G}Thank-You Mail{RESET}?"); ALIGNED(4) const u8 gUnknown_80E2728[] = _( "How would you like to receive your\n" - "friend's {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}?"); + "friend's {COLOR CYAN_G}Thank-You Mail{RESET}?"); ALIGNED(4) const u8 gUnknown_80E276C[] = _( "The GBA Game Pak does not have\n" - "an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} on it."); + "an {COLOR CYAN_G}A-OK Mail{RESET} on it."); ALIGNED(4) const u8 gUnknown_80E27A4[] = _( - "If you accept an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}, the\n" - "{COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} you received before\n" + "If you accept an {COLOR CYAN_G}A-OK Mail{RESET}, the\n" + "{COLOR CYAN_G}Thank-You Mail{RESET} you received before\n" "will be overwritten. Is that OK?"); ALIGNED(4) const u8 gUnknown_80E2814[] = _( - "Please enter the {COLOR_1 LIGHT_BLUE}A-OK Mail password{END_COLOR_TEXT_1}."); + "Please enter the {COLOR CYAN_G}A-OK Mail password{RESET}."); ALIGNED(4) const u8 gUnknown_80E2840[] = _( - "The {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} will be received and\n" + "The {COLOR CYAN_G}A-OK Mail{RESET} will be received and\n" "processed."); ALIGNED(4) const u8 gUnknown_80E2874[] = _( - "A {COLOR_1 LIGHT_BLUE}helper Pokémon{END_COLOR_TEXT_1} also arrived!"); + "A {COLOR CYAN_G}helper Pokémon{RESET} also arrived!"); ALIGNED(4) const u8 gUnknown_80E2898[] = _( - "An {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} was received.\n" + "An {COLOR CYAN_G}A-OK Mail{RESET} was received.\n" "Your adventure will be saved."); ALIGNED(4) const u8 gUnknown_80E28D8[] = _( - "Resume your game using {COLOR_1 LIGHT_BLUE}Revive Team{END_COLOR_TEXT_1}."); + "Resume your game using {COLOR CYAN_G}Revive Team{RESET}."); ALIGNED(4) const u8 gUnknown_80E2904[] = _( "Your friend's Mailbox is full.\n" @@ -96,15 +96,15 @@ ALIGNED(4) const u8 gUnknown_80E2904[] = _( "The recipient must delete old mail."); ALIGNED(4) const u8 gUnknown_80E296C[] = _( - "Please choose the {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1} you want\n" + "Please choose the {COLOR CYAN_G}SOS Mail{RESET} you want\n" "to send."); ALIGNED(4) const u8 gUnknown_80E29A0[] = _( - "This {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1} will be sent.\n" + "This {COLOR CYAN_G}SOS Mail{RESET} will be sent.\n" "Is that OK?"); ALIGNED(4) const u8 gUnknown_80E29D0[] = _( - "Your {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1} was sent.\n" + "Your {COLOR CYAN_G}SOS Mail{RESET} was sent.\n" "Your adventure will be saved."); ALIGNED(4) const u8 gUnknown_80E2A0C[] = "Save completed."; @@ -114,27 +114,27 @@ ALIGNED(4) const u8 gUnknown_80E2A1C[] = _( "coming to your rescue."); ALIGNED(4) const u8 gUnknown_80E2A5C[] = _( - "Here is the {COLOR_1 LIGHT_BLUE}SOS Mail password{END_COLOR_TEXT_1}."); + "Here is the {COLOR CYAN_G}SOS Mail password{RESET}."); ALIGNED(4) const u8 gUnknown_80E2A80[] = _( - "Here is the {COLOR_1 LIGHT_BLUE}A-OK Mail password{END_COLOR_TEXT_1}."); + "Here is the {COLOR CYAN_G}A-OK Mail password{RESET}."); ALIGNED(4) const u8 gUnknown_80E2AA8[] = _( "Please give this password to the friend\n" "that you rescued."); ALIGNED(4) const u8 gUnknown_80E2AE4[] = _( -"Please connect a {COLOR_1 LIGHT_BLUE}Link Cable{END_COLOR_TEXT_1}.\n" +"Please connect a {COLOR CYAN_G}Link Cable{RESET}.\n" "When your friend's side is ready, you may\n" "communicate and exchange data."); ALIGNED(4) const u8 gUnknown_80E2B54[] = _( -"Your {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} was sent.\n" +"Your {COLOR CYAN_G}A-OK Mail{RESET} was sent.\n" "Your adventure will be saved."); ALIGNED(4) const u8 gUnknown_80E2B90[] = _( -"Using a {COLOR_1 LIGHT_BLUE}Game Link cable{END_COLOR_TEXT_1},\n" -"you can send a {COLOR_1 LIGHT_BLUE}helper Pokémon{END_COLOR_TEXT_1} to\n" +"Using a {COLOR CYAN_G}Game Link cable{RESET},\n" +"you can send a {COLOR CYAN_G}helper Pokémon{RESET} to\n" "a friend."); extern u8 gUnknown_80E2BE0[]; diff --git a/src/iq_skill_info_menu.c b/src/iq_skill_info_menu.c index 8724f3c58..d3aa47af9 100644 --- a/src/iq_skill_info_menu.c +++ b/src/iq_skill_info_menu.c @@ -88,7 +88,7 @@ static void sub_801C6E4(void) sub_80073B8(sIQSkillInfoMenu->unk24); skillName = GetIQSkillName(sIQSkillInfoMenu->chosenIQSkill); strcpy(gFormatItems, skillName); - PrintFormatStringOnWindow(16, 0, sFmtMoveItem0, 0, 0); // {ARG_MOVE_ITEM_0} + PrintFormatStringOnWindow(16, 0, sFmtMoveItem0, 0, 0); // {MOVE_ITEM_0} PrintStringOnWindow(8, 16, GetIQSkillDescription(sIQSkillInfoMenu->chosenIQSkill), sIQSkillInfoMenu->unk24, 0); sub_80073E0(sIQSkillInfoMenu->unk24); sIQSkillInfoMenu->unkC = sub_8097DF0(GetIQSkillDescription(sIQSkillInfoMenu->chosenIQSkill), sIQSkillInfoMenu->unk10); @@ -99,7 +99,7 @@ static void sub_801C6E4(void) sub_80073B8(sIQSkillInfoMenu->unk24); preload = sIQSkillInfoMenu->unk10[sIQSkillInfoMenu->unk8]; strcpy(gAvailablePokemonNames, preload->pokeName); - PrintFormatStringOnWindow(16, 0, sFmtPkmn0, sIQSkillInfoMenu->unk24, 0); // {ARG_POKEMON_0} + PrintFormatStringOnWindow(16, 0, sFmtPkmn0, sIQSkillInfoMenu->unk24, 0); // {POKEMON_0} PrintFormatStringOnWindow(4, 16, sIQSkillInfoMenu->unk10[sIQSkillInfoMenu->unk8]->unk4, sIQSkillInfoMenu->unk24, 0); sub_80073E0(sIQSkillInfoMenu->unk24); break; diff --git a/src/items.c b/src/items.c index 70160aa24..efcb563e0 100644 --- a/src/items.c +++ b/src/items.c @@ -23,7 +23,7 @@ extern u16 gGummiStatBoostLUT[]; extern u8 gFormatItems[]; extern u32 gFormatData_202DE30; extern u8* gPtrTypeText; // ptr to "Type\0" -extern u8* gPtrPPD0Text; // ptr to "PP {ARG_VALUE_0} \0" +extern u8* gPtrPPD0Text; // ptr to "PP {VALUE_0} \0" extern u32 gUnknown_81097E8[4]; // some sort of lookup table (16, 18, 20, 22) extern u32 gUnknown_81097F8[4]; // some sort of lookup table (17, 19, 21, 23) extern const char *gUnknown_810AF50[]; diff --git a/src/menu_input.c b/src/menu_input.c index 1219dde1a..397d9b541 100644 --- a/src/menu_input.c +++ b/src/menu_input.c @@ -48,7 +48,7 @@ const UnkTextStruct2 gUnknown_80D47C8[4] = { NULL, }; -ALIGNED(4) const u8 gUnknown_80D4828[] = _("{COLOR_1}%c%s"); +ALIGNED(4) const u8 gUnknown_80D4828[] = _("{COLOR}%c%s"); const s32 gUnknown_80D4830[9] = { 1, diff --git a/src/mission_reward.c b/src/mission_reward.c index c357018bd..24d8c7810 100644 --- a/src/mission_reward.c +++ b/src/mission_reward.c @@ -67,53 +67,53 @@ const UnkTextStruct2 gUnknown_80E041C = { ALIGNED(4) const u8 gUnknown_80E0434[] = _( " Here's your reward!\n" - "{COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}!"); + "{COLOR CYAN}{VALUE_0}{RESET} {POKE}!"); ALIGNED(4) const u8 gUnknown_80E045C[] = _( - "{CENTER_ALIGN}{COLOR_1 YELLOW_5}{ARG_POKEMON_0}{END_COLOR_TEXT_1} received\n" - "{CENTER_ALIGN}{COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}."); + "{CENTER_ALIGN}{COLOR YELLOW_N}{POKEMON_0}{RESET} received\n" + "{CENTER_ALIGN}{COLOR CYAN}{VALUE_0}{RESET} {POKE}."); ALIGNED(4) const u8 gUnknown_80E0484[] = _( - "{CENTER_ALIGN}{COLOR_1 YELLOW_5}{ARG_POKEMON_0}{END_COLOR_TEXT_1}'s team received\n" - "{CENTER_ALIGN}{COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} {POKE}."); + "{CENTER_ALIGN}{COLOR YELLOW_N}{POKEMON_0}{RESET}'s team received\n" + "{CENTER_ALIGN}{COLOR CYAN}{VALUE_0}{RESET} {POKE}."); ALIGNED(4) const u8 gUnknown_80E04B4[]= _( " As your reward, you can\n" "now go to the Friend Area\n" - "{COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}!"); + "{COLOR GREEN}{FRIEND_AREA}{RESET}!"); ALIGNED(4) const u8 gUnknown_80E04F4[] = _( "{CENTER_ALIGN}...Oh, wait, sorry.{EXTRA_MSG}" "{CENTER_ALIGN}You already have the \n" - "{CENTER_ALIGN}{COLOR_1 GREEN}{ARG_FRIEND_AREA} Friend Area{END_COLOR_TEXT_1}.{EXTRA_MSG}" + "{CENTER_ALIGN}{COLOR GREEN}{FRIEND_AREA} Friend Area{RESET}.{EXTRA_MSG}" "{CENTER_ALIGN}I'm sorry that my reward is\n" "{CENTER_ALIGN}something you already have.{EXTRA_MSG}" - "{CENTER_ALIGN}In its place, {COLOR_1 YELLOW_5}{ARG_POKEMON_0}{END_COLOR_TEXT_1},\n" - "{CENTER_ALIGN}you can have {COLOR_1 LIGHT_BLUE}1,000{END_COLOR_TEXT_1} {POKE}."); + "{CENTER_ALIGN}In its place, {COLOR YELLOW_N}{POKEMON_0}{RESET},\n" + "{CENTER_ALIGN}you can have {COLOR CYAN_G}1,000{RESET} {POKE}."); ALIGNED(4) const u8 gUnknown_80E05C0[] = _( - "{CENTER_ALIGN}{COLOR_1 YELLOW_5}{ARG_POKEMON_0}{END_COLOR_TEXT_1} gained access\n" + "{CENTER_ALIGN}{COLOR YELLOW_N}{POKEMON_0}{RESET} gained access\n" "{CENTER_ALIGN}to the Friend Area\n" - "{CENTER_ALIGN}{COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}."); + "{CENTER_ALIGN}{COLOR GREEN}{FRIEND_AREA}{RESET}."); ALIGNED(4) const u8 gUnknown_80E05FC[] = _( - "{CENTER_ALIGN}{COLOR_1 YELLOW_5}{ARG_POKEMON_0}{END_COLOR_TEXT_1}'s team gained access\n" + "{CENTER_ALIGN}{COLOR YELLOW_N}{POKEMON_0}{RESET}'s team gained access\n" "{CENTER_ALIGN}to the Friend Area\n" - "{CENTER_ALIGN}{COLOR_1 GREEN}{ARG_FRIEND_AREA}{END_COLOR_TEXT_1}."); + "{CENTER_ALIGN}{COLOR GREEN}{FRIEND_AREA}{RESET}."); ALIGNED(4) const u8 gUnknown_80E0640[] = _( " Here's your reward!\n" - "The promised {COLOR_1 GREEN}{ARG_MOVE_ITEM_1}{END_COLOR_TEXT_1}!"); + "The promised {COLOR GREEN}{MOVE_ITEM_1}{RESET}!"); ALIGNED(4) const u8 gUnknown_80E0670[] = _( - "{CENTER_ALIGN}Rescue Team {COLOR_1 LIGHT_BLUE}$t{END_COLOR_TEXT_1}\n" - "{CENTER_ALIGN}gained {COLOR_1 CYAN}{ARG_VALUE_0}{END_COLOR_TEXT_1} rescue points."); + "{CENTER_ALIGN}Rescue Team {COLOR CYAN_G}$t{RESET}\n" + "{CENTER_ALIGN}gained {COLOR CYAN}{VALUE_0}{RESET} rescue points."); ALIGNED(4) const u8 gUnknown_80E06A8[] = _( "{CENTER_ALIGN}Congratulations!{EXTRA_MSG}" - "{CENTER_ALIGN}{COLOR_1 LIGHT_BLUE}$t{END_COLOR_TEXT_1} went up in rank\n" - "{CENTER_ALIGN}from the {ARG_POKEMON_2}\n" - "{CENTER_ALIGN}to the {ARG_POKEMON_3}!"); + "{CENTER_ALIGN}{COLOR CYAN_G}$t{RESET} went up in rank\n" + "{CENTER_ALIGN}from the {POKEMON_2}\n" + "{CENTER_ALIGN}to the {POKEMON_3}!"); void SetRewardSceneState(u32); diff --git a/src/move_actions.c b/src/move_actions.c index 311e039c8..8f5bb5406 100644 --- a/src/move_actions.c +++ b/src/move_actions.c @@ -486,7 +486,7 @@ bool32 EncoreMoveAction(Entity *pokemon, Entity *target, Move *move, s32 param_4 bool32 RageMoveAction(Entity *pokemon, Entity *target, Move *move, s32 param_4) { - // {ARG_POKEMON_0} is enraged + // {POKEMON_0} is enraged SetChargeStatusTarget(pokemon,target,STATUS_ENRAGED,move,gUnknown_80FAC88); return TRUE; } diff --git a/src/pokemon_mid.c b/src/pokemon_mid.c index 9ed0c8b31..cd67fe11a 100644 --- a/src/pokemon_mid.c +++ b/src/pokemon_mid.c @@ -331,13 +331,13 @@ void CopyMonsterNametoBuffer(u8 * buffer, s16 index) void CopyYellowMonsterNametoBuffer(u8 *buffer, s16 index) { s32 new_index = index; - sprintfStatic(buffer, gUnknown_8107600, gMonsterParameters[new_index].species); // {COLOR_2 YELLOW}%s{END_COLOR_TEXT_2} + sprintfStatic(buffer, gUnknown_8107600, gMonsterParameters[new_index].species); // {color YELLOW}%s{reset} } void CopyCyanMonsterNametoBuffer(u8 *buffer, s16 index) { s32 new_index = index; - sprintfStatic(buffer, gUnknown_8107608, gMonsterParameters[new_index].species); // {COLOR_2 CYAN}%s{END_COLOR_TEXT_2} + sprintfStatic(buffer, gUnknown_8107608, gMonsterParameters[new_index].species); // {color CYAN}%s{reset} } void sub_808D930(u8 *buffer, s32 index) @@ -371,7 +371,7 @@ void PrintColoredPokeNameToBuffer(u8 *buffer, PokemonStruct1 *pokemon, s32 color if (colorNum == COLOR_WHITE) { colorNum = COLOR_CYAN; } - sprintfStatic(buffer,gUnknown_810763C,colorNum,nameBuffer); // {COLOR_2}%c%s{END_COLOR_TEXT_2} + sprintfStatic(buffer,gUnknown_810763C,colorNum,nameBuffer); // {color}%c%s{reset} } void sub_808D9DC(u8 *buffer, PokemonStruct2 *param_2, s32 colorNum) @@ -382,7 +382,7 @@ void sub_808D9DC(u8 *buffer, PokemonStruct2 *param_2, s32 colorNum) if (colorNum == COLOR_WHITE) { colorNum = COLOR_YELLOW; } - sprintfStatic(buffer,gUnknown_810763C,colorNum,nameBuffer); // {COLOR_2}%c%s{END_COLOR_TEXT_2} + sprintfStatic(buffer,gUnknown_810763C,colorNum,nameBuffer); // {color}%c%s{reset} } void sub_808DA0C(u8 *buffer, PokemonStruct2 *param_2) diff --git a/src/rescue_password_menu.c b/src/rescue_password_menu.c index 28a97244a..aa47b06ad 100644 --- a/src/rescue_password_menu.c +++ b/src/rescue_password_menu.c @@ -58,7 +58,7 @@ const MenuItem gUnknown_80E7214[4] = { ALIGNED(4) const u8 CheckAgain_80E7234[] = _("{CENTER_ALIGN}Please check it again."); ALIGNED(4) const u8 IncorrectPassword_80E7250[] = _("{CENTER_ALIGN}Incorrect password!"); -ALIGNED(4) const u8 Error_80E7268[] = _("{CENTER_ALIGN}{COLOR_1 RED}Error!{END_COLOR_TEXT_1} "); +ALIGNED(4) const u8 Error_80E7268[] = _("{CENTER_ALIGN}{COLOR RED}Error!{RESET} "); const UnkTextStruct2 gUnknown_80E7278 = { 0x00, 0x00, 0x00, 0x00, @@ -82,7 +82,7 @@ const MenuItem gUnknown_80E7290[4] = { ALIGNED(4) const u8 DATA_80E72B0[] = " "; ALIGNED(4) const u8 PasswordAccept_80E72B4[] = _("{CENTER_ALIGN}The password has been accepted."); -ALIGNED(4) const u8 Success_80E72D8[] = _("{CENTER_ALIGN}{COLOR_1 LIGHT_BLUE}Success!{END_COLOR_TEXT_1} "); +ALIGNED(4) const u8 Success_80E72D8[] = _("{CENTER_ALIGN}{COLOR CYAN_G}Success!{RESET} "); const UnkTextStruct2 gUnknown_80E72EC = { 0x00, 0x00, 0x00, 0x00, @@ -102,7 +102,7 @@ const MenuItem gUnknown_80E7304[4] = { {NULL, 0xA}, }; -ALIGNED(4) const u8 NotSOSMail_80E7324[] = _("{CENTER_ALIGN}This is not an {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}."); +ALIGNED(4) const u8 NotSOSMail_80E7324[] = _("{CENTER_ALIGN}This is not an {COLOR CYAN_G}SOS Mail{RESET}."); const UnkTextStruct2 gUnknown_80E7344 = { 0x00, 0x00, 0x00, 0x00, @@ -122,7 +122,7 @@ const MenuItem gUnknown_80E735C[4] = { {NULL, 0xA}, }; -ALIGNED(4) const u8 ReceiveSOSMail_80E737C[] = _("{CENTER_ALIGN}This {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1} has been received already."); +ALIGNED(4) const u8 ReceiveSOSMail_80E737C[] = _("{CENTER_ALIGN}This {COLOR CYAN_G}SOS Mail{RESET} has been received already."); const UnkTextStruct2 gUnknown_80E73AC = { 0x00, 0x00, 0x00, 0x00, @@ -142,7 +142,7 @@ const MenuItem gUnknown_80E73C4[4] = { {NULL, 0xA}, }; -ALIGNED(4) const u8 sUnknown_80E73E4[] = _("{CENTER_ALIGN}This is not an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}."); +ALIGNED(4) const u8 sUnknown_80E73E4[] = _("{CENTER_ALIGN}This is not an {COLOR CYAN_G}A-OK Mail{RESET}."); const UnkTextStruct2 gUnknown_80E7408 = { 0x00, 0x00, 0x00, 0x00, @@ -162,7 +162,7 @@ const MenuItem gUnknown_80E7420[4] = { {NULL, 0xA}, }; -ALIGNED(4) const u8 sUnknown_80E7440[] = _("{CENTER_ALIGN}This {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1} cannot be used."); +ALIGNED(4) const u8 sUnknown_80E7440[] = _("{CENTER_ALIGN}This {COLOR CYAN_G}A-OK Mail{RESET} cannot be used."); const UnkTextStruct2 gUnknown_80E7468 = { 0x00, 0x00, 0x00, 0x00, @@ -181,7 +181,7 @@ const MenuItem gUnknown_80E7480[4] = { {CheckAgain_80E7234, 0xC}, {NULL, 0xA}, }; -ALIGNED(4) const u8 sUnknown_80E74A0[] = _("{CENTER_ALIGN}This is not a {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1}."); +ALIGNED(4) const u8 sUnknown_80E74A0[] = _("{CENTER_ALIGN}This is not a {COLOR CYAN_G}Thank-You Mail{RESET}."); const UnkTextStruct2 gUnknown_80E74C8 = { 0x00, 0x00, 0x00, 0x00, @@ -201,7 +201,7 @@ const MenuItem gUnknown_80E74E0[4] = { {NULL, 0xA}, }; -ALIGNED(4) const u8 sUnknown_80E7500[] = _("{CENTER_ALIGN}This {COLOR_1 LIGHT_BLUE}Thank-You Mail{END_COLOR_TEXT_1} cannot be used."); +ALIGNED(4) const u8 sUnknown_80E7500[] = _("{CENTER_ALIGN}This {COLOR CYAN_G}Thank-You Mail{RESET} cannot be used."); const UnkTextStruct2 gUnknown_80E752C = { 0x00, 0x00, 0x00, 0x00, @@ -220,7 +220,7 @@ const MenuItem gUnknown_80E7544[4] = { {CheckAgain_80E7234, 0xC}, {NULL, 0xA}, }; -ALIGNED(4) const u8 sUnknown_80E7564[] = _("{CENTER_ALIGN}This is not a {COLOR_1 LIGHT_BLUE}Wonder Mail{END_COLOR_TEXT_1}."); +ALIGNED(4) const u8 sUnknown_80E7564[] = _("{CENTER_ALIGN}This is not a {COLOR CYAN_G}Wonder Mail{RESET}."); const UnkTextStruct2 gUnknown_80E7588 = { 0x00, 0x00, 0x00, 0x00, diff --git a/src/save_menu.c b/src/save_menu.c index afcd78111..2abbf40ee 100644 --- a/src/save_menu.c +++ b/src/save_menu.c @@ -44,7 +44,7 @@ const MenuItem gSavingAdventureMenuItems[] = { }; ALIGNED(4) const u8 sUnknown_80E6F70[] = _("{CENTER_ALIGN}Don't turn off the power."); ALIGNED(4) const u8 sUnknown_80E6F90[] = _("{CENTER_ALIGN}Saving your adventure!"); -ALIGNED(4) const u8 sUnknown_80E6FAC[] = _("{CENTER_ALIGN}{COLOR_1 RED}Beware!{END_COLOR_TEXT_1} "); +ALIGNED(4) const u8 sUnknown_80E6FAC[] = _("{CENTER_ALIGN}{COLOR RED}Beware!{RESET} "); extern const u8 sUnknown_80E6FDC[]; extern const u8 sUnknown_80E7008[]; @@ -58,7 +58,7 @@ const MenuItem gAdventureSavedMenuItems[] = { }; ALIGNED(4) const u8 sUnknown_80E6FDC[] = _("{CENTER_ALIGN}has been saved."); ALIGNED(4) const u8 sUnknown_80E6FF0[] = _("{CENTER_ALIGN}Your adventure so far"); -ALIGNED(4) const u8 sUnknown_80E7008[] = _("{CENTER_ALIGN}{COLOR_1 LIGHT_BLUE}Success!{END_COLOR_TEXT_1} "); +ALIGNED(4) const u8 sUnknown_80E7008[] = _("{CENTER_ALIGN}{COLOR CYAN_G}Success!{RESET} "); extern const u8 sUnknown_80E7078[]; extern const u8 sUnknown_80E7050[]; @@ -72,7 +72,7 @@ const MenuItem gAdventureCouldNotBeSavedMenuItems[] = { }; ALIGNED(4) const u8 sUnknown_80E703C[] = _("{CENTER_ALIGN}Please try again."); ALIGNED(4) const u8 sUnknown_80E7050[] = _("{CENTER_ALIGN}Your adventure could not be saved."); -ALIGNED(4) const u8 sUnknown_80E7078[] = _("{CENTER_ALIGN}{COLOR_1 RED}Save failed!{END_COLOR_TEXT_1} "); +ALIGNED(4) const u8 sUnknown_80E7078[] = _("{CENTER_ALIGN}{COLOR RED}Save failed!{RESET} "); extern const u8 DeletingAdventure_80E70B0[]; @@ -108,7 +108,7 @@ const MenuItem gAdventureCouldNotBeDeletedMenuItems[] = { {NULL, 2}, }; ALIGNED(4) const u8 sUnknown_80E7134[] = _("{CENTER_ALIGN}Your adventure could not be deleted."); -ALIGNED(4) const u8 sUnknown_80E715C[] = _("{CENTER_ALIGN}{COLOR_1 RED}Deletion failed!{END_COLOR_TEXT_1} "); +ALIGNED(4) const u8 sUnknown_80E715C[] = _("{CENTER_ALIGN}{COLOR RED}Deletion failed!{RESET} "); ALIGNED(4) const u8 gUnknown_80E7178[] = _("{CENTER_ALIGN}The data could not be written.\n" "{CENTER_ALIGN}Please turn off the power and remove\n" diff --git a/src/status.c b/src/status.c index e1924e11e..64711f2f2 100644 --- a/src/status.c +++ b/src/status.c @@ -704,7 +704,7 @@ void HealTargetHP(Entity *pokemon, Entity *target, s32 param_3, s32 param_4, boo if (sub_8045888(target)) { r8 = maxHPStat; } - sub_80522F4(pokemon,target,*gUnknown_80FB240); // m0$'s max HP rose by {ARG_VALUE_1} + sub_80522F4(pokemon,target,*gUnknown_80FB240); // m0$'s max HP rose by {VALUE_1} } if (HP != 0) { if (sub_8045888(target)) { @@ -715,7 +715,7 @@ void HealTargetHP(Entity *pokemon, Entity *target, s32 param_3, s32 param_4, boo sub_80522F4(pokemon,target,*gUnknown_80FB1E0); // $m0 was fully healed } else { - sub_80522F4(pokemon,target,*gUnknown_80FB1C4); // $m0 recovered {ARG_VALUE_0} HP + sub_80522F4(pokemon,target,*gUnknown_80FB1C4); // $m0 recovered {VALUE_0} HP } } } diff --git a/src/unk_menu_203B360.c b/src/unk_menu_203B360.c index cc150cd20..3568787ed 100644 --- a/src/unk_menu_203B360.c +++ b/src/unk_menu_203B360.c @@ -52,7 +52,7 @@ const MenuItem gUnknown_80E6EAC[4] = { ALIGNED(4) const u8 CheckAgain_80E6ECC[] = _("{CENTER_ALIGN}Please check again."); ALIGNED(4) const u8 StorageEmpty_80E6EE4[] = _("{CENTER_ALIGN}The storage space is empty!"); -ALIGNED(4) const u8 Caution_80E6F04[] = _("{CENTER_ALIGN}{COLOR_1 RED}Caution!{END_COLOR_TEXT_1} "); +ALIGNED(4) const u8 Caution_80E6F04[] = _("{CENTER_ALIGN}{COLOR RED}Caution!{RESET} "); static const u8 fill0[] = "pksdir0"; extern void sub_8038440(); diff --git a/src/wonder_mail_2.c b/src/wonder_mail_2.c index 3c70cdebe..299a16f17 100644 --- a/src/wonder_mail_2.c +++ b/src/wonder_mail_2.c @@ -64,7 +64,7 @@ ALIGNED(4) const char gRescueTeamNamePlaceholder[] = "????"; ALIGNED(4) const char gUnknown_80DF9F8[] = _( " Oh, hello!\n" "Your rescue mission went well, didn't it?\n" - "I wouldn't expect any less, {COLOR_1 LIGHT_BLUE}%s{END_COLOR_TEXT_1}!{EXTRA_MSG}" + "I wouldn't expect any less, {COLOR CYAN_G}%s{RESET}!{EXTRA_MSG}" " Well, well!\n" "Here is your reward from the Pokémon\n" "Rescue Organization!"); @@ -78,10 +78,10 @@ ALIGNED(4) const char gUnknown_80DFAA8[] = _( ALIGNED(4) const char gUnknown_80DFB14[] = _( " Oh, yes, that's right.\n" - "Please don't forget to send an {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}\n" + "Please don't forget to send an {COLOR CYAN_G}A-OK Mail{RESET}\n" "to the friend you just rescued.{EXTRA_MSG}" " Please give me a shout if\n" - "you would like to send {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}."); + "you would like to send {COLOR CYAN_G}A-OK Mail{RESET}."); s32 sub_802B2D4(void) { diff --git a/src/wonder_mail_6.c b/src/wonder_mail_6.c index c96ce33a4..580d9c063 100644 --- a/src/wonder_mail_6.c +++ b/src/wonder_mail_6.c @@ -82,11 +82,11 @@ const UnkTextStruct2 gUnknown_80E09C0 = { ALIGNED(4) const u8 gUnknown_80E09D8[] = _( " ...Uh, no?\n" - "You don't have any {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}."); + "You don't have any {COLOR CYAN_G}SOS Mail{RESET}."); ALIGNED(4) const u8 gUnknown_80E0A0C[] = _( " ...Uh, no?\n" - "You don't have any {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}."); + "You don't have any {COLOR CYAN_G}A-OK Mail{RESET}."); static void sub_8031300(void); static void HandleWonderMail6MainMenu(void); @@ -127,11 +127,11 @@ bool8 sub_8030F58(u32 wonderMailType) switch(wonderMailType) { case WONDER_MAIL_TYPE_SOS_1: - // "You don't have any {COLOR_1 LIGHT_BLUE}SOS Mail{END_COLOR_TEXT_1}.\0" + // "You don't have any {COLOR CYAN_G}SOS Mail{RESET}.\0" xxx_info_box_80141B4(gUnknown_80E09D8,0,&gUnknown_203B328->faceFile,0x101); break; case WONDER_MAIL_TYPE_AOK: - // "You don't have any {COLOR_1 LIGHT_BLUE}A-OK Mail{END_COLOR_TEXT_1}.\0" + // "You don't have any {COLOR CYAN_G}A-OK Mail{RESET}.\0" xxx_info_box_80141B4(gUnknown_80E0A0C,0,&gUnknown_203B328->faceFile,0x101); break; }